-- MySQL dump 10.13  Distrib 5.7.23-23, for Linux (x86_64)
--
-- Host: localhost    Database: assarbbq_padmini-db
-- ------------------------------------------------------
-- Server version	5.7.23-23

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
/*!50717 SELECT COUNT(*) INTO @rocksdb_has_p_s_session_variables FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = 'performance_schema' AND TABLE_NAME = 'session_variables' */;
/*!50717 SET @rocksdb_get_is_supported = IF (@rocksdb_has_p_s_session_variables, 'SELECT COUNT(*) INTO @rocksdb_is_supported FROM performance_schema.session_variables WHERE VARIABLE_NAME=\'rocksdb_bulk_load\'', 'SELECT 0') */;
/*!50717 PREPARE s FROM @rocksdb_get_is_supported */;
/*!50717 EXECUTE s */;
/*!50717 DEALLOCATE PREPARE s */;
/*!50717 SET @rocksdb_enable_bulk_load = IF (@rocksdb_is_supported, 'SET SESSION rocksdb_bulk_load = 1', 'SET @rocksdb_dummy_bulk_load = 0') */;
/*!50717 PREPARE s FROM @rocksdb_enable_bulk_load */;
/*!50717 EXECUTE s */;
/*!50717 DEALLOCATE PREPARE s */;

--
-- Table structure for table `wp_actionscheduler_actions`
--

DROP TABLE IF EXISTS `wp_actionscheduler_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_actionscheduler_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `hook` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  `args` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `schedule` longtext COLLATE utf8mb4_unicode_ci,
  `group_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `attempts` int(11) NOT NULL DEFAULT '0',
  `last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00',
  `claim_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `extended_args` varchar(8000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `hook` (`hook`),
  KEY `status` (`status`),
  KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
  KEY `args` (`args`),
  KEY `group_id` (`group_id`),
  KEY `last_attempt_gmt` (`last_attempt_gmt`),
  KEY `claim_id` (`claim_id`),
  KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_actions`
--

LOCK TABLES `wp_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_actions` VALUES (1,'wc-admin_import_customers','complete','2022-05-16 10:11:19','2022-05-16 10:11:19','[1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1652695879;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1652695879;}',2,1,'2022-05-16 10:11:20','2022-05-16 10:11:20',0,NULL),(2,'woocommerce_run_on_woocommerce_admin_updated','complete','2022-05-16 10:25:37','2022-05-16 10:25:37','[\"Automattic\\\\WooCommerce\\\\Admin\\\\RemoteInboxNotifications\\\\RemoteInboxNotificationsEngine\",\"run_on_woocommerce_admin_updated\"]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1652696737;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1652696737;}',4,1,'2022-05-16 10:25:38','2022-05-16 10:25:38',0,NULL),(3,'action_scheduler/migration_hook','complete','2022-05-16 10:29:47','2022-05-16 10:29:47','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1652696987;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1652696987;}',1,1,'2022-05-16 10:30:03','2022-05-16 10:30:03',0,NULL);
/*!40000 ALTER TABLE `wp_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_actionscheduler_claims`
--

DROP TABLE IF EXISTS `wp_actionscheduler_claims`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_actionscheduler_claims` (
  `claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `date_created_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`claim_id`),
  KEY `date_created_gmt` (`date_created_gmt`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_claims`
--

LOCK TABLES `wp_actionscheduler_claims` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_claims` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_actionscheduler_claims` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_actionscheduler_groups`
--

DROP TABLE IF EXISTS `wp_actionscheduler_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_actionscheduler_groups` (
  `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`group_id`),
  KEY `slug` (`slug`(191))
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_groups`
--

LOCK TABLES `wp_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_groups` VALUES (1,'action-scheduler-migration'),(2,'wc-admin-data'),(3,'wc_update_product_default_cat'),(4,'woocommerce-remote-inbox-engine');
/*!40000 ALTER TABLE `wp_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_actionscheduler_logs`
--

DROP TABLE IF EXISTS `wp_actionscheduler_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_actionscheduler_logs` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action_id` bigint(20) unsigned NOT NULL,
  `message` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `log_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `log_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`log_id`),
  KEY `action_id` (`action_id`),
  KEY `log_date_gmt` (`log_date_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_logs`
--

LOCK TABLES `wp_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_logs` VALUES (1,1,'action created','2022-05-16 10:11:14','2022-05-16 10:11:14'),(2,1,'action started via Async Request','2022-05-16 10:11:20','2022-05-16 10:11:20'),(3,1,'action complete via Async Request','2022-05-16 10:11:20','2022-05-16 10:11:20'),(4,2,'action created','2022-05-16 10:25:37','2022-05-16 10:25:37'),(5,2,'action started via WP Cron','2022-05-16 10:25:38','2022-05-16 10:25:38'),(6,2,'action complete via WP Cron','2022-05-16 10:25:38','2022-05-16 10:25:38'),(7,3,'action created','2022-05-16 10:28:47','2022-05-16 10:28:47'),(8,3,'action started via Async Request','2022-05-16 10:30:03','2022-05-16 10:30:03'),(9,3,'action complete via Async Request','2022-05-16 10:30:03','2022-05-16 10:30:03');
/*!40000 ALTER TABLE `wp_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_commentmeta`
--

DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_commentmeta`
--

LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_comments`
--

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'comment',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10)),
  KEY `woo_idx_comment_type` (`comment_type`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_comments`
--

LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (4,725,'WooCommerce','woocommerce@demoweblinks.in','','','2021-12-09 09:44:15','2021-12-09 09:44:15','Payment to be made upon delivery. Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(5,726,'WooCommerce','woocommerce@demoweblinks.in','','','2021-12-09 09:45:31','2021-12-09 09:45:31','Payment to be made upon delivery. Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(6,727,'WooCommerce','woocommerce@demoweblinks.in','','','2021-12-09 09:51:10','2021-12-09 09:51:10','Payment to be made upon delivery. Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(7,728,'WooCommerce','woocommerce@demoweblinks.in','','','2021-12-09 09:54:17','2021-12-09 09:54:17','Payment to be made upon delivery. Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(8,1107,'WooCommerce','woocommerce@demoweblinks.in','','','2022-01-13 07:45:32','2022-01-13 07:45:32','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(9,1107,'admin','sonuvalakam@gmail.com','','','2022-01-13 13:53:40','2022-01-13 13:53:40','Order status changed from On hold to Completed.',0,'1','WooCommerce','order_note',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_links`
--

DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
  `link_rating` int(11) NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_links`
--

LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_options`
--

DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=7890 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_options`
--

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://demoweblinks.in/padmini','yes'),(2,'home','http://demoweblinks.in/padmini','yes'),(3,'blogname','Padmini Agarbathi','yes'),(4,'blogdescription','Padmini Agarbathi','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','sonuvalakam@gmail.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','0','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:219:{s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:47:\"(([^/]+/)*wishlist)(/(.*))?/page/([0-9]{1,})/?$\";s:76:\"index.php?pagename=$matches[1]&wishlist-action=$matches[4]&paged=$matches[5]\";s:30:\"(([^/]+/)*wishlist)(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&wishlist-action=$matches[4]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:16:\"featured_item/?$\";s:33:\"index.php?post_type=featured_item\";s:46:\"featured_item/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_type=featured_item&feed=$matches[1]\";s:41:\"featured_item/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_type=featured_item&feed=$matches[1]\";s:33:\"featured_item/page/([0-9]{1,})/?$\";s:51:\"index.php?post_type=featured_item&paged=$matches[1]\";s:32:\"blocks/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"blocks/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"blocks/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"blocks/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"blocks/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"blocks/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:21:\"blocks/(.+?)/embed/?$\";s:39:\"index.php?blocks=$matches[1]&embed=true\";s:25:\"blocks/(.+?)/trackback/?$\";s:33:\"index.php?blocks=$matches[1]&tb=1\";s:33:\"blocks/(.+?)/page/?([0-9]{1,})/?$\";s:46:\"index.php?blocks=$matches[1]&paged=$matches[2]\";s:40:\"blocks/(.+?)/comment-page-([0-9]{1,})/?$\";s:46:\"index.php?blocks=$matches[1]&cpage=$matches[2]\";s:30:\"blocks/(.+?)/wc-api(/(.*))?/?$\";s:47:\"index.php?blocks=$matches[1]&wc-api=$matches[3]\";s:36:\"blocks/.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:47:\"blocks/.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:29:\"blocks/(.+?)(?:/([0-9]+))?/?$\";s:45:\"index.php?blocks=$matches[1]&page=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:57:\"block_categories/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?block_categories=$matches[1]&feed=$matches[2]\";s:52:\"block_categories/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?block_categories=$matches[1]&feed=$matches[2]\";s:33:\"block_categories/([^/]+)/embed/?$\";s:49:\"index.php?block_categories=$matches[1]&embed=true\";s:45:\"block_categories/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?block_categories=$matches[1]&paged=$matches[2]\";s:27:\"block_categories/([^/]+)/?$\";s:38:\"index.php?block_categories=$matches[1]\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:41:\"featured_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"featured_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"featured_item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"featured_item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"featured_item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"featured_item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"featured_item/([^/]+)/embed/?$\";s:46:\"index.php?featured_item=$matches[1]&embed=true\";s:34:\"featured_item/([^/]+)/trackback/?$\";s:40:\"index.php?featured_item=$matches[1]&tb=1\";s:54:\"featured_item/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?featured_item=$matches[1]&feed=$matches[2]\";s:49:\"featured_item/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?featured_item=$matches[1]&feed=$matches[2]\";s:42:\"featured_item/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?featured_item=$matches[1]&paged=$matches[2]\";s:49:\"featured_item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?featured_item=$matches[1]&cpage=$matches[2]\";s:39:\"featured_item/([^/]+)/wc-api(/(.*))?/?$\";s:54:\"index.php?featured_item=$matches[1]&wc-api=$matches[3]\";s:45:\"featured_item/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:56:\"featured_item/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:38:\"featured_item/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?featured_item=$matches[1]&page=$matches[2]\";s:30:\"featured_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"featured_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"featured_item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"featured_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"featured_item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"featured_item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:63:\"featured_item_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:61:\"index.php?featured_item_category=$matches[1]&feed=$matches[2]\";s:58:\"featured_item_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:61:\"index.php?featured_item_category=$matches[1]&feed=$matches[2]\";s:39:\"featured_item_category/([^/]+)/embed/?$\";s:55:\"index.php?featured_item_category=$matches[1]&embed=true\";s:51:\"featured_item_category/([^/]+)/page/?([0-9]{1,})/?$\";s:62:\"index.php?featured_item_category=$matches[1]&paged=$matches[2]\";s:33:\"featured_item_category/([^/]+)/?$\";s:44:\"index.php?featured_item_category=$matches[1]\";s:58:\"featured_item_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?featured_item_tag=$matches[1]&feed=$matches[2]\";s:53:\"featured_item_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?featured_item_tag=$matches[1]&feed=$matches[2]\";s:34:\"featured_item_tag/([^/]+)/embed/?$\";s:50:\"index.php?featured_item_tag=$matches[1]&embed=true\";s:46:\"featured_item_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?featured_item_tag=$matches[1]&paged=$matches[2]\";s:28:\"featured_item_tag/([^/]+)/?$\";s:39:\"index.php?featured_item_tag=$matches[1]\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=99&cpage=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:62:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/wc-api(/(.*))?/?$\";s:99:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&wc-api=$matches[6]\";s:62:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:73:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:6:{i:0;s:36:\"contact-form-7/wp-contact-form-7.php\";i:1;s:53:\"nextend-facebook-connect/nextend-facebook-connect.php\";i:4;s:27:\"woocommerce/woocommerce.php\";i:5;s:23:\"wordfence/wordfence.php\";i:6;s:33:\"yith-woocommerce-compare/init.php\";i:7;s:34:\"yith-woocommerce-wishlist/init.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:3:{i:0;s:91:\"/home2/assarbbq/public_html/demoweblinks.in/padmini/wp-content/themes/padmini/functions.php\";i:2;s:87:\"/home2/assarbbq/public_html/demoweblinks.in/padmini/wp-content/themes/padmini/style.css\";i:3;s:0:\"\";}','no'),(40,'template','flatsome','yes'),(41,'stylesheet','padmini','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','51917','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','0','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','280','yes'),(57,'thumbnail_size_h','280','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','800','yes'),(60,'medium_size_h','400','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1400','yes'),(63,'large_size_h','800','yes'),(64,'image_default_link_type','file','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:4:{i:5;a:0:{}i:7;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:1;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}i:14;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:1;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:4:{i:1;a:0:{}i:4;a:3:{s:5:\"title\";s:4:\"asdf\";s:4:\"text\";s:4:\"asdf\";s:6:\"filter\";b:0;}i:13;a:3:{s:5:\"title\";s:5:\"About\";s:4:\"text\";s:98:\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.\";s:6:\"filter\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:1:{s:53:\"products-compare-for-woocommerce/products-compare.php\";a:2:{i:0;s:25:\"BeRocket_Compare_Products\";i:1;s:12:\"deactivation\";}}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','90','yes'),(82,'page_on_front','99','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','605','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1653823718','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'initial_db_version','49752','yes'),(100,'wp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:119:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:15:\"manage_berocket\";b:1;s:23:\"manage_berocket_account\";b:1;s:23:\"wf2fa_activate_2fa_self\";b:1;s:25:\"wf2fa_activate_2fa_others\";b:1;s:21:\"wf2fa_manage_settings\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}}','yes'),(101,'fresh_site','0','yes'),(102,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(103,'sidebars_widgets','a:7:{s:19:\"wp_inactive_widgets\";a:66:{i:0;s:7:\"pages-3\";i:1;s:7:\"pages-5\";i:2;s:7:\"pages-6\";i:3;s:7:\"pages-8\";i:4;s:10:\"calendar-3\";i:5;s:10:\"calendar-5\";i:6;s:10:\"archives-4\";i:7;s:10:\"archives-6\";i:8;s:8:\"search-4\";i:9;s:6:\"text-4\";i:10;s:12:\"categories-5\";i:11;s:12:\"categories-7\";i:12;s:14:\"recent-posts-4\";i:13;s:14:\"recent-posts-6\";i:14;s:14:\"recent-posts-8\";i:15;s:17:\"recent-comments-4\";i:16;s:11:\"tag_cloud-3\";i:17;s:11:\"tag_cloud-8\";i:18;s:25:\"woocommerce_widget_cart-3\";i:19;s:25:\"woocommerce_widget_cart-5\";i:20;s:33:\"woocommerce_layered_nav_filters-3\";i:21;s:33:\"woocommerce_layered_nav_filters-5\";i:22;s:33:\"woocommerce_layered_nav_filters-7\";i:23;s:33:\"woocommerce_layered_nav_filters-9\";i:24;s:25:\"woocommerce_layered_nav-3\";i:25;s:25:\"woocommerce_layered_nav-5\";i:26;s:25:\"woocommerce_layered_nav-7\";i:27;s:26:\"woocommerce_layered_nav-10\";i:28;s:26:\"woocommerce_price_filter-3\";i:29;s:26:\"woocommerce_price_filter-5\";i:30;s:26:\"woocommerce_price_filter-7\";i:31;s:27:\"woocommerce_price_filter-11\";i:32;s:32:\"woocommerce_product_categories-5\";i:33;s:32:\"woocommerce_product_categories-7\";i:34;s:32:\"woocommerce_product_categories-9\";i:35;s:33:\"woocommerce_product_categories-10\";i:36;s:33:\"woocommerce_product_categories-12\";i:37;s:31:\"woocommerce_product_tag_cloud-3\";i:38;s:31:\"woocommerce_product_tag_cloud-5\";i:39;s:31:\"woocommerce_product_tag_cloud-6\";i:40;s:31:\"woocommerce_product_tag_cloud-7\";i:41;s:22:\"woocommerce_products-3\";i:42;s:22:\"woocommerce_products-4\";i:43;s:22:\"woocommerce_products-5\";i:44;s:22:\"woocommerce_products-7\";i:45;s:22:\"woocommerce_products-9\";i:46;s:23:\"woocommerce_products-10\";i:47;s:27:\"woocommerce_rating_filter-2\";i:48;s:27:\"woocommerce_rating_filter-3\";i:49;s:28:\"woocommerce_recent_reviews-3\";i:50;s:38:\"woocommerce_recently_viewed_products-3\";i:51;s:38:\"woocommerce_recently_viewed_products-5\";i:52;s:38:\"woocommerce_recently_viewed_products-7\";i:53;s:32:\"woocommerce_top_rated_products-2\";i:54;s:23:\"flatsome_recent_posts-3\";i:55;s:23:\"flatsome_recent_posts-5\";i:56;s:23:\"flatsome_recent_posts-6\";i:57;s:23:\"flatsome_recent_posts-8\";i:58;s:23:\"flatsome_recent_posts-9\";i:59;s:24:\"flatsome_recent_posts-11\";i:60;s:24:\"flatsome_recent_posts-13\";i:61;s:24:\"flatsome_recent_posts-14\";i:62;s:24:\"flatsome_recent_posts-16\";i:63;s:15:\"upsell_widget-3\";i:64;s:15:\"upsell_widget-5\";i:65;s:15:\"upsell_widget-7\";}s:12:\"sidebar-main\";a:6:{i:0;s:7:\"text-13\";i:1;s:24:\"flatsome_recent_posts-17\";i:2;s:17:\"recent-comments-5\";i:3;s:11:\"tag_cloud-9\";i:4;s:13:\"categories-14\";i:5;s:10:\"archives-7\";}s:16:\"sidebar-footer-1\";a:4:{i:0;s:23:\"woocommerce_products-12\";i:1;s:23:\"woocommerce_products-11\";i:2;s:23:\"woocommerce_products-13\";i:3;s:32:\"woocommerce_top_rated_products-3\";}s:16:\"sidebar-footer-2\";a:4:{i:0;s:14:\"block_widget-2\";i:1;s:10:\"nav_menu-2\";i:2;s:10:\"nav_menu-3\";i:3;s:14:\"block_widget-3\";}s:12:\"shop-sidebar\";a:5:{i:0;s:34:\"woocommerce_layered_nav_filters-10\";i:1;s:33:\"woocommerce_product_categories-13\";i:2;s:26:\"woocommerce_layered_nav-11\";i:3;s:26:\"woocommerce_price_filter-9\";i:4;s:38:\"woocommerce_recently_viewed_products-8\";}s:15:\"product-sidebar\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(104,'cron','a:27:{i:1652707178;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1652707537;a:2:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"woocommerce_cleanup_rate_limits\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1652707735;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1652709417;a:1:{s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1652709476;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1652710436;a:1:{s:21:\"wordfence_ls_ntp_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1652710443;a:1:{s:21:\"wordfence_hourly_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1652710727;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1652718337;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1652731201;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"eb57c56ffc575ea21b6ca541761cc4ac\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1652731201;}}}}i:1652743735;a:3:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1652743736;a:1:{s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1652745600;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1652782443;a:1:{s:20:\"wordfence_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1652783147;a:2:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1652786934;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1652786943;a:1:{s:34:\"yith_wcwl_delete_expired_wishlists\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1652786950;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1652786955;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1652788623;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1652873334;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1652990401;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"76b824a2deeaadea232419a611c60720\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1652990401;}}}}i:1653249601;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"fe262210a34791d225467040176f6f2b\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1653249601;}}}}i:1653321600;a:1:{s:31:\"wordfence_email_activity_report\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1653992797;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"fifteendays\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}i:1655374157;a:1:{s:25:\"otgs_send_components_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}s:7:\"version\";i:2;}','yes'),(105,'widget_pages','a:6:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:3;a:3:{s:5:\"title\";s:5:\"Pages\";s:6:\"sortby\";s:10:\"post_title\";s:7:\"exclude\";s:0:\"\";}i:5;a:0:{}i:6;a:3:{s:5:\"title\";s:0:\"\";s:6:\"sortby\";s:10:\"post_title\";s:7:\"exclude\";s:0:\"\";}i:8;a:0:{}}','yes'),(106,'widget_calendar','a:4:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:3;a:0:{}i:5;a:0:{}}','yes'),(107,'widget_archives','a:4:{s:12:\"_multiwidget\";i:1;i:4;a:0:{}i:6;a:3:{s:5:\"title\";s:7:\"Archive\";s:5:\"count\";i:1;s:8:\"dropdown\";i:0;}i:7;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:1;s:8:\"dropdown\";i:0;}}','yes'),(108,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_search','a:2:{s:12:\"_multiwidget\";i:1;i:4;a:1:{s:5:\"title\";s:6:\"Search\";}}','yes'),(114,'widget_tag_cloud','a:5:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:3;a:0:{}i:8;a:0:{}i:9;a:2:{s:5:\"title\";s:9:\"Tag Cloud\";s:8:\"taxonomy\";s:8:\"post_tag\";}}','yes'),(115,'widget_nav_menu','a:4:{i:1;a:0:{}i:2;a:1:{s:8:\"nav_menu\";i:66;}i:3;a:1:{s:8:\"nav_menu\";i:74;}s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'recovery_keys','a:0:{}','yes'),(119,'theme_mods_twentytwentyone','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1638272209;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','yes'),(120,'https_detection_errors','a:0:{}','yes'),(147,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:21:\"sonuvalakam@gmail.com\";s:7:\"version\";s:5:\"5.9.3\";s:9:\"timestamp\";i:1649219252;}','no'),(150,'finished_updating_comment_type','1','yes'),(155,'current_theme','Padmini','yes'),(156,'theme_mods_flatsome','a:32:{i:0;b:0;s:17:\"flatsome_fallback\";i:0;s:20:\"topbar_elements_left\";a:1:{i:0;s:4:\"html\";}s:21:\"topbar_elements_right\";a:3:{i:0;s:7:\"nav-top\";i:1;s:10:\"newsletter\";i:2;s:6:\"social\";}s:20:\"header_elements_left\";a:2:{i:0;s:6:\"search\";i:1;s:3:\"nav\";}s:21:\"header_elements_right\";a:3:{i:0;s:7:\"account\";i:1;s:7:\"divider\";i:2;s:4:\"cart\";}s:27:\"header_elements_bottom_left\";a:0:{}s:29:\"header_elements_bottom_center\";a:0:{}s:28:\"header_elements_bottom_right\";a:0:{}s:27:\"header_mobile_elements_left\";a:1:{i:0;s:9:\"menu-icon\";}s:28:\"header_mobile_elements_right\";a:1:{i:0;s:4:\"cart\";}s:26:\"header_mobile_elements_top\";a:1:{i:0;s:4:\"html\";}s:14:\"mobile_sidebar\";a:7:{i:0;s:11:\"search-form\";i:1;s:3:\"nav\";i:2;s:7:\"account\";i:3;s:10:\"newsletter\";i:4;s:6:\"social\";i:5;s:6:\"html-2\";i:6;s:6:\"html-3\";}s:14:\"product_layout\";s:19:\"right-sidebar-small\";s:23:\"payment_icons_placement\";s:6:\"footer\";s:14:\"follow_twitter\";s:10:\"http://url\";s:15:\"follow_facebook\";s:10:\"http://url\";s:16:\"follow_instagram\";s:10:\"http://url\";s:12:\"follow_email\";s:10:\"your@email\";s:16:\"flatsome_version\";i:3;s:24:\"portfolio_archive_filter\";s:4:\"left\";s:13:\"type_headings\";a:2:{s:11:\"font-family\";s:4:\"Lato\";s:7:\"variant\";s:3:\"700\";}s:10:\"type_texts\";a:2:{s:11:\"font-family\";s:4:\"Lato\";s:7:\"variant\";s:3:\"400\";}s:8:\"type_nav\";a:2:{s:11:\"font-family\";s:4:\"Lato\";s:7:\"variant\";s:3:\"700\";}s:8:\"type_alt\";a:2:{s:11:\"font-family\";s:14:\"Dancing Script\";s:7:\"variant\";s:3:\"400\";}s:14:\"pages_template\";s:7:\"default\";s:11:\"site_loader\";s:0:\"\";s:19:\"flatsome_db_version\";s:6:\"3.14.3\";s:18:\"nav_menu_locations\";a:0:{}s:7:\"backups\";N;s:9:\"smof_init\";s:31:\"Tue, 30 Nov 2021 11:36:56 +0000\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1638273223;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"sidebar-main\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:16:\"sidebar-footer-1\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:16:\"sidebar-footer-2\";a:0:{}}}}','yes'),(157,'theme_switched','','yes'),(158,'widget_flatsome_recent_posts','a:12:{i:1;a:0:{}i:3;a:3:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:3;s:5:\"image\";s:2:\"on\";}i:5;a:3:{s:5:\"title\";s:5:\"Posts\";s:6:\"number\";i:5;s:5:\"image\";s:2:\"on\";}i:6;a:3:{s:5:\"title\";s:16:\"Latest From Blog\";s:6:\"number\";i:4;s:5:\"image\";N;}i:8;a:3:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;s:5:\"image\";N;}i:9;a:3:{s:5:\"title\";s:10:\"Thumbnail \";s:6:\"number\";i:5;s:5:\"image\";s:2:\"on\";}i:11;a:3:{s:5:\"title\";s:17:\"Latest Blog Posts\";s:6:\"number\";i:5;s:5:\"image\";N;}i:13;a:3:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:4;s:5:\"image\";N;}i:14;a:3:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;s:5:\"image\";N;}i:16;a:3:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:3;s:5:\"image\";N;}i:17;a:3:{s:5:\"title\";s:12:\"Latest Posts\";s:6:\"number\";i:5;s:5:\"image\";N;}s:12:\"_multiwidget\";i:1;}','yes'),(159,'widget_block_widget','a:3:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:5:\"block\";s:15:\"footer-about-us\";}i:3;a:2:{s:5:\"title\";s:0:\"\";s:5:\"block\";s:24:\"footer-newsletter-signup\";}s:12:\"_multiwidget\";i:1;}','yes'),(185,'flatsome_registration','a:8:{s:2:\"id\";s:26:\"ckwm1k77e192573zruk5masf6e\";s:4:\"type\";s:5:\"LOCAL\";s:6:\"domain\";s:9:\"localhost\";s:12:\"registeredAt\";s:24:\"2021-11-30T11:53:14.618Z\";s:12:\"purchaseCode\";s:36:\"7be4877f-0a8e-47a7-9a9c-34dba89e5dab\";s:11:\"licenseType\";s:15:\"Regular License\";s:6:\"errors\";a:1:{i:0;s:107:\"Flatsome was unable to get the latest version. Your site might have changed domain after you registered it.\";}s:11:\"show_notice\";b:1;}','yes'),(186,'allowedthemes','a:1:{s:7:\"padmini\";b:1;}','no'),(187,'fl_has_child_theme','padmini','yes'),(189,'theme_mods_padmini','a:167:{s:17:\"flatsome_fallback\";i:1;s:20:\"topbar_elements_left\";a:1:{i:0;s:4:\"html\";}s:21:\"topbar_elements_right\";a:3:{i:0;s:11:\"search-form\";i:1;s:7:\"account\";i:2;s:4:\"cart\";}s:20:\"header_elements_left\";a:1:{i:0;s:3:\"nav\";}s:21:\"header_elements_right\";a:0:{}s:27:\"header_elements_bottom_left\";a:0:{}s:29:\"header_elements_bottom_center\";a:0:{}s:28:\"header_elements_bottom_right\";a:0:{}s:27:\"header_mobile_elements_left\";a:1:{i:0;s:9:\"menu-icon\";}s:28:\"header_mobile_elements_right\";a:2:{i:0;s:7:\"account\";i:1;s:4:\"cart\";}s:26:\"header_mobile_elements_top\";a:1:{i:0;s:4:\"html\";}s:14:\"mobile_sidebar\";a:4:{i:0;s:11:\"search-form\";i:1;s:3:\"nav\";i:2;s:7:\"account\";i:3;s:8:\"wishlist\";}s:14:\"product_layout\";s:19:\"right-sidebar-small\";s:23:\"payment_icons_placement\";s:6:\"footer\";s:14:\"follow_twitter\";s:10:\"http://url\";s:15:\"follow_facebook\";s:10:\"http://url\";s:16:\"follow_instagram\";s:10:\"http://url\";s:12:\"follow_email\";s:10:\"your@email\";s:16:\"flatsome_version\";i:3;s:24:\"portfolio_archive_filter\";s:4:\"left\";s:13:\"type_headings\";a:5:{s:11:\"font-family\";s:7:\"Poppins\";s:7:\"variant\";s:3:\"700\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";i:700;s:10:\"font-style\";s:6:\"normal\";}s:10:\"type_texts\";a:5:{s:11:\"font-family\";s:7:\"Poppins\";s:7:\"variant\";s:7:\"regular\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";i:400;s:10:\"font-style\";s:6:\"normal\";}s:8:\"type_nav\";a:5:{s:11:\"font-family\";s:7:\"Poppins\";s:7:\"variant\";s:3:\"700\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";i:700;s:10:\"font-style\";s:6:\"normal\";}s:8:\"type_alt\";a:5:{s:11:\"font-family\";s:7:\"Poppins\";s:7:\"variant\";s:7:\"regular\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";i:400;s:10:\"font-style\";s:6:\"normal\";}s:14:\"pages_template\";s:7:\"default\";s:11:\"site_loader\";s:3:\"all\";s:19:\"flatsome_db_version\";s:6:\"3.14.3\";s:18:\"custom_css_post_id\";i:306;s:7:\"backups\";N;s:9:\"smof_init\";s:31:\"Mon, 06 Dec 2021 09:27:50 +0000\";s:19:\"html_scripts_header\";s:0:\"\";s:19:\"html_scripts_footer\";s:0:\"\";s:23:\"html_scripts_after_body\";s:0:\"\";s:24:\"html_scripts_before_body\";s:0:\"\";s:15:\"html_custom_css\";s:460:\".nav-uppercase>li>a{\n		letter-spacing: 0.1em;\n}\n\n\n#footer ul.menu>li>a{\n		font-size:14px;\n}\n#footer .form-flat button{\n		text-transform: capitalize;\n}\n#footer  .form-flat input{\n		font-size: 14px;\n    \n		border-radius: 0px;\n}\n\n#footer .form-flat input:not([type=submit]){\n		border-radius: 0px;\n		background:white!important;\n}\n\n#footer ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */\n  color: black!important;\n   /* Firefox */\n		text-align:center;\n}\n\";s:22:\"html_custom_css_tablet\";s:0:\"\";s:22:\"html_custom_css_mobile\";s:0:\"\";s:17:\"perf_instant_page\";i:0;s:21:\"lazy_load_backgrounds\";i:1;s:16:\"lazy_load_images\";i:0;s:26:\"flatsome_disable_style_css\";i:0;s:13:\"disable_emoji\";i:0;s:16:\"disable_blockcss\";i:0;s:14:\"jquery_migrate\";i:0;s:17:\"site_loader_color\";s:5:\"light\";s:14:\"site_loader_bg\";s:0:\"\";s:11:\"live_search\";i:1;s:18:\"search_placeholder\";s:0:\"\";s:21:\"search_result_latency\";s:1:\"0\";s:13:\"search_result\";i:1;s:19:\"search_result_style\";s:6:\"slider\";s:24:\"search_products_order_by\";s:9:\"relevance\";s:13:\"search_by_sku\";i:0;s:21:\"search_by_product_tag\";i:0;s:14:\"google_map_api\";s:0:\"\";s:16:\"maintenance_mode\";s:1:\"0\";s:29:\"maintenance_mode_admin_notice\";i:1;s:21:\"maintenance_mode_page\";i:0;s:21:\"maintenance_mode_text\";s:24:\"Please check back soon..\";s:9:\"404_block\";i:0;s:8:\"swatches\";s:1:\"0\";s:15:\"disable_reviews\";s:1:\"0\";s:27:\"product_gallery_woocommerce\";i:0;s:14:\"html_shop_page\";s:504:\"  <div class=\"banner-list\">\n    <h2>Dhoops</h2>\n    <p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n  </div>\";s:9:\"tab_title\";s:0:\"\";s:11:\"tab_content\";s:0:\"\";s:23:\"html_before_add_to_cart\";s:1:\" \";s:22:\"html_after_add_to_cart\";s:0:\"\";s:14:\"html_thank_you\";s:0:\"\";s:12:\"catalog_mode\";i:0;s:19:\"catalog_mode_prices\";i:0;s:23:\"catalog_mode_sale_badge\";i:0;s:19:\"catalog_mode_header\";s:0:\"\";s:20:\"catalog_mode_product\";s:0:\"\";s:21:\"catalog_mode_lightbox\";s:0:\"\";s:24:\"flatsome_infinite_scroll\";s:1:\"0\";s:27:\"infinite_scroll_loader_type\";s:7:\"spinner\";s:26:\"infinite_scroll_loader_img\";s:0:\"\";s:17:\"header_top_height\";s:2:\"55\";s:9:\"topbar_bg\";s:7:\"#d30601\";s:13:\"nav_style_top\";s:0:\"\";s:14:\"nav_height_top\";s:2:\"41\";s:11:\"topbar_left\";s:320:\"<i class=\"icon-phone top-header-icon\" aria-hidden=\"true\"></i> Â   <a class=\"top-header-icon\" href=\"tel:+4733378901\">+91 990000000</a>\nÂ Â \n\n\n\n\n\n<i class=\"icon-envelop top-header-icon\" aria-hidden=\"true\"></i>   Â      <a class=\"top-header-icon\" href=\"mailto:contactus@padminiproduct.com\">contactus@padminiproduct.com</a>\n\";s:18:\"account_icon_style\";s:7:\"outline\";s:20:\"header_account_title\";b:0;s:29:\"account_login_lightbox_layout\";s:0:\"\";s:15:\"cart_icon_style\";s:5:\"plain\";s:9:\"cart_icon\";s:4:\"cart\";s:17:\"header_cart_title\";b:0;s:19:\"header_search_width\";s:2:\"52\";s:13:\"logo_position\";s:4:\"left\";s:9:\"site_logo\";s:69:\"http://demoweblinks.in/padmini/wp-content/uploads/2021/12/logo-10.png\";s:13:\"color_primary\";s:7:\"#ef8921\";s:15:\"color_secondary\";s:7:\"#ef8921\";s:8:\"footer_1\";b:0;s:17:\"footer_2_bg_color\";s:7:\"#d30601\";s:19:\"header_search_style\";s:8:\"lightbox\";s:24:\"header_search_form_style\";s:4:\"flat\";s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:70;s:14:\"primary_mobile\";i:70;}s:16:\"category_sidebar\";s:10:\"off-canvas\";s:19:\"category_grid_style\";s:4:\"grid\";s:18:\"category_row_count\";s:1:\"3\";s:25:\"category_row_count_tablet\";s:1:\"3\";s:25:\"category_row_count_mobile\";s:1:\"2\";s:20:\"category_title_style\";s:8:\"featured\";s:15:\"breadcrumb_home\";b:0;s:20:\"header_shop_bg_image\";s:102:\"http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg\";s:9:\"cat_style\";s:6:\"normal\";s:20:\"product_box_category\";b:0;s:18:\"disable_quick_view\";b:1;s:10:\"site_width\";s:4:\"1170\";s:14:\"product_header\";s:0:\"\";s:21:\"product_next_prev_nav\";b:0;s:19:\"product_sticky_cart\";b:1;s:25:\"product_info_review_count\";b:1;s:16:\"related_products\";s:6:\"slider\";s:11:\"body_layout\";s:10:\"full-width\";s:13:\"content_color\";s:5:\"light\";s:16:\"footer_left_text\";s:67:\"Copyright [ux_current_year] Â© <strong>Amaeka Technologies</strong>\";s:10:\"logo_width\";s:3:\"200\";s:9:\"type_size\";s:3:\"100\";s:16:\"type_size_mobile\";s:2:\"79\";s:25:\"text_transform_navigation\";s:4:\"none\";s:19:\"type_headings_color\";s:7:\"#555555\";s:17:\"color_links_hover\";s:7:\"#111111\";s:11:\"color_links\";s:7:\"#4e657b\";s:24:\"color_widget_links_hover\";s:0:\"\";s:11:\"color_texts\";s:7:\"#777777\";s:18:\"color_widget_links\";s:0:\"\";s:24:\"googlefonts_font_display\";s:4:\"swap\";s:17:\"flatsome_lightbox\";b:1;s:31:\"flatsome_lightbox_multi_gallery\";b:0;s:19:\"product_image_style\";s:8:\"vertical\";s:18:\"product_info_align\";s:4:\"left\";s:18:\"product_info_share\";b:1;s:31:\"product_info_review_count_style\";s:7:\"tooltip\";s:12:\"product_zoom\";b:1;s:17:\"product_info_form\";s:0:\"\";s:27:\"category_force_image_height\";b:1;s:21:\"category_image_height\";s:2:\"86\";s:16:\"portfolio_layout\";s:0:\"\";s:17:\"facebook_accounts\";a:1:{i:0;s:1:\"0\";}s:12:\"fl_portfolio\";s:1:\"1\";s:15:\"parallax_mobile\";s:1:\"0\";s:15:\"flatsome_studio\";s:1:\"1\";s:15:\"category_shadow\";s:1:\"0\";s:21:\"category_shadow_hover\";s:1:\"2\";s:10:\"grid_style\";s:5:\"grid1\";s:15:\"breadcrumb_size\";s:5:\"small\";s:12:\"bubble_style\";s:6:\"style1\";s:15:\"breadcrumb_case\";s:0:\"\";s:15:\"new_bubble_auto\";s:1:\"0\";s:15:\"checkout_layout\";s:0:\"\";s:24:\"checkout_floating_labels\";b:0;s:29:\"checkout_terms_and_conditions\";s:0:\"\";s:23:\"checkout_sticky_sidebar\";b:1;s:21:\"html_checkout_sidebar\";s:0:\"\";s:27:\"checkout_fields_email_first\";b:0;s:17:\"cart_auto_refresh\";b:1;s:19:\"blog_excerpt_suffix\";s:0:\"\";s:20:\"header_height_mobile\";s:2:\"80\";s:20:\"logo_position_mobile\";s:6:\"center\";s:15:\"menu_icon_style\";s:0:\"\";s:14:\"mobile_overlay\";s:6:\"center\";s:30:\"mobile_submenu_parent_behavior\";s:6:\"toggle\";s:22:\"my_account_title_align\";s:4:\"left\";s:27:\"my_account_title_text_color\";s:4:\"dark\";}','yes'),(191,'flatsome_update_cache','a:2:{s:12:\"last_checked\";i:1652707130;s:7:\"version\";s:6:\"3.14.3\";}','yes'),(193,'wpcf7','a:2:{s:7:\"version\";s:5:\"5.5.6\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1638273258;s:7:\"version\";s:5:\"5.5.3\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(194,'recently_activated','a:2:{s:39:\"woocommerce-currency-switcher/index.php\";i:1652696945;s:45:\"woocommerce-multilingual/wpml-woocommerce.php\";i:1652696925;}','yes'),(196,'nsl-version','3.1.4','yes'),(197,'widget_nextend_social_login','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(199,'action_scheduler_hybrid_store_demarkation','7','yes'),(200,'schema-ActionScheduler_StoreSchema','6.0.1652696736','yes'),(201,'schema-ActionScheduler_LoggerSchema','3.0.1638273338','yes'),(204,'woocommerce_schema_version','430','yes'),(205,'woocommerce_store_address','','yes'),(206,'woocommerce_store_address_2','','yes'),(207,'woocommerce_store_city','','yes'),(208,'woocommerce_default_country','US:CA','yes'),(209,'woocommerce_store_postcode','','yes'),(210,'woocommerce_allowed_countries','all','yes'),(211,'woocommerce_all_except_countries','a:0:{}','yes'),(212,'woocommerce_specific_allowed_countries','a:0:{}','yes'),(213,'woocommerce_ship_to_countries','','yes'),(214,'woocommerce_specific_ship_to_countries','a:0:{}','yes'),(215,'woocommerce_default_customer_address','base','yes'),(216,'woocommerce_calc_taxes','no','yes'),(217,'woocommerce_enable_coupons','no','yes'),(218,'woocommerce_calc_discounts_sequentially','no','no'),(219,'woocommerce_currency','INR','yes'),(220,'woocommerce_currency_pos','left','yes'),(221,'woocommerce_price_thousand_sep',',','yes'),(222,'woocommerce_price_decimal_sep','.','yes'),(223,'woocommerce_price_num_decimals','2','yes'),(224,'woocommerce_shop_page_id','8','yes'),(225,'woocommerce_cart_redirect_after_add','no','yes'),(226,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(227,'woocommerce_placeholder_image','7','yes'),(228,'woocommerce_weight_unit','g','yes'),(229,'woocommerce_dimension_unit','cm','yes'),(230,'woocommerce_enable_reviews','yes','yes'),(231,'woocommerce_review_rating_verification_label','yes','no'),(232,'woocommerce_review_rating_verification_required','no','no'),(233,'woocommerce_enable_review_rating','yes','yes'),(234,'woocommerce_review_rating_required','yes','no'),(235,'woocommerce_manage_stock','yes','yes'),(236,'woocommerce_hold_stock_minutes','60','no'),(237,'woocommerce_notify_low_stock','yes','no'),(238,'woocommerce_notify_no_stock','yes','no'),(239,'woocommerce_stock_email_recipient','sonuvalakam@gmail.com','no'),(240,'woocommerce_notify_low_stock_amount','2','no'),(241,'woocommerce_notify_no_stock_amount','0','yes'),(242,'woocommerce_hide_out_of_stock_items','no','yes'),(243,'woocommerce_stock_format','','yes'),(244,'woocommerce_file_download_method','force','no'),(245,'woocommerce_downloads_redirect_fallback_allowed','no','no'),(246,'woocommerce_downloads_require_login','no','no'),(247,'woocommerce_downloads_grant_access_after_payment','yes','no'),(248,'woocommerce_downloads_add_hash_to_filename','yes','yes'),(249,'woocommerce_prices_include_tax','no','yes'),(250,'woocommerce_tax_based_on','shipping','yes'),(251,'woocommerce_shipping_tax_class','inherit','yes'),(252,'woocommerce_tax_round_at_subtotal','no','yes'),(253,'woocommerce_tax_classes','','yes'),(254,'woocommerce_tax_display_shop','excl','yes'),(255,'woocommerce_tax_display_cart','excl','yes'),(256,'woocommerce_price_display_suffix','','yes'),(257,'woocommerce_tax_total_display','itemized','no'),(258,'woocommerce_enable_shipping_calc','yes','no'),(259,'woocommerce_shipping_cost_requires_address','no','yes'),(260,'woocommerce_ship_to_destination','billing','no'),(261,'woocommerce_shipping_debug_mode','no','yes'),(262,'woocommerce_enable_guest_checkout','no','no'),(263,'woocommerce_enable_checkout_login_reminder','yes','no'),(264,'woocommerce_enable_signup_and_login_from_checkout','no','no'),(265,'woocommerce_enable_myaccount_registration','no','no'),(266,'woocommerce_registration_generate_username','no','no'),(267,'woocommerce_registration_generate_password','no','no'),(268,'woocommerce_erasure_request_removes_order_data','no','no'),(269,'woocommerce_erasure_request_removes_download_data','no','no'),(270,'woocommerce_allow_bulk_remove_personal_data','no','no'),(271,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','yes'),(272,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','yes'),(273,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(274,'woocommerce_trash_pending_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(275,'woocommerce_trash_failed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(276,'woocommerce_trash_cancelled_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(277,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(278,'woocommerce_email_from_name','Padmini Agarbathi','no'),(279,'woocommerce_email_from_address','sonuvalakam@gmail.com','no'),(280,'woocommerce_email_header_image','','no'),(281,'woocommerce_email_footer_text','{site_title} &mdash; Built with {WooCommerce}','no'),(282,'woocommerce_email_base_color','#ef8921','no'),(283,'woocommerce_email_background_color','#f7f7f7','no'),(284,'woocommerce_email_body_background_color','#ffffff','no'),(285,'woocommerce_email_text_color','#3c3c3c','no'),(286,'woocommerce_merchant_email_notifications','no','no'),(287,'woocommerce_cart_page_id','9','no'),(288,'woocommerce_checkout_page_id','10','no'),(289,'woocommerce_myaccount_page_id','11','no'),(290,'woocommerce_terms_page_id','','no'),(291,'woocommerce_force_ssl_checkout','no','yes'),(292,'woocommerce_unforce_ssl_checkout','no','yes'),(293,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(294,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(295,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(296,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(297,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(298,'woocommerce_myaccount_orders_endpoint','orders','yes'),(299,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(300,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(301,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(302,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(303,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(304,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(305,'woocommerce_logout_endpoint','customer-logout','yes'),(306,'woocommerce_api_enabled','no','yes'),(307,'woocommerce_allow_tracking','no','no'),(308,'woocommerce_show_marketplace_suggestions','yes','no'),(309,'woocommerce_single_image_width','600','yes'),(310,'woocommerce_thumbnail_image_width','300','yes'),(311,'woocommerce_checkout_highlight_required_fields','yes','yes'),(312,'woocommerce_demo_store','no','no'),(313,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes'),(314,'current_theme_supports_woocommerce','yes','yes'),(315,'woocommerce_queue_flush_rewrite_rules','no','yes'),(318,'default_product_cat','15','yes'),(320,'woocommerce_refund_returns_page_id','12','yes'),(323,'woocommerce_paypal_settings','a:23:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:85:\"Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.\";s:5:\"email\";s:21:\"sonuvalakam@gmail.com\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:21:\"sonuvalakam@gmail.com\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:3:\"yes\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:0:\"\";s:12:\"api_password\";s:0:\"\";s:13:\"api_signature\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";s:12:\"_should_load\";s:2:\"no\";}','yes'),(324,'woocommerce_version','6.5.1','yes'),(325,'woocommerce_db_version','5.9.1','yes'),(326,'woocommerce_inbox_variant_assignment','12','yes'),(330,'_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";}','yes'),(331,'action_scheduler_lock_async-request-runner','1652698715','yes'),(332,'woocommerce_admin_notices','a:1:{i:0;s:6:\"update\";}','yes'),(333,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"p7Jobx9KtkM15gFcPDDlsUXQUsqJ6joO\";}','yes'),(334,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes'),(335,'widget_woocommerce_widget_cart','a:4:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:3;a:2:{s:5:\"title\";s:6:\"Cart12\";s:13:\"hide_if_empty\";i:0;}i:5;a:0:{}}','yes'),(336,'widget_woocommerce_layered_nav_filters','a:7:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:3;a:0:{}i:5;a:0:{}i:7;a:0:{}i:9;a:1:{s:5:\"title\";s:14:\"Active Filters\";}i:10;a:1:{s:5:\"title\";s:14:\"Active Filters\";}}','yes'),(337,'widget_woocommerce_layered_nav','a:7:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:3;a:0:{}i:5;a:0:{}i:7;a:4:{s:5:\"title\";s:9:\"Filter by\";s:9:\"attribute\";s:5:\"color\";s:12:\"display_type\";s:4:\"list\";s:10:\"query_type\";s:2:\"or\";}i:10;a:4:{s:5:\"title\";s:9:\"Filter by\";s:9:\"attribute\";s:5:\"color\";s:12:\"display_type\";s:4:\"list\";s:10:\"query_type\";s:2:\"or\";}i:11;a:4:{s:5:\"title\";s:9:\"Filter by\";s:9:\"attribute\";s:5:\"color\";s:12:\"display_type\";s:4:\"list\";s:10:\"query_type\";s:3:\"and\";}}','yes'),(338,'widget_woocommerce_price_filter','a:7:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:3;a:0:{}i:5;a:0:{}i:7;a:0:{}i:9;a:0:{}i:11;a:1:{s:5:\"title\";s:15:\"Filter by price\";}}','yes'),(339,'widget_woocommerce_product_categories','a:8:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:5;a:7:{s:5:\"title\";s:18:\"Product Categories\";s:7:\"orderby\";s:4:\"name\";s:8:\"dropdown\";i:0;s:5:\"count\";i:1;s:12:\"hierarchical\";i:1;s:18:\"show_children_only\";i:0;s:10:\"hide_empty\";i:0;}i:7;a:7:{s:5:\"title\";s:18:\"Product Categories\";s:7:\"orderby\";s:4:\"name\";s:8:\"dropdown\";i:0;s:5:\"count\";i:1;s:12:\"hierarchical\";i:1;s:18:\"show_children_only\";i:0;s:10:\"hide_empty\";i:0;}i:9;a:7:{s:5:\"title\";s:9:\"Browse By\";s:7:\"orderby\";s:4:\"name\";s:8:\"dropdown\";i:0;s:5:\"count\";i:1;s:12:\"hierarchical\";i:1;s:18:\"show_children_only\";i:0;s:10:\"hide_empty\";i:0;}i:10;a:7:{s:5:\"title\";s:18:\"Product Categories\";s:7:\"orderby\";s:4:\"name\";s:8:\"dropdown\";i:0;s:5:\"count\";i:0;s:12:\"hierarchical\";i:1;s:18:\"show_children_only\";i:0;s:10:\"hide_empty\";i:0;}i:12;a:7:{s:5:\"title\";s:18:\"Product Categories\";s:7:\"orderby\";s:4:\"name\";s:8:\"dropdown\";i:0;s:5:\"count\";i:1;s:12:\"hierarchical\";i:1;s:18:\"show_children_only\";i:0;s:10:\"hide_empty\";i:0;}i:13;a:7:{s:5:\"title\";s:6:\"Browse\";s:7:\"orderby\";s:4:\"name\";s:8:\"dropdown\";i:0;s:5:\"count\";i:0;s:12:\"hierarchical\";i:1;s:18:\"show_children_only\";i:0;s:10:\"hide_empty\";i:0;}}','yes'),(340,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(341,'widget_woocommerce_product_tag_cloud','a:6:{i:1;a:0:{}i:3;a:0:{}i:5;a:1:{s:5:\"title\";s:4:\"Tags\";}i:6;a:1:{s:5:\"title\";s:12:\"Product Tags\";}i:7;a:1:{s:5:\"title\";s:12:\"Product Tags\";}s:12:\"_multiwidget\";i:1;}','yes'),(342,'widget_woocommerce_products','a:11:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:3;a:7:{s:5:\"title\";s:8:\"Products\";s:6:\"number\";s:1:\"4\";s:4:\"show\";s:0:\"\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"desc\";s:9:\"hide_free\";i:0;s:11:\"show_hidden\";i:0;}i:4;a:7:{s:5:\"title\";s:12:\"Best Sellers\";s:6:\"number\";s:1:\"4\";s:4:\"show\";s:0:\"\";s:7:\"orderby\";s:5:\"sales\";s:5:\"order\";s:4:\"desc\";s:9:\"hide_free\";i:0;s:11:\"show_hidden\";i:0;}i:5;a:7:{s:5:\"title\";s:7:\"On Sale\";s:6:\"number\";i:3;s:4:\"show\";s:6:\"onsale\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"desc\";s:9:\"hide_free\";i:0;s:11:\"show_hidden\";i:0;}i:7;a:7:{s:5:\"title\";s:8:\"Products\";s:6:\"number\";i:4;s:4:\"show\";s:0:\"\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"desc\";s:9:\"hide_free\";i:0;s:11:\"show_hidden\";i:0;}i:9;a:7:{s:5:\"title\";s:15:\"Latest Products\";s:6:\"number\";i:4;s:4:\"show\";s:0:\"\";s:7:\"orderby\";s:4:\"rand\";s:5:\"order\";s:4:\"desc\";s:9:\"hide_free\";i:0;s:11:\"show_hidden\";i:0;}i:10;a:7:{s:5:\"title\";s:17:\"Featured Products\";s:6:\"number\";i:4;s:4:\"show\";s:0:\"\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"desc\";s:9:\"hide_free\";i:0;s:11:\"show_hidden\";i:0;}i:11;a:7:{s:5:\"title\";s:12:\"Best Selling\";s:6:\"number\";i:4;s:4:\"show\";s:0:\"\";s:7:\"orderby\";s:5:\"sales\";s:5:\"order\";s:4:\"desc\";s:9:\"hide_free\";i:0;s:11:\"show_hidden\";i:0;}i:12;a:7:{s:5:\"title\";s:6:\"Latest\";s:6:\"number\";i:4;s:4:\"show\";s:0:\"\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"desc\";s:9:\"hide_free\";i:0;s:11:\"show_hidden\";i:0;}i:13;a:7:{s:5:\"title\";s:8:\"Featured\";s:6:\"number\";i:4;s:4:\"show\";s:8:\"featured\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"desc\";s:9:\"hide_free\";i:0;s:11:\"show_hidden\";i:0;}}','yes'),(343,'widget_woocommerce_recently_viewed_products','a:6:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:3;a:2:{s:5:\"title\";s:24:\"Recently Viewed Products\";s:6:\"number\";s:1:\"3\";}i:5;a:2:{s:5:\"title\";s:24:\"Recently Viewed Products\";s:6:\"number\";i:4;}i:7;a:2:{s:5:\"title\";s:24:\"Recently Viewed Products\";s:6:\"number\";i:10;}i:8;a:2:{s:5:\"title\";s:15:\"Recently Viewed\";s:6:\"number\";i:3;}}','yes'),(344,'widget_woocommerce_top_rated_products','a:4:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:2;a:2:{s:5:\"title\";s:18:\"Top Rated Products\";s:6:\"number\";i:5;}i:3;a:2:{s:5:\"title\";s:9:\"Top Rated\";s:6:\"number\";i:3;}}','yes'),(345,'widget_woocommerce_recent_reviews','a:3:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:3;a:2:{s:5:\"title\";s:14:\"Recent Reviews\";s:6:\"number\";s:1:\"3\";}}','yes'),(346,'widget_woocommerce_rating_filter','a:3:{s:12:\"_multiwidget\";i:1;i:2;a:1:{s:5:\"title\";s:14:\"Average Rating\";}i:3;a:1:{s:5:\"title\";s:14:\"Average Rating\";}}','yes'),(347,'widget_upsell_widget','a:5:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:3;a:0:{}i:5;a:0:{}i:7;a:1:{s:5:\"title\";s:16:\"Complete the loo\";}}','yes'),(350,'woocommerce_admin_version','2.8.0','yes'),(351,'woocommerce_admin_install_timestamp','1638273423','yes'),(352,'wc_remote_inbox_notifications_wca_updated','','no'),(353,'wc_remote_inbox_notifications_specs','a:35:{s:27:\"new_in_app_marketplace_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:27:\"new_in_app_marketplace_2021\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:36:\"Customize your store with extensions\";s:7:\"content\";s:164:\"Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"browse_extensions\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Browse extensions\";}}s:3:\"url\";s:15:\"&page=wc-addons\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:14:23\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.7\";}}}s:21:\"wayflyer_bnpl_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:21:\"wayflyer_bnpl_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Grow your business with funding through Wayflyer\";s:7:\"content\";s:261:\"Fast, flexible financing to boost cash flow and help your business grow â€“ one fee, no interest rates, penalties, equity, or personal guarantees. Based on your storeâ€™s performance, Wayflyer provides funding and analytical insights to invest in your business.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"wayflyer_bnpl_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Level up with funding\";}}s:3:\"url\";s:118:\"https://woocommerce.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-17 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-18 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BE\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IE\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NL\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}}}}}}s:35:\"wc_shipping_mobile_app_usps_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:94:\"Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> â€“ all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Shipping\";}}s:3:\"url\";s:135:\"https://woocommerce.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"woocommerce-shipping-usps\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}}s:30:\"wc_shipping_mobile_app_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wc_shipping_mobile_app_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:69:\"Print and manage your shipping labels with the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> â€“ all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"wc_shipping_mobile_app_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:30:\"Get the WooCommerce Mobile App\";}}s:3:\"url\";s:116:\"https://woocommerce.com/mobile/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}s:37:\"ecomm-need-help-setting-up-your-store\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"ecomm-need-help-setting-up-your-store\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:32:\"Need help setting up your Store?\";s:7:\"content\";s:350:\"Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. Weâ€™re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"set-up-concierge\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Schedule free session\";}}s:3:\"url\";s:34:\"https://wordpress.com/me/concierge\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:16:48\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}}}s:20:\"woocommerce-services\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"woocommerce-services\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"WooCommerce Shipping & Tax\";s:7:\"content\";s:251:\"WooCommerce Shipping & Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:84:\"https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:17:25\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:32:\"ecomm-unique-shopping-experience\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"ecomm-unique-shopping-experience\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"For a shopping experience as unique as your customers\";s:7:\"content\";s:270:\"Product Add-Ons allow your customers to personalize products while they\'re shopping on your online store. No more follow-up email requestsâ€”customers get what they want, before they\'re done checking out. Learn more about this extension that comes included in your plan.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:43:\"learn-more-ecomm-unique-shopping-experience\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:71:\"https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:18:01\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:37:\"wc-admin-getting-started-in-ecommerce\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-getting-started-in-ecommerce\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:38:\"Getting Started in eCommerce - webinar\";s:7:\"content\";s:174:\"We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"watch-the-webinar\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Watch the webinar\";}}s:3:\"url\";s:28:\"https://youtu.be/V_2XtCOyZ7o\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:18:37\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:12:\"setup_client\";s:9:\"operation\";s:2:\"!=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_count\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:7:\"revenue\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:4:\"none\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:7:\"revenue\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:10:\"up-to-2500\";}}}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:467:\"Thatâ€™s huge! Youâ€™re well on your way to building a successful online store â€” now itâ€™s time to think about how youâ€™ll fulfill your orders.<br/><br/>Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:130:\"https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_were_no_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_are_now_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_types\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"physical\";s:7:\"default\";a:0:{}}}}s:37:\"wc-admin-optimizing-the-checkout-flow\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-optimizing-the-checkout-flow\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:28:\"Optimizing the checkout flow\";s:7:\"content\";s:177:\"Itâ€™s crucial to get your storeâ€™s checkout as smooth as possible to avoid losing sales. Letâ€™s take a look at how you can optimize the checkout experience for your shoppers.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"optimizing-the-checkout-flow\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:144:\"https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:49\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:39:\"wc-admin-first-five-things-to-customize\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-admin-first-five-things-to-customize\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:45:\"The first 5 things to customize in your store\";s:7:\"content\";s:175:\"Deciding what to start with first is tricky. To help you properly prioritize, weâ€™ve put together this short list of the first few things you should customize in WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:130:\"https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:20:31\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:2;}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:5:\"value\";s:9:\"NOT EMPTY\";s:7:\"default\";s:9:\"NOT EMPTY\";s:9:\"operation\";s:2:\"!=\";}}}s:32:\"wc-payments-qualitative-feedback\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wc-payments-qualitative-feedback\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Payments setup - let us know what you think\";s:7:\"content\";s:146:\"Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"qualitative-feedback-from-new-users\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:39:\"https://automattic.survey.fm/wc-pay-new\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:13\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:20:\"woocommerce-payments\";s:7:\"default\";a:0:{}}}}s:29:\"share-your-feedback-on-paypal\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"share-your-feedback-on-paypal\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:29:\"Share your feedback on PayPal\";s:7:\"content\";s:127:\"Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:43:\"http://automattic.survey.fm/paypal-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:50\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}}}s:31:\"google_listings_and_ads_install\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"google_listings_and_ads_install\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Drive traffic and sales with Google\";s:7:\"content\";s:123:\"Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"get-started\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Get started\";}}s:3:\"url\";s:122:\"https://woocommerce.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-06-09 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google_listings_and_ads\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:10;}}}s:39:\"wc-subscriptions-security-update-3-0-15\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-subscriptions-security-update-3-0-15\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:42:\"WooCommerce Subscriptions security update!\";s:7:\"content\";s:738:\"We recently released an important security update to WooCommerce Subscriptions. To ensure your siteâ€™s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br/><br/>Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br/><br/>We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br/><br/>If you have any questions we are here to help â€” just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"update-wc-subscriptions-3-0-15\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"View latest version\";}}s:3:\"url\";s:30:\"&page=wc-addons&section=helper\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:30:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:6:\"3.0.15\";}}}s:29:\"woocommerce-core-update-5-4-0\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"woocommerce-core-update-5-4-0\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Update to WooCommerce 5.4.1 now\";s:7:\"content\";s:140:\"WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"update-wc-core-5-4-0\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"How to update WooCommerce\";}}s:3:\"url\";s:64:\"https://docs.woocommerce.com/document/how-to-update-woocommerce/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:31:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.0\";}}}s:19:\"wcpay-promo-2020-11\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-11\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-11\";s:7:\"content\";s:19:\"wcpay-promo-2020-11\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:19:\"wcpay-promo-2020-12\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-12\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-12\";s:7:\"content\";s:19:\"wcpay-promo-2020-12\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:34:\"ppxo-pps-upgrade-paypal-payments-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-1\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Get the latest PayPal extension for WooCommerce\";s:7:\"content\";s:442:\"Heads up! Thereâ€™s a new PayPal on the block!<br/><br/>Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-1\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:33:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:7;s:7:\"default\";i:1;s:9:\"operation\";s:1:\"<\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-2\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Upgrade your PayPal experience!\";s:7:\"content\";s:358:\"Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-2\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:34:30\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:6;s:7:\"default\";i:1;s:9:\"operation\";s:1:\">\";}}}s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Critical vulnerabilities in WooCommerce\";s:7:\"content\";s:574:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:59:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.8\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.9\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.2\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.3\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.4\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.5\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.4\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.3\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.4\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.2\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:36;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:37;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.3\";}i:38;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}i:39;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.5.10\";}i:40;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.7\";}i:41;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.3\";}i:42;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.3\";}i:43;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.5\";}i:44;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.4\";}i:45;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.4\";}i:46;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.5\";}i:47;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.6\";}i:48;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.4\";}i:49;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.5\";}i:50;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.5\";}i:51;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.4\";}i:52;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.3\";}i:53;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.5\";}i:54;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.3\";}i:55;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:56;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.5\";}i:57;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.3\";}i:58;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.4\";}}}s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Critical vulnerabilities in WooCommerce Blocks\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:32:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:42\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"2.5.16\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.6.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.7.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.8.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.9.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.0.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.1.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.1\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:45:\"woocommerce-core-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woocommerce-core-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"Solved: Critical vulnerabilities patched in WooCommerce\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:18\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:23:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.6\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.8\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.9\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.2\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.1\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Solved: Critical vulnerabilities patched in WooCommerce Blocks\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:54\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:19:\"habit-moment-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"habit-moment-survey\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Weâ€™re all ears! Share your experience so far with WooCommerce\";s:7:\"content\";s:136:\"Weâ€™d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:45:\"https://automattic.survey.fm/store-management\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:37:30\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:30;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:0;}}}s:26:\"ecomm-wc-navigation-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:26:\"ecomm-wc-navigation-survey\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"Weâ€™d like your feedback on the WooCommerce navigation\";s:7:\"content\";s:134:\"Weâ€™re making improvements to the WooCommerce navigation and would love your feedback. Share your experience in this 2 minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:32:\"share-navigation-survey-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:63:\"https://automattic.survey.fm/feedback-on-woocommerce-navigation\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:38:07\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:12:\"is_ecommerce\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:90;}}}s:42:\"woocommerce-core-paypal-march-2022-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:391:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). Itâ€™s recommended to disable PayPal Standard, and use <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-core-paypal-march-2022-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:44:57\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"5.5\";}i:1;a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}}}}}}}s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:237:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:45:04\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}s:24:\"pinterest_03_2022_update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"pinterest_03_2022_update\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"Your Pinterest for WooCommerce plugin is out of date!\";s:7:\"content\";s:262:\"Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins &gt; Installed Plugins</strong>, and click on â€œupdate nowâ€ under Pinterest for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"pinterest_03_2022_update\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"Update Instructions\";}}s:3:\"url\";s:148:\"https://woocommerce.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-23 00:00:39\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"pinterest-for-woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"1.0.8\";}}}s:36:\"setup_task_initiative_survey_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:36:\"setup_task_initiative_survey_q2_2022\";s:4:\"type\";s:6:\"survey\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"We want to know what matters most to you\";s:7:\"content\";s:144:\"Take 2 minutes to give us your input on what is important for you while setting up your store and help shape the future of WooCommerce together.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:53:\"setup_task_initiative_survey_q2_2022_share_your_input\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:16:\"Share your input\";}}s:3:\"url\";s:26:\"https://t.maze.co/87390007\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-04-26 00:00:37\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:180;}}}s:14:\"affirm_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:14:\"affirm_q2_2022\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:42:\"Boost your business with flexible payments\";s:7:\"content\";s:286:\"Expand your customer base with smarter payment options for more shoppers. With Affirm,  you can offer the most relevant payment options at every price point â€“ from four interest-free payments every two weeks to longer installments up to 36 months. Fast-track your revenue goals today!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"affirm_q2_2022\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Get started for free\";}}s:3:\"url\";s:129:\"https://woocommerce.com/products/woocommerce-gateway-affirm/?utm_source=inbox_note&utm_medium=product&utm_campaign=affirm_q2_2022\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-15 00:00:33\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2022-05-28 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}}}}}s:32:\"setup_task_second_survey_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"setup_task_second_survey_q2_2022\";s:4:\"type\";s:6:\"survey\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"We want to know what matters most to you\";s:7:\"content\";s:144:\"Take 2 minutes to give us your input on what is important for you while setting up your store and help shape the future of WooCommerce together.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:49:\"setup_task_second_survey_q2_2022_share_your_input\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:16:\"Share your input\";}}s:3:\"url\";s:26:\"https://t.maze.co/87390007\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-10 01:44:35\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:1:{i:0;a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:180;}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:365;}}}}}}s:33:\"store_setup_survey_survey_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:33:\"store_setup_survey_survey_q2_2022\";s:4:\"type\";s:6:\"survey\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:30:\"How is your store setup going?\";s:7:\"content\";s:232:\"Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWeâ€™d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:53:\"store_setup_survey_survey_q2_2022_share_your_thoughts\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Tell us how itâ€™s going\";}}s:3:\"url\";s:52:\"https://automattic.survey.fm/store-setup-survey-2022\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-09 08:42:10\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:7;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:9;}}}s:31:\"wc-admin-EU-consumer-protection\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"wc-admin-EU-consumer-protection\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Important changes to EU consumer protection laws\";s:7:\"content\";s:317:\"New regulations to help modernize and strengthen consumer protection laws in the European Union (EU) take effect on May 28, 2022. These rules impact all merchants selling to the EU, regardless of where their business is located. Further detailed information is available on the European Commission\'s official website.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:31:\"wc-admin-EU-consumer-protection\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:30:\"Learn more about these changes\";}}s:3:\"url\";s:98:\"https://ec.europa.eu/info/law/law-topic/consumer-protection-law/review-eu-consumer-law_en#guidance\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-14 11:42:55\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2022-07-01 23:59:00\";}}}s:37:\"googlelistings_multicountrygtm_q22022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"googlelistings_multicountrygtm_q22022\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"Expand your audience with Multi-Country Advertising\";s:7:\"content\";s:263:\"It\'s time to expand your audience with Multi-Country Advertising, an exciting new feature in Google Listings &amp; Ads. Reach more potential customers in as many regions as you like within a single campaign, all from the convenience of your WooCommerce dashboard.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:37:\"googlelistings_multicountrygtm_q22022\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:34:\"Get Google Listings & Ads â€“ free\";}}s:3:\"url\";s:149:\"https://woocommerce.com/products/google-listings-and-ads/?utm_source=inbox_note&utm_medium=product&utm_campaign=googlelistings_multicountrygtm_q22022\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-15 15:55:35\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2022-05-21 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google-listings-and-ads\";}}}}}}}','no'),(354,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":2:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:1;}','no'),(358,'wc_blocks_surface_cart_checkout_probability','93','yes'),(359,'wc_blocks_db_schema_version','260','yes'),(367,'_transient_woocommerce_reports-transient-version','1652695880','yes'),(375,'_transient_product_query-transient-version','1652695879','yes'),(378,'category_children','a:0:{}','yes'),(409,'featured_item_category_children','a:0:{}','yes'),(413,'widget_recent-posts','a:4:{s:12:\"_multiwidget\";i:1;i:4;a:0:{}i:6;a:3:{s:5:\"title\";s:4:\"asdf\";s:6:\"number\";i:3;s:9:\"show_date\";b:0;}i:8;a:0:{}}','yes'),(414,'widget_recent-comments','a:3:{i:4;a:0:{}i:5;a:2:{s:5:\"title\";s:15:\"Recent Comments\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(415,'widget_null-instagram-feed','a:4:{i:3;a:0:{}i:4;a:6:{s:5:\"title\";s:9:\"Instagram\";s:8:\"username\";s:21:\"beautifuldestinations\";s:6:\"number\";s:2:\"10\";s:4:\"size\";s:5:\"large\";s:6:\"target\";s:5:\"_self\";s:4:\"link\";s:10:\"Follow Me!\";}i:5;a:6:{s:5:\"title\";s:9:\"Instagram\";s:8:\"username\";s:7:\"topshop\";s:6:\"number\";s:1:\"6\";s:4:\"size\";s:9:\"thumbnail\";s:6:\"target\";s:5:\"_self\";s:4:\"link\";s:9:\"Follow us\";}s:12:\"_multiwidget\";i:1;}','yes'),(416,'yith_wcwl_button_position','add-to-cart','yes'),(420,'envato_setup_complete','1638275538','yes'),(421,'_transient_shipping-transient-version','1638275547','yes'),(424,'_transient_product-transient-version','1641268844','yes'),(439,'woocommerce_maybe_regenerate_images_hash','991b1ca641921cf0f5baf7a2fe85861b','yes'),(523,'_transient_health-check-site-status-result','{\"good\":14,\"recommended\":5,\"critical\":1}','yes'),(1013,'woocommerce_marketplace_suggestions','a:2:{s:11:\"suggestions\";a:27:{i:0;a:4:{s:4:\"slug\";s:28:\"product-edit-meta-tab-header\";s:7:\"context\";s:28:\"product-edit-meta-tab-header\";s:5:\"title\";s:22:\"Recommended extensions\";s:13:\"allow-dismiss\";b:0;}i:1;a:6:{s:4:\"slug\";s:39:\"product-edit-meta-tab-footer-browse-all\";s:7:\"context\";s:28:\"product-edit-meta-tab-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:2;a:9:{s:4:\"slug\";s:46:\"product-edit-mailchimp-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-mailchimp\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/mailchimp-for-memberships.svg\";s:5:\"title\";s:25:\"Mailchimp for Memberships\";s:4:\"copy\";s:79:\"Completely automate your email lists by syncing membership changes to Mailchimp\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/mailchimp-woocommerce-memberships/\";}i:3;a:9:{s:4:\"slug\";s:19:\"product-edit-addons\";s:7:\"product\";s:26:\"woocommerce-product-addons\";s:14:\"show-if-active\";a:2:{i:0;s:25:\"woocommerce-subscriptions\";i:1;s:20:\"woocommerce-bookings\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-add-ons.svg\";s:5:\"title\";s:15:\"Product Add-Ons\";s:4:\"copy\";s:93:\"Offer add-ons like gift wrapping, special messages or other special options for your products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-add-ons/\";}i:4;a:9:{s:4:\"slug\";s:46:\"product-edit-woocommerce-subscriptions-gifting\";s:7:\"product\";s:33:\"woocommerce-subscriptions-gifting\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/gifting-for-subscriptions.svg\";s:5:\"title\";s:25:\"Gifting for Subscriptions\";s:4:\"copy\";s:70:\"Let customers buy subscriptions for others - they\'re the ultimate gift\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/woocommerce-subscriptions-gifting/\";}i:5;a:9:{s:4:\"slug\";s:42:\"product-edit-teams-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-for-teams\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:112:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/teams-for-memberships.svg\";s:5:\"title\";s:21:\"Teams for Memberships\";s:4:\"copy\";s:123:\"Adds B2B functionality to WooCommerce Memberships, allowing sites to sell team, group, corporate, or family member accounts\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/teams-woocommerce-memberships/\";}i:6;a:8:{s:4:\"slug\";s:29:\"product-edit-variation-images\";s:7:\"product\";s:39:\"woocommerce-additional-variation-images\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/additional-variation-images.svg\";s:5:\"title\";s:27:\"Additional Variation Images\";s:4:\"copy\";s:72:\"Showcase your products in the best light with a image for each variation\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://woocommerce.com/products/woocommerce-additional-variation-images/\";}i:7;a:9:{s:4:\"slug\";s:47:\"product-edit-woocommerce-subscription-downloads\";s:7:\"product\";s:34:\"woocommerce-subscription-downloads\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscription-downloads.svg\";s:5:\"title\";s:22:\"Subscription Downloads\";s:4:\"copy\";s:57:\"Give customers special downloads with their subscriptions\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:68:\"https://woocommerce.com/products/woocommerce-subscription-downloads/\";}i:8;a:8:{s:4:\"slug\";s:31:\"product-edit-min-max-quantities\";s:7:\"product\";s:30:\"woocommerce-min-max-quantities\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/min-max-quantities.svg\";s:5:\"title\";s:18:\"Min/Max Quantities\";s:4:\"copy\";s:81:\"Specify minimum and maximum allowed product quantities for orders to be completed\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/min-max-quantities/\";}i:9;a:8:{s:4:\"slug\";s:28:\"product-edit-name-your-price\";s:7:\"product\";s:27:\"woocommerce-name-your-price\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/name-your-price.svg\";s:5:\"title\";s:15:\"Name Your Price\";s:4:\"copy\";s:70:\"Let customers pay what they want - useful for donations, tips and more\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/name-your-price/\";}i:10;a:8:{s:4:\"slug\";s:42:\"product-edit-woocommerce-one-page-checkout\";s:7:\"product\";s:29:\"woocommerce-one-page-checkout\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/one-page-checkout.svg\";s:5:\"title\";s:17:\"One Page Checkout\";s:4:\"copy\";s:92:\"Don\'t make customers click around - let them choose products, checkout & pay all on one page\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/woocommerce-one-page-checkout/\";}i:11;a:4:{s:4:\"slug\";s:19:\"orders-empty-header\";s:7:\"context\";s:24:\"orders-list-empty-header\";s:5:\"title\";s:20:\"Tools for your store\";s:13:\"allow-dismiss\";b:0;}i:12;a:6:{s:4:\"slug\";s:30:\"orders-empty-footer-browse-all\";s:7:\"context\";s:24:\"orders-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:13;a:8:{s:4:\"slug\";s:19:\"orders-empty-wc-pay\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-payments\";s:4:\"icon\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/woocommerce-payments.svg\";s:5:\"title\";s:20:\"WooCommerce Payments\";s:4:\"copy\";s:125:\"Securely accept payments and manage transactions directly from your WooCommerce dashboard â€“ no setup costs or monthly fees.\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-payments/\";}i:14;a:8:{s:4:\"slug\";s:19:\"orders-empty-zapier\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:18:\"woocommerce-zapier\";s:4:\"icon\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/zapier.svg\";s:5:\"title\";s:6:\"Zapier\";s:4:\"copy\";s:88:\"Save time and increase productivity by connecting your store to more than 1000+ services\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/woocommerce-zapier/\";}i:15;a:8:{s:4:\"slug\";s:30:\"orders-empty-shipment-tracking\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:29:\"woocommerce-shipment-tracking\";s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipment-tracking.svg\";s:5:\"title\";s:17:\"Shipment Tracking\";s:4:\"copy\";s:86:\"Let customers know when their orders will arrive by adding shipment tracking to emails\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:51:\"https://woocommerce.com/products/shipment-tracking/\";}i:16;a:8:{s:4:\"slug\";s:32:\"orders-empty-table-rate-shipping\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:31:\"woocommerce-table-rate-shipping\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/table-rate-shipping.svg\";s:5:\"title\";s:19:\"Table Rate Shipping\";s:4:\"copy\";s:122:\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/table-rate-shipping/\";}i:17;a:8:{s:4:\"slug\";s:40:\"orders-empty-shipping-carrier-extensions\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipping-carrier-extensions.svg\";s:5:\"title\";s:27:\"Shipping Carrier Extensions\";s:4:\"copy\";s:116:\"Show live rates from FedEx, UPS, USPS and more directly on your store - never under or overcharge for shipping again\";s:11:\"button-text\";s:13:\"Find Carriers\";s:8:\"promoted\";s:26:\"category-shipping-carriers\";s:3:\"url\";s:99:\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/shipping-carriers/\";}i:18;a:8:{s:4:\"slug\";s:32:\"orders-empty-google-product-feed\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-product-feeds\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/google-product-feed.svg\";s:5:\"title\";s:19:\"Google Product Feed\";s:4:\"copy\";s:76:\"Increase sales by letting customers find you when they\'re shopping on Google\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/google-product-feed/\";}i:19;a:4:{s:4:\"slug\";s:35:\"products-empty-header-product-types\";s:7:\"context\";s:26:\"products-list-empty-header\";s:5:\"title\";s:23:\"Other types of products\";s:13:\"allow-dismiss\";b:0;}i:20;a:6:{s:4:\"slug\";s:32:\"products-empty-footer-browse-all\";s:7:\"context\";s:26:\"products-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:21;a:8:{s:4:\"slug\";s:30:\"products-empty-product-vendors\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-vendors\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-vendors.svg\";s:5:\"title\";s:15:\"Product Vendors\";s:4:\"copy\";s:47:\"Turn your store into a multi-vendor marketplace\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-vendors/\";}i:22;a:8:{s:4:\"slug\";s:26:\"products-empty-memberships\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:23:\"woocommerce-memberships\";s:4:\"icon\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/memberships.svg\";s:5:\"title\";s:11:\"Memberships\";s:4:\"copy\";s:76:\"Give members access to restricted content or products, for a fee or for free\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:57:\"https://woocommerce.com/products/woocommerce-memberships/\";}i:23;a:9:{s:4:\"slug\";s:35:\"products-empty-woocommerce-deposits\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-deposits\";s:14:\"show-if-active\";a:1:{i:0;s:20:\"woocommerce-bookings\";}s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/deposits.svg\";s:5:\"title\";s:8:\"Deposits\";s:4:\"copy\";s:75:\"Make it easier for customers to pay by offering a deposit or a payment plan\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-deposits/\";}i:24;a:8:{s:4:\"slug\";s:40:\"products-empty-woocommerce-subscriptions\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-subscriptions\";s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:13:\"Subscriptions\";s:4:\"copy\";s:97:\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:59:\"https://woocommerce.com/products/woocommerce-subscriptions/\";}i:25;a:8:{s:4:\"slug\";s:35:\"products-empty-woocommerce-bookings\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-bookings\";s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/bookings.svg\";s:5:\"title\";s:8:\"Bookings\";s:4:\"copy\";s:99:\"Allow customers to book appointments, make reservations or rent equipment without leaving your site\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-bookings/\";}i:26;a:8:{s:4:\"slug\";s:30:\"products-empty-product-bundles\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-bundles\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-bundles.svg\";s:5:\"title\";s:15:\"Product Bundles\";s:4:\"copy\";s:49:\"Offer customizable bundles and assembled products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-bundles/\";}}s:7:\"updated\";i:1642059713;}','no'),(1251,'_transient_orders-transient-version','1642082019','yes'),(1528,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(2057,'yit_recently_activated','a:4:{i:0;s:33:\"yith-woocommerce-compare/init.php\";i:1;s:34:\"yith-woocommerce-wishlist/init.php\";i:2;s:34:\"yith-woocommerce-wishlist/init.php\";i:3;s:33:\"yith-woocommerce-compare/init.php\";}','yes'),(2058,'widget_yith-woocompare-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2059,'yith_woocompare_is_button','link','yes'),(2060,'yith_woocompare_button_text','Compare this product','yes'),(2061,'yith_woocompare_compare_button_in_product_page','yes','yes'),(2062,'yith_woocompare_compare_button_in_products_list','no','yes'),(2063,'yith_woocompare_auto_open','yes','yes'),(2064,'yith_woocompare_table_text','Compare products','yes'),(2065,'yith_woocompare_fields_attrs','a:10:{i:0;s:5:\"image\";i:1;s:5:\"title\";i:2;s:5:\"price\";i:3;s:11:\"add-to-cart\";i:4;s:11:\"description\";i:5;s:3:\"sku\";i:6;s:5:\"stock\";i:7;s:6:\"weight\";i:8;s:10:\"dimensions\";i:9;s:9:\"pa_weight\";}','yes'),(2066,'yith_woocompare_price_end','yes','yes'),(2067,'yith_woocompare_add_to_cart_end','no','yes'),(2068,'yith_woocompare_image_size','a:3:{s:5:\"width\";s:3:\"220\";s:6:\"height\";s:3:\"154\";s:4:\"crop\";s:2:\"on\";}','yes'),(2069,'yit_plugin_fw_panel_wc_default_options_set','a:2:{s:21:\"yith_woocompare_panel\";b:1;s:15:\"yith_wcwl_panel\";b:1;}','yes'),(2071,'yith_wcwl_wishlist_page_id','94','yes'),(2072,'yith_wcwl_version','3.3.0','yes'),(2073,'yith_wcwl_db_version','3.0.0','yes'),(2074,'yith_wcwl_ajax_enable','yes','yes'),(2075,'yith_wfbt_enable_integration','yes','yes'),(2076,'yith_wcwl_after_add_to_wishlist_behaviour','add','yes'),(2077,'yith_wcwl_show_on_loop','no','yes'),(2078,'yith_wcwl_loop_position','after_add_to_cart','yes'),(2079,'yith_wcwl_add_to_wishlist_text','Add to wishlist','yes'),(2080,'yith_wcwl_product_added_text','Product added!','yes'),(2081,'yith_wcwl_browse_wishlist_text','Browse wishlist','yes'),(2082,'yith_wcwl_already_in_wishlist_text','The product is already in your wishlist!','yes'),(2083,'yith_wcwl_add_to_wishlist_style','link','yes'),(2084,'yith_wcwl_rounded_corners_radius','16','yes'),(2085,'yith_wcwl_add_to_wishlist_icon','fa-heart-o','yes'),(2086,'yith_wcwl_add_to_wishlist_custom_icon','','yes'),(2087,'yith_wcwl_added_to_wishlist_icon','fa-heart','yes'),(2088,'yith_wcwl_added_to_wishlist_custom_icon','','yes'),(2089,'yith_wcwl_custom_css','','yes'),(2090,'yith_wcwl_variation_show','yes','yes'),(2091,'yith_wcwl_price_show','yes','yes'),(2092,'yith_wcwl_stock_show','yes','yes'),(2093,'yith_wcwl_show_dateadded','no','yes'),(2094,'yith_wcwl_add_to_cart_show','yes','yes'),(2095,'yith_wcwl_show_remove','yes','yes'),(2096,'yith_wcwl_repeat_remove_button','no','yes'),(2097,'yith_wcwl_redirect_cart','no','yes'),(2098,'yith_wcwl_remove_after_add_to_cart','yes','yes'),(2099,'yith_wcwl_enable_share','yes','yes'),(2100,'yith_wcwl_share_fb','yes','yes'),(2101,'yith_wcwl_share_twitter','yes','yes'),(2102,'yith_wcwl_share_pinterest','yes','yes'),(2103,'yith_wcwl_share_email','yes','yes'),(2104,'yith_wcwl_share_whatsapp','yes','yes'),(2105,'yith_wcwl_share_url','no','yes'),(2106,'yith_wcwl_socials_title','My wishlist on Padmini Agarbathi','yes'),(2107,'yith_wcwl_socials_text','','yes'),(2108,'yith_wcwl_socials_image_url','','yes'),(2109,'yith_wcwl_wishlist_title','My wishlist','yes'),(2110,'yith_wcwl_add_to_cart_text','Add to cart','yes'),(2111,'yith_wcwl_add_to_cart_style','link','yes'),(2112,'yith_wcwl_add_to_cart_rounded_corners_radius','16','yes'),(2113,'yith_wcwl_add_to_cart_icon','fa-shopping-cart','yes'),(2114,'yith_wcwl_add_to_cart_custom_icon','','yes'),(2115,'yith_wcwl_color_headers_background','#F4F4F4','yes'),(2116,'yith_wcwl_fb_button_icon','fa-facebook','yes'),(2117,'yith_wcwl_fb_button_custom_icon','','yes'),(2118,'yith_wcwl_tw_button_icon','fa-twitter','yes'),(2119,'yith_wcwl_tw_button_custom_icon','','yes'),(2120,'yith_wcwl_pr_button_icon','fa-pinterest','yes'),(2121,'yith_wcwl_pr_button_custom_icon','','yes'),(2122,'yith_wcwl_em_button_icon','fa-envelope-o','yes'),(2123,'yith_wcwl_em_button_custom_icon','','yes'),(2124,'yith_wcwl_wa_button_icon','fa-whatsapp','yes'),(2125,'yith_wcwl_wa_button_custom_icon','','yes'),(2138,'yith_system_info','a:2:{s:11:\"system_info\";a:13:{s:14:\"min_wp_version\";a:1:{s:5:\"value\";s:5:\"5.8.2\";}s:14:\"min_wc_version\";a:1:{s:5:\"value\";s:5:\"5.9.0\";}s:15:\"wp_memory_limit\";a:1:{s:5:\"value\";i:268435456;}s:15:\"min_php_version\";a:1:{s:5:\"value\";s:6:\"7.3.33\";}s:15:\"min_tls_version\";a:1:{s:5:\"value\";s:3:\"1.3\";}s:15:\"imagick_version\";a:1:{s:5:\"value\";s:6:\"6.9.10\";}s:15:\"wp_cron_enabled\";a:1:{s:5:\"value\";b:1;}s:16:\"mbstring_enabled\";a:1:{s:5:\"value\";b:1;}s:17:\"simplexml_enabled\";a:1:{s:5:\"value\";b:1;}s:10:\"gd_enabled\";a:1:{s:5:\"value\";b:1;}s:13:\"iconv_enabled\";a:1:{s:5:\"value\";b:1;}s:15:\"opcache_enabled\";a:1:{s:5:\"value\";b:0;}s:17:\"url_fopen_enabled\";a:1:{s:5:\"value\";s:1:\"1\";}}s:6:\"errors\";b:0;}','yes'),(2205,'br-compare-products-options','a:9:{s:8:\"template\";s:0:\"\";s:13:\"apply_filters\";s:0:\"\";s:16:\"general_settings\";a:11:{s:12:\"fast_compare\";s:1:\"1\";s:16:\"hide_same_button\";s:1:\"1\";s:17:\"hide_same_default\";s:0:\"\";s:18:\"remove_all_compare\";s:1:\"1\";s:9:\"addthisID\";s:0:\"\";s:12:\"compare_page\";s:3:\"676\";s:20:\"remove_compare_table\";s:0:\"\";s:10:\"attributes\";a:12:{i:0;s:8:\"cp_price\";i:1;s:14:\"cp_add_to_cart\";i:2;s:20:\"cp_short_description\";i:3;s:12:\"cp_available\";i:4;s:8:\"cp_image\";i:5;s:8:\"wp_theme\";i:6;s:16:\"block_categories\";i:7;s:18:\"product_visibility\";i:8;s:11:\"product_cat\";i:9;s:9:\"pa_weight\";i:10;s:22:\"featured_item_category\";i:11;s:17:\"featured_item_tag\";}s:15:\"use_full_screen\";s:0:\"\";s:16:\"compare_template\";s:11:\"new-compare\";s:15:\"button_position\";s:0:\"\";}s:23:\"button_position_product\";s:17:\"after_add_to_cart\";s:14:\"style_settings\";a:11:{s:6:\"button\";a:6:{s:6:\"bcolor\";s:7:\"#999999\";s:6:\"bwidth\";s:1:\"0\";s:7:\"bradius\";s:1:\"0\";s:8:\"fontsize\";s:2:\"16\";s:6:\"fcolor\";s:7:\"#333333\";s:9:\"backcolor\";s:7:\"#9999ff\";}s:10:\"toolbutton\";a:6:{s:6:\"bcolor\";s:7:\"#999999\";s:6:\"bwidth\";s:1:\"0\";s:7:\"bradius\";s:1:\"0\";s:8:\"fontsize\";s:2:\"16\";s:6:\"fcolor\";s:7:\"#333333\";s:9:\"backcolor\";s:7:\"#9999ff\";}s:5:\"table\";a:20:{s:8:\"colwidth\";s:3:\"200\";s:8:\"imgwidth\";s:0:\"\";s:10:\"toppadding\";s:1:\"0\";s:9:\"backcolor\";s:7:\"#ffffff\";s:13:\"backcolorsame\";s:0:\"\";s:9:\"margintop\";s:0:\"\";s:12:\"marginbottom\";s:0:\"\";s:10:\"marginleft\";s:0:\"\";s:11:\"marginright\";s:0:\"\";s:10:\"paddingtop\";s:0:\"\";s:13:\"paddingbottom\";s:0:\"\";s:11:\"paddingleft\";s:0:\"\";s:12:\"paddingright\";s:0:\"\";s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:11:\"bordercolor\";s:0:\"\";s:9:\"samecolor\";s:0:\"\";s:14:\"samecolorhover\";s:0:\"\";}s:9:\"fulltable\";a:8:{s:9:\"closesize\";s:0:\"\";s:10:\"closecolor\";s:0:\"\";s:8:\"closetop\";s:0:\"\";s:11:\"closebottom\";s:0:\"\";s:9:\"closeleft\";s:0:\"\";s:10:\"closeright\";s:0:\"\";s:9:\"backcolor\";s:0:\"\";s:11:\"backopacity\";s:0:\"\";}s:10:\"dif_button\";a:5:{s:8:\"fontsize\";s:0:\"\";s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:1:\"0\";s:5:\"color\";s:0:\"\";s:9:\"backcolor\";s:0:\"\";}s:16:\"dif_button_hover\";a:3:{s:8:\"fontsize\";s:0:\"\";s:5:\"color\";s:0:\"\";s:9:\"backcolor\";s:0:\"\";}s:12:\"clear_button\";a:5:{s:8:\"fontsize\";s:0:\"\";s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:1:\"0\";s:5:\"color\";s:0:\"\";s:9:\"backcolor\";s:0:\"\";}s:18:\"clear_button_hover\";a:3:{s:8:\"fontsize\";s:0:\"\";s:5:\"color\";s:0:\"\";s:9:\"backcolor\";s:0:\"\";}s:13:\"comparebutton\";a:4:{s:8:\"fontsize\";s:0:\"\";s:5:\"width\";s:0:\"\";s:5:\"color\";s:0:\"\";s:9:\"backcolor\";s:0:\"\";}s:18:\"comparebuttonhover\";a:4:{s:8:\"fontsize\";s:0:\"\";s:5:\"width\";s:0:\"\";s:5:\"color\";s:0:\"\";s:9:\"backcolor\";s:0:\"\";}s:18:\"comparebuttonadded\";a:4:{s:8:\"fontsize\";s:0:\"\";s:5:\"width\";s:0:\"\";s:5:\"color\";s:0:\"\";s:9:\"backcolor\";s:0:\"\";}}s:13:\"text_settings\";a:11:{s:7:\"compare\";s:20:\"Compare this Product\";s:11:\"add_compare\";s:20:\"Compare this Product\";s:13:\"added_compare\";s:5:\"Added\";s:7:\"toolbar\";s:20:\"Products For Compare\";s:9:\"attribute\";s:10:\"Attributes\";s:6:\"custom\";s:16:\"Other attributes\";s:12:\"availability\";s:12:\"Availability\";s:11:\"description\";s:11:\"Description\";s:23:\"remove_all_compare_text\";s:0:\"\";s:21:\"hide_same_button_text\";s:0:\"\";s:21:\"show_same_button_text\";s:0:\"\";}s:19:\"javascript_settings\";a:5:{s:11:\"before_load\";s:0:\"\";s:10:\"after_load\";s:0:\"\";s:13:\"before_remove\";s:0:\"\";s:12:\"after_remove\";s:0:\"\";s:10:\"custom_css\";s:0:\"\";}s:28:\"fontawesome_frontend_disable\";s:0:\"\";s:28:\"fontawesome_frontend_version\";s:0:\"\";}','yes'),(2206,'widget_berocket_compare_products_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2207,'BeRocket_Framework_plugins_version_check','a:1:{s:16:\"compare_products\";s:7:\"3.5.7.2\";}','yes'),(2208,'berocket_admin_notices','a:1:{i:20;a:1:{i:0;a:1:{i:0;a:1:{s:9:\"subscribe\";a:15:{s:5:\"start\";i:0;s:3:\"end\";i:0;s:4:\"name\";s:9:\"subscribe\";s:4:\"html\";s:136:\"Subscribe to get latest BeRocket news and updates, plugin recommendations and configuration help, promotional email with discount codes.\";s:9:\"righthtml\";s:43:\"<a class=\"berocket_no_thanks\">No thanks</a>\";s:10:\"rightwidth\";i:80;s:13:\"nothankswidth\";i:60;s:12:\"contentwidth\";i:400;s:9:\"subscribe\";b:1;s:6:\"closed\";s:1:\"0\";s:8:\"priority\";i:20;s:6:\"height\";i:50;s:6:\"repeat\";b:0;s:11:\"repeatcount\";i:1;s:5:\"image\";a:4:{s:5:\"local\";s:142:\"https://demoweblinks.in/padmini/wp-content/plugins/products-compare-for-woocommerce/berocket/includes/../assets/images/ad_white_on_orange.webp\";s:5:\"width\";i:239;s:6:\"height\";i:118;s:5:\"scale\";d:0.4237288135593220150809656843193806707859039306640625;}}}}}}','yes'),(2211,'berocket_current_displayed_notice','a:15:{s:5:\"start\";i:0;s:3:\"end\";i:0;s:4:\"name\";s:9:\"subscribe\";s:4:\"html\";s:136:\"Subscribe to get latest BeRocket news and updates, plugin recommendations and configuration help, promotional email with discount codes.\";s:9:\"righthtml\";s:43:\"<a class=\"berocket_no_thanks\">No thanks</a>\";s:10:\"rightwidth\";i:80;s:13:\"nothankswidth\";i:60;s:12:\"contentwidth\";i:400;s:9:\"subscribe\";b:1;s:6:\"closed\";s:1:\"0\";s:8:\"priority\";i:20;s:6:\"height\";i:50;s:6:\"repeat\";b:0;s:11:\"repeatcount\";i:1;s:5:\"image\";a:4:{s:5:\"local\";s:142:\"https://demoweblinks.in/padmini/wp-content/plugins/products-compare-for-woocommerce/berocket/includes/../assets/images/ad_white_on_orange.webp\";s:5:\"width\";i:239;s:6:\"height\";i:118;s:5:\"scale\";d:0.4237288135593220150809656843193806707859039306640625;}}','yes'),(2212,'berocket_admin_notices_rate_stars','a:1:{i:4;a:2:{s:4:\"time\";i:1639541156;s:5:\"count\";i:0;}}','yes'),(2217,'berocket_framework_option_global','a:2:{s:28:\"fontawesome_frontend_disable\";s:0:\"\";s:28:\"fontawesome_frontend_version\";s:0:\"\";}','yes'),(2246,'berocket_key_activated_plugins','a:1:{i:4;b:0;}','yes'),(2256,'yith_wcwl_color_add_to_wishlist','a:6:{s:10:\"background\";s:7:\"#333333\";s:4:\"text\";s:7:\"#FFFFFF\";s:6:\"border\";s:7:\"#333333\";s:16:\"background_hover\";s:7:\"#333333\";s:10:\"text_hover\";s:7:\"#FFFFFF\";s:12:\"border_hover\";s:7:\"#333333\";}','yes'),(2258,'yith_woocompare_fields','a:10:{s:5:\"image\";b:1;s:5:\"title\";b:1;s:5:\"price\";b:1;s:11:\"add-to-cart\";b:1;s:11:\"description\";b:1;s:3:\"sku\";b:1;s:5:\"stock\";b:1;s:6:\"weight\";b:1;s:10:\"dimensions\";b:1;s:9:\"pa_weight\";b:1;}','yes'),(2262,'yith_wcwl_color_add_to_cart','a:6:{s:10:\"background\";s:7:\"#333333\";s:4:\"text\";s:7:\"#FFFFFF\";s:6:\"border\";s:7:\"#333333\";s:16:\"background_hover\";s:7:\"#4F4F4F\";s:10:\"text_hover\";s:7:\"#FFFFFF\";s:12:\"border_hover\";s:7:\"#4F4F4F\";}','yes'),(2263,'yith_wcwl_color_button_style_1','a:6:{s:10:\"background\";s:7:\"#333333\";s:4:\"text\";s:7:\"#FFFFFF\";s:6:\"border\";s:7:\"#333333\";s:16:\"background_hover\";s:7:\"#4F4F4F\";s:10:\"text_hover\";s:7:\"#FFFFFF\";s:12:\"border_hover\";s:7:\"#4F4F4F\";}','yes'),(2264,'yith_wcwl_color_button_style_2','a:6:{s:10:\"background\";s:7:\"#333333\";s:4:\"text\";s:7:\"#FFFFFF\";s:6:\"border\";s:7:\"#333333\";s:16:\"background_hover\";s:7:\"#4F4F4F\";s:10:\"text_hover\";s:7:\"#FFFFFF\";s:12:\"border_hover\";s:7:\"#4F4F4F\";}','yes'),(2265,'yith_wcwl_color_wishlist_table','a:3:{s:10:\"background\";s:7:\"#FFFFFF\";s:4:\"text\";s:7:\"#6d6c6c\";s:6:\"border\";s:7:\"#FFFFFF\";}','yes'),(2266,'yith_wcwl_color_share_button','a:2:{s:5:\"color\";s:7:\"#FFFFFF\";s:11:\"color_hover\";s:7:\"#FFFFFF\";}','yes'),(2267,'yith_wcwl_color_fb_button','a:2:{s:10:\"background\";s:7:\"#39599E\";s:16:\"background_hover\";s:7:\"#595A5A\";}','yes'),(2268,'yith_wcwl_color_tw_button','a:2:{s:10:\"background\";s:7:\"#45AFE2\";s:16:\"background_hover\";s:7:\"#595A5A\";}','yes'),(2269,'yith_wcwl_color_pr_button','a:2:{s:10:\"background\";s:7:\"#AB2E31\";s:16:\"background_hover\";s:7:\"#595A5A\";}','yes'),(2270,'yith_wcwl_color_em_button','a:2:{s:10:\"background\";s:7:\"#FBB102\";s:16:\"background_hover\";s:7:\"#595A5A\";}','yes'),(2271,'yith_wcwl_color_wa_button','a:2:{s:10:\"background\";s:7:\"#00A901\";s:16:\"background_hover\";s:7:\"#595A5A\";}','yes'),(2315,'woocommerce_default_catalog_orderby','date','yes'),(2431,'woocommerce_thumbnail_cropping','1:1','yes'),(2432,'woocommerce_checkout_company_field','optional','yes'),(2444,'woocommerce_cod_settings','a:6:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:16:\"Cash on delivery\";s:11:\"description\";s:28:\"Pay with cash upon delivery.\";s:12:\"instructions\";s:28:\"Pay with cash upon delivery.\";s:18:\"enable_for_methods\";a:0:{}s:18:\"enable_for_virtual\";s:3:\"yes\";}','yes'),(2445,'woocommerce_gateway_order','a:3:{s:4:\"bacs\";i:0;s:6:\"cheque\";i:1;s:3:\"cod\";i:2;}','yes'),(2515,'woocommerce_admin_last_orders_milestone','1','yes'),(2720,'secret_key','EKc9OI[xMB0v`:HXA}}{wmXpE&/vm*^b*l*<Yg!a@ahfKHdf;Go{LNPez <fd-sR','no'),(2786,'woocommerce_sales_record_date','2021-12-09','yes'),(2787,'woocommerce_sales_record_amount','134','yes'),(3350,'woocommerce_shop_page_display','subcategories','yes'),(3443,'woocommerce_meta_box_errors','a:0:{}','yes'),(4159,'woocs_first_activation','1','yes'),(4160,'woocs_drop_down_view','ddslick','yes'),(4161,'woocs_currencies_aggregator','yahoo','yes'),(4162,'woocs_aggregator_key','','yes'),(4163,'woocs_welcome_currency','INR','yes'),(4164,'woocs_is_multiple_allowed','1','yes'),(4165,'woocs_is_fixed_enabled','0','yes'),(4166,'woocs_is_fixed_shipping','0','yes'),(4167,'woocs_is_fixed_coupon','0','yes'),(4168,'woocs_is_fixed_user_role','0','yes'),(4169,'woocs_force_pay_bygeoip_rules','0','yes'),(4170,'woocs_is_geoip_manipulation','0','yes'),(4171,'woocs_collect_statistic','0','yes'),(4172,'woocs_show_top_button','0','yes'),(4173,'woocs_activate_page_list','','yes'),(4174,'woocs_activate_page_list_reverse','0','yes'),(4175,'woocs_show_flags','1','yes'),(4176,'woocs_special_ajax_mode','0','yes'),(4177,'woocs_show_money_signs','1','yes'),(4178,'woocs_customer_signs','','yes'),(4179,'woocs_customer_price_format','','yes'),(4180,'woocs_currencies_rate_auto_update','no','yes'),(4181,'woocs_rate_auto_update_email','0','yes'),(4182,'woocs_storage','transient','yes'),(4183,'woocs_geo_rules','','yes'),(4184,'woocs_payments_rule_enabled','0','yes'),(4185,'woocs_payment_control','0','yes'),(4186,'woocs_payments_rules','','yes'),(4187,'woocs_hide_cents','','yes'),(4188,'woocs_hide_on_front','','yes'),(4189,'woocs_rate_plus','','yes'),(4190,'woocs_decimals','a:0:{}','yes'),(4191,'woocs_separators','a:0:{}','yes'),(4192,'woocs_price_info','0','yes'),(4193,'woocs_no_cents','','yes'),(4194,'woocs_restrike_on_checkout_page','0','yes'),(4195,'woocs_shop_is_cached','0','yes'),(4196,'woocs_shop_is_cached_preloader','0','yes'),(4197,'woocs_show_approximate_amount','0','yes'),(4198,'woocs_show_approximate_price','0','yes'),(4199,'woocs_is_auto_switcher','0','yes'),(4200,'woocs_auto_switcher_skin','classic_blocks','yes'),(4201,'woocs_auto_switcher_side','left','yes'),(4202,'woocs_auto_switcher_top_margin','100px','yes'),(4203,'woocs_auto_switcher_color','#222222','yes'),(4204,'woocs_auto_switcher_hover_color','#3b5998','yes'),(4205,'woocs_auto_switcher_basic_field','__CODE__ __SIGN__','yes'),(4206,'woocs_auto_switcher_additional_field','__DESCR__','yes'),(4207,'woocs_auto_switcher_show_page','','yes'),(4208,'woocs_auto_switcher_hide_page','','yes'),(4209,'woocs_auto_switcher_mobile_show','0','yes'),(4210,'woocs_storage_server','localhost','yes'),(4211,'woocs_storage_port','11211','yes'),(4212,'woocs_admin_theme_id','1','yes'),(4213,'woocs_geoip_profiles_data','a:1:{s:22:\"woocs_profile_def_p777\";a:2:{s:4:\"name\";s:12:\"EU countries\";s:4:\"data\";a:27:{i:0;s:2:\"AT\";i:1;s:2:\"BE\";i:2;s:2:\"BG\";i:3;s:2:\"CY\";i:4;s:2:\"CZ\";i:5;s:2:\"DE\";i:6;s:2:\"DK\";i:7;s:2:\"EE\";i:8;s:2:\"ES\";i:9;s:2:\"FI\";i:10;s:2:\"FR\";i:11;s:2:\"GR\";i:12;s:2:\"HR\";i:13;s:2:\"HU\";i:14;s:2:\"IE\";i:15;s:2:\"IT\";i:16;s:2:\"LT\";i:17;s:2:\"LU\";i:18;s:2:\"LV\";i:19;s:2:\"MT\";i:20;s:2:\"NL\";i:21;s:2:\"PO\";i:22;s:2:\"PT\";i:23;s:2:\"RO\";i:24;s:2:\"SE\";i:25;s:2:\"SI\";i:26;s:2:\"SK\";}}}','yes'),(4216,'widget_woocs_selector','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4217,'widget_woocs_rates','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4218,'widget_woocs_converter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4219,'woocs_woo_version','6.5.1','yes'),(4220,'woocs_version','1.3.7.5','yes'),(4221,'woocs_alert','a:1:{s:20:\"woot_products_tables\";s:0:\"\";}','no'),(4222,'woocs_later_rate_alert','1644501230','yes'),(4230,'wp_installer_settings','eJzs/UtzJFmWJoitu0XqP6hYdZe798AAGN5ARkSJBxzuiSx/IB3wjMxpjlgpzBSAppupWqqaORzRkyI9IsMRckWRWbH5kt6NDIUbUjgizQU3PX+gejUz2yYpnJ/B87z3XNWrZgbPiKgsVvRMZUTAzPRevY/z/M530pO9k39Vnwx2TnpVNivrfF5WeVb3fpGe7OAHeye9+9l0Yv97nM5T/O/BPv4BfpiPe7+oT3aP+Kv9+V3Wvy+r8azK6ro/XUzm+SQvbhfppD+bLG7zAr8NzynSaUb/un3S++7izeukn1zdZcl38NML/Gnyxvw0uXA/xbnOqnK8GM377hn8CJrHSW9RTeiLBye9u/l8Vp9sbeHMNsvqFv++A9+GF82GH7OHejhNi/Q2m2bFfCi/2x20f7eVjkblophv4Q/rLZ1HvZjNymo+nKe3tGaDk3+Vn2ybxVo6wd3jyEA3ZbWY1lvzcpaP+vBc+gQG/OMf6xNY4lk6+gjzpdF2cbSdvd2Dg4Nd+M/DYD/cznXNYwCvOc7qUZXP5nnJS7sNI+AmjMrpbJLNs0SG20wusuomG80TmF6SFg+J3dcEF2UD/jxO0kldJnkxmizg0eGXvivL03I6zapRlsi6beKgsAj5FMbQ5T+ILf/9rD8qizns0tZiNinTcb21sz3Y29o+ou/0J+VtOehvDzZnBe3x/kkPzlFW9X6B+wEPxZWr4Of6hyN3iGgp6RbsyJqFhxamVoweaHd3G7u6I8sZHtXn8oPoEsNhl/nNqnyU4XQGx8f43UM8Ttfuy8P5w4w/PhwMjnCwncgXhvPs85yGgmXsmkXzyXlxU+pvfpel1eQhsZ/Tmx3FBsv+sMg/pRNaRlqIg8OdAR8cfFG48aN0nsHxu6Y1Nif9MLKnf52Ox/152R+l1fzro73do/3twx5vDexUdg9nCVd9++Rf8dFfzG6rdJyZP8JTWaTw5Tvk2wezP+AbHhFBo2lNi4rf2pXtrucVfNqfV2lRT1JeArhY+JVDFWr+s76XGPi1XdkaPjjZOE+bD9qTk3JfliO5AMGc8Dv7+B04FPCGn/L5A9yyad360oHMCG9CCtIPv9U/bH3tUGQfzajIi9+n9E167yMRXPTZ/cz9/VjW43oxHj+0l42WbJvPbTq6mfIfcBFBC/DD0smkn0/xVtNntHoDXZY0n4zu4FOcCAxL39iVEwhXu87K9nB7PBwePN6yfTnLsmf56ONDH37wkT89sG8Guwy64RNITZIv4/K+IKGhR+ePdnKt4xG76YPYTT99c7n+NV9+yw8OB8erL/lB45LrBH6kGy5v8cPc7r3Dwc+3++fb/RPd7p3Y7b4GMyF+vXdi1/tb+vq693t31f1eQ4kfNu63m8E/hAu++6dd8Mfe76W3cmf1id/tPt97q473/vLTfRAc7uU6KCvG/UWdVf1w/yKH1DhK87UcpbWO7fZS23OwS4Jh+bGFzT0D2/9Djfb23/th3TuKHFa3yqO7bPSxXMy3/hpO2PTr/f3B7sHuz4rpZ8X0kyimP/4R9mV/sA26oOmv49K1j0wgADrNv589ee/J0zrLKh+0V/mwscrXomHtMndq4fY67+/wMl+ndT5KSDp/yqoaPt1IbstyTKscLB4OWP+ZLVfkuA5w2dqCbrWQS/Ebj3CeMBgHY/TWkJ/xk463gk96BaecppvMF1VRGw1pn7WZnM8TsF1q0qK8cUZ0JrjcVTmp5RZMyvvaf17cJrIduoWju7S4zeSE7O4cHMMUv7rb+2Zvc3/z4Kst+Lev7na/eZl/zmr4r91v/uKf/sU//WoxgX/+k68mOX0AwxRJXteLDKaUzhN4/08wAvz9SsYtqzq5qcppUmcZzgFn/vvyGiZWJvDlPLtPYOb41yvzJn9YZAu8+HDrv9qCseJD3ufzO1wPerdFPYdRJimu1C3c+/u7rEgWNX6Wto3jRKKiKx9/egeTz3CO3+XFGFeUHjyvHuhtShgio+n3PsARHH3sJTkss74TnZ3LbI7LX69+n7sMDoLO+b4q4Z94qmChbnPQubw2H7MHnhqN+u7q1eXw/O3l1fPXr8/eDy/Pr86Gf3P2uyHFSnHH63lazJP7cjEZJ6MUZwvjgVExwdM1KctZbEbJTTqHlcqqCoQA7eyIHlCORguQvTfzrEpu8iKv73RP6U3rbL6Y2ZW/+OVFcrS5naDAvi4/rd5NfBQsU17wu5Y3/JanvLtXWTVN3mTz1B6WHg6LC7zWw08naY33xp62szEmD5KinCf1XXlvroqfAP+sh0Jw9HHlSLR3YCym49/DzOHj8xc1qKTk/dnlVVKBEZfV+oyvtuhK0eWCS0breAEHJfl2kU9AHNbJU5HLyc7m9ubes9hd/JdnE7Kvyuo/S3QLrxe3cHAmaGriOQWbcYb/keCL3Bb47fCOzNPPZVFOHxIwPGCrUxAjyTiv4UcPuBywRjCH4M3tqOcoekA209Bgi8LxmOApgZFvU1jCCp9xk98u5BSjZV1N+d/haCzmyfgBpC5KtPS25jMHm4GH7jpzUiwbd07grEivJ/iqd1kgFGEH9cmiPWAzcC/oqMlf5vl8kpHYhDGred9IatjQ8W02r/+kgctZHy6GH/dUjtdVPs1ALGUySHL9kJzVNXySYxx8PIbr+4OO+xLWXMbqfC4MC08V64isAPzlzST7fF1+pouRwoyr8PcvF3RC5cz6Q8hyBMWAkSUkRSr4nEUpPp1+PoRpDUFvDad4xe/K8iPcKRAHNZ3QRZF9noH5B7/DRN5648OdBm+Rh71PUR3mt7eZGztN4K0XybgEhYHX/y79BMcgGeFtDwd4BXe2uM6q2+gCGSX74f1rEK+jEr/zq8t3b+EiZJMx3X6SHbVcuN/CPQ+uRCAQVA/vr6eH66QGbY9qE3OgMY36a6dR+c3RXOJ7P0kr+GOxmMLb4eGZgXIgqe5/3SWswJaewReuQbXOH2JzuwQXZpLf4Jzkuo1Q7cAoKINoV2dszgdHGNzdT7htcB3KAn1ukcoPJWgfsDFuMjo+8rVgo56reZTyrEj0qfRInn9Kx6m7HukcjsM1CmPZE/zd8/GntBgZC8ZriJbYrxvmD+lXPHb3aUVvZwRsS5TWrCpe5J/y4MEfZnC8MzKQnGLFAACcIBCoNyke59IdP/xKlY1QmLA9Rz9MF6AuYeqhfYiRE6Mng4O2Fz1obXOvbRmY25yDEF3g9HUxxajNWYuSLZPbxaaXI3vsNWxkUUcNhCVDsiUSG9KJFh20WsCOwHdQ36ByyuoH0MxTfmDO13+UgnkE4hd+k4MgeJpvgtcpdt+zR07NbH2dgSODx28MmwIuCVyxylmqj3ys3A60C7yJBfZ6bCno1MCdw7eNbvqu3/QsBc+jse9yn0Sh017prJMaDu/ojhU87B+sOGrPwFCdpXIaqwxO/ojNZPJ12k8RNVNn8qvcmxPwaO8O7W8euzfh2S0RxS8Xk0lyifuP95dWRYygtkDDRfh2cXvTOvw0DPpSdOseCtSqNdy7hxnImApsJTgoqERqO6+mb1SCSqhhfWkJSMuNf5/ipR3Sw24WxYiWrMrY/5OVqjDaQREb+3DaiBwN+8kENxgXssBdgNtfkaysA+H1xoXfVDFMYJNQCKef0nyCVoTcGnFubDAggXOC5jucABRBIPFGeDeWvCx7MTjMa93mS91mEILpbJaleJLJK8SvkQrm40siTI/vOLtJwW9r3RQc832GLjobPz2MS/Tg2bhcZUUiXxxRMBruU/JHx9kkC7RshwdLFy28vmgG34DKwefhqM4m6vkQBw0fTnAK/g7eiPGiGKML9vxXz38LEmYyCXzT5T5J7InwBJAPk8l1isaEaIklbo0ZbA3d1hypBpULV3eazlho+m0T25lvOkfo1jkUduj3HAD4Nq3IOBMVmaHJD46l7O6FhAlERrsz20tgkhV8vy0QwHgEAaJrY0MRdFnY34hPBg7hCz1IsTVZFKTieR9FItyBt5d/Hw4ERtSshEnUsYe8wah3MDh5WzAsBicLfAW+kFExFbO6vKzSMe5naASIN16nn0gRUdw+sOzoMH/KawyMeEvVuQORLQ2UEz0dvz2nrz+p1ZOB3bquyo9ZcOFewPV3PotXAnA1cb1pKl7Ui9+V0Ho7/93NDPxbsvW71UFg+d1W6ewuHw0pbhm8Isy5d4pH/apMno84ohC6SHFNw84VLledjzNwV+b1DP5v5fKpbTiFl2zOBXGEU+f6h0eHdOg4GbKOzaqhC/c99UmlZ7xS7e90zar9XnZhbLz8AgTBHRpIl4vpNAUx+11rkfgV0aJ9UkcNXjwt+Ry3tE5wvreE2VwmN/Btvrv4Nv2YwYh0e2XfjUip0vvkl1egs1CIXGd60kHRqJaJuTLRlycHAU/Eu5ub5DQtPqWgWczPV00Vp4OxKzAKvkVvzwjhiiJvNE/neBivUBxr8OQw3khfwzjAfI316RwUP5zmtRihk5v+aFKy1sEYizORrY+Q6wqSJenjLYHduLOmsxDMkgxVshIP6A8og99djFIwDOBNSS4si6vlJqIqccb8+7QaB4FnnTzZNHD/OUbJfgD+Jvo2g0e+DQ14yaL0Kgi/Y7QKddR1pssHojWl4b+CEwkG2jec5IZB5L+T//hf/dfuQzS232b38Q/lIubpxH8+T6+XrVkjJq8+P7m5zkO0rwDPa3hOGM6g65pi5nvcVI1m1BqGqSTYY1REIxIfx6qARdrp/rWO+hIrxtjB92X1kYYkwxJ0Io9PL4UeMvk0/HY/yMxSd9MwOnWNgnJUThbT4gd//5dgiY7uwphfx+WI2g8f6jRiO9CQb9Ixi9TsM8huCcLDao1ZcdPtJUs6SzAU0+FliAs+RVdvNAFrvxmhIT2o+m9eSjCY/VU6sx0PJhPwHtRARe7LpWbcWuk5ie6hq8KuYMcDeVe+u0hOX58/0tb6J2zQfMpPJNjI5g68CwV0Ty8vQQk9TFrRKRcg34ftxLjANJM4OQVCOWqud/5vMVM6RBtzyAmuIdlooNZneTYefkoni+xvjThAxwdO+jiLxNfJp+Q8Cj0keeqHoQfVQ1SW5nEbrS/My/jHFRud8Q9TfGnz0bOoFN5eHoug5TtHRMCUhZkVqlfOzDsDGfQwx6yUWRWz99NyHO7IZdZ52tJatqQCbxkxNxSKwCuGHmtkX8lTt2aniWVKSuM+B0MTfEKSo7LpeQXG41SCs/kN+pvwBTLn+G8UQgF9AwKW9TUftIY/FEzoDfkAuj7vMxAKPjfqlwZskDnfcP0qvl9c/1yymRT/8KoqFzCH+q4s53bxg0mpa+J+dAfvkFOeCV5tUs5o2VFC+0EI9YSJBzLkQqlml16dCXBUZy7yKrlhvG2N/HD8VnKyAGNZ4ylaZmlFEq/jfLxI67vrEk0QySW4SbDhJTORfRIrEwXFw6MCzTw7uNczSqJNp4sCDwd+WxQsGq6kI2oNQxfJHcZZ4BWy+X2mIR18l3VHhatW0WahgYavAfK2uch1c55qXJjY+/Vi8hEnNMombt/fZhm4mexv+50mVAAHEfGYcPwLXCrORowrVOTjmC1uVqkx+BhE62iu2xMIP9gVvBPm5OuC4F3ys6KcYMaxiGkYYVxnBjgGXWkZ3McO8dyrDQbe54N7LilaOH3u3gl8IH6neFT9LqmLOxjDvIDzNWA6y0wnOkH9upyQpSRuPE4tGI8cjHAfSM+ie5e3007d1+Uew6cZIT1wPNp9mAWfgopWAE7gLal3efDjbkxjJ3Cx+xS/lUR3riAR3BNwohkxRvaA8XoVcfSMJtWRhxYZVN5S7NKavTcpmSXki2TzERtwv319/vJlYqPyjWmz5f3h/IWkpCleirgPsfNWSd020oSfnSGuMAFdno958WiOoypjI4ntkrmLYkWesOwAwdZhqrn0R/dXsJmBs6K2cIYqj5IY+L8KCoJfB0OeUkLLn+7LORp+bmT7wqx6RT8/IYmb3zgxia9NirmcqW9DMSd4Ng67+nhRuD1LxygFm/LCZVeXXVCNZd9M0PNGMdJQSDiJepaNcNYJQZMwMnKSXGbVNbiQeA7eUKg5u63KDQxNpON0I3le3WKUoEhXX4CPWTaTVH6KuKLvEQoCVy5HtA0KIEbpYcblJjAHhi/eDd++uxq+P7s8/0/Phh8uXr97/uLsxfDl6+evLv0WeIk6rxZdJ9vMBzZ3PJHoP1lXVj7XJrC6TNTqPH/bf8ErbAQfWtIFGoVujfGUrCez3S3EW4c+fEp+reKpOvLhj4iG6CWEa+cxa3AG1MPOXVIa1P405fMNrwayCPNI5ay1KDxKDpZGGRHBVU1mQZ21o/AMDcAggSRqHxgHgb60rtwsBSsYVyYyJC4Mm04+plRlbPcsvVRBthC9ZnhB8BmXhoFo8dhLcnkiMI0QAZqwk2J1p4/Ix6xfcAbSSdQStBb6asv4dfvRHmjhYXLqmFOwoNPrdzHymFOjUDdZ6OXqnM3OxpZdzuCYC+ajykD7ou7zUUQj//FZitRcNtDzi3PEonJuGh+CJfRJJ7qScGlikRVl0fcqVUSBRPzRCndWCEq+z7HHMcDy7J3GHCg/l4dZTk2Vjl2W05yQ9f2dtWIzYG2BvUz2ziidsVlEXtrkPn1wMXFStrWxJnTpwMkp5n0wN5uD0S9aozFENNB1dgSKfLko3ki06dPRpCwwXocfLNvYG/bDo8CHIMKI+pzEC73pWGwY3AnS9GltMmOBQwX/KdIJFs7/ap5PY5GwBshN80OoTHXPZvPhxVVovJuPvn1vDIYSTNusXvluFNWxvh1pT7abNFmdLgVzFGO7bS1HVYSWBZ+yrwcaGXTz3Vz3MV0DPptPxU8k5Spum8Ylg1cgkBhbvjhDQl00RKFAVykfwcuVIKyNV/xylqJcA0sEzjqGfZ/PJ7jR6TT9HmfNpRhgwX2cplExgFojgEnBm6gxEiZ6JGsJgiGbzuax0HMjzZyKCzk2tiw8BUMvd2DDpSMCoaEJgk4YwWHZEuS1aKZEWPfe45NxhwpdORIwtF928daAyBnTQEMiJHzLeRacZt4Cwg63ijEUMpLyc/VYx6DQ7zMG0pDrgcgOb//jY2lrG+hcTvWj10TIl2pR8D7hGSsn4wAhEh6by3lJeTeCQJLGgmNxx1pZc+IJlk1Ek3JmT43ZQwBBL1hnHt9PGXvSFSVhjJ2SDx7oMponSdrK+AmIIEEFQ7N8RbCahyTjX628cxLZB7emMAKdkYYU1gajKp+zT5I8oG3ZciJNIHRvcyDZtYj9aHLuEtpKA2dV1GW9AEcTLqPLOYkPi5Gn5xoO8GfGnLiXHH5e/oP4rAcds27DBRj0JV6xO+twOSN2lKhyjseByMkm8f2wK1MrtlStl7TLpxWTuVCoFarJG7YVx62LbQzEVsaYgNVRZdJ+fXyfHSzQqW4XU1NjQHjnr1DCfvPkfjYEOyWrGB/25Kst+rML+RZs04Ditg7pdxfDCxv6WWZ9SeY8HDOWatChMbWOY2taDd1VVAximsXfHZQRmLJTvid1RnA5+C0DfkmEsjUMm4b/Barrjq03hOOvtgAIS5hNrzPaFMmjT3LQ178rF1eL69X6kmIydI+ceCF0ssyOpQVBkPF9M4QyIPJhqbr3mD8FoY3Bs5Z4/ggWPM9cROuXV1cXyV2WYp1Hl8gSnyQGZ3a2Dd/XYT4Obo6LCo76puLdfyVSCKAO0HcX/dPX5xRuJpVYciKPk0iYso/8qo1qsvfEKrbf5OOsTC5A7KIKjdtrv2Q8TXO2dUO1efUJO1aLnqXDoVGtSXabjhrFovqs5Oyz6HC1JjHKx6aCC9ivEAA+Tovn28/XVQzwySQlhfWNHGLA77KPQ8DeYm6yByglmr4lynOXLWzpe5QMo7uyzmJxEjtZD6/qmjZPtivIfeHABFrCcpnBC+CaX5RwyB+Sp6eXF884W0OPUi/dnourEiFJGA+k7wkuIa5X1skL8ntyTISWlwJpDy6iRPYuRrzEbKgQY+fiBy008pdEd3ymcAJbgpkaRACIaEevtNb/8OGeFRaQoFZE+U3MQcgEzmyDh7qfyGUQd2gvGAnuP8QDwda9mxJJz9/k2ZymHBNw6k2cgtxEvLZzJnQY9B5j0ZaO6kcngtkZIbHs0xlcEsQw6zqceTOj0krovCiLJz5c3BGe5UnoT+B0scodomY0A2JF+ZzqhPCZ6OMWoLwrTN2A5Qi6n+xbVPKr3RN+UTr5DauVnQxUs1K+Pg7E+GyI4nI4C9cV5oyR5UBqvBDsXRBkMBafVLalQUjvcZ5L49Xqkv3l0xfPr547Q4XDqyUjITiZQXV1DEDL2/CzrJ3NWV6bpm+cF1y3aNINWvDoAYhRCXO8HvxLwVNwi7mKM2NotIgUUi99iqmErhQdaA8gN8FeDnR1xKPJg4XDZey7fAT2GfnCw+sUBVUd15z4PbOmQ1cdb75eOxANuXIMEPji7JIDR9eBQZp9slg1c5K9m/b7jrRm1ILki0MHi4oIci7nAUt4no/kUx94FWlwzRfKZlcjIwl80odI4Gh9mxW34IFGvk2bQ84tSk86y02cKc9BBbUPbKC0Yo9RF+PXi1wgm8tRE7RRo3TGlqDLXqYUZAP3sionGdsBHOcjx4f+6EABHh3HlCwiCL4wdiF7FC01Q7QAh01w41RUq0vPakYXYOufCxT44Z9v/XNcINQ9/3xr/cDrWXFTTsawBM8xU/OtxwcXahhy8Wde5FhYC9Y87ksmqHJnp0XGaVewuAB8AJUmdEBnDGgJ4E7Pk6Qb6BTREcZCTFaItoRQK1xw8M7yGCvcjtYQbm0Xtcruq5yYV8DgxDN1k05qBsZ4fRsd77DLWou8NSoFkahavuKyrbPFfAMLCsFIJlC3YuuCUrCDlSfD2+ABDttKuUvixaHXMvYFBXnF5WVIMUPuAv9rTL+KTEKmu+SGOxXsdzcOm1jDFg1NYQzY4eJyxQd5yexyUtT28p3DXrsFgNt2GWCueNtDHLCaPijiLy9fL8Gg/B6rkB/6i7wP7uCkNHpjnGFtMZK7Bqr79/UWWwWr1IEESRGjxYfVomQUC3pyMpoRIfJwXoJDjP+2niShk9GC8Elxn61ci4WQGH0ltRd/WOQVYffEXcO1x22hDZlx1BYUVzT78AnUGqPXCSRUYJz8xbvTDnUrksJYiJziGoKoMBi6RtbaDCcReD4dswrhsvjGcELGNSiJCqE+cA1uSHmhkYHh0iqHDQ/9wkvJmTuhxPkCDIKkw/O39PiLRfF7EISosjHPKGm5Wo2Q1fEeSQSgmWJMk7Y5QijmAMHw/LouJyALhh/gXFxg3BpTGycnw+F9+jFbzJ4+M6cfngyiSJJsFW9bl2nv1o8xtrxOzXVE8A8dAOZDQYMF40jj2P5jVd99SglUo3x9BcWR5fTwdT8G6nmDyBZYsQs9ficn4ESRhH36TOa03NJwZ1RyU6SVNFypQFa8Lf6oY41euagnDxHBoB7jCoFDMGhy7ERgBZpP7WcuoQ4qqCWI6OwQDP/2I7Vza3IWeFBDmJ7igLu+RJF+GqJk8C8h+QJFcqv7ETVrw821Cqssb+HeUNHy3+TzVsDcxcLdy8NwPbhGvcjCa5UoFWiPLFmRFulpFNlZNQbnRKXKk/KauNXGGYJhA+PnMaGTpgUUWXDRmcYoWJ2iv1LKGiMoAocjai005vb84rx7Vup/3EqcraH7k9yBf1sAzzvBj1NKm3AJVOQp31O2nagVFWffWoEo8jEMMt6G1WJiPcSQoELLYDChScRunvGooLpfLcMPjkM6mi84VzhvmiY69eWEJQn8v675Ow3LJRlINsAehHWktF5cxw4fuEJ5NkbXrfBMLDY1yjNjyhnOtF2d/fbq+fuz53ZV8L87Hh8mCZWXgQgvXUaAFNvMF+L6GBhqE5OU6HqFwD92pX6YckU/0MEqEMCsgQswiJpP+7EVZjjrH0Znhs/8kdWmwYzR/JqTeLTm9ArTKdGOLUbYctMOwstrLsejyGvCx9vssa7F9KEv7HgRfK2GfZte57LDD/q4rAIL4GM+c751O5nRjOnofYjFy5deiAAW76IPZkAB3HgslfvSWs93caCgtMBDH+R9MCrRSfekA0jmTf0ErmdmqkHPaMKhZsNOtmqa4gYatYWP0ELsmpEYuVFUorRcwAq/vtZa6EjeuogGJlbHllpS+gezleLvgVIT/uFjOXg169gZk0qcFN82xjEQ4U/QtbCMZcuuitafv8ZoZOZ5CR0kTI9szdKq6x7E7x9VJl5XWfpxjeB7+ET/Ri6dhHezmZ615I1cXEE2alAPp6bm0gqcpM/Gqi1Nt4Q1mFFW85ZEehgM8w6OvMiSnXewpGAwC8fHVB7fxXswmfIpzKHyDB9gJOQ+DKRDnH2eM5OHwq4CTJvYG4bIixIIs4meInBg+oSKF+YnkOqtvXY1WnTp0gefncfFvc2KrEql4IxVBCEZ8Eu+0GLZuUnFCCDpj1NWTiAXGiJcqRIXpMl/Qr5X/NHEUlNWMCcQlbZA1qpFPOpVdgMW+x3nvhpHNCpK4uFVr5oZVB4E/V4oIqNVCmkDUyuyaD7zGLWE12RU8+j5gKpFS7n5rlxnN4h18VjyqzfdtZC4vGRAvaqyLEjl17aKL4w+nBcImMDrME0/59PF1DIC+swsnYTgibR5KU0OX2e8aFLM4Ez2G3EG4TIZUxQn+cOinGv0DM+p/xOcgMtfvyZrIBMTqgQhUObGiiwFiUTw+q48Op9qdWNCD9qRkOHpc4Y6o26doU4eALt8y8GGl1g6wbkaiWNQlhVZpWKBQxXN310Mf41x0wbCn2KpZGE4tpSoORTHJzHY2pe7WauwLX5/GHm7srxGyjsb9Zic+aAbZV9LDBVMb4mJ7finwpyaAnf5aRGFs0TfLIUGpHjFSyrNyRA8h4X18ZiO0xLWqA6YCTCjoHlkudKuMNc5b3iWBXr/hYm5K2/t5ePQEn5ePKAJD0v07iYIEEfofQWfYZJDVGgMvv+t5LaJJzXzMgATBFxDFoLZKD8XZuf6SUPjaDBCAOyBAMk+KwoeYbbErLLhyISc/nmFtjt8Pp2A00TFpHgg/iqpH6bXZQw3Cp6wS3U5lZaOx1xzWiek3gWnSmaz8v3N9G7RX6mCnUmTETpYsHSwhnNwTn51SdofxAoiAzOm19DwpmKqVVRxneIOyN3rKo3SrjR8Q7ygtxU4b7D3Uy0q88abNUJWxsMiecqaUitRzMlrA0YyVWxRrFoTdaI6c3c9nWnTLRTTwBokQ61HPLEC5p0yvWcTG9QIKIecnCGuwjJ5qknIHJyhRxc3A1ZyJT3nAwevda6cjs0CVrpfLhUnhTYwdiElapQ+KatbmzL1sTTiYSnh+tCD6M4ws/aK294gum+wVvgaCxeEjZ94w07VOKv4yWvYw0Va5GnbTQtxgEuWMWms46ispxmGDxxzlFtZSfMhRz8Xe5j7IikNWLY5G58k0RkdfXn6/vziavji7NsPrywkOlLx2pwNCXS08t5KjSSjolShbGLwVeSARrFqwqS3Alm3k4Xjt3VcgUrjxxojeNlwRkYriOa9lUoHgls3BMVFVSbh76PIi+D7gmoVT5COD15Cf/sshjH1WZ/ohnfiPiPIz7Qw4E/mEttSyqIgfIIpi26y2tB2kUQ6xgLmNnh1P+vTM5rFnlqU52tmwZPJP+Oy4iow67Z+tqZw6ioNXp6/w+MpkoBT7mQkW9ViWBbpa6n4Xp6kJC0eUG5En3+fTUZ4qNVtsQbGazgDRXLHdLk2iT7O0zCcGLEUn3+fVddp/nuQB8uYWijRTNiCBJlhOHuQgREwoXvliY+cUuc6RKaDyjz2+duqvK9tJlFlXIg09djeVmWic8FBfdC4VJMhHolWrdwyJTs1YObZXoPv7/0rqp98LNDDC1djWzP2i0Wue7wkJi2/6kx4g1db634LPZaGAzRa3xoR+Xvbe6JDytCFzyK3rhnD/oJboLdfnIAqkwPtrDvKhRlvRne1ib2PvEsQ5DTVteR1UPGJxinY/1p2cNXGn1U5MWjmxTj7HMJYR5MhYyeG03TW6ZckoK9AuBQ0ODzjxD3AdyGi4IpfIr6skRd0G9Wo+cg+g9PqIazO9PGyA78lnm4ksB3DS3L2yxbbqJrlLKov8pNgAIfaKHtKUbY6zOp6HvfWCrkzWKt2Deu8TDhrJvktKtqm4HHkHYKUXRATaYZRqewMptnBg0PGHBEsXCMzE3MjYZSOHMJgZMcF4GMVc9CFddBjaMbMFvXcSfERTPSj8PW1pXhwrBWzBFtJhRjMYIPRhTIaUEAOSDGYaccuOVxziZALDiqE/OCdI9o69cIXcUneh+rghRANk+vLrlZT5DTM1pnQR6cSiha6f5QkSCnFsaWoo9ayhQ2fIB17F3miExgThPYtk2uY/kcEwOO2cw1cpfil0JUi0Ty7mxnonHYooVvgIqOIOl0WVQqAjo9LujmjpivztqwKALvzeSgdFRo6grvCagNFHeDRVcpUqkcvDYG3+b57TuyASaMYU6zvgUUYe4DD2xf8EDyZHMf3TIGxGhhoymtW4HBtSoSoPmRZ/RIEzbgk8aiWh0+cVLAxD7YMmkrTQkvR4KWXxbDMGXbmrEWyCIyQ1tp5cyymapZSTPo5bpiDEsYltKyq1OcVWA+jZVeVX9jtERdHYWq5KmGh0qUKBITlnWsp58xqt3h85a8bZt3yi4nsIbqed2Cy46+saVE0DrAPSbbMdk4XvEYbc5408mMEnpQQk9QzBQf5sTC1FdYaS70473fDfgxiviNlLNFEo6gQU+t8qLAweFkQDvHS386srSPztk3OkpDEWfxTSQ8JwIqD7wFrigPKrKohsr4vAhsQyL+4Qe+MhA07as5OXrFm3M7EmzONCUXqYMtmCO5LgBudTjgldPVBpysaQajANVm7eXrbtFX1aW5JkDtt0Yh3bThxT9ziSDtI/jLW9rIBSQRcE4qz8p+xCCVo57ZmDVj0sLpSoEmuSx9WgjTinJ0LaAf3gH/34KCORNePJGMZlBhIAbrSqXj+EmwpR8wp0ZuiiMd4WOX9O+Z0p4RYZ1muSzZb77csDEBXmI+inB2md5/wDzMvgEXP4Go8DJGEZuit9KEwPwYMxBx/EagKLsZSXjfH/WJsf4yIwEBdpXFBLsl3Fjqnzg50/pGGMKx25rYPCtFtme2EHZxEWes8/TptfF/rnftc7+xfncv4mXX+c8Pa5axmvxYzWYN1akDi1RHiH7wnIWd66P2y8f0lMFtlU7SnXbJliJbE9fJnmeBHUgpOBBqUggFB4zoYrtWzxkF742EWLqKCpUGS/qcf/uYZl4iK19egaHoMbJdE6sW55GhqYYlqkGvTucb6YjSvsFoEBY+tnFxmUhkDgijG1LUM5JN6a0XikMp2vQxZHtp2pGYpQj/Y3t42NKWR+Oju5mDNutXfc1pZ0+UnzK5mmCNmFjHdYrlE+th4mSnH/58Hn7OtXGRZMwXIc3FdcwwCU+anfEYxGfmTvoIL5nSw6Lv1X1laJykALh5rWUMiGSxCfd+r8nbhocKElZ06PqnDpfBrm/v03TQdxfZ1dpd+yk3ERBZeGwsSvSrOMz72QVfEPo7rc4G1O2HWYiUpVT5SC68Rs04zwZuHpOHQKndPohAZ5bWJ94scmUw1pThnkk5ZzG6rdNw0xjvSTUthkFxOyB6brR7EaBOuNrmMHlikRzECMFoLdtk9EJXdm8kovlzIEhxup6s6Woc9Zclmo1D4KGx94EycD+du2xr6YRn4OO4lwANegna4oQPJ7OW/K1OBeCx/rFNxiPjRXgEuZKc1HCMw64RnnlzI6welZ2T9q8avOvaUw9JsoOIolpckBay4jeY2re0s59Lwt1YqlUhVhwABOg8HGyuqhdr5Vt7/Dx8rmKrxsZfB/5p1W+gbfjKZEW1a2BEGM3coWY32bTM7UK/iy3k2a2cm4y9vf/y6hL3OpEXVOr8POb0W4FdWybeUXAqaXAUCb43mvD4N3IBWao8ByaHZRt0mZjfJrz9PJzZvFsBAaDq9X9Qnhyc9sezxv/ZPethR4wD//eCkhwZQNpYPsIHmLv773kkPw234r4Pjk97O9s5Of3u/v72TbB+fDHZO9vbwo92THnhv9H348d18PqtPtrbQckK8wdZfK7fE1wfbR0d/JXP42o0+gN/fVFkGRm//Hpb3tveL/GQbPtjZgQ8ET9aPfgN/qh5kH+z8Ep+3fdLDfxyd9JBxFiNH+J878JI+72GJnvqjaS0vjkn+mawIsmHxUg0GJz3Tdg8HH+Cf8QfgDwxJNw5RYsq4WktLPz4IvkUeBM0HHnp++np4eX51dvH+7PJy+Juz95fn797Sj2CvSEUNDYy/94sU3u1f/bE1MuLzzYs3PtUFkE93ds3LMPcH3tmh7KB+67D1LQs28VPZhdfQ/R02fiHwc50THog+CvOywHABnRz765HrXTUEHWN/LZOCOaGVUWQ00wH81beXpL/s0Wmo0qF8rTZLRq89QfRqHzk0az7T+JM1DKGuZlmeo1aijXWWqWZQYkFJLZTtvgd/cO22V0YfpLC0wQffaJvV7hglJTorH38KzvaUXE1pZNxMkGhNaO9Dgf5eL0guMb+yQlJXvg+ZcjpnjvOSmg2Svkip7jzw3rurV5fD87eXV89fvz57T3dm+DdnvxviyD1Xuh7GzIlKdIJG86QsZ9GoSquDMndnIzS9YAk9mtq9qVj9fuWpdmxzG8GE6XW5BgOvZOS0BkKi6r1T3t0rxAu+we725rD0oqytXQ9fEuCzYVtXzqkT4J/12KlfORLt3QQMI2UBRhJaUFdMfVQuYi2UWdfTOtrYbp081UTrzub25t6z2F20JE+6hYi2tXpR+ZyY4JMDOfaOuNQFYzEJY9RqQhm8uR3VBMG4D4ZEC2Dk25QQnSGvU7vBlraVJz4gjosSzC6MeHZO4KzwvVEbQDl9sshEDG+Jma1/IQiXdAsB3dI3uiVKnPjYganXqRlX2f+u8mlGVUUC+gJb+gzMHbZnwfhpOvR/6rhkFEZ4K5eThBGAZ5J9RidXAt+NsPC/fLmgEypn1h9CliMoBjqbvNPT6efMVjeZDKd4xSmIijBiyUsal9uWgy0fX+xDLpGhQpT89jZzY6dMmu/Sw4QrSBmYHQ7gYnvRBTIgOXR3qIQRvvOry3dvTVmbRLj5wnVWNIpV+kc2SMg0YOfQ1rGi+ga77V+RIap2zAAMrMtWY02xVtUUWvpQtugCywpMkV0w1K5gl9rPVv+f6i4bxC+IdK9uMLysvi1HLUEsSjMy7MkQdCzmdNSdlEKybt2cloxT2USZt9Y0fCSQCMDt7kgymTl3k3PsLFCXyDlZI+rZzB5BZX1fA8b01s7px7wdtgl0SBZPAo93LMk+p+g/b0hO+JbuOH4Hs6V0enFhj9lqu83AIKH/HqApjv7R7uaOgex+u7i9aYVROu2HpjygNh2OjcmD2MTZnVBbJO5oweCKlQ1z6ym1Np9xFk+jDL6riMbaMG79yOrVdXJMBMAsx1Nk4CMIh+QOWl4mruL6/KfRCy2Az1+ln9JLpl7Uw/wUGQDz0QJWbsJIBq06abJuw6l41qHtO0KfDrjUXWqjBXdY4tW+Dx/OWb6ZHjQKgODGTetZMK114Ffiy6Cmkuv39+F85VNBsKQzV10ckFZjodofOFDN9IOW7loWfZ2MFnfudtvEDLnMYexWE7MxotaDyHXaZoVLviVc2QbC/qkugENdOg6nYCUHs36mFA0uXLO+kSukewgmiBwhd2mVjoj8ik9TzjC+qLEeRDQlFBu0TiNLPXI9Bo4fuAUJl0tucbkgg6LPOO4k3DevrguGU6JeRa6xXu1RTHV0o1c97s07abjQJuTtyIJraA4MilzsUYQmM6rMRbOTlqm/jBB6f/PIWXGk56PY7yVs2oqlmKVSbgtbPs21VowseH9soxuxDlthNo6FR5EbF9OF+ffZkHV/Jw/Q4TIMbEw1e0ZR/tBBJ9RKijdrty/WSYsYNrdlKLmrAEXnl3CpQphH1WZUgetUVVQ7LV08hRsQHWD7bV3zaj1D0qY5smi2x0yzo8efVkdtBnGQae9Tr9e9qfVqa7EAKqKFBTki6pFGPrPnbBkNrzTvrLnSvlpgHCUKuk4NYJWjEa6bUFBDUsZ6hz5h3o7oSYtTRzV6zghuz2etx+Vo4XMlreoMxT19GbGhG8/xFZr0r8si6AqTD4UcG5iRj/J6NS8+ihXOwQwlzmRQGW1PKALrb51e1xeUsRH0+R0FFIT2m+EieBTzWAgu4FK6SEcf4cWHZ59H2azxKmEoDlOanXQHusNrZB1YWHtCHzymkcQNkTISOVKQh+uGbFLxP2co/P1iiv/wBHUECn916SXtc2OJkYgVbjIkqyjIzCJhRaMwm9KXgF6kqtFZ9hSdmvGGxEX1StqGSyxuelJQD2OGLD/hkGnuNMQ8tGTTukXyZEERkl2nPajymp/UYMSlg+LhOYqFZB7jR0BII/15foh65GAFd5vm1C+p06fU5wegeqo9E1pV3wWMLgkIOb5jDoOsxNZkEd9MUgLfFlndQm8Fs+nopoSSb2E4eJUv16AsvBT260FOuWUfiBul69kxY/WSqAbBQlZOfR2XVQWua61YmXFUi/7Y2jBVXlbSGGXJQ7jRHH3OsYYgpR+xFtp06monwtqMAkp18WQiD3Fxlpie5OSIw4RwqV/o4ggdB22NgslEStlhvk3rj5FMLu7XY2pNbXBfDguFXcGgVqoAwvNOnWNbyzIlDp5AVkIlASdym5g8BUxmavhH4NmZIMapmie6xotiweXO44wXNxg1Xqc4KmcP3FbQdT3G31yRHA5691AoJf4QR9K5/BEtLaAL0DkmFxB71n7EXPTrrMCahU9rVCuGHdWfVtkzjYCpEeV8LW11mxqUEWqmxXzcas22djmmo6VuH3PfG7fzInnPIjjvzIUT8wSNNx5Q27BWRQg0ZbYMHYlL5V0098YTAJHUyYpb7PV3o+gWRooa0xvN4Gk5pMUc8peadrDrH+j8WoUh+3gB9iPQMagSZJmtRuFB2cHQXguo2j1HNVoTTYwvwWjFy/nS4otozZlSFUecHYxhZsKxLa312Fnm7A05XKDOt+QPW/9cO3qBkfzPt+KXkNRx03ANAVU44G5FBvv8gUONMjDvw5dYVMZN1R5WsfNcagsbDlCLYcQ0uMV4SUffwDCPPNksNQUhKL9MBDoWPou1XlRvHZH325uDNbm5HoNXDQeIE5n86DhMGtszjiRrgBf/JPSZwXgtZ2GLFHCw0Er1aDhKSsfr5LtbuaYm8RfubD0J5742vQLQ19nfPNBVBTWPLC7GB6Xjqe8Ml+csNX5TfGw1HfbcRu+1Xl4jktMsRQDzzWLCDgN31iuR90+zeUEtVi2d6FiqwcUYEZSstfh7LYHVnoNEzpzHL0+TXeBCpnahSvCuR3G7PrkFHzCDlxJuwVbZ7K/OXojORV3rUlLRMVYEypiJ5EU2x1cIlT2ylRVOOTDxrioWn4eHa9wPGaqWQ33D42RiyQ6r2iMfnwXV0Agqog/WQJEe5SF7oj3j7PotadSe27FN8ylXG9f0NB0S2t0bacKQu4I6PHBoNC4afstKStYwVMZ7K1ApiiUSPgp5iZreL++7s3zwBioYBKNkWvtXJIew+bEDsUY8y8sWOVuSY/MW38vc1BHKylE4p+CW0l7msB+JeVXGC92hdyrV2mRaLYnvK4W9hkmQ5RKmgXVz7eiIsl/bM0Xx3nEWY5N6lE+v2krq2Yh06OnfvlQph+dyCl7MaMiW5fB2Nnr6DPfDq7m/fSaVtdL5GTfucHMv8tryiRuIW2S3mIul/J7DqYK+/zZLkURLQeR4Ot9dnCp/6aIp6vRIxANg0ZPKt9T3obRZZXCiNFcXHIrQ3A4lgIuON/r5Sli4YQ+L49cs3n/wXmjyTzqUY2kanhiaCaJoZiv2GhFHLi6hRdSU1Cdc/bTUarHoIu6t5fI68tSg3XgIk4j0aldf/6qZUj1XUD7fF+6UubxXfckYMtPxUV240B3ktKZa37hY8D0U90Yo+JQzL3bQ384keqgm60mN7PkIK53TVdbGDSvYaFfBTV1XEbLi3rxOvkmuCAOAx/9C/KPXnMtqsBgJSOQ+dWyYy5zC8Ag1i5T/1nYJzP7WDxKKQu3kSCHkZr5Jz5IN+IX3pU2hoUrJbbDiscYcXEfOoqfZ5u1m0rupdocv3/eeRa9iCBmJakMlFGaJJLEKYhbpZ0rrp8uTVplNiXNpTSkeS9wc8mb22p0yC6pHygi16ldFIC89cVuzIUGmfVajp1BExsC6BD7cWjA/kHqut5GgLpaYBh788vr3aFKoXxwxeaJlAwTbeXzZwKC/s58M9hGJvbP/yLKB4x1XNuBG/4nKBpYDyX6gmgFF7nfUCujHXVUBA4TIwVtnNPQBfO05Y8QI7WXlMEdBtQMp4RGuM9QHtRocBTetqTcJnPdzpcEPU2mwO9jhQoOfUW6PR7kxTPRQ9tX8vD91jFlRqChKgjjBVhMuuurhccjoNjziO8clyyWDKHRHGRXWMZ4pu4dtUZM2gMTgNdzg396X1ceESBiFni6Xv11nFIND9d/FFSYa/y6bzGq+2uSF1Nq/lZ8WRELhyfRIrLGA7SclUaCHMWGeQUy3eLFRVvVGUqM61JoW3CqeKaZ2MU5wS8AZTQDCJP7jv/43QfNyqXOPQkIH+9uHR4wJBeEeCSJ01TnYFfH94nFiLW4Wp5ZphMP4CJzChuURCphGA9dZB9pKrT6E3hCq2/PqrmRCMFRBvpXiut3Jw5dasyOYNLEJYjuETmKRqu1kLfhMLSD4hnPlW5wmDUhpR9z4wvuysbz5vJxhTh/DNhrPIGYl8AI9tHFIrAzz2TCd5cPXJWLdmzSPa0atV5wxriKJVl6F96PdFtvv86/g0sT7Yofbt8xljdailYwgIkb0pqaY5aOPixmnFDDq1WC7rz7lFJ8SJj66MrDmdxirGbUqUGJLA7fDewvC4+JOfZjXcEnE9eiLguTFmMJ4oirQMDvY6yukzrkt2u6BOxCD+UKZwFUkdL7DWuawEuQKhIxd54WTb34X4e3zSUDw1WQs0j6280kbAEHbvZ5z3Yin5e0qQqMJXqT13XWJHc4uygl5y1SdTAgKX47SZJTo6nm4wkl96d02zyz6oRilC0wcn/HfT9G6IHKYaUZu240NMJkzOQTV8vQZtX1dTJY24/2hutH+gA1yf4jOvo/qd0IJYoWSd8B/FQHBuBFcLFwISmuEVFbO1l4NgXO0TCqX6d4Igw0n3VxrlE4eKsVsFnievUDx9KGURyoZFE4WB5uj6yuU4LR+EMbIVpVB8hpjsFdoLVuEvDuhTr4iIZm5243o7uORZp3mMKgREBrGbFgiMk3ER9oE4lqRb6DGpkGILWFgCoTS2inJRs84LWN1FhALHU8gV1XpA0eLNhKK3GgiEzE/CBsIjgjbPZoc9k81vKC5YXcBBZeT+E4n8Opjm85fgru8pHOG6ANzyTW92qDm/TWWav9pQIBuJ0juT9BZyPIZ4p4yiC8SoBKGmq6WHW5nV7aYWOmAUq6bGgw9+By9rSEd52PcNrJHHqnzHzX4ijFXn/mGpPQtnAOo4dLro/lhgRa2ajUdeM8QgOkLoKmPp1n6f8q0M3OtQ/vfgySap1sMr07ioxb5OWXJ4Yh3sbT+iM22Hgc8jSK3sEg2aUEGbZG1Q9YtkZvtwuAvQrl2wR46Ya90DeOoz/UuYtDuBRW69JPFqvMZslBy8wCXLMbSfDrMUjSUSxkSVeO6ALZbR+QmilEHurk/BgHJXIBc8i5LOOLjY7xrDTe5/lYxJ8XzHUaM3xCvacaXihSZgmn4ucYBaaYlxTnmcOkaHAuPtafVEm0XWKi8v5S1IAZ30Hb0GUK7MTHdcZM9GunNA15Z7JiFvmry5D//z5/wazx59/5J8GuErSPElHFxBpULP2v7HLwlGGYHTRS5UGCPgKibpNfZJLp5gVI1v2tvcGBiusSbiMPQt4VBw1dyNqvJe6HRoFU8vhkUxc5wK1ioEcHDh/evKURHrLRUekFfDYy2L2boRbrUVkoq8ERc4iHoRyzUdTYa80UO9hjWj4q2JXckpw3tyIkwyMNlZX4LL1PuGNHDPkbwgBDH6yjhsMA99K/q9CYbtvqorFNzZXSfJzznjqBCaccA9SBLqd69kMevtjzkuMGkcS2k9op6MGgEFcOmBdgc1xk1POPmoaW3xZULLvC1iPJSZrHiZeORTQrYUNiOSshuVsqyZb0WWg4RvkG8WuCqZa0af4m2PnrBY6GJbvw+8lgU/SLD98N+Etj8lXBaNm1JTXpyTVje3pKd9kUQVTaquikuHFOMNTddPz8y4KjE91ODx1tWnrpqmj+LCA99bMW6p3TO5NQRLLbvYuo2Jd4K8dXo+Cxmf5pnghJm5hTdPL1dYfp+yhEcFrptxlI4dmDLHwU6SwNsr2tG/bDQWRz7uMsKCrGUXvyxi/HQkvLWiPyXRtT/Z6tk/enVWefxInnIErpFJqndypTtxljW3LjnoQEc9Kp7DdViqRzXgBTbuBJnJByPfJA9ycAgnYRhKmcGPDB+A6mEmtmHSGte9/zmjfViatmKeeCrQqhaGZBmGLj5uB8GTx0+LeQQd12KRq7J91Kx3FHvhOc8XmcfRStp81t1UkaZRfiRdc9x/FpXKoD44c+YRjzrCk0dO9Dvnr12ERg11ZK42D0SLF69P3/7anj1/vnby9fPr87fvR2++N3b52/OT4en795enf32KmCmhw1sB4wNirobwR0L88ijWkaevc6KPW3ub5AHCVGrioBrotxarevJGZgKx5srJTSxN2pzOO8HNXrBuq8ibKaDoCxdPSp2pzhxL0kd82tgVKo2Z52Xc01r0DjmEWjrxv0RCwzft8fSqRf3W2jh6RBSxQkY+j2qN2MCQvyZcRXiMM+w55tAS+xGw7d++/r85UvBN5chj/86T2WTkyRxS/tjYHw56I0jg3eLW4/1Qa0T1N5RjbMPJVtWCQzcagVsI8LVPd5NJn629mkKTv1jPJXVVSOdkzCXzkfd8kaTGI5tGZne6CcRXIL9dS6Bxa22RC4DibWnww2xZ0kXTXNINpO35f0G3w4teUlr51VMbOxvgwphAlgH14EQoHVWzhZB9jU6XLCfLDoZ/xHhGWgymwVx6A3Ha+Z7R6FURwgehqmpM+bj73cH7aryK/jOFKp7Z65epxXFCTqMxC+fa8VgSVWEqKloCnEHhkkJaDvPXMRK28wjzOYG1xTOlhIViTRkrFCfzAhp8o7oi3xulg5u0ipUK5XCL/P/UMSqbOJaoQWoWTkSzD8rNjDW1EtZq/+FJflowtB9UrNBf3iCLLGNNDA1XHlCVTAIhxj+9s3r9xenw5coLhDB8YQcuhtssdzrEIzOZooFCQ12gQSbSFHX1PFTOslZhklH3a63YnMTMaHiEmrS1MpbyxphwMuyt1ithb3LR0j/l1GFYZuRkfxYcGDrtvvaSGpGbodQdyjv6UwOJx1IZiWhLvcEPuCubFJdUdbRF7/Lb++S93DhazEaOSeOhUv/C9qzqzdDNKVspfLJiZUNvajY9BCHtdDPWh0yv6vQeJRiPKwbaVeKFNJnzPdrdMR0afKKW4/FWTz9XluJEG85lHMPJ0LtgXDXjA3V8ksCtJF3MeHHYCl214qdX+A1UQQdcSBrvBpcPk5cPGHKp3m1GHWZyj7VtwTupKGHUTkpK3VHtfZBmErWYEYgb3wN4qr3GdLN5rdF1pCN5FoFuAI+xuoYrBvUBO2lrVwNH/Ay2ciRw3tW+9pCFFEbcy3dgfsZfWEffUiWxgBadMEBGpXCej2O63U5aci0wWZ0qtJWMN0ahQ2qGdZYNOlqLmHuO99nyaTPXFM2PIab8j5LnJOgr/XqoCRtcOO+NT2YM2kQhkFm1UZyOqnKR30GeVgpdgtG6ckGFQNUbc62ymj5TG/c6yyZO+YzyBRHDVHn1N8To78khTRngN/gbCtva5NIQEfUvA9xKUg9YG/Zwql53nN1QX91O/+F52ug//oTojIhQqEsqQU5Nu7Uir0G52eRTaRhoEhS7PHJXdSoaluQ6Pn3vlYvepg6M54UFW0I5nJpQKNPa+CBcFxQSDUxWBPCwGbcJlDrfdGbVGkj8WV39LEz2DgfS26hnpWFgdkve41IiZ6ABAgEYwpdWfEQlALj9MTAQAtHYBmQ/h1+fRsH7fMV7FU7Jug2ZIDYeguqa49FzW7T3LVI932nN5OXeI1QWmJLR/iszlROTyYmNwQmuIfgOWmXgVG31sY3mz5LZNAExyUXg3Q3qn57pxjOcF+AuSM9ZWCdqOhYfnbCU4MAeewBTTPjEt/MkHk7sJVrzb2YizydhF2LZQuwu1TqE0QWHfe4S/GI98UJUmQt447JmGDxjb9x88Fnq5TnhsQ9SDhiCZUcy6s3V+H0HtexpwFfFUoXu5ZaPIzj/9pj80C/oLtK/F+iB5aXP/hMV3Q1GRVADkCdYr+v7wPAiH32RVV+fiB3bFGoQ4GWekykLie0EI9aMV1kc4K6ZT+Gr2vh09gWfh3TWE1hoMBGeiyiOhQEI9iH2hQILTEwrgPDLqrfbQaMc6IWadt7a2juerE7hi6fu1Ph41CkEPmLgwoGmVs55Fxx3z6HbJAdBQUjEozxppfzplnUgsG7mLqNp5Bk15RBbW94ISsQKsyWoHOYFq4T6vVDY5DQyQrWUoEpgUINCD481SPLFq4KVYuHBQ8h1fB2kxTn7pvdJyZYq3j3v+X2AMke4vlX7D3F0IT03xXRKiOjcMSxh9QJz2hmRWwWAduwIYIoLE7vmJ6J+obVxMYRiOBVHd9dLpHZCj0CzNq39K6Ss9zknz1hVRDzvcta+T0NNLY4a1Qz5EjiP85hFdupusaAY+b4b5gWEv9i0mRtvHoaIYVMQ19XWErRVEXwhqPhXjELXWQNhiHUnfqmoqMFDip2QaFGajel7y7M5rKNntjw3zLvyUMAudxnijUCQ3qDYV674gFWZa4PC++NzbvcUSeD2YJsK45nSEmXDWgoA+vJCT9rCLoyGGPYiBy2eHv4XpOKE8HbaqPEMdUWNIWvM2qw+1SCp23sfFQyI5hOmd1YhlCiIS58Y9LgoIv7ElNMBLJBMGMuGDDpULS8q4d/9IrAQKgmFQVSPHBwjPMXSq7Qo767VJmMxDgzzV3TSbZ3goseq6Zzx9oKi0tzYavkODj1i+Szm8OppmIgbF9BdV+YcaYI3BphaxkoROw2VCMpTlXFb6y9ydVa3HpmUcw7HQsR/JkDPTmWZg1CNyPUXafHNTuqNbt9r7fl/DQthFwiM+TsQS9Cqoxo9CYm+wsFLg+H/y/meDdmdGEJk3h23OAbzNdZ37SXiC6KdHAQ/eksH5vpcY5OZIUsQ2/0+VYBdhigcEYQge5xhpZlbt9uQgenwsFJj8teH0mqMOhvH/V3tpPtw5Pt7ZP9nQapwsEqUoU9R6rgh/+JWBVW11v/OTIrDLb3m9QKMK8AVQp/8lhSotKqhWuHrbcg7mkj2v5XYh78GREwhKtAv/upCBlgcgx9mPwovAxH8Mcfoc6cGQt25MWJOG91Xyt4uTdEsXdlvxnyFCx5ZJSiYIDLTHGMsHmUhyz7StBX8BnC4JD61FU9+CYjye8EBY3nsyonarVMWeBiHEiJlSi9nY58cUG06n//cO9Ai/4P12ph9JJavCStVZKWjCHX33jhydwv8fM1YPmrqjAsfagmnMZuCVQru7LiMUHN2tN1qDRK2n/fgYoNh3YHDQM02uUwyP6DKYRm7z34NCA/WAVK2RgdZM9jwHLJrU5rghFz7kAxEI7aIwj+SFUxoiaPYj9ek0sV832+Gsur8DtiPGHQbWiGf0F9f8A05bAgiF3AJZ8KmWg0PNoRRukEOQdrEK+tbM9QT3EzipwuxnlJe4f1MKXwcSqqMTrkcvqpKJYvACAxKo+pRTWJHmPtw0UE9b2gi8cna71DNXj0BMPu4zRIcAs0PksN2RsVMsHQ61UzvcH2NkySw044Q0jxYFB5yLlLxbRpiL+srp6y35LjtkdVi0U4wo/YfgqR8p88qEcDafx38JRYQDogsXYWZ07L8xe44bOsaizSozHk7IkQ4TLtCQ0jgpGWTzk8B/vbyWf631m70dYO9gT/UbHj+2swQz7Xfra0r46zUvjsJXCIu69/Ql6AMfpxuY86tmgWdqOz8YJxBTGK80cxzZIH/N5oNAYpWCXAtoFndKE26KZuUKPigPFdOcZnAvtwSb7onJcJsrbLamhpYw7UvEhuUoQyYIwhlRQK9R7ANMSXx4wMuN3yPSIFsQh5WqM7VJm8RovpdZHmk9rd6HVE2L6TsVFo8D+JhNGyol5UmTtX1LCQIAjep3adYDgHxdROxEaNhyshEzdBRZ8pHROyiypXVxeYd39pz5FuPCVYK7KHcqFbzSOxKvg3rxrQqmDkeMFGe2SthCYMCpo64tlLiL5tS3VEtvbacS0OM10/OGaM1Ni5fCSokROHChxyOvrw5WW8ndkvwjVZw5TfR9qotfEBdTn5JE/QvlCNq40X+olvLsjZMvPoVgFY8BorjG5Fm6GLwlvzVTb9ZnNafrUF/xQSbXixDx8r1DhpYUg8cpRE95lvDo4hcOH1RHYdeMDiIz2nI1kSdikA6dHeey55MNQHdVCyCHIFf4yGcpNFtllsjObVfA4uS5cttWvrIZr2QhIAnVicKZbkV89/KzP3kTTh3opo3LUshIZnkKpEq005jEgFH5pwuHsMXLj2PkxwQsU/YHBaUprg3eM5o/hxt3giTvUaQpNIaS9tYsRHylPwE8X2RFAxyLTOsCjfXjD56maE1IDx28TcwTsuszu6ZSPHH3l8BroEFCUNoPE53NJb7rVs7ui8eaS9p8YPnoJ2njSSii5rhmkyI64wvznJa+Ot8DPEEgwf8qKkRYKjj+agz8WbCcEm4Mm4IewAGfqujoooeDeSV1X6Ca8otl2vG0S8PqEfwK+tkarGemlZyjABgWsT3Smx4KRoR3ZL/sucyn8SyNBQnHhxqhwEOPt8TMkkehGEAZCY8BvV2gCnnWgT8iLij6Aaa8Ds2USRX0Z/NGNS69D31LALQztiWGQDC+dqaG+OI5eRppwUb64YGjkmvUtstdOajGJJojuxksPMIyGVyuezeE9G3Mb4S6Lt95bJxxBUl/T884eIrevRXvao3QJ1LR8SRpo/0hJmIYCpPNUK5lNhsaIvvzZXUgpLeNuwKunaKaTT1Vwgl5y1SsIQkzurbiutGsuUuLfzYHh5ZWU0A/j0MAR2loTVbN7n2reuJ92BpOdO6Qs1i7zp8hPqk6LEr8UN5uUgmHViGltXslpnmLcKXIMOmjzpVqL9JnwlYqy5XO1q49a9Vk1BpQZk2d30D8/MMhYmK9cxEGaRDE+USG9RgPVKTOiOp4yy43iwaaOG4lc8ffbEvDQeYngRTFTxJsUmt6530JwcHSxucXKBfHyjh+Ep26M9X9YRn4wrEysTsEbRHm1I2L3t3aT3Fh7yfDG/g6X9Phv3uKrEUPE7a5i3As/oiMeg8ffcc7tJzSkE/ej822C7PxhQ/m3nZHvvUaTmh3uHNv8mo/9E6belaYTHZN62f6LM2+FuM/E2uivLOmt6cNIDQgE28UzGz4m1Hz+xBveWCc9/zub8WWVzODMJu3lflnI4sr5lJY/mJvdhM2288Kt6lhbfvLFk5n+V0H8SyWwxwuba+JVm/nLpwB0k6ztwGr+afUORsL/6y6OdwcEv8GrSvx7+QhOb0/RjRmwoYEkwPQ7GyxZFwk3HAuL1rK8zEFI0Xr6v0uSuym6+9mK7rMZYUVqT7JZ+iFvmBbZ635hl+WorFdoc+yAj/nuISPy6V5RcO9mT1vQphkBm3zC/wN9kD0mU4SB0p9AciERwwSmrczRvN5JPaZWjSbORkDRH5L+qh2d6IuB/z9L6IQKgmmr6Sx+8YQupiS56DoYUqFoHzMGn/U2WzaSCDbG2zjLE0NfilpPpJFKprRWHQczPL4kCn2owyR5WSn0aj0nt2UTMK/ds83PREHnxiW7GA9PTk/knGb5rMOvpD269qCDE6Qa7MFSBVDunOFUmRLvsxPwkuSgtEpQrkPundfTg0xyBf9wZbFBBLIO69TN4qWnJtAnwQu2xwXeoGb6auR9vBt8LrimWItOFUH94ItPngvHKPGVDYGzwyxM5n+4guhO+9ddohg3z8deDweDg+OC4fcbNVL4tS1z9Gs+8Wer40w63t7eXPu2KvPX3BNm7y2czoklb48EHx4PDpQ++XFw7GbTeXA+O93aXPvJCMizPyZpa86FHe3urFkBh/PaBctxm37zm5eY6ZsTpmd1loCr6unOpTirGrUOB8umvQd9mUmQgIKbIdA8ODrePd1qzZXj9TXAeY3OIDdwQjB8IXnsupa/hHXmJCMZ5NsPoPv0zN19L2KSYMy0FQnWDJhx35WwDlAiaL8ltSbHpDvG9FRA0bgm6HJm6sI9SoBgCzba1dBOD6/mGkuikSCSxMRMpQJB6fC2Q/PDlDam/l/IvlLpKKZVNv2ELio0RjtUHXYD4Nyg9CFi54UlBwc5I50a0m66YtoQs89WZ9KJ9VfvccIBY1+m8acWif5ErMGRoQPg7Y/fxKaLX5ZbUqttJ7hcPRvVsID9ZUwHxOULHYFGbNdPWLITypCTaxqodhpuymNZb83KWj/owUqjs195Gwym3mDbO8Quxzc3xJdNGW142bkvwXEQP1m21QTWPu+DBb7t3R7AWYbKouIYW4NFWCax1eZvRPjokXCR6onQXHfBYDl7DxvnomhY60nHt2orZogJfo44se7Akp28u5bpQwNAs9BvwL6aLqSfuRTHoqGZlWn4TOhed7BU5YyHxhaUE9hy2ZJ14n8xDo7OWGmWDvfE6Ap2mOzD4hY1e6C8im2B/seMxWPqLjr3xvzhoKY/vxGSSaB/Fn6juUwyijSXHlNkxkeA3Sb0pLnsTwwLubB/u7jIYcH9zCdOwDUZ9d4plCCnXkKGlT7UAjMWYYFxSPIOnavzhSjxj4YRBAX2lpghTIolY2D4gixQUiJNDWEiMMP4g/25/vbS22zw5ZjL9UM9rGCI/9GO/XSAtwQ/2WLSXSwK4qGpYtSuBn3qRPsyQmiZ9oERDL7kFRXKfPqx6SPaZT2dCZBBauGBQs7TvI6rVIPsCq8Vfpw/Yl1LPERZeVhsI+siqzbzcAONeHkoWK/zi2WbTQViGSWrOsU6JVezGuzLMGcZ5tlmVC982K2LvlKwm8VKuOXhXTMyh8143YH8cNFcaOqWxQ0BAF7GO3Zb3Z5dXtGQcva3ZvcKxSMgGpaCNJq+xx3/ASn20Z3w+4w+LXOgEBaEox5Pe73clVhRhlY9ICDZnxuGzG4l8dkUTJyUqTCwuTIoUAQf5Z9+gFPsVLcRUseisu7x5iJvEYfDVkRZ1WZwl5WEU5BPQUonH7Hi5xq6y6KlAierO5Mcn7Ki5E22gSo8S8JSoa0XnarkbhVsnMBxRbGmHBjoy8Xy1Pu92gpTsmvFpiGDHQycoXbqGCAJGUoopWoS8yMsPM+aWsC8EecekLZgyutS+KXJvpAbYFDRxBRpsPyNaqV6SeJcdroK6xoQN4bovlFsXPYZMf5+bnh/ZuIWqCp/7JquQroeiOg50FYluc0AD1R+m4U6T50U6eZjno47tgLsjO/HUcYe6G5hV2JFpxIb+m/QzWFRjYiUifPS8eV8k084kCCN8TpURh3EekNO41fCQu67D1+r0LMXbjVfjfWucoUhSjx+vPeYcGIjuHFg5mKqH/9G6VpgoiyZuZkE4IksNt5Ys5c4DgQCm4mYSm5R2lp1PbW5TrwVna9Gniu+eFzUKRZVWVOXya2VBc8LgiU65YifrUTlzTD56ZpG4IrsPGQfvwDjholtwMoijB3UhQp60NrhrZ5XvRlEcVj38x//qv/aUrPoFtR7an5QFX274Gcg39GoRCNSmzV2ikJ47E+47ItkCu4MuqHAZuU9z1+7NYovIxG0kvaPIz3iVOp2TXWIdqeYPaqIYnpgRsedR3jdnKEhaiHVNqdUuwjyJg4fIF3M2v7tI3iM3yLyZkcfUS5/m3H2GIrbLEjoQmtlbDAn/DuvcLtA6OUl4edyj4firE0zdTbSgADUjdVSrAt6mZc+0hhJZXY5/QwcjwwkRDfp0uXIj2ISmvKjyWaZGZPKK9+ck6SoW40vrF+xhel1OGsIcDQW462+IMeLTjntY92Z1xFrC5y4x9JcPYZgSbpk8j9O+itfiRpj8BW9NqSTvnsSpxvobs2DBko8yT1WEJ5pPgGEtVaiuKyRrn7pl7LDxLkJVBodbfD9vz1GXPDWgog6AWCOuWwH4APrzKMQrHDbMZwohJCtLIipjM0AtHh0ynIjo3nQ8bio1B5tlmeLxwFnh9E3wLLEW/UiepDT2MmiTZo7SgyjkFBS+1HbzxtR4zAY9UcGKssM2D/ElVHpCJksYs5KLu2UbzOLH7LbpZHaXXmeyzE0LRarlg42niOW4KmdjYiynHo4pVlo1gHbmyL3J61EMKJ3mtTNcihy7KZPRLSb4VHC5e1g0EM7MUvm8u3p1SWFuKZopXWSwXUGytznYUeBqu47Itxe4H00nQ/ZghmR7Vg+mlyluDzEjGXeM4/3lxxwtH1zu23YVFY2+Hx899Qt8m5WOEQ+BcELKCgbcweYg/tB4uWCQ0Xeb+RWWNX2T18P09+nnr7bov5KnvirombDq0wf3s+G4hPezX45PYbfjvZzNiXBid4g9uCT6sA6OjTZtNab7yfWjI18vruflnAJqRMiH/8pUSBGAgTG2kxTcghGzHjM1WxPszg5j5DE15hlhGHYKpBmGtZTc+zNHbvgMe47PYbZ5GkdDh6vjcWffwvGgHT+Jbbk+3fnbWHyvR7wosefu54DLX01Wrntub5K9LaXvo6xrFgvDJfk88x33dJum0zTah7XhCxDqXgrz+BYSUrGl1T14UI66KEUWn2RKVoSp0yjPDXarkVqiRjCjiY+R4OZJGyPj6CgDhqGJYKrICeL6DYmF32dqiCJH05yJAx8IVEOQFHMWKjxvRa5E9ln0UOi7ptOZ/IwTWE/qkDf13UxI7ijTR8Qtwrbi4RFnmC2fY1CiF5hJ4cFbu4tMg1RfSzFpExTFKhloUa5opYvts/pchG11GzRSMQ/J59GXtM7yHoAtq6a9jPmyeBR1rEY011+qXAoY8mhP38YyabzXOfwVZlzsOC8einQKdxlt99w0OVv5bAO/dfgsdys16Vw7Z3Dt5wVRrPMX9EiKVjIFaB1KXjaNfM1TIzlQZ2k10iLqJW0nA2ewXbhpQ5e/GahbrjHUmCyjG1eDWGn1GXrpCOtIdPiN5ekpC3LTNuMciilN967as8gEbD9s9y5aljUn6kMrP6nej4Heq9fHtCR1CGhai5GgY1fuNTyI3kH8tLt8MnaLTOcgtzVg5jGtEDbC4+oZWCG+TX3kZ9d0iURxsNPDZXqu/wj7ErwYZJV391QctQFEurcNV9jvrQNc4PZ6Y3I7eHxcyXuKKrSxXV7PVdSa2gONpiqH9iSqEH2D1YaxaXseDlEiDjmTwbRrpi3dyEeeysI4o+0u0qsuekyyRjFFOja+FjaevMZbrlxTq4e03oaLB+IyKumW+HxEyKfCpOnmWRttBDq+ysuwENfugQjC2Au2M2pmbcfj6Am2i4YbRkAxaQ4mtTwSIJOmeXncxnLBkeC6KYyAAP7NY3H62GbO+mhvqM9SrMdoXU5dnN9oRD25vE/Z5n0O5svFXTkvzdr0XfwEfRgfm+N0m1mBMEXmoJBpyGwavRuop6XOxkUi2idH+35wFfg6ByZAXbI6chVAntGAt8bk2yqxhg21rA0cNweIhPE4SeWa79YWV9fxGCIYlewX1iwkrk6rDrKDSY1ZpzWun7dpwHgBx/pTiTbz1oUgQ1+DsdC8Aub8cdLNLzL45RmGuW+M/moGp8KADD2leUFCyO2Hc2UJfcJxsNniGmTk5AFbtFQPFk4QnBcKos/A8WlvI89bqqcC8BfWcVqBsPTKdlJzt++yM5vC3s5xp4stJ92aLVrH/ix92Gr4b9LMB3QhvaaIm2tKvWaSzpOgoQlcdWSRwCvZKisL6Je8aXBOXpQf06JliXa4UUsaYN+XXGAQD1qdJIJ30o/JbUhn+aZw/MjHJVJl268gNiqylGlh+IkllOhuZCPwx1BiZP6OPYhtEfcsVfXNNFDTpzbECsFTLxq/U8BOtFFi9Bfap+O+SilvRzaq7tY4/2SNWLOPODP/Edok0wxtXzxBQgdwefau4XyyB2woS7Q1KIfCGq3d6UffZrdpQb6Gi5sJVEBcfInB+iBYTquHxICOr5bb7kiFAbPaTHLYJs4wkyAcK5tuS5OZuGMz3lhzwBG83WikbaCV/aYvTAyh7llsjlboLYElSAiYoL0SyeUkpzuTS/whfNxb8zgXcY/owtb8kNzG18ZcoND+lskh4gvQip6+4qooCrRoq5EWzxms8l6kPyw9sSsiukyUasjJZIlnGPMm/aJVsUZo8wce5hGuZjifNbnXrPFELY7JxeE2M2J06NXCj4f5ON4rmj5UNRd+qzL1eis9PWFLwS0QD5yz8pjuzYsxFnqQdqhW660wwKIvySHvwClwwBrntWLJFw7f0gNrdLW6cA3riMGd0rcEjViwdWQ8WskxSm6R1vMCFR6KoEsMmGGos2k02WjrVMCu9pCoFQYiYHfzWI8RC5knNZEhZ3S+px0Ob6A8PdpaHhTERfiqqEOrS2zQKs4VcnpWFEtaG0XgD0srarc+xV+yt71nwym2o0hh3WwjrAXMp+/WjuzH79a6nH42OK/eHthh0sGcMjAi02pTTg+nIKDRFOJ2TYo2M2ePOZsNZgIUuUfOH+UVdCwUzvpay9V14QgNaZhAhPZyFloX17xAkrFwNfJZEH0JV9tVzyf5+OseIivrHi/8v/+3wSsuja6FMACWsGJ2ExXe5MGCm6IBVVk1PeYc4ensaYWP+CW35DaILeKagust2c1rqiFx8UawBBXJmDEug4p48LuRjCStR6CoeuEBWHd9SLudJs9HKBXKsRD1NCDI4aYMmuruTV4wO6FSeXf8cB3GV7ZJHV7URlinZdXEtvAZdP7MRkQObWjeaiPJ5qMu6z5+l3kyYjtGRnbmG7qp07TIuQVrC1ay9Pq03CnJMTW6YC13r7oe7pIUapvyPcTOXNa1hZea2G9J8XU0oXFeoNTHB6xWQY2QI8+STx7uqGH0sVEto0QIpoL/Bu9hnHb4xwJrNe/KkkPNs5aN/GOHN0OHtpmM3PIfcPVI4Oai+FNnh+19lPzs3DbiNPk8ecqwwdTVygVJfhl5CM8cyjOHM6qS1QH557GwfeQwCuZJMGnJPJ9PMrtEpC2sAifvjGIPikkWptRQdDGwKpu3AD5GzOmxk6K3zqSTS21xNSH4iGnF4zKIveYWbPeT6IbGntiRuDKhSXucxpLEmnESq0OmrKePWzvgOlbAO/RmaU5+VE/CjuQbUDxLV9vr1g7nmsdxoEo4ee0wMEcIo/iGZacGYcfcdiUjXjJhNSBgdX6DR1dhXvK1cVYoGRVuXeQ+hUKWcZBUIvLu3cukHytAqRNJcbEwXnrKiYlBzN9Ym0EXKHJwqnGZKVBtFhZjIzW1bZHeUbRhI+najZhrxZjFVYS/RvgxBRmP0Rj3OF6+ROTHDAWQMkqlZ7KxBkJJU+6qEzGwnJeW13RCkWPthYQAZivPL4QSvmENfudLK9ssno+j9Ab7a+FrE7CUXXppTTLfpncdMLRdZDl1Lg7eCj6g6CZpg4dFX/bNg/oSNvjUGTVXHHS723oDeNOdALFW1fZqSrZGlCcW5Dlg4jsz+t7mUXy4dR2gdhtD8Igoj8QZUdcxCRvKYcE2OL29UAa1S5jMAL+69E24TdprZDDlvk8q/scZCcyVexSZOIe9W6ZUjsoaFryQWJfx7zjaVwUaBKP3U6JzaSjZ+DovIw4z01Vv3dhMOJdX1A+cdvVFSqw7SwFr2yv4bc2AiyL7PGMuUTIPsYXRdYY1oyVpcFILGkSlSKDwK8Mxi8bPIsWfXZZ4A2DLNKb2nHDtlSyvFk51xlIfwyQk8pcb3QXpVRffxN6gHPqMHCs8Mt4UAd8gp57CNwjqYi9ZFD/3Gl+Qd7iWyRYFrfEjmf3U2AgK0XJBD7kfS7AYzVBvwP8nbnRNQJIa7YBAcPpcQbOIYDnc4w28TDouL9LbUmHpZTsketkpz7205b72BlR1PxvW6U02VDM7HtKEb8W/ME8/ZtJSWOJHLNlEDBBWU02c7HPekaNiKn5TRoyZ9c5yMP1h8h6mVIs2N4IlEl+76oivMeeHR6EoZZDaISuT1IoLDMldNYwkx+rRKXxp5uf9GmI3lDkNMb5s5DYvNul4DFoTJMf6skEpYufNceQ9vdeIJZ+DAdxr29RY1ZZjgkgafgYU+fbZja1stBBRaVwHWKt1TGzvyKcTLaCgxpsMQ4ypS7K9CYFAv+Gm6EQaRCHQWMqOB0UgkatFosojbAjnjGNzN9Dwy1oQnS+PSnaKsSqbondbiTxzpSN15iO3IYrhTxWZOmJtI5busKClu/RsubvFV1zXbHjLlMlDNKyH6AcYO4R6qWCjm7KI4WRW2yhFaUrCib1FrNTO2DaR4Ejzh5to3Y35hqvOJn2LZCdU4NTNZm4ciO44tK2Q5pcR20HTEyIVmg42Ww3H7SikS4404LS04VguiFDW6iYdtc5IKw8Fp6wc0XUy/b8D8jX2pdS9dX0QozNdxW3hO1lILl4dOg5vBCSYqGm5TM7bo77yf5npvFYzy04T2IGsnKBDMetPyzgfm9Jmbdpu6/CCMobl4xmX2eNylpFJjOjQYyNfZw8XC9gp0EF+wjSBVjfXLhGBsc0+xnClCmOUTkYL23LIg5zSdkVTo9GxtlhiOFNK0dem6qXE/TV1ru2XN33SSHo5e5dYqUBxlRXcD7ET0FNwhw8QrLUProcwtr4jwZaNI9Eww0nWpKd2q7ls8/QScUsUJ458x/BmU6eOZhsgNxw1xSiruDyBjUeN00sZmxY+smQYkmMo+ZjmGL6ed6JQEpQlQ/iZpG7rkxM0Vni550NRoEO9GU+frbXWUoMJK127pW6xPtmVdmylpg3pWGDGUrQXw1xidnvFhqx3R4kS4VrMHd1CdS8a1z93Ddfj9egrriIb1dQtYCn4khW25VClsIILB/kWzKGxu/pFw1IqH72jgB6HyPFo2UNL+2PnwmsSAP3XnFDyq/RTeklPRl1clzCcYz13LpbQgG/+vg5ZWYKD7IPuqltbBDw+Q3I592UMj6z+XraiWnA2zYjQAxM7YrVcZ+7sRxAwb9z3G6Feo2yP1m47FKwq3KF5+tnHk1xoGQtL6Cq16BNih5UbNN9igQ1aDj1YcyrfR5YvpUcXx1wKdKmNBJ8MqZKl4xoOpSA1hwAmIKwpXS4cPNXIXoLSkpLO8eZoSS6u7Tz2KqFH13BgImIbz81vfNCJrFjMcK9eJpfKOBV6ybE176kNeR2LhrTbpoQBy+3VQxskqEEvj4nMofeigbLoUZFwn6qEtUvC2vQasdG9bU11gYhMZZfdH3hB2GKhq4554eHQjxyPws06ppGfDmeGZWEL9XzcN53FSy6AtFdnD/KsuJ1gMJEa4cq/SwzIpxuarlh8gmxiGN7JRjpmmj4weW9nOniN54f2kdeZamqkTfS+OSD4jlhF8ClTVHXGJ584QSZBBmXJFJzvSC65d/Y+Zg8yo3bi7hEUGz4w6pZJq6V6lq6k17zgZUu1eULF2DsZ34ibPHFM1TLnwvaA+4Ily2BlXKQPF+lkjQXCaZx9Io/vNJ0g7z0MkxNLCS1U1D5sMqePMSx5/ZCERO2XjL2OKIrDzeMv6v6k/FuLosiQHgotbWW+oRr3izevn7ChSW2jMwT4E5AlRC5296UgNsRH9qXY6W/vS1+KncHJ7mGjL8Xh8r7wu4e7h9uuM4Ub/ws7Uwwe2ZliBUG87U2xxy0aHt8THsZEw2mecqf5rg4V2PMADPuL1x9enb8dvjx/ffaYhhVHzYYVvgKDWr23mbwJ7sfEuhEu8aVdK/D9zbIt6WCB3zRD/4jdLA5hpLeZuFar3r0ka6SVouXM+V8/pivG/s5JiITri7vXF8hUn3pmwGL3iRlRP/4zap2xe7SzpHfGz+SnP5Of/kx++jP5qTz+Z/LTn8lPO9B4P5Of/kx++jP56c/kpysU0s/kpz+Tn/5Mfpr9TH76M/lpK9nyM/lp68j9WZCfchtLigYSkgodjHp1H8vd45Ne0K4+0smyo3Pl8rGirSsHJghofZlgBpuJa9VkuuVw4jOh+pApygOKmwWVwT6mls+ZqKPd6TZ5K72f5qUnadSMK73HBlnLM8tiE+vPs3dwcMTteQabB1FuVLx1Lr9JgjMwlkz97U0mSBnFPeNEmgUY0tX6ZjiaZGnl8BQ0Z+UAowaRCGzzR1q/QajYVqAf5+6B9EI2ui7ro91BuI5Vdvr84ur0l8/lpWif6oSxkJTyQFMwOoUWVq2RVbnXvmV36acsqKn+gMLkPeWUmYRRVIspsY6wf+q4281x2+YCRgXdRtbUbbwKdpbc/RVFTu58I7MJExd0IH2NhrAERT6sXGuK6VO2YhrRh6K9mtokPErjJ8jCl8FdqSwEgkouiZz0MXO9wATeKUedXtKhH92V1lDrfshM2I1slv4CTI2tl5h+fVWxfnkXRDxYA7Xui6Tsm+vDP/qUTnJBmdDdCH7pq3eb7DFjW7tLDDLbK7bdXhAXHMNrUcNdpGZrssjUrjfGniceA99uJmx+onJAN3HIVQz1E6V6bq6MlDnUzZACDa7Q8vDZbgfiD6/QOazc81uUIZG9YLmRFx4oSM4FcV9yVOQRd4pCGhNOh0werOQJYAQ4Y+qALL9rl/YMQPkuY4NZkZbtXeI1xGU8lfaNCmBBE9YApG11yxcnsZmMoYm2ooICef2A8TF4yZVVaVEj1V/rnnI/9tQHIHtRBNtLe42Ccb1ySR4Ph2oeC62mKBPXepCFCwgwBsGhNTwhdxkxpNEZxQu5YhPh0Ok8cIfSwFaRksq8Nj6KDaY6rFgTbXYmdagR9Bydq1OtHHuN+MGe90R6p8gtUwi5Z+9ReGEEJDAOgaG+Hu9BgFtDkxaXm7bC3T7USt9gqdfGmpkQLXYth/uq6O6Aa5EQJ0YXOplJREoaODXiLzKrvfVaKYYVr61esagukQ2LFJxm/3oYfej5xNbL1m1cntTxRUkN4eJ6w+KHWOtuF0WFu9YYOdBkA88tPg8a/tIKIZt+szktuRsu5mroRT58rJCYPDUUj6C30NvF6p7fL/ioY5hceMtLetDiIz0nsuC7m4PDNc8BzurFt6Qdp6kpjpxTgIGvWOis7GzuNl+QlWLDIeDapDFGn59wqbpcgZAYI5y2EKEpB4c7LPIHbyHr7VMg4jiboYJkUjdlR7PEaxuYnKZ4/z2c4YorYmEl2/mYSCWm5wRZOhleUi5Ga4d4ROleLsDeeiCb+V0RXYT9cBEagwZk+TewOndaUylgKYo9S/mHf53Ay6UpuiXjjsaE9G+2wCbnv+BirbFGWPunihRJtZF45C32lr5FxNNxQQYtZhbdkxdW8gUJn3BEVbjyn6IHZ998da3DX3/D3V/Dm3BZMlcAHO5sIoyF3CfYSesg0MzhDsQ9BPyRydNs83azw0gBrUJyhEMa0VxfhCVK7U0yakTo0L58KHLCiMKFrWCrmygutwaDdY8ST4FYhYlFqKwN+w/L3Mq4fIGh+I7y21NiXMIn3PAwkelsBzt0HPzXkfuv+HS1SXJzzk7tFhTmx5lSFTzLBQmx4e6eSF6MN0uXU4k95Qf2vZA6Ly8X7DEUCIuWgJT70c1iYghd8HDEXptlMfXXFpyNqV/Ds+cWrZWqDgis8Nw+xzyP9JqIErHjO/56kX8vd5N+dJlJEbRGUzanY1Y/AR2fJPg3nHbF13ONDEQ3bOpbec7KIPfIwCZMX1AUotqc3c1E/tHaBCvDku4701AcxTY2ER/oV/aCQ8JX/NIGCwo9n/SAHlqnoLjqXvJUyMFxTVn1PIuiGymY9Eh046A/2OlvHyaD3ZOd45O9gwa6cX8puvHo6GjHYRvd6F+Ibdx+JLZxVQjxBwE3wl8pZbYM2Qj78OolmRSPQDTuH3YjGiXoZiuVwiDnUvDiTrguy9CLu4347Y+IX9zbjeEX+U2tN8gT+XPDKMpb/+DgxMEh/OIfVuSXcwWHBPqdwwP6+MX+4epswR4s1yn/hv3fw/XTBauGiycM9rejCYPGJDiMR2kSITlwdeY+CSAHFfF8lkJ0Q1ML/DkBXED9nL48bPsQU68YokmBo919zQkM2sHlSxQpaCmdCEeDwrumqvrAdbubNwpN7glz8Um5Q7iaDqNfsUChdT1IUEjqPHc1ntFfBVUOjOxwPMeqf9UQirWUipPUGruIw4tMQM5xxF9egXL1WNlG346bjoDSdrtxHF6QgAWTq7/tKz21MRkuEKXsG3lgRNUF76lR3jYPICcqPfcZG16ut5LuFhZjXJefO34uFECLSmM8jN+bl7PkOjWJLEUIRV9+sCJ00QpfVWAXIuxxi7aUZUUdi1SZVWkFrYIprI7p8KEi4yk0CfUkNS5vpFixwzQaPLrwY9DfPujv7CYg1XeOTvZ2GqbR0VLTaHewf3BwfGyso8GfVPnxWOtotcT8SYs/YObfXYBYHP7m7P3l+bu3j7CUDvYeZSlFpftSg2mvuVTLTKa9phL7MW2mvRU2UziTfyxG0+7OUWA0/awa/wTVyDcDri1td5EXv0/74jfEEB+wmW/xO4/Ee8QH6IB5HEStNjPsPxCQx47Yc2B3rAMWiPVSe4mhjQ8zvGiGUJZNCCxvD7PPitti64ApCyiGKqkcrCoo+BAs7yMLxkJgKzWhaJHCVvIgiv5iFn1YC6Ph5gqbNtZMSR+R0ZUnQuGJ4sVsp591WP44Omhrzc+ZdktjV6utBtq5P8Fq2DvZGzzKatjf3dvZOzp0VoObwE9jNXRd058slIJPpIs+fHQ8Zf9RVoKVJqtKQZsyq7sU1Dz1xzQLoqWgxiww0/jHYhMMDsJAyp+teOXDtiP37H62RNeSzfxIPdt6cIeO3YnqWBnuH4Z+HexsDx6nYAmTxQtKFvMF5Rift9p0Lv/pKZcWpBKi4z92PcSqLPtAzp3W0ppoMllzGiHaw/WIQh3oDvCG+/tM0j5xGlbMA9lW1MxHSKwgy9FTfpe1aSkKHX3sJbF3JOfTRpuEeDvZNWGLmhQTWGi9uJ4i8ZMaChYb2k0QgwTRFNWTDgM3FmFIJ5xDn+vTXTbBgAw7WdQxFEy8xO6HlTCdE5WizkafIBoFmRa7ST5XnkFmJNRaMwLF31Hy7R+NVbkE7aPy9Mc2NEEl7u8+0tA8ODo+3v97MzQjeuonjUftk2599/7N5RdEpPYHj7I19RQsszMPcT1WmZiHziD4Ea1LcvGXWZcyhT83y/JHphE53hmsMjB/Ni9+Ni9+Ni/+XswLTkrDvb1ejMcPWAuyTvkaKIdv8fvcqGXtZPSyYToS0Ufonc6+ufIIJWGevkZMp6t8lMckX6XJXZXdfO01eFmNaThS4yIct/wstnrf+Df5aiv9JkGiG23FbZ9mzYEeRsK+7mkXtWRxO+p9g7k3fMJmcj5P7j2giXnv+kSgg7FvqtSk/zJraJuLgav3banVxuTk5bKXo7scCUnh4HIDayRcsu+/ydhGWLBXRJ7gvwm3qawpYJ83XE/xToNllMpVmIgnC508bHAK/1Z4GexD2/3px/mnfMyl435W701H6BP5q2sEKcCvg83PuEx3+S3mY8mhni7quVKS/dVfHu0MDn7hqTbQ3eWeGGWVZzV9fvgLfET8qyUuqXzLXQVMhki1it0VMfKwLhgv5s7m5yaufM/mhPeC93mOxbaNDLPW9k8mdhhutvf0OQJ2QeBuJK/QnAN3/qIqCaOH++Qw1vjtZ2biGo4ohf8xzI9z7VWe3TNvOf6eH1qbR/xNls0aTD+OYkPql0eTfPSRkO6BvCQul6dIccgV2cEzYEr0hfhsvU5x/Vi9ZolODkaEjbYrh9fsBm+gEgc0NEXyVI43GcgbgmBM0k/pHJvzYevNZ+0tJStOzsNf677Ovrlg4CYrOSd7Lc+i6tpOwQGCejGt+R9bGVOV9uVJ3VIloe+jbPGEGnAemKoYx+Veoq0bhVLTHWHQCX7hNhgpwO21tOEWKUmwy+VyYHFHbcs5cPeYIKrkEBbKpQ3RgfcZiYQ6c8z8xC3PpJytp1hOapjYvYyccBMnPst87O9bk4JPpMnIDIHPTSbNv/insZjX/t6OYoQOo55oy6ykxfq2xOsJh7SFEONGuk2tm07Ii5tn5HpIb16u8mAk+1P/WEyZhrAXuhtBXJGOrTSTaXB5KxNau3oheKbPjirc2bP78gOuZ9TXhk/TUOZL3UCePms58qZu+E9r7RZ78upI5Nty8SlLF66rYyx7bL9Pq/2iQrZclqnRiikeuAP+cvgF8YXBTn9ngPGFvd2TvSbv6fL4wg6orJ19C385/EmJT5fbaD9dPmvbmpiPAb3sNkMMTSMpqUvqF1OAA+2tND/Y8rTWtl2fZVmt1gv8SGGH/aNY2CHQ9NJ/7lb5Rvy8/txiET8a8mV7vxmE+FngrxT4dDhg4dLRzbQDmozMIlp5afkH1vcK/fPjLiCCQahw5j/+6/8t3rP/+K//jbqCWLVKleaw2TlbQv4G+GIS5eER1BIVscnuBOHG+IvEU2iD4z0POl6//Wi7vsux+ThSSQr30ISQMmKGE6wkJkIFd1yZxY1h0BjtKj/v7NYZnRgWIJmKa897zyR5ODqzVWTFyPWgNm1Dpr5a2tHJkUOskSZkhvOxKKYnWt321HFd2sXSxwgpRfiUWteOr9KS1enmP4n0ZuD6a14IfnJIk9rcq/iQ7Sroky5SgIZ4mmZioEvlV/L89OUK4we+kXyLPbRlSQqyX9w848g7XW98QNAd1Lx6+MsXQvDYjBlSK2ElD2DCPt2403L2EIQ47bGJ72qDLsQVJ7uLg4/BN3bUVzgFihlsCQWlZ/9KamTvEwadX12+e0ulcN1jJJoa4dw8P61xN6V3RaNfBHjGsdaGwZot42TWfexc/XgLWt99qTHN+nGrHetFGzmxXSx89rrQcRBVT2tIzQDd1caQeJ27JkQc6SJRyD/sbAUb8lYIg0Nm22WOygrDQ5MHx0WaUF/kOXPf+J6N8/RzWZTTh2CuHavtugw3ljvgSgua/uFW3kyyz1RazZsRPPt9NrurHAeOab6KT5xpvZEdKz4Oi60Ozr5uZhXuqKSnZMzsmr6vOFGSdjYJNVLuWEo6I8djbLdKqXnS+Twd3VENxPkLdzxXN2sNhlzGJmO5XIiO018TrANxooCoFRzPSjO/bXTfU+SSYgAx8YFmT5MncEffvB5enj5/O3z97vT56+HL87PXLy6fbIDGn9RZ8uwXijMmyoH7WZ/oJG6xNjbmZR8bk0IIwvzNW+vu6QUH44pK0p4+M1mfRcH3kPgetWgLuRTRtmi07IvnRLobZtJ1zqeohhwvuZOxur5cYu4WtakgXtDxC5DcK+8+CxthmNDTJeTmbPSdcWk/8rYr8j0WEDhulzvxeGgiUwOr1ksrMVbOrlftTAU6VMiZxCTmMAm3FNGRl/HkNCveNUuhecPFZOK3WNbBm7ogTkqhYC0j7qHIvnhXezuco9Syyw2XFZ1q311RJSl1SV7ziTSp4LFrn0PTDDq9RqpTfaZvDzydDOEmmHvcOlnBRnTy1cRMtYbSJ0nfKkC1IoSvh5IT4OxHzTqFtj33vqHJlxpVMOA741CEiwb2t9MQXVOkynpu/Mqv0jHSamuECzdscoguD41I1yb7LMJiy4gNY/DwMaGLQ3l5WC7+iXwfGekncXPW15yQK+irUTosHCdr1xW11sRBaWrompCDpclbEnA6JdViIvKCPpulmLxoHG812l4twIkFh/0Ws3rwTpHdpzJaAyrgJsxSaanZ5Va7uhUmaDAdZdAK4mlon4YUV7jefPrEJTPUh0GDDPRkz19ELjRRk7fvEK0e/eqOqN6ygBhGHL8lvbYCChwrxXHGthUZN9FsWfMc51quEhtEarOHhrRMELL7wHl5aSDR3sl3wU5eL+YsHe/TgjNN3MjbvHvQyNgfHTmZ9sAxdwldjGxMHCb5DT+d87lsOhPTn28FCku+QdMglnmEGYPZiYRUS8thBptHbV2qrML14vaWPdK4CAplHl78l6H1vGLRMM/6qcxDXRM4HliUDuuY02SuQ5M8eIe1IgVR+0PMWRDzxbyfFaZxtxUcQmmf1q2iNiaUsTAhScxSQs/15+K5b0hwgGAR4MOkMTdjKadsQwew/5TfFqV2SNCYIrzXtYQW9IXoWub6I+GFiy7nerr1W3DkqUJ8VN4K5z4GXLmbI8ocBYRwo1H8i7DeppwupqgJf0z0RNpveZJfV2kVlisaFjg2gUPhOU2rj/xgROBLwM6ShZPKW8zvqFMr2nt3i5ubiYm2tE9YMG5z5XF4OKiTPHM9ob3/jq/q1QGHeLr1WacRqX2ACakFj2S9Ehe35y+0U4rpOWKe1eqlgA+UOOoLNZuv8DTX2C42K+qmax1QOfn71HU0wybTPkLY9COKJ97EyZY5E2ZkOOwEKBFjeWmbcFLn2TXIMroqrV7m/8RgS+gG2YdcNOwtf7tqLK9thm4CZ8ZH9yKGzzS/rbwtGjsvnsFQ42Wq3AabzMEBN1XRA8EIci9d5xY/ceq0W4eTa5FYfjhvOdfRVr7hW7njqdMW7jVjWKAmu6b4CbL2ykb/s+Grs6t/+QR+NH7ynzW8o6V+hE5cclY489++Pn/5Mpj478vrwJWjJ/3G+S7WiIGVYb3ruisg93KZh0ZZpnk6ytiVpnfLsjsicM+2+RlRPYFdnVaZKp50heppdVI2Ev1QQz7dbuv7TN56UYwXmVCdkfODP9+LPnTvR8IZHEaJ41tK0YrHZU5S9JYGuZJMlrk0ijIS1Qym2DKblOaSN/AuZ4pCt6O5zfMhpRxH9VjzzeGy0tBsE75yAVmCnbZDq6cdwc22MlM+TVJ6fgKCC3aWeld2ZKkODAKm3O4iXGk8vhg1ps9v0zx8CWc6Nq14F7qVdlK1NPHlIaaUziG7LZ3LV7gXOi4gcQCSs4ZSIbpzK41F2hg24DV8IhyTIzGNKUYYj+s02Q9oLxt47u57uoKFN1w3IipvmtzL7BXmgF4alqCkDBENS1Rez7Nqk/Gi0hyAGSvUppFwS5VRMFzvR42oD7Q0MHmXY+i/1EbZ9RPQ11PKpNKuMmjS5x38yR/D4S9XxGQQD4Htn8zC14GKXtNOW542DuRSUWJdF7uwEjGXZLDG7qNLyD9u69l4WNcE1MJUr3f2JWhhAroYeOs6IE2z0fHQqiR50vlTAjjWM4W2NvNuRWtOXV0Pmi/lm22RNLbXCh8ZTY0F5bqxWxCzkbXbndXO6lrL+nFoAMV6TKms9ODQHSlG5SzXG6Dk7FZJeIW/1HPuOKLdTPLORNOIIxXwnDhucMIV4Ad3+cz47txy2TGySoKL0l18nhXUK5JiSdIpbGaypH+AxmNSWXA1el2Ole9TIVpaBTJOw8ek7c0Sh5FFdkpByv4k/6jom+hc1+JCR+C7NlYm7uwgPNURdyevX8dMBLcEgrHIHLG+xESd5R74UHaMTmG/IdTI0klP7DgQuEUgRZuhDtnUcZnV6JRRL5W0oQZ8LLCz4fMyY8H1SVsjGbGkS5gHEREES2JnUz6tKR8P55GsmvByN1ZMwtbladzBZcxvrjqJ0sbcBpegKbgJdP3ZBizdm3iUBydLSGSl3rjsmGz4pp2IJgq0S7CAozWxH8ZkAnefm6lQbkUi5nSFUYaFe6G4pXyedTTEWOvGnSKdttkydNmowzCBjlzAuc6nYFXc5GTm4j2A7ywmnDXtIG5unBHMFdO9DtvRgWCuGcLyAC7t1EjKHq5Kb0NvnAsoy9Vb4fg94iw1U0zN4HokAqJE2AHKQtyArpnIQWjYllwtNUulZ7aAINuPV0pIcqHZwWkF5BOF2eiimF+FQJhupIEeYlfDgEzTePJi5xkfZfTx28U0q+CpIqc9GCWgkXf5l+7wB4/xivrQGT78aHyovVZiEYhFSIrKAdq8Vd1qhBGEFb58g80Ty7PptXuw+IyPeeBj2vZ4QS4Far5eiaPisnw0UHAGw+l/F3RbL26t94xaxsdEsP1hSnFpH3vI3BmSCEsDBxbrjmLe4oKD2yOMQujtWxRopXZ19EXrVuS6QAUp8AAa4dZ55A5rwxGm2/BY4U7nFGEMn/8+E/hChGzevzAlIwgBERYztt93t/W2cfBil++ks9JAWkyBms7SYlMiP7yWiz01faFz29vatYqWg2hz6DGcTpuWI9qAGmRBOsm/z3TJ80AmuOO/WsOipiAAR8HQo7HH8iDQZ5o+XGeE7r54d3n1NNpkwqbDFtMJ6CANgGBjbbmSfy8qu911FGQzhlsqUAXzzJH4ooUxhB0f0oUcKpr45IQmxUUkQ3E+nj7zK8QNTthTTCddhuCrtx+SVxfYp36UFXUWBHibEt9KB3sEyVN8ms+dBQ/jjvG9GYFPJlIbx79GTxC61+WI6hyDpkscWYRht6RUooHkb9Y2HRC17/aj2x7s9Lf3+js7yWCANR27R43ipuOlxU2D7ePD/aOA23f7p2x9YGsNfrJSJixIOn35mBKmgyUsKVK3UE4dtq6zbKG7igkXNZWf9dnn6/OTl1Q04Y/iY/2Y1U3x7gfG+I1P6R9LYdMAuRj+XOpO3JHj5ZpM+ozP6uyB/N1FAgc9OWcU19pcfbERosVD2CRCHh7jN8BD5ewXrKgmdoI6Caf1V9x5IF5XPDjGXgloC2BTtFZhsW3DLjuNZAJ1Bo9n8oWyrum/8nHYTy9MCoobYSK7/N4ti2THM/qtOhStXKcH351e/oYrIuQ8eLNxZSAyANiE4SRJCkXWpBM20mG2+Jl+goHIldLVXSep639uDWK0Or1Fr1Y7Rtutz7ZW0hhu6dxxkyA+h0OE06Ad6pIA/5x7URGiYKr93OgZvD5dSYTOnM6HIv8DNuocY/TgBmvlpJGb9k/AHaD2ipOJC5tpzNNXdilxUffpG0QCsbaxepXOcm0aB88FWYA2uW2wjnz/A4ms3LhGDoqnIhokzspRyYDGb0cpAtee4KF9QjfrCS3ck9gUm5dU57fe3LYjj9yW1mURLMwd9dhyB463U391qP3p2PrE5pbotXr3Xbr2gsl7ahDaJh8pANinKA/TvH94tJHovw6eIR+EDrVGcb2f5Ty9rQ1waik23Jz+6MrYapCwVYZkSjgJLf8c3o+mk6EL1gzLmyFdcbLf8ax+zLilhftrfNS9eBI2B7lfVYsZuR68dOBTtIRIB/A8NlAHlABX5SWdgzM6B6WRCiIH4kv51goSuqH3+fdpNdZgFDh9eX0XdqnTAyy3/G8yCn7If537O2/COrFX2TFnOH56KYAudzOoOaK8EhZAp5w/0eSWT9nIGIOOMbRZpeK4QhWcXiN6WZ/B+k0CJNTMmrpRI1ZjTvFZjL76K7sdJXYgdf0lxA7bx8ng6GT76GRvr+H7HC71fQ7ReRo418eN/xPxRsZtpp+UOhLe5+LNb89/EN5IubxqyOWF17U+FryUyGEXF6RpQna3ewsO5I/p8Ox7hydfYrpKebuZ1J+by/Mj80oOdrYDSoef1NRm2ryB3CmkrxrdwdeQ6x4WLu7vwMa+gS+e4hfX58zrHiNOl4Br9cPTJfiJUymNi/lKF6moZ+RJxiNa8g21ihUYoLLi6RnnUtSWXt/2jcjkvwbdxD006uPk++Cov33U39lOto+xg9BOM7a1nLhnsLe3s7NzbIiBf9LQ1tKD8lN3rHpzuvfdxRfIeTq9K9h7mCxulILsym+LWptQUwVLrcF+RRXo18C+gD+NfTogDzjyl6gJeMvo1Ytrit1tefkTujKj9pX5EVXHYbS9RZHd1xOGbNewEouZpSTuuNf/yFTJ/nGgSR4rm/j8HJM9UWflav7UIzQnMANw9q4Z2up6SlTYH+2IrO+xpP8/NjhSb6jrJsv6kLaI6PtgeCfsfV4i3pJpQK3DAiP+kbBFIhCA2zJFZpZ0dsdKOS3KAuEPjJUHv9N5+txIETweZByUygf8++/KtI5FHmLkKlG8uEkvyXIRdRPGAmVTWuGVrrRz8OALBmfw/QN5w5SKWfI+LT6+SWEFcL0xPzpNZz6k0nYzHZvpQyxSFOkQL8ArWuXXWVoVHM+M5F3Xwv92dm6jviOIbFsIbI/W6xTzeupt5bXLEU/aUapHnhgYusSpwAGoG6fF8mWXtycgOA3EuAM27LN26z2HqzdsUBCsRpDonzrxpdwKz141RWvXGf7UIYVabEftYMzMdVOgSWLoI2DNDC60ltkyxpHAE/yA3MGxFfuFlMCRyhKtLtDSJ58+z2809DfNF1O70xiOkFR/1gRqrAUZ9SvnrgUKXj99fHOeMK1GwHJCgdz5E56Gsd8fsNCisuHbHE7x547YbZrsbe/JbcLSAHjELdw8U6uN08Oo43hULabXLlCFJ10kCSGC6VjpjzGQSiHVipc1BhxYzVkSRRLwQpmySyc2UE5yYb1SUDhB4s5hFy1MMLFoSKsOfm8WJH7o17gzdQuhDoqp9TuhGMZ6UzdmTLbtdJF2RAYhuKc83rxJLjH2NgOSDtFR2uGKengt6K5ykOwejqDWEWFs6vrBf1lnQD96nKj3DhjqFL2Ssyovyasb7EWi1IMwM7RC/EcIpUQM5FNUVu6sY5hiWRn4WnKfvGy8pULJFdx0xqbAypF1EkkMFUT370SXYfWTdqUCNV7/OgSgFxGI2lPAIFv83bshan1T/vmYITpqsSXbIYeTrwET+s+bXGWrniNNe1qEkvGbSt8TDGqcDWwN2a4KxeAuneyyTPE3HT2PBtFUkt6MEIhm3hpD6PGqv8HjYffoVkr+TfxKo2fuymkmSrawOuwRaFvHcUh9HlB+y6NsnwkmYnHMde6UR7FCYU1I60d+012RqWXioMRnDBaVgkxDbZfXUypbZUtXOd89wf68bOVLI08OOpsvY85cAYNiXK7ec86VpKtw57i8PUqkYNlWj5+3imkomHGcVLMl04y8EJVjdgFtjTWYjQybHLYD4aoLYTFIq0z5Dp6yr2oz5O6YPIsICm0aKD8Iyt39AQdjOL4AnfzfZg0SrrzH6A0Wwsz6TmGEVxctfGPLKUGfnXNC1ahoh6rG5IpSss+vsxv0P+imhmpIr6xcy+CJgvQYiwnHd2IxE1QVeZja6/YRuix5TnQjeI+5yrt2ysKV3OBbeJ1S35ULbOiRqcoKNiuJpZPhYTw/McCFwjC2TytxIG9AQiegdOs50yS2NgaXhUdDO4MKnOoM4Zhz9Z1XoAwp0QYn5tGJtu2D/vYAQYbbg5PBwaMCsbv7BweDw0OTaZMJ/ESZtu4Qzk8dhv3uArbtC8KwSG38JmBMt45pOVtMUo4eaQv3lYk27cKDy7Is0QYv488bZ3h/xIDpgQEXIgpuijXuFBrzk9AAmQsEBinGf2SB0gH2uPuzifspPTkZFxRoPWwEWikZhtxw2Ty54m81ucfn+udIfHVnG5YMufIWs7adtNFAtxkSxYd22Ji6Sm0mZ8XvywdBVzZZ7jb44QHK3pAXlfeI4BCFu6FVqghoQaoXLEPlYKaLLGKsriKaqM6w7s7O3vEex3V3N/c2B/sdBnez9FQNmwZkTmvAuXSWL06XDVbPHybq7cF/glDKv0cu7Qk1K7Jd9LgmjWxJW4AT8Ecj/MvWGqTFgymfk9hXOBUfrmVW2Enm+T15VZ1rIdGWFlFqsFdkQ2LXKjR/b0DogCv4KYcZBrjJNd0Y2j8eYYTSx3bxaTTsQZOXUHEMo2LLjrlyuASpj6XzKAXBSvo9bCSjHZFzp23uvwF7UuO78GzDzYtBDaoeBrtDiB5uMiyVGXeVadvLa0vr6az43XNUrF3bA+LEhkBgQXKGLtPyTbImgxyR8uglWMndVPnT1bjPVAz1qZzE4nd0WySA51qifzavFXdhKjhVsHFknerejVJeImu9Czj7u99dnn/3u1cNDoBwEl1UNq4Dk3TvEkSuIWiU97zLwcUrEmTlIeyh64/YMWBHmM02VtRYMxzWYE3jD2wF1ajuTtlp4LkFnKpMednksL2X+qFTUc8KY/2Up8mvFzkcftzkDeZsscSw8eeC6+EKmrBYB04WkvgtwN+a4E1Lb3njwKckrgR8RVRYGbFIgriBOWCDPC5+L4lhQrrAV9KnS2JCWL/V0iVCPWOFCZGHwrP7xMwIUinv6Ek5KicoheGVfSHo9QPGvPiSEGaXJSpnIib82vS7GLEXfLCYMgWOdPUTB0E6yHimzMYLyF870KLPx2NcQjqbizqNyLwqRWDjWvu8mXwo5tQz7n6DSVb5p0SgKoUK6GmBiuzPwRBHfRAo1mlGbP50Ce1xM9zzRHmZO0erUaqnE3z14Zx4MV0qwmkTvk14yGB1VIkj81M+p86Gb3Hu95m7LeH7p8gbBWflqVRk0A3G78I0yYB7tpHUJb8BjW3H5SEw3UQUG7BjBD5lSsRI4smTNAQpJnagM9+JQJSeI+js5CZJKhKfhniD4i5sbHmRn9ziwlblR/T/cb/kCHFUAL18T4EocKTQFpHalegUppTGX6piLxbX2IGPtel76kBAlTACLVURzVYzXydTZYt3FIMO1KOTr0pHGxOC0ueOeh6OZkDD5ljrQqYK/AtWrUYMyWXBX1puPVROLAcXVwsyiJgMRB1y0WLmtriZ5BwH0lqO5kMwRxY8A95Fazn54ErhLIrf5ELTKdFcY0q3MMfuqNx0SVvUevWtxvsLuBrXJcKgWVXT1qiYVgowOEG/AUlX43kX8sEoDcXqg4oyF64UkbfzQYTFG2WOirPVZpJBzN7WoWBkzOQgEgWWmF1z4hhYs3zGUfZxsrGwDUU9OSisDlm8KnC422lkELl0l8T95spWZe901bWwlrZww6zPOVbtUjtVCoBrThQWCoN+0s04/RSt45FUuAwlRXtEvQGTx+PUHH3ZYadzMEWjNQ8lLxE6ibFT3riKtpadJwLUpcmvM+VMcGcwIEFuaAsb6G44PCuni7BSP+GaclSF5YXjgBtPU7SAFn1rVol5LK0yRKtZc/ZkOoDkz8H8gBuKBSWoRWoj7ynVk34iXChpO3InaAMxsDjXE98Y8CXTjiDv30b7c2f7qPgmdkBPKJ9xH4bkKetYFHYbNNlosBrzLLcTKst3ZkFbLricHDEQYITYNXtpZyDavDlvYVrvrYEgVRfXD+xLkYU+b9KGYUfxNDQsMLRA+/wE/STM3z00OBVC67ddMhi4mojgksMWDsTL3qOCFmK1QNyBS+U5kVgYd5FVFKz8osc7RDmumxu0UGiHaPnuyvthXgyL9NMQv1qjE1jlYOJkakJ6KlBcNjxVkm+NT6Z2x2GG6nZkeiLBCaA/TR6Gf1hk1QPu14abwiJ3v5xXC/gg+0ytr4Z4NYciR/Qb1GYldn7SQmHNSwwB10nHi4xOx9AbgxR7r/AIIR1DlThHe5RXo8UUY7Qj5EGbI0YPL5ZnkpFayI5BnoSZDCNfkx7ytfXo3rrIvZ80hVJQkhBTkSdFlGsTiLLN5BwejS4ORk/EVUJHgdZCM2lg7YnDYNlLO5vcvzEAMZB1hdDgBKRlMM94TIfZIMjzNnkoXw6Hzh3t5frtCnAqYwmHfc6niynIh+8zDYqZNPQkZVZzrAXDCkcyR9yaNt0QsPo3kyvdVnXh1eWmy8R+N29qMIymlMn6QqrIVtavyVnHD/HtUeS3DY7592eXV8nzi/ME3NzZYh5ZCFF2zVvKK84eAgtSjCKh8K7KGVbZNewblr1DkK/i3wzpKU+fBYoIpvRgzqLEjCbZDd4esFvQ4b0FEUvGn8uQGknKDZIWVYDkC4TncVfsw8RZeAlzshapQ2egdRcFQxs1bsbHoGXCosUW2LHBNI6kihMBJl/3MOveo1Bivy4XYDXCeF/3BieDPvzfdg97g+fjr3u4m30xGfoa1u0lxCYBD4F5lVVPuoj/pf8cKxX7HLL5uodSER6IfcE1COUSstqJnFqCUzRq2fR2YHq7JzA7iVh1f0FrDSOWeUmRAjbrTDRI78yV9mxutB1/rrAToiNUERon7VNQxdK13oO57p0cdiw1huk615k/XLXIQaRvzRXexwOwf3J41L3G+JX9k2NY5Ihzws4opYvZHc0agVFvlUzTYkE1kT78EFPNaFxKwIQsMx/2CCKxa0zzV+mn9JLCBh5JScFXIWIk30Kse3IfqKBq64x6+AT3Kj7iAYx4cLK7vdMz/rR0nMFDA1ulflBXXJBBL9U8H1Hy0hgnT6MOayjLAru4ZdQ6U/v+rhS0WmAmuShF8lzcMjj3HJ6DBclS0MBshVlblVzXDEHkuGNUUzvmmi0cX2w1LZ4Gvdm/z8crlvEQlvHw5HjPX2IBUcBDYd0y0KkgGcFnBNsF1k5QFJQHIEYHb33TwrFOrxteWnzoIxga/m9w6Mdu9Ua8nCHA6G4DnIsMruUGiYlXFF1Vam4215s/xJDqMhrA1myOYTbHWKDWs1FJdOtusz6lkkawKZkiC6VJQWgxii3bTtmBBl4++mAbRcH2yTGIAu+DhAhVzb4zBDrMAyh9XUdebMXgpIhQEx3pZVL/ouN5zrN60Ga3ziklx7oo+9wkpe/sUUs/3jEN1Cf4PwPeAzqLmG/uGXfDrXWvKEtEeoGgFkIK2HWCOwvhtQvKprUAJZkna5ZRcwm0ajEysmJOuzinXbog0ZiaOfa1r8PNgkYxKcdT2Wn2KILnoAgfTAi/YwaoufB/8J542zWdex9FhMZS+5mpPMQziQPbNLy8Yj5GaUWbW9lASl6A0WmTw7ZnWdRuOlw7fxbcUouGZynKMROblAgj00uI+ZQHhlxjzXyAgxo4LssfxGS7KZG+ew/nMXcWzwv2Xp24ABPut28Nxa0CKZg9maSzulVtoWt4EaefXbKsaqR1ENfSWqAwDChUQ4GHnnsewUriFrdYR4Kgix0UloxCAMxTilcrx/oca0E8ZZeKjRradxU45H88E+J0m0VTRILmFVKsAU0pAjDJp/m86bwKK6gDAixmtxWF63wzaE2cJ/B+HG2r05usOsF8jqSLAg+DgQkclirwbSfEYeuqy8FoYOYRKhjTCVPCKq8/Ug5V3EtOvxfSAIyaGILSZHsZn7rhKUZQZUrwiVsBkWx0a+loc+b3pbiALkYDPl966+riJSbgFoTPrla82EfSA+p5+uA8Sc9So8uob6mJ+9W5I0pDhINzdQ1abv+M/jDkPzxLbEN2GBJOF+lyLn5lr+PNw+WvXyckGitRElUGHlMhz2bOYcx5ItwGfy5uPqzinXCWy1UXZ7/2aqp1angB3GnZ4ILMzym+fPebLw1UfVuV6XhErJiNJJWeki6v4Nr/kjYc05NZRWtFOSVFAGhUIWICSfs5lySSzmDxXaTX3mIycHQ+QBlXYdbXTZ3w75MHf3zxwUMqo2kZe5bm4aKb86sjxxy0BrIZjS6/gY9F9nmUZWOOm1PGw7NwjJGOrIDrmJI9dCsmeWoRTfWoKr2uXaVDVHN0dE2YlCxR8ipo8NApFqNyudWiu1Mut2WqyPvkuqRXTxA1i+2lqF1MRQsTB8y0OJmCQd3t8b3LQAHO0QZWJwsf8jnak8ygIVoMxb//NeoV+PE+/Jj4iSiKPA6D46ZoZOUTqSTQIKwoJHadVg5OHqqLLx/k6h4O2YP8A+F+c2ppyIEzRyemh0OQHh19uhUORI23wavK69oXUnox8QcCz1D6LMjrRne0BT5S5y70IckkD2ZlDRVB3po7TpU2EmUMz953F0PeTddDUMsdpD9MaTxon52jZV33/qn6EpuhK6lBXWnYMVa/2HyKkbAm0EI1fmoJyvHARPAB8ZANvpXLSwbygTasA32wVMp4Mvwu/4+yophpTxYFrjOaH59UuYkBzc46KL28jIsqbTdLzH0dCAkDCU0RUzNnJyJaELWuhRa37zR42XqKjCB2ti1iX7WemMnhxQvuJHnLQWJRNQ2FmgS6jYtFXINBTOkmr2qpsC5G8dDzkppXNE8jMhXFakY26CStbrNOPIktH6QUbOPASG6YO9N4jHwsZb6s9LEBU9S0Z+oxtnTobf4BETiHjZ31r80V0AyuRnMhnLV05iJfTIKR0sY2C7JHYY42ssirwLuC2/URAIfgbYN2CTBi5+l6B3Reytg8O7Vry/xS65+MM+00GWr5k4RoeKTHmTMtWpV93mOpqKZK36dZ9uqKlBGb8bkpHFfioaMwaG8IRpFaKAPOvCXsfaMgxh2oLYkdlaH+Cr561QI7OI4Hh2qTKnwfyVKmAJLdvZfnZ69fDN8+f3N2kvC//+b56w9nPer0Yv8Q2eXdCOJ3mRVhbY/9+PN2Hg1j7twmrU3k8syy/MhtsSz6+zq/HZKEHGIidji/g8kh6su2MJzAeY3PdfDIuXqgSxiYCq03PT2Y70YxLLlcuDEgJrk5OmkVeO/rvFB3l7q7+zSX4CdjpQYxtdE8ra0qPwOcv/5GraHbpkX09NlXW9ffUNrXN4KAG+1iKcI4EDcmVgfIxAiKJcsjgFgn9ynJ3s6mx4sODE+DJP36jIjswJT7CJ+C4spiCUiyAcFHF1tUSIDK8g7+TA2JVO0BsUKaUBp0nVE1BnCP5WtKDmcRoGZCdMk4H7vuaHwGnbihTYjgQh5Vsh0y7Lji59jrWQRDO88RRmUYQ+BYmhdzsftI1hNYOKfGbCBVx5vJc1LvfNHt8Z7uTIf1x3w25MCO+zGXCdJJl77PdCUbpehyUjjGo14q2TuU22IVRd1zEh/5xLBZY63GYP5T1pQZmctqBp8tgTc9pQM0Ln1XuybanCDTlWefmz7z7cSwmxjFWj3E5gpONa4pSFAHvF8d8e0QhJf5bUERQgTGx6O8QUcAr9UxPUg2YrHAAga8egJdyYt4YccaB/C6Ku9rhfhira3v3e7rt9LkbhGMazuEGTSyWNcxE6ljvT5oVKhjtZwuvRe6QLESey8YQI/4FSR0iaBoei5esWQb7VJgKG1hQxlS+aTtobGGEM0J1y5rlmdha+U86NCGBxZWxKF2Paq1dyHFB73GTqGNZ5DGBF5kJmUwYReTrMWKb6occ3aCNeBKJhAibGDTq3TEIdfaCBVs/NixK2fFHZ7JZbmK77InVKw+pxrpTr2YjRWMRNICju/C5THg+z1Kol0/DKtykvXoK8yqIIx5CMSliPoD/kDa+5WTLEzASdk+o/kkLSET4gF6weC4ESivnm0m5zfhF4OZ2O+b0n5G5l1nWNGDnq/0z5TQgYbi2Vl0OCqMaaNXWk6IGILlJe6lvkTcvtpe275SED+WhktubpzBv3GtteuHYBvVUDEJtoHDDby6z2/B3r4GffygDUVlXdNJjeFqtou4imOp4GJLieNCb8pCXScXN+gwBNiliNmyLjsS5HCVW7Hw4CcOM7RC8E08TG3nuU7aPmiZcC4Ua9JsupDGJSnnRIO6QarIJFHDc5WwRsxd3FX0XBdyrJUqZDumdLVBEkdNpODcLUrt5I9Fi2QM9rHNtBpCgDnBOMcQUAvFJ0TuKS/pq7Mr3ySMxiXKQNVXqj2ewiW4WUwYMlTWph+DUWhY80HKZSOhNr7Pp+n38L6Xu89iO/RDb1Cz9pVUz/1s/hvnvbxE8tbN2aK+c8UtzvLvdSKx4tU4bmsl3vIVeq9cnzusQXPP0UPjnmrcC/KrLfqGWm74krQNvmSFtQD91IFZApiANpV0LdNLX3vCeSjJynHPdilj/OUVIbjHYopjXJEftJlcEEcBroRY8uo45bXOMyeIyKhcVOmtiEF83U4vISITainEUw+XzgYyeyZK7Rlk955pWPD6gfxlzpnhYvgkelaANboQG0OSFH6fkw/naC9n6xA9haVAVO1JhkMnUER7OGC61lUc4Wwzmjb+cFEwkk1SGlJYwkFf0O4MMBST0ac9OEdJznWsjakVa1FNYM0jddIiaqVDgpyWNdayjbqEmOs5T533apfgoFC+W6fWsXQXyEI24iSBKFeP1tahcs9hrT3SLyhWNk5uRzEewSzhAmP9Ssf91lHGFeweSUWukmt3DG5hepsPkpAIcYNm1L+da1RcK/tJ5kSvkqX0OUrWjIrbwNTuFyu/m0VFwL/gadH7GzcCVv4uHqz5QjELQ/Yog1f3FFxBiGlYrY/ZA3ocdeKAW0h46B1y04c8tfWnbtQrxUszJR2XvMmjyKwXI1DwDLKApHAJ98gUGq2Y4a4zMMVAGOtOis5hMM3Km/+d2sh6xqRAU/RgrvWQG8xiSaoH0TTka71OH8rFvFWe2HFMzy18SSbmXdGghzxH3uTUct2k5bw4fyGrxXgT0BcLyz5LBqb/9qsP5y+8dY5FK5grczAaFpo8Wr24nqHaIMR7SRndtAY/MGEvhwzgVLzophfpUkYEzBW3pYLdSF0Bu3pFBKO4XeTjYa6Fs8qVwnGrknoh5aRna99WlBxJE5bQalIFgmG8j7S/Xj8xyQMzXdg1CvGZ7P2Pis0QDXi6hgm4hpzIuO5lRWB8t3lTkSaF9MSDdhCepvPRnYNDhTdEvhY58L7Jonl9ja1IjSeDlvS01LFTuKHv4bCgzDEX/CjIu/FwmnPB/SSWZIT8f5VKtYNSqCFP0KZj6CIyNXh0trWzPTjeGmxvbR9vaXIVXqavxND98qZ/nd/22YLu50Xfs3zt93e3QMRh8Gj+dW94PQFDqYfq9msP5f2mxuLqcR9ZrZCnASss1BEckR84QUwNGgTW+WNjbFWbcDkvpjxslU0QEBjnGvlAaLmQn2F6KMoL2fBgVuZO2EYJguwY3bwuUcaIeew1+xZJd4w1xXQK5+Ad1QfFhNqimEsqfTibjQtNSnVQBTQC7JwJQRg4SSi1AOUh4bTedRXpch05R0pZNPiUGyEYbGiJ5FtFaBcMA1dqTYNlT4+q5tE0C2Eq4XUIH45hB5bwfbLYQ8RyED2jTFVw7ViEsXurmUOG2Gwmz0FEb3ApN91MvnCKwJFXzOCIzxQBcY18oynFpLVGGz23yaTPyZKp8LXbikB+L6bSlC0k/QE+RAl3QzASEWIHVU9cAS46iWLT9vcGBrSZvHDmBWgnpLEmj4qPSvv7YR18fIE7Sa/aNyAlnTXHumsfKUkZXUBwEFNAGqnMd5kpm9kNtMvBY4IdSPnWvEMYy9REjDiQ7RxOF4vuuQensKdtipcoHugdb3WxfTbZp5H5a1QejUDVr5/kN8jN1yf8+xP9JVusiMblQlC3etTmwtemcrgdLS+t6je2TiMLKALKYXv83Sy4wJh3zJW7khCjcym4H1RBUmypKCBwqf1CsrXjXrpuRFtstIdXoT/Q901ptr28wNaI84ceI7tRDsqyLosR8yME+qrUluMMlA1Yyr8s77EudIODCXlN9G6IUzXBBOMyWz0FwnSUVS0u9HU0xZWvmS84tiL30hIEofjILccAClpKh5D78d5x9Ly0XZqtJ6LGnNLkuqUnSiOVes3kRBdGW7QVO2VSD5IjhF/jQKKWIjx/awVEXdgDHQKSq7lypkUQNUhC/Rpltk1GcMYpcO5lUr2XnsKRfOMerHo6KW9Xh16sK9FR3OF9Xkqyxplh4h5wPcGs9ARB/DVaQ+T0segwd4wKboMbGn/aFEMMVPzD+j+SXffcBuDh5hOOh+AQaH/QHfZF6OEg8PJ3VSolOnDTma7KsElJakKL2WlOQ7hGxXw4Eu7df/9vXdUvv2X87DEZiBgpqnhaARyqRxJRBfKGDDjPv5AXPgVwelehN9TAFdsxtTwcJHQZ9172H6NfziiLZSW/iKhGPb0LtyqyQ3Ql15f45gySsTJFHw4C3s5ZMw0LMqJFmdFicndtOeomShE1qqtYWqkmlU2CUeG6ZSl0FXnmjBh6kZt0lC3RrFKTSWAYgq2D4sw+dTApbTjGM9IbHPIXTiCX6tSjFMV2tJv20FsoSTDlDaVyn5AvYg4/59ZQRDnubpNM6gvUhU8W2DDiVV48vDk9a0phVvwLDh+lQfuCTqa9KEAXfqlIKEwAw7sG7BkhZeAcLtjillCCsgitTSRm7RhRC5gjJ3iIEEDkU4zwr3wo89FkyLny4ehmiBPMnF1QxL+EZlCYyGhaazaAJHgQMHyLzHUlN56Rp3D3SCjPdMSUUQ2E+lyIEIzH1RA6CKq+UT6elIjqka+AOjoQ538VYF88qEkig8ExarOyH5z0mO73S/of7wyoP+bhyU6z//Hx8v6Yu0f7x9sHjpbdz+ALedkHXbzs8LIiqyL07JbyGb6Y16A+8CV5RMvQjmTpvpmZkHE/nq9dyMm7eNr14/WY2ZGtOeyPCW/ZX4OeeqPBzvnQgftdSuWuc42TtysL+4/U3BJ+KEG+Zvq9FDcstggRcu7HULYjE76StGPzzzHcuEmJtmefB+tTErGPV5zY2x/B1S4r8YOTtB8eu3aWP3N4/8zh/TOHd4TDm6XcobRMBltl9PGhT6HIaMNWbF1/SV9KXvOXwq6t8QfFewoc7GHT1iyxz9M02McsozMo5hDHRmkdiJFLj8hmcj733Z0oDguLh+k0/EU2FrMLHkjNLKj0HCUgPx4lKFaREzCLh1jM0BdAbb+ZUOIClYsAzIjfmmhiYLdBLMHB2oA7Ake0Gt2xGqF4JjOBwnuA1I0OQXiZfErOCJJRbv7FP432JNjf3+WWBIPN/XWbJOIiiK3mDESBVKhPEutltG/aTyWR/lPw/yTxPWKIWwOrzVX8eikuR2nh74RtLfoet2/uP6M6+DF6iNFJ+SbnOqe91pxOqcOQL1qhdlYtYC5I0YrCb7WbC7cmmg/n5ZCPq5uWu7ytIfiLPlbvzoRIVQMlaLN9uW58xH0rqvs3tlA1ePllzYWbCkghIpLXaHQFw/G4/6f4QJmnK1KdFbmF0Vkt66XEs3qNUUeZF2p+UYy/ukTTnzhVJI0iAbdg5DZ7tBndlWsvGf09GbgSU8im32xOy6+24J8c7ye+nI9VCiuRmt57INYxUZuJUsm4h5awHsM08UGLj/Sc6LTil7N5Ut+D2V7dYvZd5kdeHnKLhrRWFGogUdAsIuPvYjtCBSM4vk6qbcFYQnSCq5vLvYe9mTAZta3AMcggXdHn1/DNxTyjDeO1Jaes5Tu6tLmLBIDRt6jEmY1eeVfI2R0/aq+q9Ff0XZo5r42Le4G7++0iRzLtDap5Zwg5WKK3muq6JBCU1amxea1TcBWGLDGU5iaVow2utMrqShna1SJzNZk08z51k8ZdTsfjPmVt23NaB6Ts6jRNJzb0lrwgs2kzk3aM9kQMCrmJMpBtCwyXetIekaxMnkHd7gQiD4Iwlyp4+yTewlAQhLAawocwWK1RLhnW87+/eu1CuAEXvcjnBsqGNqrI5lRyjLxxzYdLpFgCxRKVkffl8LBtc5rySSczQ/pBt7dtd3Nw7NQa/edR+J+HrqwxuJfcEgtsnT4HPjZndzOx6GmQcAhO84F1/bE21wEDtLvuO/ud39lx39kL58Zy5EWzIfoU/LRJpjhcIjLF3ZLaoXGWTmQE2A7inq2076CLNesIOx2T2jGTGnR+Z+C+s931Hf0Gb4JhfuJ8H5xSAu45pXlW3GJrBJNA0Sfwvl2qTGPDTj887Bh/sHkE6kK+1LVL+KVoD0GyBB8ZrNrubx/1d7YxWLV/cLI/aASr9pcGqw62j7ddpMqN/hM1EOzyJmxwChaCJWRHQGr7RwtISeThzyFCxFNZM5Qjj/17Ds4c7azRQO/R3gy7sztybkbTul+kn+KeLPz76ZvL5G36Kb9NXZjL+LKtp0Td2MHBMbux4cNckcwYidLdn9GumkhAnWPoD9JmGVPnpKKu0VpxFQT5XOEIUmWCKAXTAB793XyykYyrcsYIMuGqx3YGoNCQjMcPH+99t3984P3MZRa2SfZoyapYG7hQyJQPw+nhMVERgg1+bLWmwF61ZGKS9udEmFKt+SnHnJCfzhmO2fNmhEWRfZ5JGylNPGuBmiMSkyFNccB3F1EWAuPymoEWyEdndpwAs6hnwzyLRiKomWQnDCfqYe7Z/sVtD9uVglpcx/WD76XGDGkeUEPEwKP0ehJz4tZxIZs8AaXHfWbGi3x6enm59avLZ7YFtJ+F2hhxN2PZEfp79CR3lh+9PwNXcse0/Q67XjcnGU8L9xy+zqIOe5ogDvO+7TbTzUE0+ix9fPxFYXBaswn76cUVW1p3aT3UNtpa9hN/34bn92fjke6s7f79hC5p4Nvshb7NnvNtOqcdyB+a+9/+MxRi/W8IdjAHqfq3jNTDfe4zS5Tv38MpaHbOMMLVpta5XtwKvN9W2yfEVd/HQq8eeYaIEIC9qRZF4Ui9tKiVVhG0ff/t89+g01szH6nEQGdatA7/0R7eUsSgV/pEbp33JyU97jq/h6vLDgPZA2JRadl5rZUM2BkOPikWs008mpcZS02n8jenY5ZgytUm3XJLPpGOcwvVjhbliOradPPwtImP8lHhddxSENdlIojBNw/nl8/fgJS/ZXSBTVCROBpNhmCHUTMe1jZ0nZuOr+tFusTxda1Clzi+vrun/ufgx3V895Y4rH5Sx91+r3vO0XK/V8mmo17r3lKHdK/bJX0sfgJc0mP4/wk/sXuyv/9Yl/QgcEn/FOzEY13SiFPw5+GNNhq6HzXhEWhse6va9c/m+l1rXhrP4c8JBPEP0MUd7A+W+rh/n54UbOwf/xjdHh0UX26fDhWcqkl2m44e+nz0ta6MvjKwBw/87IabLWsLZ4T5QHBZTnp7dK7wR/UX/GicfcGPbqov+FE+f+yPECYz718/ejA4fN/fYUnZlyxI+iXvdvclq/j79At+VC0e96M/fhHcaOVRxNtIdqyxdpXFwKZAQsxrHZnkbnioaNiur/BhXfoVPmXdX7FnaumD+DYt/QrvxdKvpKsHulvxUuFpXvooPlFdX/kj6wbiYu7DnvRBwj70JbfiAXJfIoO2v/jebX/Jvdv+EkG0/YUyZftLROX2l0iG7S+RDNtfIhm2v0Qob3+Jotnmg4eGzeMVHv7Kobf1V60hBqslyGC1BBmsliCDtSTIYLUEGayWIIPVEmSwWoIM1pQgg9USZMAbub/j8csETuyrahF+K7ZrULxQeb9+vMZu72AWIcA9Lt32ndXbvrN623dWb/vOWtu+s3rbd1Zv+87qbd9Zve07a277zupt31Hjlvd9mjWNfi8LYDxh7Vpjs+HLr/TLX6ROwLX7//y7f/c//zf/5eOVCvz0f/x//I//zf/0v3y8agGX+9V//98W//1/u2ziy3TMPr73sh93Khr0gMENvc2mWV5ksRuxQumAG/s//O//h/8D/H//5vHKB531//e/+9f/8//q//L//d/9l/+v/+L//HhNhLbH3/2f/u7/+h/+13/37/7uv0v+w3/xd/+3v/vv/u7/Dv/3//y7f/cf/jeP11JH7ghly34c11Yrz98f6Zywr9aMCUSP1Gv5atz2Qh0IE64X1y7SUFMzGvdsdJKzz7O8srUK+cnB4c5AB8RNGKcP9VAqcozaJQXLfx0K0MZ9yqOj54mpE6naMv42fEKITowQDkez8BPx2+v+NKVPdrZ1sqSZ3yDwliawLRp+qn/ZhSk5lPUpOwRSE/vG8CrLiqWjGy502IG1fFWBpw0KgHjpWt+Gdb/VL8O/W872yFfvR/xVZ0zAJZJmoW7hSGVNJv3c/3lHvi2paP1bM2C1M9CFsFTR8CORFmL0VA6EQV9uwr4dOINfatd9rZm7CL4812vVKv99kxbpLaXG7Q/mU9qWXbtRfQOQ3xKo6uxuFt9RPMG0T1u8YqMb/a7dwF2MuvEGYoYTTo5ZmsYYZivRTb0vSwktZeGvaDzzqfm97u9ueyO3Gv/t3iy+5zu74f421yOy/XuwRug9M0ONnTJ+a8t9pM9onoidowgspzFueDh299wv8HAs2b/wnOzqSOYHWKgr56Tjt3hk/kjLfJfWd/QcWIWdwf718WB3d3R0vb2/m40PB8cHx1l6fXB4uLu3l0mwAoPQmOQZqggZaui494vrk21R8a6ozgtVTAGR/NsXmZtTGHxv4L7dt/EMzxAkkQ0990Y+78FkFCXeTy5MpMJQCYe/NsKvb7TGlS8C9FH2galSlCluwlFVCYXHYPgxA8HtF1yjtrifkZ9upSMqY6cjVG/phCQBDAbYbW2kP+ztDNYVs2C4cIeoOHb3jwcH2/xfZhUHR8YTY/hMWj00lmtHxXs/OW1+LYLbkVnAInATBnm1g934q93PtHH2FnPA1EgLtbO1vYdvjRs5KW/LweaMNZxXpzkMzsqWW0zjX3b2tw8GR7IGctC8Tu142RQD0A0D58j4mqteeIAyjgsF/xNXel1lSGFEu8Yni542yanKK/lduXDtEFMJNYcVhr5UTmoQDTewlEMnvD4IHvENcGSNZlU+ciWnlNowtoZkRvKT/YPBwS/YnG99Ppxnn+eN7W+vRvPJeXFTqiK6NB8o6jMho+ZBpV17VMzifQIjjq+d2jPbuOiKNGKBYW/cbvzGbf01pozmZX+UVvOvd/cHB5wQO8LQfJHdpzbRAH9Uqlz/x0MXLBWR5Gp4pcJX6nJ35A993hISecc+RWKeiLk85me0D9wx0oyZJKo+NUu3lb+NL5Ap90c480eD46P91tWGqU+Y1LBxneGD1/6DyHnGm/oiq/PbIsEeqZV0cDKUScWnrMiF8POW3HtEyRkChagA6JBtSwSAvMASCbC7rgTA1cfF2h/sbbflIGYXZeealvxz9/fIUmEd2ancxntq0ZDfEC3OnIgXagIgyjUtTa1cfIF+BAm5/fj12T0+bq0PLAmIp3FjdWAkssk7FucQi4TrWVp8Q6gc6lkkCQHXhKvwzcFdiy9u2yC0e44Flx4UXbbBo5cN32XJou18yaIdthYNnklUbe1V+43+ObZqe+72zV2BmyVn1XVCaMkk+8zYIiy01bpq7K0gXczi52znMQs22II1o/f4IRSxW7Htg532NbTMCeGKXemfo0Bh9HoYXUXwHSTzk150mKPnWuBM7yGj9xK8iqSlHepxQ5DA5GX5XFWVSVNMq7e5gYBX3thb+y6bzAgkuCCK0OkCucIsSm8x/aH2g5VN534cfcF2wMcRFWJYLkIVYizf2JbswVf41osKuc+uWYu4mutWL6DI8WWA9gy2544L7gWpfcXUC3SPNjgwsCGm10byhqFD7PZWtImi8H4AsXu4tX2gX6MN2Kw/tdZ/b7+5AdvttSd/BvX6ophwYSenXuMGKXzvg34vucznnbfBZ16cDbgDEn2JFXi4v3O00grsmkCXAYhO0O+yFLm87efrGn7w6vuHu4frGH/oda80/gbbR8dgKP0p1t+g2/zb88YZ93qkVRfbmZSNdi3uM9kCfr6rhqP8cprO6Hd7UYMSjHWeOxxL0Sr5yYHsgI2UuA8Pf8HoGRpfP1bpYK3D/ASPB3roOpVUAnV9bqnhLAl0X6XZe1+VU988h/QA7vwNdsrA2j/NKJO5+tPYxPRyu0vuEn782Cs02Ft1hQ5XXqHGuD/qzTn+gW/O9s835x/DzYHnDejmRC8OfkoHeP17c7Dq2qyOP4Sj/ki3Zs1Aw/o35vD4T7ox2/9/fWP+/g863lkwxhBSf4fcR8GRidlfsLgXVZk8p+8/wvRarjf2D47XML3aY//93oK1wm2Hg72j7Z8Nrn8UagNnsO5NwpDaIy/RYLn/ApdotfEVDvtj2l572z/kHRoc7657hxiUsFywHa4l17C8dydtwvjX2Sx6xcHRYXSVG1LviwUKPtiFaoaUUdAikD/+LEX+gUoRwqU0B1IoWWM/7V7GGAhMfvfKxBO1vsaGGWNB/W0UJa7BS8AEOsmQER+jilgZsooS1VL9hC1tIwEw7FltUyuupQmMyUNq3g+p3h7md67raVlk3P5801apjvNPTB/1dY8a4cERm2Zljyg1s697KBj76SS/LU4SJI/Mql/0vvkqpyOQ1NXId++hUvhqk35O1/JTPs7KrcHhwd7O0f7hoIcEP/O7r3sHIPqSuwwJ5b/u7R7Af9DTriku9nUP/pvKprEAEhY8y4qve40/wAy2eArwL/AC+B53e9+cvntz8frs6ix58e70w5uzt1fPr87fvd1ILt59d/b+5YfXyMe9kVye47eot8DLd++Tt+/e9k/fvTh7fym1r+c3uIr/8V//Gyq2xUwk9u8mQBKyvEnGH0s1+WsY5sXOsyMkE5T9xwxold1lRY0RZdfoaOuvMU0xzMdfH+y4LkQ3Jb5c7xs5CzBHbEBEtaMujnyTUzXjPM2R6ggbaXHrociT9waH24PD1tOxLbmnH19BTKtHz6VXuCWSE6YnYaF+bBb7x3uD3dYsTl1NqctZELMU/GkSsObWOGLAZ9Y1yGDdQZqvnkj1+dpDbR90D6XNBJBGHfQq9W1a+7nH8edmZj+o60F7vlKlTwyPax+FaVll7ogZ+ZVMF9hZLBvdFcRhUc8XNzd4FJBmovhrXwR3peXJrQ5eFsfSHFYkJI6cCPDEyywiXXEUrEbmmWwARv5tN2Uv+zbl/n+4vHr3Jnl5fvb6xSVd7tN3b69ADmwkV89/++7tuze/S67O3r+5TJ6/fZF8uPR33kntltCW26HcxHXydJqlXJPuJ0mfbAjPmRHmmoOjm/ZsI9zP2rWxkIwRJYGxBa7SDQu6gziHbb7YnTB57+enp2eXl/Sy79+9phfnNZC3+8DdatoHZH97b/to7y/FCmluGCdK+Oo/xJAoNqOtRKSRxDb108J35YZVlKu5Tx82HPUOVVRS9XxAaG8YBvD6ZhV1d6fnMiEAnsEHsrlcexBuD8iLisf7pe+Eu8Fl7f60pckUNV6FfMt0zjYc5Y/LNTXemIlozc8mqA34eJC6RR3rtpV/X2faeMv8ToWueUvZzPdnr8+ffwsK6vLDxcW791d6Qjl5aMk8JLs1YxqC35eSU1x2KbcovVhvtfba3HqbiCQx4dOZmiLV74xz5GjGDSL7YlF57QgTw0QnHjxc8XE2yZE4+BYFm1xqJEIEY0GwShU/KnaVg0vqknt2KVIiD/R0CUHvr4ayUo5c0jkInoTtASPHUGBYkS1/JKTuul/+7neX59/97pUXmE+9qPhNXiPYl0mjn0V/rh101pkR9yE7dW37lv/mfTrOS75ey7/4wrFZXWYT2Jfl337pO7kt/+I5JlTNsjR2NE2q8nqBLaXwe31YL+xHx9Qf3CKK+Sniy/YCaRT8s81Tf3WJDCFZf5aPPmYdi342Bdtq+ezfLvD6Lv/OxR01kFz2lcuP8NbLv/Lh/evlX3gOZli5/Cu/Qet7+VfOtPE1gbWXf/e0nJQVL+CKFWCieen6ZTaEcWG85ReU8U624OSiJA6Z7z3e9Vlo5ohtHSjmBVP1Y2MlbGo4bmjlPpZLMFcJNkkkWnvQRqOqrGtbh8z9jIoHhnBgLb9gmxNPUDl5YD5xGRk117Unomfqd+5BiJ97MutAol28u7xKrn53ccZGiNgl52cdlgiI9nxCPdVirTWs0Z5nxowQkKhrLTCXi4YEwNSmVXSUGFNSb+EoqVHV0Vh4/0ivgaZCVpyGLCVqNDUDqEEyfzmkkpIeRXVdsotkXFzu6ddBcutb8lBMYhyO1CBAF9QTKgNvg7Qeqd2MYKm//XD++kUC2pacxOevwS+86toF6syUJTM9taPWqU2kkjE6OO0Le4rBfoKocJ2vcEM6W2HxfrHVMivvswosH1aicrjefHh9df76/O2rD/Ai78+ev/hdqDNrYZTCRpGtyIM5IYIeRvpymG9NQ86ToESB2noR7z8uOMGKb9gIoM0MrA/DH9OyOBAr7MwLXhxjaTliMhPFsMArVMI8e2k/p03tGmghtcX6DjaIvdrIrSWOc38Wrshuvrx6/i0s5FVr/bDLqzQATae4hdh6isNNdl6EgMZBxdvZcBbRWLY4J7Yo7jXWWqz7+02Y2l12W9YPNTHAxTypdwV4YK/KS/4KL+K7ReXIFOiI8C3Z397e2N7eTjz5Cp+bDYHpmvWqTQ8MLEbCBgyo2O+R2u+TayAGP4W/fETKNO1ox5W3G5aeEJ8vf2dCG6U7QqbAEUK3wNbcpLKq0sz8ttQWXY0QChIb0RH49fPG80AwP9SwQdfZDdKjsQASKpg43ebO3vE+823uhlRaP7ep+blNzc9taqJtatxt2VuD87DRoBVOVVYz773unVL56UnD7Zfm4eI8NVp7hpPY7biyqSejp7Or/KjkJZlm4tg/FwzfQgliTQPSjhHbrLAsIyKdS1v+Z/SBg+YDv7NtrKX9prTYddqtozMiSI80+TVStNAucxgj6LAef+6TWpcDpfk10lDBKlEUkJj00lveuU8Z6BekVYVXxLbbzEQL8gbmgEYx0xuWOJxGTKqMgx1KzD+JUOKSIA+lSYnNUOHZfQpzgVjK3fLZhoi48BMUw+SP6EuAQr1zDei5/7lK2pq8WP1d8MhvwehFc7KcLKbciJcth7BxZCyA3JG3CZ4unYjpbHqNGLbtda2UV+3zZvKhAEMMd2vDdmFOvb1JFoq1KwMjFUOXc7mF9rjxBrJ1WcP5wabVteHE9ETHMkFMnlzDuaLGz/g9S4YmhwxWh6NxzMiZ479vJm9x7veuR2Xj/UE03GdwVp5Kf1lp3ktbQXnmZxtJXfIb0Nh2XB4CgfpztATQE8jImEGfrrkropG186qvQJPUB6sRr+ydR9u41Z29qEkvE7UpJxFNH/VbXFimy81xv1y0eJyRdCT6Zu75gscdI1uBMSJNo6NTgKNbVst17AU2p63vWJ2+h3vCWtbY/jQLBqHzdTIdPfGOIqUyWrKRbkENiwcfLrOAoxmEd6+pRzOueBgVxw7Nk3HgdIivE3nfIlhuU/si7UztxRUxcY/fxGgzBh8xVVfcTPIR3QNaoshDymYzK3gXbczDB7fke4Hil/uet9ZESYnTRBIIJGIpH3tH1K9ef2su+YXL7bKupq1RMU0ri9SnN1zfgOf9W4In6N2lDiuxjek4qChznziubDwCsHgj33sISXtR0BhbhwJ/ztjp6Chuy1M758QU0B0dkpUiu0jqe+y4rQOqtZtec72OCJxxiYczMohcuktKIifvZm537apfahQEt3DDrM850TpiGS13mOPv4UIVT1RSIoPxODJynWH2TocSYotTvPAweTxOzdGXHXY6B1O0Whs0lJRpEWOHNEGHoScCtKbe1spAPUOR484guCbYV3kijYMDbWH5vBsez8rpInOCnzAuF9m60xlICA5m40bKNEULcPhl7KjT6XuBMqS+f/mNb9KN+QYwP6i9H2uR2sh78iBhaLgqrO3In1D6Z14Ty9UuA77ExUFTqSw22p/7bJGIb5e64g7M0ncieco6FoXdBk32Wey8YDaM28tnzixoywXHn01Jq7u0dlTqkdYDoQWFv3oL03pvDYT7/Ht8LFhS5ExJtJRHqairHqwMxg3T0LBAyAzt85PadX7nXF3c+t2OWr/O18Rsmhy2cCBe9l67lzwl9J1ILFpxIGTb7/EO4QaCr4oWCnfBo97W5f0wL4jeWvp3zOdVDiZOpiakG2YTlw1PlXQTjE+mdsdBesHDmupxecp/mjwM/4CNKTg4rVNY5O6X82oBH2SfKZExxKs5FDmi37gBhyWLnZ+0iLUwbxgCruGAFxmdnqE3BpE2I6s+UfMN/L3ztEd5NVpMpUH9CVdZ4sXiPoiO7r1TKj2pA5fWyNekd1rOHnpcB/xZDHM/aYqloCS5zsi5pffyxmogyjaTc3g0ujgYPhFXCR0FWgscC98UrD1xGERi87762YWX6g0lsF0EoVhMswoWxIWOZJ7xoI7QBaNG9u0YfEKUnDvmIOp264PZnFGrDr7h0/Qz0Z5TJg3jKPggp8BvJuktSZdP4CeXCzFH3Jo23RCw+l363vvw6nL7xh+yqcEwnNMT6wu7GjQPbdOWs4gaa7mhA0pySVyls8srxEwl4ObOFvPIQoiya95SXnH2EFiQUmdbhHKVs4oSFYF9w7J3CPJV/JshPeXps0ARwZQezFmUoNEku8Hbc5eTw3sLIpaMP1nmQJKiOZrfLqp4751dR0LfCkUEgRZewpysRQTqhVp3UTB5vgbO+Bi0TFi02OKdQHcdz/1XMwQBfE3tG3oUS+xzmTSM93VvcDLow/9t9xD6lI+/7tlQfF8Dyj3FH6bU0LAnMfG/9J/D6Uz7HLL5uodSEQGAaXdLkK+2ZtoWZNn0dmB6uycwO4kidX9BG3hELPOSUQdk1ploULv7LAovr5aeC5iL8W8qQkNXKFh3+MfStd6Due6dHHYsNcbpOteZP1y1yI0+IWut8D4egP2Tw6PuNcav7J8cwyJHnBN2RqmpCLujWSMy6q2SaVosqAG1Dz/EVDMalxIwIcvMhz2CUOwa0/xV+im9pLCBTEgukCY6ybcQ657cB6YXOyPQdXCv4iMewIgHJ7vbOz3jT7PrL/2mXJeyrrggRS/Sap6PFpM0yFo8jTqsoSwL7OKWUetM7fs7tuPHoZnkohTJc3HL4NxzeA4WJEtBA7MVZm1Vcl0zhJ3hjgWdlGB8sdXELkCTt4+wn+XLeAjLeHhyvOcvccpdV+GhsG4Z6FSQjOAzgu2CjEVzF6hGswX9BrW+aeFYp9cNLy0+9BEMDf83OPRjWxOClvFyhk2k7jbAucjgWjKw7RVFVyU+ymGD1g+JnILWVfXsitkcw2zg/7YHPRuVRLfuNutTLokbu+SFSXY1LEaxZVt5INTAy0cfbKMo2D45BlHgfRBjyGATGgn5MOYnTARgP1cMhHUkxlYMTooINdGRXib1Lzqe5zyrB+3v45xScqwL7LBT3IKIdfYo+QbLp4H6BP9nwHtAZxHbVvSMu+HWuleUJfYPB0HN/iV1PHv/ugF5yKinujREx2OLP8Izi1YtRkZWzGkX57RLFyQaUzPHvnaAVrLEClB9tAaIWvVhot+VKZyOy7N3cPE5N7tiBqi58H/wnnjbNZ17H0WExlL7GXP0zjNxSBcUI+5+aHh5xXyM0mquiIGr8GHICzA6bXYYRn4F21hcZ9Vt1G46XDuBFtxSMwGRohwzsUmJMDId7eTHDyi5NzS7xpr5AAc1cFyWP4g2CF2AzHo4j7mzyofj21bjft/yltY0yYy6qsAEJ+msbmQkPXT9wnRFzFm0ULq3e1nVSJt1/JKaKwrkcLygXorzhp2Onnseaeu465o4GQs9CLrYQWHJKATAjcvwaiFCI7UWxFPt6I1GDe27ChzyP56RWAizaApJ0LwC2Km59PEmZpam8zrm+KZDAki1IJpPbHSNXeY8gffjaFud3mTVCeZzJF0UeBiKysOwVIFvi5aZdGjDD8BowO4fVUlcSzphSljl9UfKoYp7yfn3AhYAJMkcW39tgtJke5kxeeTDMU2YCz5JHdvYrqXDaM3vS3EBXYwGfL70ljV06WICbkH47GqfRvtIRnjP0wfnSaY3mE4k60iWUd9SM/erc0eUhggHB9nG/bGf/jP6w5D/8EwuouioBZgsFenyCaU12et483D569cJicZKlESVgcdUyLOxII7MnAkCh/Dn4uZPsUaL3Vm56uLs115NtU4NL4A7LdzRTjD43W++NFD1bVWm4xGqlWaSSk9Jl1dw7X9JG47pSSkkYBC6IAA0qhAxgYRK0yWJSNSev4jvIr32FkVZyPlAKHyY9XVTp/57kwd/fPHBQ8arNo09S1d9IeRQ0fGjOWbvde5vHtiMRpffwMci+zzKsjHHzSnj4bQ/1vGhcJ/DXcO7eismeWohTfWoKr2uXaVDVHMEQtajmUBJaBWFaJvlYjEql/fXlsttmSryPrku6dUTpCRG3kHmfuPy3+ige0sHdbeHBRaeN1CAc7SB1cnCh3z27QrjaAh7eWjPpefx7uY+/Dh1IPtxGByH87D2E3EuFmJFITFsb+37Klt18eWDXN3DIXuQf2BBDWOyOXBGob8pRRX5cAjSI34dHByIGn6CV5XXnOxuiAnqb8TpsyCvG93R3eaOqnMX+pBkkgezsoYKesdTodWv3V5rlDE8e99dDHk3sUliUTueXGlVSjgB50H77Bwt67r3T9WX2AxdSQ0YChQsOcauf6n/FCNhTaCFanyVS76Mqo0PiIds8K1cXjKQD7RhHeiDpVLG2aed/h9lRTHTniwKXOeScais3MSAZme9oqKaqKiiMCtm8+BIdCEkDCY0RUzNnJ0IX+UoQC5Ctq9pocXtOw1etp4iI4idnV/H9XRsPTGTw4sX3EnyloPEomoaCjVJFxhcLGQRCGNKN3mFFUAF55GiF7ADjCfCMiZTUaxmZINO0uo268STOMWrbYYbB0Zyw6Ny5glW8UpHUuaOanupXArSnmlYsBHkHxCBc9jYWf/aJFZYB5O5EM5amkiTLybBSCayEEkez9FGFnkVeleAuz4C4CC8bdQuAUbsPFWtdF/K2Dw7tWvL/FLr30H022jmk4R6tjJoyJsWAeBBHQf2WLidcLO3u8t8yfsTNuNzUziuBERHcdDeEIwitVAGnHlL2PtGQYw7UFsSOypD/RV89aoFdtDr6lFtfAZNJIvFvGBKelTKOXz7/M3ZCZd1Dn/z/PWHsx4O3LN/iOzybgj5XWlFWNtjP/68nUfjmDu3SYsXaD/uyvIjN5G38O/r/HbIbLKYiB3O72ByiPryiHDuQhuf6+CRc/VAlzAwFVpvenow341iWHK5cGNATOY3rvU8vPc1iDVPz29Bz4KfjNUaxNRG87TepOgpGM/NIOevv1Fr6LZpET199tXW9TeU9r1ZMDCUbrSLpVxzqiBuTKwOkIkRFEuWRwCxTu5Tkr2dTY9XHfit0qRfnxGRHZhyH+FTUBy8dDdIsoHBRxdbVEiAyvIO/kwNiVTtgY6SKnSdqdO9hXssX1NyOIsANdMs3xsjhk4nMiMEF4sb2oQILqQxpIbTpxmKnbyeMnqW6ikau0vHrbNizCIY2nmOMCrDGAKNHSAgmu0+kvUEFsbCERgZziDy9qB613bT/nhPd6bD+mM+G3Jgx/2YG3rTSZdaU7qS9r18KJNjPOqlkr1DuS1WURn6Ms1S1nCtxmD+j+bSd/czHOoZfLYE3vSUDtC4dPvWQpsTZLoSDwt9uGeEUCNgRK4dQjzE5gpONa4pSFAHvF8d8e0QhJf5bUERQgTGx6O8vNMSTPdaHdODZCMWVO6NV0+gK3kRL+xY4wBeV+V9rRBfpIr/3sGhfAFXmtwtgnEV9hIIXWddx0ykjvX6oFGhjtVyuhTbIpkCtd4LBtAjfoXKCdsomp6LVyzZRrsUGEpb2FCGlD5RkQCrpimaEzlXpQguVZBjdP7y2gKl8MDmhUftelRr70KKD3qNnUIbzyCNCbxYZUgoDybsYpLVzRq/sMxauU9SkSA1Imxg06t0xCHX2jaIKrMWjkPL74s7PJPLchXfZU8+Zez2a8VCTC9mYwUjkbSA47tweQz4PjPOXz8Mq3KS9egr4FpgAh5Xgt6HESgP+AP+CL8aJuBgRxGHwWg+SUvIhITSPhgcNwLl1bPN5Pwm/GIwE/t9qiTBJF4hRUzXGVb0oOcLy4iSRkIHGopnZ9HhqDCmjV5pOeGiXZKXRAsjLxG3r7bXtq8UxI/cI5KbU/ZGVE2sOCnS71jXqJhEiRau7vNbsLevQR8/bMhKy7pyq4iK7SKu4lgquNhS4rjQm7JQ18nFDToMAXYpYrasy44EOVzTTyqkuGuF4Jt4mNrOc520vQdJIFpGmQV9Q1+CgXBONCgcpJJMEjU8VyW7jG72cbjXTeRYK1XIdkzpaoMkjppI11q3KI47IUCLMMMi6vwuVUanTXIMZk+6JkTuKS/pq7MrBPeA8CGpA+N+eP+6dvpKtcdTuARIF0CQoZJD5C2FhjUfpFw24HR+zJLn0/R7eN/L3WexHfqhN6hZ/Eqq5342/43zXqh1x+ZsUd+54hZn+fc6kVjxahy3tRJv+Qq9Vy7QHdaguefoodHiDZlb4Kst+oZabtwYBrbBl6ywFqCfOjBLABMQkgI2rkwJF86U81CSlUNigULLGH95RQjusZjiGFfkB20mF0z6BCshlrw6Tnmt88wJIjIqF1V6K2IQX7fTS4jIhFoK8dTDpbPxPi0+Jm9S+DPIhyC790zDgqBFUpczw8XwSfSsAGt0ITaGJCn8PicfztFezjpqx0MUQ1AKRNWeZDh0AkVqFbhz8txcpQRiZDFhDT9cFIxkk5SGFJZw0Be0OwMMxWT0aQ/OUZJzHcKx22ItqgmseaROWkStdEiQ07LGWrZRlxDT4bn3Z+0SHBTKd+vUOpbuAlnIxszCzAK5erS2DpV7DmvtkX5BsbJxcjuK8QhmCRcY61c67reOMq5g90gqcpWcPFAKGaNVNc0HSUgEtns8wXh9yXgk9fpRuDvRSw45XAUh5mpGxW1gaveLld/NoiLgX/C06P2NGwErfxcP1nyhmIUhlQBYwRXK0/Yxe0CPo04ccAskh3HITTuz1NafulGvFC9NXkbOJW/yKDLrxQgUPIMsIClcwj0yh0YrZrjrDEwxEMa6k6JzGEyz8uZ/pzaynjEp0BQ9mGs95AasM1i5pHoQTUO+ljSjWvOYnlv4kkzMu6IUrTW5jdSdWq6btKQX5y9ktRhvAvpiIVlKZ/Kbb7/6cP7CW+dYtIK5MgejYaHJo9WL6xmqDUK8l5TRTWvwAxP2csgATsWLbnqRLmVEwFxxWyrYjdQVsKtXRDAKpMgd5lo4q2QpHLeCSS7YnsNwRDmiulZxJE1YQqtJFQhG9Mb4Xnr9xCQPzHSh1yjEZ7L3Pyo2QzTg6Rom4BpyIuO6lxWB8d3mTUWeFNITnJAkTP18dOfgUOENka9FDrzoR9TW/vU1tiI1ngxa0tNSx07hhr6Hw4LicW38KMi78XCac8H9REuRIP8tUkzkHN10XaCRoWoL+2tj77bjrcH21vbxliZX4WX6JPzxX8qb/nV+22cLup8XppP0fn93C0QcBo/mX/eG1xMwlBx3k0B5v6mxuHrM3IpEFYjsqmyXjMgPnCCmBg0C6/yxMSaSwLEydxgEpjxslU1g46rEKOug5cKuiemhJrw85sGszJ2wjRIE2R1ppZrHXrNvkXQn1uOITuEcvKP6oJhQWxRzSaUPZ7NxoUmpDqqARoCdMyEIAycJpRagPCSc1ruuIl2uI+dIKYsGn3IjBIMNLZF8qwjtgmHgSq1psOzpUdU8mmYhTCW8DuHDMezAEr5PFnuIWA6iZ5SpCq4dizB2bzVzyBAbpOuqyw0u5aabyRdOETjyihkc8ZkiIGDNEYSNr6Y12inx9vY5WUIPUCUdvNcLephs4Y1nGFWMRITYQdUTV4CLTqLYtP29gQFtJi+ceQHaaT4Rj4qPSvv7YR18fIE7Wa/aNyAlnTXHumsfKUkZXcBUc76ANFKZ7zJTNrMbaJeDxwQ7LrN56w5hLFMTMeJAtnM47Upzx9xockpYY+uLlyge6B1vdbF9NtmnkflrVB6NQNWvn+Q3fdilPuHfn+gv2WLNiU8OC0Hd6uFvTG0qh9vR8tKqfmPrNLKAIqActsffzYILjHnHXLnrtVJBK+6H2AeLAAUELrVfSLZ23EvXjWiLjfbwKvQH+r4pzbaXFzc59o/tMbIb5aAs67IYMT9CoK+zckbVYeMMlA1Yyr8s77EudIODCXlN/G6IUzXBBOMyWz0FwnSUVcWXaIorXzNfcGxF7qUlCELxkVuOARS0lA4h9+O94+ghnzXmiagxJ6aDX3qiNFKp10xOdGG0RVuxUyb1IDlC+DUOJGopQvS3VkDUhT3QISC5mitpWgRRU5RF/zXKbJuM4IxT4NzLpHovPQUod5qGVU8n5e3q0It1JTqKO7zPS0nWODNM3AOuJ5iVniCIv0ZriJw+Fh3mjlHBbXBD40+bYoiBin9Y/0ey657bADzcfOLI5LnrgjCIRqU7vPxdlUqJDtx0pqsybFKSmtBidprTEK5RMR9i9QKiiP/9v3VVv/yW8bPHZCBipKjiaQVwqB5JRBV3zRkb/oW88CmA07sKvaEGrtiOqeXhIKHLuPey/xj9ckZZLCv5RUQ16ulduFWRHaIrub7EgUg1Y2WKPhwEvJ2zZhqWToLdmNxdW466iVJEjeoqllaqSWWTYFS4blkKXUWeOSOGXuQmHWVLNKvUZBIYhmDroDizTx1MShuO8Yz0Bof8bbMJH6JWCGY0z23J9+ktJO7FeUOp3Cfki5jD3EyCvu9vk0zqC9SFTxbYMOJVXjy8OT1rSmFW/AsOH6USK1rBtBcF6MIvFQklXNQBe0ZIGShEtih0ZBFamwi6ErY+QtQC5sgJHiIEEPkUI/wrH8p8NBlyrnw4uhlSpyZnFxTxL6EZFCYymtaaDSAJHgQM3yIT7zTwjCRneZ0ZJJRnOmLKqAZCXZvxGI+rIXQQVH2jfDwp2lfEV5AgtQBa4hx9cdgXD2qSyGBwjKSTsog3ae3HfL/yH0gpnI2lF93+5pF0/0IJrT3+drZ3sGC3vzNIto9P9g5P9g97YaPXo46OdNqe7OuD/f2/kkl87YfH1mMIA+mDyr6fIT22NH/HlmI3ohj6rW8M5KcICMCj0wf5X5oGezAbBCdpgzPbwAz+nfau0aivyogZGtEFOgVsvHYLljHDj6Qbn//RQfAp2dD2Y2zmh0bVMOiWpr3gGs/WTmv64/BTfQ35FFvYuemm3I8RztJQtkK/ddj6Fvr/CAUKp7I78E3kho1fSLTRPDb4tifTRshW5NuHTDldZBNtnshxdP0athSEPazSoXzNtMsb0GtSeg/dHN69w2M4jT9TVP9MUZ38TFHdRVFNLShjzTpjrR/3fOvHb+VrQe/H2HOiXSCPQB6+yOr8FgGaoKlyxFq4xnMbrmmbd7PUnrVNHMGr7sMX+uOqnGlRRoy7fnB0dHzA3PWDzYOuQhhKc3ziRkOWQ1DfmE+huoNEqia0C5GUQQAaNzlvmw04bnkHOLtYBQmMEYQW0WMqaF00btPMoMy1ciWVohWBSUeJqQbt2nvx+5fnQo7iBYqRcn3804sHOEdwby+JNEKkUhrEtjCXkFC7I571soIquadNxqjAnNSqXSoapkjSolY2NQyNxdhOQ59dN99Mirb+8jevBA+09BFUTFJa3APlVWjnBHAihVAi+9QpU9JAqoGPcqNSUBO7phi94/KuPF1qTjGWZWeuDl5q9ZzdNcPIuoCkvQIUb4XP0+rXDHA99IZCuyioT3TU5hipmsGUUWbPPTNKbnI0JkVjBnv+q+e/VU8ia8iEuc9nE0WVrKz4AeS+N185MkJIHuoK62RKjv7DuTAUa8Z5RJ6lx8ZwmzGTATPrp7cp+omCbZnNHwpDbBezNzqnabSScybPC2IDkkDViCsrSyaPouRsVzmc+J94ClKmKw1kB+8pmEsZgRjuMLy28gK5WaGHwMzzLr5FEGC+C3gJGtXFtt6VYvmwPtQokBJZ9KmIOvKhiq5XQ52xwBlgyX2DG/aiKon9L/k2rRx64RQDTZRq5Nd/XPmZrTXb39ynp4Jz/CkmdvfbVdGu1rGZyIxude7FUu0lPi2pqKsqQK4If163dLV0iJZk3F8DvtPiDCtonDIFJI2EjtwnFpSBDp4Ks+5g8QgHBSN/rQE9PTRLrXw+ieCscJlbKt8pK7vO1w+u2RlDPU0JM3y2wKKh71XC9epqBJOxJFTUbuqBgRaMffj+IUHfx7jZK6vwNCzC4J/IcsE2Z5Vtn3t6eem5pNoMimiEZGNviX938S2yMFQC/6H+WNGLY8GoTqafMdKD+MnHt1m8NjMgEGCUye2tkG0XjhVGoIS6jXIlWbJ3H9DOi4cxjf3Ng0QaekaJyaNPxKjBfVqN6+izUbhordI0rQjRSXWw3Bua8u+nTsN1SgzHHsXLqFaKlRbi7VL9Abh83INcyqNcPpGQxEHgvusmqQYzdH3W5qKaMFz4eEk34c2Y74+y7Y/j4FwJv5I8AHrHMhonqLlMxPfhiwyb23ZxDoIdeQdvDiN1ESmbUDWKgeCVCtlULTUSGLaaxvYNzt1CX7JqbB/ddR/gtFEOVgO8V9l4mCAmyCkOabgCXoyoBOxwK5r3Kbi5cqMedw1fgD+7YeGy3Mjk8yirZsutSMoe26iEITR3SYq2fONue2ytE+WJSLTaeOuT7DYdPVDB7g0I55XT6CourQNMoImAryKsXTli+0EqdAJaozJuKNut7nLlfAYvrdHznmpjv9bQTTKSRuZiTI47S68vIeYNCv+EOx/OCTY+9hqDDwLnAlcsZ3uGzxegF1PEjYROJwmPv0nHdOtYVG8wNxEGjVmsV+XaqhrnqU/jo6cm5A83hlEQ63nb1ONaxC6sGb93TCFpcG1xWyuKk59YN1lwzOnqpBFJw9AJLnQobI35amMIh9FBOqQVYWN9MtNYnWoKSnSm0/zEebGFoXCctO5W2mS6hGyr/OPQKF3vl/inX0pino1zWRKeBBEsp6CdZ3cdz7ssuRMlZnk6DSRaoolebzfhWA4OZYmXZPEihUGEK8QDPFvX6wz7SFLM5aS5WehQ6rnUoGRtoxJ6IGd5NmLYJk74k14qB+SLbZedU3Ds1pkGo/mIRBFxu+h9OGBwVGahbuJlncKgE6/AUfdFDWrfOstMBU3C0FsjzGJAJ7r6Ka4lWOt4LTlUS6VHu34/ds6DRzhvzTPp4ZMmpVZBzkDnIObXtKkmp3/JMzWnoov7LSMYxa9F+3a0YMmFdFhzBxVb7pFYKKIFDZpdQAwkoVvoUzS1AgChhLa6Gw413J+G+kbyXymcl8CYcQu63Z6WS/Xh+SvGb72q8rHMHGOabC2RtdUlmCRmHGrW9968thqM3NClM9L9sSFSeAi89ricopfOwI3fdNDNReJZU8911PCsuLRZIpvon6zebFlZLFqYlpwKKpJjF0+4fojjULsfGMAXMZdK2+piMGu2YAs3VPUJhsFUh3E47L403o4/I5zRoUhq5rggyMXpdHODl9DSQnP2fGceazJ7eqm13itIhhauwgTRuhSl01hJ7dgvtcso5rga6iSijXbb9q0ZWB4JUhGvrxYdM5Ss8u0ec3cqJmU563iLTxhkGaG1PLHGsgfdd0SoOh7H1wHZPZDEyPFYeFFkBBDqJjiu8hOJHHRdHT89idc4mF94dbp+r7vlzIIbdTtZCKpMoZcg4htpydX5puAeUJRMSv+YFkz7hFKIEr/mxVZ0m7spytag7ZT+j43CuJ+atjN4n24mrqb6ZctCugQ9XhV/+K07AWKjYLlY9RBXWcFPO9aBE8z13+RKJPyotB/ZU8EVMf3XfIJISE7wxNYeROcoVe5n08m/4FrcXjvJvnIiEoQN1ha/douHcEIlg03XmiK+hf7Q4uUIOdbZYTe6hIuZkFt0n0Z/gVQmwLyl9WI7OGBMB+vZd9101FIIMbQUEz6OzBbtmnlX32khrPLsNTONDICTPo/kpWkyTlM+YT1pPcoKjH2vHByLW5SEhg+Qo5HoXd5Ro0GsEnCgZFWoVHOfkm8K5k+PokF1cFnkynOijqNXqSrCjkxfODW7ppyeL3xDX6L0MTSgqis5K8xw6kx8MuSAiqZ92/vA+2aDj8axNOuNChZ/RH86XePQtIdqWmOeExuLk/4FM1xPtSEvb4PrgLMqw/uY4TQaLkH4JiPfWk8fpQHY3Bz/DSHxVinBWTZ6u5VPNrURTPhLeYOSCCKrXOtpmIFHhYuAaz1wREVUeKNWBxFl0cKdDU6DzRBKOeliIixypK17X33d00x1rbfGJx3Wm0P3YfSZSy/i1zBeWyO8QZh68iL7hDWK3Kcc64Ma9orYNMwCgGgx+isfU4lkfpyXM5UB00zJlNB8cEaPUsLlBZN1Nmk+u+YoW6kGFvGv+NugASnOPGh8xksOPgEIe/hCKbDR8PWcPHaRZUMP/YPNxaIXbGheFsP1IZz7hfkxpiG/aAhCTlkqKkhkb0pNebTINBsbA3jlMKKfxWzn5znrhmdAXE+ILFz5sFdUlC7xLSrXwiLXW79oTQuFqfg4IY5xLcetjAv6JbIDzKxP/wKB4zPbeD3OQvyrSybZCboYuanJsZNqjfAmrDUVE9VgOjMywjBphr3PVI42dJwRgpMJ3gcx7Whn1hoWHwNLb9FGqCNaZAWOIy1oPtrZ1LmZlyWOIp28Lc9q4S00TqHu2UoclgfQiLWtruVDkgY0/YlQUYrQazMtK22bTeRqltbdWYnRXmiYcYlL1w3CWJbDEPIPjPN1hAfWdGR8AFlEvXcDsKX4NCdYrpALdT87YKrEBMvkU1ARqfF8jWuEUQ+0N8ga9L/o8AJcfTg+4dzifLr0eUcww6ncQL7Y138jHmLoCC1TyGaCUsHixa0v1FoWy9YUPRwxlvBVee9PVTs4EABgqAork14pIhm7k4TBIezMg7dIlYlkxhOlCPsMaxfYRawdEM4M04ieC3IDJH38xpqBFAsS9NBwde1L48I4saas8jEE2ehS2NvXDEyay2PxAHfKlvZtliLRzreduCH3dnKQxCihFo2xIyhgKyFgsKvQ8cbX5fhBqpyE4tkvVwsPLOaA67WuYcFaKGOXiJFINMN4iUH8LncYVmlxEzt8jyJjxx27xqhN4SxRMzjqW5NenJdg16BY8T0nvbfpoirz+Kt2je5bx7Q6K63dp1eDyk2jOGyh0F56u86MELh+8HBnw9IshBxUIkotafB4jbOZLJvr6uwemisbuUwtPgdEkDUsqEAryWtcP8hxIjsWfGBuvEZHOdoSpz3KaaS02mUDDQTbYFAYlIJXfd0R9W57luQmElZvJu5j25d47NPM9nnJFLkSO/D/dUhkCk7LMnNhNpGa1MpElY39DeTVaMs3xRvgab6c56OPD8lr218onMkP1ythEHut4HyHedKWz3z9QNktMeTCDkn4pqUQVU2yz2gJdNkQUtHrVLUIsWmo78Nw8TJVg9VbKMmDjMi4nEfxBV3ZIbRYMuphXGv7Hqqxl9J6bm9M5V92CztgMG1zBKOmfGq4K3fCtPgcKMi/X+PnQVrEhRZ1la5NGrprmSSyhKoAy0eJpnbSUojLHhGchqh1Y3xWr0RjJzGOB+OYb6CP6RX5ORsC3peDwkS71qWKg7nwkcHM/RMj38dvLxnBGzKdY/lBfge/WFxj/dY4K7sGM3Bu2CK+gMJM3kilRc9wcIHLCAozltEzwY/uhzU1TYPyh7w1cMvvpJnVn/YgCuYtf4wBaRi7p/ZeKTd89JbmcjBVS7PXreSp+pXXzCsCTxb6zOt50fdNicnow3LE7uf7KxFFDlIs8FOZi4IxLaBC7s/GfaRiF67lIO5JDfbEwCkr0uJuMxoSpxOo1ZW57cKt+26jHq6A7goPIBraXZ+oLRaFZnRGmJfCDZhAZpwZd8q8Yx4Vbetg87qiHmidfZ9VpfPBPXNmM9XdsVFSmBrU/8FVqBx1qTu83PsE08JlmAOOdRxbVjN0cYbFTNQNAm3CCdPCCmSqle400j3iVSyvZtUMlyT7PfV0R5Fq9E2CpTeN2CTidP0QSVyvV97R9eTfoFw39ZfMMueTlyT31wNORUWZdspQqnUSki7HXzfODy3VyulLbipVBCx1A8BsuMNIrVpom+qK4FFENi8NlqxeAAnV8jpgrJO88QCbts6Nb6sfX9ZrwTeix85frDbEkEKJgooevKAmVDM1uOZiWoyaVxQBj2Azi22abDP13WqwLxca+yoOJ3QjbjNJEFuzHA3BEgnTGJ/1kLwqy1uC1RRzH5onppdxS0BdP+j5icqOLix30H1MqGMonzkhKdvQfRHdSO9me3OuVXAoROZGJQtxsuoFPqqrT7nhbGuhtBB06pMW6br1GZwHVmccXs1VpKhaJbDAzFFFeHCpDT2wt7qGdgjehxo5KPNgqjw/jVB1sLNfUu5ja9H4pXZ8iX/w9G3z9LCPEzkVLXlkv0PdFBQhqHB9ag7RCK5smNBKDaoAQ8vIfqrZ3rpRjGKs+0i3BjvBRmoL4+Y1s4czYIlOiLSrzxwH822OVKwswzzFei3xF8WW4K/DkdtA6b7qHXq1h3ouKFpedLpIjWO59EmBxZu27FxfY/97yp1xUk6zIXmc7j5i+tlcJ12ttjTj+L/rMOHC+SGWVHKF3QTwjftnaslGVTmbBbAMJ1tvQs75dn6lu7+iIzPn+QcAgkXB3amKsWHwNR1tCOTi4pGmE4TfHy2ztGZtLK7fPUHmItQJOjlMslEpYcg1Ms6sTQEsHYE2N8QDt4LokmS+zoJqYip3wHKrT+k4jQiK7e7gg2V7pAPv9H5DFny7wp00ZZTc+FftQoL3UXiDGtCrldAJQlon8q/PiTUgVkALtRLqylwY48ZhGmwer7XwmZByh6ACjm87Y4hkkjzaGwH6jI6pMHWin4i0aymS589/mzBZnEvnUU0J5fOwKsfm9CRUIGeaA8JR7SZlYXRuIjEDl9eEqT24PnGODN8tkOMSiQzSUPUudqgtuiyqSQe/zm4wlsoz2oUTG1+s9qM1JI2EflyCFpcEAvdCv0hWUXm3A3YMzhavTBXyCxnyE2/0XmdIv7kffYUV3Fwe4FvHEL4rTIcGawfXbqe2HjRW5L7GCPbINBp5d5AV7p/0iODpUVyFO/3tQX9nPxnsnexvnwx2Qq7C/cEqrsLBzs7u4d6u4yt0M/hCusLtx9EVxjm3fiYu/IdMXDjY21PiwjVCOj8RQRkxxe3Ay8EVH/dVIvb5EXG+uF3PF0cuTIMurvthUdK4A/j6WVrnjkt/g6kpyBrnlqsBAs5bYFzbGqWGGxzvHjI13A6Sr+20PJumg2kR3Pao1do25RrNpYJgNLVwRT/4kniEurfTNDR2h8+mBs1pOoMtT9eqU1PJTgVlWhZVWv5CwW0xjvZ1hydJ09pemsiUhSeuENOHYOQphMdZSs6eUNs2qLdvq9lixmW6D6pPb7O5PHe8AbYVOWbMZ78mLMsQiEQGZEZn0MR0PWRBHmjUVPtoO5GKtlUfbSBu1hpBMv0p0zCUQwI19vA8h2p2oZ/Inocn0JvpcgIVJ6ltHdxFn9dLo1mUrmS2LrVXOI00rT1O1luMv1KTURphhp/wIVxcSz+QhMoJDXCtBbfsii46BrE/nzmZJjR/NnOyBUF/NpNaYDsBdDew145pwIo41SwbN4vcbGsa5K+Tv1DxL+dqOYwMmmoOzsiSgR2B60JAM8JHM8sr3yfSX6Ggf5f7rfiA9Cuty4tKYEOsHSQBpF6pwTac8vIGsXaWFC6lv4TrKbDAaYvmmochOj0OWwlNPWotejECoWZGz7vWf5RskpguweXQOSx8oNNRQyYGqbx6ZiTJ7bxIxqOyFN3RDJ8zmAsUu3CeriigtkHqjINarm6Qw+szjy9k6BfG2zMkwR9LzE+tFLAJF2gFccu7NI6sadZuax7ZFcZGW2O4KygRlLzg2MWcCqa6sq+xwj1FGIRXphTarYBcZQn7IOr24+5aals0h//NIWguoNAIg+eCi6aQaanMiTd+rDmtxH8ZtvzUnlekln15xh8WeYUWAT0B/2QQzDEzxq4lFxDg9ydkrLixzN2TT/+wKOcdJtrRD0SitQqsjr9pR95xBofRGZwk7omS36C+EXlI42O/r2fINx0I46c1dWzlY3r64i1xtXx3gZ4vtsbGX/4qm8/Af30We3p80xutDfOgIVHsMfQrKzLhLoHlxrnfbCy994jmB0weIkXGWx0BwZ+wLEH7u9GeShue4bOlLrZ2Z43Y99BWcklY7k9b86mNjcOnh2QI2W90Ayuw4EvblywiVk5g1DG2fSs8Pw51zeIMYM7k3vOczHbqzMYwUKsrm2sVG2U0KQuBoUx9zI27e6n7xCFh6iXauA72SZoiyZ1ok2JfbfYrTYR88pZcEip9nOdT6tmKuUtqHr3iGIE8d5tCQTNe3ei8PtRCq1yrhqHeKcj5LlJFm2vydCWU77OnpU/hBJevxZItA4YWBLNLu/ip1aDOMnMFq4soufNJSP9aiPQVb13ygMqrEatYkaf0dM16cJZuF1OhWhY9pNrKcf7o9lPoIELYp9loSecQfeJdyVx7vnTjw7l/IqnFYHmiC7uE0yPuEpWsBf0g8ef+BCQSjWQKw7Y857PYymp8S7WLob5eiSLxJeXUmslvm2tUICEP7lZ2o2ZWiP1Pm/mxwKwMFi0OKDpxiQC6R9yBNDdtHUvpOqqxEeZcd/Zt9FVPTLIQQdpPqHGysbuDgNTY9QZF+c/dqMl4eGkurH243P7ATrJ9LCM/EcBk7wPSXxcPoWHBYtea9ayB0IdxsSbiZOJoF5EOUU3/DT49es+ZsVxDNHhx/F3Hv3T0xEL5gV/BD2LPtXeuKZE8QtWcmbhHc2JiOhyqs4vZx93tY+inxyAUhazfKeV+vHxMSNkcb3KP7/UQqUJ6aro3Bh7SXHuNRqwzaTMfPcjL+jzE7OoOF8rlaOhf+BIuq4W3Fo9sptTsVAI2lna29qIWJRGDwV9JWSzh1lF314fzdEqTzIhhxVyR6lPOgai57Drfao4rNObDYGAnYKiVpCK9QAaUb4psG7+AjRsb4ktqpLwfYPuivPEgZn6j2lZNZRH6OXM+mtzXl3Q2FM1E5ftN52tFiQza9NxTWWLzdPIiS7DfdjO+vBIFH9fyGTgJbz08x5x1x0USrheB5quLaFN2m9IvVHYKBpfjJ9fZxF3oRy5hI8zMBjg/8UZcThv65+bQdcle47hNAUb08C4wQFUmWWeZoZEFzu70kRkrBLxj/0iX1I9gH2dRT21Yy4YfrSux+ogpqHL25grH/joEoSVeCA5YR/cYxkUQKT4cL1vzjGdEgzsEBqEdJGOuRernUWOhmR1an9TfExyLDTghAtCi4jgSf8sLBuoHsJE+u0Ck1G3rDBXoQEdLTiHCprFxEfiv/MfcYXMURRqnqIpEJbGkmIg5wrdLA41tN8TGZYn5AKVgf1beZ8430hq4++wazanuMDFxc5n+BYqKJMHKbFshsNWXubeg31EbzISSWPFRb/AAE+wAk8Gpa8mGCPlHcAZbLsSqGEujxFU3mTMoBN2cUy92OQ+E77R1sJ2ruoR6ICfE7zh3w/FTfTqOJcG0HKeTjucb5lf2DKKLJWjUKJxI0VshNCxYzJbfxOOboDkaQobqxHyCcKxybHuysmugSPqUC5BKJqWpOpD0ErDTaE2QXrEab3dzwJe9rO6b7QX4Sb4aJp8r/NcEFtwrTNM8CKBw6hntTYk2sa5hYi61mU5fvI0uYGdblyVtY8xLMR83BpKxRM6mFOtRigFM8Oaz7v5TUaCAM2UUgNvO9+92PSusKPIwaA0KaxScaE1Q2iL0YM7FdXwI8qrpBQbr1Ukq3rlepqtF6g6HD60bc5YVWCZhZPUY4NL0czDDo35ZwwXnQ2PATbSGbFlnQXjakUVo7U5n9iZAX3YPsBEBIke0/gbzFas4xl/WGOsSmcpBjEl5e8urQ59HN6Jl4J9SxrgBGSS1aQtjqasLu6sCU9j8i3/al3bAPl+h9pOTftLVuNN8DiLpzcTdONVIKxUK03cKEOgkSVFAfV8WayVwWNY0A+ClPhjDmA7AQLDSRa4UOtxqkdhNV4SF+K7IWJL0sDSXzdV5HIwPGWzeMINNSJeeB0Q3omaihX/2HMQNOtti4duynIOFkM6SvW7TSmOBPoYlq7CK/CaM/OIhQanSODFBryUDyaYugt7phMNYpaMl1LxqCOFM2VYBuSmx61rwFL5hc3qTzSMm8oY2+yuytrW83h5KADIgtmJ3v50ifKEFrNO8IH5dYuLyDVFR/Y8QuFaOxddNru5zLKQoZ1xZQ3FJ36cOvtkmaNhpWwJRDvoF96s1yiSwZyRCTcwF1nOy5TltGcAjievgvtfIoAfPCx2w6BTWGbLxcpy6R6e4geBe/i4bpK6Js0KdZ/nthqQgJoTh3NCUO/krFGH88P51zMMWa4BzKi7ETtWQ/k4I/AebWyamlbCzt4krH68kLxfdHzb6dRNblvwqZLwUTUrptsLVckLApRKzRxfOhUKEIsdm57sH1J49VHPlI5eo1PHVG9UmJPzYpHbNct/E3bB2fVdMwXiGIW9c4Hf1HcpA/TitY0jbiXD+w9Xpyil897vL8+9+98qeZgYRONDO2nGn4Lktveuf7KwhysGt/Xxt1WGjZFQIAM/csLKxrNyFLUzbQlpo+IzOLQVy5MqwB7qSnz2ydYHBFRUXZaA7XMOvB079pm5H/U/WGllDZ1y8iJwjnOmbsiCmO0BOLtsXHe7tyqGwLNy436hZFWDqYgkBTZNkCbX1bUW2Wgb+A8r/ZcNxr2wvFyRuR++aTh2mlE8A+4FYPj7JRy74H4b68HHJCAwA9LDqWbaGxe3rCajFgV54RZ5JDGQkGHr1xgzHn2LZgh6HKoAfMXwYqjf09fWCIBZOHhNWiqn91tpPsiMn5TWy87jc6+e566WL1oZbTrfsfGpzcku9bR+3Nz4UVXaLQKdKJOkbGxvS0MBlNl/MKKdHoAhcSIqMlEVUvXDWNUo1swP+YzxDvrz+xPMysiJRe1XMoSVGUBRu5vduXHKwIUWgRLKY3Vbp2OCwhLBb2663+PGDF+vIUDc8CZsMbdUYwWPQm2OZQ35jWLSN7cz/yrYyX17rcnDSY8T6o4pdBv3t4/5gNxnsnmwfnmzvNYpdtlcWuxwf7xy4Uhc/gZ+m1mVZwcDPFS//oCteto+14uUnKrugcpbBji+emqazOl7GsuPLWN7Ql4IqlvYzotUru/s7rnxFef4QYcCA2hvLLo7vICwPON4mzHicf+IK36976YSivvi/fYEa95KqnGTyUe8b81uS38+/x6Jl+k+E+lIK8qs0uauym697W3+N4nyYj78+OtrdGwz+EiVmH7m4yGzvz+/gVt3ewT+zvn3NPkvrXjLHYOT8697wGgyRjz20bb7uFWC4YfoEdqfimGnV+0Ye6mwB88pfbaXfiAn1gKaOpC6e1BLL8rWh2PEI/XmvRnE2sLWwRN/ESnyOj3YGWuGzHVbZxI8ajeWL6pF7g+hrQIFLWSOtqjYwmqbVxwABpV+yxqtRJtuRkhqeAr5IhPe10SdPxuuM1fq8GKd2PPMwBwzgZRRDJFaS6YUFJ5NCUtF5t+DC4pgaXxnlmqCyJF5/wyccLHsKDMjKSUwYjNWtCfoM+U3ISk9sNF2vGNi5IYKxkOSV+KRCSCJOWuR5rP8bCRuBtuodvHKQgc6W15beG6ePq3UozKPIp+6MjLJwS6xsSfW8nM2ysfauEIiiex3cL2HliQzsO1PPOKhvU/b1ytbXr+BoFOCV3wo0Qa7g65QNv9fM0DXOrhe3m3CdQvuSSJLGbXLYyxmmK+42kpdwiUbwT2L+zTBowGhY5RVv/hDr/tmEVpcmFp7BVkAgn4qb/Hbz8zSWJ9Mb6ZoNFM65U2oWLsfQm5rXEtshxF+IY78ULMPzi3NyOBIUiPM5dzPHHA2cMTSop+nnzpKqcgT6RwpywAT6vkEVyPOFazPrL6J80c0j4zkyXcsEFBHoa2HhxBMEL2Y1lfRgjDlLCeTly8HoKxZ6GlzzHwrlHsMGkaHbvAAOFgCXi868J0yPTjAOgpcudkKr4noVvGiMZjq3BbN9nX7/4IJXeJ1gwyms5++I4G/xqEpY0kbDnlKfyxJh97DOeFwQOp1KyL8OgfLvxTVzl4ASCeqm520pkaXVJM8qzc5vCNKlQhUJK1ZkjOdgf1fy7JFXDdaxw1sjNUT1Od4NJUEgZLLE0VnymfIsYqJerqvyvlbGlO8uov3QcOzufP0PAc0NhlqCAiZ1xX0Q8hq3oEYzybGFaNZC/P4OKnaFRdP7Y6OwDKd2enmJ+9g4ftEfMp0HyMoHThSBFfv8PmMcWusJjE2d4lkVi1/iLJG71/tPS5Byk+yTYKYwOcHCpielDHw4G6kFWomxOfgulCqeAD3ML1QfIxKjFLH0qMRaqEwzI/8jfD2OHlHYfiYxQpISosOsdSX90yTSE9CDY9t42w4segg6MvJwhShp7aAvb1gWX5SzD7Pa1Qx+d/FcUq1snJkyv+AlzwpeOngBhQW57Xspze+UAaWTE80iBUVfRYj1RGlgIEgi7BuEtiQLlFWSfFtC/TqhB1BoT8E+ElLDIKAP3so0/95Rc7LAi5T4gI5HRXnz4OXsS2rHS7jLmTPSBfeDdK749Aybgt+U3+UFuJrRbRIgAAjCsrj9RjrM1V9tyR/g234HX8sF4H5ugeFLoTR673uMC3rAMEvYQC3akwVSO5jWX/z/2vvW5UaOK83f4wi/Qw1+WK0xQRK8Ny17ou+i3a3mNrslOzY2GEWgSJYaRGFQQLMphyLmHfbXRuxG+Fn8KPMkm+eaJ7MyAVCW2uMZ+YdDRAN5z5Pn8p3v/ML9hwzGTTwzkncnUj39phJWPihn30peIrj3LhetAk5KJYTTQjK8n7RnpDPBkGfklCdBgWNMkARi6qJbdmKponPhdG9IZPc5epIowC7NB4BJb/V++esY6OHwFqT2P0LVyCsQvVrulZo6Kc4EQ4LJwweEKTYpvR0Oa/mtU6Do03h2WGIlUVkDPWfWJJXu+yzcssSpaIXd46h5seXuEFN5AgYQYmYgGzig3tnHhPqKS8B8dr4+2dUVKZS+o3c/6CT6qDY5/su2XdxonTvch5MRUywuTXSdjIJqw52ZkWmCShDEOEdVNTX5muiLhPZJnU+Q+L6BAAJSz2J1J1arYHHOaXHOZXG8eqhp48UDTASv56osjE1tSOv+ADWMakajMAiP8itwy1aQzcRJT1BaABwUtyWVVoe+biBZ1Nlk+Oy+uite6rPLIFCKtebUStGdYwtxsHl0HEJG9RI9jS8RiPWoLh2d+nM49edy6s8hzdDJ4CDDfkPjukyGjLXBCMeqv0yusRGRmL5S7Bfvb2I6UdKnLj3OT8trgAHi7A+EyOJ/hykJor1kbSbG33FZQvDFoRAd1+L6ee4kAbkDoJwTswKzSepG823rjMTmfV0lE+S+ISnsFFQE4YwZ4Aq1FIDkrC94cwCPYDlm4adX9QecHJgKhar7hhYYtDvDTo9z4tY1MXaM6ChD49n/eBmlA5DlSVgh8Zwgz+RVw+Q2gVcBwGcVULvXcHzH5IpBD0rx9rpuCxL1uFhab7U1tnjLwEBSgSBuMvH2rrxCKSGadgjdUpCOZZ3nKyb5lmJ/7jiSvBx0f+BlTymCGTWq0xo24IEaLMicnejMzV+B3b2gx0R7DZp7TVpRoL3+/iwoJmFID49ysSL/4yQa2eIvg+Y65ss7c8qjkmiKczE2KkNjU70G1RWCTvPqckehtdSRhJRwK8kUdV6+eRCCnOcQ5hb0noGD8r6djKy6YrtvclvoR+8pylX4GZgMed00kKvfVY9RDs+5umnKbKzFwevsjLp8+hgUoFd3IACEv+8wWxc6XXA+7I+zWzxmlAoi8Vc1H5F0LicobppR7eaUKld1lMv2CnU/BZ2C255XSYOuc6G+IP70OuXRGQQOp4jpNoIbydlxd5pdx6GnmH79agFFnjNNRCoq5VSMCNtqzLloHAHHrogiKzGiXEGmOFCAZ6J8oTU2wkDEsFlMKVUpCeJOdZ9qKA8Dp4BQbOzQZhzmBc7Ts+xvOvIi5R1eLqTJiDGxlMjoDeUGX6Mla0pvKJBDQ6xwAs9ie4OEsKEcZ6BMbf1Pta1TGkw0y2h7ew35pAiurzC1gfHErTxn3p3SlU9hsgpdotjvM6rLcXOl2UK3eJuDtLub8r3xrnKxJjqJmsRGVZJXImBEKZ2S6tZxYqCoFCyh6nJY9ZsrvQuJi4g9rM1MRENItf3l27enZyvGwXXbeuT+c4LOrwkGiVIKZU+5FcoWHRNnZy9t1jdeRZKK4jxHMEY5vgU2795XTXGCBETPoXBTb01l/pAuFnj/ABZUUuv1dywxTr96oYb5MJ08FMKDiOOE4KDopeQ4hvd2ai4tUL5SEsx1fYU1APGEIF23O9+vv+LAELZF7Yb9P63cLg/xtkIOcn8xQaeEQqzCb3/tHq4GnEdwl1izxHQV7wBpBYKJG4O+oMsyMob/MEGEKsz42N/HqGAgaouwuO6QweUbENmLVHpnOJT6Dl2veEU3iy+bW7AvN9zWFug+4PTppmEQAWFX3bGkNYcJYI9S0hPbsZlFG/R17Z8ouTGCD9XYkrKi836SrBg3RFB1HwHxxtkjQ2Lk6b1B7764fUUuiESY1EO3Ju+SYjpL2x91Lf7dHP/82dcvADJu1EkTmOZi1mSEO3lMvqwKoRioc8B3T+BQTJxkefbRnciZG/FgkOmM4w50lzjer1HOeqLvAkdnyCGFx1Ko0CObJ+BW8ac2/Rabq04CKW3Fskr2gO4eS9uWhNznSbmoKiGJWvhmcgShOIS5x6EhYQBClgd0RsxvMZaLtyMGfgfCWj0cKQUwl9Y7CTI63RH2xeyhbhsYf4wMZ4eE8SRwJMWGNZ53AyNyLL1b4pIcmN1KmVIKM57eivYEmx/EI4nvLtAzqOCGlH6oIxITave64kpEcLaQstoUfMZnmZVtdhG081lVwYZESNSORkT5VkFsQ1faav34Bum+kvuFicpDW2WlUqaX7t0Je6f+49//bxRv+o9//3/IFQWAXwg6yFVElEyLjgnA9AxxyuyRSbx3nBokencwIQwocRytDEKadt96jzCblH/U41OZOMjZhNaEruGPNq2+HRZeYwiie1Y/umNmhKuj9zDZX/l5c6bOgqtprrKTY/2e8n8C+sRcHTuIxIskZIqvGFdAXMkrAOKUrc3OKfSWKcGVjDltZdApN4kgpEPASQB5vWEfiRr5+i+kTpxvMHmg30PRAAzmwhrG0yJ0INpmfXBrle5BzxACmLfhWMJh7mNnJsDaQEyXIQLroHMBbfY3oHMH+/elot/dPzjc3zXwXBnBJ6KiTyAhf4bl/kPDcmFd/y5YSQ/Phbhfnwgt0/DcPQ/PfcRf6wJ0g1bS9PLuDr4BG56+pcE5UwyVhIskdikfLqmVyoib5Jnf3jtSnvmjkGe+6wEI669iP54vPOSHEX48yeBIlabpcNyEGX2mKp8l2MMsN5soTHUdp4txKSXvyVRtVeln8nRbXDcRNTjKUt1n5k5rzNQclw2kJiHNWrtGTxmoLSL6aJ+f8D5TptCdZ+lDDZ2qhoOKh1FyCkpR5ITRIPC168qZ3lxJG/UCQEFl3Lhqz2h+M1TVmS4unEJl50vcJGN8Tq8rdEhrgFWq7rjh8ixCv06wBh3Y7o/PgngiFJpJ+pOqePLm1THVbBzOLTHXmbO/xuiAdorm/y7evV8sTqsGUwRzdWisKye6msl1TGsyHs0poGVZ49LwXNdtd6WTS5xn7EI0MrhArmZWk6GmClL5JdjoO7aTrC+DMYHzITsoM0nM1Ar0wqHibCHvtobs/Xkcc8wcDSmhxIcNOQ5fkEQinN+rVMayFs8VysoHnZJxG4nyvxvFS6oA/jmhYyAkyeaekl1y8mir9Tn9ipHJBhTfaNARAlyHwIJNhvZUOSVzGOnALQdwcYII2B1SZOsju7CID4Ddopy5GVQ/rjhChu8fBZlyXBxHCXeNvL6X5dzZwASrTVSws8cFbBaTB8i5aH7RIUR752VSEhJ8FLgClngnHsnLuRiPkAi4mvvs1PTphv2w8CywHItrZ9nY/bhnl7JHlAlgOmMh0Zf705US+Qp5pQKjAJ+HuThFWJxPU/I7k+T4fOVrL/aDjMcfME/yy/vuhEMtmi2/3PlDFlK+5AYw8U5o80IluFS1gUS6q9Yp4lrvnPcIiBOs8kvaxmeqeWUGnM/fsX69XPFEQXjzesZJn0VCets1tf4HPdnEQUBQPUtOSle9mQU+Qz01HxBDBQToQQ+C4cR1dkuEJwfEGoZ7xBtEd9+dwfrKOO+i0XsxnSNA26TvoHKprZEAlf5D9kWeMbrBEdoDLHhT94bTz4KUjgf1ZrXZWZDPV1818SgFc0V+x8xEwziDPQiZH9ijQu4MNlAi0RTQ6WWrykaEIYR18kOnMwA56PN+7e2iXBZ1iPiwq5RNoo6q4xWxGhBLhcePSfivKf+0yjSjWUXrJTODdNjSnjYWmAjaCn4MkSPwCnLNeQFa+J+usbwk+aL7S7uIzjleesiIlNAeNJMLtS+pi4i3P0MpG+qnwfbtrhSouDwTrD9CmGxQzeaAQvzs5Oz89M3r5ycvn52fPnrx7DMFTwTHZclDUdJtcMoHRlxBzMTbT1BaDhuwYRkIpZdg4SWIk9bulmzfZR1zv+u/fIJUgyBnn1IaSJwqEqyN8P9L2sQjNdJoApwVPKO+LrjIFI1coOse58XHv/ZyvZmkVRWPWIwU6M67QqRdVfGnpqRarjf14mbZIdvpRhcfE94rNKD1KaEn25YtxRi5exvLGVfCeRQ4PtLdrnW268klaJTk1ol9RAhOnn6gymognvpR8Tg0UZheDzndGl+uxGv5avrfcQFha+t821wUkFPTAfScMh7fFnnunVUJk6ongVX2KHNihx+AKTIPrTCzWRXUogqXaORBJrzUkCQghRzW0EGZgEkNHRgTcOaTk4Jo6MQEID8EKA3oQkAWol3+zhpd0XTiznIPcAn+p+tmRLS5Vi8FjXkxLjm2MF4AaQxyua1qCazzKk7YDExzb9akXT+BIO64vejkS9wv8vPUelM7K0CgAM9UByliwxIh/c14zOwflhOqhIA/xvuDOhVL1RH/uvnaM9bXFdoagf/ResLiOUd60qWqkAE7E72chFaedVj2hNu7B8oryE10egE2AubcicKtkOretxla1CigMLeISj8yvbew0owp3tR2u4mfHCJpYzgNHyZcBqLPaZmjfzm9MBymLEXpSmOc8OlsA7YZExF5GuI1acOvzKgQO54vVAkaUykgGm6Oqf9HGi77EcCDJq8G158vldgmPbIfPC4w3Ikxjp4GPCLKJ81sEW/OzpDGO9W39CxEGrf1+7oPJ2m7p3Loi3ZaTljvjG6LWKWKVQzvi3+1XN/Yymo7Jzqr7cJ9QnNsSaemUkf1PDZlGT8i+scD88vPeXkUBOeNOvsTy4ew3ggl0oCkXJqfGZt3iSazOvbLhZO535wWbwklfCmkVFKFPGELaB0bWhBhroBdbIUqFHeo+ijM/41Eu2mfGCSH76FdEN65FQvSMddBxUqZ/Fd0ewgPFB7lrkVB21Vx8ihC+cou1wVoNfg0OYmOoKSUsfTu/QzK2blRp2jhEj/ogW7Vw0575ETqdQ5m1+27WXzV3G4YrR+vxDptcZW9QHbReN7Cq0I/O29uJ/anwoXRzCoPZbWPEbr92+vgN0aPhK1fbeIyvVAoi4ip4aNQXod2Z2oHSgM7YL0xoGx2Q8c0HbmRvVeocgICpGfo8HnkoMCFvm1PwVY0s45itFy1i7zfSOxBfdoFiG1rsIfITgjK3lmJyWwqlg8yFI+WO5jbRyiGkBV3HKJWhBopfphLr6GHvuOW52Vk3Ct/i1Fojym6id/zCMi65aBBCsrTDLGKGt3HwCVlgTnCOoVdxxdgif83mOdKzFJSHkEPb56dvWUCimpWRyGw0zT6kTwrQNHPZ0scpZBlsxINJDjCwEEsyfre++1ttiSs+vflh/KMIqxGDwj9t04KWL03GQtVzkKtuBTwqqPxfWW9TcG657j7ZcLmHeyapR3N3PpVJv1x5Fjx7PjGNFoZhUpuehh7Chz+eZQ5Kr0sQsYUdLPhtp51Y/ZE6EwU6pD2ZaZPCbyDvkqvvtPk1rFhMfvKpPano4hnTvTK2WeUG4KEqunvDaSSDRV0D5lnbGVHkhPKwBLv6SAcQbSZ5DCVugLGuf4IMuRFL+/2aWeGRMax5xfvD8WjRcSl1ndlPCi8leIlpzwPSqZtQyOPVHXgTbpNPa4EWJ1Uc8D093FgFjOaBR7N/EMmCoqdbWIF6ZRx9WfJ2MaqfVD4OXnc4sP2qvxW+NZnjMnXFDLDnpGIhpOryfoZegZt2nE3tJHHxbRk31K9SJQkGzy6m8Up4rlgGeSFJ213fCfZD5RYTqxFlJKM5z1+vj2tOg/UZ3UUJ+Qk3QBEEHoKWg5tC5+rbzXyuYIdCS8x5R8DO40TQfJdtshz+IbIn2BQSGEAAF0wzkztXIehOkG1lKib54S9ZQC0GY2AuxiWEF28qy974An3PtbRSGFYKPHxEdIIPGohEqh1hp3cUDYHEh0GxelEFEc3fVaF6+CHw5Fi15nTo4fv+wQU6TiPIqBYqhukoCo5IR3yTxrmaNQsGWI2UrdNrvimdvOqo8R5b1t6meMdj7cVnLc0YVT90t1iqpNI1iwwOHhuheB7xfbw17o/N3uTEDvZ4pXhw7K3vRcGSTXYlhB84mbLPNW9ICpkxttjVzKr0zZsRBE+zDpS5WaMUYiYazWJjz76AezFh/2dQTHYA3Dr3tG92YsHR4eWvfjok7IXp3CoP8Oj/5Hh0Tt72wKP/u8D4kVktjvat9M+OAEzoOxdD8r+mr4VYLKD3yfh2IOjg6gJMWc9ClBQ5Mo3UBIHFRgvLdLkQzjMLe0HdLHdoXoxvG6attpEQqXq5ncdSOIXW+5TT9Gsmj54SaB9+BGOJ/yiuiBJwCZB4EdHDw8IBL67oj5xnLbvJqLwKdQXJPqIuZWTFgtXJUA+F1a5oMF0yr497DxAu/lSv1y2k87l0N0H4vqAzD8gYYtivbgFVLOBj2GfMvYsus92m045XFH29mjJveiWqwkpAwJs7iWX4sEKUidYsyfHJaIPMYd/O6UWOUSFM91gnUWKcZRzJBryGZsrTUjZfDMo3HrIxM3WAYx8NA0a+3wG0IjFnZMsUq1FjUCIMdild75MDDxYSWUUNXdIieBUd4yFSyk1Gi4C1xIUhrEbgSqIG42Fgf9k7tB5Wj1NdLmKZMUZcuokiI2yniDlMiioWFqkRQ5fkShSsTLP5IWqIubIocRmnhuK83olmaq688oiMSFXtYmnnEvr04svR9KTv/BSaDgKA0Vfp8ua+Ppepsgv3iayWq9KsNixA3TtTjCVwKBGoqKN2WEa0gi1HE8mY+BOe04K43AMgRhwmpUQEQEDMXOaNMLjTgHm6keyg/Z0XI8IcXkNdBIrL5COClTKKaSuqveN2LjoLmCtyLCMCGOZPIUaUilrerUggqiIkUDakv5Nz+ti5To0fMoRneJxKQX8QKQsJnPQblL8eSsBbDbksL+5TyCZi+ZDSuwuKVjaBdWmtrr2Yqn1Et+wtGIopgP1z0tXm3dvHY5pDiRNDkIAIEqjAhzS4kyj244FaCWBep1OsSjgGh3yP4mVi4XGu1bdbqrOaRIC4lS0GyJV5VKUblBT99jjit0VC4CkKhtCr50N3WB6to7zZBSgNsaG2nqdbA9iwmCeD4QDJM1cpUdmExSyYxVA11GrgtrDhK58DKTss7ugRtMqd4fIdM9rmiXlj4rzzJGCT4g2ybsiCiOxb9M28pUkyZ4/oEvBuPubB8h+uZipCD5bScYPRiZQjbTJthHMomz/M3SsUb42VhxDv/wTfeGyEkOeDymwxlpKspI8InTv5sSnzrB0QSNRWclcdduAIYdfMFOx1+pcSp6RLQaK8EAJfHbThSiqLCE3lRR0/3PpPkFXbxDNwL1JdoKPGoXuOu0WSdolF1TIEVJzMNDH24Yem/BpZAXBPyqoU3WekUCxldBT9REKblcTUancP53R07iCZWpJA/oa1U5rGGI8KUEy9horwI2zBNJpCZjF//yw4gL5a/i0/lBvBKAVqu44rGbT1SEbNb5h8zmPhlaLL0xXviHAn7V1hFCxRLPOc+CaHd5pTcvVkSM+zaz5KAMK64UeeNIdDubldU7tyh67DYnQCXI7mrSibLc6Z8p5Ehdy9Gv6ZqfrFaGPUSWRufsJhUSzpZv8d5AFCIEUwOTqi2FzHFYsZ3eEj4QLpcNT54THH8oR3joS1RvFRYNM2hU9Su4CrP1UwziltbdKhms//dv7MA/EetY24v1Z7Lo1o3mnHiSuJHmxuAqIxDAZMAQLmNO1l8djBq4TWOhQ2Br11foQDpOdLMlTtzw9XusUVZC9M1n103OkCuFZ2eYfbVRdDBCMqbzbSCld75fw0ZdMWcTUlVpxGi11TcjLtHcG3KLAyw3oi2Vcq575VwfMljMC+NWADbPmkmlRu4kqHvBzzsGPr9czqP6GPpfjeLPAoJRzybGMsL6WHMhpXQ0J7sCVpMPC6nep7bJjCo7dOsNwWlGDhHIzwEqg9QEX0akFSdopcgvTst64Tsf+AYe3L6lQp/PVQFwF1hoy3k4W7ra7Ne0qeclWxA/aPV5LDtVS6YEPdlgpN3HOgybUWlu0MrRLJAXDYmCoLXOd4JA64GZJm8CeKLB++Psx0e6xXQv6LRS+gMaRg4wEV/x6JXlTfDnrYTO9844cbnvUcHEU/FcqPQVx2xqu0FhcW2H+6hLzJ3q+geqRQ9LsGDNmQd7s6ZhU7x69EMhOPZLaLpxdw9pWTjCxzzh8Wd949dq+YGiGLh2R7I91kbpG3LRHzQ1Y6e6Yi8duPX8WG+Hi3jWWFdcUoKMN9snqzeaVhWApwlgRgPzQ1t6zFNNrnJ4AvEXkDnIsieU8m7ua31B5T8ANJm8YucNuG2Pt2MoQ8AigJ5UgNepPy5q5wSQsezevkDyIfABYZRZ8xJrzsheXR8VpVuSl8wR9Qk2Evj2GoEXPSeI1ylYExo65SScV4fpSrK8K0OaSXb28znmQYORfUxRp5UVFb2fGQ5Vpjq4DYJfcdUPLPhJFRgBh4YNWfsKeg9zV8cNjf43cx+jq5H4vu6VqwaWYncwdbDL2Zsi2I5weuZkK/y6XkCDUBqa/2ULeXmwlt3lJ8bAfjTxnhWofxPDgFF+UNpZHGgddmOXF0GA+HUdv0gMJa0WaBUmZH/AUv/ujngDWUcq2mUBN3tSTFRJgp9fhGa5A+4c6zr5eK+yH+lTInK+8LSZAxMWa4MS2hr+dG+lB8cl/oSJSvW59oZUDEVC1XVv42hUcQgLgxqY1enwn8kNLMI20zmvR9+gSLqZcPiN/Gv0FEpngxo1k0pOEc8CoDtayz910eKUApMW8CFSMUv3IpNGuGXfVOfU02oje8l4caSTo8W3ZAm2KsPB60UtBG8OM2Q6rCfi+V3YOPCAhOatmTPTOrhEOF3CFyoOKvCwl2qZO/emhN6gNLoutE8KZLqU8hJlIX5yA7df0a64GK2QLnXQPeSspKgyyFmtEoMKIpZuTLt7OPtC+WeejMSzNesMDCz/Cj56scWi6XcXamE/qBzqjf7mtRxDxA4yup2xlMFzGcfUDu1PmLnLCK/SOa/mu1fqwnFrT3Bz/DVSgK4UJUZQNZ7eyZZVNLefuYNygweSVWS2FYC/rGWTTsnBhql0PHBERFd6o1U5EXrRwZ4PTYCOEdBaF2Ihf694Xv+1JpLqVW+ODDuuNIX8YfeTSi/g1lNdODwRYfVpBUXUPvIr1FV/nTctEXfNGiifz/byZigyQopim3heBxCB+Mrdl09caI2+lKFgWGtp46m5lMkb/jJcc3cToe0qBjcjWU3kcVhpkle3HGotFL1jXPC+Gloae+4X5KYbBv4gEIYUsBRXEsrfkfAUKF1UjowCv7IbfZ1bbqT3VbmgEZUulclaLvBdYJOVO6bjKMeDDr/yixRqKMCiJXyvA5/0Q2eHUrA//AkTi057lbBdwktYche/+/oyyMTTyHAyNj93FXeImrDUU49WgSoWohEHQDEquihyN3jgjBMdjLJdMqh3uzFrdQjNu6S3aCN6IDlGElg81HtQ8ZqcTl8XatzJ4NikDZJYupPgpYm62LA7LA2iEXJxVmzschs+Xpn1VZxdG2KLw7I3q0zGHnN5Z9tGehmRySRNoOfduLobByaKJQk73NGS8A5lFvTcDnriDfFMz3Vm3aGEIL67ABKzbG+bEwiKp5tUXf774NUKvRyOlOf0vMlYA5/pTCycW55N7zzPODH1yA/lip/+KLcTQEFr2IJsBcrq3F7fs71vhy5YQPXP+lsDc609V1zkQAGCY5chTvzSTJUHC4BCuxYNBjkNKiJNFItNXOcSa8UiL1rjHVU5rolpu+saajgQLYi+nbM8KvzAMLJZV3ofAG91w9uGajklzeSwe4HrOQ3pclQDrfpzFDens+CCxUgI3OHkEGWylWct+FTIzvmhGd8wEygh/v1wdPDCrAwCAJ4nHbsGW6yEsESMJb4YtgG79d7ViWAFNlI7M511AGZZIuEMtsWnFnYecj4CvIhZlT1flrU31qmTyGHK9ExF2B4KQhAxkYA9hWSmjCpBXLb/0QaF5RAhc3Hm4s6rkclhqrBzmFoUKjFH6GwsGbzVK7W8CV/PQ0mMABFmkQQWvEk8jyCjBqqtYLRaPcnCd8708SVXXkWiggWAbDIoW31m7R7nbvgRIjISVmwn72LUl7tua2T4vmRJXYifFp2ec07zMwp53Cw8rsAwvpnio5AZWPh06kG+CN4DTzBnALy13RDiSe11P48fbTzbXmVbECGbjpB2b+eIOo1usyIXsFzBTCGRRFeKPWDs5IyiZXlqfahZiN+F7H7qLlz01XNowjIiMoKxaAl+Qiw6BxlK5mzycM4YeuFDcuXlyPcN4Bv4TzDzYwgwMpquOgNeUTs117UwT1N2dQCBHgSkdnP95EBZR16Ks0oUJQ+eWiT1L8BRA6hnVsO48iMuaCE5DUrsxNqt/RFMnMVc4E3y+wXuMU6R2NqTiKR0UrcKtJlUazAVNBiP3LSa+P8HiVdkevCKT7ct38if3i8UF5G+NqibXmYFzB6R+Uq/On+vkGQ4ucJNAYaYiesb5kW8sfmmYnkCOnE0yBGn/tzWEzrzlzXSpTEk2qFVKhdW9prkcTNV52dtO8FTsSif44Fy7loe0iBfzSb+t4PGD0AsqfR2ulqD9oGJw4tpo9XfccvLokQqXq98FrWKyC+VyUGEDdvakwCkrwuK6GZHEyQK1cpHbHG7d14n2cAUwV6gDfqH1+iR1sSQ0I+thXgo3KC/gjRlVxpwyc6yTom0dbF7O6wHa2XfVrFEb3PM2xqHuzEY9RXxrmP/nrsLsLk5To4IeBYSFmzAGvJdcknzO0OkzSGZCnjDQCcdI2iCQqU6400j3QS6DKJfNKhEuDvZzKApQMOkk1eRMwgoFPl/aV0bvBq7XS+/Itfw1yHWTf0m8Yj54iXJ/PeBUUpRJ/Q4y8ql6oo/xt9H5waVaOXyOTZWCgIVxv4VouGKkVi20DXUl8Cgsm5c6S1YvALtqaR3A14nWeIBNW+fGd58fn9ZrwTf8jp08Xa2Ize+mDToVPXhBVKg4NLjmYlqMmn8ogsrbcRSb69wAPhTFyRpgX0o09lkcKnQTZjNKEJuznHTBQn03YGNonBDiCr+XzWTuXfPE/NoRUFBFk85PUnasIjvB5pk8DOOZY5Sy0duXeBtxbqzcL30YA884PRX2SabpaJoyHdXVp9xQhHdQWsiv7fnm183PoDiwGONuapqRIs8qVe8wPJICLrWuB7JW13gdgvkQKfhoUTEH2jWiEyJXdbCzPyTdx+ai0aR2fIp/0Pp2h6osMCo68sh+B76hCEGB6zcIsw2dKxvGtdK6pwBcy85+02hvGyWjGO0+WzGEBhiFtsBv3qJCz4AlPCFtC3B79V35YsQgwyzdBflfBFsCvw577gKl+/Lu4NTu2jmjaGnR8SJFx3JpS4HGW3b0XJ9j/y3GzrQWEkZD6riTrOpnY514tbrSjPz/WJUnCOyGWFKOFRL/1rNA+Uzy3plcsuGsmU4DWIbK1ssAjZSIr+Q59UKa4BBAsJhg+A025caJ2KLlDHkBlyLIRf2RcqADjjtJs7RqbcqvvwbpH0kWkcMoG0cfwPYcKQ+4GLM2BLC0B6pIHOCBO050DjJfVEE2MaY7QLrVh3JUJgTFdt75YEhnuIyEvPuRLHi8wpw0aZS31/W48vypAO9D9waY+KolZEFI63j+pZ0UT5AAWrDaei5yYZQbxTTYOF5n4enKbESgAvJvqzJEHG8zyablWUobmaFQmW0/EAJdQInGR38sqFiHhvMwpwTjeZCVY2N6ygKLZ5ocwsnXjdPC8NwkfAYa15wDjx0rn3hG8TbrAimXSKKT6KlX36HUgLGoJumc+fRpRHBi04vVbdoWdKEUtLQkYLiXFCB3q8hZRyE7BkWLV4YKaUKG/MQrvRcVlGfdT05hRb0lD/Bt8/U/s6pDxNrBjL82HzSV5L5GD/bIRJW2Mux2+8c9JHi6F7ndTn970N/ZB3K7/e3j3Yjcbu9wZfHv7SOlttPePw2zXcTm9TOp3acgtXOLQ/rMT1P5e28voLZb7s35RNxkVBTczfW2aXhhqiUkdDuGQc7efXrL4yrh6WbTpcLdR4+I6RazLDHXrS8/tcV/bLewHKxGpNjhjg529oQcLmsS4wa4Z9cdIrLx4cANReWVikg+99J9q7pqOiTwpjF1ZbcKBKOQHThj0I85xnq3dJyKf1u4VyWdk52z9qDyM2++Cn1enlN4VBnBUTyfuVEAcpqAUake4va/AoUhrLzogdJopbHWdMrDN0RFm8UjKGApCjTR6OAmAV+OuvUUM7U2aEGOHFcxtvgFdniXygsA78lclCzPh5BSYuO5v6nmtRZUA7/6XO0fSUAjInyvG3K/lf0uemxCNeZVNQNVKn91vBtsSlqRW/uY56Yb+zrmUchenM3hhJ6RkyrjmDkuTjr1Oc5YE+RkBTwx7iZIs8ItlSG6PQaKhKItxxC4gKQP81Nyy5FBqCy641u0rsnMxh3H6sIC/WTFt6bi3pAuB8lpqX7DXjxWd1nQ5xhKhKM+42xkjU7hMeObWDORIGDn2dNLGj6yeHpohEJTKDI8Sw4x6CyQ5dIFrwN6CamLsASnYmvAyxTgAlP99UyHvahHDJewDSxSh8RSqqWXHqYgomoqZnlq4TUDxSJ8KEeIkzd4fuNErYrj4jlJB8IPyMGcWiEjhRS4ckqkf0t58rwa6jYjdrDzYj3xu0MHoiMtdty7+fdPXLwR82TUMBm4e2sA724YUhJ4imAWmahSsBI2H1+DEsnW7gWtgRV3wxvdQCfzTvp5GO/m4EjkkdZjSzZqPbHb6C/ZWk5f+yuQ62/I6Gc3mKB0k9POOmGFWQtRZhbck2ym8wJ5Ryot/g0CjwHxjUXlcTHcbfKvRzJj9w2aESMLbg0elO7zk98HlUUGORA5A+ddPrs1kk9vkJz0vdsGqLDCKMNm9MrI0XUL8GVNYDSnNyzQ/H7+9qXl9X7KXtPnQol9qGW5EyGbmrUBEk0fbg6W49ecgB0iBIYnRpIS6qapgoNUIiyZl4VZwiBEIkRmKukpRR4dLkoLYYERxS5uwIEU5zyHU+xcLAU2onIvnMviMkfU3lVFPrPLxQSNPDUKKk4E9+PYTWb4LoVuWB3dNCydsR8aC7W6s0N0uhLAx4bZ057076+K8JmX1DtOGVgqEYb4bQ4W9OE6tRNClcLzQJjpirpFLknjzUaoO0UjV8pu4NHE9F89M5zah+P3fss1+ggm2bl12Tg7FFt2mmF/3vTh9ejfQP64DU2kb4NxPQc+totyjqWckBKa94Imtg5ziQxKAS1Se4UeI+H+ZXoyPAQcxrYEHcvVhsNu2R5PWWRvRuRJpMeHavNAxttGQdWeAEb7MYHlyygNxpUh4csDYwRmMm7eIdYjWWKO2AtrKtJmnH/JqWco1IN4I5NrwE0iHFJyHs4+A5oQiO+ryXZdarmjxD+fekCVO3AxG2aXHy/ej7PFhfpZWmoiaOEZZL4OExvJbGg1MvWbwKWeIWtnI+EXG9xa+ujYLSOs4mo/MywPlWk/e/Y6LhwGhwfLOFDGZI02WaJM8dLWEaLhDFTAGtbfVSfzf44rwa/rUXcbk3Km3Ncx/0d+VM1kLcd/K3cGi/U0zXwFH7fYiSCYnHrY503qc357yZ4oT5PUIPt0Mh0sj3ryReYxT8cH27UDNU/llEiIeok+kqH9CWV+4mj6q2dILyhYdBMIRJu4r7A+hP0lx2PNPPaIoRlvbpqmo3zj3ZsUdmuNCmjPFjYSKtbcFmJZm/n14uaipbIkJDQ58NBuFg+KPWdFbhe/Lj43Lb6TPIPj4lX5vspcYMbtUW0hjk9BHYI+xLQ20809bYxbguoQNc1Uj6pZzkbkMTJ+MK8xGaiCoZC64qTrL0nlWzaGJf2LSzCRuhSNhIjFSaDFToKlvdtVpdhqeihR2+T4lOlfVOjScHf7M9JXFm2ypratlmk8F68nxr+mPhBGUpXflu5LfV9DQW5fuPhutFNzz7MlIPW8vp6wlCJbbwNT0SEWPoK0re5hE5s9tBTqG6wTNo+Ug87tcL3x0RdAcTPZ8I7dEgxg9//DBT00Tj+2I5CaG4HCpG2fmSdSFge4BVk4805vFA0RKrToR5X9j5R/DYAi7QSuLBBX89xTepQKEQpweJ9VZji2N80bF92n82IdF988+TqcvzIfLFgFaiZe9ys/VIk2UvpXk1BNneh7fsJ4uR88lny+qg1xQHmLEemtbltMw5yIqR0A0OsWKPOaGYctmPHWJ2Ml2md3TzufuWUBDRnIGOCN8AEcellYb/fxectTEXgwNc+Y3yRT1d0/ifhApFNts1VD/yndTTFakO0W3xtLxDWDjpQMAEkWh+/evCwgEj1BdGa2LqJ7WoTVQxFZKlMs7e8TPf8GskboYwJ9ptp+TLAzgrxUE4CRER4ifvCxeNCTs7O02zhK7pZIzay8NQUcmoly/bjG1QjOeOzBOQPya55MEHyCcJJdfKy/VYCuUmgsbfwUiOmvG4zOaUyNxTg1/OvkmJwU7CP9nkCf7mRLGr8lydCM+PxOHxWv8fF6fCfJQxd3AnEFtWWCWEsESwYWBMjNC75A/+SjhKFQFVlJ2oz+GBZlNJw53cZoi/YQpbmJ4fgvR6J+4a5tM7n63e0QnbTn7qify7OD0IMvtvgb7BiIi6yvycxd4FB+nULZrVcoBn8vqTI+0lPqNib2Lw/mC+IhFI4NClQCUhahoOs3hd4UytihA+XjcgxCS2HY8+1iplap5cuApfgGaplLa7pzKVPF75oel//49/8Tw8PznfvJGPeMxDN4YslWxDHos2ZSY71Y3PWbWZ8C+ImxLhun9EBH4Zsn52ziHx/D+p77qPgG8znVrfWcOTk7rJSXAk9V4tocZDx1kQL5+zMmBQP618QFkKdaKNFzjMgGh9Bxcj5uGhSHvyoeTdHVgqGDU3qplgWqMuCvwT3BX4P+9lF/d7sY7B7vPjze34nAXw9XVjY92N3fN/CvwaeEf2WhMz8DwT4FEMx1ThGC8U+DBDs4zCHB/tMBkQgg5mYxnDkTUw5kGhy248FhFPF6ol8PgWHd5pKgMKgFC0HaaXnHudvjMW1SYaKZRDafwn/tHD48IvzXYPOoG773IGA3lnpWDTVlRUPCeIKbhSAfOKSwuLipScnsEt3z8gtf9bVQKxOtqVDkEsODZyBaOJsSmFLZ0EJyUa4f2ejWs+oDhWU7oh8mmInsYy5BWCZBg3cwxXGNGXxeMaXsKtxAe+e6ahp0ei8AwL1BEUFXHYPojXsImhk+rpzC8uj0pLh2Dw8/oVdEpIDBcLekA1+TJPy90PCVdLiI+r2eFB5/aLkicpuugG6vRGjqoX/I0ZiRsF9qnvEsJYwxq5ArfigRmydvnj219+B5Z1grAiDL4h6DbsDnXmovslNk/dWkA9nDheQnZJ+c8m3nINWTICXXDDBRUDcbRMK1GhCGp9POOv5ndzJv6sVN8c5dvuINXkipcJuuOgXhka9QgB8XxTv3MF/WExTBo+rjMbkRz52CADcu8es1TYt9Gz+4qubnIq/gNcXbjR86aYYfdNTJnQTDzSDnkF9z3wdRnsLSwJ7uywAXS05D8QpjuCkxt9cxC93omFBicUUt9966M/MemEOKVxSZ7RFcSu2vUEN/VU8geOd+fulmmpJzu6le7ZWHpDmYCyRc0CGB68jZPWJGuKM8u6r0ORP2QpQqN2pO/PUvbJ6DURe5ZsyQOoL3SfbYH0HCJWEGwHs6i/Cz+K1H35YfcRyJruiePZb14cBeEDTrmIDIzJSok/REXlTMmYd96kMJcY6gp9aeHAE4SD1m7lMKtrZB9JNXtjWzJ2Htrmw5Kr4oi2snRX/b2/rX6W93Dw4P9nZ6v+M1wqsEalqBatoXW6XbCKwQCfLaEASTHVtTrIaD65tQ+vwtfCgGWmmA0MwxwD5JGiDG9YLFDLLCvwBr8nd//jNoSecQsHvvFumcF+n777/Ywn83hidGaBPRYLgHZn2Js5/O1xL57M+H7Av90KlnJSRp3ivcaWNkO1SxNdzibXf/SQgnjjCssrxwUWQsYqbbI0wBN0hC7IwRU7jUTEWUuyW7+ts9Oe/uZ3Is9B9JFIgvCpUN4sm8cDoClC8GpdtJsmrUomtbfrdjfhepZBS6jMIZ6NomQLaXi9VNWQO7CbdJF/M5Uo7zOJPWM6q/97We9/qDvWL74fHO/vHe4L7W89HD/YcHaj1r/5/Iek7ZFz9bzp/CcuZv/+gm8w7s1X9B2w3Na7dazIyWtKvhVEQZMJFBbRtIWtKHkF5VjGYlAY1Gs2aqCcjoQC4pNAkAe+JI4lnakD0F6lKG9mB/9+FDsrTBB9mFX67CAzPXNFGbhqQDpc/mYVbDmssXAd97fRnTSddcZGYcR7TWSTBKJOZgAc15+wOzjPIuWXoEPK3KQkviuCtVDKvx2EbYHjfNHEyOabGXnpQw10EQhuoyERhCKPdqk0iSJAYT1QN1FajY6g4tce7RCZk0WODOfRrwiQczzSAoo+fO6Sm4mjBHBk7wbgNM0Q25AigY1G7mDYcKb1hAhctnQQmXzFp3rNYfP0fDKzwLyO92m+bTNy1T6k0zKsfmeS910smRH3RMDDHf1WBPJhQEsbEhhukBGzuv5wDc8/zkwh5RX0JAJhVzO1gPikVRZa7LwSmC5G6ZSpIO+JiYW8Uzj8e8rRsFqMjE/gpR98txCXXYfVIBtzcuASeQKX0XlD9KUWoY+jgsLwgwgQ9emCQaRbkPtYYuL2Fq0cgTFzFYwnySkNzQmFvyArgFBCaAV6V1/dqEixWYT3hUYtaBWRMXsvKT63JAhsKC9VnDipPjwAtmfp8yABGfJnaC66Ck8f52MfAdAHdpX3d3TkxDgfLF3cYvq4sZgHUDoEk49I4rKWGKpIlLwoaWNkPZgI/P9iJhxEhX5le1EiLVxru2svmIDEk5PWEfkCmP5VmHuri7DXwlwSp264Vgxjqq3xF1e0blEFLp6ioWAgao8MzsBm2f+rMAaDtOZgMXWQQe4xPJT4V7yAheyh8nnrGg5SfIfCcxbDxM/Bz6RcLD3nnAsS1nAfadCXhcuHOWZaWk3/oxEVkYHmgkIwexo8BYgtt+qMTTDAknUkSsyTyqnVuVmKIbEzZiOfkIuofq0Ly6wmyXDcMdBdoxJlxCYWf3XCTSw3dSPlZYC7xx1WTRVVPOduMLmng9Xr99cbb17sQif7zLvPRFjOpxckydEZETBvG1lA4XiMec6hSdb3ICcuEbgPaRowYWbAj2TkOlsoAp/rYG3rJmSrgd3FiRDaA9RhD7qJ/ck/pW+B4FzMUF5785LZhClHnF7tv448VodEfXUFFhvsralamTlOLNfw7nn3RDyFybVlSpnC95hNVXCalLztALILSoJ3evnjzDeZmqLHSFU9J0P8HYIDuNSMpqZGhpBPwreGAMkbxwms/koppdCScGGhgwggtvOFIz8rsUZa70+oyZN8K+pG3RvknD7nSNax/9subArOufsnZgePIYo0vPz5N0u2ic+KUWCp3R/Yva9+acbTkr4yqfYshpt0o4DOdeu+acU9jV5AonNzORv/l4tiRXhgF46EdmP1K63U6r6LeTCdnqkrWbGjx/wLV6ijaELNQLJ40kM97XoiqoLKl9KWFk8GXcTWcSPbmuxyNp5QlIwxpTh1vi5cPvv+xqmuEYmSZfCDLayr3HWKEbyxBBiLJ4W17QS/7ICaPZCEmk8U3k2m8VX2EGI5aTO/RbC+ocma4IPIs0XPj9a0boYG4wBBukhh1TZ+E3yalcLxs+QTCfeQimfxyd1Kwv7/TkPGWx4+XDEywfXHyDhfuSQKOwr2/K2UQDsb3b6Xk1cYu1qM7J3dHDNYLP3bjP64kTUv6fhugTQMQT802kDtQKDe6UbMQ2vmqJU+zvRtuQaaLMonLHtTJdkCEryzV0gvyi0oRGd0RAwfJli7uj30uAAER6AbNLSMvZkEOKxMQQnjHRI2QET87OYEW3XH+/PxNStItKjhlo1P1b+GHDLGmewAMEDk2PFcSXifICgSqjzzcEu91X3d61nBrs1JcbkwUwrspJfzHl8nsyShgi6Aws/IlIuiAh30SFvyKxZ8t8gnom1eU07A9rhUMh/jxwl85GnlsxevLzraM4Oy2H78m0Ba2U6VBE/CBmvFm0MgYkIZWwktPiSM0rJwZPX63ZeS/I3+qFkNxO9ozX7WQbS7b7IcOEWGq6t2ACgaLEvdpb9pprPiVHPoGIAt3Rc7Li4IMxMxHhieXjijtSIzKIvz0pP9RXHCupca1YmMFbeTkXFVm+Po4r45kkIA7VUI17PIjuXRiXLNSdXGM4hrIQquoBZJVM/up+0rA/mvRxPY78T61iQUqbp5AezGVVjSBC4sNylxHsnZQ5Ss9ANwFqDcgekb94b4RfMuRCBUcF8FiQ/GxZ10C9QOiXC+TKn6lA8DIAnk6k9PHVtR+ArvN5+qxCCltL3YqOObwuZ85MwoMnCmoz+UBJfrAbytVzbRafXkWMVpr8Ewxcgv1DTKKUXg9DZM5ZyCzF6ZVQVweznGb6zLSVM6nivUmNXMage7H5+7PXX9F5cGoBQW5HlItAxwKixGQ+TeXlxmtGmWT4Q05JKovN76hIfBXfsnuM59s2NRo6iVs/4aCeY/xVS6oZmPBzPEbPgNfO6Mnqxxo7eTumYnCosDmdhQ5cpGNpDutxUW1ebYo8egRwKYxy8Aek9umfpL5V8+GaElQrN7g3ac6SEIvUYbznlgqFi7UtLCc+JUanBeZ2+BI+tb7d40J8v+CIZwewLVIWYL0CKbvckQXHY+QPxmtWB8B7JArMmKf6CsYKD3wkFfjNZe4AyFev2uuAqQo2mFMGI2Ny2Vi47jvd31k1ZQpezVmdYMrMpPift9ObcZ/v5/+S3N/MQ4TUOQ3m0RkoCrzhEDlS7UuJtJMVfbs+PPcTyv9lA0EZKXr/6uTTb79+9ubs5PVXPfQ6o/AU+Ygr+6WzJeAmGn1CFpWfebEEKInMVq7o6MZy6WV7UH0RU7RuyaXqmu4XXEUbH0y40xj0c5/Xl2xvqadtC9zfI8yBnTlbpEb2CMwydX/3eStsiTacln8QEjZ0dKVuRY2nMpl8BFAd4iw8iPl89e7lS2ZZA4gV/kftc1LwqwKbZn8G5frU5N/Us2UzWGTN0V3l3tIL0J9eOSUItQwnZVrIj3Bie5mV0MUSiy7zpuqzyZ3snP3bquS1ErlGI2wOVl6AJsG7R/rLFdSmBTQnNY95kcalbuBFqz1ERqTJMLVEjzBZ49ZY8I47TRSvTCzIKg+6d57Iy2rKK4tyqveaVVP2xs0qfqFYQ1Hthg0iFFKeQxBfhpnwB9UzX7SjOKPr+tbW18R7WwZk++6bz4Xj/V5r6e7NFuqrqLQ/ALViQ+nbceijz32hdC7eGlt9tiTnst5lQbV2stOIL8pZVJnzGyyM7na3KsVjAOyO0jl0Nm5LsQqbdTpMmLpf17M5cg7FnG7rN+GDBaDltsVW8caZdRoNWPOBppAH+lFj+wXWXNLRkOUcnmzaeCpOH6sSdCd3VNWXMETK1bau/oDKAl5dMgCbpvUHFcrKfKhHCzRylRxLDTJ+2uSprWcJdyJGG1D2XZYfQHlnn1XciKXeorZAJM6YcR4gT2vOSDSSV+W0tbc2rGEYMXza4u4YSnrGlMWwZfZN0Wu4xptiBhX/LBoNP49Mp8xKqRbOslVw77W59cQpRfWIXo9uK4IemoKLbQtUSTZkCBjQqYocdcTFxW/g0R42rTvE7gyzJl1PrD84nn1CWndyDLyl+ewj+DTqOTJpzd4D/oCG/74GATYEeFMLWSPD9yo6CThR+7ovGStW48FhkVSA1fTbxdUVOHwDc5iU3tLdNhaivEv2cadLOXImY3OV6VewLeq5JswTW5XeQlV+KRLi2CS6MYFgBZ/hdloOq6U2+gQrXaDTwPoMxPlsCl7BWt7ndeFit7OA8ko1XdgH5CwwmA8h8+XnhldsSZ/ELW78s+h3vkSAKcCSGHrFB8Odgx5pBD063OSlntnbT0E92Su8857Fmb8wxczf+1yx+M3EK7eYYmnF6R3dLX+1mpn3vMI1W1Oyob9GTCRV1GBqblNLqkLtBRvgRCCA3weU5Ho9ABDKbySHyri2LVAcgmY7baaLabteewYI0uOwtA9Ks43TCwukIh8z4oWaYjHpazBbngl0mVEgW56MdR9iK9gxMuIF8C5TGN6p5RUyUy3xIZgucKudIJpeNMBHgycQDwLchxIUHj6u7u2b36XtJqrBBmEb5ErnO98We9vTj5QjNbV2mjDjljMumsO7dVFd11RwD5yTJDeItivZ7ZsSNfnqYzVcoBZquUvIo0lMVYqoQglEFYpAdMm59/FbNetwxwDSvt4ifnbmo4eY1kBNf0bkgfJazzAWgd49PiL0tXVvLQDg8Lq0rerDKpBIgq8RlJSEWBN1FleShyBQPZGPS5oLmOFoOvBDHzNlhp8NQKdBXIymQr5NLVny6/AVqGZ92IDZZUkeVUo6TOboJWPLwvA6FyJ2yvzZAq4nvJ/X1blcFuHXwRD3u5NkexDtsS8kWE0aXenTwN7YKp6cKHOCaqRw+LklvzUQxu6vYELs03argyOSXmk7BPOYHCQH09RnhllPYgxM0RiYBgVT2e2GeXfMawkawon3uaHUbrsqTyf6kD+u76sKvcJQAYDqzEIqaKsxd/gLAN/E3elsPrgf6GppCHjIIQcpMMk+sjW1SJvoDTQ9DDBhIv3mI8lSzO7xhuKytoPjLsZnNeFQs7Mcm7GQw3/51mkY1v9e9H71b4tm3ltz7GLOjCMjw3L6Pp05EbWsPU7lRW1HsJ/iTgRyILBnc2ESShYFyVreYPElLC6Loszt2p+axVsoJd5B2IUqql6T3lkJqg0LfSJagcABHBDMqmq83zFApEmyAc3YwAc0WQGy+CGQgzykbRLJFsuU56BY3rlvYzZT6JggXSWpQAbb/3pYlZNvTjkW5aNt13DEWnIg5Ao75aAd7Pi5HmDtEL6WrXhqNOXNfWsAP7ze5dGqHsxgLfeFXfgCp0GKGHEdbJjcyBJA6DQZ+aZQwu7r1+RfNgIWIIrbR2ypugxsFHDMne0MCJBQsnWXvDoJq9wsMA3wxi1zi0cE2hOjJexu6rZXUwjwq+i3QVi0cTlwx2CSEyJABJ//Dre4CVmIf+I+L2vGjyXVWPD+ore+mYPTnZ0EIbZoI0TpjlWsw5rA4gVLoTzgMIjnuLa1WA6czbMhfDK0Ay2hUhrAIdRKI6/5kIRr15TNVLpZgIffMplcfWprC5+gPv+kD4fGabhObNK/b/V+h9zzkOsZgOn/tk6lO7cq/RLqJ9I/9HkB8XMKduj2t31+K/rOEnBDhpHBL3/kkSWWQ4jQ8bHVZXnBn+LZ/omWB1xdffPwu26h6uSP3JssOsyzrduowxf06U+/zA3I3dupLjDLYdMxClRIIq7aKgzmv6+m7DsCIUEPodRcKE4uSXTguwf/OXNP/GTEfk0nJyb6zpTC44+sqMxHYEvDJIpU4qcdKbeBFhN2pna1r1kDLyTCK4WcA4ZDyLJNkP87DOkCLc398ctf9AW2GmnmxXd9pEsoZgvGac/LK596IpBqxpUKCnMSiTF6tqAX8QKRfwxCzmyd8gPfpWzkHJH8ECPjAU21W3hwPIoTNQEOrVOwEjXsyrvZwDDoEeUsYPWo057tNaRCPv0aWtey7TERMgpoz1cN2sXjkK65meTf91yvHP3HKvccUwiY5wS+pJXqcN4YtHQf//Uv/hAxVpjxnQLtzPX7CrhjuUdKwgP4JbvqeSCoz629STCAve09tp0v0Ts86XfC9vn2KGcPY3XTEnJXGQ1akUMXPvekorXGY/wInRYTNfnXvwRnXbDfqI+fYdEXc+z1sHWd58EqhLlR4+bqquokRUlRz9jjDe1gxkdn+mD8cvg2QAX7HApxgIRG+WEwNu8AZkYYnjFvkcQgawiH1W7gMwUXKT64ugS3EdwYdEZryVz+KRdyyp2r2yl4nad//csDfzLRDw0RIncQptftX//CqtbnHLGRfzCeLCruHW8DdOpD8hHCAdCKAsJh9Cq6UulStFzySI74tQEey8tDu8OoJKtkg0VNjiqGHYDAJEeVpWdX+Bs5jtFTNsEzYDB3f2sniVmzkdOlKDg47lHe8H05Cvb7g8Ni++h4b+d4O2L42x+s4ijY2T54eLCrJAV+BJ+GpSBM2v6ZnuAfv8Lrzv5BQFLw3zLrHRkN4CyoHcR17PsE4khTB+56ioNHUvf+GX8/oDpY2nKS+2AHSADRKpfMKuI6AL2ZAnSC0GUtDdBchM0RLXziIWLCzfrLXxAg9YOEuKj+gjwlf3z1klvexMyu6WI2bVrMZ6WPa675Qn2K9/2Xv0DkSB0h9BEAifo2L1IfBIlAijFNZFjBUQI+qo8l1t2Y3umPACDzy1+IO/Kaa2tR5rboazflBHEHSX4HkKWWjMmecQDMlmNPkxMchVjQ7wIXzb2k/OAQi3jvFTvbsPc7+xETzdEqKb93uL87GBgqmk8o4lcc1p9l/j8yJc3uw1DYL70IIBNdBzc12hjq+OmrBpASil3el+JVzd6LWCwubTwpF3f3BiwXF/OgXBda8Ag8RuYwalX9f2j1eXcl+QKl9AmYVBti4cHbEQXqN5GUDxX5SYUCzIvlmlwZUP57jnDzeYRQBBapjxjML2fjmsGR8BPwkoilqfV4OQtaILVOFmrQlCo/gaPSMsK5sZ/Xo9/ubw92Dge9331JkS+ZPnqBxZsErlt6tZt4huDSSYnQve2jrAz1QcCg2Amca1+CS2IpCRBH5ve0QW2HCganIghUizQbd2K6mZYpdyCEKvJKxcRy0sCTMbrEF1P0HRHspoKQJz14yJQnQTcJHwV9sscaYE1sDjHhUrI78HffQCIH4bQJywoRJQWx/hQP1W5/cACUaU5o7uzd96FyB+9g9+Dv9FCtEB8/v1T/2C9VaJf8LG/+7vLmexIbyMUECL2+WG+ztCpwaKjV5TfFif9NyK+eaznNDefuzUtwrsJTKqfU878p7TTTIKHRQk2i/QF+N7IysNJQ0n7YGxwd0usH/MCDPEkXeImUQMa1NqultGZi1p85W7kaDxElB35Y8QA+LdtrgoTVIQfNw070GofTIRTR4dhYcTX5UM+aieGXRfsMBMj5JQA/CobqpPicnfQFfnXhJ+J0RMB3pAiN8ODcNJzM7AxyZppmV/WNZmbxPnQzwXBenVT2DPzWNpVAFSAexElA1Juc4kRRKV4aALx6/uuw/zwVFtwwplahQkRBWWCqUYDDUerg0md6QGaQnM6Mr8MUjZcTkiUYxqFmqPPDYsoQ6rgmmDPu0C0HJcBTy4IJoVoBzxShbJ0w8sl7DDEW4p6JTJZiTm/0vp25dtLD7YCZsiTb8e3FiYDPHGeAhBLibrFZMc+6cBThx5nNfMpSuE239Xdw6cCpnFnmbC31MIuAdq+7NJDLNqeZhEiZP4bkyvEvJzH5V47hiwkBP+ymh5+pKp4hMEl41aKas7bxDEmkJrZVs5uS8kB9bAnOd7TBEf+/eyEBOyYSMxN7C3+TrRmQpIs09dKl3CYKQY46gdoZOLusQ5Qy+CFyKGRmtnhecLYuifc4sXCWc9LyJmIffuawSc2koorP5WiET4JNRL6smHlQ8y1x8dKd5l8wjNOAIACEYDAF4YcV6u8ko35rEKabu/jd6/rqOkGFD8PIv1xovuNNtEmkJLoFA8jlolGocp5nS5mHpTWbUfUJDi77O2zA1Kz01Jd4cmpojVm7ZhlgSpzLCq2H3N7rlLdeTN26qRDe29z9dZYfCNZov5vtIuTdHunoDAZ9CllISuarDBCXJRpl1FGX4SKKHyf4KRN6DZ2LGS+suvUZ04GjGnW40G+vwb0s2zZZ3FyA2xirPe4VQmMPmPu2eFBvVpvcCazjYHMPEsejH7ubPNIEEp/n8Hlm7jnRHlWQ1hfco9d0CnzWMP8uPBYP2s9NeKP4qrndYBGCo9KRi7JNfinAnqVHy4hF+qujpogIRC5eTCKHbattZTyeDW+CFtdENIyooZ1nSo7dTTW/bkaW3QlXRaXGCumXaYvS3M074cxAUOQ5A9K+EvloETc7EcUMx4jNzEPMJi/AGu0GK5/Ts0KIgb8J2Or76i6jT+Srcuihk9XtrqcmOD9ZneAcpjenZVO8FoEGy5QWWBCA287ckXpSn2NZK3lW6eDRo+oOGzwNzsK+rK8WgfmbbU+ypSXB31nnJTwFVO6xO9PtcF3d/6DpDogCDwAXnHVCJCXH0PB/i8BV/VBpi7ldWseRmmxzZ4TPnFCmdzLS3gVXvcZZ6+hqPjvvxbsTPwp5NhX0TZaGair+gonRm9G4iqKrCNxSRVTl2oykN81RC70noNVayCLAxLbO3A074sglDzahF4YZj5LuY3grIbNDX3nsID2cbv0dHYgm+dnBZGbVLaizYj7ejmeza0Wk8YBqRg4O7wUp2cFg434x2Dve3z7ej3y47qPVRSP3joKikTSAT1T3Iu/3+dmB+1+hbuTOURpf8indZr3ffP893SiESaK7EryVsHsS63Y9uScHXZmDoyXVLM7ke2ngxv4OVK1Atj8mQhm5a+CzkwMUBNGiUFagBi8BHUqDGYWQF1HkYaLvyYVzi3SVVXvsTfgwYmh0ywcTNCIFgmvz10TGE2hQQBca/1SzCXdhnHYXsCBOulIPFIuhlHr818D+Zf57V5wL/NdR8Ndh8NdB8Nd+8FfY5m7w107wlx2J/R59C2txASVdgRXJxlIPcH7NDCLHUaWu7cH2w6Pe76JTc1w8wizH505qcpaL2/oX+oVox6nyMGH9r31Vs9WD+etfftrRdN8urNi0x/WGByA2ENIqom6PkY3uFbpsFrP5XX+wd7C73b+Y93c2naqIoCT3iODbJILG3ayqmjjZPJdmDg7Sr9nttM8RnC0igGu3drYH+1vbe1vR/d6cTq74eS0X7pzPpLPXE7cCL5oz5EBs5VNcznOMs0cziYdw7YRT3NlWNuq6D/Cg7aPj3b3jnYf3fbF3Hj58uHtooq57n7TOc0pohrGc9Dd+9LcFxwcolUGnv/4QWPKSwhy+HV0E4tTLiPTBLor0MZRVuq2ouBJS8JEMtxR30hxxChVnkjSGrJSStQIGBrHNGsp7kLvjav4ZJ+Ah/rj+roLECwxUOa08KVp3IQpuZQPkqjyt5mgsklSg70viCmWbwuNB9frEZGs3p9dTrtH3y18ABzFktblb7P6qL4sHlAJ/jt6C9kHx2TenT5+e8wvxWfF58avyZvob/L/in6VN/22uKng+Go3Px/5Hnxd/hheaehlyHuy8iXrmvJ8H2OfLc2aq++xv79NCWzJwisFPK88OMwiL9eUZHXRK0vrPINsOsAjfoHBKt7vhe3EJ+5WIkt3dvZ0jC30cfEJESV6OhMC1Zd/78ZEQ29twxX++1uv2Cdr+90njSwhx/IrD+cGvxKaRNxKsgeSeE/jI/aia6BfM2+K++8IbU+4ZxKLJuO3HvW01QwTPv6q5A0A5CPQ/am2Xp+net167uNAnqz2/cedE24YDWH2c1jO1Jd3H9fHh/s6BWkE7cIvv2nNOkYrMW/5UKrn6hxd7d7+FYP+4/i4yVuFfkHMJXG3nw2n4L3wn2v5Nif/ipMef6W4opB5ZoEWc6R/wY+sA4qsJpTNFUATEJfG/mx4owMk9XOgfmdKFYerLjhnGKzcVp4Nz/Wfp5QY/7d+YT83Y0MPIuzqX/7ZfwIA7f+GD/LedPISdeXI3/J9rIG6ckA58LDsPuf8+LfGW/QNkR2cDwK2AhUqRO9VdrT6lSG2xAci/MWu+axDltMxb4Z+mH78NsMK84FujkQD75KvhbtgewnWPRpXZmD1eBPfuDi/lu3ZnQOK7Nxk3Ykv+w3xRd2j3wIzEbcuW/aOPjLozs0Syc3u7SS/YVuIz+XW4k99jc9dle01aoZMPF3vl/uhwf1gNhuXBzsPqoNwfPrzcOzgqRwc7lwea84KO1XO5kOfymvZ+c+Hez+8ZBA5Jfufweraw13XVnlM8FF7ZwYETJg/3D/cPf0MAcPxyKJMy3wbfm+u6Oh+cb5+j0+Qc/H0Xx4PffP//AZ/i7Ho=','no'),(4236,'woocs','a:2:{s:3:\"USD\";a:9:{s:4:\"name\";s:3:\"USD\";s:4:\"rate\";d:1.149999999999999911182158029987476766109466552734375;s:6:\"symbol\";s:5:\"&#36;\";s:8:\"position\";s:5:\"right\";s:9:\"is_etalon\";i:0;s:11:\"description\";s:56:\"change the rate and this description to the right values\";s:10:\"hide_cents\";i:0;s:13:\"hide_on_front\";i:0;s:4:\"flag\";s:0:\"\";}s:3:\"INR\";a:9:{s:4:\"name\";s:3:\"INR\";s:4:\"rate\";i:1;s:6:\"symbol\";s:7:\"&#8377;\";s:8:\"position\";s:10:\"left_space\";s:9:\"is_etalon\";i:1;s:11:\"description\";s:0:\"\";s:10:\"hide_cents\";i:0;s:13:\"hide_on_front\";i:0;s:4:\"flag\";s:0:\"\";}}','yes'),(4274,'installer_repositories_with_theme','a:1:{i:0;s:7:\"toolset\";}','yes'),(6538,'product_cat_children','a:0:{}','yes'),(6910,'woocommerce_bacs_settings','a:11:{s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:20:\"Direct bank transfer\";s:11:\"description\";s:176:\"Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order will not be shipped until the funds have cleared in our account.\";s:12:\"instructions\";s:0:\"\";s:15:\"account_details\";s:0:\"\";s:12:\"account_name\";s:0:\"\";s:14:\"account_number\";s:0:\"\";s:9:\"sort_code\";s:0:\"\";s:9:\"bank_name\";s:0:\"\";s:4:\"iban\";s:0:\"\";s:3:\"bic\";s:0:\"\";}','yes'),(6913,'woocommerce_bacs_accounts','a:1:{i:0;a:6:{s:12:\"account_name\";s:4:\"sonu\";s:14:\"account_number\";s:15:\"101101001883312\";s:9:\"bank_name\";s:7:\"federal\";s:9:\"sort_code\";s:9:\"FDRL10110\";s:4:\"iban\";s:0:\"\";s:3:\"bic\";s:0:\"\";}}','yes'),(7075,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:0;s:3:\"all\";i:0;s:9:\"moderated\";i:0;s:8:\"approved\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(7147,'db_upgraded','','yes'),(7160,'otgs_active_components','a:2:{s:6:\"plugin\";a:7:{i:0;a:3:{s:4:\"File\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:4:\"Name\";s:14:\"Contact Form 7\";s:7:\"Version\";s:5:\"5.5.3\";}i:1;a:3:{s:4:\"File\";s:53:\"nextend-facebook-connect/nextend-facebook-connect.php\";s:4:\"Name\";s:20:\"Nextend Social Login\";s:7:\"Version\";s:5:\"3.1.3\";}i:2;a:3:{s:4:\"File\";s:27:\"woocommerce/woocommerce.php\";s:4:\"Name\";s:11:\"WooCommerce\";s:7:\"Version\";s:5:\"5.9.1\";}i:3;a:3:{s:4:\"File\";s:45:\"woocommerce-multilingual/wpml-woocommerce.php\";s:4:\"Name\";s:24:\"WooCommerce Multilingual\";s:7:\"Version\";s:6:\"4.12.1\";}i:4;a:3:{s:4:\"File\";s:39:\"woocommerce-currency-switcher/index.php\";s:4:\"Name\";s:37:\"WOOCS - WooCommerce Currency Switcher\";s:7:\"Version\";s:7:\"1.3.7.3\";}i:5;a:3:{s:4:\"File\";s:33:\"yith-woocommerce-compare/init.php\";s:4:\"Name\";s:24:\"YITH WooCommerce Compare\";s:7:\"Version\";s:5:\"2.8.0\";}i:6;a:3:{s:4:\"File\";s:34:\"yith-woocommerce-wishlist/init.php\";s:4:\"Name\";s:25:\"YITH WooCommerce Wishlist\";s:7:\"Version\";s:5:\"3.3.0\";}}s:5:\"theme\";a:1:{i:0;a:3:{s:8:\"Template\";s:8:\"flatsome\";s:4:\"Name\";s:7:\"Padmini\";s:7:\"Version\";s:3:\"3.0\";}}}','yes'),(7195,'can_compress_scripts','0','no'),(7394,'woocommerce_analytics_enabled','yes','yes'),(7397,'woocommerce_onboarding_profile','a:1:{s:9:\"completed\";b:1;}','yes'),(7668,'_site_transient_timeout_php_check_0260183cef5829810c63d4ec9ff87fd1','1652769765','no'),(7669,'_site_transient_php_check_0260183cef5829810c63d4ec9ff87fd1','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(7670,'_transient_timeout_4ff8fda739ca2ae79966df7','1652783343','no'),(7671,'_transient_4ff8fda739ca2ae79966df7','a:5:{s:22:\"woocs_current_currency\";s:3:\"INR\";s:24:\"woocs_first_unique_visit\";s:1:\"1\";s:22:\"woocs_default_currency\";s:3:\"INR\";s:18:\"woocs_user_country\";s:2:\"IN\";s:24:\"woocs_first_unique_geoip\";s:1:\"1\";}','no'),(7673,'_transient_timeout_6d9a6fb042419d791a55751','1652783344','no'),(7674,'_transient_6d9a6fb042419d791a55751','a:5:{s:22:\"woocs_current_currency\";s:3:\"INR\";s:24:\"woocs_first_unique_visit\";s:1:\"1\";s:22:\"woocs_default_currency\";s:3:\"INR\";s:18:\"woocs_user_country\";s:2:\"AE\";s:24:\"woocs_first_unique_geoip\";s:1:\"1\";}','no'),(7677,'_transient_timeout_wc_term_counts','1655287757','no'),(7678,'_transient_wc_term_counts','a:5:{i:77;s:1:\"5\";i:80;s:1:\"3\";i:79;s:1:\"5\";i:78;s:1:\"4\";i:81;s:1:\"5\";}','no'),(7679,'_transient_timeout_wc_product_children_1023','1655287757','no'),(7680,'_transient_wc_product_children_1023','a:2:{s:3:\"all\";a:2:{i:0;i:1094;i:1;i:1024;}s:7:\"visible\";a:2:{i:0;i:1094;i:1;i:1024;}}','no'),(7681,'_transient_timeout_wc_var_prices_1023','1655299128','no'),(7682,'_transient_wc_var_prices_1023','{\"version\":\"1641268844\",\"25df18c33221baffe4e5b185bbffaca3\":{\"price\":{\"1094\":\"1800.00\",\"1024\":\"150.00\"},\"regular_price\":{\"1094\":\"1800.00\",\"1024\":\"150.00\"},\"sale_price\":{\"1094\":\"1800.00\",\"1024\":\"150.00\"}},\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"1094\":\"1800.00\",\"1024\":\"150.00\"},\"regular_price\":{\"1094\":\"1800.00\",\"1024\":\"150.00\"},\"sale_price\":{\"1094\":\"1800.00\",\"1024\":\"150.00\"}}}','no'),(7683,'_transient_timeout_wc_product_children_1019','1655287757','no'),(7684,'_transient_wc_product_children_1019','a:2:{s:3:\"all\";a:2:{i:0;i:1093;i:1;i:1021;}s:7:\"visible\";a:2:{i:0;i:1093;i:1;i:1021;}}','no'),(7685,'_transient_timeout_wc_var_prices_1019','1655299128','no'),(7686,'_transient_wc_var_prices_1019','{\"version\":\"1641268844\",\"25df18c33221baffe4e5b185bbffaca3\":{\"price\":{\"1093\":\"1500.00\",\"1021\":\"125.00\"},\"regular_price\":{\"1093\":\"1500.00\",\"1021\":\"125.00\"},\"sale_price\":{\"1093\":\"1500.00\",\"1021\":\"125.00\"}},\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"1093\":\"1500.00\",\"1021\":\"125.00\"},\"regular_price\":{\"1093\":\"1500.00\",\"1021\":\"125.00\"},\"sale_price\":{\"1093\":\"1500.00\",\"1021\":\"125.00\"}}}','no'),(7687,'_transient_timeout_wc_product_children_1015','1655287757','no'),(7688,'_transient_wc_product_children_1015','a:2:{s:3:\"all\";a:2:{i:0;i:1092;i:1;i:1016;}s:7:\"visible\";a:2:{i:0;i:1092;i:1;i:1016;}}','no'),(7689,'_transient_timeout_wc_var_prices_1015','1655299128','no'),(7690,'_transient_wc_var_prices_1015','{\"version\":\"1641268844\",\"25df18c33221baffe4e5b185bbffaca3\":{\"price\":{\"1092\":\"1800.00\",\"1016\":\"150.00\"},\"regular_price\":{\"1092\":\"1800.00\",\"1016\":\"150.00\"},\"sale_price\":{\"1092\":\"1800.00\",\"1016\":\"150.00\"}},\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"1092\":\"1800.00\",\"1016\":\"150.00\"},\"regular_price\":{\"1092\":\"1800.00\",\"1016\":\"150.00\"},\"sale_price\":{\"1092\":\"1800.00\",\"1016\":\"150.00\"}}}','no'),(7691,'_transient_timeout_wc_product_children_1012','1655287757','no'),(7692,'_transient_wc_product_children_1012','a:2:{s:3:\"all\";a:2:{i:0;i:1013;i:1;i:1091;}s:7:\"visible\";a:2:{i:0;i:1013;i:1;i:1091;}}','no'),(7693,'_transient_timeout_wc_var_prices_1012','1655299128','no'),(7694,'_transient_wc_var_prices_1012','{\"version\":\"1641268844\",\"25df18c33221baffe4e5b185bbffaca3\":{\"price\":{\"1013\":\"150.00\",\"1091\":\"1800.00\"},\"regular_price\":{\"1013\":\"150.00\",\"1091\":\"1800.00\"},\"sale_price\":{\"1013\":\"150.00\",\"1091\":\"1800.00\"}},\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"1013\":\"150.00\",\"1091\":\"1800.00\"},\"regular_price\":{\"1013\":\"150.00\",\"1091\":\"1800.00\"},\"sale_price\":{\"1013\":\"150.00\",\"1091\":\"1800.00\"}}}','no'),(7695,'_transient_timeout_wc_product_children_1009','1655287757','no'),(7696,'_transient_wc_product_children_1009','a:2:{s:3:\"all\";a:2:{i:0;i:1014;i:1;i:1090;}s:7:\"visible\";a:2:{i:0;i:1014;i:1;i:1090;}}','no'),(7697,'_transient_timeout_wc_var_prices_1009','1655299128','no'),(7698,'_transient_wc_var_prices_1009','{\"version\":\"1641268844\",\"25df18c33221baffe4e5b185bbffaca3\":{\"price\":{\"1014\":\"125.00\",\"1090\":\"1500.00\"},\"regular_price\":{\"1014\":\"125.00\",\"1090\":\"1500.00\"},\"sale_price\":{\"1014\":\"125.00\",\"1090\":\"1500.00\"}},\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"1014\":\"125.00\",\"1090\":\"1500.00\"},\"regular_price\":{\"1014\":\"125.00\",\"1090\":\"1500.00\"},\"sale_price\":{\"1014\":\"125.00\",\"1090\":\"1500.00\"}}}','no'),(7699,'_transient_timeout_wc_product_children_1005','1655287757','no'),(7700,'_transient_wc_product_children_1005','a:2:{s:3:\"all\";a:4:{i:0;i:1088;i:1;i:1089;i:2;i:1007;i:3;i:1008;}s:7:\"visible\";a:4:{i:0;i:1088;i:1;i:1089;i:2;i:1007;i:3;i:1008;}}','no'),(7701,'_transient_timeout_wc_var_prices_1005','1655299128','no'),(7702,'_transient_wc_var_prices_1005','{\"version\":\"1641268844\",\"25df18c33221baffe4e5b185bbffaca3\":{\"price\":{\"1088\":\"960.00\",\"1089\":\"1800.00\",\"1007\":\"80.00\",\"1008\":\"150.00\"},\"regular_price\":{\"1088\":\"960.00\",\"1089\":\"1800.00\",\"1007\":\"80.00\",\"1008\":\"150.00\"},\"sale_price\":{\"1088\":\"960.00\",\"1089\":\"1800.00\",\"1007\":\"80.00\",\"1008\":\"150.00\"}},\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"1088\":\"960.00\",\"1089\":\"1800.00\",\"1007\":\"80.00\",\"1008\":\"150.00\"},\"regular_price\":{\"1088\":\"960.00\",\"1089\":\"1800.00\",\"1007\":\"80.00\",\"1008\":\"150.00\"},\"sale_price\":{\"1088\":\"960.00\",\"1089\":\"1800.00\",\"1007\":\"80.00\",\"1008\":\"150.00\"}}}','no'),(7703,'_transient_timeout_wc_product_children_1000','1655287757','no'),(7704,'_transient_wc_product_children_1000','a:2:{s:3:\"all\";a:4:{i:0;i:1086;i:1;i:1087;i:2;i:1003;i:3;i:1004;}s:7:\"visible\";a:4:{i:0;i:1086;i:1;i:1087;i:2;i:1003;i:3;i:1004;}}','no'),(7705,'_transient_timeout_wc_var_prices_1000','1655299128','no'),(7706,'_transient_wc_var_prices_1000','{\"version\":\"1641268844\",\"25df18c33221baffe4e5b185bbffaca3\":{\"price\":{\"1086\":\"600.00\",\"1087\":\"1800.00\",\"1003\":\"50.00\",\"1004\":\"150.00\"},\"regular_price\":{\"1086\":\"600.00\",\"1087\":\"1800.00\",\"1003\":\"50.00\",\"1004\":\"150.00\"},\"sale_price\":{\"1086\":\"600.00\",\"1087\":\"1800.00\",\"1003\":\"50.00\",\"1004\":\"150.00\"}},\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"1086\":\"600.00\",\"1087\":\"1800.00\",\"1003\":\"50.00\",\"1004\":\"150.00\"},\"regular_price\":{\"1086\":\"600.00\",\"1087\":\"1800.00\",\"1003\":\"50.00\",\"1004\":\"150.00\"},\"sale_price\":{\"1086\":\"600.00\",\"1087\":\"1800.00\",\"1003\":\"50.00\",\"1004\":\"150.00\"}}}','no'),(7707,'_transient_timeout_wc_product_children_999','1655287757','no'),(7708,'_transient_wc_product_children_999','a:2:{s:3:\"all\";a:4:{i:0;i:1095;i:1;i:1096;i:2;i:1097;i:3;i:1098;}s:7:\"visible\";a:4:{i:0;i:1095;i:1;i:1096;i:2;i:1097;i:3;i:1098;}}','no'),(7709,'_transient_timeout_wc_var_prices_999','1655299128','no'),(7710,'_transient_wc_var_prices_999','{\"version\":\"1641268844\",\"25df18c33221baffe4e5b185bbffaca3\":{\"price\":{\"1095\":\"40.00\",\"1096\":\"480.00\",\"1097\":\"80.00\",\"1098\":\"960.00\"},\"regular_price\":{\"1095\":\"40.00\",\"1096\":\"480.00\",\"1097\":\"80.00\",\"1098\":\"960.00\"},\"sale_price\":{\"1095\":\"40.00\",\"1096\":\"480.00\",\"1097\":\"80.00\",\"1098\":\"960.00\"}},\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"1095\":\"40.00\",\"1096\":\"480.00\",\"1097\":\"80.00\",\"1098\":\"960.00\"},\"regular_price\":{\"1095\":\"40.00\",\"1096\":\"480.00\",\"1097\":\"80.00\",\"1098\":\"960.00\"},\"sale_price\":{\"1095\":\"40.00\",\"1096\":\"480.00\",\"1097\":\"80.00\",\"1098\":\"960.00\"}}}','no'),(7716,'_site_transient_timeout_kirki_googlefonts_cache','1652782275','no'),(7717,'_site_transient_kirki_googlefonts_cache','a:1064:{s:7:\"ABeeZee\";a:3:{s:5:\"label\";s:7:\"ABeeZee\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Abel\";a:3:{s:5:\"label\";s:4:\"Abel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Abhaya Libre\";a:3:{s:5:\"label\";s:12:\"Abhaya Libre\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Abril Fatface\";a:3:{s:5:\"label\";s:13:\"Abril Fatface\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Aclonica\";a:3:{s:5:\"label\";s:8:\"Aclonica\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Acme\";a:3:{s:5:\"label\";s:4:\"Acme\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Actor\";a:3:{s:5:\"label\";s:5:\"Actor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Adamina\";a:3:{s:5:\"label\";s:7:\"Adamina\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Advent Pro\";a:3:{s:5:\"label\";s:10:\"Advent Pro\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Aguafina Script\";a:3:{s:5:\"label\";s:15:\"Aguafina Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Akaya Kanadaka\";a:3:{s:5:\"label\";s:14:\"Akaya Kanadaka\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Akaya Telivigala\";a:3:{s:5:\"label\";s:16:\"Akaya Telivigala\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Akronim\";a:3:{s:5:\"label\";s:7:\"Akronim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Aladin\";a:3:{s:5:\"label\";s:6:\"Aladin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Alata\";a:3:{s:5:\"label\";s:5:\"Alata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Alatsi\";a:3:{s:5:\"label\";s:6:\"Alatsi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Aldrich\";a:3:{s:5:\"label\";s:7:\"Aldrich\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Alef\";a:3:{s:5:\"label\";s:4:\"Alef\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Alegreya\";a:3:{s:5:\"label\";s:8:\"Alegreya\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Alegreya SC\";a:3:{s:5:\"label\";s:11:\"Alegreya SC\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"800\";i:5;s:9:\"800italic\";i:6;s:3:\"900\";i:7;s:9:\"900italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Alegreya Sans\";a:3:{s:5:\"label\";s:13:\"Alegreya Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Alegreya Sans SC\";a:3:{s:5:\"label\";s:16:\"Alegreya Sans SC\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Aleo\";a:3:{s:5:\"label\";s:4:\"Aleo\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Alex Brush\";a:3:{s:5:\"label\";s:10:\"Alex Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Alfa Slab One\";a:3:{s:5:\"label\";s:13:\"Alfa Slab One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Alice\";a:3:{s:5:\"label\";s:5:\"Alice\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Alike\";a:3:{s:5:\"label\";s:5:\"Alike\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Alike Angular\";a:3:{s:5:\"label\";s:13:\"Alike Angular\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Allan\";a:3:{s:5:\"label\";s:5:\"Allan\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Allerta\";a:3:{s:5:\"label\";s:7:\"Allerta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Allerta Stencil\";a:3:{s:5:\"label\";s:15:\"Allerta Stencil\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Allura\";a:3:{s:5:\"label\";s:6:\"Allura\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Almarai\";a:3:{s:5:\"label\";s:7:\"Almarai\";s:8:\"variants\";a:4:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:3:\"800\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Almendra\";a:3:{s:5:\"label\";s:8:\"Almendra\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Almendra Display\";a:3:{s:5:\"label\";s:16:\"Almendra Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Almendra SC\";a:3:{s:5:\"label\";s:11:\"Almendra SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Amarante\";a:3:{s:5:\"label\";s:8:\"Amarante\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Amaranth\";a:3:{s:5:\"label\";s:8:\"Amaranth\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Amatic SC\";a:3:{s:5:\"label\";s:9:\"Amatic SC\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Amethysta\";a:3:{s:5:\"label\";s:9:\"Amethysta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Amiko\";a:3:{s:5:\"label\";s:5:\"Amiko\";s:8:\"variants\";a:3:{i:0;s:3:\"600\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Amiri\";a:3:{s:5:\"label\";s:5:\"Amiri\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Amita\";a:3:{s:5:\"label\";s:5:\"Amita\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Anaheim\";a:3:{s:5:\"label\";s:7:\"Anaheim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Andada\";a:3:{s:5:\"label\";s:6:\"Andada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Andika\";a:3:{s:5:\"label\";s:6:\"Andika\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Andika New Basic\";a:3:{s:5:\"label\";s:16:\"Andika New Basic\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Angkor\";a:3:{s:5:\"label\";s:6:\"Angkor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:24:\"Annie Use Your Telescope\";a:3:{s:5:\"label\";s:24:\"Annie Use Your Telescope\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Anonymous Pro\";a:3:{s:5:\"label\";s:13:\"Anonymous Pro\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:5:\"Antic\";a:3:{s:5:\"label\";s:5:\"Antic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Antic Didone\";a:3:{s:5:\"label\";s:12:\"Antic Didone\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Antic Slab\";a:3:{s:5:\"label\";s:10:\"Antic Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Anton\";a:3:{s:5:\"label\";s:5:\"Anton\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Antonio\";a:3:{s:5:\"label\";s:7:\"Antonio\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Arapey\";a:3:{s:5:\"label\";s:6:\"Arapey\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Arbutus\";a:3:{s:5:\"label\";s:7:\"Arbutus\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Arbutus Slab\";a:3:{s:5:\"label\";s:12:\"Arbutus Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Architects Daughter\";a:3:{s:5:\"label\";s:19:\"Architects Daughter\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Archivo\";a:3:{s:5:\"label\";s:7:\"Archivo\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Archivo Black\";a:3:{s:5:\"label\";s:13:\"Archivo Black\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Archivo Narrow\";a:3:{s:5:\"label\";s:14:\"Archivo Narrow\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Aref Ruqaa\";a:3:{s:5:\"label\";s:10:\"Aref Ruqaa\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Arima Madurai\";a:3:{s:5:\"label\";s:13:\"Arima Madurai\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Arimo\";a:3:{s:5:\"label\";s:5:\"Arimo\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Arizonia\";a:3:{s:5:\"label\";s:8:\"Arizonia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Armata\";a:3:{s:5:\"label\";s:6:\"Armata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Arsenal\";a:3:{s:5:\"label\";s:7:\"Arsenal\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Artifika\";a:3:{s:5:\"label\";s:8:\"Artifika\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Arvo\";a:3:{s:5:\"label\";s:4:\"Arvo\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Arya\";a:3:{s:5:\"label\";s:4:\"Arya\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Asap\";a:3:{s:5:\"label\";s:4:\"Asap\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Asap Condensed\";a:3:{s:5:\"label\";s:14:\"Asap Condensed\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Asar\";a:3:{s:5:\"label\";s:4:\"Asar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Asset\";a:3:{s:5:\"label\";s:5:\"Asset\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Assistant\";a:3:{s:5:\"label\";s:9:\"Assistant\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Astloch\";a:3:{s:5:\"label\";s:7:\"Astloch\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Asul\";a:3:{s:5:\"label\";s:4:\"Asul\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Athiti\";a:3:{s:5:\"label\";s:6:\"Athiti\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Atma\";a:3:{s:5:\"label\";s:4:\"Atma\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Atomic Age\";a:3:{s:5:\"label\";s:10:\"Atomic Age\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Aubrey\";a:3:{s:5:\"label\";s:6:\"Aubrey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Audiowide\";a:3:{s:5:\"label\";s:9:\"Audiowide\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Autour One\";a:3:{s:5:\"label\";s:10:\"Autour One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Average\";a:3:{s:5:\"label\";s:7:\"Average\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Average Sans\";a:3:{s:5:\"label\";s:12:\"Average Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Averia Gruesa Libre\";a:3:{s:5:\"label\";s:19:\"Averia Gruesa Libre\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Averia Libre\";a:3:{s:5:\"label\";s:12:\"Averia Libre\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Averia Sans Libre\";a:3:{s:5:\"label\";s:17:\"Averia Sans Libre\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Averia Serif Libre\";a:3:{s:5:\"label\";s:18:\"Averia Serif Libre\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"B612\";a:3:{s:5:\"label\";s:4:\"B612\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"B612 Mono\";a:3:{s:5:\"label\";s:9:\"B612 Mono\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:10:\"Bad Script\";a:3:{s:5:\"label\";s:10:\"Bad Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Bahiana\";a:3:{s:5:\"label\";s:7:\"Bahiana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Bahianita\";a:3:{s:5:\"label\";s:9:\"Bahianita\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Bai Jamjuree\";a:3:{s:5:\"label\";s:12:\"Bai Jamjuree\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Ballet\";a:3:{s:5:\"label\";s:6:\"Ballet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Baloo 2\";a:3:{s:5:\"label\";s:7:\"Baloo 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Baloo Bhai 2\";a:3:{s:5:\"label\";s:12:\"Baloo Bhai 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Baloo Bhaina 2\";a:3:{s:5:\"label\";s:14:\"Baloo Bhaina 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Baloo Chettan 2\";a:3:{s:5:\"label\";s:15:\"Baloo Chettan 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Baloo Da 2\";a:3:{s:5:\"label\";s:10:\"Baloo Da 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Baloo Paaji 2\";a:3:{s:5:\"label\";s:13:\"Baloo Paaji 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Baloo Tamma 2\";a:3:{s:5:\"label\";s:13:\"Baloo Tamma 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Baloo Tammudu 2\";a:3:{s:5:\"label\";s:15:\"Baloo Tammudu 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Baloo Thambi 2\";a:3:{s:5:\"label\";s:14:\"Baloo Thambi 2\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Balsamiq Sans\";a:3:{s:5:\"label\";s:13:\"Balsamiq Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Balthazar\";a:3:{s:5:\"label\";s:9:\"Balthazar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Bangers\";a:3:{s:5:\"label\";s:7:\"Bangers\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Barlow\";a:3:{s:5:\"label\";s:6:\"Barlow\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Barlow Condensed\";a:3:{s:5:\"label\";s:16:\"Barlow Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Barlow Semi Condensed\";a:3:{s:5:\"label\";s:21:\"Barlow Semi Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Barriecito\";a:3:{s:5:\"label\";s:10:\"Barriecito\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Barrio\";a:3:{s:5:\"label\";s:6:\"Barrio\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Basic\";a:3:{s:5:\"label\";s:5:\"Basic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Baskervville\";a:3:{s:5:\"label\";s:12:\"Baskervville\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Battambang\";a:3:{s:5:\"label\";s:10:\"Battambang\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Baumans\";a:3:{s:5:\"label\";s:7:\"Baumans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Bayon\";a:3:{s:5:\"label\";s:5:\"Bayon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Be Vietnam\";a:3:{s:5:\"label\";s:10:\"Be Vietnam\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Bebas Neue\";a:3:{s:5:\"label\";s:10:\"Bebas Neue\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Belgrano\";a:3:{s:5:\"label\";s:8:\"Belgrano\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Bellefair\";a:3:{s:5:\"label\";s:9:\"Bellefair\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Belleza\";a:3:{s:5:\"label\";s:7:\"Belleza\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Bellota\";a:3:{s:5:\"label\";s:7:\"Bellota\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Bellota Text\";a:3:{s:5:\"label\";s:12:\"Bellota Text\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"BenchNine\";a:3:{s:5:\"label\";s:9:\"BenchNine\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Benne\";a:3:{s:5:\"label\";s:5:\"Benne\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Bentham\";a:3:{s:5:\"label\";s:7:\"Bentham\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Berkshire Swash\";a:3:{s:5:\"label\";s:15:\"Berkshire Swash\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Beth Ellen\";a:3:{s:5:\"label\";s:10:\"Beth Ellen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Bevan\";a:3:{s:5:\"label\";s:5:\"Bevan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:21:\"Big Shoulders Display\";a:3:{s:5:\"label\";s:21:\"Big Shoulders Display\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:28:\"Big Shoulders Inline Display\";a:3:{s:5:\"label\";s:28:\"Big Shoulders Inline Display\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:25:\"Big Shoulders Inline Text\";a:3:{s:5:\"label\";s:25:\"Big Shoulders Inline Text\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:29:\"Big Shoulders Stencil Display\";a:3:{s:5:\"label\";s:29:\"Big Shoulders Stencil Display\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:26:\"Big Shoulders Stencil Text\";a:3:{s:5:\"label\";s:26:\"Big Shoulders Stencil Text\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Big Shoulders Text\";a:3:{s:5:\"label\";s:18:\"Big Shoulders Text\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Bigelow Rules\";a:3:{s:5:\"label\";s:13:\"Bigelow Rules\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Bigshot One\";a:3:{s:5:\"label\";s:11:\"Bigshot One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Bilbo\";a:3:{s:5:\"label\";s:5:\"Bilbo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Bilbo Swash Caps\";a:3:{s:5:\"label\";s:16:\"Bilbo Swash Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"BioRhyme\";a:3:{s:5:\"label\";s:8:\"BioRhyme\";s:8:\"variants\";a:5:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"BioRhyme Expanded\";a:3:{s:5:\"label\";s:17:\"BioRhyme Expanded\";s:8:\"variants\";a:5:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Biryani\";a:3:{s:5:\"label\";s:7:\"Biryani\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Bitter\";a:3:{s:5:\"label\";s:6:\"Bitter\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"Black And White Picture\";a:3:{s:5:\"label\";s:23:\"Black And White Picture\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Black Han Sans\";a:3:{s:5:\"label\";s:14:\"Black Han Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Black Ops One\";a:3:{s:5:\"label\";s:13:\"Black Ops One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Blinker\";a:3:{s:5:\"label\";s:7:\"Blinker\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Bodoni Moda\";a:3:{s:5:\"label\";s:11:\"Bodoni Moda\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Bokor\";a:3:{s:5:\"label\";s:5:\"Bokor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Bona Nova\";a:3:{s:5:\"label\";s:9:\"Bona Nova\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Bonbon\";a:3:{s:5:\"label\";s:6:\"Bonbon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Boogaloo\";a:3:{s:5:\"label\";s:8:\"Boogaloo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Bowlby One\";a:3:{s:5:\"label\";s:10:\"Bowlby One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Bowlby One SC\";a:3:{s:5:\"label\";s:13:\"Bowlby One SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Brawler\";a:3:{s:5:\"label\";s:7:\"Brawler\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Bree Serif\";a:3:{s:5:\"label\";s:10:\"Bree Serif\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Brygada 1918\";a:3:{s:5:\"label\";s:12:\"Brygada 1918\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Bubblegum Sans\";a:3:{s:5:\"label\";s:14:\"Bubblegum Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Bubbler One\";a:3:{s:5:\"label\";s:11:\"Bubbler One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Buda\";a:3:{s:5:\"label\";s:4:\"Buda\";s:8:\"variants\";a:1:{i:0;s:3:\"300\";}s:8:\"category\";s:7:\"display\";}s:7:\"Buenard\";a:3:{s:5:\"label\";s:7:\"Buenard\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Bungee\";a:3:{s:5:\"label\";s:6:\"Bungee\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Bungee Hairline\";a:3:{s:5:\"label\";s:15:\"Bungee Hairline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Bungee Inline\";a:3:{s:5:\"label\";s:13:\"Bungee Inline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Bungee Outline\";a:3:{s:5:\"label\";s:14:\"Bungee Outline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Bungee Shade\";a:3:{s:5:\"label\";s:12:\"Bungee Shade\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Butcherman\";a:3:{s:5:\"label\";s:10:\"Butcherman\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Butterfly Kids\";a:3:{s:5:\"label\";s:14:\"Butterfly Kids\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Cabin\";a:3:{s:5:\"label\";s:5:\"Cabin\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Cabin Condensed\";a:3:{s:5:\"label\";s:15:\"Cabin Condensed\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Cabin Sketch\";a:3:{s:5:\"label\";s:12:\"Cabin Sketch\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Caesar Dressing\";a:3:{s:5:\"label\";s:15:\"Caesar Dressing\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Cagliostro\";a:3:{s:5:\"label\";s:10:\"Cagliostro\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Cairo\";a:3:{s:5:\"label\";s:5:\"Cairo\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Caladea\";a:3:{s:5:\"label\";s:7:\"Caladea\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Calistoga\";a:3:{s:5:\"label\";s:9:\"Calistoga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Calligraffitti\";a:3:{s:5:\"label\";s:14:\"Calligraffitti\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Cambay\";a:3:{s:5:\"label\";s:6:\"Cambay\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Cambo\";a:3:{s:5:\"label\";s:5:\"Cambo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Candal\";a:3:{s:5:\"label\";s:6:\"Candal\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Cantarell\";a:3:{s:5:\"label\";s:9:\"Cantarell\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Cantata One\";a:3:{s:5:\"label\";s:11:\"Cantata One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Cantora One\";a:3:{s:5:\"label\";s:11:\"Cantora One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Capriola\";a:3:{s:5:\"label\";s:8:\"Capriola\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Cardo\";a:3:{s:5:\"label\";s:5:\"Cardo\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Carme\";a:3:{s:5:\"label\";s:5:\"Carme\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Carrois Gothic\";a:3:{s:5:\"label\";s:14:\"Carrois Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Carrois Gothic SC\";a:3:{s:5:\"label\";s:17:\"Carrois Gothic SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Carter One\";a:3:{s:5:\"label\";s:10:\"Carter One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Castoro\";a:3:{s:5:\"label\";s:7:\"Castoro\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Catamaran\";a:3:{s:5:\"label\";s:9:\"Catamaran\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Caudex\";a:3:{s:5:\"label\";s:6:\"Caudex\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Caveat\";a:3:{s:5:\"label\";s:6:\"Caveat\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Caveat Brush\";a:3:{s:5:\"label\";s:12:\"Caveat Brush\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:18:\"Cedarville Cursive\";a:3:{s:5:\"label\";s:18:\"Cedarville Cursive\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Ceviche One\";a:3:{s:5:\"label\";s:11:\"Ceviche One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Chakra Petch\";a:3:{s:5:\"label\";s:12:\"Chakra Petch\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Changa\";a:3:{s:5:\"label\";s:6:\"Changa\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Changa One\";a:3:{s:5:\"label\";s:10:\"Changa One\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Chango\";a:3:{s:5:\"label\";s:6:\"Chango\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Charm\";a:3:{s:5:\"label\";s:5:\"Charm\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Charmonman\";a:3:{s:5:\"label\";s:10:\"Charmonman\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Chathura\";a:3:{s:5:\"label\";s:8:\"Chathura\";s:8:\"variants\";a:5:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Chau Philomene One\";a:3:{s:5:\"label\";s:18:\"Chau Philomene One\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Chela One\";a:3:{s:5:\"label\";s:9:\"Chela One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Chelsea Market\";a:3:{s:5:\"label\";s:14:\"Chelsea Market\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Chenla\";a:3:{s:5:\"label\";s:6:\"Chenla\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Cherry Cream Soda\";a:3:{s:5:\"label\";s:17:\"Cherry Cream Soda\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Cherry Swash\";a:3:{s:5:\"label\";s:12:\"Cherry Swash\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Chewy\";a:3:{s:5:\"label\";s:5:\"Chewy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Chicle\";a:3:{s:5:\"label\";s:6:\"Chicle\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Chilanka\";a:3:{s:5:\"label\";s:8:\"Chilanka\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Chivo\";a:3:{s:5:\"label\";s:5:\"Chivo\";s:8:\"variants\";a:8:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"900\";i:5;s:9:\"900italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Chonburi\";a:3:{s:5:\"label\";s:8:\"Chonburi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Cinzel\";a:3:{s:5:\"label\";s:6:\"Cinzel\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Cinzel Decorative\";a:3:{s:5:\"label\";s:17:\"Cinzel Decorative\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Clicker Script\";a:3:{s:5:\"label\";s:14:\"Clicker Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Coda\";a:3:{s:5:\"label\";s:4:\"Coda\";s:8:\"variants\";a:2:{i:0;s:3:\"800\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Coda Caption\";a:3:{s:5:\"label\";s:12:\"Coda Caption\";s:8:\"variants\";a:1:{i:0;s:3:\"800\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Codystar\";a:3:{s:5:\"label\";s:8:\"Codystar\";s:8:\"variants\";a:2:{i:0;s:3:\"300\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Coiny\";a:3:{s:5:\"label\";s:5:\"Coiny\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Combo\";a:3:{s:5:\"label\";s:5:\"Combo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Comfortaa\";a:3:{s:5:\"label\";s:9:\"Comfortaa\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Comic Neue\";a:3:{s:5:\"label\";s:10:\"Comic Neue\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Coming Soon\";a:3:{s:5:\"label\";s:11:\"Coming Soon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Commissioner\";a:3:{s:5:\"label\";s:12:\"Commissioner\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Concert One\";a:3:{s:5:\"label\";s:11:\"Concert One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Condiment\";a:3:{s:5:\"label\";s:9:\"Condiment\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Content\";a:3:{s:5:\"label\";s:7:\"Content\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Contrail One\";a:3:{s:5:\"label\";s:12:\"Contrail One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Convergence\";a:3:{s:5:\"label\";s:11:\"Convergence\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Cookie\";a:3:{s:5:\"label\";s:6:\"Cookie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Copse\";a:3:{s:5:\"label\";s:5:\"Copse\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Corben\";a:3:{s:5:\"label\";s:6:\"Corben\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Cormorant\";a:3:{s:5:\"label\";s:9:\"Cormorant\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Cormorant Garamond\";a:3:{s:5:\"label\";s:18:\"Cormorant Garamond\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Cormorant Infant\";a:3:{s:5:\"label\";s:16:\"Cormorant Infant\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Cormorant SC\";a:3:{s:5:\"label\";s:12:\"Cormorant SC\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Cormorant Unicase\";a:3:{s:5:\"label\";s:17:\"Cormorant Unicase\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Cormorant Upright\";a:3:{s:5:\"label\";s:17:\"Cormorant Upright\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Courgette\";a:3:{s:5:\"label\";s:9:\"Courgette\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Courier Prime\";a:3:{s:5:\"label\";s:13:\"Courier Prime\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"Cousine\";a:3:{s:5:\"label\";s:7:\"Cousine\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:8:\"Coustard\";a:3:{s:5:\"label\";s:8:\"Coustard\";s:8:\"variants\";a:2:{i:0;s:3:\"900\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:21:\"Covered By Your Grace\";a:3:{s:5:\"label\";s:21:\"Covered By Your Grace\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Crafty Girls\";a:3:{s:5:\"label\";s:12:\"Crafty Girls\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Creepster\";a:3:{s:5:\"label\";s:9:\"Creepster\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Crete Round\";a:3:{s:5:\"label\";s:11:\"Crete Round\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Crimson Pro\";a:3:{s:5:\"label\";s:11:\"Crimson Pro\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Crimson Text\";a:3:{s:5:\"label\";s:12:\"Crimson Text\";s:8:\"variants\";a:6:{i:0;s:3:\"600\";i:1;s:9:\"600italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Croissant One\";a:3:{s:5:\"label\";s:13:\"Croissant One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Crushed\";a:3:{s:5:\"label\";s:7:\"Crushed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Cuprum\";a:3:{s:5:\"label\";s:6:\"Cuprum\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Cute Font\";a:3:{s:5:\"label\";s:9:\"Cute Font\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Cutive\";a:3:{s:5:\"label\";s:6:\"Cutive\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Cutive Mono\";a:3:{s:5:\"label\";s:11:\"Cutive Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"DM Mono\";a:3:{s:5:\"label\";s:7:\"DM Mono\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"DM Sans\";a:3:{s:5:\"label\";s:7:\"DM Sans\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"DM Serif Display\";a:3:{s:5:\"label\";s:16:\"DM Serif Display\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"DM Serif Text\";a:3:{s:5:\"label\";s:13:\"DM Serif Text\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Damion\";a:3:{s:5:\"label\";s:6:\"Damion\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Dancing Script\";a:3:{s:5:\"label\";s:14:\"Dancing Script\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Dangrek\";a:3:{s:5:\"label\";s:7:\"Dangrek\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Darker Grotesque\";a:3:{s:5:\"label\";s:16:\"Darker Grotesque\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"David Libre\";a:3:{s:5:\"label\";s:11:\"David Libre\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Dawning of a New Day\";a:3:{s:5:\"label\";s:20:\"Dawning of a New Day\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Days One\";a:3:{s:5:\"label\";s:8:\"Days One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dekko\";a:3:{s:5:\"label\";s:5:\"Dekko\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Dela Gothic One\";a:3:{s:5:\"label\";s:15:\"Dela Gothic One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Delius\";a:3:{s:5:\"label\";s:6:\"Delius\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:17:\"Delius Swash Caps\";a:3:{s:5:\"label\";s:17:\"Delius Swash Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Delius Unicase\";a:3:{s:5:\"label\";s:14:\"Delius Unicase\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Della Respira\";a:3:{s:5:\"label\";s:13:\"Della Respira\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Denk One\";a:3:{s:5:\"label\";s:8:\"Denk One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Devonshire\";a:3:{s:5:\"label\";s:10:\"Devonshire\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Dhurjati\";a:3:{s:5:\"label\";s:8:\"Dhurjati\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Didact Gothic\";a:3:{s:5:\"label\";s:13:\"Didact Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Diplomata\";a:3:{s:5:\"label\";s:9:\"Diplomata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Diplomata SC\";a:3:{s:5:\"label\";s:12:\"Diplomata SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Do Hyeon\";a:3:{s:5:\"label\";s:8:\"Do Hyeon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dokdo\";a:3:{s:5:\"label\";s:5:\"Dokdo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Domine\";a:3:{s:5:\"label\";s:6:\"Domine\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Donegal One\";a:3:{s:5:\"label\";s:11:\"Donegal One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Doppio One\";a:3:{s:5:\"label\";s:10:\"Doppio One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dorsa\";a:3:{s:5:\"label\";s:5:\"Dorsa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Dosis\";a:3:{s:5:\"label\";s:5:\"Dosis\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"DotGothic16\";a:3:{s:5:\"label\";s:11:\"DotGothic16\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Dr Sugiyama\";a:3:{s:5:\"label\";s:11:\"Dr Sugiyama\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Duru Sans\";a:3:{s:5:\"label\";s:9:\"Duru Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Dynalight\";a:3:{s:5:\"label\";s:9:\"Dynalight\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"EB Garamond\";a:3:{s:5:\"label\";s:11:\"EB Garamond\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Eagle Lake\";a:3:{s:5:\"label\";s:10:\"Eagle Lake\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"East Sea Dokdo\";a:3:{s:5:\"label\";s:14:\"East Sea Dokdo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Eater\";a:3:{s:5:\"label\";s:5:\"Eater\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Economica\";a:3:{s:5:\"label\";s:9:\"Economica\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Eczar\";a:3:{s:5:\"label\";s:5:\"Eczar\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"El Messiri\";a:3:{s:5:\"label\";s:10:\"El Messiri\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Electrolize\";a:3:{s:5:\"label\";s:11:\"Electrolize\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Elsie\";a:3:{s:5:\"label\";s:5:\"Elsie\";s:8:\"variants\";a:2:{i:0;s:3:\"900\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Elsie Swash Caps\";a:3:{s:5:\"label\";s:16:\"Elsie Swash Caps\";s:8:\"variants\";a:2:{i:0;s:3:\"900\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Emblema One\";a:3:{s:5:\"label\";s:11:\"Emblema One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Emilys Candy\";a:3:{s:5:\"label\";s:12:\"Emilys Candy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Encode Sans\";a:3:{s:5:\"label\";s:11:\"Encode Sans\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Encode Sans Condensed\";a:3:{s:5:\"label\";s:21:\"Encode Sans Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Encode Sans Expanded\";a:3:{s:5:\"label\";s:20:\"Encode Sans Expanded\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Encode Sans SC\";a:3:{s:5:\"label\";s:14:\"Encode Sans SC\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:26:\"Encode Sans Semi Condensed\";a:3:{s:5:\"label\";s:26:\"Encode Sans Semi Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"Encode Sans Semi Expanded\";a:3:{s:5:\"label\";s:25:\"Encode Sans Semi Expanded\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Engagement\";a:3:{s:5:\"label\";s:10:\"Engagement\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Englebert\";a:3:{s:5:\"label\";s:9:\"Englebert\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Enriqueta\";a:3:{s:5:\"label\";s:9:\"Enriqueta\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Epilogue\";a:3:{s:5:\"label\";s:8:\"Epilogue\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Erica One\";a:3:{s:5:\"label\";s:9:\"Erica One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Esteban\";a:3:{s:5:\"label\";s:7:\"Esteban\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Euphoria Script\";a:3:{s:5:\"label\";s:15:\"Euphoria Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Ewert\";a:3:{s:5:\"label\";s:5:\"Ewert\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:3:\"Exo\";a:3:{s:5:\"label\";s:3:\"Exo\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Exo 2\";a:3:{s:5:\"label\";s:5:\"Exo 2\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Expletus Sans\";a:3:{s:5:\"label\";s:13:\"Expletus Sans\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Fahkwang\";a:3:{s:5:\"label\";s:8:\"Fahkwang\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Fanwood Text\";a:3:{s:5:\"label\";s:12:\"Fanwood Text\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Farro\";a:3:{s:5:\"label\";s:5:\"Farro\";s:8:\"variants\";a:4:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Farsan\";a:3:{s:5:\"label\";s:6:\"Farsan\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Fascinate\";a:3:{s:5:\"label\";s:9:\"Fascinate\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Fascinate Inline\";a:3:{s:5:\"label\";s:16:\"Fascinate Inline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Faster One\";a:3:{s:5:\"label\";s:10:\"Faster One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Fasthand\";a:3:{s:5:\"label\";s:8:\"Fasthand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Fauna One\";a:3:{s:5:\"label\";s:9:\"Fauna One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Faustina\";a:3:{s:5:\"label\";s:8:\"Faustina\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Federant\";a:3:{s:5:\"label\";s:8:\"Federant\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Federo\";a:3:{s:5:\"label\";s:6:\"Federo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Felipa\";a:3:{s:5:\"label\";s:6:\"Felipa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Fenix\";a:3:{s:5:\"label\";s:5:\"Fenix\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Festive\";a:3:{s:5:\"label\";s:7:\"Festive\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Finger Paint\";a:3:{s:5:\"label\";s:12:\"Finger Paint\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Fira Code\";a:3:{s:5:\"label\";s:9:\"Fira Code\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:9:\"Fira Mono\";a:3:{s:5:\"label\";s:9:\"Fira Mono\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:9:\"Fira Sans\";a:3:{s:5:\"label\";s:9:\"Fira Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Fira Sans Condensed\";a:3:{s:5:\"label\";s:19:\"Fira Sans Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:25:\"Fira Sans Extra Condensed\";a:3:{s:5:\"label\";s:25:\"Fira Sans Extra Condensed\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Fjalla One\";a:3:{s:5:\"label\";s:10:\"Fjalla One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Fjord One\";a:3:{s:5:\"label\";s:9:\"Fjord One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Flamenco\";a:3:{s:5:\"label\";s:8:\"Flamenco\";s:8:\"variants\";a:2:{i:0;s:3:\"300\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Flavors\";a:3:{s:5:\"label\";s:7:\"Flavors\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Fondamento\";a:3:{s:5:\"label\";s:10:\"Fondamento\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Fontdiner Swanky\";a:3:{s:5:\"label\";s:16:\"Fontdiner Swanky\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Forum\";a:3:{s:5:\"label\";s:5:\"Forum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Francois One\";a:3:{s:5:\"label\";s:12:\"Francois One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Frank Ruhl Libre\";a:3:{s:5:\"label\";s:16:\"Frank Ruhl Libre\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:3:\"900\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Fraunces\";a:3:{s:5:\"label\";s:8:\"Fraunces\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Freckle Face\";a:3:{s:5:\"label\";s:12:\"Freckle Face\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Fredericka the Great\";a:3:{s:5:\"label\";s:20:\"Fredericka the Great\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Fredoka One\";a:3:{s:5:\"label\";s:11:\"Fredoka One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Freehand\";a:3:{s:5:\"label\";s:8:\"Freehand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Fresca\";a:3:{s:5:\"label\";s:6:\"Fresca\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Frijole\";a:3:{s:5:\"label\";s:7:\"Frijole\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Fruktur\";a:3:{s:5:\"label\";s:7:\"Fruktur\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Fugaz One\";a:3:{s:5:\"label\";s:9:\"Fugaz One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Fuggles\";a:3:{s:5:\"label\";s:7:\"Fuggles\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"GFS Didot\";a:3:{s:5:\"label\";s:9:\"GFS Didot\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"GFS Neohellenic\";a:3:{s:5:\"label\";s:15:\"GFS Neohellenic\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Gabriela\";a:3:{s:5:\"label\";s:8:\"Gabriela\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Gaegu\";a:3:{s:5:\"label\";s:5:\"Gaegu\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Gafata\";a:3:{s:5:\"label\";s:6:\"Gafata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Galada\";a:3:{s:5:\"label\";s:6:\"Galada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Galdeano\";a:3:{s:5:\"label\";s:8:\"Galdeano\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Galindo\";a:3:{s:5:\"label\";s:7:\"Galindo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Gamja Flower\";a:3:{s:5:\"label\";s:12:\"Gamja Flower\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Gayathri\";a:3:{s:5:\"label\";s:8:\"Gayathri\";s:8:\"variants\";a:3:{i:0;s:3:\"100\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Gelasio\";a:3:{s:5:\"label\";s:7:\"Gelasio\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Gentium Basic\";a:3:{s:5:\"label\";s:13:\"Gentium Basic\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Gentium Book Basic\";a:3:{s:5:\"label\";s:18:\"Gentium Book Basic\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:3:\"Geo\";a:3:{s:5:\"label\";s:3:\"Geo\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Geostar\";a:3:{s:5:\"label\";s:7:\"Geostar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Geostar Fill\";a:3:{s:5:\"label\";s:12:\"Geostar Fill\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Germania One\";a:3:{s:5:\"label\";s:12:\"Germania One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Gidugu\";a:3:{s:5:\"label\";s:6:\"Gidugu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Gilda Display\";a:3:{s:5:\"label\";s:13:\"Gilda Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Girassol\";a:3:{s:5:\"label\";s:8:\"Girassol\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Give You Glory\";a:3:{s:5:\"label\";s:14:\"Give You Glory\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Glass Antiqua\";a:3:{s:5:\"label\";s:13:\"Glass Antiqua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Glegoo\";a:3:{s:5:\"label\";s:6:\"Glegoo\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Gloria Hallelujah\";a:3:{s:5:\"label\";s:17:\"Gloria Hallelujah\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Goblin One\";a:3:{s:5:\"label\";s:10:\"Goblin One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Gochi Hand\";a:3:{s:5:\"label\";s:10:\"Gochi Hand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Goldman\";a:3:{s:5:\"label\";s:7:\"Goldman\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Gorditas\";a:3:{s:5:\"label\";s:8:\"Gorditas\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Gothic A1\";a:3:{s:5:\"label\";s:9:\"Gothic A1\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Gotu\";a:3:{s:5:\"label\";s:4:\"Gotu\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Goudy Bookletter 1911\";a:3:{s:5:\"label\";s:21:\"Goudy Bookletter 1911\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Graduate\";a:3:{s:5:\"label\";s:8:\"Graduate\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Grand Hotel\";a:3:{s:5:\"label\";s:11:\"Grand Hotel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Grandstander\";a:3:{s:5:\"label\";s:12:\"Grandstander\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Gravitas One\";a:3:{s:5:\"label\";s:12:\"Gravitas One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Great Vibes\";a:3:{s:5:\"label\";s:11:\"Great Vibes\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Grenze\";a:3:{s:5:\"label\";s:6:\"Grenze\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Grenze Gotisch\";a:3:{s:5:\"label\";s:14:\"Grenze Gotisch\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Griffy\";a:3:{s:5:\"label\";s:6:\"Griffy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Gruppo\";a:3:{s:5:\"label\";s:6:\"Gruppo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Gudea\";a:3:{s:5:\"label\";s:5:\"Gudea\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Gugi\";a:3:{s:5:\"label\";s:4:\"Gugi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Gupter\";a:3:{s:5:\"label\";s:6:\"Gupter\";s:8:\"variants\";a:3:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Gurajada\";a:3:{s:5:\"label\";s:8:\"Gurajada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Habibi\";a:3:{s:5:\"label\";s:6:\"Habibi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Hachi Maru Pop\";a:3:{s:5:\"label\";s:14:\"Hachi Maru Pop\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Halant\";a:3:{s:5:\"label\";s:6:\"Halant\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Hammersmith One\";a:3:{s:5:\"label\";s:15:\"Hammersmith One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Hanalei\";a:3:{s:5:\"label\";s:7:\"Hanalei\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Hanalei Fill\";a:3:{s:5:\"label\";s:12:\"Hanalei Fill\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Handlee\";a:3:{s:5:\"label\";s:7:\"Handlee\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Hanuman\";a:3:{s:5:\"label\";s:7:\"Hanuman\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Happy Monkey\";a:3:{s:5:\"label\";s:12:\"Happy Monkey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Harmattan\";a:3:{s:5:\"label\";s:9:\"Harmattan\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Headland One\";a:3:{s:5:\"label\";s:12:\"Headland One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Heebo\";a:3:{s:5:\"label\";s:5:\"Heebo\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Henny Penny\";a:3:{s:5:\"label\";s:11:\"Henny Penny\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Hepta Slab\";a:3:{s:5:\"label\";s:10:\"Hepta Slab\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Herr Von Muellerhoff\";a:3:{s:5:\"label\";s:20:\"Herr Von Muellerhoff\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Hi Melody\";a:3:{s:5:\"label\";s:9:\"Hi Melody\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Hind\";a:3:{s:5:\"label\";s:4:\"Hind\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Hind Guntur\";a:3:{s:5:\"label\";s:11:\"Hind Guntur\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Hind Madurai\";a:3:{s:5:\"label\";s:12:\"Hind Madurai\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Hind Siliguri\";a:3:{s:5:\"label\";s:13:\"Hind Siliguri\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Hind Vadodara\";a:3:{s:5:\"label\";s:13:\"Hind Vadodara\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Holtwood One SC\";a:3:{s:5:\"label\";s:15:\"Holtwood One SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Homemade Apple\";a:3:{s:5:\"label\";s:14:\"Homemade Apple\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Homenaje\";a:3:{s:5:\"label\";s:8:\"Homenaje\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"IBM Plex Mono\";a:3:{s:5:\"label\";s:13:\"IBM Plex Mono\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:13:\"IBM Plex Sans\";a:3:{s:5:\"label\";s:13:\"IBM Plex Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:23:\"IBM Plex Sans Condensed\";a:3:{s:5:\"label\";s:23:\"IBM Plex Sans Condensed\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"IBM Plex Serif\";a:3:{s:5:\"label\";s:14:\"IBM Plex Serif\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"IM Fell DW Pica\";a:3:{s:5:\"label\";s:15:\"IM Fell DW Pica\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"IM Fell DW Pica SC\";a:3:{s:5:\"label\";s:18:\"IM Fell DW Pica SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"IM Fell Double Pica\";a:3:{s:5:\"label\";s:19:\"IM Fell Double Pica\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:22:\"IM Fell Double Pica SC\";a:3:{s:5:\"label\";s:22:\"IM Fell Double Pica SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"IM Fell English\";a:3:{s:5:\"label\";s:15:\"IM Fell English\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"IM Fell English SC\";a:3:{s:5:\"label\";s:18:\"IM Fell English SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"IM Fell French Canon\";a:3:{s:5:\"label\";s:20:\"IM Fell French Canon\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"IM Fell French Canon SC\";a:3:{s:5:\"label\";s:23:\"IM Fell French Canon SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"IM Fell Great Primer\";a:3:{s:5:\"label\";s:20:\"IM Fell Great Primer\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"IM Fell Great Primer SC\";a:3:{s:5:\"label\";s:23:\"IM Fell Great Primer SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Ibarra Real Nova\";a:3:{s:5:\"label\";s:16:\"Ibarra Real Nova\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Iceberg\";a:3:{s:5:\"label\";s:7:\"Iceberg\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Iceland\";a:3:{s:5:\"label\";s:7:\"Iceland\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Imbue\";a:3:{s:5:\"label\";s:5:\"Imbue\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Imprima\";a:3:{s:5:\"label\";s:7:\"Imprima\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Inconsolata\";a:3:{s:5:\"label\";s:11:\"Inconsolata\";s:8:\"variants\";a:8:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:3:\"900\";i:7;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:5:\"Inder\";a:3:{s:5:\"label\";s:5:\"Inder\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Indie Flower\";a:3:{s:5:\"label\";s:12:\"Indie Flower\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Inika\";a:3:{s:5:\"label\";s:5:\"Inika\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Inknut Antiqua\";a:3:{s:5:\"label\";s:14:\"Inknut Antiqua\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Inria Sans\";a:3:{s:5:\"label\";s:10:\"Inria Sans\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Inria Serif\";a:3:{s:5:\"label\";s:11:\"Inria Serif\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Inter\";a:3:{s:5:\"label\";s:5:\"Inter\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Irish Grover\";a:3:{s:5:\"label\";s:12:\"Irish Grover\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Istok Web\";a:3:{s:5:\"label\";s:9:\"Istok Web\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Italiana\";a:3:{s:5:\"label\";s:8:\"Italiana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Italianno\";a:3:{s:5:\"label\";s:9:\"Italianno\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Itim\";a:3:{s:5:\"label\";s:4:\"Itim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Jacques Francois\";a:3:{s:5:\"label\";s:16:\"Jacques Francois\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:23:\"Jacques Francois Shadow\";a:3:{s:5:\"label\";s:23:\"Jacques Francois Shadow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Jaldi\";a:3:{s:5:\"label\";s:5:\"Jaldi\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"JetBrains Mono\";a:3:{s:5:\"label\";s:14:\"JetBrains Mono\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:14:\"Jim Nightshade\";a:3:{s:5:\"label\";s:14:\"Jim Nightshade\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Jockey One\";a:3:{s:5:\"label\";s:10:\"Jockey One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Jolly Lodger\";a:3:{s:5:\"label\";s:12:\"Jolly Lodger\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Jomhuria\";a:3:{s:5:\"label\";s:8:\"Jomhuria\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Jomolhari\";a:3:{s:5:\"label\";s:9:\"Jomolhari\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Josefin Sans\";a:3:{s:5:\"label\";s:12:\"Josefin Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Josefin Slab\";a:3:{s:5:\"label\";s:12:\"Josefin Slab\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Jost\";a:3:{s:5:\"label\";s:4:\"Jost\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Joti One\";a:3:{s:5:\"label\";s:8:\"Joti One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:3:\"Jua\";a:3:{s:5:\"label\";s:3:\"Jua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Judson\";a:3:{s:5:\"label\";s:6:\"Judson\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Julee\";a:3:{s:5:\"label\";s:5:\"Julee\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Julius Sans One\";a:3:{s:5:\"label\";s:15:\"Julius Sans One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Junge\";a:3:{s:5:\"label\";s:5:\"Junge\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Jura\";a:3:{s:5:\"label\";s:4:\"Jura\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Just Another Hand\";a:3:{s:5:\"label\";s:17:\"Just Another Hand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:23:\"Just Me Again Down Here\";a:3:{s:5:\"label\";s:23:\"Just Me Again Down Here\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:3:\"K2D\";a:3:{s:5:\"label\";s:3:\"K2D\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Kadwa\";a:3:{s:5:\"label\";s:5:\"Kadwa\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Kalam\";a:3:{s:5:\"label\";s:5:\"Kalam\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Kameron\";a:3:{s:5:\"label\";s:7:\"Kameron\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Kanit\";a:3:{s:5:\"label\";s:5:\"Kanit\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kantumruy\";a:3:{s:5:\"label\";s:9:\"Kantumruy\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Karantina\";a:3:{s:5:\"label\";s:9:\"Karantina\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Karla\";a:3:{s:5:\"label\";s:5:\"Karla\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Karma\";a:3:{s:5:\"label\";s:5:\"Karma\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Katibeh\";a:3:{s:5:\"label\";s:7:\"Katibeh\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Kaushan Script\";a:3:{s:5:\"label\";s:14:\"Kaushan Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Kavivanar\";a:3:{s:5:\"label\";s:9:\"Kavivanar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Kavoon\";a:3:{s:5:\"label\";s:6:\"Kavoon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Kdam Thmor\";a:3:{s:5:\"label\";s:10:\"Kdam Thmor\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Keania One\";a:3:{s:5:\"label\";s:10:\"Keania One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Kelly Slab\";a:3:{s:5:\"label\";s:10:\"Kelly Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Kenia\";a:3:{s:5:\"label\";s:5:\"Kenia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Khand\";a:3:{s:5:\"label\";s:5:\"Khand\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Khmer\";a:3:{s:5:\"label\";s:5:\"Khmer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Khula\";a:3:{s:5:\"label\";s:5:\"Khula\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Kirang Haerang\";a:3:{s:5:\"label\";s:14:\"Kirang Haerang\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Kite One\";a:3:{s:5:\"label\";s:8:\"Kite One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kiwi Maru\";a:3:{s:5:\"label\";s:9:\"Kiwi Maru\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Knewave\";a:3:{s:5:\"label\";s:7:\"Knewave\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"KoHo\";a:3:{s:5:\"label\";s:4:\"KoHo\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kodchasan\";a:3:{s:5:\"label\";s:9:\"Kodchasan\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Kosugi\";a:3:{s:5:\"label\";s:6:\"Kosugi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Kosugi Maru\";a:3:{s:5:\"label\";s:11:\"Kosugi Maru\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kotta One\";a:3:{s:5:\"label\";s:9:\"Kotta One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Koulen\";a:3:{s:5:\"label\";s:6:\"Koulen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Kranky\";a:3:{s:5:\"label\";s:6:\"Kranky\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Kreon\";a:3:{s:5:\"label\";s:5:\"Kreon\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Kristi\";a:3:{s:5:\"label\";s:6:\"Kristi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Krona One\";a:3:{s:5:\"label\";s:9:\"Krona One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Krub\";a:3:{s:5:\"label\";s:4:\"Krub\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Kufam\";a:3:{s:5:\"label\";s:5:\"Kufam\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Kulim Park\";a:3:{s:5:\"label\";s:10:\"Kulim Park\";s:8:\"variants\";a:10:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Kumar One\";a:3:{s:5:\"label\";s:9:\"Kumar One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Kumar One Outline\";a:3:{s:5:\"label\";s:17:\"Kumar One Outline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Kumbh Sans\";a:3:{s:5:\"label\";s:10:\"Kumbh Sans\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Kurale\";a:3:{s:5:\"label\";s:6:\"Kurale\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"La Belle Aurore\";a:3:{s:5:\"label\";s:15:\"La Belle Aurore\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Lacquer\";a:3:{s:5:\"label\";s:7:\"Lacquer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Laila\";a:3:{s:5:\"label\";s:5:\"Laila\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lakki Reddy\";a:3:{s:5:\"label\";s:11:\"Lakki Reddy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Lalezar\";a:3:{s:5:\"label\";s:7:\"Lalezar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Lancelot\";a:3:{s:5:\"label\";s:8:\"Lancelot\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Langar\";a:3:{s:5:\"label\";s:6:\"Langar\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Lateef\";a:3:{s:5:\"label\";s:6:\"Lateef\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Lato\";a:3:{s:5:\"label\";s:4:\"Lato\";s:8:\"variants\";a:10:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"900\";i:7;s:9:\"900italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"League Script\";a:3:{s:5:\"label\";s:13:\"League Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Leckerli One\";a:3:{s:5:\"label\";s:12:\"Leckerli One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Ledger\";a:3:{s:5:\"label\";s:6:\"Ledger\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Lekton\";a:3:{s:5:\"label\";s:6:\"Lekton\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Lemon\";a:3:{s:5:\"label\";s:5:\"Lemon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Lemonada\";a:3:{s:5:\"label\";s:8:\"Lemonada\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Lexend\";a:3:{s:5:\"label\";s:6:\"Lexend\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Deca\";a:3:{s:5:\"label\";s:11:\"Lexend Deca\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Lexend Exa\";a:3:{s:5:\"label\";s:10:\"Lexend Exa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Giga\";a:3:{s:5:\"label\";s:11:\"Lexend Giga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Mega\";a:3:{s:5:\"label\";s:11:\"Lexend Mega\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Peta\";a:3:{s:5:\"label\";s:11:\"Lexend Peta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Lexend Tera\";a:3:{s:5:\"label\";s:11:\"Lexend Tera\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Lexend Zetta\";a:3:{s:5:\"label\";s:12:\"Lexend Zetta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Libre Barcode 128\";a:3:{s:5:\"label\";s:17:\"Libre Barcode 128\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:22:\"Libre Barcode 128 Text\";a:3:{s:5:\"label\";s:22:\"Libre Barcode 128 Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Libre Barcode 39\";a:3:{s:5:\"label\";s:16:\"Libre Barcode 39\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:25:\"Libre Barcode 39 Extended\";a:3:{s:5:\"label\";s:25:\"Libre Barcode 39 Extended\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:30:\"Libre Barcode 39 Extended Text\";a:3:{s:5:\"label\";s:30:\"Libre Barcode 39 Extended Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:21:\"Libre Barcode 39 Text\";a:3:{s:5:\"label\";s:21:\"Libre Barcode 39 Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:24:\"Libre Barcode EAN13 Text\";a:3:{s:5:\"label\";s:24:\"Libre Barcode EAN13 Text\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Libre Baskerville\";a:3:{s:5:\"label\";s:17:\"Libre Baskerville\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Libre Caslon Display\";a:3:{s:5:\"label\";s:20:\"Libre Caslon Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Libre Caslon Text\";a:3:{s:5:\"label\";s:17:\"Libre Caslon Text\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Libre Franklin\";a:3:{s:5:\"label\";s:14:\"Libre Franklin\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Life Savers\";a:3:{s:5:\"label\";s:11:\"Life Savers\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Lilita One\";a:3:{s:5:\"label\";s:10:\"Lilita One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Lily Script One\";a:3:{s:5:\"label\";s:15:\"Lily Script One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Limelight\";a:3:{s:5:\"label\";s:9:\"Limelight\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Linden Hill\";a:3:{s:5:\"label\";s:11:\"Linden Hill\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Literata\";a:3:{s:5:\"label\";s:8:\"Literata\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Liu Jian Mao Cao\";a:3:{s:5:\"label\";s:16:\"Liu Jian Mao Cao\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Livvic\";a:3:{s:5:\"label\";s:6:\"Livvic\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Lobster\";a:3:{s:5:\"label\";s:7:\"Lobster\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Lobster Two\";a:3:{s:5:\"label\";s:11:\"Lobster Two\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Londrina Outline\";a:3:{s:5:\"label\";s:16:\"Londrina Outline\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Londrina Shadow\";a:3:{s:5:\"label\";s:15:\"Londrina Shadow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Londrina Sketch\";a:3:{s:5:\"label\";s:15:\"Londrina Sketch\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Londrina Solid\";a:3:{s:5:\"label\";s:14:\"Londrina Solid\";s:8:\"variants\";a:4:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"900\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Long Cang\";a:3:{s:5:\"label\";s:9:\"Long Cang\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Lora\";a:3:{s:5:\"label\";s:4:\"Lora\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:21:\"Love Ya Like A Sister\";a:3:{s:5:\"label\";s:21:\"Love Ya Like A Sister\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:17:\"Loved by the King\";a:3:{s:5:\"label\";s:17:\"Loved by the King\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Lovers Quarrel\";a:3:{s:5:\"label\";s:14:\"Lovers Quarrel\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Luckiest Guy\";a:3:{s:5:\"label\";s:12:\"Luckiest Guy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Lusitana\";a:3:{s:5:\"label\";s:8:\"Lusitana\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Lustria\";a:3:{s:5:\"label\";s:7:\"Lustria\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"M PLUS 1p\";a:3:{s:5:\"label\";s:9:\"M PLUS 1p\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"M PLUS Rounded 1c\";a:3:{s:5:\"label\";s:17:\"M PLUS Rounded 1c\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Ma Shan Zheng\";a:3:{s:5:\"label\";s:13:\"Ma Shan Zheng\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Macondo\";a:3:{s:5:\"label\";s:7:\"Macondo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Macondo Swash Caps\";a:3:{s:5:\"label\";s:18:\"Macondo Swash Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Mada\";a:3:{s:5:\"label\";s:4:\"Mada\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Magra\";a:3:{s:5:\"label\";s:5:\"Magra\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Maiden Orange\";a:3:{s:5:\"label\";s:13:\"Maiden Orange\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Maitree\";a:3:{s:5:\"label\";s:7:\"Maitree\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Major Mono Display\";a:3:{s:5:\"label\";s:18:\"Major Mono Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:4:\"Mako\";a:3:{s:5:\"label\";s:4:\"Mako\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Mali\";a:3:{s:5:\"label\";s:4:\"Mali\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Mallanna\";a:3:{s:5:\"label\";s:8:\"Mallanna\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Mandali\";a:3:{s:5:\"label\";s:7:\"Mandali\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Manjari\";a:3:{s:5:\"label\";s:7:\"Manjari\";s:8:\"variants\";a:3:{i:0;s:3:\"100\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Manrope\";a:3:{s:5:\"label\";s:7:\"Manrope\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Mansalva\";a:3:{s:5:\"label\";s:8:\"Mansalva\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Manuale\";a:3:{s:5:\"label\";s:7:\"Manuale\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Marcellus\";a:3:{s:5:\"label\";s:9:\"Marcellus\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Marcellus SC\";a:3:{s:5:\"label\";s:12:\"Marcellus SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Marck Script\";a:3:{s:5:\"label\";s:12:\"Marck Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Margarine\";a:3:{s:5:\"label\";s:9:\"Margarine\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Markazi Text\";a:3:{s:5:\"label\";s:12:\"Markazi Text\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Marko One\";a:3:{s:5:\"label\";s:9:\"Marko One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Marmelad\";a:3:{s:5:\"label\";s:8:\"Marmelad\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Martel\";a:3:{s:5:\"label\";s:6:\"Martel\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Martel Sans\";a:3:{s:5:\"label\";s:11:\"Martel Sans\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Marvel\";a:3:{s:5:\"label\";s:6:\"Marvel\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Mate\";a:3:{s:5:\"label\";s:4:\"Mate\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Mate SC\";a:3:{s:5:\"label\";s:7:\"Mate SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Maven Pro\";a:3:{s:5:\"label\";s:9:\"Maven Pro\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"McLaren\";a:3:{s:5:\"label\";s:7:\"McLaren\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Meddon\";a:3:{s:5:\"label\";s:6:\"Meddon\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"MedievalSharp\";a:3:{s:5:\"label\";s:13:\"MedievalSharp\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Medula One\";a:3:{s:5:\"label\";s:10:\"Medula One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Meera Inimai\";a:3:{s:5:\"label\";s:12:\"Meera Inimai\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Megrim\";a:3:{s:5:\"label\";s:6:\"Megrim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Meie Script\";a:3:{s:5:\"label\";s:11:\"Meie Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Merienda\";a:3:{s:5:\"label\";s:8:\"Merienda\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Merienda One\";a:3:{s:5:\"label\";s:12:\"Merienda One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Merriweather\";a:3:{s:5:\"label\";s:12:\"Merriweather\";s:8:\"variants\";a:8:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"900\";i:5;s:9:\"900italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Merriweather Sans\";a:3:{s:5:\"label\";s:17:\"Merriweather Sans\";s:8:\"variants\";a:12:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Metal\";a:3:{s:5:\"label\";s:5:\"Metal\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Metal Mania\";a:3:{s:5:\"label\";s:11:\"Metal Mania\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Metamorphous\";a:3:{s:5:\"label\";s:12:\"Metamorphous\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Metrophobic\";a:3:{s:5:\"label\";s:11:\"Metrophobic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Michroma\";a:3:{s:5:\"label\";s:8:\"Michroma\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Milonga\";a:3:{s:5:\"label\";s:7:\"Milonga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Miltonian\";a:3:{s:5:\"label\";s:9:\"Miltonian\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Miltonian Tattoo\";a:3:{s:5:\"label\";s:16:\"Miltonian Tattoo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Mina\";a:3:{s:5:\"label\";s:4:\"Mina\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Miniver\";a:3:{s:5:\"label\";s:7:\"Miniver\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Miriam Libre\";a:3:{s:5:\"label\";s:12:\"Miriam Libre\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Mirza\";a:3:{s:5:\"label\";s:5:\"Mirza\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Miss Fajardose\";a:3:{s:5:\"label\";s:14:\"Miss Fajardose\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Mitr\";a:3:{s:5:\"label\";s:4:\"Mitr\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Modak\";a:3:{s:5:\"label\";s:5:\"Modak\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Modern Antiqua\";a:3:{s:5:\"label\";s:14:\"Modern Antiqua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Mogra\";a:3:{s:5:\"label\";s:5:\"Mogra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Molengo\";a:3:{s:5:\"label\";s:7:\"Molengo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Molle\";a:3:{s:5:\"label\";s:5:\"Molle\";s:8:\"variants\";a:1:{i:0;s:6:\"italic\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Monda\";a:3:{s:5:\"label\";s:5:\"Monda\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Monofett\";a:3:{s:5:\"label\";s:8:\"Monofett\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Monoton\";a:3:{s:5:\"label\";s:7:\"Monoton\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Monsieur La Doulaise\";a:3:{s:5:\"label\";s:20:\"Monsieur La Doulaise\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Montaga\";a:3:{s:5:\"label\";s:7:\"Montaga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Montez\";a:3:{s:5:\"label\";s:6:\"Montez\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Montserrat\";a:3:{s:5:\"label\";s:10:\"Montserrat\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Montserrat Alternates\";a:3:{s:5:\"label\";s:21:\"Montserrat Alternates\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Montserrat Subrayada\";a:3:{s:5:\"label\";s:20:\"Montserrat Subrayada\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Moul\";a:3:{s:5:\"label\";s:4:\"Moul\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Moulpali\";a:3:{s:5:\"label\";s:8:\"Moulpali\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:22:\"Mountains of Christmas\";a:3:{s:5:\"label\";s:22:\"Mountains of Christmas\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Mouse Memoirs\";a:3:{s:5:\"label\";s:13:\"Mouse Memoirs\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Mr Bedfort\";a:3:{s:5:\"label\";s:10:\"Mr Bedfort\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Mr Dafoe\";a:3:{s:5:\"label\";s:8:\"Mr Dafoe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:14:\"Mr De Haviland\";a:3:{s:5:\"label\";s:14:\"Mr De Haviland\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:19:\"Mrs Saint Delafield\";a:3:{s:5:\"label\";s:19:\"Mrs Saint Delafield\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Mrs Sheppards\";a:3:{s:5:\"label\";s:13:\"Mrs Sheppards\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Mukta\";a:3:{s:5:\"label\";s:5:\"Mukta\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Mukta Mahee\";a:3:{s:5:\"label\";s:11:\"Mukta Mahee\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Mukta Malar\";a:3:{s:5:\"label\";s:11:\"Mukta Malar\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Mukta Vaani\";a:3:{s:5:\"label\";s:11:\"Mukta Vaani\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Mulish\";a:3:{s:5:\"label\";s:6:\"Mulish\";s:8:\"variants\";a:16:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"MuseoModerno\";a:3:{s:5:\"label\";s:12:\"MuseoModerno\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Mystery Quest\";a:3:{s:5:\"label\";s:13:\"Mystery Quest\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:3:\"NTR\";a:3:{s:5:\"label\";s:3:\"NTR\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Nanum Brush Script\";a:3:{s:5:\"label\";s:18:\"Nanum Brush Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Nanum Gothic\";a:3:{s:5:\"label\";s:12:\"Nanum Gothic\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Nanum Gothic Coding\";a:3:{s:5:\"label\";s:19:\"Nanum Gothic Coding\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:14:\"Nanum Myeongjo\";a:3:{s:5:\"label\";s:14:\"Nanum Myeongjo\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"Nanum Pen Script\";a:3:{s:5:\"label\";s:16:\"Nanum Pen Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Nerko One\";a:3:{s:5:\"label\";s:9:\"Nerko One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Neucha\";a:3:{s:5:\"label\";s:6:\"Neucha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Neuton\";a:3:{s:5:\"label\";s:6:\"Neuton\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"New Rocker\";a:3:{s:5:\"label\";s:10:\"New Rocker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"New Tegomin\";a:3:{s:5:\"label\";s:11:\"New Tegomin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"News Cycle\";a:3:{s:5:\"label\";s:10:\"News Cycle\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Newsreader\";a:3:{s:5:\"label\";s:10:\"Newsreader\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Niconne\";a:3:{s:5:\"label\";s:7:\"Niconne\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Niramit\";a:3:{s:5:\"label\";s:7:\"Niramit\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Nixie One\";a:3:{s:5:\"label\";s:9:\"Nixie One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Nobile\";a:3:{s:5:\"label\";s:6:\"Nobile\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Nokora\";a:3:{s:5:\"label\";s:6:\"Nokora\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Norican\";a:3:{s:5:\"label\";s:7:\"Norican\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Nosifer\";a:3:{s:5:\"label\";s:7:\"Nosifer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Notable\";a:3:{s:5:\"label\";s:7:\"Notable\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Nothing You Could Do\";a:3:{s:5:\"label\";s:20:\"Nothing You Could Do\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:12:\"Noticia Text\";a:3:{s:5:\"label\";s:12:\"Noticia Text\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Noto Sans\";a:3:{s:5:\"label\";s:9:\"Noto Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans HK\";a:3:{s:5:\"label\";s:12:\"Noto Sans HK\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans JP\";a:3:{s:5:\"label\";s:12:\"Noto Sans JP\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans KR\";a:3:{s:5:\"label\";s:12:\"Noto Sans KR\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans SC\";a:3:{s:5:\"label\";s:12:\"Noto Sans SC\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Noto Sans TC\";a:3:{s:5:\"label\";s:12:\"Noto Sans TC\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Noto Serif\";a:3:{s:5:\"label\";s:10:\"Noto Serif\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif JP\";a:3:{s:5:\"label\";s:13:\"Noto Serif JP\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif KR\";a:3:{s:5:\"label\";s:13:\"Noto Serif KR\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif SC\";a:3:{s:5:\"label\";s:13:\"Noto Serif SC\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Noto Serif TC\";a:3:{s:5:\"label\";s:13:\"Noto Serif TC\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Nova Cut\";a:3:{s:5:\"label\";s:8:\"Nova Cut\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Nova Flat\";a:3:{s:5:\"label\";s:9:\"Nova Flat\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Nova Mono\";a:3:{s:5:\"label\";s:9:\"Nova Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:9:\"Nova Oval\";a:3:{s:5:\"label\";s:9:\"Nova Oval\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Nova Round\";a:3:{s:5:\"label\";s:10:\"Nova Round\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Nova Script\";a:3:{s:5:\"label\";s:11:\"Nova Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Nova Slim\";a:3:{s:5:\"label\";s:9:\"Nova Slim\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Nova Square\";a:3:{s:5:\"label\";s:11:\"Nova Square\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Numans\";a:3:{s:5:\"label\";s:6:\"Numans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Nunito\";a:3:{s:5:\"label\";s:6:\"Nunito\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Nunito Sans\";a:3:{s:5:\"label\";s:11:\"Nunito Sans\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Odibee Sans\";a:3:{s:5:\"label\";s:11:\"Odibee Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Odor Mean Chey\";a:3:{s:5:\"label\";s:14:\"Odor Mean Chey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Offside\";a:3:{s:5:\"label\";s:7:\"Offside\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:2:\"Oi\";a:3:{s:5:\"label\";s:2:\"Oi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Old Standard TT\";a:3:{s:5:\"label\";s:15:\"Old Standard TT\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Oldenburg\";a:3:{s:5:\"label\";s:9:\"Oldenburg\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Oleo Script\";a:3:{s:5:\"label\";s:11:\"Oleo Script\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:22:\"Oleo Script Swash Caps\";a:3:{s:5:\"label\";s:22:\"Oleo Script Swash Caps\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Open Sans\";a:3:{s:5:\"label\";s:9:\"Open Sans\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Open Sans Condensed\";a:3:{s:5:\"label\";s:19:\"Open Sans Condensed\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Oranienbaum\";a:3:{s:5:\"label\";s:11:\"Oranienbaum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Orbitron\";a:3:{s:5:\"label\";s:8:\"Orbitron\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Oregano\";a:3:{s:5:\"label\";s:7:\"Oregano\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Orelega One\";a:3:{s:5:\"label\";s:11:\"Orelega One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Orienta\";a:3:{s:5:\"label\";s:7:\"Orienta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Original Surfer\";a:3:{s:5:\"label\";s:15:\"Original Surfer\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Oswald\";a:3:{s:5:\"label\";s:6:\"Oswald\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Otomanopee One\";a:3:{s:5:\"label\";s:14:\"Otomanopee One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Over the Rainbow\";a:3:{s:5:\"label\";s:16:\"Over the Rainbow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Overlock\";a:3:{s:5:\"label\";s:8:\"Overlock\";s:8:\"variants\";a:6:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:3:\"900\";i:3;s:9:\"900italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Overlock SC\";a:3:{s:5:\"label\";s:11:\"Overlock SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Overpass\";a:3:{s:5:\"label\";s:8:\"Overpass\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:3:\"900\";i:13;s:9:\"900italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Overpass Mono\";a:3:{s:5:\"label\";s:13:\"Overpass Mono\";s:8:\"variants\";a:4:{i:0;s:3:\"300\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:3:\"Ovo\";a:3:{s:5:\"label\";s:3:\"Ovo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Oxanium\";a:3:{s:5:\"label\";s:7:\"Oxanium\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:3:\"800\";i:6;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Oxygen\";a:3:{s:5:\"label\";s:6:\"Oxygen\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Oxygen Mono\";a:3:{s:5:\"label\";s:11:\"Oxygen Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"PT Mono\";a:3:{s:5:\"label\";s:7:\"PT Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"PT Sans\";a:3:{s:5:\"label\";s:7:\"PT Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"PT Sans Caption\";a:3:{s:5:\"label\";s:15:\"PT Sans Caption\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"PT Sans Narrow\";a:3:{s:5:\"label\";s:14:\"PT Sans Narrow\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"PT Serif\";a:3:{s:5:\"label\";s:8:\"PT Serif\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:16:\"PT Serif Caption\";a:3:{s:5:\"label\";s:16:\"PT Serif Caption\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Pacifico\";a:3:{s:5:\"label\";s:8:\"Pacifico\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Padauk\";a:3:{s:5:\"label\";s:6:\"Padauk\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Palanquin\";a:3:{s:5:\"label\";s:9:\"Palanquin\";s:8:\"variants\";a:7:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Palanquin Dark\";a:3:{s:5:\"label\";s:14:\"Palanquin Dark\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Pangolin\";a:3:{s:5:\"label\";s:8:\"Pangolin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Paprika\";a:3:{s:5:\"label\";s:7:\"Paprika\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Parisienne\";a:3:{s:5:\"label\";s:10:\"Parisienne\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:11:\"Passero One\";a:3:{s:5:\"label\";s:11:\"Passero One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Passion One\";a:3:{s:5:\"label\";s:11:\"Passion One\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Pathway Gothic One\";a:3:{s:5:\"label\";s:18:\"Pathway Gothic One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Patrick Hand\";a:3:{s:5:\"label\";s:12:\"Patrick Hand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Patrick Hand SC\";a:3:{s:5:\"label\";s:15:\"Patrick Hand SC\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Pattaya\";a:3:{s:5:\"label\";s:7:\"Pattaya\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Patua One\";a:3:{s:5:\"label\";s:9:\"Patua One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Pavanam\";a:3:{s:5:\"label\";s:7:\"Pavanam\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Paytone One\";a:3:{s:5:\"label\";s:11:\"Paytone One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Peddana\";a:3:{s:5:\"label\";s:7:\"Peddana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Peralta\";a:3:{s:5:\"label\";s:7:\"Peralta\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Permanent Marker\";a:3:{s:5:\"label\";s:16:\"Permanent Marker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:19:\"Petit Formal Script\";a:3:{s:5:\"label\";s:19:\"Petit Formal Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Petrona\";a:3:{s:5:\"label\";s:7:\"Petrona\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Philosopher\";a:3:{s:5:\"label\";s:11:\"Philosopher\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Piazzolla\";a:3:{s:5:\"label\";s:9:\"Piazzolla\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Piedra\";a:3:{s:5:\"label\";s:6:\"Piedra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Pinyon Script\";a:3:{s:5:\"label\";s:13:\"Pinyon Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Pirata One\";a:3:{s:5:\"label\";s:10:\"Pirata One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Plaster\";a:3:{s:5:\"label\";s:7:\"Plaster\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Play\";a:3:{s:5:\"label\";s:4:\"Play\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Playball\";a:3:{s:5:\"label\";s:8:\"Playball\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:16:\"Playfair Display\";a:3:{s:5:\"label\";s:16:\"Playfair Display\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:19:\"Playfair Display SC\";a:3:{s:5:\"label\";s:19:\"Playfair Display SC\";s:8:\"variants\";a:6:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:3:\"900\";i:3;s:9:\"900italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Podkova\";a:3:{s:5:\"label\";s:7:\"Podkova\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Poiret One\";a:3:{s:5:\"label\";s:10:\"Poiret One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Poller One\";a:3:{s:5:\"label\";s:10:\"Poller One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Poly\";a:3:{s:5:\"label\";s:4:\"Poly\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Pompiere\";a:3:{s:5:\"label\";s:8:\"Pompiere\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Pontano Sans\";a:3:{s:5:\"label\";s:12:\"Pontano Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Poor Story\";a:3:{s:5:\"label\";s:10:\"Poor Story\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Poppins\";a:3:{s:5:\"label\";s:7:\"Poppins\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Port Lligat Sans\";a:3:{s:5:\"label\";s:16:\"Port Lligat Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Port Lligat Slab\";a:3:{s:5:\"label\";s:16:\"Port Lligat Slab\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Potta One\";a:3:{s:5:\"label\";s:9:\"Potta One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Pragati Narrow\";a:3:{s:5:\"label\";s:14:\"Pragati Narrow\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Prata\";a:3:{s:5:\"label\";s:5:\"Prata\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Preahvihear\";a:3:{s:5:\"label\";s:11:\"Preahvihear\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"Press Start 2P\";a:3:{s:5:\"label\";s:14:\"Press Start 2P\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Pridi\";a:3:{s:5:\"label\";s:5:\"Pridi\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Princess Sofia\";a:3:{s:5:\"label\";s:14:\"Princess Sofia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Prociono\";a:3:{s:5:\"label\";s:8:\"Prociono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Prompt\";a:3:{s:5:\"label\";s:6:\"Prompt\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Prosto One\";a:3:{s:5:\"label\";s:10:\"Prosto One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Proza Libre\";a:3:{s:5:\"label\";s:11:\"Proza Libre\";s:8:\"variants\";a:10:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Public Sans\";a:3:{s:5:\"label\";s:11:\"Public Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Puritan\";a:3:{s:5:\"label\";s:7:\"Puritan\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Purple Purse\";a:3:{s:5:\"label\";s:12:\"Purple Purse\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Qahiri\";a:3:{s:5:\"label\";s:6:\"Qahiri\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Quando\";a:3:{s:5:\"label\";s:6:\"Quando\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Quantico\";a:3:{s:5:\"label\";s:8:\"Quantico\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Quattrocento\";a:3:{s:5:\"label\";s:12:\"Quattrocento\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:17:\"Quattrocento Sans\";a:3:{s:5:\"label\";s:17:\"Quattrocento Sans\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Questrial\";a:3:{s:5:\"label\";s:9:\"Questrial\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Quicksand\";a:3:{s:5:\"label\";s:9:\"Quicksand\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Quintessential\";a:3:{s:5:\"label\";s:14:\"Quintessential\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Qwigley\";a:3:{s:5:\"label\";s:7:\"Qwigley\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Racing Sans One\";a:3:{s:5:\"label\";s:15:\"Racing Sans One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Radley\";a:3:{s:5:\"label\";s:6:\"Radley\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Rajdhani\";a:3:{s:5:\"label\";s:8:\"Rajdhani\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Rakkas\";a:3:{s:5:\"label\";s:6:\"Rakkas\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Raleway\";a:3:{s:5:\"label\";s:7:\"Raleway\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Raleway Dots\";a:3:{s:5:\"label\";s:12:\"Raleway Dots\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Ramabhadra\";a:3:{s:5:\"label\";s:10:\"Ramabhadra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Ramaraja\";a:3:{s:5:\"label\";s:8:\"Ramaraja\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Rambla\";a:3:{s:5:\"label\";s:6:\"Rambla\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Rammetto One\";a:3:{s:5:\"label\";s:12:\"Rammetto One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Ranchers\";a:3:{s:5:\"label\";s:8:\"Ranchers\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Rancho\";a:3:{s:5:\"label\";s:6:\"Rancho\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:5:\"Ranga\";a:3:{s:5:\"label\";s:5:\"Ranga\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Rasa\";a:3:{s:5:\"label\";s:4:\"Rasa\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Rationale\";a:3:{s:5:\"label\";s:9:\"Rationale\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Ravi Prakash\";a:3:{s:5:\"label\";s:12:\"Ravi Prakash\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Recursive\";a:3:{s:5:\"label\";s:9:\"Recursive\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Red Hat Display\";a:3:{s:5:\"label\";s:15:\"Red Hat Display\";s:8:\"variants\";a:8:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:3:\"900\";i:5;s:9:\"900italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Red Hat Text\";a:3:{s:5:\"label\";s:12:\"Red Hat Text\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Red Rose\";a:3:{s:5:\"label\";s:8:\"Red Rose\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Redressed\";a:3:{s:5:\"label\";s:9:\"Redressed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Reem Kufi\";a:3:{s:5:\"label\";s:9:\"Reem Kufi\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Reenie Beanie\";a:3:{s:5:\"label\";s:13:\"Reenie Beanie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Reggae One\";a:3:{s:5:\"label\";s:10:\"Reggae One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Revalia\";a:3:{s:5:\"label\";s:7:\"Revalia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Rhodium Libre\";a:3:{s:5:\"label\";s:13:\"Rhodium Libre\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Ribeye\";a:3:{s:5:\"label\";s:6:\"Ribeye\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Ribeye Marrow\";a:3:{s:5:\"label\";s:13:\"Ribeye Marrow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Righteous\";a:3:{s:5:\"label\";s:9:\"Righteous\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Risque\";a:3:{s:5:\"label\";s:6:\"Risque\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Roboto\";a:3:{s:5:\"label\";s:6:\"Roboto\";s:8:\"variants\";a:12:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Roboto Condensed\";a:3:{s:5:\"label\";s:16:\"Roboto Condensed\";s:8:\"variants\";a:6:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"700\";i:3;s:9:\"700italic\";i:4;s:6:\"italic\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Roboto Mono\";a:3:{s:5:\"label\";s:11:\"Roboto Mono\";s:8:\"variants\";a:14:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:11:\"Roboto Slab\";a:3:{s:5:\"label\";s:11:\"Roboto Slab\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Rochester\";a:3:{s:5:\"label\";s:9:\"Rochester\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Rock Salt\";a:3:{s:5:\"label\";s:9:\"Rock Salt\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"RocknRoll One\";a:3:{s:5:\"label\";s:13:\"RocknRoll One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Rokkitt\";a:3:{s:5:\"label\";s:7:\"Rokkitt\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Romanesco\";a:3:{s:5:\"label\";s:9:\"Romanesco\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Ropa Sans\";a:3:{s:5:\"label\";s:9:\"Ropa Sans\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Rosario\";a:3:{s:5:\"label\";s:7:\"Rosario\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Rosarivo\";a:3:{s:5:\"label\";s:8:\"Rosarivo\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Rouge Script\";a:3:{s:5:\"label\";s:12:\"Rouge Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Rowdies\";a:3:{s:5:\"label\";s:7:\"Rowdies\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Rozha One\";a:3:{s:5:\"label\";s:9:\"Rozha One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Rubik\";a:3:{s:5:\"label\";s:5:\"Rubik\";s:8:\"variants\";a:14:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"800\";i:9;s:9:\"800italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Rubik Mono One\";a:3:{s:5:\"label\";s:14:\"Rubik Mono One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Ruda\";a:3:{s:5:\"label\";s:4:\"Ruda\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Rufina\";a:3:{s:5:\"label\";s:6:\"Rufina\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Ruge Boogie\";a:3:{s:5:\"label\";s:11:\"Ruge Boogie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Ruluko\";a:3:{s:5:\"label\";s:6:\"Ruluko\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Rum Raisin\";a:3:{s:5:\"label\";s:10:\"Rum Raisin\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:14:\"Ruslan Display\";a:3:{s:5:\"label\";s:14:\"Ruslan Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Russo One\";a:3:{s:5:\"label\";s:9:\"Russo One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Ruthie\";a:3:{s:5:\"label\";s:6:\"Ruthie\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:3:\"Rye\";a:3:{s:5:\"label\";s:3:\"Rye\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"STIX Two Math\";a:3:{s:5:\"label\";s:13:\"STIX Two Math\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Sacramento\";a:3:{s:5:\"label\";s:10:\"Sacramento\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Sahitya\";a:3:{s:5:\"label\";s:7:\"Sahitya\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Sail\";a:3:{s:5:\"label\";s:4:\"Sail\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Saira\";a:3:{s:5:\"label\";s:5:\"Saira\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Saira Condensed\";a:3:{s:5:\"label\";s:15:\"Saira Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Saira Extra Condensed\";a:3:{s:5:\"label\";s:21:\"Saira Extra Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:20:\"Saira Semi Condensed\";a:3:{s:5:\"label\";s:20:\"Saira Semi Condensed\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:17:\"Saira Stencil One\";a:3:{s:5:\"label\";s:17:\"Saira Stencil One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Salsa\";a:3:{s:5:\"label\";s:5:\"Salsa\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sanchez\";a:3:{s:5:\"label\";s:7:\"Sanchez\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Sancreek\";a:3:{s:5:\"label\";s:8:\"Sancreek\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sansita\";a:3:{s:5:\"label\";s:7:\"Sansita\";s:8:\"variants\";a:8:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:3:\"800\";i:3;s:9:\"800italic\";i:4;s:3:\"900\";i:5;s:9:\"900italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Sansita Swashed\";a:3:{s:5:\"label\";s:15:\"Sansita Swashed\";s:8:\"variants\";a:7:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sarabun\";a:3:{s:5:\"label\";s:7:\"Sarabun\";s:8:\"variants\";a:16:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:6:\"italic\";i:15;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Sarala\";a:3:{s:5:\"label\";s:6:\"Sarala\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Sarina\";a:3:{s:5:\"label\";s:6:\"Sarina\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Sarpanch\";a:3:{s:5:\"label\";s:8:\"Sarpanch\";s:8:\"variants\";a:6:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Satisfy\";a:3:{s:5:\"label\";s:7:\"Satisfy\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:15:\"Sawarabi Gothic\";a:3:{s:5:\"label\";s:15:\"Sawarabi Gothic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Sawarabi Mincho\";a:3:{s:5:\"label\";s:15:\"Sawarabi Mincho\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Scada\";a:3:{s:5:\"label\";s:5:\"Scada\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Scheherazade\";a:3:{s:5:\"label\";s:12:\"Scheherazade\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Schoolbell\";a:3:{s:5:\"label\";s:10:\"Schoolbell\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Scope One\";a:3:{s:5:\"label\";s:9:\"Scope One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Seaweed Script\";a:3:{s:5:\"label\";s:14:\"Seaweed Script\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Secular One\";a:3:{s:5:\"label\";s:11:\"Secular One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Sedgwick Ave\";a:3:{s:5:\"label\";s:12:\"Sedgwick Ave\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:20:\"Sedgwick Ave Display\";a:3:{s:5:\"label\";s:20:\"Sedgwick Ave Display\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:3:\"Sen\";a:3:{s:5:\"label\";s:3:\"Sen\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"800\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Sevillana\";a:3:{s:5:\"label\";s:9:\"Sevillana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Seymour One\";a:3:{s:5:\"label\";s:11:\"Seymour One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Shadows Into Light\";a:3:{s:5:\"label\";s:18:\"Shadows Into Light\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:22:\"Shadows Into Light Two\";a:3:{s:5:\"label\";s:22:\"Shadows Into Light Two\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Shanti\";a:3:{s:5:\"label\";s:6:\"Shanti\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Share\";a:3:{s:5:\"label\";s:5:\"Share\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Share Tech\";a:3:{s:5:\"label\";s:10:\"Share Tech\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:15:\"Share Tech Mono\";a:3:{s:5:\"label\";s:15:\"Share Tech Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:15:\"Shippori Mincho\";a:3:{s:5:\"label\";s:15:\"Shippori Mincho\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:18:\"Shippori Mincho B1\";a:3:{s:5:\"label\";s:18:\"Shippori Mincho B1\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Shojumaru\";a:3:{s:5:\"label\";s:9:\"Shojumaru\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Short Stack\";a:3:{s:5:\"label\";s:11:\"Short Stack\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Shrikhand\";a:3:{s:5:\"label\";s:9:\"Shrikhand\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Siemreap\";a:3:{s:5:\"label\";s:8:\"Siemreap\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Sigmar One\";a:3:{s:5:\"label\";s:10:\"Sigmar One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Signika\";a:3:{s:5:\"label\";s:7:\"Signika\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Signika Negative\";a:3:{s:5:\"label\";s:16:\"Signika Negative\";s:8:\"variants\";a:4:{i:0;s:3:\"300\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Simonetta\";a:3:{s:5:\"label\";s:9:\"Simonetta\";s:8:\"variants\";a:4:{i:0;s:3:\"900\";i:1;s:9:\"900italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Single Day\";a:3:{s:5:\"label\";s:10:\"Single Day\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sintony\";a:3:{s:5:\"label\";s:7:\"Sintony\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Sirin Stencil\";a:3:{s:5:\"label\";s:13:\"Sirin Stencil\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Six Caps\";a:3:{s:5:\"label\";s:8:\"Six Caps\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Skranji\";a:3:{s:5:\"label\";s:7:\"Skranji\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Slabo 13px\";a:3:{s:5:\"label\";s:10:\"Slabo 13px\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Slabo 27px\";a:3:{s:5:\"label\";s:10:\"Slabo 27px\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Slackey\";a:3:{s:5:\"label\";s:7:\"Slackey\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Smokum\";a:3:{s:5:\"label\";s:6:\"Smokum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Smythe\";a:3:{s:5:\"label\";s:6:\"Smythe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Sniglet\";a:3:{s:5:\"label\";s:7:\"Sniglet\";s:8:\"variants\";a:2:{i:0;s:3:\"800\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Snippet\";a:3:{s:5:\"label\";s:7:\"Snippet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Snowburst One\";a:3:{s:5:\"label\";s:13:\"Snowburst One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Sofadi One\";a:3:{s:5:\"label\";s:10:\"Sofadi One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Sofia\";a:3:{s:5:\"label\";s:5:\"Sofia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Solway\";a:3:{s:5:\"label\";s:6:\"Solway\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Song Myung\";a:3:{s:5:\"label\";s:10:\"Song Myung\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Sonsie One\";a:3:{s:5:\"label\";s:10:\"Sonsie One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Sora\";a:3:{s:5:\"label\";s:4:\"Sora\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Sorts Mill Goudy\";a:3:{s:5:\"label\";s:16:\"Sorts Mill Goudy\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:15:\"Source Code Pro\";a:3:{s:5:\"label\";s:15:\"Source Code Pro\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"900\";i:11;s:9:\"900italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:15:\"Source Sans Pro\";a:3:{s:5:\"label\";s:15:\"Source Sans Pro\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Source Serif Pro\";a:3:{s:5:\"label\";s:16:\"Source Serif Pro\";s:8:\"variants\";a:12:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Space Grotesk\";a:3:{s:5:\"label\";s:13:\"Space Grotesk\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Space Mono\";a:3:{s:5:\"label\";s:10:\"Space Mono\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:7:\"Spartan\";a:3:{s:5:\"label\";s:7:\"Spartan\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:13:\"Special Elite\";a:3:{s:5:\"label\";s:13:\"Special Elite\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Spectral\";a:3:{s:5:\"label\";s:8:\"Spectral\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Spectral SC\";a:3:{s:5:\"label\";s:11:\"Spectral SC\";s:8:\"variants\";a:14:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"500\";i:5;s:9:\"500italic\";i:6;s:3:\"600\";i:7;s:9:\"600italic\";i:8;s:3:\"700\";i:9;s:9:\"700italic\";i:10;s:3:\"800\";i:11;s:9:\"800italic\";i:12;s:6:\"italic\";i:13;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Spicy Rice\";a:3:{s:5:\"label\";s:10:\"Spicy Rice\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Spinnaker\";a:3:{s:5:\"label\";s:9:\"Spinnaker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Spirax\";a:3:{s:5:\"label\";s:6:\"Spirax\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Squada One\";a:3:{s:5:\"label\";s:10:\"Squada One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Sree Krushnadevaraya\";a:3:{s:5:\"label\";s:20:\"Sree Krushnadevaraya\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Sriracha\";a:3:{s:5:\"label\";s:8:\"Sriracha\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Srisakdi\";a:3:{s:5:\"label\";s:8:\"Srisakdi\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Staatliches\";a:3:{s:5:\"label\";s:11:\"Staatliches\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Stalemate\";a:3:{s:5:\"label\";s:9:\"Stalemate\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Stalinist One\";a:3:{s:5:\"label\";s:13:\"Stalinist One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Stardos Stencil\";a:3:{s:5:\"label\";s:15:\"Stardos Stencil\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Stick\";a:3:{s:5:\"label\";s:5:\"Stick\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:21:\"Stint Ultra Condensed\";a:3:{s:5:\"label\";s:21:\"Stint Ultra Condensed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:20:\"Stint Ultra Expanded\";a:3:{s:5:\"label\";s:20:\"Stint Ultra Expanded\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Stoke\";a:3:{s:5:\"label\";s:5:\"Stoke\";s:8:\"variants\";a:2:{i:0;s:3:\"300\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:6:\"Strait\";a:3:{s:5:\"label\";s:6:\"Strait\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Stylish\";a:3:{s:5:\"label\";s:7:\"Stylish\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:19:\"Sue Ellen Francisco\";a:3:{s:5:\"label\";s:19:\"Sue Ellen Francisco\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Suez One\";a:3:{s:5:\"label\";s:8:\"Suez One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:13:\"Sulphur Point\";a:3:{s:5:\"label\";s:13:\"Sulphur Point\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"700\";i:2;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:6:\"Sumana\";a:3:{s:5:\"label\";s:6:\"Sumana\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Sunflower\";a:3:{s:5:\"label\";s:9:\"Sunflower\";s:8:\"variants\";a:3:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"700\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Sunshiney\";a:3:{s:5:\"label\";s:9:\"Sunshiney\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:16:\"Supermercado One\";a:3:{s:5:\"label\";s:16:\"Supermercado One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Sura\";a:3:{s:5:\"label\";s:4:\"Sura\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Suranna\";a:3:{s:5:\"label\";s:7:\"Suranna\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Suravaram\";a:3:{s:5:\"label\";s:9:\"Suravaram\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Suwannaphum\";a:3:{s:5:\"label\";s:11:\"Suwannaphum\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:18:\"Swanky and Moo Moo\";a:3:{s:5:\"label\";s:18:\"Swanky and Moo Moo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Syncopate\";a:3:{s:5:\"label\";s:9:\"Syncopate\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:4:\"Syne\";a:3:{s:5:\"label\";s:4:\"Syne\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Syne Mono\";a:3:{s:5:\"label\";s:9:\"Syne Mono\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:12:\"Syne Tactile\";a:3:{s:5:\"label\";s:12:\"Syne Tactile\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Tajawal\";a:3:{s:5:\"label\";s:7:\"Tajawal\";s:8:\"variants\";a:7:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:3:\"900\";i:6;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Tangerine\";a:3:{s:5:\"label\";s:9:\"Tangerine\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Taprom\";a:3:{s:5:\"label\";s:6:\"Taprom\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Tauri\";a:3:{s:5:\"label\";s:5:\"Tauri\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Taviraj\";a:3:{s:5:\"label\";s:7:\"Taviraj\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Teko\";a:3:{s:5:\"label\";s:4:\"Teko\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Telex\";a:3:{s:5:\"label\";s:5:\"Telex\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"Tenali Ramakrishna\";a:3:{s:5:\"label\";s:18:\"Tenali Ramakrishna\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:10:\"Tenor Sans\";a:3:{s:5:\"label\";s:10:\"Tenor Sans\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Text Me One\";a:3:{s:5:\"label\";s:11:\"Text Me One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Texturina\";a:3:{s:5:\"label\";s:9:\"Texturina\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Thasadith\";a:3:{s:5:\"label\";s:9:\"Thasadith\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:18:\"The Girl Next Door\";a:3:{s:5:\"label\";s:18:\"The Girl Next Door\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Tienne\";a:3:{s:5:\"label\";s:6:\"Tienne\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:3:\"900\";i:2;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Tillana\";a:3:{s:5:\"label\";s:7:\"Tillana\";s:8:\"variants\";a:5:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";i:3;s:3:\"800\";i:4;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:7:\"Timmana\";a:3:{s:5:\"label\";s:7:\"Timmana\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Tinos\";a:3:{s:5:\"label\";s:5:\"Tinos\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:9:\"Titan One\";a:3:{s:5:\"label\";s:9:\"Titan One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Titillium Web\";a:3:{s:5:\"label\";s:13:\"Titillium Web\";s:8:\"variants\";a:11:{i:0;s:3:\"200\";i:1;s:9:\"200italic\";i:2;s:3:\"300\";i:3;s:9:\"300italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:3:\"900\";i:9;s:6:\"italic\";i:10;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Tomorrow\";a:3:{s:5:\"label\";s:8:\"Tomorrow\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Tourney\";a:3:{s:5:\"label\";s:7:\"Tourney\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Trade Winds\";a:3:{s:5:\"label\";s:11:\"Trade Winds\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Train One\";a:3:{s:5:\"label\";s:9:\"Train One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Trirong\";a:3:{s:5:\"label\";s:7:\"Trirong\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Trispace\";a:3:{s:5:\"label\";s:8:\"Trispace\";s:8:\"variants\";a:8:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Trocchi\";a:3:{s:5:\"label\";s:7:\"Trocchi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:7:\"Trochut\";a:3:{s:5:\"label\";s:7:\"Trochut\";s:8:\"variants\";a:3:{i:0;s:3:\"700\";i:1;s:6:\"italic\";i:2;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Truculenta\";a:3:{s:5:\"label\";s:10:\"Truculenta\";s:8:\"variants\";a:9:{i:0;s:3:\"100\";i:1;s:3:\"200\";i:2;s:3:\"300\";i:3;s:3:\"500\";i:4;s:3:\"600\";i:5;s:3:\"700\";i:6;s:3:\"800\";i:7;s:3:\"900\";i:8;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:7:\"Trykker\";a:3:{s:5:\"label\";s:7:\"Trykker\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:10:\"Tulpen One\";a:3:{s:5:\"label\";s:10:\"Tulpen One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:11:\"Turret Road\";a:3:{s:5:\"label\";s:11:\"Turret Road\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"800\";i:5;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Ubuntu\";a:3:{s:5:\"label\";s:6:\"Ubuntu\";s:8:\"variants\";a:8:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:6:\"italic\";i:7;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:16:\"Ubuntu Condensed\";a:3:{s:5:\"label\";s:16:\"Ubuntu Condensed\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Ubuntu Mono\";a:3:{s:5:\"label\";s:11:\"Ubuntu Mono\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:5:\"Uchen\";a:3:{s:5:\"label\";s:5:\"Uchen\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"Ultra\";a:3:{s:5:\"label\";s:5:\"Ultra\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:14:\"Uncial Antiqua\";a:3:{s:5:\"label\";s:14:\"Uncial Antiqua\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Underdog\";a:3:{s:5:\"label\";s:8:\"Underdog\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Unica One\";a:3:{s:5:\"label\";s:9:\"Unica One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:14:\"UnifrakturCook\";a:3:{s:5:\"label\";s:14:\"UnifrakturCook\";s:8:\"variants\";a:1:{i:0;s:3:\"700\";}s:8:\"category\";s:7:\"display\";}s:18:\"UnifrakturMaguntia\";a:3:{s:5:\"label\";s:18:\"UnifrakturMaguntia\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Unkempt\";a:3:{s:5:\"label\";s:7:\"Unkempt\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Unlock\";a:3:{s:5:\"label\";s:6:\"Unlock\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:4:\"Unna\";a:3:{s:5:\"label\";s:4:\"Unna\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:5:\"VT323\";a:3:{s:5:\"label\";s:5:\"VT323\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:11:\"Vampiro One\";a:3:{s:5:\"label\";s:11:\"Vampiro One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Varela\";a:3:{s:5:\"label\";s:6:\"Varela\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"Varela Round\";a:3:{s:5:\"label\";s:12:\"Varela Round\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Varta\";a:3:{s:5:\"label\";s:5:\"Varta\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Vast Shadow\";a:3:{s:5:\"label\";s:11:\"Vast Shadow\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:12:\"Vesper Libre\";a:3:{s:5:\"label\";s:12:\"Vesper Libre\";s:8:\"variants\";a:4:{i:0;s:3:\"500\";i:1;s:3:\"700\";i:2;s:3:\"900\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:12:\"Viaoda Libre\";a:3:{s:5:\"label\";s:12:\"Viaoda Libre\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Vibes\";a:3:{s:5:\"label\";s:5:\"Vibes\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:5:\"Vibur\";a:3:{s:5:\"label\";s:5:\"Vibur\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Vidaloka\";a:3:{s:5:\"label\";s:8:\"Vidaloka\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:4:\"Viga\";a:3:{s:5:\"label\";s:4:\"Viga\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:5:\"Voces\";a:3:{s:5:\"label\";s:5:\"Voces\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:7:\"Volkhov\";a:3:{s:5:\"label\";s:7:\"Volkhov\";s:8:\"variants\";a:4:{i:0;s:3:\"700\";i:1;s:9:\"700italic\";i:2;s:6:\"italic\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Vollkorn\";a:3:{s:5:\"label\";s:8:\"Vollkorn\";s:8:\"variants\";a:12:{i:0;s:3:\"500\";i:1;s:9:\"500italic\";i:2;s:3:\"600\";i:3;s:9:\"600italic\";i:4;s:3:\"700\";i:5;s:9:\"700italic\";i:6;s:3:\"800\";i:7;s:9:\"800italic\";i:8;s:3:\"900\";i:9;s:9:\"900italic\";i:10;s:6:\"italic\";i:11;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Vollkorn SC\";a:3:{s:5:\"label\";s:11:\"Vollkorn SC\";s:8:\"variants\";a:4:{i:0;s:3:\"600\";i:1;s:3:\"700\";i:2;s:3:\"900\";i:3;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Voltaire\";a:3:{s:5:\"label\";s:8:\"Voltaire\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:23:\"Waiting for the Sunrise\";a:3:{s:5:\"label\";s:23:\"Waiting for the Sunrise\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:8:\"Wallpoet\";a:3:{s:5:\"label\";s:8:\"Wallpoet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:15:\"Walter Turncoat\";a:3:{s:5:\"label\";s:15:\"Walter Turncoat\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Warnes\";a:3:{s:5:\"label\";s:6:\"Warnes\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Wellfleet\";a:3:{s:5:\"label\";s:9:\"Wellfleet\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:9:\"Wendy One\";a:3:{s:5:\"label\";s:9:\"Wendy One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:8:\"Wire One\";a:3:{s:5:\"label\";s:8:\"Wire One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Work Sans\";a:3:{s:5:\"label\";s:9:\"Work Sans\";s:8:\"variants\";a:18:{i:0;s:3:\"100\";i:1;s:9:\"100italic\";i:2;s:3:\"200\";i:3;s:9:\"200italic\";i:4;s:3:\"300\";i:5;s:9:\"300italic\";i:6;s:3:\"500\";i:7;s:9:\"500italic\";i:8;s:3:\"600\";i:9;s:9:\"600italic\";i:10;s:3:\"700\";i:11;s:9:\"700italic\";i:12;s:3:\"800\";i:13;s:9:\"800italic\";i:14;s:3:\"900\";i:15;s:9:\"900italic\";i:16;s:6:\"italic\";i:17;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Xanh Mono\";a:3:{s:5:\"label\";s:9:\"Xanh Mono\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:9:\"monospace\";}s:17:\"Yanone Kaffeesatz\";a:3:{s:5:\"label\";s:17:\"Yanone Kaffeesatz\";s:8:\"variants\";a:6:{i:0;s:3:\"200\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"600\";i:4;s:3:\"700\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:11:\"Yantramanav\";a:3:{s:5:\"label\";s:11:\"Yantramanav\";s:8:\"variants\";a:6:{i:0;s:3:\"100\";i:1;s:3:\"300\";i:2;s:3:\"500\";i:3;s:3:\"700\";i:4;s:3:\"900\";i:5;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:9:\"Yatra One\";a:3:{s:5:\"label\";s:9:\"Yatra One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Yellowtail\";a:3:{s:5:\"label\";s:10:\"Yellowtail\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:9:\"Yeon Sung\";a:3:{s:5:\"label\";s:9:\"Yeon Sung\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Yeseva One\";a:3:{s:5:\"label\";s:10:\"Yeseva One\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:10:\"Yesteryear\";a:3:{s:5:\"label\";s:10:\"Yesteryear\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:6:\"Yomogi\";a:3:{s:5:\"label\";s:6:\"Yomogi\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:4:\"Yrsa\";a:3:{s:5:\"label\";s:4:\"Yrsa\";s:8:\"variants\";a:5:{i:0;s:3:\"300\";i:1;s:3:\"500\";i:2;s:3:\"600\";i:3;s:3:\"700\";i:4;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:11:\"Yusei Magic\";a:3:{s:5:\"label\";s:11:\"Yusei Magic\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:10:\"sans-serif\";}s:12:\"ZCOOL KuaiLe\";a:3:{s:5:\"label\";s:12:\"ZCOOL KuaiLe\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:21:\"ZCOOL QingKe HuangYou\";a:3:{s:5:\"label\";s:21:\"ZCOOL QingKe HuangYou\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"ZCOOL XiaoWei\";a:3:{s:5:\"label\";s:13:\"ZCOOL XiaoWei\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:8:\"Zen Dots\";a:3:{s:5:\"label\";s:8:\"Zen Dots\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:8:\"Zen Loop\";a:3:{s:5:\"label\";s:8:\"Zen Loop\";s:8:\"variants\";a:2:{i:0;s:6:\"italic\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:13:\"Zen Tokyo Zoo\";a:3:{s:5:\"label\";s:13:\"Zen Tokyo Zoo\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}s:6:\"Zeyada\";a:3:{s:5:\"label\";s:6:\"Zeyada\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:13:\"Zhi Mang Xing\";a:3:{s:5:\"label\";s:13:\"Zhi Mang Xing\";s:8:\"variants\";a:1:{i:0;s:7:\"regular\";}s:8:\"category\";s:11:\"handwriting\";}s:10:\"Zilla Slab\";a:3:{s:5:\"label\";s:10:\"Zilla Slab\";s:8:\"variants\";a:10:{i:0;s:3:\"300\";i:1;s:9:\"300italic\";i:2;s:3:\"500\";i:3;s:9:\"500italic\";i:4;s:3:\"600\";i:5;s:9:\"600italic\";i:6;s:3:\"700\";i:7;s:9:\"700italic\";i:8;s:6:\"italic\";i:9;s:7:\"regular\";}s:8:\"category\";s:5:\"serif\";}s:20:\"Zilla Slab Highlight\";a:3:{s:5:\"label\";s:20:\"Zilla Slab Highlight\";s:8:\"variants\";a:2:{i:0;s:3:\"700\";i:1;s:7:\"regular\";}s:8:\"category\";s:7:\"display\";}}','no'),(7724,'_transient_timeout__woocommerce_helper_updates','1652739075','no'),(7725,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1652695875;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','no'),(7729,'_site_transient_timeout_browser_20974fba76ac68d3b08560343ae2118a','1653300678','no'),(7730,'_site_transient_browser_20974fba76ac68d3b08560343ae2118a','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"101.0.4951.64\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(7731,'_transient_timeout_feed_6b646ba1685199dbb7a80f9d24fbfe04','1652739079','no'),(7732,'_transient_feed_6b646ba1685199dbb7a80f9d24fbfe04','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:51:\"\n \n \n \n \n \n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"YITH Updates RSS\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"https://yithemes.com/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"YITH Updates RSS\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-us\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:20:{i:0;a:6:{s:4:\"data\";s:12:\"\n	\n	\n	\n	\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"YITH Pre-Order for WooCommerce - 2.0.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://yithemes.com/wp-content/uploads/2019/05/yith-woocommerce-pre-order.svg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://yithemes.com/themes/plugins/yith-woocommerce-pre-order/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Fri, 13 May 2022 00:00:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"\n	\n	<ul>\n            <li>Fix: availability date and start date display issues</li>\n        </ul>\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:12:\"\n	\n	\n	\n	\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"YITH WooCommerce Review Reminder - 1.18.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://yithemes.com/wp-content/uploads/2019/05/yith-woocommerce-review-reminder.svg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://yithemes.com/themes/plugins/yith-woocommerce-review-reminder/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Fri, 13 May 2022 00:00:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:151:\"\n	\n	<ul>         \n	<li>New: support for WordPress 6.0</li>\n	<li>New: support for WooCommerce 6.5</li>\n	<li>Update: YITH plugin framework</li>\n</ul>\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:12:\"\n	\n	\n	\n	\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"YITH WooCommerce Review for Discounts - 1.15.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://yithemes.com/wp-content/uploads/2019/05/yith-woocommerce-review-for-discounts.svg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://yithemes.com/themes/plugins/yith-woocommerce-review-for-discounts/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Fri, 13 May 2022 00:00:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"\n	\n	<ul>         \n			<li>Update: YITH plugin framework</li>\n		</ul>\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:12:\"\n	\n	\n	\n	\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"YITH WooCommerce Name Your Price - 1.11.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://yithemes.com/wp-content/uploads/2019/05/yith-woocommerce-name-your-price.svg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://yithemes.com/themes/plugins/yith-woocommerce-name-your-price/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Fri, 13 May 2022 00:00:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:231:\"\n	\n	<ul>\n			<li>New: Support for WordPress 6.0</li>\n            <li>New: Support for WooCommerce 6.5</li>\n            <li>Update: YITH plugin framework</li>\n            <li>Fix: issue with raq and multivendor</li>\n        </ul>\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:12:\"\n	\n	\n	\n	\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"YITH WooCommerce Coupon Email System - 1.15.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://yithemes.com/wp-content/uploads/2019/05/yith-woocommerce-coupon-email-system.svg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://yithemes.com/themes/plugins/yith-woocommerce-coupon-email-system/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Fri, 13 May 2022 00:00:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:175:\"\n	\n	<ul>         \n				 <li>New: support for WordPress 6.0</li>\n				 <li>New: support for WooCommerce 6.5</li>\n				 <li>Update: YITH plugin framework</li>\n            </ul>\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:12:\"\n	\n	\n	\n	\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"YITH WooCommerce EU Energy Label - 2.9.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://yithemes.com/wp-content/uploads/2021/03/energy-label.svg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://yithemes.com/themes/plugins/yith-woocommerce-eu-energy-label/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Thu, 12 May 2022 00:00:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:199:\"\n	\n	<ul>\n                <li>New: support for WordPress 6.0</li>\n                <li>New: support for WooCommerce 6.5</li>\n                <li>Update: YITH plugin framework</li>\n            </ul>\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:12:\"\n	\n	\n	\n	\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"YITH WooCommerce Recently Viewed Products - 2.9.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://yithemes.com/wp-content/uploads/2019/05/yith-woocommerce-recently-viewed-products.svg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://yithemes.com/themes/plugins/yith-woocommerce-recently-viewed-products/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Thu, 12 May 2022 00:00:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:183:\"\n	\n	<ul>\n            <li>New: support for WordPress 6.0</li>\n            <li>New: support for WooCommerce 6.5</li>\n            <li>Update: YITH plugin framework</li>\n        </ul>\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:12:\"\n	\n	\n	\n	\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"YITH PayPal Express Checkout for WooCommerce - 1.14.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://yithemes.com/wp-content/uploads/2019/05/yith-paypal-express-checkout-for-woocommerce.svg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://yithemes.com/themes/plugins/yith-paypal-express-checkout-for-woocommerce/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Thu, 12 May 2022 00:00:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:159:\"\n	\n	<ul>\n		    <li>New: support for WordPress 6.0</li>\n		    <li>New: support for WooCommerce 6.5</li>\n		    <li>Update: YITH plugin framework</li>\n		</ul>\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:12:\"\n	\n	\n	\n	\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"YITH Store Locator for WordPress and WooCommerce  - 2.8.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://yithemes.com/wp-content/uploads/2020/02/store-locator-icon.svg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://yithemes.com/themes/plugins/yith-store-locator-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Thu, 12 May 2022 00:00:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:438:\"\n	\n	<ul>\n            <li>New: support for WordPress 6.0</li>\n			<li>New: support for WooCommerce 6.5</li>\n			<li>Update: YITH plugin framework</li>\n			<li>Fix: stores missing when using the plugin with WPML</li>\n			<li>Fix: missing \"filters\" field in the export</li>\n			<li>Fix: prevent modal from closing when closing info window</li>\n			<li>Fix: fatal error when editing Elementor template for single product page</li>\n        </ul>\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:12:\"\n	\n	\n	\n	\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"YITH Pre-Order for WooCommerce - 2.0.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://yithemes.com/wp-content/uploads/2019/05/yith-woocommerce-pre-order.svg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://yithemes.com/themes/plugins/yith-woocommerce-pre-order/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Thu, 12 May 2022 00:00:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2344:\"\n	\n	<ul>\n            <li>New: support for WooCommerce 6.5</li>\n            <li>New: table view to easily monitor all products in pre-order mode</li>\n            <li>New: table view to easily monitor all pre-orders sold</li>\n            <li>New: export CSV files with pre-order products</li>\n            <li>New: export CSV files of orders including pre-order products</li>\n            <li>New: option to limit the possibility to pre-order products to specific user roles</li>\n            <li>New: option to set the maximum quantity a customer can pre-order for the same product</li>\n            <li>New: statuses for pre-orders (waiting, completed, cancelled)</li>\n            <li>New: pre-order start date on the product to begin taking orders</li>\n            <li>New: TinyMCE editor for availability date label</li>\n            <li>New: pre-order button color customization</li>\n            <li>New: place order button colors and text customization when there are pre-order products in the cart</li>\n            <li>New: dynamic availability date</li>\n            <li>New: set a fee on pre-order products</li>\n            <li>New: free shipping for pre-order products</li>\n            <li>New: charge pre-orders upon release</li>\n            <li>New: Pay Later gateway for manual upon release payments</li>\n            <li>New: order status \"Pre-ordered\"</li>\n            <li>New: \"Confirmed pre-order\" email for customers</li>\n            <li>New: \"New pre-order\" email for admin</li>\n            <li>New: \"Completed pre-order\" email for customers</li>\n            <li>New: \"Payment reminder\" email for customers</li>\n            <li>New: \"Cancelled pre-order\" email for customers</li>\n            <li>New: YITH WooCommerce Stripe integration for upon release payments</li>\n            <li>New: YITH Stripe Connect for WooCommerce integration for upon release payments</li>\n            <li>New: YITH PayPal Braintree for WooCommerce integration for upon release payments</li>\n            <li>New: WooCommerce Stripe Gateway integration for upon release payments</li>\n            <li>Update: YITH WooCommerce Deposits and Down Payments integration</li>\n            <li>Update: YITH WooCommerce Product Countdown integration</li>\n            <li>Update: YITH plugin framework</li>\n            <li>Update: language files</li>\n        </ul>\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:12:\"\n	\n	\n	\n	\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"YITH WooCommerce Sequential Order Number - 1.12.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://yithemes.com/wp-content/uploads/2019/05/yith-woocommerce-sequential-order-number.svg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://yithemes.com/themes/plugins/yith-woocommerce-sequential-order-number/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Thu, 12 May 2022 00:00:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:151:\"\n	\n	<ul>\n    <li>New: Support for WordPress 6.0</li>\n    <li>New: Support for WooCommerce 6.5</li>\n    <li>Update: YITH plugin framework</li>\n</ul>\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:12:\"\n	\n	\n	\n	\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"YITH Point of Sale for WooCommerce - 2.1.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://yithemes.com/wp-content/uploads/2019/05/point-of-sales-new.svg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://yithemes.com/themes/plugins/yith-point-of-sale-for-woocommerce/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Thu, 12 May 2022 00:00:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:678:\"\n	\n	<ul>\n            <li>New: support for WordPress 6.0</li>\n            <li>New: support for WooCommerce 6.5</li>\n            <li>Fix: next page loading in the variation selector</li>\n            <li>Fix: stock status issue when multi-stock is enabled and the online product is out-of-stock</li>\n            <li>Fix: cashiers cannot create coupons from POS discounts</li>\n            <li>Tweak: increase timeout before printing receipt for slow devices</li>\n            <li>Tweak: improved style of stock badge in variations</li>\n            <li>Tweak: hide stock badge on variable products if their stock depends on variations and multi-stock is enabled</li>\n        </ul>\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:12:\"\n	\n	\n	\n	\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"YITH Desktop Notifications for WooCommerce - 1.11.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://yithemes.com/wp-content/uploads/2019/05/yith-desktop-notifications-for-woocommerce.svg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://yithemes.com/themes/plugins/yith-woocommerce-desktop-notifications/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Thu, 12 May 2022 00:00:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:230:\"\n	\n	<ul>\n			<li>New: support for WordPress 6.0</li>\n            <li>New: support for WooCommerce 6.5</li>\n            <li>Update: YITH plugin framework</li>\n			<li>Tweak: remove audio section after 5 seconds</li>\n        </ul>\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:12:\"\n	\n	\n	\n	\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"YITH Amazon S3 Storage - 1.10.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://yithemes.com/wp-content/uploads/2019/05/yith-amazon-s3-storage.svg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://yithemes.com/themes/plugins/yith-amazon-s3-storage/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Thu, 12 May 2022 00:00:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:207:\"\n	\n	<ul>\n			<li>New: support for WordPress 6.0</li>\n			<li>New: support for WooCommerce 6.5</li>\n			<li>Update: YITH plugin framework</li>\n			<li>Fix: show Amazon S3 options in media library</li>\n		</ul>\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:12:\"\n	\n	\n	\n	\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"YITH WooCommerce Mailchimp - 2.12.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://yithemes.com/wp-content/uploads/2019/05/yith-woocommerce-mailchimp.svg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://yithemes.com/themes/plugins/yith-woocommerce-mailchimp/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Thu, 12 May 2022 00:00:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:151:\"\n	\n	<ul>\n    <li>New: support for WordPress 6.0</li>\n    <li>New: support for WooCommerce 6.5</li>\n    <li>Update: YITH Plugin Framework</li>\n</ul>\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:12:\"\n	\n	\n	\n	\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"YITH WooCommerce Sms Notifications - 1.16.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://yithemes.com/wp-content/uploads/2019/05/yith-woocommerce-sms-notifications.svg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://yithemes.com/themes/plugins/yith-woocommerce-sms-notifications/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Thu, 12 May 2022 00:00:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:151:\"\n	\n	<ul>         \n	<li>New: support for WordPress 6.0</li>\n	<li>New: support for WooCommerce 6.5</li>\n	<li>Update: YITH plugin framework</li>\n</ul>\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:12:\"\n	\n	\n	\n	\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"YITH Infinite Scrolling - 1.7.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://yithemes.com/wp-content/uploads/2019/05/yith-infinite-scrolling.svg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://yithemes.com/themes/plugins/yith-infinite-scrolling/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Thu, 12 May 2022 00:00:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:228:\"\n	\n	<ul>\n            <li>New: support for WordPress 6.0</li>\n            <li>New: support for WooCommerce 6.5</li>\n            <li>New: French translation</li>\n            <li>Update: YITH plugin framework</li>\n        </ul>\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:12:\"\n	\n	\n	\n	\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"YITH WooCommerce Auctions - 3.6.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://yithemes.com/wp-content/uploads/2019/05/yith-woocommerce-auctions.svg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://yithemes.com/themes/plugins/yith-woocommerce-auctions/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Wed, 11 May 2022 00:00:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:530:\"\n	\n	<ul>\n		<li>New: support for WordPress 6.0</li>\n		<li>New: support for WooCommerce 6.5</li>\n		<li>Update: YITH plugin framework</li>\n		<li>Fix: error when using WPML Multi-Currency that affects the first entry of the list bids table</li>\n		<li>Fix: blink timeleft in auction overtime</li>\n		<li>Dev: added extra check to prevent creation of auction products in some cases</li>\n		<li>Dev: added new filter yith_wcact_show_advanced_options_section</li>\n		<li>Dev: added new filter yith_wcact_build_custom_css_loop</li>\n	</ul>\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:12:\"\n	\n	\n	\n	\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"YITH Event Tickets for WooCommerce - 1.13.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://yithemes.com/wp-content/uploads/2019/05/yith-event-tickets-for-woocommerce.svg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://yithemes.com/themes/plugins/yith-woocommerce-event-tickets/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Wed, 11 May 2022 00:00:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"\n	\n	<ul>\n            <li>New: support for WordPress 6.0</li>\n            <li>New: support for WooCommerce 6.5</li>\n            <li>New: German translation</li>\n            <li>Tweak: fixed problem with fields labels when product quantity is greater than 1</li>\n            <li>Update: YITH plugin framework</li>\n        </ul>\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:12:\"\n	\n	\n	\n	\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"YITH Frontend Manager for WooCommerce - 1.15.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://yithemes.com/wp-content/uploads/2019/05/yith-frontend-manager-for-woocommerce.svg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://yithemes.com/themes/plugins/yith-woocommerce-frontend-manager/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Wed, 11 May 2022 00:00:00 GMT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"\n	\n	<ul>\n			<li>Fix: duplicate product for variable product type</li>\n		</ul>\n	\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:42:\"https://yithemes.com/latest-updates/feeds/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:25:{s:4:\"date\";s:29:\"Mon, 16 May 2022 10:11:19 GMT\";s:12:\"content-type\";s:22:\"text/xml;charset=UTF-8\";s:4:\"link\";s:252:\"</wp-content/themes/yithemes/assets/css/main.min.css?ver=4.1.25>; rel=preload; as=style,</wp-includes/js/jquery/jquery.min.js?ver=3.5.1>; rel=\"preload\"; as=script,</wp-content/themes/yithemes/assets/js/scripts.min.js?ver=4.1.20>; rel=preload; as=script\";s:9:\"expect-ct\";s:87:\"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"\";s:13:\"ki-cache-type\";s:4:\"None\";s:18:\"ki-cf-cache-status\";s:6:\"BYPASS\";s:7:\"ki-edge\";s:6:\"v=17.6\";s:11:\"ki-edge-o2o\";s:3:\"yes\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:19:\"x-edge-location-klb\";s:1:\"1\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:14:\"x-kinsta-cache\";s:7:\"EXPIRED\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:9:\"report-to\";s:255:\"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=AwxMlaRVYJwquGaiJ0uUOCcDfUZuNbRdwr9Wg831l8beTaetG57L4Q3O4Xq5eOhjF1xBdqpsLPhHGy9XdMGBvzFX1nNTubD89clbvgsWsDj%2F4BJHAk13mpdXcP4wsTF6pAah6nL6TMQAMw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}\";s:3:\"nel\";s:63:\"{\"success_fraction\":0.01,\"report_to\":\"cf-nel\",\"max_age\":604800}\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"cache-control\";s:13:\"max-age=10800\";s:15:\"cf-cache-status\";s:3:\"HIT\";s:3:\"age\";s:3:\"128\";s:13:\"last-modified\";s:29:\"Mon, 16 May 2022 10:09:11 GMT\";s:25:\"strict-transport-security\";s:44:\"max-age=15552000; includeSubDomains; preload\";s:6:\"server\";s:10:\"cloudflare\";s:6:\"cf-ray\";s:20:\"70c3541ba9a3856c-BOM\";s:16:\"content-encoding\";s:2:\"br\";s:7:\"alt-svc\";s:43:\"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400\";}}s:5:\"build\";s:14:\"20220204041554\";}','no'),(7733,'_transient_timeout_feed_mod_6b646ba1685199dbb7a80f9d24fbfe04','1652739079','no'),(7734,'_transient_feed_mod_6b646ba1685199dbb7a80f9d24fbfe04','1652695879','no'),(7735,'_transient_timeout_feed_40a89299829082877949471eeb1c21e3','1652739079','no'),(7736,'_transient_feed_40a89299829082877949471eeb1c21e3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\n \n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"YITH\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"https://yithemes.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"#1 Independent Seller of WooCommerce Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 May 2022 07:40:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://yithemes.com/wp-content/uploads/2015/11/cropped-favicon4-65x65.png\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"YITH\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"https://yithemes.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:59:\"\n		\n		\n					\n		\n		\n		\n				\n		\n\n					\n		\n					\n			\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"The best of YITH in April\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://yithemes.com/blog/yit-news/the-best-of-yith-in-april/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://yithemes.com/blog/yit-news/the-best-of-yith-in-april/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 May 2022 07:40:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"YITH News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://yithemes.com/?p=1257460\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:293:\"Although not being very active on this blog during April, we have been very busy working on some of our plugins to give you the best updates! Even so, we have managed to solve a total of 2217 tickets with 1,19 hours of average response. If you want to learn more about our news, keep [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Tania GonzÃ¡lez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://yithemes.com/blog/yit-news/the-best-of-yith-in-april/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:59:\"\n		\n		\n					\n		\n		\n		\n				\n		\n\n					\n		\n					\n			\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"Crew member Highlight: Carla, everlasting kindness and YouTube star\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://yithemes.com/blog/team/carla/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://yithemes.com/blog/team/carla/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 Apr 2022 08:01:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Team YITH\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://yithemes.com/?p=1255039\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:325:\"Our YouTube channels became a very useful tool to help our clients in the configuration of the plugins. Taking part in this great project is Carla, one of the faces of the English channel together with MarÃ­a Andrea.&#160; Carla landed with her eternal smile and kindness just a few months ago in YITH. These months [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Tania GonzÃ¡lez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://yithemes.com/blog/team/carla/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:59:\"\n		\n		\n					\n		\n		\n		\n				\n		\n\n					\n		\n					\n			\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"The best of YITH in March\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://yithemes.com/blog/yit-news/the-best-of-yith-in-march/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://yithemes.com/blog/yit-news/the-best-of-yith-in-march/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Apr 2022 10:52:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"YITH News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://yithemes.com/?p=1251790\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:325:\"We leave behind one of the best months in the life of YITH. From long awaited updates to really interesting articles. In addition, we have continued to work tirelessly to achieve a total of 2440 tickets with 1,39 hours of average response. Maybe you havenâ€™t been following the latest news from YITH but this time, [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Tania GonzÃ¡lez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://yithemes.com/blog/yit-news/the-best-of-yith-in-march/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:62:\"\n		\n		\n					\n		\n		\n		\n				\n		\n		\n\n					\n		\n					\n			\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"How to run an affiliate campaign with Influencers in your WooCommerce Store\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://yithemes.com/blog/tutorials/how-to-manage-affiliates-influencer-woocommerce/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://yithemes.com/blog/tutorials/how-to-manage-affiliates-influencer-woocommerce/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 25 Mar 2022 12:26:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:14:\"Best practices\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"Tutorials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://yithemes.com/?p=1250189\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:380:\"What is Affiliate Marketing? An affiliation is a promotional channel that provides a partnership between the owner of a shop and the affiliate, i.e. the person who promotes the shop&#8217;s products in exchange for a commission generated automatically based on the sales they successfully produce. Affiliate marketing is definitely not new: Amazon launched its affiliate [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Gabriela\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://yithemes.com/blog/tutorials/how-to-manage-affiliates-influencer-woocommerce/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:59:\"\n		\n		\n					\n		\n		\n		\n				\n		\n\n					\n		\n					\n			\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"Our dream continues: YITH joins Newfold Digital\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://yithemes.com/blog/yit-news/newfold-digital/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://yithemes.com/blog/yit-news/newfold-digital/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Mar 2022 12:15:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"YITH News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://yithemes.com/?p=1241960\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:318:\"Past At the beginning of the year 2011, in a small apartment in Southern Italy, I conceived almost for fun a project that would later become YITH. At first, it was a small business specialized in developing and selling themes for WordPress and WooCommerce. Sara, my life partner, has been by my side for most [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"nando\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://yithemes.com/blog/yit-news/newfold-digital/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:59:\"\n		\n		\n					\n		\n		\n		\n				\n		\n\n					\n		\n					\n			\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"Crew member Highlight: Sara, the creative magic behind some of our images\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://yithemes.com/blog/team/sara-michieli/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://yithemes.com/blog/team/sara-michieli/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Mar 2022 12:06:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Team YITH\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://yithemes.com/?p=1247609\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:333:\"The daily work that many people do in YITH is practically unseen. And it&#8217;s curious, because the work this month&#8217;s crew member does is seen every day! Have you noticed the images we upload to social networks? The ones on the blog? Behind all that work is Sara Michieli, our graphic designer and illustrator. Sara [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Tania GonzÃ¡lez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://yithemes.com/blog/team/sara-michieli/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:59:\"\n		\n		\n					\n		\n		\n		\n				\n		\n\n					\n		\n					\n			\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"Product Add-ons â€“ WooCommerce product types that can benefit from this plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://yithemes.com/blog/best-practices/how-to-customize-product-options-woocommerce-product-addons/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://yithemes.com/blog/best-practices/how-to-customize-product-options-woocommerce-product-addons/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Mar 2022 13:09:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Best practices\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://yithemes.com/?p=1247144\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:368:\"Working with variable products sometimes is not the best solution and you need an innovative way to manage a product and all the related options available. Size, colors, style, material, customization or shipping options: there are many more scenarios whereby you would need the YITH WooCommerce Product Add-ons &#38; Extra Options plugin, so letâ€™s explore [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Gabriela\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://yithemes.com/blog/best-practices/how-to-customize-product-options-woocommerce-product-addons/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:59:\"\n		\n		\n					\n		\n		\n		\n				\n		\n\n					\n		\n					\n			\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"The best of YITH in February\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://yithemes.com/blog/yit-news/the-best-of-yith-in-february/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://yithemes.com/blog/yit-news/the-best-of-yith-in-february/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Mar 2022 11:24:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"YITH News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://yithemes.com/?p=1246184\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:312:\"The shortest and most romantic month of the year is over: February. Even with less days we managed to keep working full throttle to bring you the best, from big to small updates. In fact, we solved a total of 2306 tickets with 2,35 hours of average response.&#160; Just as support did not stop, updates [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Tania GonzÃ¡lez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://yithemes.com/blog/yit-news/the-best-of-yith-in-february/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:59:\"\n		\n		\n					\n		\n		\n		\n				\n		\n\n					\n		\n					\n			\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WooCommerce Shipment Tracking: why tracking packages is a must-have for your shop\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://yithemes.com/blog/tutorials/how-to-manage-woocommerce-shipment-tracking/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://yithemes.com/blog/tutorials/how-to-manage-woocommerce-shipment-tracking/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 25 Feb 2022 13:09:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Tutorials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://yithemes.com/?p=1245012\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:328:\"Why should you improve your after sale service and how to do that? If you sell products online, there are three aspects you need to consider in order to retain customers and increase conversions. First and foremost, of course, you must offer good quality products that really meet the needs of your target audience. No [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Tania GonzÃ¡lez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://yithemes.com/blog/tutorials/how-to-manage-woocommerce-shipment-tracking/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:59:\"\n		\n		\n					\n		\n		\n		\n				\n		\n\n					\n		\n					\n			\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"Crew member Highlight; Andrea, one of the faces and voices of our YouTube channels\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"https://yithemes.com/blog/team/maria-andrea/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://yithemes.com/blog/team/maria-andrea/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Feb 2022 12:55:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Team YITH\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://yithemes.com/?p=1242194\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:317:\"There is a project we are really proud of: our YouTube channels. We have three channels where we publish video tutorials about the functionalities of our plugins. You may think it is a lot of channels but we offer this tool that deals with the same type of content but in three different languages: English, [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Tania GonzÃ¡lez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://yithemes.com/blog/team/maria-andrea/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:26:\"https://yithemes.com/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:25:{s:4:\"date\";s:29:\"Mon, 16 May 2022 10:11:19 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"etag\";s:36:\"W/\"dcfdf6b60d67a60de865067f6c12fadc\"\";s:13:\"last-modified\";s:29:\"Sat, 14 May 2022 15:30:57 GMT\";s:4:\"link\";s:252:\"</wp-content/themes/yithemes/assets/css/main.min.css?ver=4.1.25>; rel=preload; as=style,</wp-includes/js/jquery/jquery.min.js?ver=3.5.1>; rel=\"preload\"; as=script,</wp-content/themes/yithemes/assets/js/scripts.min.js?ver=4.1.20>; rel=preload; as=script\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:9:\"expect-ct\";s:87:\"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"\";s:13:\"ki-cache-type\";s:4:\"None\";s:18:\"ki-cf-cache-status\";s:6:\"BYPASS\";s:7:\"ki-edge\";s:6:\"v=17.6\";s:11:\"ki-edge-o2o\";s:3:\"yes\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:19:\"x-edge-location-klb\";s:1:\"1\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:14:\"x-kinsta-cache\";s:3:\"HIT\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:9:\"report-to\";s:247:\"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=uYVa0vaa3%2F3R0RWNeIkXfA409Tx%2FwPDzTJCj7YM%2BkMQ3Q%2F7H5ETyV7yib35P78SO6egBNqtjqYT5Nt4RpXDVxi1jyAeEZ%2B6WMMvQI1XmM1KTjaigd2kHJ75F5xtUAw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}\";s:3:\"nel\";s:63:\"{\"success_fraction\":0.01,\"report_to\":\"cf-nel\",\"max_age\":604800}\";s:13:\"cache-control\";s:13:\"max-age=86400\";s:15:\"cf-cache-status\";s:3:\"HIT\";s:3:\"age\";s:5:\"26418\";s:25:\"strict-transport-security\";s:44:\"max-age=15552000; includeSubDomains; preload\";s:6:\"server\";s:10:\"cloudflare\";s:6:\"cf-ray\";s:20:\"70c3541c2d2984c5-BOM\";s:7:\"alt-svc\";s:43:\"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400\";}}s:5:\"build\";s:14:\"20220204041554\";}','no'),(7737,'_transient_timeout_feed_mod_40a89299829082877949471eeb1c21e3','1652739079','no'),(7738,'_transient_feed_mod_40a89299829082877949471eeb1c21e3','1652695879','no'),(7739,'_transient_timeout_wc_shipping_method_count_legacy','1655287880','no'),(7740,'_transient_wc_shipping_method_count_legacy','a:2:{s:7:\"version\";s:10:\"1638275547\";s:5:\"value\";i:0;}','no'),(7742,'_site_transient_timeout_community-events-88da01ce9261ac07997f7c2d386ee71f','1652739087','no'),(7743,'_site_transient_community-events-88da01ce9261ac07997f7c2d386ee71f','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:20:\"2409:4073:313:5f6c::\";}s:6:\"events\";a:0:{}}','no'),(7744,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1652739088','no'),(7745,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:112:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\n \n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 May 2022 18:08:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.1-alpha-53394\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:30:{i:0;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WordPress 6.0 Release Candidate 2 (RC2) Now Available for Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://wordpress.org/news/2022/05/wordpress-6-0-release-candidate-2-rc2-now-available-for-testing/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 May 2022 18:06:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12840\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:171:\"WordPress 6.0 Release Candidate 2 is now available for testing! You can \ndownload and help test RC2 in three ways. You can also help translate WordPress to 100+ languages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4830:\"\n<p>The next release candidate for WordPress 6.0 is now available!&nbsp;</p>\n\n\n\n<p>WordPress 6.0 is scheduled for release on May 24th, 2022 &#8211; just two weeks from today.</p>\n\n\n\n<p>â€œRelease Candidateâ€ means that this version of WordPress is ready for release! Since the WordPress ecosystem includes thousands of plugins and themes, it is important that everyone within the WordPress community check to see if anything was missed along the way. That means the project would love your help.</p>\n\n\n\n<p>Thank you to everyone who has contributed towards testing and logging issues to help make WordPress 6.0 stable (and awesome). WordPress still needs your help testing, especially theme and plugin developers.</p>\n\n\n\n<p>Since the RC1 release on May 3rd, 2022, there have been approximately 40 issues resolved in <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.0\">Gutenberg</a> and <a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=closed&amp;changetime=05%2F03%2F2022..05%2F10%2F2022&amp;resolution=fixed&amp;milestone=6.0&amp;col=id&amp;col=summary&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Trac</a>.</p>\n\n\n\n<h1>Installing RC2</h1>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, and test this version of WordPress on a production or mission-critical website. Instead, it is recommended that you RC2 on a test server and site.&nbsp;</p>\n\n\n\n<p>You can test WordPress 6.0 RC2 in three ways:</p>\n\n\n\n<ul><li><strong>Option 1: </strong>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the â€œBleeding edgeâ€ channel and â€œBeta/RC Onlyâ€ stream).</li></ul>\n\n\n\n<ul><li><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.0-RC2.zip\">release candidate version here (zip)</a>.</li></ul>\n\n\n\n<ul><li><strong>Option 3:</strong> When using WP-CLI to upgrade from Beta 1, 2, 3, 4, or RC1 on a case-insensitive filesystem, please use the following command:<br><code>wp core update --version=6.0-RC2</code></li></ul>\n\n\n\n<p>Additional information on the full <a href=\"https://make.wordpress.org/core/6-0/\">6.0 release cycle is available here</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-0/\">6.0-related developer notes</a> in the coming weeks, which will detail all upcoming changes.</p>\n\n\n\n<h1>Plugin and Theme Developers</h1>\n\n\n\n<p>All plugin and theme developers should test their respective extensions against WordPress 6.0 RC2 and update the â€œ<em>Tested up toâ€</em> version in their readme file to 6.0. If you find compatibility problems, please be sure to post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> so that these items can be investigated further prior to the final release date of May 24th.</p>\n\n\n\n<p>Review the <a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\"><em>WordPress 6.0 Field Guide</em></a> for more details on this release.</p>\n\n\n\n<h1>Translate WordPress</h1>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages</a>.</p>\n\n\n\n<h1>How to Help Test WordPress</h1>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute to WordPress. If you are new to testing, check out this <a href=\"https://make.wordpress.org/test/2022/04/12/help-wanted-test-wordpress-6-0/\">detailed guide</a> that will walk you through how to get started.</p>\n\n\n\n<p>If you think you have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2>An RC2 Haiku for You</h2>\n\n\n\n<p>Anticipation<br>Sprinting toward G/A now<br>Please â€” test, translate â€” thanks!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Thank you to the following contributors for collaborating on this post: <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a>, <a href=\'https://profiles.wordpress.org/priethor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>priethor</a>.&nbsp;&nbsp;</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12840\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"The Month in WordPress â€“ April 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2022/05/the-month-in-wordpress-april-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 May 2022 15:01:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:22:\"the month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12816\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"This past month saw a lot of preparation work for WordPress 6.0, due to release on 24 May 2022. This major release brings exciting improvements â€“ read on to find out more about the latest happenings in the WordPress project. WordPress 6.0 Release Candidate 1 The first release candidate (RC1) for WordPress 6.0 is now [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"rmartinezduque\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:10556:\"\n<p>This past month saw a lot of preparation work for WordPress 6.0, due to release on 24 May 2022. This major release brings exciting improvements â€“ read on to find out more about the latest happenings in the WordPress project.</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<h2>WordPress 6.0 Release Candidate 1</h2>\n\n\n\n<p><strong>The first release candidate (RC1) for WordPress 6.0 is now available for download</strong>. Help improve the project by testing and translating this version to non-English languages. Check out the RC1 <a href=\"https://wordpress.org/news/2022/05/wordpress-6-0-release-candidate-1/\">release post</a> to learn whatâ€™s new and how to contribute. For a more in-depth look at the upcoming changes, you can refer to the <a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\">WordPress 6.0 Field Guide</a>.</p>\n\n\n\n<p>WordPress 6.0 is packed with all kinds of improvements for everyone. It brings new blocks, <a href=\"https://make.wordpress.org/core/2022/04/20/wordpress-6-0-accessibility-improvements/\">accessibility enhancements</a>, refined design tools, the ability to switch theme styles easily, multi-block partial text selection, and a new block locking interface, to name a few of its highlights.</p>\n\n\n\n<div class=\"wp-container-1 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://wordpress.org/news/2022/05/episode-30-a-sneak-peek-at-wordpress-6-0/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><strong>Listen to the latest </strong><strong>WP Briefing episode</strong><strong> for a sneak peek into the exciting features included in WordPress 6.0.</strong></strong></a></div>\n</div>\n\n\n\n<h2>Gutenberg releases: Versions 13.0 and 13.1 are here</h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/04/14/whats-new-in-gutenberg-13-0-14-april/\">Gutenberg 13.0</a> shipped on April 14, 2022, and introduced the final updates that will be part of WordPress 6.0. These include an improved editor experience (with the ability to select text across blocks), better responsive blocks, and prominently exposed block patterns.</li><li><a href=\"https://make.wordpress.org/core/2022/04/28/whats-new-in-gutenberg-13-1-27-april/\">Gutenberg 13.1</a> landed on April 27, 2022. This version adds border support to the Columns block and accessibility and Comment block improvements.</li></ul>\n\n\n\n<div class=\"wp-container-2 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/core/tag/gutenberg-new/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><strong>Follow the </strong><strong>#gutenberg-new</strong><strong> posts for more details on the latest updates.</strong></strong></a></div>\n</div>\n\n\n\n<h2>Team updates: Updated guidelines for in-person events, redesign of the Gutenberg page, and more</h2>\n\n\n\n<ul><li>The Community team announced <a href=\"https://make.wordpress.org/community/2022/04/21/announcement-updated-covid-19-guidelines-for-official-wordpress-events/\">updated Covid-19 guidelines</a> for official WordPress events.</li><li>The <a href=\"https://make.wordpress.org/meta/2022/04/12/gutenberg-landing-page-kick-off/\">redesign of the Gutenberg landing page</a> on WordPress.org is nearing completion.</li><li>#WPDiversity announced new meeting times for Asia-Pacific (APAC) areas. You can express your interest <a href=\"https://make.wordpress.org/community/2022/04/22/wpdiversity-is-expanding-to-apac/\">in this post</a>.</li><li>The Training team plans to <a href=\"https://make.wordpress.org/training/2022/04/19/migrating-contributor-training-to-learn-wordpress/\">migrate the Contributor Training materials</a> to Learn WordPress. This move will help consolidate all the community-based training content in one place.</li><li>All learners on Learn WordPress can now enjoy using <a href=\"https://make.wordpress.org/training/2022/04/07/demo-sites-for-learn-wordpress-users/\">a live WordPress demo site</a> as they go through courses on the site.</li><li>The first stable <a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/2022/04/18/version-1-0-0-of-the-performance-lab-plugin-published/\" target=\"_blank\">version 1.0.0</a> of the <a href=\"https://wordpress.org/plugins/performance-lab/\">Performance Lab</a>Â pluginÂ was released.</li><li>Read the latest edition of the <a href=\"https://make.wordpress.org/community/2022/04/21/meetup-organizer-newsletter-april-2022/\">Meetup Organizer Newsletter</a>.</li><li>Everyone is welcome and encouraged to join the new <a href=\"https://make.wordpress.org/photos/\">Photo Directory team</a> meetings. They are held on the first Friday of every month at 14:00 UTC in the <a rel=\"noreferrer noopener\" href=\"https://wordpress.slack.com/messages/photos\" target=\"_blank\">#photos</a> channel of the Make WordPress Slack.</li><li>The Performance team published a <a href=\"https://make.wordpress.org/core/2022/04/12/follow-up-on-webp-by-default-proposal/\">follow-up post</a> with the next steps on the WebP proposal.</li><li>Check out the <a href=\"https://make.wordpress.org/design/2022/04/25/design-share-apr-11-22/\">projects</a> the Design team contributed to over the past couple of weeks.</li><li>Official Featured and Beta plugins now limit <a href=\"https://make.wordpress.org/plugins/2022/04/15/featured-beta-plugins-now-limit-changes/\">ownership and committer changes</a>.</li><li>The April 2022 edition of the <a href=\"https://make.wordpress.org/polyglots/2022/04/22/polyglots-monthly-newsletter-april-2022/\">Polyglots Monthly Newsletter</a> was published.</li><li>The latest edition of People of WordPress features <a href=\"https://wordpress.org/news/2022/04/people-of-wordpress-meher-bala/\">Meher Bala</a>, a frontend web developer and community builder from India.</li><li>The <a rel=\"noreferrer noopener\" href=\"https://wordpress.slack.com/archives/C0FRG66LR\" target=\"_blank\">#props</a> channel of the Make WordPress Slack is now connected to the WordPress.org profile activity! This way when you give props, it will be included on your WordPress.org profile and the profile of those you mention. This change is part of a <a href=\"https://make.wordpress.org/project/2022/03/16/proposal-to-remove-spam-dormant-five-for-the-future-pledges/\">larger project</a> that will help credit more non-code contributions.</li></ul>\n\n\n\n<div class=\"wp-container-3 wp-block-buttons\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/community/2022/04/11/return-to-in-person-events-share-your-challenges/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>How do you feel about in-person WordPress gatherings? The Community team wants to hear about the challenges in returning to these events.</strong></a></div>\n</div>\n\n\n\n<h2>Open feedback/testing calls</h2>\n\n\n\n<ul><li>Following this <a href=\"https://make.wordpress.org/updates/2021/03/16/proposal-a-wordpress-project-contributor-handbook/\">proposal</a> for a WordPress Project Contributor Handbook, Executive Director Josepha Haden opened a <a href=\"https://make.wordpress.org/project/2022/04/29/discussion-contrib-handbook-part-2/\">round of discussions</a> to share feedback on the various handbook sections.</li><li>Version 19.8 of WordPress for <a href=\"https://make.wordpress.org/mobile/2022/05/02/call-for-testing-wordpress-for-android-19-8/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2022/05/02/call-for-testing-wordpress-for-ios-19-8/\">iOS</a> is available for testing.</li><li>Join the 14th testing call of the Full Site Editing (FSE) Outreach program â€“ â€œ<a href=\"https://make.wordpress.org/test/2022/04/28/fse-program-testing-call-14-rallying-recipe-reviewers/\">Rallying Recipe Reviewers</a>.â€ This call focuses on testing blocks that help recipe authors make their recipe blogs more interactive. Leave your feedback by May 18, 2022.</li></ul>\n\n\n\n<div class=\"wp-container-4 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/test/2022/04/12/help-wanted-test-wordpress-6-0/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><strong>Are you interested in helping test out new WordPress 6.0 features but donâ€™t know where to start? This </strong><strong>detailed guide</strong><strong> will walk you through how to get started.</strong></strong></a></div>\n</div>\n\n\n\n<h2>Get ready for WordCamp Europe in Porto</h2>\n\n\n\n<ul><li>We are four weeks away from <a href=\"https://central.wordcamp.org/news/2022/05/join-the-european-wordpress-community-in-porto-portugal/\">WordCamp Europe</a>. After being postponed twice due to the pandemic, the WordPress event is taking place in Porto, Portugal, on 2-4 June 2022. Check out the <a href=\"https://europe.wordcamp.org/2022/schedule/\">schedule</a> and get your <a href=\"https://europe.wordcamp.org/2022/tickets/\">tickets</a> if you havenâ€™t yet!</li><li>WordCamp US <a href=\"https://us.wordcamp.org/2022/support-underrepresented-speakers-at-wordcamp-us/\">announced</a> a new program to support underrepresented speakers.</li><li><a href=\"https://irun.wordcamp.org/2022/\">WordCamp Irun</a> (Spain) is happening this month on May 21 and 22, 2022.</li></ul>\n\n\n\n<div class=\"wp-container-5 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://us.wordcamp.org/2022/our-call-for-volunteers-is-now-open/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><strong><strong>The </strong><strong>Call for Volunteers</strong><strong> for WordCamp US in San Diego, California, is now open. Newcomers to WordPress are always welcomed. Apply today!</strong></strong></strong></a></div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<p><strong><em><strong><em>Have a story that we could include in the next issue of The Month in WordPress? Let us know by filling out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this form</em></strong></a><strong><em>.</em></strong></em></strong></p>\n\n\n\n<p><em>The following folks contributed to this Month in WordPress: <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>, <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>, <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12816\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.0 Release Candidate 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2022/05/wordpress-6-0-release-candidate-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 May 2022 17:18:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12799\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:171:\"WordPress 6.0 Release Candidate 1 is now available for testing! You can \ndownload and help test RC1 in three ways. You can also help translate WordPress to 100+ languages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7242:\"\n<p>The first release candidate (RC1) for WordPress 6.0 is now available!</p>\n\n\n\n<p>This is an important milestone on the 6.0 release cycle journey. â€œRelease Candidateâ€ means that this version of WordPress is ready for release! Before the official release date, time is set aside for the community to perform final reviews and help test. Since the WordPress ecosystem includes thousands of plugins and themes, it is important that everyone within the WordPress community check to see if anything was missed along the way. That means the project would love your help.</p>\n\n\n\n<p>WordPress 6.0 is planned for official release on May 24th, 2022, three weeks from today.&nbsp;</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, and test this version of WordPress on a production or mission-critical website. Instead, it is recommended that you RC1 on a test server and site.&nbsp;</p>\n\n\n\n<p>You can test WordPress 6.0 RC1 in three ways:</p>\n\n\n\n<p><strong>Option 1: </strong>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the â€œBleeding edgeâ€ channel and â€œBeta/RC Onlyâ€ stream).</p>\n\n\n\n<p><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.0-RC1.zip\">release candidate version here (zip)</a>.</p>\n\n\n\n<p><strong>Option 3:</strong> When using WP-CLI to upgrade from Beta 1, 2, 3, or 4, on a case-insensitive filesystem, please use the following command:<br><code>wp core update --version=6.0-RC1</code></p>\n\n\n\n<p>Additional information on the full <a href=\"https://make.wordpress.org/core/6-0/\">6.0 release cycle is available here</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-0/\">6.0-related developer notes</a> in the coming weeks which will detail all upcoming changes.</p>\n\n\n\n<h1>Whatâ€™s in WordPress 6.0 RC1?</h1>\n\n\n\n<p>Since Beta 4, various items have been addressed, including (but not limited to):&nbsp;</p>\n\n\n\n<ul><li>Backport updates of Comment blocks tests (<a href=\"https://core.trac.wordpress.org/ticket/55643\">#55643</a>)</li><li>Backport a bugfix of Comment Template block pagination (<a href=\"https://core.trac.wordpress.org/ticket/55658\">#55658</a>)</li><li>Editor: Backport bug fixes for WordPress 6.0 from Gutenberg (<a href=\"https://core.trac.wordpress.org/ticket/55567\">#55567</a>)</li></ul>\n\n\n\n<p>WordPress 6.0 is the second major release for 2022, following 5.9 which became generally available in January. This release includes nearly 1,000 fixes and enhancements spanning most areas of the WordPress platform. Some key highlights within the content creation and site-building feature sets include:</p>\n\n\n\n<ul><li><strong>Style Switching:</strong> <a href=\"https://make.wordpress.org/core/2022/03/03/core-editor-improvement-choose-your-style/\">switch up the look and feel of your site</a>, all in one block theme. No need to change themes!</li><li><strong>More template options:</strong> use blocks to edit five more templates (author, date, categories, tag, and taxonomy).</li><li><strong>Multi-select: </strong>Easily select text across multiple blocks. Edit to your liking.</li><li><strong>Retain Styles: </strong>Keep your custom styles in place, whether transforming between blocks or creating new buttons.&nbsp;</li><li><strong>More patterns in more places:</strong> the Quick Inserter surfaces patterns that might work well for the condition youâ€™re in, baking in relevant patterns for template parts and pages youâ€™re working on.&nbsp;</li><li><strong>List View improvements: </strong>New keyboard shortcuts (shift + click) let you select multiple blocks to modify in bulk (reposition, delete, etc.), see your content at a glance with a collapsed by default view, and more.</li><li><strong>Refined design tools: </strong>Explore<strong> </strong>a new color panel, transparency options, more group block variations to create new layout options (Stack, Row), the ability to set your featured image in a Cover block, control the exact size of your featured image, gap support for the Gallery block, and more.</li><li><strong>New blocks: </strong>Various Post Comments, Read More, No Results in Query Loop, Post Author Biography, Avatar blocks.&nbsp;</li><li><strong>Block Locking: </strong>Choose to disable the option to remove a block, move it, or both, right in the editor.&nbsp;</li><li><strong>Export block themes: </strong>Explore the improved block theme export tool, as WordPress heads closer to codeless visual block theme building.</li></ul>\n\n\n\n<h1>Plugin and Theme Developers</h1>\n\n\n\n<p>All plugin and theme developers should test their respective extensions against WordPress 6.0 RC1 and update the â€œ<em>Tested up toâ€</em> version in their readme file to 6.0. If you find compatibility problems, please be sure to post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>, so these items can be investigated further prior to the final release date of May 24th.</p>\n\n\n\n<p>Review the <em><a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\">WordPress 6.0 Field Guide</a></em>, for more details on whatâ€™s contained in this release.</p>\n\n\n\n<h1>Translate WordPress</h1>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a> This release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 6.0 release cycle.</p>\n\n\n\n<h1>How to Help Test WordPress</h1>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute to WordPress. If you are new to testing, check out this <a href=\"https://make.wordpress.org/test/2022/04/12/help-wanted-test-wordpress-6-0/\">detailed guide</a> that will walk you through how to get started.</p>\n\n\n\n<p>If you think you have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2>Haiku Fun for RC 1</h2>\n\n\n\n<p>Release candidate&nbsp;<br>Our journey nearly done<br>Get ready, WordPress</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Thank you to the following contributors for collaborating on this post: <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a>, <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>, and <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12799\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 6.0 Beta 4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2022/05/wordpress-6-0-beta-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 May 2022 16:46:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12787\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"WordPress 6.0 Beta 4 is now available for testing! You can download and help test Beta 4 in three ways.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5813:\"\n<p>WordPress 6.0 Beta 4 is now available for testing!</p>\n\n\n\n<p>Beta 4 was not part of the originally published development cycle. It is aimed at providing an opportunity for testing some specific issues that were resolved since Beta 3. WordPress will continue with the regularly scheduled release milestones on May 3rd, 2022, with the RC1 release.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, and test this version of WordPress on a production or mission-critical website. Instead, it is recommended that you test Beta 4 on a test server and site.&nbsp;</p>\n\n\n\n<p>You can test WordPress 6.0 Beta 4 in three ways:</p>\n\n\n\n<p><strong>Option 1: </strong>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the â€œBleeding edgeâ€ channel and â€œBeta/RC Onlyâ€ stream).</p>\n\n\n\n<p><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.0-beta4.zip\" data-type=\"URL\" data-id=\"https://wordpress.org/wordpress-6.0-beta4.zip\">beta version here (zip)</a>.</p>\n\n\n\n<p><strong>Option 3:</strong> Use WP-CLI to test: wp core update &#8211;version=6.0-beta4.<br><em>Do not use this option if your filesystem is case-insensitive.</em></p>\n\n\n\n<p>The current target for the final 6.0 release is May 24, 2022, which is in less than a month!&nbsp;</p>\n\n\n\n<p>Additional information on the full <a href=\"https://make.wordpress.org/core/6-0/\">6.0 release cycle is available</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-0/\">6.0-related developer notes</a> in the coming weeks which will detail all upcoming changes.</p>\n\n\n\n<h2>Explore Whatâ€™s in Beta 4</h2>\n\n\n\n<p>Since Beta 3, various items have been addressed, including (but not limited to):Â </p>\n\n\n\n<ul><li>Update post content placeholder (<a href=\"https://github.com/WordPress/gutenberg/pull/40177\">#40177</a>)</li><li>Comments block: Fix glitches found while backporting (<a href=\"https://github.com/WordPress/gutenberg/pull/40628\">#40628</a>)</li><li>Show add pattern label when patterns are being prioritised (<a href=\"https://github.com/WordPress/gutenberg/pull/40598\">#40598</a>)</li><li>Fix regression with featured images in latest posts (<a href=\"https://github.com/WordPress/gutenberg/pull/40662\">#40662</a>)</li><li>Navigation Link: Avoid unnecessary re-renders (<a href=\"https://github.com/WordPress/gutenberg/pull/40696\">#40696</a>)</li><li>Navigation: Improve selector performance (<a href=\"https://github.com/WordPress/gutenberg/pull/40700\">#40700</a>)</li><li>Comments Title: Count toggle working in &#8216;Singular&#8217; editing mode (<a href=\"https://github.com/WordPress/gutenberg/pull/40728\">#40728</a>)</li><li>[Writing Flow]: Try to fix multi-selection with shift+click (<a href=\"https://github.com/WordPress/gutenberg/pull/40687\">#40687</a>)</li><li>Fix alignment issue with comment author name (<a href=\"https://github.com/WordPress/gutenberg/pull/40610\">#40610</a>)</li><li>Comment Content: Show moderation message (<a href=\"https://github.com/WordPress/gutenberg/pull/40612\">#40612</a>)</li><li>Display paragraph breaks in comment contents block (<a href=\"https://github.com/WordPress/gutenberg/pull/40667\">#40667</a>)</li><li>Fix style comment awaiting moderation indentation (<a href=\"https://github.com/WordPress/gutenberg/pull/40681\">#40681</a>)</li><li>Fix: Page patterns don&#8217;t show when only one pattern is available (<a href=\"https://github.com/WordPress/gutenberg/pull/40707\">#40707</a>)</li><li>Update the placeholder for post excerpt (<a href=\"https://github.com/WordPress/gutenberg/pull/40178\">#40178</a>)</li><li>REST API: Fix regression in the Pattern Directory endpoint. (<a href=\"https://core.trac.wordpress.org/ticket/55617\">#55617</a>)</li><li>REST API: Fix the scheme for the Block Directory search endpoint. (<a href=\"https://core.trac.wordpress.org/ticket/53621\">#53621</a>)</li><li>Show comments previews in the Comment Query Loop. (<a href=\"https://core.trac.wordpress.org/ticket/55634\">#55634</a>)</li><li>Avoid DB error in comment meta queries. (<a href=\"https://core.trac.wordpress.org/ticket/55218\">#55218</a>)</li></ul>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute to WordPress. If you are new to testing, check out this <a href=\"https://make.wordpress.org/test/2022/04/12/help-wanted-test-wordpress-6-0/\">detailed guide</a> that will walk you through how to get started.</p>\n\n\n\n<p>If you think you have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2>Another Haiku, Just for You</h2>\n\n\n\n<p>Beta four, surprise!<br>Iterating all day long<br>Time to share and test</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Thank you to the following contributors for collaborating on this post: <br><a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a>, <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a>, and <a href=\'https://profiles.wordpress.org/costdev/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>costdev</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12787\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"WP Briefing: Episode 30: A Sneak Peek at WordPress 6.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wordpress.org/news/2022/05/episode-30-a-sneak-peek-at-wordpress-6-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 May 2022 13:03:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=12742\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"Get a behind the scenes sneak peek at the WordPress 6.0 release on this episode of the WordPress Briefing featuring a special guest!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/04/WP-Briefing-030.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:33449:\"\n<p>In the thirtieth episode of the WordPress Briefing, Executive Director Josepha Haden Chomphosy and special guest Channing Ritter give listeners a sneak peek into the WordPress 6.0 release ahead of the Release Candidate 1 (RC1). </p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 id=\"credits\">Credits</h2>\n\n\n\n<ul><li>Special Guest: <a href=\"https://profiles.wordpress.org/critterverse/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/critterverse/\">Channing Ritter</a></li><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a> </li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/themes/twentytwentytwo/\">Twenty Twenty-Two Theme</a></li><li><a href=\"https://make.wordpress.org/core/2022/01/08/locking-blocks-in-wordpress-5-9/\">Block Locking</a></li><li><a href=\"https://wordpress.tv/2017/12/10/josepha-haden-beginners-guide-to-contributions/\">Beginner&#8217;s Guide to Contributing</a>, Josepha Haden Chomphosy</li><li><a rel=\"noreferrer noopener\" href=\"https://wordsesh.com/\" data-type=\"URL\" data-id=\"https://wordsesh.com/\" target=\"_blank\">WordSesh</a></li><li><a rel=\"noreferrer noopener\" href=\"https://learn.wordpress.org/social-learning/\" data-type=\"URL\" data-id=\"https://learn.wordpress.org/social-learning/\" target=\"_blank\">Social Learning Spaces</a></li><li><a rel=\"noreferrer noopener\" href=\"https://europe.wordcamp.org/2022/contributor-day/\" data-type=\"URL\" data-id=\"https://europe.wordcamp.org/2022/contributor-day/\" target=\"_blank\">WordCamp Europe Contributor Day</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-12742\"></span>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:00:00]&nbsp;</p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:00:40]</p>\n\n\n\n<p>Tomorrow&#8217;s a big day. It marks the beginning of what is called the RC period, or release candidate period, for the current major release of the WordPress CMS. If you&#8217;re not super familiar with the way release cycles work, this is the point in the process where the code should pretty much be done changing.&nbsp;</p>\n\n\n\n<p>That way you can call in your designers, developers, and anyone else who builds things for others using your software. And they can either start testing their products on it, or they can figure out what new things they need to be able to teach their clients, whichever is most relevant to them. That is generally true for WordPress as well, but in true open source fashion, there is a caveat built in that helps us to get in last-minute, vital changes from contributors.</p>\n\n\n\n<p>We have a two-person sign-off rule that&#8217;s been around for about as long as I can remember, but lets things be added late in the release cycle, as long as there are two sign-offs from qualified contributors. Most of the time, those qualified contributors are lead developers of the project, but not always. We have a good group of people who are around helping us make sure that this is doable and the best thing that we can offer to all of our users.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:01:50]</p>\n\n\n\n<p>And so, yeah, two-person sign-off, that is the little bit of release process trivia that you never knew you needed. And since we&#8217;re looking at a release trivia, kind of hidden bits of how software is made, I actually have a guest with me today, Channing Ritter. So Channing is a product and visual designer based in Brooklyn, New York.</p>\n\n\n\n<p>She&#8217;s a design director at Automattic and has been working on the WordPress project as a full-time sponsored contributor since January, 2021. She is joining us to share some behind the scenes intel on what&#8217;s going into the 6.0 release, her role in that process, and then we&#8217;ll just kind of see how the conversation goes from there.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:02:40]</p>\n\n\n\n<p>Well, and with that, I&#8217;d like to welcome Channing to the WordPress Briefing. Hi Channing!</p>\n\n\n\n<p>[<strong>Channing Ritter </strong>00:02:45]</p>\n\n\n\n<p>Hey Josepha. Thanks so much for having me.&nbsp;</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:02:48] </p>\n\n\n\n<p>I&#8217;m excited to have you here. If I understand, you are working on the design side of things with the release. So why don&#8217;t you tell me a little bit about the role you&#8217;ve played?</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:02:59] </p>\n\n\n\n<p>I am. I am the design release lead for the 6.0 release. And if I understand correctly, this is a position that has been unfulfilled for the past few release cycles. So I&#8217;m kind of the first person to step in over the past few releases. And I think that&#8217;s really exciting, especially because design has started to play such a more important role in the WordPress project over the past few years.</p>\n\n\n\n<p>So it makes sense that design would have a seat at the table, and I&#8217;m really excited to be helping advocate for the design team and learning from other folks on the release squad. Who&#8217;ve been doing this for a while.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:03:33] </p>\n\n\n\n<p>So. First big question about 6.0, what is the feature that you are most excited about?&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:03:39] </p>\n\n\n\n<p>I&#8217;m most excited about the style switcher within the global styles panel. Um, so if folks still don&#8217;t know what I&#8217;m talking about there, it&#8217;s the ability to change between different variations of the theme.json without actually switching the theme.&nbsp;</p>\n\n\n\n<p>So this is a way to get a drastically different look and feels across your site with just a single click. And I see it as a really fun place to experiment and kind of get inspired for the different ways your site could appear without ever having to change your theme.</p>\n\n\n\n<p>And in terms of the Twenty Twenty-Two variations, they&#8217;re just really gorgeous and all so diverse. Like you have the main default theme that has the deep green and kind of peachy colors and this really elegant type treatment with a really thin Serif typeface. But then the variations are so different from that. And I think my favorite one is the Swiss variation.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:04:36]</p>\n\n\n\n<p>The Swiss variation?&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:04:38]</p>\n\n\n\n<p>Yeah, every graphic design nerd loves Swiss design.&nbsp;</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:04:42] </p>\n\n\n\n<p>Oh, ok! Now I know!&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:04:38] </p>\n\n\n\n<p>Really awesome things found in there. It&#8217;s a really high contrast, bold variation. It&#8217;s kind of black and white with red accents. I just love how different it is from the default style and how easy it is to change up your site and just get a whole drastically different look and feel.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:05:00] </p>\n\n\n\n<p>That&#8217;s excellent. So for folks who do not know what we&#8217;re referring to, when we talk about the Twenty Twenty-Two variation, that is the default theme, Twenty Twenty-Two. I&#8217;ll put a link to both the classic and block-based versions in our show notes, but you&#8217;ll want to use the block-based version to look at these style variations that Channing has mentioned here.&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:05:24] </p>\n\n\n\n<p>You know, we&#8217;re really excited that the first-ever default block theme was released with 5.9, which is when Twenty Twenty-Two first went out and was bundled with 5.9.</p>\n\n\n\n<p>But now, with 6.0, I think even more so it&#8217;s starting to showcase the real power of block themes and what can actually be done there. And style variations is a huge kind of first step into this new world of block themes and starting to really open up the possibilities and all the flexibility that you have there.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:05:55] </p>\n\n\n\n<p>Yeah, absolutely. So when we&#8217;re talking about the Twenty Twenty-Two default theme, when we&#8217;re talking about switching these variations inside the theme itself, that seems to me to be a very user-focused kind of feature. And when we talk about users in WordPress, there&#8217;s a lot of room for interpretation. Like if we look at it kind of in a framework of three types of users of WordPress, you have, like end-users. So people who are site owners using it as a site to, like, enable their business.&nbsp;</p>\n\n\n\n<p>But you also have mid-end usersâ€”people who use it to build sites for others. And what I like to call back-end users, people who are using WordPress as a framework. And of course at the start of the Gutenberg project, way back in forever, a million years ago, one of the big calls to action that we had around even, like, trying to do this, was that we wanted to make WordPress easier for users. Just plain users.&nbsp;</p>\n\n\n\n<p>And, and to me, that means making WordPress easier for those mid-end users, people who are creating WordPress sites for other people. But also should give some power and autonomy back to those end-users, the people who are using sites to enable their business or are site owners.&nbsp;</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:07:14] </p>\n\n\n\n<p>And so in that context, between 5.9 and 6.0, do you feel like we have features that are really giving that kind of power and agency back to our end-users? Do you feel like we have some features that are really focused on those mid-end users, as opposed to our backend users? For a long time, we focused heavily on enabling our backend users, and now Gutenberg kind of moves us into those other two areas.</p>\n\n\n\n<p>And so do you think that things like being able to switch between your style of variations, other things like that are moving us closer to that particular goal of Gutenberg?</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:07:51] </p>\n\n\n\n<p>That&#8217;s a great question. I think it&#8217;s both. I think some of the features being released in 6.0 are absolutely going to empower that end-user.</p>\n\n\n\n<p>Particularly in terms of improvements around design tools and some of the quality of life improvements. For example, partially selecting across multiple blocks and being able to partially select texts there. That&#8217;s the type of thing that really brings the writing experience in the editor to be on par with how you would expect a text editing experience to work.</p>\n\n\n\n<p>And there are tons of small quality of life improvements in this release that I think are really gonna help those end-users. But there are also improvements around what we might call the maintainers who are building sites for others. I think block locking in particular is something that is really going to start filling a gap between people who build the sites and then people who do the day-to-day maintenance within a site.</p>\n\n\n\n<p>For example, in 6.0, we&#8217;re introducing some interface UI around block locking, but also there&#8217;ll be control around the ability to lock user roles.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:09:03]</p>\n\n\n\n<p>Which I think makes a lot of sense. I mean, we have all of these user roles in the CMS itself, and for a long time, we&#8217;ve just been like free for all on blocks, which was great and is great and should be available to people.</p>\n\n\n\n<p>But also if we are saying, like, it makes sense to have this gradient of users and their abilities for the CMS itself, and we are saying that we want to move control of the website and the content to be at the base layer in these blocks, then it also makes sense that we should be able to provide that same sort of granular level of access in the blocks.</p>\n\n\n\n<p>So I think that&#8217;s a great thing. If you all, if dear listeners, you do not know what we mean by â€œblock locking,â€ I&#8217;m sure that I can find a link for us in our show notes below as well. If for anyone who&#8217;s been talking through Gutenberg things with me for a while, you know that this is one of the primary use cases that I think has been a long time coming.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:10:05]</p>\n\n\n\n<p>It was one of the first examples that I offered to folks when we had that question of like, who is this being built for? In what way is this beneficial to that mid-end user, as opposed to just giving all of the power and autonomy to users in a way that maybe is not the best for their visitors?&nbsp;</p>\n\n\n\n<p>This is one of those use cases that made the most sense to me being able to say, okay, well, the opportunity to, as somebody who runs an agency and is building websites for people to be able to say, yeah, â€˜You can do anything that is possible in this instance of WordPress and all the things that you are allowed to do will not break your instance. It won&#8217;t break your websiteâ€™.&nbsp;</p>\n\n\n\n<p>And so it gives a lot of time back to agencies to focus on their client&#8217;s most important problems, as opposed to not knowing how to update the hours in their footer or something like that. And so I&#8217;m very excited about that particular feature.</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:11:01]</p>\n\n\n\n<p>It&#8217;s such a long-requested feature. I mean, we&#8217;ve been hearing requests around this particular feature for years and, you know, often when something gets requested over a span of years like that, it&#8217;s because there are some complexities to figure out how it works.</p>\n\n\n\n<p>And that&#8217;s definitely been the case with moving forward with block locking. And there are a lot of nuances there. But I think what you were saying, I totally agree with. Thereâ€™s always a push and pull. And as we enable more and more flexibility for end-users, there needs to be a little bit of push from the other side to kind of give more granular controls, more locking options, and make sure that everything can still be easily maintained.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:11:43]</p>\n\n\n\n<p>Yeah, we mentioned in that answer the concept of maintainers. If you are a contributor, it&#8217;s not <em>that</em> kind of â€˜maintainer.â€™ So if you&#8217;re a WordPress contributor and we said maintainers there, um, just know that that&#8217;s not what we&#8217;re referring to. If you don&#8217;t know what I&#8217;m talking about when I say â€˜contributor,â€™ there is a whole community of open source people and maintainers are people who specifically take care of a particular part of the WordPress software or the WordPress project, um, that makes all this possible.</p>\n\n\n\n<p>So there&#8217;s, ya knowâ€¦.&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:12:19] </p>\n\n\n\n<p>So true! The maintainer has another meaning in this context.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:12:20]</p>\n\n\n\n<p>Yeah, we have a mix in our audience and I love it, but it also makes me frequently spend like 10% of my podcast being like, by the way, when I said this, I didn&#8217;t mean you, but I did mean <em>you</em>, which makes it harder. I know.&nbsp;</p>\n\n\n\n<p>So. Youâ€™ve been with the project for a little bit, but if I recall correctly, this is the first time that you were, like, leading part of a release.</p>\n\n\n\n<p>So what would you say was the most challenging part of that?</p>\n\n\n\n<p>[<strong>Channing Ritter</strong>  00:12:52] </p>\n\n\n\n<p>Another great question. This is my first time being this closely involved with the release. Although I was involved with the 5.9 release, but mostly in a release assets capacity. So I helped with the <em>About Page</em> and the welcome banner that goes on the dashboard.</p>\n\n\n\n<p>So I did get some insight in the last release cycle. Which was great preparation for being more involved as a release lead on this cycle. From the design perspective, one of the hardest things is always going to be figuring out what exactly goes into the release and what needs more time. In the sense, you know, that there might be some features that need to stay in the Gutenberg plugin for a while and get more testing before they get released to a much wider audience in a major WordPress release.</p>\n\n\n\n<p>So I think on the design side, we definitely have some goals that are big, long-term projects that are likely going to span across, you know, many releases, maybe even over many years. And I think the full site editor is a great example of that in a sense that it&#8217;s not something that you just were gone in one release and then it all gets released and then it&#8217;s all good to go.</p>\n\n\n\n<p>[<strong>Channing Ritter</strong>  00:14:06] </p>\n\n\n\n<p>It&#8217;s something that has to be staggered across many releases, and there&#8217;s a lot of thought that goes into it; does this make sense in this more limited capacity, and what else needs to go in in order for this feature to go in? And the most complex things about the WordPress project is how interconnected things are.</p>\n\n\n\n<p>So when you start making those decisions about what should go in, what should get pulled out, often there&#8217;s sort of a domino effect of like, well, that would affect this feature and then, well, maybe they shouldn&#8217;t go in, or maybe this does need to go in. And that is really one of the most challenging, but also one of the most fascinating aspects of the release process.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:14:46] </p>\n\n\n\n<p>Yes. It is very, very true that there are kind of no small problems left in WordPress. *laughs* Yeah, when we, when we first started with this like bigger release squad, cause that has not been routine for the history of the project. When we first started with that, I know that expanding out the exposure to like how much one change affects 25 different things was really, it was really good for all of us to be reminded.</p>\n\n\n\n<p>And as I mentioned at the top of our episode today, tomorrow begins the RC period. It begins the release candidate period, which is when it&#8217;s supposed to be, as locked down as possible. But if you all have been following along with our release process in general, which if you&#8217;re listening to this, you probably have, you know that last week or a couple of weeks ago, we had this whole question about the Webfonts API, and we had that conversation in a public space as best we could,&nbsp;</p>\n\n\n\n<p>Like, there are always things that you can&#8217;t, like, fully disclose in public spaces, but we had a very open and transparent conversation about, like, who is most affected by putting it in, in the state that the API was in. And, who&#8217;s most affected if we take it out. And where can we make compromises on either side so that both sides are a little happy and a little unhappy?</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:16:09] </p>\n\n\n\n<p>And, like, that is all so hard to do. Not only in general. We have a 20-year-old code base and a five-year-old code base. And it&#8217;s all a big, big undertaking to understand what is happening and where it happens. And so there&#8217;s this moment always when we are trying to decide, like, is this baked enough? Did we put it in too early? Should we pull it out? How, if we pull it out, did we ask people to do too much work before we decided to pull it out anyway?</p>\n\n\n\n<p>Like, you always have those kinds of questions about it. And honestly, I think that most of us weren&#8217;t around the last time, that WordPress was, was this experimental in public, like it&#8217;s always been open source. It&#8217;s always been experimental and iterating publicly, which is just the hardest way to work on anything. We like, we shipped our best guesses. Don&#8217;t be mad. It&#8217;ll beâ€¦ we&#8217;re coming for it. We&#8217;re going to fix it. Like, that&#8217;s always hard, but the last time around, when it was this substantial a change was, like, 2008 or something, like, it was ages and ages ago.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong>  00:17:14] </p>\n\n\n\n<p>And we were smaller than, we had a smaller number of contributors. We had a smaller group of people actually using the CMS. And so over time it has gotten more and more complicated. And, and I don&#8217;t think that we can ever understate the complexities of that. And so for you, you had a little bit of exposure to it in 5.9 and then showed up for like really doing it in 6.0.</p>\n\n\n\n<p>Has it been a surprising change? Like, were you surprised much more by how complicated it was when you were closer to it?&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:17:47] </p>\n\n\n\n<p>Yeah, definitely. Itâ€™s been a real learning process, especially coming to understand how much there really are no easy answers. I think a lot of us are in the release squad are real problem solver types of people and, and want it to, you know, be a really neat, tidy answer.&nbsp;</p>\n\n\n\n<p>And it&#8217;s not always the case. You know, sometimes parts of the feature might go in, or some contingency plan might get put into place and things didn&#8217;t go exactly as planned. But what you said of being an experiment and being on kind of the cutting edge of trying out new things, I think there is a lot of passion around that in the WordPress project.&nbsp;</p>\n\n\n\n<p>Right now, we&#8217;re in such a transitional period for the project, you know, moving from classic themes to block themes and really changing the ideas of how we approach designing sites. And because of that, I think there is a lot of momentum and energy around getting new features, as many new features as possible into each release. But there&#8217;s also, you know, a lot of testing and stuff that needs to happen.</p>\n\n\n\n<p>And to make sure that, like you said, these things aren&#8217;t going out too early.&nbsp;</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:19:01] </p>\n\n\n\n<p>Well, and there&#8217;s always that difficulty, we&#8217;re going to just leap right into open source areas now. There&#8217;s always that difficulty around, like, there&#8217;s this concept that when, like, we always want to ship something that doesn&#8217;t break backward compatibility when possible, we don&#8217;t want to ship vulnerabilities. Like, that&#8217;s always true, but we are in an open source project, and open source projects are necessarily kind of tolerant of like, that&#8217;s not our best, but like it skates, right?&nbsp;</p>\n\n\n\n<p>This was, we aimed for Ferrari and got a skateboard because sometimes you got to start with a skateboard, right? *laughter* Like if it gets you from one place to another, that&#8217;s kind of where we&#8217;ve got to aim some days.&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:19:45] </p>\n\n\n\n<p>Totally.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong>  00:19:46] </p>\n\n\n\n<p>And that&#8217;s always so, so difficult, especially cause, like, for the big change that 5.0 represented, and that 5.9 representedâ€“ 6.0 is not as big a shock as 5.9 was.&nbsp; But, like, as big a change as those represented, it still skates. And that&#8217;s, I think what makes the work especially hard, especially nuanced. And like, we haven&#8217;t gotten together as human beings in two years. And so sometimes people just kind of forget there&#8217;s a human being back there.</p>\n\n\n\n<p>We&#8217;re humans. Everyone be nice. Yeah. I don&#8217;t know that part of running a release definitely was surprising to me. My first release that I ran was 5.0 andâ€¦</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:20:31] </p>\n\n\n\n<p>Oh, wow!</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:20:32]</p>\n\n\n\n<p> Yeah, it was, like, that was  2018. And then I became the executive director at the top of 2019. And I distinctly remember one core chat where I showed up and just was like the most transparent, vulnerable person we&#8217;ve ever experienced in life.</p>\n\n\n\n<p>That&#8217;s not true. We have very vulnerable people in the project and very transparent people, but I told everyone like, there are a million of you and one of me, and it&#8217;s kind of terrifying that you&#8217;re leaping on me in thisâ€”like you&#8217;re scaring me a lot right now. And that was quite a thing to say to like, all theseâ€¦ it&#8217;s terrifying! Right?</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:21:12] </p>\n\n\n\n<p>I love when you see that type of vulnerability in the project. I think it takesâ€¦ it takes a degree of comfort and familiarity with the project to even be able to admit to that. And to me, that&#8217;s a real sign of growth in the project. Like when I first started contributing, I don&#8217;t think I ever would have just said, like, â€˜How is the feature supposed to work? I have no idea.â€™ That&#8217;s something that I say all the time now.</p>\n\n\n\n<p>*Laughter*</p>\n\n\n\n<p>And you know, that is completely fine and more than okay. It&#8217;s a massive project. There are folks who have done deep thinking about a feature over the course of years. You know, and there are experts who can help shed light on various problems that maybe you just haven&#8217;t had a chance to dive into yet and really understand the nuances of yet.</p>\n\n\n\n<p>So that&#8217;s the amazing thing about open source is that you can lean on folks who do have expertise in that particular area. You&#8217;re not expected to be an expert-expert in every single domain. It&#8217;s okay to say, I don&#8217;t really have a good idea or a good concept of this feature. I don&#8217;t have a good feeling for it. What do other folks think?&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:22:24] </p>\n\n\n\n<p>And even people who have been in the project for a long time, decade plus, still say that all the time. You know, or you might just say, like, I have a really rough idea of how this works, are other people seeing this the same way? Or did other people have a different, you know, mental picture of how this might work?</p>\n\n\n\n<p>Even if, sometimes it feels like you&#8217;re over-communicating, it&#8217;s really helpful because often people do have really dramatically different ideas about how a feature might take shape.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:22:49] </p>\n\n\n\n<p>And I hope that&#8217;s one of the things that we never lose in the project. Like we are an old, old project now and we support a bunch of the web with a tiny, tiny group of people compared to the amount of the web that we support.</p>\n\n\n\n<p>And I hope that we always have that opportunity as senior leaders, which I am, and all of our upcoming leaders to all of us, just at some point, be like, can we stop the train? I don&#8217;t understand. I donâ€™t understand that. Um, and not necessarily feel that that has made us a worse contributor. Cause I think that it&#8217;s when we are transparent about our lack of understanding.</p>\n\n\n\n<p>That&#8217;s when we have the opportunity to make what we&#8217;re offering to the world more solid and always better.&nbsp;&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:23:35] </p>\n\n\n\n<p>I love it. I think it&#8217;s the, one of the most lovely things about the WordPress community. There&#8217;s really low judgment around those types of questions and people are really inclusive and more than happy to take a moment to explain something to you or shed some light on an issue you might not have thought that much about.&nbsp;</p>\n\n\n\n<p>I think that&#8217;s one of the best things you can always reach out for help. And folks are always willing to provide guidance or context or even historical information about, you know, whether it&#8217;s been tried in the past or previous explorations and that sort of thing.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:24:10] </p>\n\n\n\n<p> All right. Well, that covers all of my questions for you. Do you have a final thought about the release that you would like to share with everyone you don&#8217;t have to, if you don&#8217;t want to, not everyone has like a final sign off.&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:24:25] </p>\n\n\n\n<p>Yeah. One of the things I&#8217;m most excited about for this 6.0 release is all of the improvements around design tools.</p>\n\n\n\n<p>And these are just small improvements around a ton of different things, like the color panel, border controls, gap support, typography options, flexible container blocks, etc. These are the types of tools that are a designer&#8217;s dream. You know, they really make the difference between being able to make a really crisp, finished looking final product and having something that&#8217;s a little rough around the edges.</p>\n\n\n\n<p>And as a designer, like those are the things that your eye goes straight towards. And all of these nuanced new tools, they really allow designers to have that fine detailed control to create really pixel perfect sites. And I think that&#8217;s something that, you know, myself and a lot of others on the design team are just so beyond excited about.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:25:25]</p>\n\n\n\n<p>Excellent. Well, Channing, thank you so much for joining us today on the WordPress Briefing; it has been an absolute delight.&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:25:32] </p>\n\n\n\n<p>Thank you for having me.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:25:41] </p>\n\n\n\n<p>And now it is time, woohoo, for the small list of big things. My favorite part of this podcast, that&#8217;s not true. I have a lot of things that I love about this podcast. I just, in particular love being able to share like three things that are coming up in the next couple of weeks that everybody should be aware of. And I really particularly like the list I have this week.&nbsp;</p>\n\n\n\n<p>First as of today, we are two weeks away from WordSesh. If you&#8217;re looking forward to your first in-person WordPress event, but feel like you could use a little foundation information, a little bit of a WordPress primer, then this event has a lot of excellent thought leaders in the project that you can learn from.</p>\n\n\n\n<p>If you&#8217;re looking for more practical or hands-on opportunities, uh, you can also check out social learning spaces. All of those are free for anyone. So I will include links to both of them in the show notes.&nbsp;</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:26:30]&nbsp;</p>\n\n\n\n<p>Second, as of today, we are four weeks away from WordCamp Europe. This is one of our flagship events. So it also includes a contributor day, which I encourage you to look into. If you have never heard of one before. I will be there to meet some of the contributors that have joined the project since the end of 2019. And hopefully, I will see you there as well. If you&#8217;ve never heard of a contributor day, then I&#8217;ll include a link to the beginner&#8217;s guide to contributions, a little talk that I gave in 2017 in the show notes that should help you get your bearings or at the very least know what questions to ask yourself to figure out if a contributor day is right for you.</p>\n\n\n\n<p>And then the third thing as of today, it has been one week since <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> and the <a href=\"https://make.wordpress.org/meta/\">Meta</a> developersâ€¦ Um, that sounds like a bandâ€¦ Ian Dunn and the Meta developers connected the props channel in the community Slack to WordPress.org profile activity. I&#8217;m really excited about this. It&#8217;s the first in a long list of changes that are part of a larger project to credit more non-code contributions, more contributions that are not specific to a major release or event.</p>\n\n\n\n<p>And also to set us up to be able to provide more quality checks and balances for our growing Five for the Future program. If you&#8217;ve not been over there lately, if you&#8217;re not super sure what I&#8217;m talking about, there&#8217;s a link to the discussion post that we had about it, but also you can wander right over into the Making WordPress Slack and check out the props channel to just kind of see a running list of contributors that people are really grateful for. Which, frankly, if you ever are having a bad day, that is a wonderful place to just kind of wander in and see all of the positive vibes that people are sending around to each other.</p>\n\n\n\n<p>Uh, yeah, so the props channel, is always good. Uh, and that my friends is your small list of big things. Thank you for tuning in today for the WordPress Briefing. </p>\n\n\n\n<p>I&#8217;m your host, Josepha Haden Chomphosy. And I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12742\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:75:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"People of WordPress: Meher Bala\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wordpress.org/news/2022/04/people-of-wordpress-meher-bala/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 30 Apr 2022 09:20:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:7:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:9:\"HeroPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:19:\"People of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:15:\"WordCamp Mumbai\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:16:\"wptranslationday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12706\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"This month\'s People of WordPress feature shares the story of developer and e-commerce builder Meher Bala. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"webcommsat AbhaNonStopNewsUK\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:16637:\"\n<p>In this series, we share some of the inspiring stories of how WordPress and its global network of contributors can change peopleâ€™s lives for the better. This month we feature a Indian-based WordPress developer and long term contributor on how it helped her find a career and a local and global community to belong to.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img width=\"1024\" height=\"515\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/04/meher-1.jpg?resize=1024%2C515&#038;ssl=1\" alt=\"Meher pictured against the backdrop of a window overlooking trees \" class=\"wp-image-12728\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/04/meher-1.jpg?resize=1024%2C515&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2022/04/meher-1.jpg?resize=300%2C151&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/04/meher-1.jpg?resize=768%2C386&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2022/04/meher-1.jpg?w=1247&amp;ssl=1 1247w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p><strong>WordPress is an inspiration to Meher Bala, a frontend web developer and community builder from India. From using the software as a basic website tool to helping entrepreneurs and good causes around the world fulfill their aspirations, she has overcome personal barriers and now aims to inspire others.</strong></p>\n\n\n\n<p>Meher found her vocation and learned new skills through WordPress. She also discovered a way to encourage other women to consider careers in IT.&nbsp;</p>\n\n\n\n<h2>Opening the doors to a career in technology</h2>\n\n\n\n<p>As a child, Meher was diagnosed with dyslexia (difficulty in reading the written word) and dyscalculia (difficulty in comprehending numbers and mathematical functions). With the support of her parents and a tutor, she was able to overcome this learning obstacle. She developed coping techniques and a determination to work to overcome challenges as they appeared later in life.</p>\n\n\n\n<p>In school, she got an opportunity to replace one subject with computer studies as an alternative. This proved to be an eye-opener to future career possibilities.&nbsp;</p>\n\n\n\n<p>She began to research not only what the internet had to offer but also how it worked, including the new and fascinating concepts of email and websites. Her father bought the familyâ€™s first desktop computer so she could do her research at home.</p>\n\n\n\n<p>Meherâ€™s father wanted to turn her love for computers into something that would serve her well in the future. In 2005, he enrolled her in a short computer course from a global IT training provider. The course tutor was so impressed with her performance, she was advised to enroll in a four year software development course.</p>\n\n\n\n<p>That meant she had studied the software development course alongside her higher education college course. Looking back, she enjoyed the dual challenge of the degree course in commerce, and the experience prepared her well to keep learning software while working as a developer. Within three years, she had learned C#, C, C++, HTML, Java, and .NET. </p>\n\n\n\n<p>After graduation, she was in a dilemma to choose between commerce and IT. What to choose? She had a compulsory one-year technology internship to complete, and her choice of focus for that year would prove to be a defining moment.</p>\n\n\n\n<p>In 2009, on her birthday, Meher was offered an internship. On the first day of the internship, she was introduced to WordPress. Her initial assignment was to change the look and feel of the WordPress dashboard â€” in just six hours. But there was a problem &#8211; she had never worked with WordPress before!</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>&#8220;I stared at the whiteboard and thought that task given was impossible and difficult to meet the deadline. I wondered if my boss was joking and did not know then what you could do with WordPress as a developer and how it could slot into your toolbox. It opened my eyes.&#8221;&nbsp;</p><cite>Meher Bala</cite></blockquote>\n\n\n\n<p>Meher used her research skills to know more about using WordPress. She found a plugin that would help her achieve her task. She met the deadline and it ingrained an interest that she would never lose. </p>\n\n\n\n<h2>Re-discovering WordPress</h2>\n\n\n\n<p>Five years after her initial WordPress experience, Meher was assigned to lead an international project in WordPress.&nbsp;She was hesitant â€” she had lost touch with the CMS during that five years, but the project was a great opportunity to become a team leader and lead from the front.&nbsp;</p>\n\n\n\n<p>She decided to update her WordPress skills, relying again on the strength of her research skills and determination. In the process, she also taught her team all about WordPress, inspiring many of those members to continue to develop their WordPress skill set.</p>\n\n\n\n<p>The success of that project was a pivotal moment for Meher and a new dawn as a developer specializing in WordPress.</p>\n\n\n\n<p>As a team lead, Meher soon found it was not possible to always have all the answers straight away. She found internet searches gave practical solutionsâ€”but rarely explained the theory behind it.</p>\n\n\n\n<p>So she went looking for a WordPress group to help her expand the scope and depth of her knowledge.</p>\n\n\n\n<h2>Finding the community and its developer learning opportunities </h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"999\" height=\"667\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/04/dsc_00345.jpg?resize=999%2C667&#038;ssl=1\" alt=\"Meher at WordCamp Nagpur in 2017\" class=\"wp-image-12762\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/04/dsc_00345.jpg?w=999&amp;ssl=1 999w, https://i2.wp.com/wordpress.org/news/files/2022/04/dsc_00345.jpg?resize=300%2C200&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/04/dsc_00345.jpg?resize=768%2C513&amp;ssl=1 768w\" sizes=\"(max-width: 999px) 100vw, 999px\" data-recalc-dims=\"1\" /><figcaption>Meher enjoying being part of <em>WordCamp Nagpur in 2017</em></figcaption></figure>\n\n\n\n<p>In 2015, while browsing Facebook, Meher came across an advertisement for something called WordCamp Mumbai, an event that had taken two days before. She did a little digging to learn what a WordCamp was, and about the people behind it. She took the plunge and joined the WordPress Mumbai Meetup group.</p>\n\n\n\n<p>Her first Meetup experience was not love at first sight. She felt the topics were for advanced users, and the timing late in the evening made it difficult to attend.</p>\n\n\n\n<p>But a few months later, the Meetup addressed a topic that could help her resolve an issue in one of her current projects. She made the effort to show up and came away with a number of important tips.&nbsp;The speaker had taken the time to speak to individual attendees. When he came to Meher, she took the opportunity to ask a couple of questions about her project issues. </p>\n\n\n\n<p>Thereafter she went to more Meetups and got to know the people behind this group, just as they started talking about WordCamp Mumbai 2016.</p>\n\n\n\n<h2>A WordCamp adventure</h2>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/04/wcm16.jpg?resize=600%2C800&#038;ssl=1\" alt=\"Meher pictured with the WordCamp Mumbai 2016 sign \" class=\"wp-image-12758\" width=\"600\" height=\"800\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/04/wcm16.jpg?w=600&amp;ssl=1 600w, https://i1.wp.com/wordpress.org/news/files/2022/04/wcm16.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 600px) 100vw, 600px\" data-recalc-dims=\"1\" /><figcaption>Meher discovering <em>WordCamps in Mumbai in 2016</em></figcaption></figure>\n\n\n\n<p>Meher expressed interest in being a part of the coming&nbsp; WordCamp Mumbai and started in an entry-level role with basic responsibilities.</p>\n\n\n\n<p>At first, she thought WordCamp was a formal conference with about 100 people. So on the first day of WordCamp Mumbai 2016, she was surprised to see so many WordCamp enthusiasts attending and enjoying such a relaxed and friendly conference.</p>\n\n\n\n<p>After that great experience, Meher went to many more meetups and did more volunteering. She started taking on responsibilities in the coming WordCamps and getting to know the different aspects of the camp.&nbsp;</p>\n\n\n\n<p>In the following years, at each WordPress, she took up a new role like speaker vetting, sponsors, and volunteer coordination. This allowed her to know more about what an organizer needs to do, from planning to execution, to make WordCamp a successful event.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"900\" height=\"600\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/04/wcmumbai-17.jpg?resize=900%2C600&#038;ssl=1\" alt=\"WordCamp Mumbai 2017 group photo of the team\" class=\"wp-image-12765\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/04/wcmumbai-17.jpg?w=900&amp;ssl=1 900w, https://i2.wp.com/wordpress.org/news/files/2022/04/wcmumbai-17.jpg?resize=300%2C200&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/04/wcmumbai-17.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 900px) 100vw, 900px\" data-recalc-dims=\"1\" /><figcaption>With the team at <em>WordCamp Mumbai in 2017</em></figcaption></figure>\n\n\n\n<p>Meher is grateful for her WordPress journey which was fostered in the Mumbai community. It has been filled with beautiful surprises.&nbsp;</p>\n\n\n\n<p>When people ask why sheâ€™s chosen to specialize professionally in WordPress, Meher says WordPress is easy to teach a non-technical person, yet it is still highly customizable. Being a WordPress developer has given her the opportunity to work&nbsp; remotely for global web development companies that let her think out of the box. And she learns new skills with every release.</p>\n\n\n\n<h3>The community makes WordPress special</h3>\n\n\n\n<p>Meher says that some of her most memorable WordPress moments have revolved around special friendships, trying new things, and participating in community building.&nbsp;</p>\n\n\n\n<p>WordPress has let her explore different parts of India, make new friends locally and internationally, and encourage women to be a part of meetup groups and events across India.&nbsp;</p>\n\n\n\n<p>One of Meherâ€™s biggest dreams was to lead WordCamp Mumbai as a lead organizer and show others what could be achieved by working together in open source. In 2019, she did just that and has volunteered at international WordCamps and meetups since.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"1024\" height=\"515\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/04/wc-19.jpg?resize=1024%2C515&#038;ssl=1\" alt=\"Meher speaking at WordCamp Mumbai 2019\" class=\"wp-image-12731\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/04/wc-19.jpg?resize=1024%2C515&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/04/wc-19.jpg?resize=300%2C151&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/04/wc-19.jpg?resize=768%2C386&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/04/wc-19.jpg?w=1247&amp;ssl=1 1247w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption>Taking to the stage at WordCamp Mumbai in 2019</figcaption></figure>\n\n\n\n<p>As part of her enthusiasm for sharing the opportunities WordPress can give people, especially women, she has given time to co-organize two global <a href=\"https://wptranslationday.org/\">WordPress Translation month long events</a> and contributor events in India.&nbsp;&nbsp;&nbsp;</p>\n\n\n\n<p>Meher said: â€œI was first introduced to translation at one of the meetups which was organised to support the WordPress Translation Day. I realized this was another way to support my local communities and bring the power of WordPress to them by contributing in Gujarati and Hindi. I did not imagine I would a few years later be a global organizer for the event itself!â€</p>\n\n\n\n<p>With her commitment to ongoing learning as a developer and to model what she believes about the value and community growth opportunities of open source, Meher has given time and energy to the Marketing Team, where she has been a Team Rep, to the Training Team, and to the Core Team contributing to multiple releases.&nbsp;</p>\n\n\n\n<h2>The developer adventure with WordPress is unlimited</h2>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>At the start of my software developer journey, I always thought the C++ and Java were the only skills you required to excel in your career. From the time I started exploring WordPress in depth, I realized the potential and the power of WordPress in web development.</p><cite>Meher Bala</cite></blockquote>\n\n\n\n<p>Being a part of the WordPress community, Meher learned that there is so much more than just building blogs on WordPress. She started exploring different features of WordPress, created her first theme, and eventually specialized as a frontend specialist.</p>\n\n\n\n<p>Meher now works as a consultant and front end developer with an international agency specializing in WordPress. Asked what she thought was the best thing about being a WordPress developer, Meher replied: &#8220;Through WordPress, I have an opportunity to build unique out of the box websites and work&nbsp;remotely for global web development companies that encourages you to think out of the box. There is always opportunity to continuously advance my coding skills and learn new techniques with every release.&#8221; </p>\n\n\n\n<p>She believes that there is no limit to where using the software can take you and what you can combine it with to find solutions to projects big and small.</p>\n\n\n\n<p>If you earn a living from WordPress, her advice is from the heart: try to give back to the WordPress community.</p>\n\n\n\n<p>â€œI am sure you will learn or teach something new and definitely make friends across the world. There is no shame in making mistakes, as you can learn from them and develop your skills further. You can also help others as they build their skills.â€</p>\n\n\n\n<p>Meher added: â€œDonâ€™t let the things you find difficult get in the way of your success.â€</p>\n\n\n\n<h2 id=\"share-the-stories\">Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community.Â Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p>Thanks to Abha Thakor (<a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>), Larissa Murillo (<a href=\'https://profiles.wordpress.org/lmurillom/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lmurillom</a>), Mary Baum (<a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a>), ChloÃ© Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>), and Meg Phillips (<a href=\'https://profiles.wordpress.org/megphillips91/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>megphillips91</a>) for interviews, writing and image work on this story. Thank you to Meher Bala (<a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>) for sharing her experiences and to Josepha Haden Chomphosy (<a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>) and Topher DeRosia (<a href=\'https://profiles.wordpress.org/topher1kenobe/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>topher1kenobe</a>) for their support of the series. </p>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\" style=\"grid-template-columns:29% auto\"><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" width=\"180\" height=\"135\" src=\"https://i1.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&#038;ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published onÂ </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard.Â </em>#HeroPress </p>\n</div></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12706\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 6.0 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2022/04/wordpress-6-0-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Apr 2022 16:43:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12690\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"WordPress 6.0 Beta 3 is now available for testing! You can download and help test Beta 3 in three ways.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5387:\"\n<p>WordPress 6.0 Beta 3 is now available for testing!</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, or test this version of WordPress production or mission-critical websites. Instead, it is recommended that you test Beta 3 on a test server and site.&nbsp;</p>\n\n\n\n<p>You can test WordPress 6.0 Beta 3 in three ways:</p>\n\n\n\n<p><strong>Option 1: </strong>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the â€œBleeding edgeâ€ channel and â€œBeta/RC Onlyâ€ stream).</p>\n\n\n\n<p><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.0-beta3.zip\">beta version here (zip)</a>.</p>\n\n\n\n<p><strong>Option 3:</strong> Use WP-CLI to test: <code>wp core update --version=6.0-beta3</code>.<br><em>Do not use this option if your filesystem is case-insensitive.</em></p>\n\n\n\n<p>The current target for the final 6.0 release is May 24, 2022, which is in less than a month!&nbsp;</p>\n\n\n\n<p>Additional information on the full <a href=\"https://make.wordpress.org/core/6-0/\">6.0 release cycle is available here</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-0/\">6.0-related developer notes</a> in the coming weeks which will detail all upcoming changes.</p>\n\n\n\n<h2>See Whatâ€™s in Beta 3</h2>\n\n\n\n<p>Since Beta 2, various items have been addressed, including (but not limited to):&nbsp;</p>\n\n\n\n<ul><li>Twenty Twenty-Two: Implement alternate json files <a href=\"https://core.trac.wordpress.org/ticket/55433\">#55433</a></li><li>Fix duotone rendering in site editor <a href=\"https://github.com/WordPress/gutenberg/pull/37727\">#37727</a>&nbsp;</li><li>Create Comments Title block with simple styling <a href=\"https://github.com/WordPress/gutenberg/pull/40419\">#40419</a>&nbsp;</li><li>Navigation block: After choosing an option from Select Menu, focus after block render <a href=\"https://github.com/WordPress/gutenberg/pull/40390\">#40390</a></li><li>Add comment id to all comments inside comments query loop <a href=\"https://github.com/WordPress/gutenberg/pull/40268\">#40268</a></li><li>Add post-comments-form block to comments template <a href=\"https://github.com/WordPress/gutenberg/pull/40256\">#40256</a></li><li>Elements: Add styles to the footer before the block is rendered <a href=\"https://github.com/WordPress/gutenberg/pull/37728\">#37728</a></li><li>Add default comment status to discussion settings&nbsp; <a href=\"https://core.trac.wordpress.org/ticket/55567\">#55567</a></li><li>Fix styles for nested elements (link color) <a href=\"https://core.trac.wordpress.org/ticket/55567\">#55567</a></li><li>Move <code>wp_enqueue_block_style()</code> to <code>wp-includes/script-loader.php</code>, for better consistency <a href=\"https://core.trac.wordpress.org/ticket/55182\">#55182</a>, <a href=\"https://core.trac.wordpress.org/ticket/55148\">#55148</a></li><li>Move administration related hooks to admin-filters.php <a href=\"https://core.trac.wordpress.org/ticket/54795\">#54795</a></li></ul>\n\n\n\n<h2>Update on the Webfonts API and Style Variations in Twenty Twenty-Two</h2>\n\n\n\n<p>A <a href=\"https://wordpress.org/news/2022/04/wordpress-6-0-beta-1/\">prior announcement</a> for WordPress 6.0 Beta 1 included a reference to â€œWebfonts API:<strong> </strong>Manage local fonts with PHP or theme.jsonâ€, as a feature that would be included in the release. WordPress 6.0 Beta 3 will allow theme authors to use webfonts in theme.json, with a public API for plugins to register and enqueue webfonts available in a future version for WordPress. Beta 3 will also include <a href=\"https://core.trac.wordpress.org/ticket/55433\">three new style variations</a> to the Twenty Twenty-Two default theme.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute to WordPress. If you are new to testing, check out this <a href=\"https://make.wordpress.org/test/2022/04/12/help-wanted-test-wordpress-6-0/\">detailed guide</a> that will walk you through how to get started.</p>\n\n\n\n<p>If you think you have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Thank you to the following contributors for collaborating on this post: <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a>&nbsp; <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>, <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><strong>And now another WordPress haiku:</strong></p>\n\n\n\n<p>Release day is near<br>6.0 abounds with joy<br>New features soon here</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12690\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 6.0 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2022/04/wordpress-6-0-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 19 Apr 2022 16:43:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12666\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:337:\"WordPress 6.0 Beta 2 is now available for testing! This version of the WordPress software is under development. Please do not install, run, and test this version of WordPress on a production or mission-critical website. Instead, it is recommended that you test Beta 2 on a test server and site.&#160; You can test the WordPress [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5119:\"\n<p>WordPress 6.0 Beta 2 is now available for testing!</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, and test this version of WordPress on a production or mission-critical website. Instead, it is recommended that you test Beta 2 on a test server and site.&nbsp;</p>\n\n\n\n<p>You can test the WordPress 6.0 Beta 2 in three ways:</p>\n\n\n\n<p><strong>Option 1: </strong>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the â€œBleeding edgeâ€ channel and â€œBeta/RC Onlyâ€ stream).</p>\n\n\n\n<p><strong>Option 2: </strong>Direct download the<a href=\"https://wordpress.org/wordpress-6.0-beta2.zip\"> beta version here (zip)</a>.</p>\n\n\n\n<p><strong>Option 3:</strong> Use WP-CLI to test: <code>wp core update --version=6.0-beta2</code><br><strong><em>Do not use this option if your filesystem is case-insensitive.</em></strong></p>\n\n\n\n<p>The current target for the final release is May 24, 2022, which is about five weeks away.&nbsp;</p>\n\n\n\n<p>Additional information on the full <a href=\"https://make.wordpress.org/core/6-0/\">6.0 release cycle is available</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-0/\">6.0-related developer notes</a> in the coming weeks, which will detail all upcoming changes.</p>\n\n\n\n<h2><strong>Whatâ€™s New In Beta 2</strong></h2>\n\n\n\n<p>As a reminder, contributors have fixed&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;resolution=fixed&amp;milestone=6.0&amp;group=component&amp;order=priority\">209 tickets in WordPress 6.0</a>, including&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;status=reopened&amp;changetime=04%2F12%2F2022..04%2F19%2F2022&amp;type=enhancement&amp;type=feature+request&amp;milestone=6.0&amp;group=component&amp;col=id&amp;col=summary&amp;col=type&amp;col=status&amp;col=milestone&amp;col=changetime&amp;col=owner&amp;col=priority&amp;col=keywords&amp;order=changetime\">110 new features and enhancements</a>. Each beta cycle focuses on bug fixes, and more are on the way with your help through testing. Here are a few of the changes you will find in Beta 2 specifically:&nbsp;</p>\n\n\n\n<ul><li>Block Editor: Prevent styles from being added to the site editor (#<a href=\"https://core.trac.wordpress.org/ticket/55567\">55567</a>)</li><li>Patterns REST API: Add &#8216;inserter&#8217; to the schema&nbsp; (#<a href=\"https://core.trac.wordpress.org/ticket/55567\">55567</a>)</li><li>Donâ€™t load remote patterns twice in WP_REST_Block_Patterns_Controller::get_items (#<a href=\"https://core.trac.wordpress.org/ticket/55567\">55567</a>)</li><li>Add the ability to filter the whole notification email in retrieve_password (<a href=\"https://core.trac.wordpress.org/ticket/54690\">#54690</a>)</li><li>Avoid translating empty plugin headers (<a href=\"https://core.trac.wordpress.org/ticket/54586\">#54586</a>)</li></ul>\n\n\n\n<h3><strong>Note on Webfonts API</strong></h3>\n\n\n\n<p>Last weekâ€™s announcement for <a href=\"https://wordpress.org/news/2022/04/wordpress-6-0-beta-1/\">WordPress 6.0 Beta 1</a> includes a reference to â€œWebfonts API:<strong> </strong>Manage local fonts with PHP or theme.json,â€ as a feature that would be included in the release. This specific functionality was not included in Beta 2 but may be available at RC.</p>\n\n\n\n<h2><strong>How to Help</strong></h2>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute to WordPress. If you are new to testing, check out this <a href=\"https://make.wordpress.org/test/2022/04/12/help-wanted-test-wordpress-6-0/\">detailed guide</a> that will walk you through how to get started.</p>\n\n\n\n<p>If you think you have run into an issue, please report it to the<a href=\"https://wordpress.org/support/forum/alphabeta/\"> Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can<a href=\"https://core.trac.wordpress.org/newticket\"> file one on WordPress Trac</a>. This is also where you can find a list of<a href=\"https://core.trac.wordpress.org/tickets/major\"> known bugs</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Thank you to the following contributors for collaborating on this post: <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a>, <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a>, <a href=\'https://profiles.wordpress.org/costdev/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>costdev</a>, <a href=\'https://profiles.wordpress.org/priethor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>priethor</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h4>And now a WordPress Haiku:</h4>\n\n\n\n<p>We code fervently</p>\n\n\n\n<p>A breathless pause for the test</p>\n\n\n\n<p>Key tapping resumes</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12666\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WP Briefing: Episode 29: How to Make a WordPress Blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wordpress.org/news/2022/04/episode-29-how-to-make-a-wordpress-blog/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 18 Apr 2022 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=12658\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"Join our host Josepha Haden Chomphosy as she takes us back to WordPress basics. Learn everything you need to know about how to make a WordPress blog! \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/04/WP-Briefing-029.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:16764:\"\n<p>In the twenty-ninth episode of the WordPress Briefing, Executive Director Josepha Haden Chomphosy reminds us of our WordPress roots &#8212; blogging &#8212; and discusses the basics of starting your first blog on WordPress.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 id=\"credits\">Credits</h2>\n\n\n\n<ul><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a> </li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://learn.wordpress.org/course/getting-started-with-wordpress-get-setup/\">Getting Started with WordPress: Get Setup</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/07/6-0-product-walk-through-recap/\">6.0 Product Walkthrough</a></li><li><a href=\"https://www.meetup.com/wordpress-social-learning/events/285233962/\" data-type=\"URL\" data-id=\"https://www.meetup.com/wordpress-social-learning/events/285233962/\">How to Make a WordPress Blog Social Learning Space Event </a></li><li><a href=\"https://make.wordpress.org/community/events/\">Upcoming WordPress Events</a></li><li><a href=\"https://www.meetup.com/pro/wordpress/\" data-type=\"URL\" data-id=\"https://www.meetup.com/pro/wordpress/\">WordPress Meetup Groups</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-12658\"></span>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:00:00] </strong>&nbsp;</p>\n\n\n\n<p>Hello everyone. And welcome to the WordPress Briefing. The podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy.</p>\n\n\n\n<p>Here we go.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:00:39] </strong>&nbsp;</p>\n\n\n\n<p>All right. So you&#8217;ve been listening to this podcast for a while. You may be one of these contributors I keep mentioning; you may be an agency owner or freelancer. Maybe you&#8217;ve wondered how to make a WordPress blog for your big idea. Or, maybe you&#8217;re one of the many people who use WordPress for their project or business. Before WordPress was known as a content management system, as a way to get sites online fast, it was a blogging tool.</p>\n\n\n\n<p>We have long since outgrown that, but even 19 years into our journey, blogging is still a key part of what WordPress enables you to do. That&#8217;s because even after those 19 years, the mission of WordPress is still the same. And that is to democratize publishing, to help people have a place online where they can tell their stories or share their projects or set up their businesses.</p>\n\n\n\n<p>If you&#8217;ve ever tried to set up a blog, you know that there isn&#8217;t a lot of information about what to know before you get going at all. So I&#8217;m going to talk about that a little bit today. And just by the way, if you heard the word blog right now and thought, oh, Josepha, how old fashioned? I think it&#8217;s important to remember that there&#8217;s a business advantage to having well-written, relevant content on your website.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:01:59]</strong></p>\n\n\n\n<p>And if you&#8217;re not blogging for business, because not all of us are, then the benefits are a little different but still important to my mind. Things like the cathartic benefits of journaling, a chance to build community, and the general importance of preserving wisdom for the ages. Anyway, back to the topic at hand. Before we can get to any of the fancy things that WordPress can do nowadays, it&#8217;s important to know a few things as you get ready to set up your first ever website.&nbsp;&nbsp;</p>\n\n\n\n<p>So let&#8217;s dive in. Here is how you need to get yourself started. First, have an idea and a plan. So have an idea for what you&#8217;re doing, the concept of your content, who you want to reach, and some concept of a domain name. I would encourage you to not necessarily get your heart set on a domain name at first. Cause, like, if you want the domain name, wordpress.org, like we own that, you can have that! But if you know that you want a domain like WordPressbloggingforthefuture.com, like that one might be more available. And if you know the kind of words you want in your domain, you can be a bit flexible about what is there.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:03:09]</strong></p>\n\n\n\n<p>The second thing that you need to do is that if you are just getting started, ask yourself the question, what sort of host do I want? We kind of mentioned all along the WordPress process that, like, you need a good host, but itâ€™s not always clear where that decision has to happen. It happens right here at the start, before you even know what WordPress is most of the time.</p>\n\n\n\n<p>So, the earliest question that you have to answer for yourself is what sort of host do I want? Where do I want my site to live? So ask yourself how much you want to get into the maintenance and configuration of your website and the hardware that it lives on versus creating content or keeping your shop up to date.&nbsp;</p>\n\n\n\n<p>There&#8217;s this whole spectrum of hosting options, and they range from full service where they will keep your WordPress software up to date, provide daily backups, and have customer support if something goes really wrong. So it ranges all the way from full service like that all the way down to essentially zero services, just kind of hands-off.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:04:11]&nbsp;</strong></p>\n\n\n\n<p>They give you a space to keep your WordPress software, to keep your WordPress site. But they leave everything else up to you. They leave the backups up to you. They leave updating up to you, things like. So that&#8217;s the first thing you have to ask yourself. And the first question you have to be able to answer. Most of the time, you will want to start with one of the full-service options. That way, you know that your software is set up correctly and safely from the start. And as you learn more about the software and what you want and what you need, and you have the ability to learn in the time that you have, the more that you can add on either service with the existing hosts that you chose or moving to a different host; however that works out for you.</p>\n\n\n\n<p>So if that one sounds like the right option, then you choose a host, go to their site, and actually most of them will have a way to walk you through how to set up a WordPress site inside their system. Most of the time, it&#8217;s just one click and then they ask you some questions to get some configurations right.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:05:10]&nbsp;</strong></p>\n\n\n\n<p>The other option that on the like zero, zero service side, that&#8217;s not quite fair, but you know, the other side of that spectrum that probably will be appealing to you if you are already familiar with code or already know how to manage a server or, or you know how to work in this thing called c-panel, et cetera.</p>\n\n\n\n<p>So if you already have a lot of information on how all of that works, you can, if you want to, head over to wordpress.org/download, and you can download a zip file of the WordPress software and set that up in your own environment.&nbsp;</p>\n\n\n\n<p>Okay, quick check here. If this all sounds roughly doable to you, or at least it feels like we&#8217;re in the right starting point, but you find yourself thinking, gosh, I just wish she would slow down a little.</p>\n\n\n\n<p>I&#8217;ve got you covered. In the show notes, you&#8217;ll find a link to one of the Learn WP courses for getting started with WordPress. There&#8217;s a section on choosing a host as well as various other early steps of this process. So if you felt like I blazed through all of that, which honestly I kind of did, you can work through those lessons in that course, at your own pace, and it&#8217;s, and it&#8217;s really a very good guide.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:06:24]&nbsp;</strong></p>\n\n\n\n<p>All right. Let&#8217;s pretend we did all of that. Now you&#8217;ve got yourself a website. The thing that you will want to do next, or rather the first thing that you&#8217;ll notice once you get your site up and running, is that there&#8217;s this â€˜Hello Worldâ€™ postâ€“ there&#8217;s a post that already exists in there. The Hello World post is a placeholder for the common features of a blog post.</p>\n\n\n\n<p>There, you can find your featured image, your title, your content, and even some fake comments. You can either edit this post so that you can see how your writing will look from the start, and you can kind of compare like, okay, the Hello World part over here on this page, exists in this field over here on this page. So you can kind of see where everything works, how it all looks together. Or, if you&#8217;re more familiar with WordPress or CMS in general, you can simply remove that and start fresh.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:07:17]</strong></p>\n\n\n\n<p>So we&#8217;ve got now a website, we know, kind of, how to look at our posts and create posts, where comments are, where they can kind of be moderated and stuff. And so, the most fun task for everyone is choosing a theme. But if it&#8217;s not a fun task, if it doesn&#8217;t sound like a fun task to you, I can help you kind of do some, choose your own adventure guiding questions here.&nbsp;</p>\n\n\n\n<p>Firstly, you can ask yourself how you want the site to look. Do you want it to mostly be a lot of photos or entirely words, mostly animations? You can head to the theme directory and search for a theme with most of the features that you want. There&#8217;s like a filtering system where you can put in, like, you want three columns so that you can have three columns of text if you want it to look kind of like an old school newspaper kind of layout and things like.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:08:12]</strong></p>\n\n\n\n<p>There&#8217;s also a way to look for themes inside your instance, your WordPress site, but like, if you haven&#8217;t set that up yet, but you do still want to see kind of what your theme options are, you can go to wordpress.org/themes and and take a look at what&#8217;s out there. Just as a quick side note, if you get to that theme directory, if you get to wordpress.org/themes, and it feels overwhelming, which I can understand, I recommend starting with a theme that is designed for blogging specifically so that you can see how things look right away.</p>\n\n\n\n<p>And there&#8217;s actually a theme that does come with every WordPress site. So if you&#8217;re not ready, you can skip this thing entirely and just work with the theme that&#8217;s already there. Every word, press instance ships with a theme and it is fully functional when you, when you get your site up and running. So you don&#8217;t need to choose a theme right now if you don&#8217;t feel ready.</p>\n\n\n\n<p>And then the other very fun thing that people do with their WordPress sites is to add plugins to them. So plugins are these little pieces of software that you add on to the WordPress software that lets it do additional things. It adds additional functionality. The questions that you can ask to kind of guide yourself through what sorts of plugins you might want, what sorts of functionality you might want to add to your site are a little similar to the ones that you want to ask for figuring out which theme.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:09:36]</strong></p>\n\n\n\n<p>So figure out if there are tasks that you need visitors to do. Do you need them to contact you? Do you want them to watch a video? Should they review and respond to questions?</p>\n\n\n\n<p>If you have a concept of the things that you want users to do on your website, then you can head to the plugin directory and search for a plugin with features that you need. Also, there are just endless lists of recommended plugins out there; if that is something that you find valuable as part of your research, those are also easy to find.</p>\n\n\n\n<p>And as a general side note here, there are even more plugins than there are themes. So if you have gotten to this point and feel like you don&#8217;t quite know the answers to the questions that I shared, and, and it&#8217;s going to be a while until you feel like you can know what those answers are. That&#8217;s totally fine.</p>\n\n\n\n<p>I&#8217;ll tell you this. I have never seen a site without a contact form. So feel free to begin your journey there. There are a lot of great plugins for contact forms and it can kind of help you figure out how to work with plugins in that way. So yeah, I made it sound like you can get a WordPress website built in like seven minutes and on the one hand you definitely can.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:09:36]</strong></p>\n\n\n\n<p>And on the other hand, it&#8217;s still a little bit more complicated. So here I have a final note for everyone. You will hear around the WordPress ecosystem. And obviously, here, are some things that could make you feel a little nervous about doing this for the first time. Things like the five-second installation, which WordPress has been famous for years.</p>\n\n\n\n<p>But also about how easy and simple it all is. And as somebody who was once in the position of learning WordPress for the first time, like I first encountered a WordPress site in 2009 and I started learning how to use WordPress in 2010. So I can say with confidence that once you learn it, it&#8217;s easy.</p>\n\n\n\n<p>We are the easiest of the hard options for CMS. Like content management systems are just complicated, but we are the easiest one out there. And so, as you&#8217;re learning, I want to just remind you to celebrate your small wins along the way. If you feel like you&#8217;re late to this blogging game, like you should have had a website for years. I mean, sure that could be true. And yes, the best time to plant a tree was 20 years ago. But the second-best time to plant that tree is today.&nbsp;</p>\n\n\n\n<p>WordPress didn&#8217;t start out powering over 40% of the web, and your first site can&#8217;t be immediately measured in the millions of readers. So, what will your small beginning lead you to?&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:12:25]</strong></p>\n\n\n\n<p>And now that brings us to our small list of big things.&nbsp;</p>\n\n\n\n<p>The first one, the next release of WordPress, WordPress 6.0, has reached its beta phase. That means the full focus is on finding and fixing the bugs we accidentally created during this development cycle. Beta two comes out tomorrow and you can follow along in the core channel in the Making WordPress Slack.</p>\n\n\n\n<p>If you&#8217;ve never seen how those releases get packaged, and if you just want to keep an eye on what everybody&#8217;s doing so that you can be the first to know, yeah, Making WordPress Slack is the way to go.&nbsp;</p>\n\n\n\n<p>The second thing on our small list is that speaking of WordPress 6.0, we had the public walk through a couple of weeks ago, which means that in a few weeks, I&#8217;ll do a WordPress 6.0 sneak peek. I&#8217;ll share some highlights of the release features and why I think they are super important for you to take a look. Sooner rather than later.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:13:22]</strong></p>\n\n\n\n<p>And then the final, big thing, if you are new to WordPress and this episode has you all fired up to start your blog, we have a bunch of contributors over on the Learn WP team that have just the thing for you.</p>\n\n\n\n<p>You can join the online social learning space called How to Make a WordPress Blog. It&#8217;s a free online event that will help you get started. I&#8217;ll link the information in the show notes below. And I&#8217;ll also share in the show notes, a list of WordPress Meetup groups, where you can find more opportunities to learn and get support from other people locally who are also doing things with WordPress.&nbsp;</p>\n\n\n\n<p>But you can also find a list in the dashboard of your newly installed WordPress blog you no doubt have after this podcast.&nbsp;&nbsp;</p>\n\n\n\n<p>And that my friends is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12658\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 6.0 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2022/04/wordpress-6-0-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Apr 2022 19:08:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12644\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WordPress 6.0 Beta 1 is now available for download and testing.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7809:\"\n<p>WordPress 6.0 Beta 1 is now available for download and testing.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, and test this version of WordPress on a production or mission-critical website. Instead, it is recommended that you test Beta 1 on a test server and site.&nbsp;</p>\n\n\n\n<p>You can test the WordPress 6.0 Beta 1 in three ways:</p>\n\n\n\n<ul><li>Option 1: Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the â€œBleeding edgeâ€ channel and â€œBeta/RC Onlyâ€ stream).</li><li>Option 2: Direct download the <a href=\"https://wordpress.org/wordpress-6.0-beta1.zip\">beta version here (zip)</a>.</li><li>Option 3: Use WP-CLI to test: <code>wp core update --version=6.0-beta1</code>. <br><strong><em>Do not use this option if your filesystem is case-insensitive.</em></strong></li></ul>\n\n\n\n<p>The current target for the final release is May 24, 2022, which is about six weeks away.&nbsp;</p>\n\n\n\n<p>Additional information on the full <a href=\"https://make.wordpress.org/core/6-0/\">6.0 release cycle is available</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-0/\">6.0-related developer notes</a> in the coming weeks which will detail all upcoming changes.</p>\n\n\n\n<h2><strong>Keep WordPress Bug Free â€“ Help with Testing</strong></h2>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute. If you have never tested a beta release before, <a href=\"https://make.wordpress.org/test/2022/04/12/help-wanted-test-wordpress-6-0/\">this detailed guide</a> will walk you through how to get started.</p>\n\n\n\n<p>Testing helps make sure that this and future releases of WordPress are as stable and issue-free as possible. And anyone can do it â€“ especially great WordPress community members just like you.</p>\n\n\n\n<p>Want to know more about testing releases like this one? Read about the <a href=\"https://make.wordpress.org/test/\">testing initiatives</a> that happen in Make Core. You can also join a <a href=\"https://wordpress.slack.com/messages/core-test/\">publicly-accessible channel</a> on the <a href=\"https://wordpress.slack.com\">Making WordPress Slack workspace</a>.</p>\n\n\n\n<p>If you think you have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>To review features in the Gutenberg releases since WordPress 5.9 (the most recent major release of WordPress), access the <em>Whatâ€™s New In Gutenberg</em> posts for 13.0 (release pending), <a href=\"https://make.wordpress.org/core/2022/03/30/whats-new-in-gutenberg-12-9-30-march/\">12.9</a>, <a href=\"https://make.wordpress.org/core/2022/03/16/whats-new-in-gutenberg-12-8-16-march/\">12.8</a>, <a href=\"https://make.wordpress.org/core/2022/03/02/whats-new-in-gutenberg-12-7-2-march/\">12.7</a>, <a href=\"https://make.wordpress.org/core/2022/02/16/whats-new-in-gutenberg-12-6-16-february/\">12.6</a>, <a href=\"https://make.wordpress.org/core/2022/02/03/whats-new-in-gutenberg-12-5-february-2nd/\">12.5</a>, <a href=\"https://make.wordpress.org/core/2022/01/19/whats-new-in-gutenberg-12-4-19-january/\">12.4</a>, <a href=\"https://make.wordpress.org/core/2022/01/05/whats-new-in-gutenberg-12-3-5-january/\">12.3</a>, <a href=\"https://make.wordpress.org/core/2021/12/22/whats-new-in-gutenberg-12-2-22-december/\">12.2</a>, <a href=\"https://make.wordpress.org/core/2021/12/08/whats-new-in-gutenberg-12-1-8-december/\">12.1</a>, and <a href=\"https://make.wordpress.org/core/2021/11/29/whats-new-in-gutenberg-12-0-24-november/\">12.0</a>.&nbsp;&nbsp;</p>\n\n\n\n<p>Beyond the noted changes, which include more than 400 updates and 500 bug fixes for the editor, contributors have fixed <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=6.0&amp;group=component&amp;max=500&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">189 tickets for the WordPress 6.0</a> core, including <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;status=reopened&amp;type=enhancement&amp;type=feature+request&amp;milestone=6.0&amp;col=id&amp;col=summary&amp;col=type&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=priority&amp;col=changetime&amp;col=keywords&amp;order=changetime\">91 new features and enhancements</a>. More fixes are on the way.</p>\n\n\n\n<h2><strong>Some Highlights</strong></h2>\n\n\n\n<p><em>Want to know whatâ€™s new in version 6.0? Read on for some highlights.</em></p>\n\n\n\n<p>The WordPress 6.0 release will be packed with all kinds of improvements. Here are just a few:</p>\n\n\n\n<ul><li><strong>Style Switching:</strong> <a href=\"https://make.wordpress.org/core/2022/03/03/core-editor-improvement-choose-your-style/\">switch up the look and feel of your site</a>, all in one block theme. No need to change themes!</li><li><strong>More template options:</strong> use blocks to edit five more templates (author, date, categories, tag, and taxonomy).</li><li><strong>Multi-select: </strong>Easily select text across multiple blocks. Edit to your liking.</li><li><strong>Retain Styles: </strong>Keep your custom styles in place, whether transforming between blocks or creating new buttons.&nbsp;</li><li><strong>More patterns in more places:</strong> the Quick Inserter surfaces patterns that might work well for the condition youâ€™re in, baking in relevant patterns for template parts and pages youâ€™re working on.&nbsp;</li><li><strong>List View improvements: </strong>New keyboard shortcuts (shift + click) let you select multiple blocks to modify in bulk (reposition, delete, etc.), see your content at a glance with a collapsed by default view, and more.</li><li><strong>Refined design tools: </strong>Explore<strong> </strong>a new color panel, transparency options, more group block variations to create new layout options (Stack, Row), the ability to set your featured image in a Cover block, control the exact size of your featured image, gap support for the Gallery block, and more.</li><li><strong>New blocks: </strong>Comments, Read More, No results in Query Loop, Post Author biography, Avatar blocks.&nbsp;</li><li><strong>Block Locking UI: </strong>Choose to disable the option to remove a block, move it, or both, right in the editor.&nbsp;</li><li><strong>Export block themes: </strong>Explore the improved block theme export tool, as WordPress heads closer to codeless visual block theme building.</li><li><strong>Webfonts API: </strong>Manage local fonts with PHP or theme.json.&nbsp;</li></ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Thank you to the following contributors for collaborating on this post: <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a>, <a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>, <a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a>, <a href=\'https://profiles.wordpress.org/priethor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>priethor</a>, and <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12644\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 5.9.3 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2022/04/wordpress-5-9-3-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Apr 2022 19:50:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"5.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12575\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"WordPress 5.9.3 is now available! This maintenance release featuresÂ 9 bug fixes in Core and 9 bug fixes in the block editor.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3896:\"\n<p>WordPress 5.9.3 is now available!</p>\n\n\n\n<p>This maintenance release features&nbsp;9 bug fixes in Core and 10 bug fixes in the block editor.</p>\n\n\n\n<p>WordPress 5.9.3 is a short-cycle maintenance release. The next major release will be version&nbsp;<a href=\"https://make.wordpress.org/core/6.0/\">6.0</a>.</p>\n\n\n\n<p>You can&nbsp;<a href=\"https://wordpress.org/wordpress-5.9.3.zip\">download WordPress 5.9.3 from WordPress.org</a>, or visit your Dashboard&nbsp;â†’ Updates and click â€œUpdate Nowâ€.</p>\n\n\n\n<p>If you have sites that support automatic background updates, theyâ€™ve already started the update process.</p>\n\n\n\n<p>For more information, browse the&nbsp;<a href=\"https://make.wordpress.org/core/2022/03/30/wordpress-5-9-3-rc-1/\">full list of both Trac and GitHub changes in the release candidate post</a>, or check out the&nbsp;<a href=\"https://wordpress.org/support/wordpress-version/version-5-9-3/\">changelog of version 5.9.3 on HelpHub</a>.</p>\n\n\n\n<h2 id=\"thanks-and-props\">Thanks and props!</h2>\n\n\n\n<p>The 5.9.3 release was led by&nbsp;<a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>&nbsp;and&nbsp;<a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>.</p>\n\n\n\n<p>Special props to&nbsp;<a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>&nbsp;for running mission control.</p>\n\n\n\n<p>Thank you to everyone who helped make WordPress 5.9.3 happen:</p>\n\n\n\n<p class=\"alignfull is-style-wporg-props-medium\"><a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a>, <a href=\"https://profiles.wordpress.org/aliakseyenkaihar/\">aliakseyenkaihar</a>, <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a>, <a href=\"https://profiles.wordpress.org/binarymoon/\">binarymoon</a>, <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a>, <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">glendaviesnz</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg ZiÃ³Å‚kowski</a>, <a href=\"https://profiles.wordpress.org/ironprogrammer/\">ironprogrammer</a>, <a href=\"https://profiles.wordpress.org/iulia-cazan/\">Iulia Cazan</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen A.</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/jsnajdr/\">jsnajdr</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/psmits1567/\">Peter Smits</a>, <a href=\"https://profiles.wordpress.org/pgpagely/\">pgpagely</a>, <a href=\"https://profiles.wordpress.org/rafiahmedd/\">Rafi Ahmed</a>, <a href=\"https://profiles.wordpress.org/richybkreckel/\">Richard B. Kreckel</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rufus87/\">Rufus87</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">Tor-Bjorn Fjellner</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a>, <a href=\"https://profiles.wordpress.org/webmandesign/\">Oliver Juhas</a>, and <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12575\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"The Month in WordPress â€“ March 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2022/04/the-month-in-wordpress-march-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Apr 2022 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:22:\"the month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12583\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:325:\"We hope that you and your beloved ones are staying safe during these difficult times. If youâ€™re looking for a way to support the humanitarian crisis in Ukraine, you can refer to this episode of WP Briefing. There you will find a list of Non-Governmental Organizations (NGOs) that can help. In parallel to the work [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"rmartinezduque\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:13170:\"\n<p>We hope that you and your beloved ones are staying safe during these difficult times. If youâ€™re looking for a way to support the humanitarian crisis in Ukraine, you can refer to <a href=\"https://wordpress.org/news/2022/03/episode-26-matt-mullenweg-on-ukraine-community-and-wordpress/\">this episode of WP Briefing</a>. There you will find a list of Non-Governmental Organizations (NGOs) that can help.</p>\n\n\n\n<p>In parallel to the work the community is doing in preparation for the next major release, WordPress 6.0, March has seen the launch of some exciting projects and proposals. Read on to find out more about the latest updates and how to get involved. </p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<h2>The Pattern Directory is open for public submissions</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://i2.wp.com/wordpress.org/news/files/2022/04/home-patterns.png?ssl=1\"><img loading=\"lazy\" width=\"1024\" height=\"659\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/04/home-patterns.png?resize=1024%2C659&#038;ssl=1\" alt=\"View of the Pattern Directory page at WordPress.org.\" class=\"wp-image-12584\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/04/home-patterns.png?resize=1024%2C659&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2022/04/home-patterns.png?resize=300%2C193&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/04/home-patterns.png?resize=768%2C494&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2022/04/home-patterns.png?resize=1536%2C988&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2022/04/home-patterns.png?resize=2048%2C1318&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></a></figure>\n\n\n\n<p>The <a href=\"https://wordpress.org/patterns/new-pattern/\">WordPress Pattern Creator</a> is live! This new tool allows anyone with a WordPress.org user account to build, edit and submit their best block patterns to the <a href=\"https://wordpress.org/patterns/\">Pattern Directory</a>.<br><br>If you&#8217;ve used patterns in WordPress, you&#8217;ll know that they make it easy to add unique layouts to your website. These include galleries, testimonials, pricing tables, and more. Opening the directory to public submissions enables any WordPress user to enjoy a wider variety of patterns to use on their sites.</p>\n\n\n\n<div class=\"wp-container-6 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://wordpress.org/news/2022/03/get-creative-with-the-all-new-pattern-creator/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Check out the Pattern Creator announcement to learn more</strong></a></div>\n</div>\n\n\n\n<h2>WordPress 6.0 Walkthrough scheduled for April 5, 2022</h2>\n\n\n\n<p>A few updates to the <a href=\"https://make.wordpress.org/core/2022/03/11/wordpress-6-0-planning-update/\">WordPress 6.0 planning</a> were published last month. In case you missed them, <strong>today (April 5) at 15:00 UTC</strong> there is a live and interactive <a href=\"https://make.wordpress.org/core/2022/03/30/6-0-product-walk-through/\">WordPress 6.0 walkthrough</a> hosted by contributors of the release squad.</p>\n\n\n\n<p>The event will take place via Zoom and include a discussion on the new features, potential blockers, and a Q&amp;A session with the community. Attendance is open to anyone who wants to know more about whatâ€™s coming in WordPress 6.0.</p>\n\n\n\n<div class=\"wp-container-7 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/core/2022/03/30/6-0-product-walk-through/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Join the WordPress 6.0 product walkthrough</strong></a></div>\n</div>\n\n\n\n<h2>Gutenberg releases: Versions 12.8 and 12.9 are here</h2>\n\n\n\n<p>Versions 12.8 and 12.9 of the Gutenberg plugin were released last month. With them, some new exciting features and updates.</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/03/16/whats-new-in-gutenberg-12-8-16-march/\">Gutenberg 12.8</a> includes a new Webfonts API, iterative UX enhancements, and bug fixes to increase the editorâ€™s stability.</li><li><a href=\"https://make.wordpress.org/core/2022/03/30/whats-new-in-gutenberg-12-9-30-march/\">Gutenberg 12.9</a> introduces the new block locking UI and support for spacing between Gallery images. Also, many other improvements to give you more control over what is editable and presented to users.</li></ul>\n\n\n\n<div class=\"wp-container-8 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/core/tag/gutenberg-new/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Follow #gutenberg-new to stay updated on the latest Gutenberg releases</strong></a></div>\n</div>\n\n\n\n<div class=\"wp-container-9 wp-block-buttons\"></div>\n\n\n\n<h2>Team updates: Team Reps for the Photo Directory team, community proposals, and more</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/news/2022/03/wordpress-5-9-2-security-maintenance-release/\">WordPress 5.9.2</a> is available for download. This security and maintenance release features one bug fix and three security fixes.</li><li>The Team Representatives for the Make Photo Directory team for 2022 <a href=\"https://make.wordpress.org/photos/2022/03/23/announcement-photo-directory-team-reps-2022/\">have been announced</a>. Congrats to Marcus Burnette (<a href=\'https://profiles.wordpress.org/mdburnette/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mdburnette</a>), Katie Richards (<a href=\'https://profiles.wordpress.org/katiejrichards/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>katiejrichards</a>), and Topher DeRosia (<a href=\'https://profiles.wordpress.org/topher1kenobe/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>topher1kenobe</a>)!</li><li>The Community team considered <a href=\"https://make.wordpress.org/community/2022/03/17/discussion-revisiting-in-person-regional-wordcamps/\">revisiting the existing guidelines</a> for in-person regional WordCamps. Conclusions and next steps will be shared soon.</li><li>On a similar note, Cate DeRosia (<a href=\'https://profiles.wordpress.org/mysweetcate/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mysweetcate</a>) is <a href=\"https://make.wordpress.org/community/2022/03/23/return-to-events-blue-sky-thinking/\">looking for ideas</a> on how to support organizers who are trying to restart in-person events in their communities. Share yours by April 13, 2022.</li><li>The Training team published new lesson plans, workshops, and social learning spaces on Learn WordPress. <a href=\"https://make.wordpress.org/updates/2022/04/01/whats-new-on-learnwp-in-march-2022/\">Check out whatâ€™s new in March 2022.</a></li><li>How has WordPress helped grow your story? The Make Marketing team <a href=\"https://make.wordpress.org/marketing/2022/04/01/grow-your-story-on-wordpress/\">wants to hear about your experience</a>!</li><li>The <a href=\"https://make.wordpress.org/core/2022/03/07/the-performance-lab-plugin-has-been-released/\">Performance Lab plugin</a>, a set of modules that aim to improve performance in WordPress, was released last month.</li><li>Openverse released <a href=\"https://make.wordpress.org/openverse/2022/03/10/openverse-frontend-v3-1-1-release/\">new updates</a> in March. They include a redesigned content reporting flow and new image detail pages.</li><li>WordPress Executive Director Josepha Haden Chomphosy posted a <a href=\"https://make.wordpress.org/project/2022/03/23/removal-of-the-zamir-plugin/\">public statement</a> on the removal of the Zamir plugin a few weeks ago.</li><li>The March 2022 editions of the <a href=\"https://make.wordpress.org/community/2022/03/14/meetup-organizer-newsletter-march-2022/\">Meetup Organizer Newsletter</a> and the <a href=\"https://make.wordpress.org/polyglots/2022/03/22/polyglots-monthly-newsletter-march-2022/\">Polyglots Monthly Newsletter</a> were published.</li><li>The latest edition of People of WordPress features the contributor story of the Argentinian web developer and product manager <a href=\"https://wordpress.org/news/2022/03/people-of-wordpress-juanfra-aldasoro/\">Juanfra Aldasoro</a>.</li><li>WordPress community members launched the <a href=\"https://block-museum.com/\">Museum of Block Art (MOBA)</a>. This initiative seeks to inspire creativity and push the limits around what can be done with WordPress. All the art curated in this virtual museum is built using the block editor.</li></ul>\n\n\n\n<div class=\"wp-container-10 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/community/2022/03/30/proposal-steps-to-integrate-wpdiversity-into-wordpress-event-organizing/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Help us build a thriving and inclusive community. Share your thoughts on this </strong><strong>proposal</strong><strong> to introduce WordCamp and Meetup organizers to #WPDiversity programs by April 8, 2022.</strong></a></div>\n</div>\n\n\n\n<h2>Testing requests: WebP feature, template for author pages</h2>\n\n\n\n<ul><li>The Performance Team published a <a href=\"https://make.wordpress.org/core/2022/03/28/enabling-webp-by-default/\">proposal</a> to integrate the WebP image format by default into WordPress core. Your feedback on this feature is appreciated.</li><li><a href=\"https://make.wordpress.org/mobile/2022/04/04/call-for-testing-wordpress-for-ios-19-6/\">Version 19.6</a> of WordPress for iOS is available for testing.</li></ul>\n\n\n\n<div class=\"wp-container-11 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/test/2022/03/31/fse-program-testing-call-13-authoring-an-author-template/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong> There&#8217;s a new call for testing as part of the Full Site Editing Outreach Program: Authoring an Author Template. The deadline to participate is April 21, 2022.</strong></a></div>\n</div>\n\n\n\n<h2>The first flagship WordCamp Asia is looking for organizers</h2>\n\n\n\n<ul><li>WordCamp Asia is tentatively scheduled for February 2023. After two years since the organizing team announced that the first flagship WordCamp Asia was canceled due to the pandemic, they are back together and <a href=\"https://asia.wordcamp.org/2023/call-for-organisers/\">looking for more members</a> to join them in planning the event.</li><li>The <a href=\"https://us.wordcamp.org/2022/apply-to-speak-at-wcus/\">Call for Speakers</a> for WordCamp US 2022 is now open. You can submit your application by April 17, 2022.</li><li>Three in-person WordCamps are happening this month:<ul><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e8-1f1ed.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://geneve.wordcamp.org/2022/\">WordCamp GenÃ¨ve</a>, Switzerland on April 9, 2022</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ec-1f1f7.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://athens.wordcamp.org/2022/\">WordCamp Athens</a>, Greece on April 9-10, 2022</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e6-1f1f9.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://vienna.wordcamp.org/2022/\">WordCamp Vienna</a>, Austria on April 23-24, 2022</li></ul></li><li>Check out the latest episodes of WordPress Briefing with Josepha Haden:<ul><li><a href=\"https://wordpress.org/news/2022/04/episode-28-coming-to-a-wordcamp-near-you-a-return-to-in-person-wp-events/\">Coming to a WordCamp Near You: A Return to In-Person WP Events</a></li><li><a href=\"https://wordpress.org/news/2022/03/episode-27-is-wordpress-made-for-me/\">Is WordPress Made for Me?</a></li></ul></li></ul>\n\n\n\n<div class=\"wp-container-12 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://europe.wordcamp.org/2022/call-for-volunteers/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><strong>The </strong><strong>Call for Volunteers</strong><strong> for WordCamp Europe 2022 is still open. If you want to get involved with the WordPress community and have a lot of fun, this is your chance!</strong></strong></a></div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<p><strong><em>Have a story that we could include in the next â€˜Month in WordPressâ€™ post? Let us know by filling out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this form</em></strong></a><strong><em>.</em></strong></p>\n\n\n\n<p><em>The following folks contributed to this Month in WordPress: </em><a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>, <a href=\'https://profiles.wordpress.org/mysweetcate/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mysweetcate</a>, <a href=\'https://profiles.wordpress.org/anjanavasan/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>anjanavasan</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12583\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WP Briefing: Episode 28: Coming to a WordCamp Near You: A Return to In-Person WP Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"https://wordpress.org/news/2022/04/episode-28-coming-to-a-wordcamp-near-you-a-return-to-in-person-wp-events/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Apr 2022 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=12506\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:172:\"Curious about returning to WordPress events safely? Tune in as WordPress Executive Director Josepha Haden Chomphosy discusses guidelines for returning to in-person events. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/03/WP-Briefing-028.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11997:\"\n<p>In the twenty-eighth episode of the WordPress Briefing, Executive Director, Josepha Haden Chomphosy discusses returning to in-person WordPress events.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 id=\"credits\">Credits</h2>\n\n\n\n<ul><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<a href=\"https://profiles.wordpress.org/cbringmann/\">ChloÃ© Bringmann</a> &amp; <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a> </li><li>Song: Fearless First by Kevin MacLeod</li><li>Special thanks to: <a href=\"https://profiles.wordpress.org/angelasjin/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/angelasjin/\">Angela Jin</a></li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://wordcampcentral.survey.fm/2022-host-in-person-wordpress-event-checklist\">Event Safety Checklist</a></li><li><a href=\"https://asia.wordcamp.org/2023/call-for-organisers/\">WordCamp Asia Call for Organizers</a></li><li><a href=\"https://make.wordpress.org/community/2022/03/23/return-to-events-blue-sky-thinking/\">Open Discussion: Returning to In-Person Events</a></li><li><a href=\"https://make.wordpress.org/community/2022/03/17/discussion-revisiting-in-person-regional-wordcamps/\">Open Discussion: Returning to Regional Events</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-12506\"></span>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:00:00] </strong>&nbsp;</p>\n\n\n\n<p>Hello everyone! And welcome to the WordPress Briefing: the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:00:40]&nbsp;</strong></p>\n\n\n\n<p>I was checking the list of upcoming events recently as part of just my regular work and saw that the call for organizers for WordCamp Asia is open. On the one hand, it made my heart skip a beat with excitement. That event is six years or so in the making. And on the other hand, it reminded me of February 10th, 2020, the day that Matt told me that we had to proactively cancel WordCamp Asia. That week was truly heartbreaking for me as well as I think the entire organizing team.</p>\n\n\n\n<p>But it also, fortunately, was prescient. As I think back over the two years since then, I&#8217;m grateful for our community wranglers and deputies who have consistently hosted important discussions about how to return to in-person events safely. And with two of our major flagship events returning this year, I&#8217;m here to summarize, sort of, what the rules and guidelines are.</p>\n\n\n\n<p>But certainly I hope that you come away from this with an idea of what&#8217;s being done to keep everyone safe as we are best able.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:01:44]&nbsp;</strong></p>\n\n\n\n<p>Firstly, before we dig into specifics, I want to be clear upfront that the guidelines for COVID-aware events are mandatory, unless otherwise stated. For folks who&#8217;ve been attending WordPress events, or participating in the community for a long time, this is a change. As a program, we have always done our best to be flexible with guidelines so that we can prioritize local knowledge. But our responsibility is to the long-term success of this community and this program. So moving forward with in-person events that risk the health of our community members poses risks to the program itself. So with that in mind, let&#8217;s learn what we&#8217;re going to see at events for the rest of the.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:02:28]&nbsp;</strong></p>\n\n\n\n<p>For any WordPress event that is gathering more than 50 people, the new mandatory guidelines are:</p>\n\n\n\n<p>Number one, follow local laws and guidelines. If your area has suggested guidelines on top of the mandatory ones, follow those.</p>\n\n\n\n<p>Second, is if you are in a location where laws or guidelines require or permit venues to limit admission based on a person&#8217;s vaccination status and masking, then events can only happen in venues that are willing to provide staff to check for vaccination status at the door. And then also to remind participants to wear masks during the event.</p>\n\n\n\n<p>And the third thing is if your area or venue legally cannot check vaccination status, your area must pass the in-person checklist, which I will link in the show notes below. But that in-person checklist has to be passed at the time of the application and then again at the time of the event. And in addition to that, the venue must be willing to provide staff who will remind participants to wear masks and check for temperature during the event.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:03:33]&nbsp;</strong></p>\n\n\n\n<p>Organizers in these areas must be prepared to move online or cancel if the region fails the safety checklist, which again, will be linked in the show notes below. So those are the three things and they are pretty dense, but also I think allow for a fair amount of flexibility. There is also a tidy flow chart linked in the sidebar of make.wordpress.org/community that will help you to decide what sort of event your own area can support right now.&nbsp;</p>\n\n\n\n<p>So those are the mandatory guidelines for WordPress events in general right now, but you probably also have a few specific questions. So I&#8217;ve got the three most common questions ready to go with answers from Angela Jin who helped me to kind of pull together the information for this particular podcast props to Angela. Thank you.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:04:25]&nbsp;</strong></p>\n\n\n\n<p>So, first question, anything specific to know about WordCamp Europe? WordCamp Europe will be following these guidelines as well. All attendees and participants are expected to wear a mask while they are at the event and catering will be offered outside so people can remove their masks to eat.&nbsp;</p>\n\n\n\n<p>The second common question is how will these guidelines change as countries and local governments begin deescalating restrictions and safety measures? We should consider these guidelines to be subject to evolution based on what the team is hearing and seeing from the community. But right now we intend to keep these stricter guidelines in place until we see how the loosened rules play out elsewhere.&nbsp;</p>\n\n\n\n<p>And then a third frequent question is what&#8217;s going to happen to all these online events?</p>\n\n\n\n<p>The community team will continue to support online events right now. So if your community doesn&#8217;t feel ready to have an in-person event, but still wants to kind of get everyone together that is still allowed, and still&nbsp; encouraged. And finally the community team will continue to keep a close eye on situations around the world.</p>\n\n\n\n<p>If it becomes safe to do so, and your community is interested, they of course will be happy to chat with you about a WordCamp. There is an application that I will share the link to in the show notes below as well. In case that is something that your community is wanting to look into.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:05:54]</strong></p>\n\n\n\n<p>Oh, and I have a little postscript also. I know I was like finally, and now I&#8217;m doing a finally, finally. That&#8217;s what postscripts are about. P.S. If you have not stopped by the community teamâ€™s site or any of their meetings, they&#8217;ve been doing a really great job of keeping things moving through two years of unpredictable changes. If you are a community team member, I want to offer you a huge thanks. Thank you so much for helping us to stay aware and able to move forward.&nbsp;</p>\n\n\n\n<p>If you are an organizer, pat yourself on the back. I want to thank you for pivoting with us, moving through online events, even though they are not at all the same as in-person events and certainly they don&#8217;t share the reasons that we get people together sometimes.</p>\n\n\n\n<p>And finally, if you are an end to end attendee, if you go to WordPress meetups or you go to any sort of WordPress online events or WordCamps, anything like that, thank your local organizer. They have been doing this probably for a while, and I&#8217;m sure that they are looking forward to getting back to in-person events themselves, but even, so they have been putting in a lot of volunteer hours to help make sure that we all know how to use WordPress.</p>\n\n\n\n<p>And so find them, thank them, and I&#8217;m sure that they&#8217;ll appreciate it.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:07:20]</strong></p>\n\n\n\n<p>And with that, it is time for our small list of big things. Number one, WordCamp Asia has a call for organizers open! This event will be in 2023. And I think that we all simply cannot wait. So I&#8217;ll link the call for organizers in the show notes. And then of course you can follow that whole site to stay up to date on what&#8217;s happening there.</p>\n\n\n\n<p>The second thing is, while we&#8217;re on the topic of events, there&#8217;s also an open discussion about how we can best support organizers who are getting back to in-person events. We&#8217;d like thoughts from both organizers and attendees. So feel free to drop by and leave a note in the comments section. And while you&#8217;re over there, the third thing in my small list of big things, there&#8217;s also an open discussion about regional events. So go over there, get all your thoughts about WordPress events together. Get them all sorted out in one go. Just leave comments, boom, boom, boom, boom, boom. All over the place.&nbsp;</p>\n\n\n\n<p>And that my friends is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host Josepha Haden Chomphosy.</p>\n\n\n\n<p>And I&#8217;ll see you again in a couple of weeks.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:08:54]</strong></p>\n\n\n\n<p>So my most embarrassing WordCamp story actually has to do with where I was supposed to be versus where people thought I was supposed to be. This was early on in my time with WordPress, with Automattic. And I had convinced someone, I had convinced a colleague and friend of mine to go to my home WordCamp, WordCamp Fayetteville over there in Arkansas.</p>\n\n\n\n<p>And then I didn&#8217;t go. But I knew I wasn&#8217;t going, I knew I was going to WordCamp Boston, but he did not know that I was not going to go. And so he arrived at WordCamp Fayetteville, WordCamp Northwest Arkansas. I can&#8217;t remember what it was called at the time. And immediately was confused about where I was and why I wasn&#8217;t there.</p>\n\n\n\n<p>And so there was this excellent moment of mass confusion among states where the folks at WordCamp Fayetteville started tweeting about how I had convinced this contributor to go to that event and then didn&#8217;t show up. And then the folks at WordCamp Boston, we&#8217;re looking at all of those tweets, because if you are a WordCamp organizer, you are always looking at the tweets from all the other WordCamps happening in your weekend.</p>\n\n\n\n<p>And people got very confused about why I was in Boston while they were thinking that I was in Fayetteville, even though the tweets were talking about how, like, I wasn&#8217;t in Fayetteville. They probably didn&#8217;t say that it was probably more along the lines of like, â€œHey, let&#8217;s share a photo with Josephaâ€ to, like, make fun of the fact that I wasn&#8217;t there.</p>\n\n\n\n<p>And so I caused mass confusion in multiple states. That&#8217;s probably my most embarrassing WordCamp story. You&#8217;re welcome. Bye!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12506\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:75:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"People of WordPress: Juan Aldasoro\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2022/03/people-of-wordpress-juanfra-aldasoro/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 31 Mar 2022 21:42:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:7:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:9:\"HeroPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:19:\"People of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:20:\"Polyglot Contributor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:12:\"Support Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12512\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"The People of WordPress feature this month shares the story of web and plugin developer Juanfra Aldasoro from Argentina.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"webcommsat AbhaNonStopNewsUK\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:19968:\"\n<p><strong>In this series, we share some of the inspiring stories of how WordPress and its global network of contributors can change peopleâ€™s lives for the better. This month we feature a website developer and product manager from Argentina, who found in the software a way to live his life in the way he dreamed.</strong></p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"1024\" height=\"768\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/03/Juanfra_2333.jpg?resize=1024%2C768&#038;ssl=1\" alt=\"Juan standing in front of a mural\" class=\"wp-image-12525\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/03/Juanfra_2333-scaled.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/03/Juanfra_2333-scaled.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/03/Juanfra_2333-scaled.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/03/Juanfra_2333-scaled.jpg?resize=1536%2C1152&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2022/03/Juanfra_2333-scaled.jpg?resize=2048%2C1536&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>WordPress offers something to everyone. For Juan Aldasoro, a developer and product manager for a large distributed company, it provides an opportunity to combine his different interests and skills to live the type of life he wanted.&nbsp;</p>\n\n\n\n<p>â€œI like visual, creative and technical things. The joy of WordPress is that you can do all of these things, you donâ€™t have to limit yourself to any one aspect . You can also do this from almost anywhere in the world!â€</p>\n\n\n\n<p>From working in products since 2012, Juan sees WordPress as a major part of his skillset and toolbox. He said: â€œIt gives you an opportunity to be part of building a product which could potentially be used by thousands of people and more on your site. It encourages you to think about different languages and how you can make it accessible. It allows you to work on different platforms. Working in WordPress gives you this broad approach. Working this way on products ended up pushing me into learning about all these different things. Only in open source can you really do this and use your creative side to find solutions.â€</p>\n\n\n\n<h2><strong>Learning about being part of a community</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"1024\" height=\"924\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/03/Juanfra_2813.jpeg?resize=1024%2C924&#038;ssl=1\" alt=\"Juan standing in a astreet with murals behind him\" class=\"wp-image-12529\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/03/Juanfra_2813-scaled.jpeg?resize=1024%2C924&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/03/Juanfra_2813-scaled.jpeg?resize=300%2C271&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/03/Juanfra_2813-scaled.jpeg?resize=768%2C693&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/03/Juanfra_2813-scaled.jpeg?resize=1536%2C1386&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2022/03/Juanfra_2813-scaled.jpeg?resize=2048%2C1847&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Born in a mid-sized city in Argentina, Juan was raised in a family in which music, arts and sports were always an essential part of everyday life.</p>\n\n\n\n<p>â€œThese activities encourage human beings to be creative and participative, and at the same time they are highly formative when it comes to mould people in order to become part of a group, a team, a community.â€</p>\n\n\n\n<p>The youngest of five siblings, Juan became highly motivated, trying to follow the steps of his siblings. Having a computer at home, he started to make connections that laid the foundation for his career as a developer. His interest in computers grew through that access to a machine running MS-DOS &#8211; the one with the black screen command line! Mastering this became a challenge to him and something to share with others. Through doing this, he found a way to more social interaction and new friendships.&nbsp;</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Without being conscious of it, my friends and I were sharing pieces of code.</p></blockquote>\n\n\n\n<p>He said: â€œI started learning some super easy stuff that made me feel like Houdini at that time. I could save a game play, something intangible, on a floppy disk and carry that piece of plastic and magnetic material back home. I was saving the play or game in a square object and then loading that back at home. I now realize, those were my first interactions with computer commands. Without being conscious of it, my friends and I were sharing pieces of code in a unique way.â€</p>\n\n\n\n<p>This interest grew further through computer magazines and experimenting as &#8220;there was always something new to learn.â€ Although sport became a big part of Juanâ€™s life in his teens, he kept up his computer learning. Taking a new direction, he found online tutorials enabling him to learn how to play the guitar. This led to setting up a punk rock band with his friends.&nbsp;</p>\n\n\n\n<p>â€œEducation has always been important in my family, and thanks to my parentâ€™s efforts, I attended a school where I learned to express myself in another language.â€ The school had hired a satellite internet connection in the mid-nineties and had HTML on the computer studies program. These facilities were not that common in Argentina or many other countries either at that time. Also, his parents had the foresight to secure a rare internet connection at the house in 1997. </p>\n\n\n\n<p>Juan recalled: â€œBrowsing around the Internet opened a new universe in my mind. This new universe was extremely fantastic but also extremely expensive. I needed to make the most of every second online.â€<br><br>â€œIt was a whole new world and one thing led to the other. I started learning a bit of everything, editing graphics, scripting and so on. I still remember my first website in the fantastic sunset strip, Geocities.â€</p>\n\n\n\n<h3><strong>Trying to go pro</strong></h3>\n\n\n\n<p>After high school, Juan moved to the city along with his brother and began to study IT at University. When he was asked by a friend to work at a software company, he decided to try that whilst continuing his studies. Through his job he had the chance to explore web-related opportunities, and with a friend from university, they started managing teams and projects across Latin America and Spain.<br><br>Juan describes this experience as one of the most fulfilling in his life. He was able to travel abroad for work, experience remote working, manage teams, present projects and speak formally in front of senior people. As the company grew at a fast pace, they learned how to set up and run a large organization. Eventually, he decided to drop out of his university program and focus on the opportunity of learning first hand.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"600\" height=\"600\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/03/juanfra.jpg?resize=600%2C600&#038;ssl=1\" alt=\"Juan riding a bicycle in a historical city during his travels\" class=\"wp-image-12509\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/03/juanfra.jpg?w=600&amp;ssl=1 600w, https://i0.wp.com/wordpress.org/news/files/2022/03/juanfra.jpg?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/03/juanfra.jpg?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>One of the key early learning from working internationally was that business and web development could be just as fast-moving and successful in Argentina as in other places. â€œI realized thereâ€™s no such thing as a secret sauce for success. Projects are backed by peopleâ€™s talent and time, and you can find that in any latitude.â€<br><br>By his mid-20s, Juan decided he wanted to try building something from scratch. He created a social network for photo sharing in Latin America, which was used by more than 30,000 people across Latin America and Spain in its time. Through this, he discovered that other people had a blog and he did not want to be left behind. The discovery of WordPress was to change the focus of his life.<br></p>\n\n\n\n<h2>Hello to WordPress</h2>\n\n\n\n<p>Spending some time traveling around Europe, Juan found himself â€˜surrounded by uncertaintyâ€™ and worried about what the future could bring. â€œI had some clues, but under uncertainty, the more you ask the less you answer. I started thinking about embracing the following philosophy: I didnâ€™t want to be part of a large company, I didnâ€™t want to continue studying and I wanted to travel as much as I could.â€ He did not realize at that time how this vision for his life was to mirror what he would find in WordPress.</p>\n\n\n\n<p>He started using WordPress for a few sites in 2005. By 2007 he was using it for almost everything. He was struck by the magnitude and range of what the software could do, from a simple tool used to create a blog in the blink of an eye through to complex projects.</p>\n\n\n\n<p>His first problem-solving project was simple and saved data received through a contact form plugin. â€œTo complete this project I discovered the Codex and I learned how easy and intuitive it is to create a plugin. I had fallen in love with WordPress.â€</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>I was truly amazed by how I could learn from others.</p></blockquote>\n\n\n\n<p>As he explored the options with the software, Juan was unsure of how intellectual property worked and wanted to be respectful of other peopleâ€™s work. â€œI didnâ€™t understand open source yet, and I wasnâ€™t sure if I was stealing from others. That was my first interaction with GPL and open source. I was truly amazed by how I could learn from others and improve things created by others or by myself.â€</p>\n\n\n\n<p>He realized: â€œWordPress was the way to go if I wanted to pursue a dream of traveling, skipping winter, and working at the same time; what we now call a digital nomad. I already knew how to work remotely, I could work for companies located anywhere, as long as they could communicate in English or Spanish.â€</p>\n\n\n\n<p>Juan started his own web agency, where he provided services to small and medium-sized companies abroad in the USA, UK, and Australia. He built his reputation and developed strong relationships in WordPress. â€œThe experience couldnâ€™t be better. I was learning, having fun, making a living out of it, and at the same time exploring the world.â€</p>\n\n\n\n<p>In mid-2012, he discovered the full power of the WordPress community firsthand. In his spare time he started developing themes and from all he heard, wanted to attend a major event with lots of others in WordPress, a WordCamp. He took the plunge and booked for WordCamp in Edinburgh, in the UK. He said: â€œI got to meet many super talented people, and the atmosphere of the event was awesome. A place where competitors were also colleagues. Seeing the humility of somebody like Mike Little, the co-founder of WordPress, was amazing.â€</p>\n\n\n\n<p>He added: â€œWhile there, unconsciously, I started dreaming of holding something like that in Argentina &#8211; the joy of hosting the WordPress community in my home country.â€</p>\n\n\n\n<p>Back home, while browsing the Codex, he happened to see that WordPress was turning 10. A lot of meetups were going to be organized worldwide to celebrate the birthday. But there was nothing organized in Argentina. This was a catalyst for starting a local meetup. Together with a colleague, he&nbsp; organized an Argentinian 10th birthday meetup. </p>\n\n\n\n<p>More than 20 people showed up. â€œThere was a common denominator. We all loved WordPress, it was part of our day-to-day life. We wanted to share experiences, make new friends and continue growing from what we could learn from others. That day we were a group of people with shared interests. Thatâ€™s the simplest way to define a community, isnâ€™t it?â€ This early meetup led to the formation of what is now called <a href=\"http://wpargentina.org/\">WordPress Argentina</a>.</p>\n\n\n\n<p>In his desire to skip winters and do more traveling, his next adventure was to take him to visit family working in the US and attend one of the biggest WordCamps in the world in San Francisco. His interest kept growing and he traveled across Europe to be part of the first edition of WordCamp Europe in the Netherlands in 2013.</p>\n\n\n\n<p>He said: â€œThereâ€™s almost nothing I could write to fully express what you experience in such events. They are the main WordPress events worldwide. The best part: I made a lot of good friends from many different places. Iâ€™m glad I have more excuses to continue traveling.â€</p>\n\n\n\n<p>Once again in Argentina, our organization started growing thanks to the energy of the whole group, we started hosting formal meetups. In May 2015, we crowned all these efforts with a new <a href=\"https://buenosaires.wordcamp.org/2015/\">WordCamp in Buenos Aires</a>, Argentina.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/03/Juanfra-WCBA15-51.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"Juan speaking at WordCamp Buenos Aires\" class=\"wp-image-12528\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/03/Juanfra-WCBA15-51-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2022/03/Juanfra-WCBA15-51-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2022/03/Juanfra-WCBA15-51-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2022/03/Juanfra-WCBA15-51-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2022/03/Juanfra-WCBA15-51-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>â€œOrganizing such an event in my home country with many of the contributors I had met from the very first meetup was an experience I will always keep with me.â€</p>\n\n\n\n<p>Juan believes one of his biggest contributions to open source was as part of being able to expand the community in Argentina and to share this with other Latin American and Spanish speaking countries. He also contributes as a volunteer translator in the Polyglots Team, to the Make WordPress Support team, and contributes to code blocks and Gutenberg. â€œI am really excited about seeing the future of Gutenberg as it is the future of WordPress.â€</p>\n\n\n\n<p>Throughout his time contributing, Juan believes in helping to set the foundations and encouraging others to give their time and talents. He is keen to share that contributing does not have to be the same all the time and that you can have breaks and focus on one area in a particular period too. He gives the example of how in his spare time he watches Trac, where tickets about the software are logged, and looks where he might be able to help or think of solutions.</p>\n\n\n\n<p>He said: â€œAnytime I find I can contribute to or make improvements in code-related areas, I will do as it is important to keep giving to the community. I enjoy crawling over meta, trac, GitHub and the different places that are requesting help. There is always somewhere you can help. At the moment, my focus is code and translations. I always try to save time to help these two areas. It is like you give and you get, you learn things. You meet amazing people and opportunities arrive.â€</p>\n\n\n\n<h2>Finding your path in WordPress</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"768\" height=\"1024\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/03/Juanfra_1505.jpeg?resize=768%2C1024&#038;ssl=1\" alt=\"Juan sat in a street cafe surrounded by parked motorcycles\" class=\"wp-image-12527\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/03/Juanfra_1505-scaled.jpeg?resize=768%2C1024&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2022/03/Juanfra_1505-scaled.jpeg?resize=225%2C300&amp;ssl=1 225w, https://i2.wp.com/wordpress.org/news/files/2022/03/Juanfra_1505-scaled.jpeg?resize=1152%2C1536&amp;ssl=1 1152w, https://i2.wp.com/wordpress.org/news/files/2022/03/Juanfra_1505-scaled.jpeg?resize=1536%2C2048&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2022/03/Juanfra_1505-scaled.jpeg?w=1920&amp;ssl=1 1920w\" sizes=\"(max-width: 768px) 100vw, 768px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>â€œLife is about experiences, it is about the people you surround yourself with and trying to do what you love. What you can find in an open source project like WordPress is an environment full of people who work with a tool they love. An environment that is ready to help and to give advice. Follow what makes you happy, try to be surrounded by people who make you better, try to empower others, try to give back. Try. Make your own path.â€</p>\n\n\n\n<h2 id=\"share-the-stories\">Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community.Â Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<h2 id=\"contributors-to-this-feature\">Contributors to this feature</h2>\n\n\n\n<p>Thank you to Juan Aldasoro (<a href=\'https://profiles.wordpress.org/juanfra/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>juanfra</a>) for sharing his story.&nbsp;</p>\n\n\n\n<p>Interviews and feature by Abha Thakor (<a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>) and Surendra Thakor (<a href=\'https://profiles.wordpress.org/sthakor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sthakor</a>). ReviewsÂ by Mary Baum (<a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a>), Chloe Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>), Meher Bala (<a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>), Anjana Vasan (<a href=\'https://profiles.wordpress.org/anjanavasan/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>anjanavasan</a>) and Yvette Sonneveld (<a href=\'https://profiles.wordpress.org/yvettesonneveld/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>yvettesonneveld</a>).</p>\n\n\n\n<p><em>Thanks to Josepha Haden Chomphosy&nbsp;(<a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>) and Topher DeRosia (<a href=\'https://profiles.wordpress.org/topher1kenobe/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>topher1kenobe</a>) and others for their support&nbsp;</em>of this initiative.</p>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\" style=\"grid-template-columns:29% auto\"><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" width=\"180\" height=\"135\" src=\"https://i1.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&#038;ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published onÂ </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard.Â </em>#HeroPress </p>\n</div></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12512\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"Get Creative with the All-New Pattern Creator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wordpress.org/news/2022/03/get-creative-with-the-all-new-pattern-creator/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 25 Mar 2022 17:34:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12460\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:351:\"Itâ€™s been less than a year since the WordPress Pattern Directory was launched, and we already have more exciting news to share. The Pattern Creator is live! You can now build, edit, and submit your best block patterns to the Pattern Directoryâ€”submissions are open to all with a WordPress.org user account! The WordPress Pattern Directory [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Anjana Vasan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5700:\"\n<p>Itâ€™s been less than a year since the <a rel=\"noreferrer noopener\" href=\"https://wordpress.org/patterns/\" target=\"_blank\">WordPress Pattern Directory</a> was launched, and we already have more exciting news to share. <strong>The <a rel=\"noreferrer noopener\" href=\"https://wordpress.org/patterns/new-pattern/\" target=\"_blank\">Pattern Creator</a> is live! You can now build, edit, and submit your best block patterns to the Pattern Directoryâ€”submissions are open to all with a WordPress.org user account!</strong></p>\n\n\n\n<figure class=\"wp-container-14 wp-block-gallery-13 wp-block-gallery alignfull has-nested-images columns-default\">\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"2800\" height=\"3000\" data-id=\"12485\"  src=\"https://i0.wp.com/wordpress.org/news/files/2022/03/patterns.png?resize=2800%2C3000&#038;ssl=1\" alt=\"Pattern Directory, showing gallery patterns.\" class=\"wp-image-12485\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/03/patterns.png?w=2800&amp;ssl=1 2800w, https://i0.wp.com/wordpress.org/news/files/2022/03/patterns.png?resize=280%2C300&amp;ssl=1 280w, https://i0.wp.com/wordpress.org/news/files/2022/03/patterns.png?resize=956%2C1024&amp;ssl=1 956w, https://i0.wp.com/wordpress.org/news/files/2022/03/patterns.png?resize=768%2C823&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/03/patterns.png?resize=1434%2C1536&amp;ssl=1 1434w, https://i0.wp.com/wordpress.org/news/files/2022/03/patterns.png?resize=1911%2C2048&amp;ssl=1 1911w, https://i0.wp.com/wordpress.org/news/files/2022/03/patterns.png?w=2000&amp;ssl=1 2000w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"2800\" height=\"2841\" data-id=\"12468\"  src=\"https://i0.wp.com/wordpress.org/news/files/2022/03/community-pattern-3-1-1.png?resize=2800%2C2841&#038;ssl=1\" alt=\"View of a user-submitted pattern.\" class=\"wp-image-12468\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/03/community-pattern-3-1-1.png?w=2800&amp;ssl=1 2800w, https://i0.wp.com/wordpress.org/news/files/2022/03/community-pattern-3-1-1.png?resize=296%2C300&amp;ssl=1 296w, https://i0.wp.com/wordpress.org/news/files/2022/03/community-pattern-3-1-1.png?resize=1009%2C1024&amp;ssl=1 1009w, https://i0.wp.com/wordpress.org/news/files/2022/03/community-pattern-3-1-1.png?resize=768%2C779&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/03/community-pattern-3-1-1.png?resize=1514%2C1536&amp;ssl=1 1514w, https://i0.wp.com/wordpress.org/news/files/2022/03/community-pattern-3-1-1.png?resize=2018%2C2048&amp;ssl=1 2018w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n<figcaption class=\"blocks-gallery-caption\">Pattern Directory â€” List of patterns, and a single pattern detail.</figcaption></figure>\n\n\n\n<p>The <a rel=\"noreferrer noopener\" href=\"https://wordpress.org/support/article/block-pattern-directory/\" target=\"_blank\">WordPress Pattern Directory</a> includes attractive, handy patterns created by designers that can make your experience building a stunning site <em>much</em> easier. <a href=\"https://wordpress.org/support/article/block-pattern/\" target=\"_blank\" rel=\"noreferrer noopener\">Patterns</a> can save you a significant amount of time and also give you greater freedom when youâ€™re building your site. With patterns, you can make or replicate complex layouts with just a few clicks, and using them is as simple as copy and paste.</p>\n\n\n\n<h2>Create Your Own Bold, Beautiful Patterns Built Entirely with Blocks</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://i1.wp.com/wordpress.org/news/files/2022/03/submission-2.png?ssl=1\"><img loading=\"lazy\" width=\"1024\" height=\"683\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/03/submission-2.png?resize=1024%2C683&#038;ssl=1\" alt=\"Pattern submission screen, successfully submitted pattern with a &quot;Thank you&quot; modal.\" class=\"wp-image-12479\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/03/submission-2.png?resize=1024%2C683&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2022/03/submission-2.png?resize=300%2C200&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2022/03/submission-2.png?resize=768%2C512&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2022/03/submission-2.png?resize=1536%2C1024&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2022/03/submission-2.png?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></a></figure>\n\n\n\n<p>As the name implies, the <a rel=\"noreferrer noopener\" href=\"https://wordpress.org/patterns/new-pattern/\" target=\"_blank\">Pattern Creator</a> allows anyone, from designers to content creators, to make custom patterns: a collection of blocks arranged in any way, for any purpose intended by the creator. Like most things in WordPress, these are available for public use once itâ€™s submitted to the WordPress Pattern Directory. Have a look at <a rel=\"noreferrer noopener\" href=\"https://wordpress.org/patterns/about/\" target=\"_blank\">these guidelines</a> to learn more about what makes a pattern suitable for listing in the directory.</p>\n\n\n\n<p>So what are you waiting for? Check out <a href=\"https://wordpress.org/patterns/\" target=\"_blank\" rel=\"noreferrer noopener\">all the patterns</a> already available or better yet, make your own!</p>\n\n\n\n<div class=\"wp-container-15 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter is-style-fill\"><a class=\"wp-block-button__link\" href=\"https://wordpress.org/patterns/about/\" style=\"border-radius:75px\"><strong>Learn more about creating patterns</strong></a></div>\n</div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12460\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"WP Briefing: Episode 27: Is WordPress Made for Me?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2022/03/episode-27-is-wordpress-made-for-me/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 Mar 2022 12:57:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=12451\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:416:\"Who is WordPress actually made for? Join our host, WordPress Executive Director Josepha Haden Chomphosy, as she explores this controversial question and three things that can help find the answer. Have a question you&#8217;d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording. Hosts: Josepha Haden Chomphosy Editor:&#160;Dustin HartzlerLogo:&#160;Beatriz [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/03/WP-Briefing-027.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9785:\"\n<p>Who is WordPress actually made for? Join our host, WordPress Executive Director Josepha Haden Chomphosy, as she explores this controversial question and three things that can help find the answer.</p>\n\n\n\n<p><strong><em>H</em></strong><em><strong>ave a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em> </p>\n\n\n\n<p>Hosts: <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a> <br>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a></p>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://europe.wordcamp.org/2022/call-for-volunteers/\">WordCamp Europe call for volunteers</a></li><li><a href=\"https://make.wordpress.org/photos/\">WordPress Photo Directory team</a></li><li><a href=\"https://www.unicefusa.org/stories/unicef-children-crossfire-ukraine-crisis/39542?utm_campaign=20220225_Emergencies&amp;utm_medium=Organic&amp;utm_source=UkraineWebStoryChildrenFeb2022&amp;utm_content=LearnMoreUkraineWebStoryChildrenFeb2022&amp;ms=Organic_PRL_2022_Emergencies_20220225_UkraineWebStoryChildrenFeb2022_LearnMoreUkraineWebStoryChildrenFeb2022_none_none&amp;initialms=Organic_PRL_2022_Emergencies_20220225_UkraineWebStoryChildrenFeb2022_LearnMoreUkraineWebStoryChildrenFeb2022_none_none\">UNICEF</a></li><li><a href=\"https://www.doctorswithoutborders.org/what-we-do/countries/ukraine\">MÃ©decins Sans Frontieres</a>&nbsp;</li><li><a href=\"https://www.icrc.org/en/where-we-work/europe-central-asia/ukraine\">International Committee of the Red Cross</a>&nbsp;</li><li><a href=\"https://help.rescue.org/donate/ukraine-acq?ms=gs_ppc_fy22_ukraine_mmus_feb&amp;initialms=gs_ppc_fy22_ukraine_mmus_feb&amp;gclid=CjwKCAiAjoeRBhAJEiwAYY3nDHNlEUUNRM4wKl1bY0ploy1RNl0M7G1OlLTqawZdg_XhrJ0TircZ_RoCfh8QAvD_BwE\">International Rescue Committee</a></li><li><a href=\"https://www.unrefugees.org/what-we-do/\">UN Refugee Agency</a>&nbsp;</li><li><a href=\"https://donate.wck.org/give/236738/#!/donation/checkout\">World Central Kitchen</a></li><li><a href=\"https://www.techtotherescue.org/tech/tech-for-ukraine\">Tech For Ukraine</a></li><li><a href=\"https://twitter.com/hashtag/wp4ukraine\">#WP4Ukraine</a></li></ul>\n\n\n\n<h2>Transcript </h2>\n\n\n<a class=\"wp-block-read-more\" href=\"https://wordpress.org/news/2022/03/episode-27-is-wordpress-made-for-me/\" target=\"_self\">Read more</a>\n\n\n<p><strong>Episode 27</strong></p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:00:00]&nbsp;</strong></p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing: the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p>Today, we&#8217;re talking about who WordPress is built for. I was talking to a group of contributors last week and we encountered some questions around just who WordPress is built for. And it&#8217;s a question that you&#8217;ll find any time that you&#8217;re working on user testing or on triaging tickets, and especially when that comes up when you look at the big picture, roadmap sorts of things. The easiest answer for this question is, of course, everyone because WordPress&#8217; mission is to democratize publishing and that should be available to everyone.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy </strong><strong>[00:01:11]</strong></p>\n\n\n\n<p>However, everyone is a really big target and certainly doesn&#8217;t help get your mind around the people that you&#8217;re wanting to actually build it for, the people that you actually want to be able to use your product, your software on a day-to-day basis. So let&#8217;s take a look at the one question that can help us figure out who it&#8217;s built for today and how we get it to being something that&#8217;s built forever.</p>\n\n\n\n<p>Firstly, there&#8217;s a basic premise of open source that informs this thought. And that premise is that we are citizens of a community of contributors therefore the decisions are made by the people who show up. In general, I believe that to be true, though, I also believe that some basic qualifications are needed.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:01:50]&nbsp;</strong></p>\n\n\n\n<p>So with that in mind, the one question that can help us figure out who a software is built for is this: how do your active contributors see themselves? I would bet that most contributors to open source software projects, like WordPress, are developers of some sort, it is sort of written right into the definition of the project.&nbsp;</p>\n\n\n\n<p>If you work on software, then you need developers. And what I love about WordPress, in particular, is that we do work to include contributors who are not developers. Yet it still remains true that there is a fairly high level of technical knowledge required to actively contribute.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:2:25]&nbsp;</strong></p>\n\n\n\n<p>Which kind of brings us to the second half of the original question of how can we make sure that WordPress can be something that&#8217;s built for everyone? The answer to this one is easy to say, hard to do, and that is to make sure to include them as co-creators in the development process.&nbsp;</p>\n\n\n\n<p>We&#8217;ve talked about co-creators in open source before. It&#8217;s this idea that people who use the software every day are likely to know the biggest pain points. So if you want your software to be used by people who don&#8217;t know HTML, talk to a bunch of people who don&#8217;t know HTML about how it is to use your software.&nbsp;</p>\n\n\n\n<p>If you want your software to be mostly used by enterprise agencies, talk to enterprise agencies, but also ask them what their clients hate, because everyone has more than one stakeholder. And I know that I said this already, but it bears repeating that, obviously, this is all very easy to say and hard to do.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:3:20]&nbsp;</strong></p>\n\n\n\n<p>So what is my best guess for the how-to-do part for WordPress? There are three things.&nbsp;</p>\n\n\n\n<p>The first is testing. This not only helps bring in new contributors and helps train future contributors, which I&#8217;ve talked about on the podcast before. But testing also gives us a higher chance of actionable feedback from folks who don&#8217;t necessarily spend time directly in the WordPress project.&nbsp;</p>\n\n\n\n<p>Frequently the feedback that we do get that is just kind of undirected and ad hoc is exactly thatâ€“ it is undirected and ad hoc and is then hard to follow up on and make sure that we understand what was wrong and how we can help fix it. And so testing is important for that. And testing it turns out is important for a bunch of things. When you&#8217;re working in open source.&nbsp;</p>\n\n\n\n<p>The next thing is support. So checking in with support teams at hosts, as well as the hardworking support teams in the project. And that can really help us to get early indications of what difficulties exist now. They have routinely seen problems and issues that are raised in support forums, and from their everyday users that they are providing support to.&nbsp;</p>\n\n\n\n<p>That probably could be fixed in WordPress if we had a good understanding of just what was not going right, how many people really needed it to go better, and what our targets were to fix that particular problem.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:4:45]&nbsp;</strong></p>\n\n\n\n<p>And the third thing is communication. I know that I&#8217;ve gone on record in many places as saying that most of our problems at the end of the day are communication problems. And I&#8217;m going on record about it again here in this podcast, establishing better communication patterns with users is key.&nbsp;</p>\n\n\n\n<p>That can be a multi-year project in itself. And even after that, it&#8217;s going to be an ongoing journey. But it is one of the many things that WordCamps and other WordPress events have given to us over the years, an opportunity to really hear from and see the struggles that people who are not building with WordPress every day, or literally building WordPress every day are actually having.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:5:34]&nbsp;</strong></p>\n\n\n\n<p>So now that you&#8217;ve heard my small list of way too big things, that brings us to our regular small list of big things. The first thing is that WordCamp Europe is still looking for volunteers. If you&#8217;ve never done that before, I think it&#8217;s quite fun. You get to meet a lot of people and the team of organizers is super fun, but I&#8217;ll leave a link for you in the show notes.</p>\n\n\n\n<p>We also have a new code-free way to contribute through the photo directory. That team is just getting started and still is working toward building out its programs. So now&#8217;s a good time to drop in and just kind of see what they are up to. And finally, a reminder that we do have contributors who are affected by the war in Ukraine right now. I will reshare the list of humanitarian organizations in case you missed them a couple of weeks ago as well.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:6:21]&nbsp;</strong></p>\n\n\n\n<p>And that my friends is your small list of big things. Thank you for tuning in today for this WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy. I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12451\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 5.9.2 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wordpress.org/news/2022/03/wordpress-5-9-2-security-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Mar 2022 02:24:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12421\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:367:\"WordPress 5.9.2&#160;is now available! This security and maintenance release features 1 bug fix in addition to 3 security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated. WordPress 5.9.2 is a security and maintenance release. The next major release [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3697:\"\n<p><strong>WordPress 5.9.2&nbsp;</strong>is now available!</p>\n\n\n\n<p>This security and maintenance release features <a href=\"https://core.trac.wordpress.org/ticket/54578\">1 bug fix</a> in addition to 3 security fixes. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated.</p>\n\n\n\n<p>WordPress 5.9.2 is a security and maintenance release. The next major release will be version&nbsp;<a href=\"https://make.wordpress.org/core/6-0/\">6.0</a>.</p>\n\n\n\n<p>You can&nbsp;<a href=\"https://wordpress.org/wordpress-5.9.2.zip\">download WordPress 5.9.2 from WordPress.org</a>, or visit your Dashboard&nbsp;â†’ Updates and click â€œUpdate Nowâ€.</p>\n\n\n\n<p>If you have sites that support automatic background updates, theyâ€™ve already started the update process.</p>\n\n\n\n<p>The security team would like to thank the following people for responsively reporting vulnerabilities, allowing them to be fixed in this release:</p>\n\n\n\n<ul><li>Melar Dev, for finding a Prototype Pollution Vulnerability in a jQuery dependency</li><li>Ben Bidner&nbsp;of the WordPress security team, for finding a Stored Cross Site Scripting Vulnerability</li><li>Researchers from <em>Johns Hopkins University, </em>for finding a Prototype Pollution Vulnerability in the block editor</li></ul>\n\n\n\n<p>For more information, browse the&nbsp;<a href=\"https://core.trac.wordpress.org/query?milestone=5.9.2&amp;group=component&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;col=milestone&amp;order=priority\">full list of changes</a>&nbsp;on Trac, or check out the&nbsp;<a href=\"https://wordpress.org/support/wordpress-version/version-5-9-2/\">version 5.9.2 HelpHub documentation page</a>.</p>\n\n\n\n<h2 id=\"thanks-and-props\">Thanks and props!</h2>\n\n\n\n<p>The 5.9.2 release was led by <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, with the help of <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> on package updates, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> on mission control, and <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> on backport commits.</p>\n\n\n\n<p>In addition to the release squad members and security researchers mentioned above, thank you to everyone who helped make WordPress 5.9.2 happen:</p>\n\n\n\n<p class=\"is-style-wporg-props-short alignfull\"><a href=\"https://profiles.wordpress.org/alanjacobmathew/\">Alan Jacob Mathew</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/oandregal/\">AndrÃ©</a>, <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">ehtis</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/hellofromTonya/\">Tonya Mork</a>, and <a href=\"https://profiles.wordpress.org/ironprogrammer/\">ironprogrammer</a>.</p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Props <a href=\'https://profiles.wordpress.org/davidbaumwald/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>davidbaumwald</a> and <a href=\'https://profiles.wordpress.org/sergeybiryukov/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sergeybiryukov</a> for peer review.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12421\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WP Briefing: Episode 26: Matt Mullenweg on Ukraine, Community, and WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://wordpress.org/news/2022/03/episode-26-matt-mullenweg-on-ukraine-community-and-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Mar 2022 21:39:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=12415\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:384:\"Matt Mullenweg speaks to WordPress contributors worldwide on this special edition of the WP Briefing podcast with Josepha Haden Chomphosy. Join us to hear Mattâ€™s thoughts on Ukraine. Have a question you&#8217;d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording. Credits Hosts: Josepha Haden Chomphosy and Matt Mullenweg [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:62:\"https://wordpress.org/news/files/2022/03/WP-Briefing-026-1.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6361:\"\n<p>Matt Mullenweg speaks to WordPress contributors worldwide on this special edition of the WP Briefing podcast with Josepha Haden Chomphosy. Join us to hear Mattâ€™s thoughts on Ukraine.</p>\n\n\n\n<p><strong><em>H</em></strong><em><strong>ave a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 id=\"credits\">Credits</h2>\n\n\n\n<ul><li>Hosts: <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a> and <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a></li><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<a href=\"https://profiles.wordpress.org/cbringmann/\">ChloÃ© Bringmann</a> &amp; <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a></li></ul>\n\n\n\n<h2>How You Can Help</h2>\n\n\n\n<p><a href=\"https://www.unicefusa.org/stories/unicef-children-crossfire-ukraine-crisis/39542?utm_campaign=20220225_Emergencies&amp;utm_medium=Organic&amp;utm_source=UkraineWebStoryChildrenFeb2022&amp;utm_content=LearnMoreUkraineWebStoryChildrenFeb2022&amp;ms=Organic_PRL_2022_Emergencies_20220225_UkraineWebStoryChildrenFeb2022_LearnMoreUkraineWebStoryChildrenFeb2022_none_none&amp;initialms=Organic_PRL_2022_Emergencies_20220225_UkraineWebStoryChildrenFeb2022_LearnMoreUkraineWebStoryChildrenFeb2022_none_none\">UNICEF</a></p>\n\n\n\n<p><a href=\"https://www.doctorswithoutborders.org/what-we-do/countries/ukraine\">MÃ©decins Sans Frontieres</a>&nbsp;</p>\n\n\n\n<p><a href=\"https://www.icrc.org/en/where-we-work/europe-central-asia/ukraine\">International Committee of the Red Cross</a>&nbsp;</p>\n\n\n\n<p><a href=\"https://help.rescue.org/donate/ukraine-acq?ms=gs_ppc_fy22_ukraine_mmus_feb&amp;initialms=gs_ppc_fy22_ukraine_mmus_feb&amp;gclid=CjwKCAiAjoeRBhAJEiwAYY3nDHNlEUUNRM4wKl1bY0ploy1RNl0M7G1OlLTqawZdg_XhrJ0TircZ_RoCfh8QAvD_BwE\">International Rescue Committee</a></p>\n\n\n\n<p><a href=\"https://www.unrefugees.org/what-we-do/\">UN Refugee Agency</a>&nbsp;</p>\n\n\n\n<p><a href=\"https://donate.wck.org/give/236738/#!/donation/checkout\">World Central Kitchen</a></p>\n\n\n\n<p><a href=\"https://www.techtotherescue.org/tech/tech-for-ukraine\">Tech For Ukraine</a></p>\n\n\n\n<p><a href=\"https://twitter.com/hashtag/wp4ukraine\">#WP4Ukraine</a></p>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-12415\"></span>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:00</p>\n\n\n\n<p>Hello, everyone, and welcome to a special edition of the WordPress Briefing. I have Matt here with me today because we want to acknowledge that we are once again at the start of a very difficult time. Neither of us would presume to know what it&#8217;s like to be at the heart of such massive disruption in our lives. But who would we be if we didn&#8217;t stop and check in with you all, the project that we hold so dear? And with that, I&#8217;ll hand it right over to you, Matt.</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>00:27</p>\n\n\n\n<p>Hello everyone. First, I want to thank Josepha for inviting me to join the WordPress Briefing to share whatâ€™s been on my mind in light of recent global events.&nbsp;</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>00:37</p>\n\n\n\n<p>I&#8217;ve been listening and watching events escalate in Ukraine, often in a state of shock. The scale alone is hard to take in. I mean, in the last 7 days, more than 500,000 people have fled their homes, more refugees are expected every day. The downstream humanitarian crises of the invasion are unimaginable.&nbsp;&nbsp;</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>00:56</p>\n\n\n\n<p>And seeing destruction in the world we live in is confusing, disconcerting, and difficult. In my experience, open source and WordPress bring people together; people from other countries and cultures, people that we know as friends and colleagues. Technology connects us, regardless of where we are. Nothing can negate the bad things happening in the world, but when I see how this community of contributors collaborates, regardless of borders, you all remind me of the good in the world every day.</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>01:30</p>\n\n\n\n<p>I firmly believe that the web can be an equalizer and a force for good in the world. To me, the WordPress project is the epitome of goodnessâ€”everyone has a voice, a platform, and a community. You have the power to make your corner of the world, and the web, a sanctuary for those who need itâ€”especially now.</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>01:45</p>\n\n\n\n<p>If you or someone you know is affected by this war, I encourage you to be present as the ramifications unfold. While we may all feel fatigued and have a sense of languishing from the past two years of the Covid pandemic, the gift of time and support for one another cannot be overstated. I&#8217;m confident that every single person in the WordPress community will approach the situation in Ukraine with sensitivity and understanding.&nbsp;</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>02:07</p>\n\n\n\n<p>I invite you to join me in standing with those in the world working to end conflict and working toward a world of peace, promise, and opportunity. If you&#8217;re looking for a way to help support the humanitarian crisis in Ukraine, I will offer some suggested NGOs, or Non-Governmental Organizations, that provide assistance to local peacebuilders in the region.&nbsp;</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>02:26</p>\n\n\n\n<p>In closing, please know that my thoughts are with everyone in our community. I know that my words here canâ€™t change anything there, but I hope that we all remember that words of support are never unwelcome. And we can never know when a little human kindness can help someone share the invisible heaviness in their heart.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:44</p>\n\n\n\n<p>Thanks for that, Matt. My friends, there are links in the show notes to some of the groups that Matt referenced. And that is it for this special edition of the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy. Be safe, be kind to yourself and others, and I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12415\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"The Month in WordPress â€“ February 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2022/03/the-month-in-wordpress-february-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Mar 2022 17:40:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:22:\"the month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12411\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:332:\"Thereâ€™s a lot going on in the world right now, and safety is top of mind for everyone in the WordPress community. If you don&#8217;t know where to begin, or how to support your peers, Executive Director Josepha Chomphosyâ€™s advice to the global community is to start small.&#160; Overall, February has been a busy month [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Anjana Vasan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11940:\"\n<p>Thereâ€™s a lot going on in the world right now, and safety is top of mind for everyone in the WordPress community. If you don&#8217;t know where to begin, or how to support your peers, Executive Director <a href=\"https://josepha.blog/2022/02/25/to-my-global-community-start-small/\">Josepha Chomphosyâ€™s advice</a> to the global community is to start small.&nbsp;</p>\n\n\n\n<p>Overall, February has been a busy month for WordPress. To begin with, it was thrilling to see the enthusiasm for the release of WordPress 5.9 JosÃ©phine from January continue last month, and thatâ€™s not all.&nbsp;</p>\n\n\n\n<p>We have many exciting updates to share, so keep reading to learn about the latest achievements from the WordPress community.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 6.0: May 24, 2022 is the proposed release date</h2>\n\n\n\n<ul><li>The proposed <a href=\"https://make.wordpress.org/core/2022/02/16/wordpress-6-0-planning-roundup/\">release schedule for WordPress 6.0</a>, the second major release of 2022, has been published.</li><li>While weâ€™re waiting for 6.0, check out the <a href=\"https://wordpress.org/news/2022/02/wordpress-5-9-1-maintenance-release/\">WordPress 5.9.1 maintenance release</a> which was released on February 22, 2022.</li></ul>\n\n\n\n<div class=\"wp-container-16 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://wordpress.slack.com/archives/C02RQBWTW\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Are you interested in contributing to WordPress core?</strong> Join the #core channel in Slack. Also, don&#8217;t miss the Core Teamâ€™s weekly developer chat on Wednesdays at 8 PM UTC.</a></div>\n</div>\n\n\n\n<h2>Gutenberg releases: Versions 12.5, 12.6, and 12.7 were released</h2>\n\n\n\n<p>The Core Team launched three new versions of Gutenberg last month. All come with new features, code quality improvements, and bug fixes.</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/03/02/whats-new-in-gutenberg-12-7-2-march/\">Gutenberg 12.7 </a>is available to download. This version improves the Patterns experience, allows you to add border styles to column blocks, and includes other new features.</li><li><a href=\"https://make.wordpress.org/core/2022/02/16/whats-new-in-gutenberg-12-6-16-february/\">Gutenberg 12.6</a> was launched on February 16, 2022. This release includes a new color panel, updated color controls, a new Post Author Biography block, Read More block, and plenty of other exciting updates!</li><li><a href=\"https://make.wordpress.org/core/2022/02/03/whats-new-in-gutenberg-12-5-february-2nd/\">Gutenberg 12.5 </a>was released on February 2, 2022. This version allows switching theme styles variations, custom taxonomies filtering, and more.</li></ul>\n\n\n\n<div class=\"wp-container-17 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/chat/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Want to get involved in developing Gutenberg? </strong>Contribute to Gutenberg on GitHub, and join the #core-editor channel in the Make WordPress Slack. Follow the #gutenberg-new tag for details on the latest updates.</a></div>\n</div>\n\n\n\n<h2>WordPress News gets a new look</h2>\n\n\n\n<p>The redesign of <a href=\"https://wordpress.org/news\">WordPress News</a>, which was first announced by Matt Mullenweg, Co-Founder of WordPress, in State of the Word 2021, went live on February 16, 2022.</p>\n\n\n\n<div class=\"wp-container-18 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://wordpress.org/news/2022/02/a-new-wordpress-news/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Read the redesign announcement </strong>to learn more about the inspiration behind the new look.</a></div>\n</div>\n\n\n\n<h2>Team updates: #WP Diversity, a new blog for developers, and more</h2>\n\n\n\n<ul><li>The #WPDiversity working group, which is part of the Community Team, hosted an open Zoom meeting with volunteers on February 23, 2022. If youâ€™re interested in contributing, read the <a href=\"https://make.wordpress.org/community/2022/02/24/recap-of-the-diverse-speaker-training-group-wpdiversity-on-february-23-2022/\">recap of the meeting</a> to view available roles.&nbsp;</li><li>The Core Team shared a <a href=\"https://make.wordpress.org/core/2022/02/25/proposal-to-start-a-news-blog-on-developer-wordpress-org/\">proposal to start a blog</a> on developer.wordpress.org to share news and updates relevant to developers.&nbsp;</li><li>The first Gutenberg Developer Hours session hosted on February 8th by the Core Team was successful. Head over to <a href=\"https://make.wordpress.org/core/2022/02/24/february-8th-gutenberg-developer-hours-session-evaluation/\">this page</a> to learn more about the participantsâ€™ feedback.</li><li>The Core Team published â€œ<a href=\"https://make.wordpress.org/core/2022/02/24/feature-project-plugin-dependencies/\">Feature Project: Plugin Dependencies</a>,â€ where they identified the problems with plugin dependencies and suggested potential solutions to improve the plugin experience.</li><li>The WordPress Photo Directory has a <a href=\"https://make.wordpress.org/photos/\">new Make team</a>. There is currently an open <a href=\"https://make.wordpress.org/photos/2022/02/23/photo-directory-team-rep-nominations-for-2022/\">call for team reps</a> and collaboration is happening at the new <a href=\"https://wordpress.slack.com/messages/photos/\">#photos</a> channel of the Make WordPress Slack.</li><li>The Polyglots Team shared a proposal for a <a href=\"https://make.wordpress.org/polyglots/2022/02/01/proposal-milestone-template-for-polyglots-locale-teams/\">milestone template </a>for the Polyglots Locale Teams.</li><li>The Community Team published a proposal for <a href=\"https://make.wordpress.org/community/2022/02/16/proposal-refurbishing-camera-kits/\">refurbishing camera kits</a>.</li><li>The <a href=\"https://make.wordpress.org/community/2022/02/21/2022-global-sponsors-announcement/\">Global Community Sponsors for 2022</a> have been announced.</li><li>The February 2022 edition of the monthly <a href=\"https://make.wordpress.org/community/2022/02/15/meetup-organizer-newsletter-february-2022/\">Meetup Organizer Newsletter</a> has been published.</li><li>The latest edition of People of WordPress highlighting <a href=\"https://wordpress.org/news/2022/02/people-of-wordpress-tonya-mork/\">Tonya Mork</a> was published on February 28, 2022. Read Tonyaâ€™s story to learn more about how WordPress helped her find herself again after a health crisis.&nbsp;</li><li>The February 2022 edition of the <a href=\"https://make.wordpress.org/polyglots/2022/02/22/polyglots-monthly-newsletter-february-2022/\">Polyglots Monthly Newsletter</a> has been published.</li></ul>\n\n\n\n<div class=\"wp-container-19 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>The Community Team published a discussion on diversity in WordPress events.</strong> If youâ€™re comfortable sharing your experience, you can still comment on the post.</a></div>\n</div>\n\n\n\n<h2>Feedback/Testing requests: WordPress iOS 19.3 and Android 19.3 </h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/mobile/2022/02/22/call-for-testing-wordpress-for-ios-19-3/\">WordPress for iOS 19.3</a> beta is available for testing, along with <a href=\"https://make.wordpress.org/mobile/2022/02/22/call-for-testing-wordpress-for-android-19-3/\">WordPress for Android 19.3</a></li></ul>\n\n\n\n<div class=\"wp-container-20 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/polyglots/2022/02/08/call-for-early-testers-glotpress-feedback-feature/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Test and share your feedback</strong> on the GlotPress feedback feature.</a></div>\n</div>\n\n\n\n<h2>WordCamp Europe 2022 announces steps to ensure a diverse, inclusive, and welcoming event</h2>\n\n\n\n<ul><li>WordCamp Europe 2022 <a href=\"https://europe.wordcamp.org/2022/diversity-at-wceu/\">announced a plan</a> to ensure more diversity and inclusion in events moving forward.</li><li>The WordPress Foundation published a post on how <a href=\"https://wordpressfoundation.org/news/2022/open-source-software-good-for-business/\">open source software is good for business</a>.</li><li>In a recent episode of WP Briefing titled â€œ<a href=\"https://wordpress.org/news/2022/02/episode-25-five-cents-on-five-for-the-future/\">Five Cents on Five for the Future</a>,â€ Executive Director Josepha Haden Chomphosy talks about future-proofing the WordPress project with the Five for the Future pledge.</li><li>The Training Team is hosting several WordPress Social Learning Meetups <a href=\"https://www.meetup.com/wordpress-social-learning/events/\">in March 2022</a>.</li><li>Donâ€™t miss the following upcoming WordCamps:<ul><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e8-1f1ed.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://geneve.wordcamp.org/2022/\">WordCamp GenÃ¨ve</a>, Switzerland on April 9, 2022 (in person)</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ec-1f1f7.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://central.wordcamp.org/wordcamps/wordcamp-athens-attica-greece-2022/\">WordCamp Athens</a>, Greece between April 9 and 10, 2022 (in person)</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e6-1f1f9.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://vienna.wordcamp.org/2022/\">WordCamp Vienna</a>, Austria from April 23 to 24, 2022 (in person)</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1fa.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://europe.wordcamp.org/2022/\">WordCamp Europe</a> in Porto, Portugal from June 2 to 4, 2022 (in person)</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://montclair.wordcamp.org/2022/\">WordCamp Montclair</a> in New Jersey, USA June 25 (in person)</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://us.wordcamp.org/2022/\">WordCamp US</a> in San Diego, California from September 9 to 11, 2022 (in person)</li></ul></li></ul>\n\n\n\n<div class=\"wp-container-21 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://europe.wordcamp.org/2022/call-for-volunteers/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Itâ€™s not too late to be a volunteer at WordCamp Europe 2022. </strong>If youâ€™re interested, head over to this page to apply.</a></div>\n</div>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><strong><em>Have a story that we could include in the next â€˜Month in WordPressâ€™ post? Let us know by filling out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this form</em></strong></a><strong><em>.</em></strong></p>\n\n\n\n<p><em>The following folks contributed to this Month in WordPress: </em><a href=\'https://profiles.wordpress.org/anjanavasan/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>anjanavasan</a><em> </em><a href=\'https://profiles.wordpress.org/harishanker/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>harishanker</a><em> </em><a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a> <a href=\'https://profiles.wordpress.org/mysweetcate/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mysweetcate</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12411\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:78:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"People of WordPress: Tonya Mork\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wordpress.org/news/2022/02/people-of-wordpress-tonya-mork/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 28 Feb 2022 23:55:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:8:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:3:\"5.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:4:\"core\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:9:\"HeroPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:19:\"People of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:7;a:5:{s:4:\"data\";s:9:\"Test Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12151\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"The People of WordPress feature this month shares the story of engineer and developer Tonya Mork. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"webcommsat AbhaNonStopNewsUK\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:14131:\"\n<p><strong>In this series, we share some of the inspiring stories of how WordPress and its global network of contributors can change peopleâ€™s lives for the better. This month we feature a website developer and engineer from the US, who found the software and its community provide the impetus to keep her going forward.</strong></p>\n\n\n\n<p>WordPress gave Tonya Mork a new lease of energy after a health crisis from which she nearly died. She had spent two decades as an electrical and software engineer in high tech automated manufacturing. But when she discovered the WordPress software, teaching it to others became her new purpose. Through this discovery, she has gone on to help thousands of developers understand and build code in great depth.</p>\n\n\n\n<p>As part of her WordPress journey, she has shared her skills in the roles of Release Coordinator and the Core Tech Editor for the most recent major WordPress release, <a href=\"https://make.wordpress.org/core/5-9/\">5.9</a> JosÃ©phine.&nbsp;</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" width=\"1024\" height=\"515\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/02/featured-img-tonyamork.jpg?resize=1024%2C515&#038;ssl=1\" alt=\"Tonya pictured in her work room\" class=\"wp-image-12326\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/02/featured-img-tonyamork.jpg?resize=1024%2C515&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/02/featured-img-tonyamork.jpg?resize=300%2C151&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/02/featured-img-tonyamork.jpg?resize=768%2C386&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/02/featured-img-tonyamork.jpg?w=1247&amp;ssl=1 1247w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<h2 id=\"life-takes-an-unexpected-turn\">Life takes an unexpected turn</h2>\n\n\n\n<p>For the first 22 years of Tonyaâ€™s life, she rose through the ranks from enlisted personnel in the US Navy to a highly sought after chief engineer with a multi million-dollar industrial automation engineering firm.Â Â </p>\n\n\n\n<p>However, while she was working in engineering, her life was to change dramatically. In 2007, Tonya started to face health challenges that had an impact on all that she had known.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><strong>â€œMy career defined me. It was my canvas and my art. When it was gone, I did not recognize myself.</strong></p><cite>Tonya Mork</cite></blockquote>\n\n\n\n<p>One day, she woke up at home ready to visit a clientâ€™s facility where her firm was building a robotic system. She said: â€œAs I headed for the door, I fell to my knees, as this wave of pain crushed down on my chest.â€</p>\n\n\n\n<p>Doctors diagnosed her with a very rare heart disease that caused her blood vessels to spasm, cutting off blood to whatever was downstream of the blockage.Â </p>\n\n\n\n<p>A few months later, she was diagnosed with a second rare and more serious condition, related to the migraines from which she had been suffering. Combined with her heart condition, this made every migraine attack life-threatening.</p>\n\n\n\n<p>For nearly seven years, the unexpected changes to her health left her mostly homebound and constantly monitored. This meant she had to close her engineering firm and say goodbye to staff and clients.Â </p>\n\n\n\n<p>â€œMy career defined me. It was my canvas and my art. When it was gone, I was lost. I didnâ€™t recognize myself.â€</p>\n\n\n\n<p>But in her darkest hour, she found her strength. Tonya made a choice to move forward, and make the most of her life.</p>\n\n\n\n<p>â€œWhen you are at rock bottom, you have to make a decision or else it will consume you. My decision was that I chose to be happy,â€ said Tonya.</p>\n\n\n\n<p>One of Tonyaâ€™s first steps was to start writing a blog using WordPress. In this she shared insights on how to find peace and joy in any situation. She wrote about kindness and helping one another.&nbsp;</p>\n\n\n\n<p>The joy of making solutions through WordPress became a way for Tonya to accept her new life and not feel as limited by her health. She wanted purpose, and in WordPress, she found just that.</p>\n\n\n\n<p>Tonya felt she could do something worthwhile in the virtual world.&nbsp;</p>\n\n\n\n<h2 id=\"a-ray-of-hope-for-tonya\">A ray of hope for Tonya</h2>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><img loading=\"lazy\" width=\"1000\" height=\"750\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/02/tonya.jpg?resize=1000%2C750&#038;ssl=1\" alt=\"\" class=\"wp-image-12327\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/02/tonya.jpg?w=1000&amp;ssl=1 1000w, https://i1.wp.com/wordpress.org/news/files/2022/02/tonya.jpg?resize=300%2C225&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2022/02/tonya.jpg?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p>In 2013, Tonyaâ€™s health deteriorated further. She was admitted into intensive care and was diagnosed with a third rare disease, this time related to her autoimmunity. She was not expected to survive this time.Â </p>\n\n\n\n<p>Following what she describes as a â€˜miraculous recovery,â€™ she became stronger and was able to stop relying on a wheelchair. She used the energy from working on websites to keep going. â€œWordPress kept my mind alive,â€ said Tonya.</p>\n\n\n\n<p>She had first used WordPress for her engineering firmâ€™s intranet. But when she discovered the softwareâ€™s full potential and the collaborative opportunities of open source, it opened a new world.&nbsp;</p>\n\n\n\n<figure class=\"wp-block-pullquote\"><blockquote><p>&#8220;Finding WordPress helped me to find myself again&#8221;</p><cite>Tonya Mork</cite></blockquote></figure>\n\n\n\n<p>During the years which followed, she donated her time to build some WordPress websites and plugins. She said: â€œThrough giving my time, I was able to do something other than sit in isolation.â€Â </p>\n\n\n\n<p>Tonya was amazed by the sharing in open source in general and in WordPress in particular. She said: â€œI was amazed to see people sharing so much information freely with one another. In my former engineering world, information was proprietary. Throughout my career, I had worked to break down those silos and help anyone to understand complex systems. I was drawn to this open community.â€&nbsp;</p>\n\n\n\n<p>She also became aware that WordPress developers were hungry to learn more about development. She wanted to be part of the solution with her passion for teaching and the knowledge she had gained in industry.<br><br>She said: â€œFinding WordPress helped me to find myself again. Here in this community, I was able to feel like a person again, not a sick one, but a professional with something to give.â€</p>\n\n\n\n<p>As her interest in the software grew, Tonya decided to start a non-profit where she turned to WordPress to build the websites. This re-sparked her interest in programming. She said: â€œI wanted to really know the code and understand what made it tick.â€</p>\n\n\n\n<p>The realization led Tonya to start the WP Developersâ€™ Club, which in turn spawned <a href=\"https://knowthecode.io/\">Know the Code</a>, to help educate individual developers, and is still used today.</p>\n\n\n\n<h2 id=\"from-helping-wordpress-companies-to-working-on-wordpress-core\">From helping WordPress companies to working on WordPress Core</h2>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><img loading=\"lazy\" width=\"300\" height=\"300\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/02/tonya-with-dog.jpg?resize=300%2C300&#038;ssl=1\" alt=\"Tonya pictured with her dog\" class=\"wp-image-12328\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/02/tonya-with-dog.jpg?w=300&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/02/tonya-with-dog.jpg?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p>Tonya went on to work with big and medium size WordPress companies helping their developers and supporting them in raising their firmsâ€™ leverage with WordPress.</p>\n\n\n\n<p>By late 2020, she knew she wanted to do even more with WordPress.</p>\n\n\n\n<p>In February 2021, Tonya joined an international firm in the ecosystem and began working closely on WordPress Core.</p>\n\n\n\n<p>At that time, WordPress Core was pulling together a new Triage team. Tonya started volunteering on that team to find collaborative solutions, and help others do so. In 2020 for <a href=\"https://wordpress.org/news/2020/12/simone/\">WordPress 5.6 Simone</a>, she became the releaseâ€™s Triage lead, and again for <a href=\"https://make.wordpress.org/core/5-7/\">WordPress 5.7 Esperanza</a>.&nbsp;</p>\n\n\n\n<p>In 2021, she became a Test Team Rep and helped to expand the team and is an advocate for the value of testing and feedback in the release development process.</p>\n\n\n\n<h2 id=\"a-new-successful-chapter-with-wordpress-5-9\">A new, successful chapter with WordPress 5.9</h2>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" width=\"1024\" height=\"480\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/02/WP59-thumbnail-jb.png?resize=1024%2C480&#038;ssl=1\" alt=\"Tonya was one of the notable contributors to the WordPress 5.9 release featured in this picture.\" class=\"wp-image-12329\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/02/WP59-thumbnail-jb.png?resize=1024%2C480&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2022/02/WP59-thumbnail-jb.png?resize=300%2C141&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2022/02/WP59-thumbnail-jb.png?resize=768%2C360&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2022/02/WP59-thumbnail-jb.png?resize=1536%2C719&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2022/02/WP59-thumbnail-jb.png?resize=2048%2C959&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p>Tonyaâ€™s passion for the software and getting people involved in its growth continued. For the WordPress 5.9 release in 2021, she took on the role of both the Core Tech Lead and the Release Coordinator. As this was a big release and included the first major implementation of Full Site Editing, it had many moving parts and hundreds of contributors. She was able to share the skills she had learned in communication and project management from her days streamlining and documenting engineering software and processes.&nbsp;</p>\n\n\n\n<p>In the first 24 hours of WordPress 5.9 landing, it had more than 10 million downloadsâ€”and 17 formally reported bugs.</p>\n\n\n\n<h2 id=\"giving-back-to-open-source\">Giving back to open source</h2>\n\n\n\n<p>Now in what Tonya describes as her third chapter. She said: â€œIâ€™m a very different person from the engineer I used to know. What really matters in this world is when you reach out and make a difference in someoneâ€™s life.â€</p>\n\n\n\n<p>She feels she has found her purpose in this life. â€œIâ€™m on a mission to give back and make a difference. Teaching is how I will do it. And in WordPress I have found my professional home, and I have all this software knowledge that I just want to share.â€</p>\n\n\n\n<h2 id=\"share-the-stories\">Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community.Â Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<h2 id=\"contributors-to-this-feature\">Contributors to this feature</h2>\n\n\n\n<p>Thank you to Tonya Mork (<a href=\'https://profiles.wordpress.org/hellofromtonya/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hellofromtonya</a>) for sharing her story.Â </p>\n\n\n\n<p>Interviews and feature by Abha Thakor (<a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>) and Mary Baum (<a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a>). ReviewedÂ by Chloe Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>), Nalini Thakor (<a href=\'https://profiles.wordpress.org/nalininonstopnewsuk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nalininonstopnewsuk</a>), Meher Bala (<a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>), and Anjana Vasan (<a href=\'https://profiles.wordpress.org/anjanavasan/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>anjanavasan</a>). Photo editing Reyez MartÃ­nez (<a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>) and Jean Baptiste Audras (<a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a>). </p>\n\n\n\n<p><em>Thanks to Josepha Haden Chomphosy&nbsp;(@<a href=\"https://profiles.wordpress.org/chanthaboune/\">chanthaboune</a>) and Topher DeRosia (<a href=\"https://profiles.wordpress.org/topher1kenobe/\">@topher1kenobe</a>) and others for their support&nbsp;</em>of this initiative.</p>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\" style=\"grid-template-columns:29% auto\"><figure class=\"wp-block-media-text__media\"><img loading=\"lazy\" width=\"180\" height=\"135\" src=\"https://i1.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&#038;ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published onÂ </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard.Â </em>#HeroPress </p>\n</div></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12151\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 5.9.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2022/02/wordpress-5-9-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Feb 2022 15:49:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12266\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 5.9.1 is now available!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7802:\"\n<p>WordPress 5.9.1 is now available!</p>\n\n\n\n<p>This maintenance release features&nbsp;82 bug fixes in both Core and the block editor.</p>\n\n\n\n<p>WordPress 5.9.1 is a short-cycle maintenance release. The next major release will be version&nbsp;<a href=\"https://make.wordpress.org/core/6.0/\">6.0</a>.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-5.9.1.zip\">download WordPress 5.9.1 from WordPress.org</a>, or visit your Dashboard&nbsp;â†’ Updates and click &#8220;Update Now&#8221;.</p>\n\n\n\n<p>If you have sites that support automatic background updates, theyâ€™ve already started the update process.</p>\n\n\n\n<p>For more information, browse the <a href=\"https://make.wordpress.org/core/2022/02/16/wordpress-5-9-1-rc-1/\">full list of both Trac and GitHub changes in the release candidate post</a>, or check out the&nbsp;<a href=\"https://wordpress.org/support/wordpress-version/version-5-9-1/\">version 5.9.1 HelpHub documentation page</a>.</p>\n\n\n\n<h2 id=\"thanks-and-props\">Thanks and props!</h2>\n\n\n\n<p>The 5.9.1 release was led by&nbsp;<a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>&nbsp;and&nbsp;<a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>.</p>\n\n\n\n<p>Special props to <a href=\'https://profiles.wordpress.org/sergeybiryukov/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sergeybiryukov</a> for running mission control.</p>\n\n\n\n<p>Thank you to everyone who helped make WordPress 5.9.1 happen:</p>\n\n\n\n<p class=\"is-style-wporg-props-medium alignfull\"><a href=\"https://profiles.wordpress.org/aljullu/\">Albert JuhÃ© Lluveras</a>, <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">alexstine</a>, <a href=\"https://profiles.wordpress.org/oandregal/\">AndrÃ©</a>, <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/madeinua/\">ArteMa</a>, <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a>, <a href=\"https://profiles.wordpress.org/blogaid/\">BlogAid</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/critterverse/\">Channing Ritter</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David BiÅˆovec</a>, <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/eddystile/\">Eddy</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian KÃ¤gy</a>, <a href=\"https://profiles.wordpress.org/azouamauriac/\">Flinim Asso</a>, <a href=\"https://profiles.wordpress.org/gadhiyaravi/\">gadhiyaravi</a>, <a href=\"https://profiles.wordpress.org/revgeorge/\">George Hotelling</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">glendaviesnz</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg ZiÃ³Å‚kowski</a>, <a href=\"https://profiles.wordpress.org/ianatkins/\">ianatkins</a>, <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a>, <a href=\"https://profiles.wordpress.org/ironprogrammer/\">ironprogrammer</a>, <a href=\"https://profiles.wordpress.org/itsamoreh/\">itsamoreh</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a>, <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen A.</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a>, <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/linux4me2/\">linux4me2</a>, <a href=\"https://profiles.wordpress.org/pyrobd/\">Lukman Nakib</a>, <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a>, <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/alshakero/\">Omar Alshaker</a>, <a href=\"https://profiles.wordpress.org/pls78/\">Paolo L. Scala</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/malinevskiy/\">Pavlo</a>, <a href=\"https://profiles.wordpress.org/petaryoast/\">Petar RatkoviÄ‡</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/walbo/\">Petter WalbÃ¸ JohnsgÃ¥rd</a>, <a href=\"https://profiles.wordpress.org/johnstonphilip/\">Phil Johnston</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a>, <a href=\"https://profiles.wordpress.org/ravipatel/\">ravipatel</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rolfsiebers/\">Rolf Siebers</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/stacimc/\">stacimc</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/mahype/\">Sven Wagener</a>, <a href=\"https://profiles.wordpress.org/staatic/\">Team Staatic</a>, <a href=\"https://profiles.wordpress.org/tnolte/\">Tim Nolte</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">webcommsat AbhaNonStopNewsUK</a>, <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design | Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/antonynz/\">wpcharged</a>, <a href=\"https://profiles.wordpress.org/wpsoul/\">wpsoul</a>, <a href=\"https://profiles.wordpress.org/dolphingg/\">Yunus ErtuÄŸrul</a>, and <a href=\"https://profiles.wordpress.org/rafiahmedd/\">Rafi Ahmed</a>.</p>\n\n\n\n<p>Thanks to <a href=\'https://profiles.wordpress.org/estelaris/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>estelaris</a>, <a href=\'https://profiles.wordpress.org/pbiron/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>pbiron</a>, <a href=\'https://profiles.wordpress.org/ironprogrammer/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>ironprogrammer</a>, <a href=\'https://profiles.wordpress.org/bph/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>bph</a>, <a href=\'https://profiles.wordpress.org/abhanonstopnewsuk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>abhanonstopnewsuk</a> and <a href=\'https://profiles.wordpress.org/threadi/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>threadi</a> for their help to test the release package.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12266\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WP Briefing: Episode 25: Five Cents on Five for the Future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wordpress.org/news/2022/02/episode-25-five-cents-on-five-for-the-future/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 Feb 2022 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=12288\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:450:\"In this twenty-fifth episode of the WordPress Briefing, Executive Director, Josepha Haden Chomphosy discusses future-proofing the WordPress project with the Five for the Future pledge. Have a question you&#8217;d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording. Credits Editor:&#160;Dustin Hartzler Logo:&#160;Beatriz Fialho Production:&#160;ChloÃ© Bringmann &#38; Santana Inniss Song: [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/02/WP-Briefing-025.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:10286:\"\n<p>In this twenty-fifth episode of the WordPress Briefing, Executive Director, Josepha Haden Chomphosy discusses future-proofing the WordPress project with the Five for the Future pledge. </p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 id=\"credits\">Credits</h2>\n\n\n\n<ul><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<a href=\"https://profiles.wordpress.org/cbringmann/\">ChloÃ© Bringmann</a> &amp; <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2 id=\"references\">References</h2>\n\n\n\n<ul><li><a href=\"https://ma.tt/2014/09/five-for-the-future/\">Five for the Future</a>, on ma.tt circa 2014</li><li><a href=\"https://www.cambridge.org/core/books/governing-the-commons/A8BB63BC4A1433A50A3FB92EDBBB97D5\">Governing the Commons</a>, Elinor Ostrom</li><li><a href=\"https://wordpress.org/five-for-the-future/files/2022/01/WP-Sponsored-Contributor-Team-White-Paper-Google-Docs.pdf\">Five for the Future White Paper</a></li><li><a href=\"https://make.wordpress.org/core/2022/02/16/wordpress-6-0-planning-roundup/\">6.0 Planning Roundup</a></li><li><a href=\"https://learn.wordpress.org/course/simple-site-design-with-full-site-editing/\">Part I: Full Site Editing Course</a></li><li><a href=\"https://learn.wordpress.org/course/part-2-personalized-site-design-with-full-site-editing-and-theme-blocks/\">Part II: Full Site Editing Course</a></li><li><a href=\"https://learn.wordpress.org/course/part-3-advanced-site-design-with-full-site-editing-site-editor-templates-and-template-parts/\">Part III: Full Site Eiditing Course</a></li></ul>\n\n\n\n<h2 id=\"transcript\">Transcript</h2>\n\n\n\n<span id=\"more-12288\"></span>\n\n\n\n<p>Episode 25</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:00:00]&nbsp;</strong></p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing. The podcast where you can catch quick explanations of the ideas behind the WordPress open source project. Some insight into the community that supports it and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy &#8211; here we go!</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:00:42]&nbsp;</strong></p>\n\n\n\n<p>I have a non-mailbag mailbag question that I would like to answer for y&#8217;all today. Non-mailbag because no one actually emailed me about it and mailbag because Twitter is basically like a giant mailbag. And I do get a lot of DMS about this particular topic. If you want to send something to my actual WP Briefing mailbag, you can send it to <a href=\"mailto:wpbriefing@worpress.org\">wpbriefing@worpress.org</a>.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:01:06]&nbsp;</strong></p>\n\n\n\n<p>But the question that I frequently get asked in my DMS on Twitter is: what is Five for the Future? It&#8217;s not always that tidy the question, but that still is the question we&#8217;re answering today. So if you take a casual survey of active contributors to the WordPress project, the high-level answer that you&#8217;re likely to get to that question is â€œa way to remind people to give back to the project.â€ Or, if you run in more business-y circles, you might hear that it is an initiative that encourages companies to give back 5% of their resources.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:01:40]&nbsp;</strong></p>\n\n\n\n<p>And both of those answers are true. So a quick mini-history lesson; the original concept of Five for the Future came from Matt Mullenweg in 2014. There&#8217;s a lovely blog post on it that I will link in the notes below, but it was essentially a call to any companies experiencing success with WordPress to contribute back to the project and make sure that the project was a success.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:02:07]&nbsp;</strong></p>\n\n\n\n<p>The initial program then included outreach recognition, et cetera, proposed in 2017 by <a href=\"https://wordpress.org/support/users/liljimmi/\">Tracy Levesque</a> and <a href=\"https://wordpress.org/support/users/iandunn/\">Ian Dunn</a>. Then that was defined and formalized with the help of the WordPress community in 2018. And then, in 2019, we had our first trial run with entire dedicated teams sponsored by companies inside the WordPress ecosystem.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:02:36]&nbsp;</strong></p>\n\n\n\n<p>So that&#8217;s the mini-history lesson chronology of this program. The intentions that informed the work of building the program in 2017 have become a bit lost to the ages. So I&#8217;m here to share it with you. The basic heart and soul of the Five for the Future program is to make sure that there is a way to refresh the commons of the WordPress community and ecosystem.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:03:00]&nbsp;</strong></p>\n\n\n\n<p>And as a result, ensure that the common resources of WordPress are available long after we have stopped being available to care for them. If you are familiar with the concept of the tragedy of the commons, Five for the Future was created to help avoid that tragedy. There were two original goals for formalizing the program.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:03:22]&nbsp;</strong></p>\n\n\n\n<p>The first one was to acknowledge companies that participated in Five for the Future by sponsoring contributors to work on the WordPress project. And the second was to motivate more companies to sponsor more volunteers. Either by hiring them and paying them to contribute or by assigning their existing employees to contribute to the WordPress project.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:03:46]&nbsp;</strong></p>\n\n\n\n<p>Of course, it&#8217;s hard to quantify participation and hard to qualify what should be seen as an impactful contribution, which is why when the program was originally created, it was in partnership with team reps and community members who were active at the time. There are many posts around that discuss the next steps for this program.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:04:07]&nbsp;</strong></p>\n\n\n\n<p>And as I&#8217;m looking through them, the next steps revolve around some of the hardest and most important questions that we have to answer as a project and as stewards of open source. Those questions are things like:</p>\n\n\n\n<ul><li>Â How do we remain true to these gloriously subversive values of WordPress and open source while also finding a way to thoughtfully secure our organization&#8217;s future?</li><li>Does contributing without the expectation of reciprocity hold up when we are looking at how to acknowledge contributors who sustain us?</li></ul>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:04:40]&nbsp;</strong></p>\n\n\n\n<p>And if you&#8217;re familiar with Elinor Ostrom&#8217;s award-winning work, Governing the Commons, you may also be wondering how this particular program aligns with her eight principles designed to sustain organizations like ours.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:04:57]&nbsp;</strong></p>\n\n\n\n<p>As an aside to that last question, this particular program does not have all eight principles accounted for, but among WordPress&#8217;s many programs, we do account for most of them. Although imperfectly, as is the way with human beings, that&#8217;s probably a whole episode unto itself, I did want to quickly answer that particular question.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:05:16]&nbsp;</strong></p>\n\n\n\n<p>So to get back to my non-mailbag, mailbag question, if I had to tell you in the span of an elevator ride what Five for the Future was, this would be my answer. <strong>It is a v1 program with a dual goal of boldly declaring the need to refresh the shared resources of WordPress and offering the ways and means for communities and individuals alike to participate in refreshing those resources</strong>.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:05:45]&nbsp;</strong></p>\n\n\n\n<p>If you want to learn more about the Five for the Future initiative, you can check out wordpress.org/5. Like literally just the number five. Or, if you want to learn more about the program that has grown from the Five for the Future initiative, you can check out the white paper that&#8217;s linked in the notes below.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:06:11]&nbsp;</strong></p>\n\n\n\n<p>And that brings us now to our small list of big things. Number one on my small list, the planning post for WordPress 6.0 is out. I&#8217;ve included a link in my massive list of links below. But it includes our best guess at timing, features that we intend to include, and a call for volunteers as well. So if you are looking for ways to give back, that is a clear and immediate option.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:06:38]&nbsp;</strong></p>\n\n\n\n<p>The second thing on the list is if you are a team rep, don&#8217;t forget that we have daylight saving time ending and starting depending on your hemisphere within the month. If you move meetings, if you&#8217;re in a team that moves your meetings, discuss it now so that folks have time to adjust their calendars.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:06:55]&nbsp;</strong></p>\n\n\n\n<p>And the third thing on my small list of big things is that there&#8217;s a suite of Full Site Editing courses that are now available on learn.wordpress.org. I will add that to my giant list of links below, but I encourage you to wander on over and see what all the fuss is about. I think the courses are excellent. They&#8217;re great for folks who don&#8217;t quite know what Full Site Editing is yet, but then also they give you a few intermediate tips and tricks as you&#8217;re getting your legs underneath you.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy [00:07:27]&nbsp;</strong></p>\n\n\n\n<p>So, that my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy. I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12288\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"A New WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2022/02/a-new-wordpress-news/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Feb 2022 17:56:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"Meta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12244\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:385:\"In June 2021, @beafialho in collaboration with @pablohoney floated the idea of giving WordPress News a new look. Today, those ideas become a realityâ€”we&#8217;re excited to share that redesign of WordPress News is live! The new design leans on the aesthetics of jazz, intrinsically connected to WordPress and which ultimately translates its uniqueness, historic significance [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Kelly Hoffman\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5727:\"\n<figure class=\"wp-block-image alignfull size-full\"><img loading=\"lazy\" width=\"2560\" height=\"1605\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/02/news_responsive_sizes-scaled.jpg?resize=2560%2C1605&#038;ssl=1\" alt=\"\" class=\"wp-image-12279\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/02/news_responsive_sizes-scaled.jpg?w=2560&amp;ssl=1 2560w, https://i1.wp.com/wordpress.org/news/files/2022/02/news_responsive_sizes-scaled.jpg?resize=300%2C188&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2022/02/news_responsive_sizes-scaled.jpg?resize=1024%2C642&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2022/02/news_responsive_sizes-scaled.jpg?resize=768%2C482&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2022/02/news_responsive_sizes-scaled.jpg?resize=1536%2C963&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2022/02/news_responsive_sizes-scaled.jpg?resize=2048%2C1284&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>In June 2021, <a href=\'https://profiles.wordpress.org/beafialho/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>beafialho</a> in collaboration with <a href=\'https://profiles.wordpress.org/pablohoney/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>pablohoney</a> <a href=\"https://make.wordpress.org/design/2021/06/03/redesign-of-wordpress-org-news/\">floated the idea</a> of giving WordPress News a new look. Today, those ideas become a realityâ€”we&#8217;re excited to share that redesign of <a href=\"https://wordpress.org/news/\">WordPress News</a> is live!</p>\n\n\n\n<p>The new design leans on the aesthetics of jazz, intrinsically connected to WordPress and which ultimately translates its uniqueness, historic significance and future potential. Among other improvements, the new design leaves more space for content and includes new typefaces for better readability. It also uses a color palette intended to reflect the evolving Gutenberg language.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"2560\" height=\"1605\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/02/news_postpages-scaled.jpg?resize=2560%2C1605&#038;ssl=1\" alt=\"\" class=\"wp-image-12260\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/02/news_postpages-scaled.jpg?w=2560&amp;ssl=1 2560w, https://i0.wp.com/wordpress.org/news/files/2022/02/news_postpages-scaled.jpg?resize=300%2C188&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/02/news_postpages-scaled.jpg?resize=1024%2C642&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/02/news_postpages-scaled.jpg?resize=768%2C482&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/02/news_postpages-scaled.jpg?resize=1536%2C963&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2022/02/news_postpages-scaled.jpg?resize=2048%2C1284&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"2560\" height=\"1605\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/02/news_communitypodcast-scaled.jpg?resize=2560%2C1605&#038;ssl=1\" alt=\"\" class=\"wp-image-12262\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/02/news_communitypodcast-scaled.jpg?w=2560&amp;ssl=1 2560w, https://i2.wp.com/wordpress.org/news/files/2022/02/news_communitypodcast-scaled.jpg?resize=300%2C188&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/02/news_communitypodcast-scaled.jpg?resize=1024%2C642&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2022/02/news_communitypodcast-scaled.jpg?resize=768%2C482&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2022/02/news_communitypodcast-scaled.jpg?resize=1536%2C963&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2022/02/news_communitypodcast-scaled.jpg?resize=2048%2C1284&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>The revamp of the WordPress News page includes the header and footer of the page. We also shipped those two global elements to all pages of WordPress.org. However, thereâ€™s more work to do within the header to improve the information architecture. This new design is just the first, small step to modernize and improve the site iteratively. Any further discussion on future redesigns will occur in the <a href=\"http://wordpress.slack.com\">#design channel on Slack</a>.</p>\n\n\n\n<figure class=\"wp-block-image alignfull size-full\"><img loading=\"lazy\" width=\"2560\" height=\"1605\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/02/news_mobile_menu-scaled.jpg?resize=2560%2C1605&#038;ssl=1\" alt=\"\" class=\"wp-image-12263\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/02/news_mobile_menu-scaled.jpg?w=2560&amp;ssl=1 2560w, https://i1.wp.com/wordpress.org/news/files/2022/02/news_mobile_menu-scaled.jpg?resize=300%2C188&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2022/02/news_mobile_menu-scaled.jpg?resize=1024%2C642&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2022/02/news_mobile_menu-scaled.jpg?resize=768%2C482&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2022/02/news_mobile_menu-scaled.jpg?resize=1536%2C963&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2022/02/news_mobile_menu-scaled.jpg?resize=2048%2C1284&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Take a look around and subscribe to WordPress News if you havenâ€™t already. If you see something in the design that doesnâ€™t look right, please submit an issue on <a href=\"https://github.com/WordPress/wporg-news-2021/\">GitHub</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12244\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:58:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"WP Briefing: Episode 24: Three Goals in 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wordpress.org/news/2022/02/episode-24-three-goals-in-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 07 Feb 2022 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=12176\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:413:\"In episode 24 of the WordPress Briefing, the Project&#8217;s Executive Director reviews three big-picture goals for the year: Increased Gutenberg adoption, support of all open source alternatives, and stewarding the open source ethos. Have a question you&#8217;d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording. Credits Editor:&#160;Dustin Hartzler [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/02/WP-Briefing-024.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9160:\"\n<p>In episode 24 of the WordPress Briefing, the Project&#8217;s Executive Director reviews three big-picture goals for the year: Increased Gutenberg adoption, support of all open source alternatives, and stewarding the open source ethos.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 id=\"credits\">Credits</h2>\n\n\n\n<ul><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<a href=\"https://profiles.wordpress.org/cbringmann/\">ChloÃ© Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2 id=\"references\">References</h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/project/2022/01/21/big-picture-goals-2022/\">Big Picture Goals 2022</a></li><li><a href=\"https://make.wordpress.org/core/2022/01/26/preliminary-roadmap-for-6-0/\">Preliminary Roadmap for 6.0</a> (Gutenberg Phase 2)</li><li><a href=\"https://wordpress.org/news/2021/06/a-new-design-is-coming-to-wordpress-news/\">A New News Design</a></li><li><a href=\"https://wpmake.tumblr.com/\">Making WordPress</a>: Unofficial aggregator for all&nbsp;<a href=\"https://make.wordpress.org/\">Making WordPress blogs</a></li></ul>\n\n\n\n<h2 id=\"transcript\">Transcript</h2>\n\n\n\n<span id=\"more-12176\"></span>\n\n\n\n<h2 id=\"episode-24\">Episode 24</h2>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:00</p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project. Some insight into the community that supports it and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:07</p>\n\n\n\n<p>A couple of weeks ago, I published a post about the big picture goals for the WordPress project in 2022. As I was thinking through our planned releases for the year and looking out toward what would spell success for WordPress over the next three years, three things really lined up in both sets of answers for me.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:23</p>\n\n\n\n<p>I provided some detail on how we can work toward these goals in the post, which I will link for you in the show notes, but I also wanted to take some time to explain why I feel we have to work toward these goals this year. So these all build on one another. To refresh your memory of the three big focuses, they are one to drive adoption of the new editor in WordPress, support open source alternatives for site building necessities, and three, open source stewardship.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:52</p>\n\n\n\n<p>So the first one; is driving the adoption of the new WordPress editor. Early on in the start of the Gutenberg Project, folks could not go two days without hearing me talk about the phases of adoption and how those line up with the phases of Gutenberg, and who would need our support the most in each of those phases.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:09</p>\n\n\n\n<p>I have always believed that what we would be shipping at this point in our project would prove the plausible promise of what we were doing in phase one. That&#8217;s definitely what I&#8217;m seeing from what was shipped in 5.9, as well as what we plan to ship in May with 6.0. And the people who need the most support right now are absolutely our users, your clients, no matter whether they were not keeping up with WordPress developments or simply were waiting to see what all the fuss was about.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:37</p>\n\n\n\n<p>There will be people who look to you as someone who has been here a while to help them make sense of what they&#8217;re seeing. And what I find so exciting about this adoption, sort of, work in the WordPress project is that this is the time when we as practitioners of WordPress, no matter whether you are a designer or a developer or builder, business coach. This is the time when we get to guide others through the hardest parts of our learning processes.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:07</p>\n\n\n\n<p>The process of helping people to learn new technologies relies not only on your hard-won expertise but also on the belief that the future is worth fighting for. Enabling someoneâ€™s success is an investment in the future and investment for that person or for WordPress or your community. All investments are welcome here.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:28</p>\n\n\n\n<p>Fortunately, table stakes are just that you care. And speaking of future investments, the second focus is open source alternatives for site building necessities. So things like images, forms, stores, themes, etc. It literally just things you need to build a site. I would like to start by saying that I am completely aware of the fact that 99% of WordPress users will never care about open source freedoms and philosophies in the same way that WordPress maintainers and contributors care about open source freedoms and philosophies.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:04</p>\n\n\n\n<p>You could substitute the name of any other open source project right there, and the statement would still be true. And yet, I will always believe that people should have the rights and freedoms that open source brings to them even if they do not know they are there. And so it makes all the sense in the world to me that as a project and open source community, we should strive to make choosing Open Source as easy as possible.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:33</p>\n\n\n\n<p>And finally, open source stewardship is one of the focuses for this year. This one is obviously about supporting open source as a concept and maintaining WordPress as a project. But I also think that it is relevant to our current global circumstances. Open Source suddenly became very visible to the public eye last year following the Log4J vulnerability, and ever since then, I&#8217;ve been hearing consistent concern over how We make sure that WordPress is sustainable moving into the future. Fortunately, this is a topic that&#8217;s near and dear to my heart. And I have been delighted to see so many community members bringing that conversation to the forefront.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:14</p>\n\n\n\n<p>There is a lot that is done in the WordPress project to keep us from the tragedy of the commons. But that work honestly never ends. Not only does it not end, but as we get bigger, there is more and more that we can and should be doing to keep us around for the long term. And, of course, for the keen readers of my posts, there&#8217;s a bonus focus.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:39</p>\n\n\n\n<p>The bonus focus is, of course, that WordPress turns 20 years old next year. This year, we will also be seeing some preparatory work for that major milestone as well.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:56</p>\n\n\n\n<p>So that brings us today to our small list of big things. There is a redesign of the News Page coming. We&#8217;ve been talking about this over on make.wordpress.org/design for a bit since like June of last year or something. But it&#8217;s coming in the next few weeks. I&#8217;ll share a link to the GitHub repo in case anyone has any specific things that they see as they are reading through all of our many news stories that come out on that particular page. I think it&#8217;s beautiful, and I&#8217;m very excited to take a look at it.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:30</p>\n\n\n\n<p>The second thing is that planning is underway for WordPress 6.0; that release that we&#8217;re doing in May. I&#8217;ll add the project page link to the show notes. I&#8217;ve had a few raised hands for that release squad. But if you&#8217;re interested in participating in the release, I encourage you to keep an eye out on make.wordpress.org/core for updates and any news about how to get involved.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:53</p>\n\n\n\n<p>And my third thing is actually that, in general, there are a lot of opportunities to contribute right now. There are discussions about projects, goals, and dreams happening all over the place. I&#8217;ll link in the show notes below the unofficial project â€œfirehoseâ€ where you can see all the headlines and quickly find discussions that might be interesting to you.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>07:18</p>\n\n\n\n<p>And that, my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12176\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"The Month in WordPress â€“ January 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2022/02/the-month-in-wordpress-january-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Feb 2022 19:41:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12180\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:335:\"There are a few significant moments in the history of the WordPress project. January 2022 is one of them, with the release of WordPress 5.9! But thatâ€™s not all. Read on to learn more about the latest updates and achievements from the community. WordPress 5.9 JosÃ©phine is here Meet WordPress 5.9 JosÃ©phine. Named in honor [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Anjana Vasan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:12751:\"\n<p>There are a few significant moments in the history of the WordPress project. January 2022 is one of them, with the release of WordPress 5.9! But thatâ€™s not all. Read on to learn more about the latest updates and achievements from the community.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 id=\"wordpress-5-9-josephine-is-here\">WordPress 5.9 JosÃ©phine is here</h2>\n\n\n\n<p class=\"has-text-align-center\"><img loading=\"lazy\" width=\"405\" height=\"274\" src=\"https://lh3.googleusercontent.com/Iq09sZdu0Npal6XWBF6Bbfqb8AWizWVPCUtCqxgU4T-1E3uWM1bmZ7cDEHA0RJlEaFTPN5jAAXwHfx-x52rIC2Gac55j96fhUSdFlHyEmFtooRM9_NmuLyRJ-_ujotnKAAYzBEBh\"></p>\n\n\n\n<p>Meet <a href=\"https://wordpress.org/news/2022/01/josephine/\">WordPress 5.9 JosÃ©phine</a>. Named in honor of the acclaimed jazz singer, JosÃ©phine Baker, this is one of the much-awaited releases. Version 5.9 brings full site editing to WordPress, among other exciting updates!<strong> </strong><a href=\"https://wordpress.org/download/\"><strong>Download WordPress 5.9</strong></a><strong> and try the new features! </strong><br><br>Check out the <a href=\"https://make.wordpress.org/core/2022/01/10/wordpress-5-9-field-guide/\">WordPress 5.9 Field Guide</a> to learn more. Lastly, everyoneâ€™s invited to participate in a retrospective of the <a href=\"https://make.wordpress.org/core/2022/01/27/wordpress-5-9-simone-retrospective/\">WordPress 5.9 JosÃ©phine</a> release!</p>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>Are you interested in contributing to WordPress core?</strong> Join the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel, follow the <a href=\"https://make.wordpress.org/core/\">Core Team blog</a>, and check out the <a href=\"https://make.wordpress.org/core/handbook/\">team handbook</a>. Also, don&#8217;t miss the Core Teamâ€™s weekly developer chat on Wednesdays at <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=20&amp;min=00&amp;sec=0\">8 PM</a> UTC.</p></blockquote>\n\n\n\n<h2 id=\"gutenberg-releases-versions-12-3-12-4-and-12-5-are-here\">Gutenberg releases: Versions 12.3, 12.4, and 12.5 are here</h2>\n\n\n\n<p>The Core Team launched three new versions of Gutenberg since last monthâ€™s edition of the Month in WordPress.</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/02/03/whats-new-in-gutenberg-12-5-february-2nd/\">Gutenberg 12.5</a> brings global styles variations and Query Loop block enhancements, along with the Code Editor view to the Side Editor. Moreover, inserting new buttons is now easier than ever!</li><li><a href=\"https://make.wordpress.org/core/2022/01/19/whats-new-in-gutenberg-12-4-19-january/\">Gutenberg 12.4</a> was released on January 19, 2022. This version includes accessibility improvements, suggestions for assigning categories, keyboard shortcuts for the Site Editor, and more.&nbsp;</li><li><a href=\"https://make.wordpress.org/core/2022/01/05/whats-new-in-gutenberg-12-3-5-january/\">Gutenberg 12.3</a> was released on January 5, 2022. This release brings new blocks, like the Author Name, Comments Next Page, and Comments Previous Page blocks, and many other cool updates!</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>Want to get involved in developing Gutenberg? </strong>Follow <a href=\"https://make.wordpress.org/core/\">the Core Team blog</a>, contribute to Gutenberg on <a href=\"https://github.com/WordPress/gutenberg/\">GitHub</a>, and join the <a href=\"https://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in the <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a>. Follow the <a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">#gutenberg-new</a> tag for details on the latest updates.</p></blockquote>\n\n\n\n<h2 id=\"team-updates-proposals-announcements-and-more-for-2022\">Team updates: Proposals, announcements, and more for 2022</h2>\n\n\n\n<ul><li>Executive Director Josepha Haden<a href=\"https://make.wordpress.org/core/2022/01/27/proposal-2022-major-release-timing/\"> shared a proposal</a> on 2022 major release timing.Â </li><li>In the <a href=\"https://wordpress.org/news/2022/02/episode-24-three-goals-in-2022/\">latest episode of WP Briefing</a>, Josepha Haden Comphosy reviews the <a href=\"https://make.wordpress.org/updates/2022/01/21/our-three-big-ideas-for-2022/\">three major areas of focus</a> for the WordPress project in 2022. She also shared the <a href=\"https://make.wordpress.org/project/2022/01/21/big-picture-goals-2022/\">big-picture goals for 2022</a>.</li><li>The Core Team <a href=\"https://make.wordpress.org/core/2022/01/31/ensuring-proper-attribution-for-contributions-to-wordpress-on-github/\">made a proposal</a> regarding proper attributions for contributions to WordPress on GitHub. Although the proposal has since then been withdrawn, it&#8217;s still a discussion and comments are welcome.</li><li>Check out the <a href=\"https://make.wordpress.org/core/2022/01/26/preliminary-roadmap-for-6-0/\">preliminary roadmap</a> for WordPress 6.0 (Gutenberg Phase Two).Â </li><li>Core Team members <a href=\"https://make.wordpress.org/core/2022/01/26/proposed-improvements-to-the-core-editor-chat-agenda-and-format/\">proposed improvements</a> to the Core Editor chat agenda and format.Â </li><li>The Accessibility Team made some <a href=\"https://make.wordpress.org/accessibility/2022/01/22/accessibility-team-meeting-notes-january-21-2022/\">major goal proposals for WordPress 6.0</a>.</li><li>The Polyglots Team shared a proposal for a <a href=\"https://make.wordpress.org/polyglots/2022/02/01/proposal-milestone-template-for-polyglots-locale-teams/\">milestone template for polyglots locale teams</a>.</li><li>The <a href=\"https://make.wordpress.org/polyglots/2022/01/20/polyglots-monthly-newsletter-january-2022/\">January 2022 edition</a> of the Polyglots monthly newsletter is out!</li><li>The Community Team shared an <a href=\"https://make.wordpress.org/community/2022/02/03/open-invitation-diverse-speaker-training-group-wpdiversity-zoom-call/\">open invitation for the Diverse Speaker Training group</a> Zoom call.</li><li>Although the WordPress Photo Directory hasnâ€™t fully launched yet, you can now <a href=\"https://wordpress.org/photos/submit/\">submit your images</a>. You can also contribute in other ways, as thereâ€™s <a href=\"https://make.wordpress.org/meta/2022/01/13/wordpress-photo-directory-call-for-volunteers/\">currently a call for volunteers</a>.</li><li>Openverse has now a redesigned user interface and includes support for audio files. Check out <a href=\"https://make.wordpress.org/openverse/2022/01/25/everything-you-need-to-know-about-openverse-and-the-wordpress-photo-directory/\">this post</a> to learn what&#8217;s new.</li><li>The Community Team will be hosting <a href=\"https://make.wordpress.org/community/2022/02/02/community-team-goals-2022-open-discussion-sessions/\">open discussion sessions</a> to collaborate on its goals for 2022.Â </li><li>The January 2022 edition of the <a href=\"https://make.wordpress.org/community/2022/01/14/meetup-organizer-newsletter-january-2022/\">Meetup Organizer Newsletter</a> was published.</li><li>The Community Team shared a <a href=\"https://make.wordpress.org/community/2022/01/10/proposal-mandatory-safety-measures-for-in-person-wordpress-events-in-2022/\">proposal for mandatory safety measures</a> for in-person WordPress events taking place this year.</li><li>The Training Team published its <a href=\"https://make.wordpress.org/training/2022/02/02/february-2022-team-sprint/\">February 2022 Team Sprint</a>.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>Take the course on Learn WordPress to </strong><a href=\"https://learn.wordpress.org/course/simple-site-design-with-full-site-editing/\"><strong>learn about the full site editing features</strong></a><strong> in WordPress 5.9!&nbsp; Also, help spread the word about </strong><a href=\"https://learn.wordpress.org/social-learning/\"><strong>social learning spaces</strong></a><strong> on </strong><a href=\"https://twitter.com/WordPress/status/1487180438347128836\"><strong>Twitter</strong></a><strong>!</strong></p></blockquote>\n\n\n\n<h2 id=\"feedback-testing-requests-share-your-thoughts-on-wordpress-5-9-josephine\">Feedback/Testing requests: Share your thoughts on WordPress 5.9 JosÃ©phine</h2>\n\n\n\n<ul><li>Thereâ€™s currently a call for testing <a href=\"https://make.wordpress.org/mobile/2022/01/27/call-for-testing-wordpress-for-android-19-1/\">WordPress for Android 19.1</a> and <a href=\"https://make.wordpress.org/mobile/2022/01/24/call-for-testing-wordpress-for-ios-19-1/\">iOS 19.1</a>, along with <a href=\"https://make.wordpress.org/mobile/2022/01/10/call-for-testing-wordpress-for-android-19-0/\">Android 19.0</a> and iOS 19.0.</li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><a href=\"https://forms.gle/Hf7E2JJokfnNLprG7\"><strong>Share your feedback</strong></a><strong> on the release of WordPress 5.9 JosÃ©phine.</strong></p></blockquote>\n\n\n\n<h2 id=\"wordcamp-europe-2022-wants-volunteers-photographers-and-media-partners\">WordCamp Europe 2022 wants volunteers, photographers and media partners</h2>\n\n\n\n<ul><li>WordCamp Birmingham, Alabama has been postponed until April or May.</li><li>The WordPress Foundation <a href=\"https://wordpressfoundation.org/news/2022/what-is-the-wordpress-foundation-and-why-does-it-exist/\">published a post</a> explaining more about the nonprofitâ€™s mission and why it exists.</li><li>Donâ€™t miss the following upcoming WordCamps:Â <ul><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e8-1f1ff.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://prague.wordcamp.org/2022/\">WordCamp Prague</a>, Switzerland on FebruaryÂ  26, 2022 (online)</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e8-1f1ed.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><a href=\"https://geneve.wordcamp.org/2022/\"> WordCamp GenÃ¨ve</a>, Switzerland on April 9, 2022 (in person)</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ec-1f1f7.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://central.wordcamp.org/wordcamps/wordcamp-athens-attica-greece-2022/\">WordCamp Athens</a>, Greece between April 9 and 10, 2022 (in person)</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e6-1f1f9.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://vienna.wordcamp.org/2022/\">WordCamp Vienna</a>, Austria from April 23 to 24, 2022 (in person)</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1fa.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://europe.wordcamp.org/2022/\">WordCamp Europe</a> in Porto, Portugal from June 2 to 4, 2022 (in person)</li><li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://us.wordcamp.org/2022/\">WordCamp US</a> in San Diego, CA USA from September 9-11, 2022 (in person)</li></ul></li></ul>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center\"><p><strong>WordCamp Europe 2022 opened a new call for </strong><a href=\"https://europe.wordcamp.org/2022/join-the-wceu-volunteers-team/\"><strong>volunteers</strong></a><strong>, </strong><a href=\"https://europe.wordcamp.org/2022/capture-wceu-on-camera/\"><strong>photographers</strong></a><strong>, and </strong><a href=\"https://europe.wordcamp.org/2022/join-us-as-a-media-partner/\"><strong>media partners</strong></a><strong>!</strong></p></blockquote>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><strong><em>Have a story that we could include in the next â€˜Month in WordPressâ€™ post? Let us know by filling out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this form</em></strong></a><strong><em>.</em></strong></p>\n\n\n\n<p><em>The following folks contributed to January 2022â€™s Month in WordPress: </em><a href=\'https://profiles.wordpress.org/anjanavasan/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>anjanavasan</a><em> </em><a href=\'https://profiles.wordpress.org/harishanker/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>harishanker</a><em> </em><a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a><em> </em><a href=\"https://profiles.wordpress.org/lmurillom/\">@lmurillom</a> <em><a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a> andÂ <a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">@nalininonstopnewsuk</a></em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12180\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"WordPress 5.9 â€œJosephineâ€\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/news/2022/01/josephine/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Jan 2022 16:17:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"5.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12089\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WordPress 5.9 is available thanks to more than 600 contributors who helped make it happen.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:64520:\"\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"1024\" height=\"694\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/01/5-9-inline-v2.png?resize=1024%2C694&#038;ssl=1\" alt=\"\" class=\"wp-image-12139\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/01/5-9-inline-v2.png?resize=1024%2C694&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2022/01/5-9-inline-v2.png?resize=300%2C203&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2022/01/5-9-inline-v2.png?resize=768%2C521&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2022/01/5-9-inline-v2.png?resize=1536%2C1042&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2022/01/5-9-inline-v2.png?resize=2048%2C1389&amp;ssl=1 2048w, https://i1.wp.com/wordpress.org/news/files/2022/01/5-9-inline-v2.png?w=3000&amp;ssl=1 3000w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2 id=\"welcome-to-josephine\">Welcome to JosÃ©phine!</h2>\n\n\n\n<p>Introducing 5.9, â€œJosÃ©phineâ€. Named in honor of acclaimed international jazz singer JosÃ©phine Baker, this latest, most versatile WordPress release is here: <a href=\"https://wordpress.org/download/\">download it</a> or update it directly from your dashboard. <br><br>As a lifelong civil rights campaigner, JosÃ©phine Baker believed that all people could live in harmony together, just as different instruments in a jazz band blend together to make a whole piece. Turn on a playlist from your favorite music service and enjoy her famous renditions of â€œYou are the greatest loveâ€, â€œSans Amourâ€, and â€œLove is a Dreamerâ€ as you discover all the features of this brand-newÂ WordPress release.Â </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 id=\"full-site-editing-is-here\">Full site editing is here.</h2>\n\n\n\n<p>It puts you in control of your whole site, right in the WordPress Admin.</p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"1204\" height=\"903\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-1.png?resize=1204%2C903&#038;ssl=1\" alt=\"\" class=\"wp-image-12101\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-1.png?w=1204&amp;ssl=1 1204w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-1.png?resize=300%2C225&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-1.png?resize=1024%2C768&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-1.png?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 id=\"say-hello-to-twenty-twenty-two\">Say hello to Twenty Twenty-Two.</h3>\n\n\n\n<p>And say hello to the first default block theme in the history of WordPress. This is more than just a new default theme. Itâ€™s a brand-new way to work with WordPress themes.</p>\n\n\n\n<p><a href=\"https://wordpress.org/support/article/block-themes/\">Block themes</a> put a wide array of visual choices directly in your hands, from color schemes and font combinations to page templates and image filters, all from the <a href=\"https://wordpress.org/support/article/site-editor/\">Site Editor</a>. So in one place, you can give Twenty Twenty-Two the same look and feel as your organizationâ€™s other materialsâ€”or take your siteâ€™s look in another direction.</p>\n\n\n\n<p>You already have the Twenty Twenty-Two themeâ€”it came installed with WordPress 5.9. You will find it with your other installed themes.</p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"1204\" height=\"903\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-2.png?resize=1204%2C903&#038;ssl=1\" alt=\"\" class=\"wp-image-12102\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-2.png?w=1204&amp;ssl=1 1204w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-2.png?resize=300%2C225&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-2.png?resize=1024%2C768&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-2.png?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 id=\"your-personal-paintbox-awaits\">Your personal paintbox awaits</h3>\n\n\n\n<p>Twenty Twenty-Two is not the only theme built for full site editing. More block themes are in the Themes directory, and the number will grow.&nbsp;</p>\n\n\n\n<p>When you use any of those new themes, you no longer need the Customizer. Instead, you have all the power of the Styles interface inside the Site Editor. Just as in Twenty Twenty-Two, you build your siteâ€™s look and feel there, with the tools you need for the job in a fluid interface that practically comes alive in your hands.</p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"1204\" height=\"903\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/01/5-9-release-3.png?resize=1204%2C903&#038;ssl=1\" alt=\"\" class=\"wp-image-12103\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/01/5-9-release-3.png?w=1204&amp;ssl=1 1204w, https://i0.wp.com/wordpress.org/news/files/2022/01/5-9-release-3.png?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/01/5-9-release-3.png?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/01/5-9-release-3.png?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 id=\"the-navigation-block\">The Navigation block</h3>\n\n\n\n<p>Blocks come to site navigation, the heart of user experience.</p>\n\n\n\n<p>The new Navigation block gives you the power to choose: an always-on responsive menu or one that adapts to your userâ€™s screen size. And your choices are remembered! In 5.9, the block saves menus as custom post types, which get saved to the database.</p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"more-improvements-and-updates\">More improvements and updates</h2>\n\n\n\n<p>Do you love to blog? New tweaks to the publishing flow help you say more, faster.</p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"1204\" height=\"903\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/01/5-9-release-5.png?resize=1204%2C903&#038;ssl=1\" alt=\"\" class=\"wp-image-12105\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2022/01/5-9-release-5.png?w=1204&amp;ssl=1 1204w, https://i1.wp.com/wordpress.org/news/files/2022/01/5-9-release-5.png?resize=300%2C225&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2022/01/5-9-release-5.png?resize=1024%2C768&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2022/01/5-9-release-5.png?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 id=\"better-block-controls\">Better block controls</h3>\n\n\n\n<p>WordPress 5.9 features new typography tools, flexible layout controls, and finer control of details like spacing, borders, and moreâ€”to help you get not just the look, but the polish that says you care about details.</p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"1204\" height=\"903\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-4.png?resize=1204%2C903&#038;ssl=1\" alt=\"\" class=\"wp-image-12104\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-4.png?w=1204&amp;ssl=1 1204w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-4.png?resize=300%2C225&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-4.png?resize=1024%2C768&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-4.png?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 id=\"the-power-of-patterns\">The power of patterns</h3>\n\n\n\n<p>The WordPress Pattern Directory is the home of a wide range of block patterns built to save you time and add to your site&#8217;s functionality. And you can edit them as you see fit. Need something different in the header or footer for your theme? Swap it out with a new one in a few clicks.</p>\n\n\n\n<p>With a nearly full-screen view that draws you in to see fine details, the Pattern Explorer makes it easy to compare patterns and choose the one your users need.</p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"1204\" height=\"903\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-6.png?resize=1204%2C903&#038;ssl=1\" alt=\"\" class=\"wp-image-12106\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-6.png?w=1204&amp;ssl=1 1204w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-6.png?resize=300%2C225&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-6.png?resize=1024%2C768&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-6.png?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 id=\"a-revamped-list-view\">A revamped List View</h3>\n\n\n\n<p>In 5.9, the List View lets you drag and drop your content exactly where you want it. Managing complex documents is easier, too: simple controls let you expand and collapse sections as you build your siteâ€”and add HTML anchors to your blocks to help users get around the page.</p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"1204\" height=\"903\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-7.png?resize=1204%2C903&#038;ssl=1\" alt=\"\" class=\"wp-image-12107\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-7.png?w=1204&amp;ssl=1 1204w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-7.png?resize=300%2C225&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-7.png?resize=1024%2C768&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2022/01/5-9-release-7.png?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 id=\"a-better-gallery-block\">A better Gallery block</h3>\n\n\n\n<p>Treat every image in a Gallery Block the same way you would treat it in the Image Block.</p>\n\n\n\n<p>Style every image in your gallery differently, or make them all the same, except for one or two. Or change the layout with drag-and-drop.</p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 id=\"wordpress-5-9-for-developers\">WordPress 5.9 for developers</h2>\n\n\n\n<h3 id=\"theme-json-for-child-themes\">Theme.json for child themes</h3>\n\n\n\n<p>In 5.9, theme.json supports child themes. That means your users can build a child theme right in the WordPress Admin, without writing a single line of code.&nbsp;</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2022/01/04/block-themes-a-new-way-to-build-themes-in-wordpress-5-9/\">This dev note</a> has all the details. Take a look!</p>\n\n\n\n<h3 id=\"block-level-locking\">Block-level locking</h3>\n\n\n\n<p>Now you can lock any block (or a few of them) in a pattern, just by <a href=\"https://make.wordpress.org/core/2022/01/08/locking-blocks-in-wordpress-5-9/\">adding a lock attribute to its settings in block.json</a>â€”leaving the rest of the pattern free for users to adapt to their content.&nbsp;</p>\n\n\n\n<h3 id=\"multiple-stylesheets-in-a-block\">Multiple stylesheets in a block</h3>\n\n\n\n<p>Now you can register more than one stylesheet per block, which lets a given block load only the styles its markup requests, and not a whole sheet. Read the details in this <a href=\"https://make.wordpress.org/core/2021/12/15/using-multiple-stylesheets-per-block/\">dev note</a>.</p>\n\n\n\n<h3 id=\"a-refactored-gallery-block\">A refactored Gallery Block</h3>\n\n\n\n<p>The changes to the Gallery Block listed above are the result of near-complete refactor. Have you built a plugin or theme on the Gallery Block functionality? Be sure you read this <a href=\"https://make.wordpress.org/core/2021/08/20/gallery-block-refactor-dev-note/\">dev note</a>. It tells you what you need to do for compatibility.</p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h3 id=\"learn-more-about-the-new-features-in-5-9\">Learn more about the new features in 5.9</h3>\n\n\n\n<p>Want to dive into 5.9 but donâ€™t know where to start? Check out this free course about <a href=\"https://learn.wordpress.org/course/simple-site-design-with-full-site-editing/\">Simple Site Design</a> from <a href=\"https://learn.wordpress.org/\">Learn WordPress</a>. There are a variety of learning materials including short how-to video tutorials and resources on new features in WordPress 5.9, with much more planned.</p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h3 id=\"check-the-field-guide-for-more\">Check the Field Guide for more!</h3>\n\n\n\n<p>Check out the latest version of the WordPress Field Guide. It has lots of useful information with links to detailed developer notes to support you building in WordPress for everyone you serve. <a href=\"https://make.wordpress.org/core/2022/01/10/wordpress-5-9-field-guide/\">WordPress 5.9 Field Guide</a>.</p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"the-squad\"><strong>The Squad</strong></h2>\n\n\n\n<p>The WordPress 5.9 release was led by <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>, and supported by this highly enthusiastic release squad:</p>\n\n\n\n<ul><li>Release Lead: <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a></li><li>Core Tech and Release Coordinator: <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a></li><li>Triage Leads: <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a> and <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a></li><li>Editor Tech: <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> and <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a></li><li>Theme Leads: <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> and <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a></li><li>Technical Writer: <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a></li><li>Documentation Leads: <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a> and <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a></li><li>Marketing &amp; Communications Leads: <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a>, and <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a></li><li>Test Leads: <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a> and <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a></li></ul>\n\n\n\n<p>WordPress 5.9 also reflects the hard work of 624 generous volunteer contributors. Collaboration occurred on <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=5.9&amp;group=component&amp;col=id&amp;col=summary&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=priority\">370 tickets on Trac</a> and more than <a href=\"https://github.com/WordPress/gutenberg/compare/v10.8.0...v11.9.0\">1900 pull requests on GitHub</a>.</p>\n\n\n<p class=\"is-style-wporg-props-long alignfull\"><a href=\"https://profiles.wordpress.org/2linctools/\">2linctools</a> Â· <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a> Â· <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> Â· <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a> Â· <a href=\"https://profiles.wordpress.org/abesell132/\">abesell132</a> Â· <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> Â· <a href=\"https://profiles.wordpress.org/acosmin/\">acosmin</a> Â· <a href=\"https://profiles.wordpress.org/wpmudev-support8/\">Adam - WPMU DEV Support</a> Â· <a href=\"https://profiles.wordpress.org/bosconiandynamics/\">Adam Bosco</a> Â· <a href=\"https://profiles.wordpress.org/adam3128/\">Adam Morgan</a> Â· <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> Â· <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</a> Â· <a href=\"https://profiles.wordpress.org/addiestavlo/\">Addie</a> Â· <a href=\"https://profiles.wordpress.org/aadilali/\">Adil Ali</a> Â· <a href=\"https://profiles.wordpress.org/aduth/\">aduth</a> Â· <a href=\"https://profiles.wordpress.org/aezazshekh/\">Aezaz Shekh</a> Â· <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a> Â· <a href=\"https://profiles.wordpress.org/ajotka/\">ajotka</a> Â· <a href=\"https://profiles.wordpress.org/soniakash/\">Akash Soni</a> Â· <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a> Â· <a href=\"https://profiles.wordpress.org/atachibana/\">Akira Tachibana</a> Â· <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a> Â· <a href=\"https://profiles.wordpress.org/alanjacobmathew/\">Alan Jacob Mathew</a> Â· <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juh&#233; Lluveras</a> Â· <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a> Â· <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> Â· <a href=\"https://profiles.wordpress.org/alexvorn2/\">Alexandru Vornicescu</a> Â· <a href=\"https://profiles.wordpress.org/alexeydemidov/\">alexeydemidov</a> Â· <a href=\"https://profiles.wordpress.org/alexislloyd/\">Alexis Lloyd</a> Â· <a href=\"https://profiles.wordpress.org/alexstine/\">alexstine</a> Â· <a href=\"https://profiles.wordpress.org/algala/\">AlGala</a> Â· <a href=\"https://profiles.wordpress.org/aliakseyenkaihar/\">aliakseyenkaihar</a> Â· <a href=\"https://profiles.wordpress.org/firewatch/\">allilevine</a> Â· <a href=\"https://profiles.wordpress.org/almendron/\">almendron</a> Â· <a href=\"https://profiles.wordpress.org/amandariu/\">Amanda Riu</a> Â· <a href=\"https://profiles.wordpress.org/anandau14/\">Anand Upadhyay</a> Â· <a href=\"https://profiles.wordpress.org/nosolosw/\">Andr&#233;</a> Â· <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> Â· <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> Â· <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a> Â· <a href=\"https://profiles.wordpress.org/anevins/\">Andrew Nevins</a> Â· <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a> Â· <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a> Â· <a href=\"https://profiles.wordpress.org/oandregal/\">AndrÃ©</a> Â· <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a> Â· <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a> Â· <a href=\"https://profiles.wordpress.org/andy-schmidt/\">Andy Schmidt</a> Â· <a href=\"https://profiles.wordpress.org/andynick/\">andynick</a> Â· <a href=\"https://profiles.wordpress.org/la-geek/\">Angelika Reisiger</a> Â· <a href=\"https://profiles.wordpress.org/anjanavasan/\">Anjana Vasan</a> Â· <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a> Â· <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a> Â· <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> Â· <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a> Â· <a href=\"https://profiles.wordpress.org/anthonyeden/\">Anthony Eden</a> Â· <a href=\"https://profiles.wordpress.org/paranoia1906/\">Anthony Ledesma</a> Â· <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> Â· <a href=\"https://profiles.wordpress.org/antonisme/\">Antonis Lilis</a> Â· <a href=\"https://profiles.wordpress.org/arena/\">arena</a> Â· <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> Â· <a href=\"https://profiles.wordpress.org/madeinua/\">ArteMa</a> Â· <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a> Â· <a href=\"https://profiles.wordpress.org/ashfame/\">Ashfame</a> Â· <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a> Â· <a href=\"https://profiles.wordpress.org/baelx/\">baelx</a> Â· <a href=\"https://profiles.wordpress.org/allerune/\">Bartlomiej</a> Â· <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a> Â· <a href=\"https://profiles.wordpress.org/beaulebens/\">Beau Lebens</a> Â· <a href=\"https://profiles.wordpress.org/bedas/\">Beda</a> Â· <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> Â· <a href=\"https://profiles.wordpress.org/utz119/\">Benachi</a> Â· <a href=\"https://profiles.wordpress.org/benitolopez/\">benitolopez</a> Â· <a href=\"https://profiles.wordpress.org/rainbowgeek/\">Benjamin Denis</a> Â· <a href=\"https://profiles.wordpress.org/benjamingosset/\">Benjamin Gosset</a> Â· <a href=\"https://profiles.wordpress.org/benjaminanakena/\">benjamin.anakena</a> Â· <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernhard Reiter</a> Â· <a href=\"https://profiles.wordpress.org/bijayyadav/\">Bijay Yadav</a> Â· <a href=\"https://profiles.wordpress.org/binarykitten/\">BinaryKitten</a> Â· <a href=\"https://profiles.wordpress.org/binarymoon/\">binarymoon</a> Â· <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a> Â· <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> Â· <a href=\"https://profiles.wordpress.org/blogaid/\">BlogAid</a> Â· <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a> Â· <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a> Â· <a href=\"https://profiles.wordpress.org/bjorsch/\">Brad Jorsch</a> Â· <a href=\"https://profiles.wordpress.org/bradparbs/\">Brad Parbs</a> Â· <a href=\"https://profiles.wordpress.org/bradleyt/\">Bradley Taylor</a> Â· <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> Â· <a href=\"https://profiles.wordpress.org/bravokeyl/\">bravokeyl</a> Â· <a href=\"https://profiles.wordpress.org/bgoewert/\">Brennan Goewert</a> Â· <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> Â· <a href=\"https://profiles.wordpress.org/rzen/\">Brian Richards</a> Â· <a href=\"https://profiles.wordpress.org/bronsonquick/\">bronsonquick</a> Â· <a href=\"https://profiles.wordpress.org/ribaricplusplus/\">Bruno Ribaric</a> Â· <a href=\"https://profiles.wordpress.org/brylie/\">Brylie Christopher Oxley</a> Â· <a href=\"https://profiles.wordpress.org/icaleb/\">Caleb Burks</a> Â· <a href=\"https://profiles.wordpress.org/calebwoodbridge/\">calebwoodbridge</a> Â· <a href=\"https://profiles.wordpress.org/carepsules/\">carepsules</a> Â· <a href=\"https://profiles.wordpress.org/carike/\">Carike</a> Â· <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> Â· <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos Garcia</a> Â· <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> Â· <a href=\"https://profiles.wordpress.org/cdyerkes/\">cdyerkes</a> Â· <a href=\"https://profiles.wordpress.org/ceyhun0/\">Ceyhun Ozugur</a> Â· <a href=\"https://profiles.wordpress.org/shireling/\">Chad Chadbourne</a> Â· <a href=\"https://profiles.wordpress.org/critterverse/\">Channing Ritter</a> Â· <a href=\"https://profiles.wordpress.org/chiaki/\">Chiaki</a> Â· <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a> Â· <a href=\"https://profiles.wordpress.org/chipsnyder/\">Chip Snyder</a> Â· <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloe Bringmann</a> Â· <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a> Â· <a href=\"https://profiles.wordpress.org/cklosows/\">Chris Klosowski</a> Â· <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a> Â· <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a> Â· <a href=\"https://profiles.wordpress.org/christianztamayo/\">Christian Tamayo</a> Â· <a href=\"https://profiles.wordpress.org/amethystanswers/\">Christina Workman</a> Â· <a href=\"https://profiles.wordpress.org/vimes1984/\">Christopher Churchill</a> Â· <a href=\"https://profiles.wordpress.org/clucasrowlands/\">clucasrowlands</a> Â· <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> Â· <a href=\"https://profiles.wordpress.org/callye/\">Collieth Clarke</a> Â· <a href=\"https://profiles.wordpress.org/collizo4sky/\">Collins Agbonghama</a> Â· <a href=\"https://profiles.wordpress.org/copons/\">Copons</a> Â· <a href=\"https://profiles.wordpress.org/coreyw/\">Corey</a> Â· <a href=\"https://profiles.wordpress.org/cr0ybot/\">Cory Hughart</a> Â· <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a> Â· <a href=\"https://profiles.wordpress.org/craigfrancis/\">craigfrancis</a> Â· <a href=\"https://profiles.wordpress.org/mitogh/\">Crisoforo Gaspar</a> Â· <a href=\"https://profiles.wordpress.org/littlebigthing/\">Csaba (LittleBigThings)</a> Â· <a href=\"https://profiles.wordpress.org/davidszabo/\">D&#225;vid Szab&#243;</a> Â· <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a> Â· <a href=\"https://profiles.wordpress.org/colorful-tones/\">Damon Cook</a> Â· <a href=\"https://profiles.wordpress.org/danfarrow/\">Dan Farrow</a> Â· <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a> Â· <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a> Â· <a href=\"https://profiles.wordpress.org/danielpost/\">Daniel Post</a> Â· <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> Â· <a href=\"https://profiles.wordpress.org/chthnc/\">Daniel Shaw</a> Â· <a href=\"https://profiles.wordpress.org/danieldudzic/\">danieldudzic</a> Â· <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a> Â· <a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a> Â· <a href=\"https://profiles.wordpress.org/dariak/\">Daria</a> Â· <a href=\"https://profiles.wordpress.org/daschmi/\">Daschmi</a> Â· <a href=\"https://profiles.wordpress.org/datagutten/\">datagutten</a> Â· <a href=\"https://profiles.wordpress.org/datainterlock/\">datainterlock</a> Â· <a href=\"https://profiles.wordpress.org/davecpage/\">Dave Page</a> Â· <a href=\"https://profiles.wordpress.org/davidanderson/\">David Anderson</a> Â· <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> Â· <a href=\"https://profiles.wordpress.org/davidbinda/\">David BiÅˆovec</a> Â· <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a> Â· <a href=\"https://profiles.wordpress.org/dgwyer/\">David Gwyer</a> Â· <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> Â· <a href=\"https://profiles.wordpress.org/davidkryzaniak/\">David Kryzaniak</a> Â· <a href=\"https://profiles.wordpress.org/davidmosterd/\">David Mosterd</a> Â· <a href=\"https://profiles.wordpress.org/daviedr/\">David Rozando</a> Â· <a href=\"https://profiles.wordpress.org/dryanpress/\">David Ryan</a> Â· <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> Â· <a href=\"https://profiles.wordpress.org/davidwebca/\">davidwebca</a> Â· <a href=\"https://profiles.wordpress.org/devutpol/\">Deb Nath Utpol</a> Â· <a href=\"https://profiles.wordpress.org/dkarfa/\">Debabrata Karfa</a> Â· <a href=\"https://profiles.wordpress.org/deepaklalwani/\">Deepak Lalwani</a> Â· <a href=\"https://profiles.wordpress.org/denisco/\">Denis Yanchevskiy</a> Â· <a href=\"https://profiles.wordpress.org/dingo_d/\">Denis Å½oljom</a> Â· <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> Â· <a href=\"https://profiles.wordpress.org/dhanendran/\">Dhanendran</a> Â· <a href=\"https://profiles.wordpress.org/dhusakovic/\">dhusakovic</a> Â· <a href=\"https://profiles.wordpress.org/diedeexterkate/\">DiedeExterkate</a> Â· <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> Â· <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> Â· <a href=\"https://profiles.wordpress.org/dlt101/\">dlt101</a> Â· <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a> Â· <a href=\"https://profiles.wordpress.org/donmhico/\">donmhico</a> Â· <a href=\"https://profiles.wordpress.org/codezen8/\">Donna Botti</a> Â· <a href=\"https://profiles.wordpress.org/dontgo2sleep/\">dontgo2sleep</a> Â· <a href=\"https://profiles.wordpress.org/dougwollison/\">Doug Wollison</a> Â· <a href=\"https://profiles.wordpress.org/dpegasusm/\">dpegasusm</a> Â· <a href=\"https://profiles.wordpress.org/raubvogel/\">Dr. Ronny Harbich</a> Â· <a href=\"https://profiles.wordpress.org/dratwas/\">dratwas</a> Â· <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a> Â· <a href=\"https://profiles.wordpress.org/drosmog/\">drosmog</a> Â· <a href=\"https://profiles.wordpress.org/dustinrue/\">dustinrue</a> Â· <a href=\"https://profiles.wordpress.org/seedsca/\">ecotechie</a> Â· <a href=\"https://profiles.wordpress.org/eddystile/\">Eddy</a> Â· <a href=\"https://profiles.wordpress.org/ehtis/\">ehtis</a> Â· <a href=\"https://profiles.wordpress.org/ekojr/\">EkoJR</a> Â· <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella vanÂ Durpe</a> Â· <a href=\"https://profiles.wordpress.org/manooweb/\">Emmanuel Hesry</a> Â· <a href=\"https://profiles.wordpress.org/empatogen/\">empatogen</a> Â· <a href=\"https://profiles.wordpress.org/enchiridion/\">Enchiridion</a> Â· <a href=\"https://profiles.wordpress.org/enej/\">Enej BajgoriÄ‡</a> Â· <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique S&#225;nchez</a> Â· <a href=\"https://profiles.wordpress.org/erayalakese/\">erayalakese</a> Â· <a href=\"https://profiles.wordpress.org/teachlynx/\">Eric Malalel</a> Â· <a href=\"https://profiles.wordpress.org/ethitter/\">Erick Hitter</a> Â· <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a> Â· <a href=\"https://profiles.wordpress.org/etoledo/\">etoledo</a> Â· <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a> Â· <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian K&#228;gy</a> Â· <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a> Â· <a href=\"https://profiles.wordpress.org/faisal03/\">Faisal Alvi</a> Â· <a href=\"https://profiles.wordpress.org/fedepia/\">fedepia</a> Â· <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a> Â· <a href=\"https://profiles.wordpress.org/felipeloureirosantos/\">Felipe Santos</a> Â· <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> Â· <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a> Â· <a href=\"https://profiles.wordpress.org/fpcsjames/\">FPCSJames</a> Â· <a href=\"https://profiles.wordpress.org/piewp/\">fperdaan</a> Â· <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a> Â· <a href=\"https://profiles.wordpress.org/fcolombo/\">Francesco</a> Â· <a href=\"https://profiles.wordpress.org/gadhiyaravi/\">gadhiyaravi</a> Â· <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a> Â· <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a> Â· <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a> Â· <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> Â· <a href=\"https://profiles.wordpress.org/gazchap/\">gazchap</a> Â· <a href=\"https://profiles.wordpress.org/generosus/\">generosus</a> Â· <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a> Â· <a href=\"https://profiles.wordpress.org/revgeorge/\">George Hotelling</a> Â· <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> Â· <a href=\"https://profiles.wordpress.org/georgestephanis/\">George Stephanis</a> Â· <a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a> Â· <a href=\"https://profiles.wordpress.org/gilbitron/\">Gilbert Pellegrom</a> Â· <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a> Â· <a href=\"https://profiles.wordpress.org/goldsounds/\">goldsounds</a> Â· <a href=\"https://profiles.wordpress.org/gkloveweb/\">Govind</a> Â· <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a> Â· <a href=\"https://profiles.wordpress.org/gregrickaby/\">Greg Rickaby</a> Â· <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Zi&#243;Å‚kowski</a> Â· <a href=\"https://profiles.wordpress.org/guillaumeturpin/\">Guillaume TURPIN</a> Â· <a href=\"https://profiles.wordpress.org/priethor/\">H&#233;ctor Prieto</a> Â· <a href=\"https://profiles.wordpress.org/hansjovisyoast/\">Hans-Christiaan Braun</a> Â· <a href=\"https://profiles.wordpress.org/haosun/\">haosun</a> Â· <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh</a> Â· <a href=\"https://profiles.wordpress.org/hasanuzzamanshamim/\">Hasanuzzaman</a> Â· <a href=\"https://profiles.wordpress.org/azhiyadev/\">Hauwa Abashiya</a> Â· <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a> Â· <a href=\"https://profiles.wordpress.org/henrywright/\">Henry Wright</a> Â· <a href=\"https://profiles.wordpress.org/herbmiller/\">herbmiller</a> Â· <a href=\"https://profiles.wordpress.org/hermpheus/\">Herm Martini</a> Â· <a href=\"https://profiles.wordpress.org/herregroen/\">Herre Groen</a> Â· <a href=\"https://profiles.wordpress.org/hilayt24/\">Hilay Trivedi</a> Â· <a href=\"https://profiles.wordpress.org/hirofumi2012/\">hirofumi2012</a> Â· <a href=\"https://profiles.wordpress.org/hitendra-chopda/\">Hitendra Chopda</a> Â· <a href=\"https://profiles.wordpress.org/h71/\">Hossein Farahani</a> Â· <a href=\"https://profiles.wordpress.org/htmgarcia/\">htmgarcia</a> Â· <a href=\"https://profiles.wordpress.org/hudson-atwell/\">Hudson Atwell</a> Â· <a href=\"https://profiles.wordpress.org/hlashbrooke/\">Hugh Lashbrooke</a> Â· <a href=\"https://profiles.wordpress.org/hugod/\">hugod</a> Â· <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a> Â· <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> Â· <a href=\"https://profiles.wordpress.org/ianatkins/\">ianatkins</a> Â· <a href=\"https://profiles.wordpress.org/ianhayes94/\">ianhayes94</a> Â· <a href=\"https://profiles.wordpress.org/ianmjones/\">ianmjones</a> Â· <a href=\"https://profiles.wordpress.org/ignatggeorgiev/\">Ignat Georgiev</a> Â· <a href=\"https://profiles.wordpress.org/ibenic/\">Igor Benic</a> Â· <a href=\"https://profiles.wordpress.org/ilovecats7/\">ilovecats7</a> Â· <a href=\"https://profiles.wordpress.org/infected/\">infected</a> Â· <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a> Â· <a href=\"https://profiles.wordpress.org/ironprogrammer/\">ironprogrammer</a> Â· <a href=\"https://profiles.wordpress.org/iluy/\">Isaac</a> Â· <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> Â· <a href=\"https://profiles.wordpress.org/ismaeld/\">ismaeld</a> Â· <a href=\"https://profiles.wordpress.org/itsamoreh/\">itsamoreh</a> Â· <a href=\"https://profiles.wordpress.org/iulia-cazan/\">Iulia Cazan</a> Â· <a href=\"https://profiles.wordpress.org/jdgrimes/\">J.D. Grimes</a> Â· <a href=\"https://profiles.wordpress.org/jackreichert/\">Jack Reichert</a> Â· <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a> Â· <a href=\"https://profiles.wordpress.org/jakubtyrcha/\">jakub.tyrcha</a> Â· <a href=\"https://profiles.wordpress.org/mcjambi/\">Jam Viet</a> Â· <a href=\"https://profiles.wordpress.org/macmanx/\">James Huff</a> Â· <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> Â· <a href=\"https://profiles.wordpress.org/janthiel/\">Jan Thiel</a> Â· <a href=\"https://profiles.wordpress.org/janwoostendorp/\">janw.oostendorp</a> Â· <a href=\"https://profiles.wordpress.org/jsnjohnston/\">Jason Johnston</a> Â· <a href=\"https://profiles.wordpress.org/evermail/\">Jason R. Johnston</a> Â· <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a> Â· <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a> Â· <a href=\"https://profiles.wordpress.org/jayupadhyay01/\">Jay Upadhyay</a> Â· <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> Â· <a href=\"https://profiles.wordpress.org/teucrium/\">Jean-Philippe</a> Â· <a href=\"https://profiles.wordpress.org/jblz/\">Jeff Bowen</a> Â· <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a> Â· <a href=\"https://profiles.wordpress.org/jeffpaul/\">jeffpaul</a> Â· <a href=\"https://profiles.wordpress.org/jdy68/\">Jenny Dupuy</a> Â· <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a> Â· <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a> Â· <a href=\"https://profiles.wordpress.org/jeremyescott/\">Jeremy Scott</a> Â· <a href=\"https://profiles.wordpress.org/jeremyyip/\">Jeremy Yip</a> Â· <a href=\"https://profiles.wordpress.org/amieiro/\">Jes&#250;s Amieiro</a> Â· <a href=\"https://profiles.wordpress.org/engelen/\">Jesper van Engelen</a> Â· <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a> Â· <a href=\"https://profiles.wordpress.org/jigneshnakrani/\">Jignesh Nakrani</a> Â· <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> Â· <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a> Â· <a href=\"https://profiles.wordpress.org/joegasper/\">joegasper</a> Â· <a href=\"https://profiles.wordpress.org/joelcj91/\">Joel James</a> Â· <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a> Â· <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> Â· <a href=\"https://profiles.wordpress.org/johnillo/\">John Espiritu</a> Â· <a href=\"https://profiles.wordpress.org/johnny5/\">John Godley</a> Â· <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a> Â· <a href=\"https://profiles.wordpress.org/zenithcity/\">john zenith</a> Â· <a href=\"https://profiles.wordpress.org/lwangaman/\">JohnRDOrazio (CLPTE)</a> Â· <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a> Â· <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> Â· <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a> Â· <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a> Â· <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a> Â· <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> Â· <a href=\"https://profiles.wordpress.org/josklever/\">Jos Klever</a> Â· <a href=\"https://profiles.wordpress.org/josephdickson/\">Joseph Dickson</a> Â· <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a> Â· <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a> Â· <a href=\"https://profiles.wordpress.org/jsnajdr/\">jsnajdr</a> Â· <a href=\"https://profiles.wordpress.org/juanruitina/\">Juan Ruiti&#241;a</a> Â· <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> Â· <a href=\"https://profiles.wordpress.org/juhise/\">Juhi Saxena</a> Â· <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a> Â· <a href=\"https://profiles.wordpress.org/junaidbhura/\">Junaid Bhura</a> Â· <a href=\"https://profiles.wordpress.org/nukaga/\">Junko Nukaga</a> Â· <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a> Â· <a href=\"https://profiles.wordpress.org/justindocanto/\">Justin DoCanto</a> Â· <a href=\"https://profiles.wordpress.org/greenshady/\">Justin Tadlock</a> Â· <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a> Â· <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a> Â· <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a> Â· <a href=\"https://profiles.wordpress.org/kallookoo/\">kallookoo</a> Â· <a href=\"https://profiles.wordpress.org/akabarikalpesh/\">Kalpesh Akabari</a> Â· <a href=\"https://profiles.wordpress.org/kaneva/\">kaneva</a> Â· <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a> Â· <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> Â· <a href=\"https://profiles.wordpress.org/kellychoffman/\">Kelly Hoffman</a> Â· <a href=\"https://profiles.wordpress.org/keoshi/\">keoshi</a> Â· <a href=\"https://profiles.wordpress.org/sourav926/\">Keramot UL Islam</a> Â· <a href=\"https://profiles.wordpress.org/kingkero/\">kero</a> Â· <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a> Â· <a href=\"https://profiles.wordpress.org/kevinfodness/\">Kevin Fodness</a> Â· <a href=\"https://profiles.wordpress.org/keyur5/\">keyur5</a> Â· <a href=\"https://profiles.wordpress.org/kharisblank/\">Kharis Sulistiyono</a> Â· <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> Â· <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a> Â· <a href=\"https://profiles.wordpress.org/vdwijngaert/\">Koen Van den Wijngaert</a> Â· <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a> Â· <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a> Â· <a href=\"https://profiles.wordpress.org/kurudrive/\">kurudrive</a> Â· <a href=\"https://profiles.wordpress.org/kwisatz/\">kwisatz</a> Â· <a href=\"https://profiles.wordpress.org/devnel/\">Kyle Nel</a> Â· <a href=\"https://profiles.wordpress.org/kzeni/\">KZeni</a> Â· <a href=\"https://profiles.wordpress.org/lalitjalandhar/\">lalitjalandhar</a> Â· <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a> Â· <a href=\"https://profiles.wordpress.org/laxman-prajapati/\">Laxman Prajapati</a> Â· <a href=\"https://profiles.wordpress.org/leemon/\">leemon</a> Â· <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> Â· <a href=\"https://profiles.wordpress.org/leogermani/\">leogermani</a> Â· <a href=\"https://profiles.wordpress.org/lgladdy/\">Liam Gladdy</a> Â· <a href=\"https://profiles.wordpress.org/liammitchell/\">liammitchell</a> Â· <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a> Â· <a href=\"https://profiles.wordpress.org/linux4me2/\">linux4me2</a> Â· <a href=\"https://profiles.wordpress.org/webaxones/\">Lo&#239;c Antignac</a> Â· <a href=\"https://profiles.wordpress.org/loranrendel/\">Loran A. Rendel</a> Â· <a href=\"https://profiles.wordpress.org/karpstrucking/\">Lucas Karpiuk</a> Â· <a href=\"https://profiles.wordpress.org/lucasw89/\">lucasw89</a> Â· <a href=\"https://profiles.wordpress.org/lucatume/\">lucatume</a> Â· <a href=\"https://profiles.wordpress.org/zaguiini/\">Luis Felipe Zaguini</a> Â· <a href=\"https://profiles.wordpress.org/lukecarbis/\">Luke Carbis</a> Â· <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a> Â· <a href=\"https://profiles.wordpress.org/pyrobd/\">Lukman Nakib</a> Â· <a href=\"https://profiles.wordpress.org/luovalabs/\">luovalabs</a> Â· <a href=\"https://profiles.wordpress.org/lynk/\">lynk</a> Â· <a href=\"https://profiles.wordpress.org/asif2bd/\">M Asif Rahman</a> Â· <a href=\"https://profiles.wordpress.org/gorby31/\">Madalin Gorbanescu</a> Â· <a href=\"https://profiles.wordpress.org/aetherunbound/\">Madison</a> Â· <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> Â· <a href=\"https://profiles.wordpress.org/mai21/\">Mai</a> Â· <a href=\"https://profiles.wordpress.org/malae/\">Malae</a> Â· <a href=\"https://profiles.wordpress.org/malthert/\">malthert</a> Â· <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a> Â· <a href=\"https://profiles.wordpress.org/manishamakhija/\">Manisha Makhija</a> Â· <a href=\"https://profiles.wordpress.org/manzoorwanijk/\">Manzoor Wani</a> Â· <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">Marcelo de Moraes Serpa</a> Â· <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> Â· <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a> Â· <a href=\"https://profiles.wordpress.org/marekhrabe/\">Marek Hrabe</a> Â· <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a> Â· <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a> Â· <a href=\"https://profiles.wordpress.org/mark-k/\">Mark-k</a> Â· <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a> Â· <a href=\"https://profiles.wordpress.org/wetah/\">Mateus Machado Luna</a> Â· <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> Â· <a href=\"https://profiles.wordpress.org/mhuntdesign/\">Matt</a> Â· <a href=\"https://profiles.wordpress.org/mattchowning/\">Matt Chowning</a> Â· <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> Â· <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a> Â· <a href=\"https://profiles.wordpress.org/mattoakley/\">mattoakley</a> Â· <a href=\"https://profiles.wordpress.org/azouamauriac/\">Mauriac AZOUA</a> Â· <a href=\"https://profiles.wordpress.org/wppunk/\">Max</a> Â· <a href=\"https://profiles.wordpress.org/max-dayala/\">MaxD</a> Â· <a href=\"https://profiles.wordpress.org/maximeculea/\">Maxime Culea</a> Â· <a href=\"https://profiles.wordpress.org/mclaurent/\">mclaurent</a> Â· <a href=\"https://profiles.wordpress.org/medusor/\">MEDUSOR</a> Â· <a href=\"https://profiles.wordpress.org/megphillips91/\">Meg Phillips</a> Â· <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a> Â· <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a> Â· <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a> Â· <a href=\"https://profiles.wordpress.org/wpscholar/\">Micah Wood</a> Â· <a href=\"https://profiles.wordpress.org/mdawaffe/\">Michael Adams (mdawaffe)</a> Â· <a href=\"https://profiles.wordpress.org/tw2113/\">Michael Beckwith</a> Â· <a href=\"https://profiles.wordpress.org/mburridge/\">Michael Burridge</a> Â· <a href=\"https://profiles.wordpress.org/mnelson4/\">Michael Nelson</a> Â· <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a> Â· <a href=\"https://profiles.wordpress.org/michelwppi/\">Michel - xiligroup dev</a> Â· <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> Â· <a href=\"https://profiles.wordpress.org/mikaelmayer/\">mikaelmayer</a> Â· <a href=\"https://profiles.wordpress.org/mikejolley/\">Mike Jolley (a11n)</a> Â· <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a> Â· <a href=\"https://profiles.wordpress.org/dimadin/\">Milan DiniÄ‡</a> Â· <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a> Â· <a href=\"https://profiles.wordpress.org/multidots1896/\">Minal Diwan</a> Â· <a href=\"https://profiles.wordpress.org/mjaschen/\">mjaschen</a> Â· <a href=\"https://profiles.wordpress.org/mjulian7/\">mjulian7</a> Â· <a href=\"https://profiles.wordpress.org/mmxxi/\">mmxxi</a> Â· <a href=\"https://profiles.wordpress.org/moch11/\">moch11</a> Â· <a href=\"https://profiles.wordpress.org/opurockey/\">Mohammad Rockeybul Alam</a> Â· <a href=\"https://profiles.wordpress.org/monikarao/\">Monika Rao</a> Â· <a href=\"https://profiles.wordpress.org/mt8biz/\">moto hachi</a> Â· <a href=\"https://profiles.wordpress.org/computerguru/\">mqudsi</a> Â· <a href=\"https://profiles.wordpress.org/mreishus/\">mreishus</a> Â· <a href=\"https://profiles.wordpress.org/mrjoeldean/\">mrjoeldean</a> Â· <a href=\"https://profiles.wordpress.org/mtoensing/\">mtoensing</a> Â· <a href=\"https://profiles.wordpress.org/wparslan/\">Muhammad Arslan</a> Â· <a href=\"https://profiles.wordpress.org/muhammadfaizanhaidar/\">Muhammad Faizan Haidar</a> Â· <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> Â· <a href=\"https://profiles.wordpress.org/musabshakeel/\">Musab Shakeel</a> Â· <a href=\"https://profiles.wordpress.org/amustaque97/\">Mustaque Ahmed</a> Â· <a href=\"https://profiles.wordpress.org/assassinateur/\">Nadir Seghir</a> Â· <a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">Nalini Thakor</a> Â· <a href=\"https://profiles.wordpress.org/namithjawahar/\">Namith Jawahar</a> Â· <a href=\"https://profiles.wordpress.org/nao/\">Naoko Takano</a> Â· <a href=\"https://profiles.wordpress.org/natewr/\">NateWr</a> Â· <a href=\"https://profiles.wordpress.org/greatislander/\">Ned Zimmerman</a> Â· <a href=\"https://profiles.wordpress.org/nettsite/\">NettSite</a> Â· <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a> Â· <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> Â· <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a> Â· <a href=\"https://profiles.wordpress.org/nickcernis/\">nickcernis</a> Â· <a href=\"https://profiles.wordpress.org/nico23/\">Nico</a> Â· <a href=\"https://profiles.wordpress.org/jainnidhi/\">Nidhi Jain</a> Â· <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> Â· <a href=\"https://profiles.wordpress.org/nielslange/\">Niels Lange</a> Â· <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> Â· <a href=\"https://profiles.wordpress.org/nikschavan/\">Nikhil Chavan</a> Â· <a href=\"https://profiles.wordpress.org/nlpro/\">nlpro</a> Â· <a href=\"https://profiles.wordpress.org/ockham/\">ockham</a> Â· <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> Â· <a href=\"https://profiles.wordpress.org/domainsupport/\">Oliver Campion</a> Â· <a href=\"https://profiles.wordpress.org/alshakero/\">Omar Alshaker</a> Â· <a href=\"https://profiles.wordpress.org/omarreiss/\">Omar Reiss</a> Â· <a href=\"https://profiles.wordpress.org/opr18/\">opr18</a> Â· <a href=\"https://profiles.wordpress.org/ellenbauer/\">Outzen Larkin</a> Â· <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a> Â· <a href=\"https://profiles.wordpress.org/ovann86/\">ovann86</a> Â· <a href=\"https://profiles.wordpress.org/ovidiul/\">ovidiul</a> Â· <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> Â· <a href=\"https://profiles.wordpress.org/pablohoneyhoney/\">Pablo Honey</a> Â· <a href=\"https://profiles.wordpress.org/iaaxpage/\">page-carbajal</a> Â· <a href=\"https://profiles.wordpress.org/palmiak/\">palmiak</a> Â· <a href=\"https://profiles.wordpress.org/pankajmohale/\">Pankaj Mohale</a> Â· <a href=\"https://profiles.wordpress.org/pls78/\">Paolo L. Scala</a> Â· <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> Â· <a href=\"https://profiles.wordpress.org/patrick-b/\">Patrick Boehner</a> Â· <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a> Â· <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a> Â· <a href=\"https://profiles.wordpress.org/pabline/\">Paul Bunkham</a> Â· <a href=\"https://profiles.wordpress.org/rixeo/\">Paul Kevin</a> Â· <a href=\"https://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a> Â· <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a> Â· <a href=\"https://profiles.wordpress.org/psrpinto/\">Paulo Pinto</a> Â· <a href=\"https://profiles.wordpress.org/malinevskiy/\">Pavlo</a> Â· <a href=\"https://profiles.wordpress.org/pbking/\">pbking</a> Â· <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendon&#231;a</a> Â· <a href=\"https://profiles.wordpress.org/pputzer/\">pepe</a> Â· <a href=\"https://profiles.wordpress.org/petaryoast/\">Petar RatkoviÄ‡</a> Â· <a href=\"https://profiles.wordpress.org/psmits1567/\">Peter Smits</a> Â· <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> Â· <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walb&#248; Johnsg&#229;rd</a> Â· <a href=\"https://profiles.wordpress.org/pgpagely/\">pgpagely</a> Â· <a href=\"https://profiles.wordpress.org/johnstonphilip/\">Phil Johnston</a> Â· <a href=\"https://profiles.wordpress.org/philipmjackson/\">Philip Jackson</a> Â· <a href=\"https://profiles.wordpress.org/pierlo/\">Pierre Gordon</a> Â· <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a> Â· <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a> Â· <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a> Â· <a href=\"https://profiles.wordpress.org/powerbuoy/\">powerbuoy</a> Â· <a href=\"https://profiles.wordpress.org/praem90/\">praem90</a> Â· <a href=\"https://profiles.wordpress.org/promz/\">Pramod Jodhani</a> Â· <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> Â· <a href=\"https://profiles.wordpress.org/presstoke/\">presstoke</a> Â· <a href=\"https://profiles.wordpress.org/procodewp/\">procodewp</a> Â· <a href=\"https://profiles.wordpress.org/psealock/\">psealock</a> Â· <a href=\"https://profiles.wordpress.org/psufan/\">psufan</a> Â· <a href=\"https://profiles.wordpress.org/pwtyler/\">pwtyler</a> Â· <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a> Â· <a href=\"https://profiles.wordpress.org/radixweb/\">Radixweb</a> Â· <a href=\"https://profiles.wordpress.org/rafiahmedd/\">Rafi Ahmed</a> Â· <a href=\"https://profiles.wordpress.org/rtm909/\">Rahul Mehta</a> Â· <a href=\"https://profiles.wordpress.org/ralucastn/\">ralucastn</a> Â· <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> Â· <a href=\"https://profiles.wordpress.org/ramonopoly/\">ramonopoly</a> Â· <a href=\"https://profiles.wordpress.org/ravipatel/\">ravipatel</a> Â· <a href=\"https://profiles.wordpress.org/rehanali/\">Rehan Ali</a> Â· <a href=\"https://profiles.wordpress.org/renathoc/\">Renatho (a11n)</a> Â· <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a> Â· <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> Â· <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a> Â· <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> Â· <a href=\"https://profiles.wordpress.org/richybkreckel/\">Richard B. Kreckel</a> Â· <a href=\"https://profiles.wordpress.org/richardfoley/\">Richard Foley</a> Â· <a href=\"https://profiles.wordpress.org/richards1052/\">richards1052</a> Â· <a href=\"https://profiles.wordpress.org/rickcurran/\">Rick Curran</a> Â· <a href=\"https://profiles.wordpress.org/rbrishabh/\">Rishabh Budhiraja</a> Â· <a href=\"https://profiles.wordpress.org/saju4wordpress/\">Riyadh Ahmed</a> Â· <a href=\"https://profiles.wordpress.org/rmartinezduque/\">rmartinezduque</a> Â· <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> Â· <a href=\"https://profiles.wordpress.org/robertghetau/\">robertght</a> Â· <a href=\"https://profiles.wordpress.org/robtarr/\">robtarr</a> Â· <a href=\"https://profiles.wordpress.org/kreppar/\">Rodrigo Arias</a> Â· <a href=\"https://profiles.wordpress.org/rohan013/\">Rohan Rawat</a> Â· <a href=\"https://profiles.wordpress.org/rhnsharma/\">Rohan Sharma</a> Â· <a href=\"https://profiles.wordpress.org/rolfsiebers/\">Rolf Siebers</a> Â· <a href=\"https://profiles.wordpress.org/ronakganatra/\">Ronak Ganatra</a> Â· <a href=\"https://profiles.wordpress.org/rkohilakis/\">Roxy Kohilakis</a> Â· <a href=\"https://profiles.wordpress.org/rufus87/\">Rufus87</a> Â· <a href=\"https://profiles.wordpress.org/russhylov/\">Ruslan</a> Â· <a href=\"https://profiles.wordpress.org/rviscomi/\">rviscomi</a> Â· <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> Â· <a href=\"https://profiles.wordpress.org/skierpage/\">S Page</a> Â· <a href=\"https://profiles.wordpress.org/sebastienserre/\">S&#233;bastien SERRE</a> Â· <a href=\"https://profiles.wordpress.org/soean/\">S&#246;ren Wrede</a> Â· <a href=\"https://profiles.wordpress.org/sabbirshouvo/\">Sabbir Hasan</a> Â· <a href=\"https://profiles.wordpress.org/sabrib/\">Sabri Bouchaala</a> Â· <a href=\"https://profiles.wordpress.org/zeo/\">Safirul Alredha</a> Â· <a href=\"https://profiles.wordpress.org/solarissmoke/\">Samir Shah</a> Â· <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a> Â· <a href=\"https://profiles.wordpress.org/sandipmondal/\">Sandip Mondal - a11n</a> Â· <a href=\"https://profiles.wordpress.org/sanketchodavadiya/\">Sanket Chodavadiya</a> Â· <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> Â· <a href=\"https://profiles.wordpress.org/sarayourfriend/\">sarayourfriend</a> Â· <a href=\"https://profiles.wordpress.org/sathyapulse/\">Sathiyamoorthy V</a> Â· <a href=\"https://profiles.wordpress.org/savicmarko1985/\">savicmarko1985</a> Â· <a href=\"https://profiles.wordpress.org/sayedulsayem/\">Sayedul Sayem</a> Â· <a href=\"https://profiles.wordpress.org/swb1192/\">Scott Buscemi</a> Â· <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a> Â· <a href=\"https://profiles.wordpress.org/seanmcmillan/\">Sean McMillan</a> Â· <a href=\"https://profiles.wordpress.org/sebastianpisula/\">Sebastian Pisula</a> Â· <a href=\"https://profiles.wordpress.org/omaeyusuke/\">Segayuu</a> Â· <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> Â· <a href=\"https://profiles.wordpress.org/sergiocinos/\">Sergio Cinos</a> Â· <a href=\"https://profiles.wordpress.org/sergioestevao/\">SergioEstevao</a> Â· <a href=\"https://profiles.wordpress.org/shaharyar10/\">Shaharyar Afzal</a> Â· <a href=\"https://profiles.wordpress.org/shaunandrews/\">shaunandrews</a> Â· <a href=\"https://profiles.wordpress.org/shohag121/\">Shazahanul Islam Shohag</a> Â· <a href=\"https://profiles.wordpress.org/shimon246/\">shimon246</a> Â· <a href=\"https://profiles.wordpress.org/shital-patel/\">Shital Marakana</a> Â· <a href=\"https://profiles.wordpress.org/shivapoudel/\">Shiva Poudel</a> Â· <a href=\"https://profiles.wordpress.org/rsiddharth/\">siddharth</a> Â· <a href=\"https://profiles.wordpress.org/nomnom99/\">Siddharth Thevaril</a> Â· <a href=\"https://profiles.wordpress.org/siliconforks/\">siliconforks</a> Â· <a href=\"https://profiles.wordpress.org/simonhammes/\">simonhammes</a> Â· <a href=\"https://profiles.wordpress.org/siobhan/\">Siobhan</a> Â· <a href=\"https://profiles.wordpress.org/siobhyb/\">Siobhan</a> Â· <a href=\"https://profiles.wordpress.org/sirreal/\">sirreal</a> Â· <a href=\"https://profiles.wordpress.org/sjlevy/\">sjlevy</a> Â· <a href=\"https://profiles.wordpress.org/skunkbad/\">skunkbad</a> Â· <a href=\"https://profiles.wordpress.org/smit08/\">Smit Rathod</a> Â· <a href=\"https://profiles.wordpress.org/snapfractalpop/\">snapfractalpop</a> Â· <a href=\"https://profiles.wordpress.org/sourovroy/\">Sourov Roy</a> Â· <a href=\"https://profiles.wordpress.org/spytzo/\">spytzo</a> Â· <a href=\"https://profiles.wordpress.org/ssergei/\">ssergei</a> Â· <a href=\"https://profiles.wordpress.org/stacimc/\">stacimc</a> Â· <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a> Â· <a href=\"https://profiles.wordpress.org/hypest/\">Stefanos Togoulidis</a> Â· <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> Â· <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a> Â· <a href=\"https://profiles.wordpress.org/strider72/\">Stephen Rider</a> Â· <a href=\"https://profiles.wordpress.org/dufresnesteven/\">Steve Dufresne</a> Â· <a href=\"https://profiles.wordpress.org/stevehenty/\">Steve Henty</a> Â· <a href=\"https://profiles.wordpress.org/stevegs/\">stevegs</a> Â· <a href=\"https://profiles.wordpress.org/stormrockwell/\">Storm Rockwell</a> Â· <a href=\"https://profiles.wordpress.org/mahype/\">Sven Wagener</a> Â· <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> Â· <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a> Â· <a href=\"https://profiles.wordpress.org/szaqal21/\">szaqal21</a> Â· <a href=\"https://profiles.wordpress.org/tacoverdo/\">Taco Verdonschot</a> Â· <a href=\"https://profiles.wordpress.org/takahashi_fumiki/\">Takahashi Fumiki</a> Â· <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a> Â· <a href=\"https://profiles.wordpress.org/sparklingrobots/\">Tara King</a> Â· <a href=\"https://profiles.wordpress.org/tareiking/\">Tarei King</a> Â· <a href=\"https://profiles.wordpress.org/staatic/\">Team Staatic</a> Â· <a href=\"https://profiles.wordpress.org/tellyworth/\">Tellyworth</a> Â· <a href=\"https://profiles.wordpress.org/terraling/\">terraling</a> Â· <a href=\"https://profiles.wordpress.org/terriann/\">Terri Ann</a> Â· <a href=\"https://profiles.wordpress.org/themiked/\">theMikeD</a> Â· <a href=\"https://profiles.wordpress.org/tweetythierry/\">Thierry Muller</a> Â· <a href=\"https://profiles.wordpress.org/thulshof/\">Thijs Hulshof</a> Â· <a href=\"https://profiles.wordpress.org/thimalw/\">Thimal Wickremage</a> Â· <a href=\"https://profiles.wordpress.org/thisiswilliam/\">thisiswilliam</a> Â· <a href=\"https://profiles.wordpress.org/thomasplevy/\">Thomas Patrick Levy</a> Â· <a href=\"https://profiles.wordpress.org/timlappe/\">Tim Lappe</a> Â· <a href=\"https://profiles.wordpress.org/tnolte/\">Tim Nolte</a> Â· <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> Â· <a href=\"https://profiles.wordpress.org/titsmaker/\">titsmaker</a> Â· <a href=\"https://profiles.wordpress.org/tjcafferkey/\">tjcafferkey</a> Â· <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a> Â· <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a> Â· <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a> Â· <a href=\"https://profiles.wordpress.org/tomalec/\">Tomek</a> Â· <a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a> Â· <a href=\"https://profiles.wordpress.org/starbuck/\">Tony G</a> Â· <a href=\"https://profiles.wordpress.org/ttahmouch/\">Tony Tahmouch</a> Â· <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a> Â· <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a> Â· <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a> Â· <a href=\"https://profiles.wordpress.org/sierratr/\">Tracy</a> Â· <a href=\"https://profiles.wordpress.org/travisnorthcutt/\">Travis Northcutt</a> Â· <a href=\"https://profiles.wordpress.org/tubys/\">tubys</a> Â· <a href=\"https://profiles.wordpress.org/dinhtungdu/\">Tung Du</a> Â· <a href=\"https://profiles.wordpress.org/twstokes/\">twstokes</a> Â· <a href=\"https://profiles.wordpress.org/desaiuditd/\">Udit Desai</a> Â· <a href=\"https://profiles.wordpress.org/umesh84/\">Umesh Gupta</a> Â· <a href=\"https://profiles.wordpress.org/webulous/\">Venkat Raj</a> Â· <a href=\"https://profiles.wordpress.org/versusbassz/\">versusbassz</a> Â· <a href=\"https://profiles.wordpress.org/bartoszgrzesik/\">verybg</a> Â· <a href=\"https://profiles.wordpress.org/vcanales/\">Vicente Canales</a> Â· <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Sz&#233;pe</a> Â· <a href=\"https://profiles.wordpress.org/vishitshah/\">Vishit Shah</a> Â· <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a> Â· <a href=\"https://profiles.wordpress.org/vondelphia/\">Vondelphia.com</a> Â· <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a> Â· <a href=\"https://profiles.wordpress.org/wb1234/\">wb1234</a> Â· <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design &#124; Oliver Juhas</a> Â· <a href=\"https://profiles.wordpress.org/west7/\">Wes Theron</a> Â· <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> Â· <a href=\"https://profiles.wordpress.org/wfmattr/\">WFMattR</a> Â· <a href=\"https://profiles.wordpress.org/skorasaurus/\">Will Skora</a> Â· <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a> Â· <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a> Â· <a href=\"https://profiles.wordpress.org/wojsmol/\">wojsmol</a> Â· <a href=\"https://profiles.wordpress.org/woodyhayday/\">woodyhayday</a> Â· <a href=\"https://profiles.wordpress.org/wp_kc/\">wp_kc</a> Â· <a href=\"https://profiles.wordpress.org/antonynz/\">wpcharged</a> Â· <a href=\"https://profiles.wordpress.org/wpnomad/\">wpnomad a11n</a> Â· <a href=\"https://profiles.wordpress.org/wpsoul/\">wpsoul</a> Â· <a href=\"https://profiles.wordpress.org/wpweaver/\">wpweaver</a> Â· <a href=\"https://profiles.wordpress.org/yagniksangani/\">Yagnik Sangani</a> Â· <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> Â· <a href=\"https://profiles.wordpress.org/dolphingg/\">Yunus ErtuÄŸrul</a> Â· <a href=\"https://profiles.wordpress.org/yvettesonneveld/\">Yvette Sonneveld</a> Â· <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a> Â· <a href=\"https://profiles.wordpress.org/zoiec/\">zoiec</a></p>\n\n\n\n<p>By release day, 71 locales had translated 90 percent or more of WordPress 5.9 in their language. Community translators are hard at work ensuring more translations are on their way. Thank you to everyone who helps to make WordPress available in 205 languages.</p>\n\n\n\n<p>Many thanks to all of the community volunteers who contribute in the <a href=\"https://wordpress.org/support/\">support forums</a>. They help to answer questions from people across the world. The success of releases, from the first one in 2003, owes much to the efforts of the support contributors.&nbsp;</p>\n\n\n\n<p><em>If contributing to WordPress appeals to you, itâ€™s easy to learn more and get involved. Discover the different teams that come together to <a href=\"https://make.wordpress.org/\">Make WordPress</a> website and find out the latest plans on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12089\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress 5.9 RC3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2022/01/wordpress-5-9-rc3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Jan 2022 22:28:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12050\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"Download to test the third Release Candidate (RC3) for WordPress 5.9.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4760:\"\n<p>The third <a href=\"https://make.wordpress.org/core/handbook/glossary/#rc\">Release Candidate</a> (RC3) for <a href=\"https://make.wordpress.org/core/5-9/\">WordPress 5.9</a> is here!</p>\n\n\n\n<p>Thank you to everyone who has contributed thus far toward testing and filing bugs to help make WordPress 5.9 a great release. <strong>WordPress 5.9 is slated to land in just</strong> <strong>one weekâ€”on January 25, 2022.</strong> You still have time to help! Since RC2 arrived last week, testers have found and fixed <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=5.9&amp;time=01%2F12%2F2022..01%2F17%2F2022&amp;group=component&amp;max=500&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">two</a> bugs, <a href=\"https://core.trac.wordpress.org/changeset/52596\">14 fixes</a> from Gutenberg. There has been one additional <a href=\"https://core.trac.wordpress.org/changeset/52598\">Gutenberg fix</a> today.</p>\n\n\n\n<h2 id=\"testing-the-release\">Testing the release</h2>\n\n\n\n<p>You can test the WordPress 5.9 release candidate in three ways:</p>\n\n\n\n<p><strong>Option 1</strong>: Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the â€œBleeding edgeâ€ channel and â€œBeta/RC Onlyâ€ stream).</p>\n\n\n\n<p><strong>Option 2</strong>: Download the beta version here (<a href=\"https://wordpress.org/wordpress-5.9-RC3.zip\">zip</a>).</p>\n\n\n\n<p><strong>Option 3</strong>: When using WP-CLI to upgrade from Beta 1, 2, 3, 4, RC1, or RC2 on a case-insensitive filesystem, please use the following command sequence:</p>\n\n\n\n<h4 id=\"command-one\">Command One:</h4>\n\n\n\n<pre class=\"wp-block-code\"><code>wp core update --version=5.9-RC3</code></pre>\n\n\n\n<h4 id=\"command-two\">Command Two:</h4>\n\n\n\n<pre class=\"wp-block-code\"><code>wp core update --version=5.9-RC3 --force</code></pre>\n\n\n\n<p>Your help to test the third Release Candidate is vital: the more testing that happens, the more stable the release, and the better the experience for users, developers, and the WordPress community.</p>\n\n\n\n<p>Thank you to all contributors who tested the <a href=\"https://wordpress.org/news/2022/01/wordpress-5-9-rc-2/\">RC2 release</a> and gave feedback. Testing for bugs is a critical part of polishing every release and is a great way to contribute to WordPress.</p>\n\n\n\n<h2 id=\"how-to-help\">How to help</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/test/2021/11/30/help-test-wordpress-5-9-features/\">Help test WordPress 5.9 features</a> â€“ this post provides a guide to set up your testing environment, a list of testable features, and information about how to submit feedback you find as you go.</p>\n\n\n\n<p>Skilled in languages other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages!</a> Thanks to every locale that is working on translations.</p>\n\n\n\n<p>Developers and those interested in more background to the features can find more in the <a href=\"https://make.wordpress.org/core/2022/01/10/wordpress-5-9-field-guide/â€ with â€œhttps://make.wordpress.org/core/2022/01/10/wordpress-5-9-field-guide/\">Field Guide</a>. You can also follow the <a href=\"https://make.wordpress.org/core/5-9/\">5.9 development cycle</a> and timeline.</p>\n\n\n\n<p>If you have found a bug, you can post the details to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums.</p>\n\n\n\n<p>If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>, where you can also check the issue against <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n\n\n\n<p><em>For their help in compiling this post, props to </em><a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>, <em><a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>, </em><a href=\'https://profiles.wordpress.org/psykro/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>psykro</a><em>,<a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a>, <a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>, <a href=\'https://profiles.wordpress.org/davidbaumwald/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>davidbaumwald</a>, and <a href=\'https://profiles.wordpress.org/hellofromtonya/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hellofromtonya</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12050\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WP Briefing: Episode 23: A letter from WordPressâ€™ Executive Director\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wordpress.org/news/2022/01/episode-23-a-letter-from-wordpress-executive-director/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 17 Jan 2022 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=12043\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:408:\"As we greet a new year, WordPress&#8217; Executive Director writes a letter to the project and community that speaks to the hopes of the year ahead. Have a question you&#8217;d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording. Credits Editor:&#160;Dustin Hartzler Logo:&#160;Beatriz Fialho Production:&#160;ChloÃ© Bringmann Song: Fearless First [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/01/WP-Briefing-023.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6741:\"\n<p>As we greet a new year, WordPress&#8217; Executive Director writes a letter to the project and community that speaks to the hopes of the year ahead.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 id=\"credits\">Credits</h2>\n\n\n\n<ul><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<a href=\"https://profiles.wordpress.org/cbringmann/\">ChloÃ© Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2 id=\"transcript\">Transcript</h2>\n\n\n\n<span id=\"more-12043\"></span>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:10</p>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress Briefing. The podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:40</p>\n\n\n\n<p>Yesterday marked three years since the WordPress project welcomed me as their executive director. As I start my fourth year, I&#8217;ve spent a bit of time considering what the next five years will bring us. WordPress will turn 19 this year, which means that we will soon be a whopping 20 years old; for some of the people who have been with the project since the beginning, that can represent two-thirds of their whole life. And even if you were not that young when you got here, two decades as an open source project is really a cause for celebration.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:10</p>\n\n\n\n<p>I am not in that group that has been here forever. I showed up for the first time in 2009, as a community organizer, self-sponsored, and I learned so much about myself as a person and as a leader while I was doing that. So when I arrived as a sponsored contributor in 2015, I already knew exactly what made this work so fulfilling for me was these three things:&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:34</p>\n\n\n\n<p>First, the ability to lend a hand in those moments where I wish someone had lent a hand.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:40</p>\n\n\n\n<p>Second is the delight of seeing people&#8217;s first successes and the joy of watching them grow over time.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:48</p>\n\n\n\n<p>And the third was a chance to be part of something great, which turned out to be something greater; greater than me or you or a CMS.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:58</p>\n\n\n\n<p>This list is still at the heart of what I feel I get out of the WordPress project. But it has also grown substantially in my seven years as a sponsored contributor. I now also love how we as a community of contributors get to foster a better way to lead and a better way to collaborate. And through those things help people find a way to have a better life. Not just through WordPress, the CMS, but through WordPress, the people, and WordPress, the project.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:25</p>\n\n\n\n<p>And so when I think of what I want for WordPress in its 19th year, so that we can head with confidence and dignity into our 20th year, it is this:&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:35</p>\n\n\n\n<p>I want you to remember that you are not alone here. People come together in the world often because of a shared location. But WordPress fosters this beautiful experience of bringing us together because of what we care about. Whether you care about PHP standards, diversity in technology, helping people with their first big wins, making WordPress more secure. I mean, if what you care about is being able to write the most arcane and complex apps on top of WordPress that the world has ever seen. Then there are others out there who want to do that with you, too. We have so many things to connect about. And fortunately, we support a great piece of software for getting our thoughts out in the world. Take some time to see who else shares your thoughts and potentially learn a bit about the view from the other side.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:26</p>\n\n\n\n<p>And speaking of the other side, I also want us to approach our discussions as the US versus the Problem TM. WordPress may be 20 years old, and we may stand on the shoulders of giants, but right now, the people who are here you, you are explorers and creators and guides toward the best possible future for WordPress. The tension that we witness between teams is always about the best possible answers for the people who use our software. It is about securing the freedoms of the open web for everyone who comes after us whether they know they need those freedoms or not.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:04</p>\n\n\n\n<p>And finally, I want us to expand our reasons for doing this at all. If you are a member of the community of contributors, We frequently talk about how we give back because WordPress gave to us. Or if you are part of a Five for the Future group. You have heard that companies who have experienced success because of WordPress should commit 5% of their resources back to the project to ensure WordPress&#8217; long-term success. But the reason that I keep doing this, and hopefully a new reason for you to keep doing this is that we can take part in securing opportunities for future users of WordPress.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:42</p>\n\n\n\n<p>Yes, I want WordPress to be the best CMS. Yes, I want this community to be vibrant and engaged. Yes, I want WordPress to be a shining beacon of how to work remotely. And I want all of that because I know it is our careful and tireless stewardship of this project that lets us continue to lend a hand in those moments where people wish for someone to lend a hand.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:11</p>\n\n\n\n<p>Those are my hopes for WordPress in 2022 to move us forward into WordPress of the future. I hope you all will come with me and we can continue our journey together.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>05:23</p>\n\n\n\n<p>Thanks again for listening. I&#8217;m Josepha Haden and this is the WP Briefing. See you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12043\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:66:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WordPress 5.9 RC 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/news/2022/01/wordpress-5-9-rc-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Jan 2022 20:43:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:3:\"RC2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12014\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"The second Release Candidate (RC2) for WordPress 5.9 is available! The final release is slated for January 25, 2022. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Jonathan Bossenger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4966:\"\n<p>The second Release Candidate (RC2) for<a href=\"https://make.wordpress.org/core/5-9/\"> WordPress 5.9</a> is now available!&nbsp;</p>\n\n\n\n<p>â€œRelease Candidateâ€ means the new version of the software is ready for release. It helps the community check that nothing is missed, given the thousands of plugins and themes and differences in how millions of people use the software.</p>\n\n\n\n<p>Thank you to everyone who has contributed thus far towards testing and filing bugs to help make WordPress 5.9 a great release. WordPress 5.9 is slated for release in just two weeks on January 25, 2022. There&#8217;s still time to help! Since RC1 was released, <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=5.9&amp;time=01%2F05%2F2022..01%2F12%2F2022&amp;group=component&amp;max=500&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\" target=\"_blank\" rel=\"noreferrer noopener\">six</a> bugs have been found and fixed. There were <a href=\"https://core.trac.wordpress.org/changeset/52551\">13 bug fixes backported from Gutenberg.</a></p>\n\n\n\n<h2 id=\"testing-the-release\"><strong>Testing the release</strong></h2>\n\n\n\n<p>You can test the WordPress 5.9 release candidate in three ways:</p>\n\n\n\n<p><strong>Option 1:</strong> Install and activate the<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\"> <strong>WordPress Beta Tester</strong></a><strong> </strong>plugin (select the â€œBleeding edgeâ€ channel and â€œBeta/RC Onlyâ€ stream).</p>\n\n\n\n<p><strong>Option 2:</strong> Direct download the beta version here (<a href=\"https://wordpress.org/wordpress-5.9-RC2.zip\"><strong>zip</strong></a>).</p>\n\n\n\n<p><strong>Option 3:</strong> When using WP-CLI to upgrade from Beta 1, 2, 3, 4, or RC1, on a case-insensitive filesystem, please use the following command sequence:</p>\n\n\n\n<p>Command One:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>wp core update --version=5.9-RC2</code></pre>\n\n\n\n<p>Command Two:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>wp core update --version=5.9-RC2 --force</code></pre>\n\n\n\n<p>Your help to test the second Release Candidate is vital: the more testing that happens, the more stable the release, and the better the experience for users and developersâ€”and the entire WordPress community.</p>\n\n\n\n<p>Thank you to all of the contributors who tested the RC1 release and gave feedback. Testing for bugs is not just a critical part of polishing every release, it is also a great way to contribute to WordPress.</p>\n\n\n\n<h2 id=\"how-to-help\"><strong>How to Help</strong></h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/test/2021/11/30/help-test-wordpress-5-9-features/\">Help test WordPress 5.9 features</a> â€“ a guide to how you can take part.</p>\n\n\n\n<p>Can you write in another language other than English? You can<a href=\"https://translate.wordpress.org/projects/wp/dev\"> help translate WordPress into more than 100 languages!</a> Release Candidate 1 marked the<a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\"> hard string freeze</a> point of the 5.9 release schedule. Thanks to every locale that is already involved with translations.</p>\n\n\n\n<p>Developers and those interested in more of the background to the features can find more in the <a href=\"https://make.wordpress.org/core/2022/01/10/wordpress-5-9-field-guide/\">Field Notes</a>. More developer notes will be added as the release progresses to its final stage. You can also follow the <a href=\"https://make.wordpress.org/core/5-9/\">5.9 development cycle</a> and timeline.</p>\n\n\n\n<p><strong><em>If you think you have found a bug</em></strong><em>, you can post the details to the</em><a href=\"https://wordpress.org/support/forum/alphabeta\"><em> </em><em>Alpha/Beta area</em></a><em> in the support forums.</em></p>\n\n\n\n<p><em>&nbsp;If you are comfortable writing a reproducible bug report, you can</em><a href=\"https://core.trac.wordpress.org/newticket\"><em> </em><em>file one on WordPress Trac</em></a><em>, where you can also check the issue against</em><a href=\"https://core.trac.wordpress.org/tickets/major\"><em> </em><em>a list of known bugs</em></a><em>.</em></p>\n\n\n\n<p><em>Props to: </em><a href=\'https://profiles.wordpress.org/psykro/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>psykro</a> and <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a><em>, and </em><a href=\'https://profiles.wordpress.org/hellofromtonya/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hellofromtonya</a>, <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a>, <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a> and <a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a> <em>for final review.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12014\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 5.8.3 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2022/01/wordpress-5-8-3-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 06 Jan 2022 21:02:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=11999\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:360:\"This security release features four security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated. WordPress 5.8.3 is a short-cycle security release. The next major release will be version 5.9, which is already in the Release Candidate stage. You [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Jonathan Desrosiers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3681:\"\n<p>This security release features four security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated.</p>\n\n\n\n<p>WordPress 5.8.3 is a short-cycle security release. The next major release will be version <a href=\"https://make.wordpress.org/core/5-9/\">5.9</a>, which is already in the Release Candidate stage.</p>\n\n\n\n<p>You can update to WordPress 5.8.3 by downloading from WordPress.org or visiting your Dashboard â†’ Updates and clicking Update Now.</p>\n\n\n\n<p>If you have sites that support automatic background updates, theyâ€™ve already started the update process.</p>\n\n\n\n<h3 id=\"security-updates\">Security Updates</h3>\n\n\n\n<p>Four security issues affect WordPress versions between 3.7 and 5.8. If you havenâ€™t yet updated to 5.8, all WordPress versions since 3.7 have also been updated to fix the following security issue (except where noted otherwise):</p>\n\n\n\n<ul><li>Props to Karim El Ouerghemmi and Simon Scannell of <a href=\"https://www.sonarsource.com/\">SonarSource</a> for disclosing an issue with stored XSS through post slugs.</li><li>Props to Simon Scannell of <a href=\"https://www.sonarsource.com/\">SonarSource</a> for reporting an issue with Object injection in some multisite installations.</li><li>Props to ngocnb and khuyenn from <a href=\"https://giaohangtietkiem.vn/\">GiaoHangTietKiem JSC</a> for working with <a href=\"https://www.zerodayinitiative.com/\">Trend Micro Zero Day Initiative</a> on reporting a SQL injection vulnerability in WP_Query.</li><li>Props to Ben Bidner from the WordPress security team for reporting a SQL injection vulnerability in WP_Meta_Query (only relevant to versions 4.1-5.8). </li></ul>\n\n\n\n<p>Thank you to all of the reporters above for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing the vulnerabilities</a>. This gave the security team time to fix the vulnerabilities before WordPress sites could be attacked. Thank you to the members of the WordPress security team for implementing these fixes in WordPress.</p>\n\n\n\n<p>For more information, check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-8-3/\">5.8.3 HelpHub documentation page</a>.</p>\n\n\n\n<h3 id=\"thanks-and-props\">Thanks and props!</h3>\n\n\n\n<p>The 5.8.3 release was led by <a href=\'https://profiles.wordpress.org/desrosj/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>desrosj</a> and <a href=\'https://profiles.wordpress.org/circlecube/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>circlecube</a>.</p>\n\n\n\n<p>In addition to the security researchers and release squad members mentioned above, thank you to everyone who helped make WordPress 5.8.3 happen:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">ehtis</a>, <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>, and <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"11999\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 16 May 2022 10:11:26 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"â›„\";s:13:\"last-modified\";s:29:\"Tue, 10 May 2022 18:08:32 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20220204041554\";}','no'),(7746,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1652739088','no'),(7747,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1652695888','no'),(7748,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1652739089','no');
INSERT INTO `wp_options` VALUES (7749,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"Gutenberg Times: Three Block Theme Generators, Gutenberg 13.2,  Coupons with Blocks and more â€“  Weekend Edition 215\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=21139\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"https://gutenbergtimes.com/three-block-theme-generators-gutenberg-13-2-coupons-with-blocks-and-more-weekend-edition-215/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:16135:\"<p>Howdy, </p>\n\n\n\n<p>I can hardly wait to be in the same room with fellow contributors across many teams during Contributor Day at WordCamp Europe, collaborate on the open-source project tasks, and meet new contributors in person!  </p>\n\n\n\n<p>Next week, my husband and I will fly to Porto for a two-week work-cation prior to WordCamp Europe. We will explore Portugal&#8217;s second largest city and its wider area during lunch breaks, evening strolls and weekend excursions. It&#8217;s a new way of traveling for us and we are grateful for our remote work so we can stay for a longer period of time in a city. </p>\n\n\n\n\n\n<p>And now back to the topic at hand: News and community resources around the  block editor, block themes, full-site editing and more.</p>\n\n\n\n<p>Enjoy the mixture of articles and post. Have a great weekend! </p>\n\n\n\n<p>Yours, ?<br />Birgit </p>\n\n\n\n\n<div class=\"wp-container-1 wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#2-this-weeks-releases\">This week&#8217;s releases </a><ul><li><a href=\"https://gutenbergtimes.com/feed/#3-word-press-6-0-and-gutenberg-13-2\">WordPress 6.0 RC2</a></li><li><a href=\"https://gutenbergtimes.com/feed/#4-gutenberg-13-2\">Gutenberg 13.2</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#0-block-theme-generators\">Three Block Theme Generators</a></li><li><a href=\"https://gutenbergtimes.com/feed/#1-full-site-editing\">Full Site Editing &amp; Plugins for site builders</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-developing-custom-blocks-and-tools\">Developing Custom Blocks and Tools</a></li><li><a href=\"https://gutenbergtimes.com/feed/#6-upcoming-word-press-social-learning-meetups\">Upcoming WordPress Social Learning Meetups</a></li></ul></div>\n</div></div>\n\n\n\n\n<h2 id=\"2-this-weeks-releases\">This week&#8217;s releases </h2>\n\n\n\n<h3 id=\"3-word-press-6-0-and-gutenberg-13-2\">WordPress 6.0 RC2</h3>\n\n\n\n<p><a href=\"https://wordpress.org/news/2022/05/wordpress-6-0-release-candidate-2-rc2-now-available-for-testing/\"><strong>WordPress 6.0 Release Candidate 2 (RC2) Now Available for Testing</strong></a>. It seems everything is on track for the final release scheduled for May 24, 2022. </p>\n\n\n\n<p>Curious what WordPress 6.0 looks like? Watch this great video by <strong>Jamie Marsland </strong> with short succinct demos of the most important features for site builders and he asks <strong><a href=\"https://www.youtube.com/watch?v=gtNgk6pZBqA\">WordPress 6: The Most Exciting Update Ever?</a></strong></p>\n\n\n\n<p>Can you believe, Core Contributors already <a href=\"https://make.wordpress.org/core/2022/05/11/early-bug-scrub-schedule-for-6-1/\">started Bug Scrubs for 6.1</a>? I guess you can never start too soon. </p>\n\n\n\n<h3 id=\"4-gutenberg-13-2\">Gutenberg 13.2</h3>\n\n\n\n<p>For the first time, <strong><a href=\"https://twitter.com/revgeorge\">George Hotelling</a></strong> led the release for the Gutenberg plugin and posted the release notes: <a href=\"https://make.wordpress.org/core/2022/05/12/whats-new-in-gutenberg-13-2-may-11/\"><strong>Whatâ€™s new in Gutenberg 13.2? (May 11)</strong></a>. Many PRs were Bug fixes, and not so many new features. Hotelling highlights the new <a href=\"https://make.wordpress.org/core/#save-editor-preferences\">save method for user&#8217;s editor preferences</a>. Now that the preferences (Welcome buide, Full Screen, Top Toolbar etc) are stored in the user meta table of the site, you can now access the site from any computer and it will remember the choices you made. We waited quite a while for this feature to land. </p>\n\n\n\n<p><strong><a href=\"https://twitter.com/justintadlock\">Justin Tadlock</a></strong> took the plugin for spin and he has more details in his article: <a href=\"https://wptavern.com/gutenberg-13-2-adds-persistent-user-preferences-and-a-visualizer-for-margin-and-padding-controls\">Gutenberg 13.2 Adds Persistent User Preferences and a Visualizer for Margin and Padding Controls</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Earlier this week, I was part of the <a href=\"https://wpbuilds.com/2022/05/10/this-week-in-wordpress-208/\"><strong>This Week in WordPress #208</strong></a> live show and podcast. with&nbsp;Daniel Schutzsmith,&nbsp;Nathan Wrigley, and&nbsp;Michelle Frechette.</p>\n\n\n\n<img />\n\n\n\n<p>We talked about FSE Testing Call 14 using the refactored List and Quote Blocks, the new feature to assign patterns to the page creation process, the Artist in Residence program by DigitalCube, introduced by Rachel Winchester and so much more. It was lovely to connect with my friends again. We had great fun. Listen in! </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h2 id=\"0-block-theme-generators\">Three Block Theme Generators</h2>\n\n\n\n<p>Ever we started seeing Full-site editing evolving, community members pushed the envelop and created tools for creating themes. Today, I put three of them in one space. </p>\n\n\n\n<p><a href=\"https://www.themegen.app/\"><strong>ThemeGen.App</strong></a> by <a href=\"https://twitter.com/dgwyer\"><strong>David Gwyer</strong></a> was very early and the site provides you an easy way to make all the color and settings choices via a nice web interface and then create a theme.json file. </p>\n\n\n\n<p><strong>Carolina Nymark</strong>&#8216;s <a href=\"https://fullsiteediting.com/block-theme-generator/\"><strong>Block Theme Generator</strong></a> makes a few decisions for you. She offers visitors to download a basic block theme, and empty theme and an advanced block theme. The latter is the best teaching tool, as it includes not only a bare bones theme, but also example templates, block patterns and block styles. With help of a bare bones form, you also can select your color palette and some default settings. </p>\n\n\n\n<p>While both mentioned Block Theme Generators are aimed at the Theme developers working with code, <strong><a href=\"https://twitter.com/pootlepress\">Jamie Marsland</a> of PootlePress</strong> just built a <a href=\"https://www.youtube.com/redirect?event=video_description&redir_token=QUFFLUhqbHdSbUFVbnlGNUMtaUNwV010UnlORFN4WXJKQXxBQ3Jtc0trOUozOWRsMWZ2Ym91c25RcVB2bHJVZGlIWmFVaHhjR2lsMncxckIxQnppZlFsQnBmbkJ3aXd2QmtqN2tEbF8wLWJia192cjFSQzBydTBuUGhXTXBWcmFlSnlJbjlxbDVZVEt2OS11SEZ5eUREUS1iSQ&q=https%3A%2F%2Fwww.pootlepress.com%2Fwordpress-theme-builder%2F&v=mtINY03lycY\"><strong>Block Theme Generator</strong></a> that&#8217;s aimed at the #nocode site builder. It&#8217;s fairly new and used out of the box tools and the WordPress site editor to design every aspect of a theme that you then can export. Marsland explains <a href=\"https://www.youtube.com/watch?v=mtINY03lycY\">in this video on YouTube</a>, how he built it, why Theme Export is such a big deal, and how you can also build a theme generator for you team.</p>\n\n\n\n<h2 id=\"1-full-site-editing\">Full Site Editing &amp; Plugins for site builders</h2>\n\n\n\n<p><a href=\"https://wptavern.com/wordpress-6-0-to-ship-new-block-locking-feature\"><strong>WordPress 6.0 To Ship New Block Locking Feature</strong></a> &#8211; <strong>Justin Tadlock</strong> gives you a sneak preview on the new feature. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Full-site editing experience is not for everyone yet. <strong><a href=\"https://twitter.com/RuthRaventos\">Ruth RaventÃ³s</a></strong>, CEO of Nelio, after explaining what FSE entails, walk you through the decision-making process on <a href=\"https://neliosoftware.com/blog/how-do-i-change-my-website-to-full-site-editing-fse/\"><strong>if your site, your online business, is suited to adopt aspects of FSE.</strong></a> It&#8217;s not a technical evaluation, rather than a strategic approach. &#8220;The first task you should do is to understand all the functionalities you want your â€œnewâ€ website to have and see which of them can be provided by FSE. Then, for those that are provided by plugins, evaluate if they are compatible with FSE or what alternatives you have.&#8221; Ruth RaventÃ³s wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"has-drop-cap\">4 (<strong>four)</strong> more days, until May 18th, 2022, to heed the <strong><a href=\"https://make.wordpress.org/test/2022/04/28/fse-program-testing-call-14-rallying-recipe-reviewers/\">FSE Program Testing Call #14: Rallying Recipe Reviewers</a>.</strong> It&#8217;s also available in <em>Italian.</em> <em>(<a href=\"https://it.wordpress.org/team/2022/05/11/chiamata-per-il-test-del-programma-fse-14-raduniamo-i-recensori-di-ricette/\">Raduniamo i recensori di ricette</a>)</em>, thanks to <a href=\"https://twitter.com/succoallapera\"><strong>Piermario Orecchioni</strong></a></p>\n\n\n\n<p><strong>Anne McCarthy</strong>, <strong>Courtney Robertson</strong> and <strong>Sarah Snow</strong> tested all the features mentioned in the call for testing together in a zoom video meeting. If you don&#8217;t have time to do the testing yourself, but want to know what&#8217;s in the pipeline you can watch this on WordPress.TV: <strong><a href=\"https://wordpress.tv/2022/05/02/testing-wordpress-together-new-interactivity-features-for-recipe-websites/\">Testing WordPress Together: New Interactivity Features for Recipe&nbsp;Websites </a></strong></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Vikas Singhal</strong> <a href=\"https://twitter.com/vikasprogrammer/status/1524633033764184066\">announced</a> that <a href=\"http://Gutena.io\">their block theme <strong>Gutena</strong></a> already supports Webfonts API that allows you to host fonts locally, with a single line in theme.json. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his latest Building with Blocks post, <strong>Justin Tadlock</strong> walks you through the process of <a href=\"https://wptavern.com/how-to-build-coupon-cards-with-wordpress-blocks\"><strong>How To Build Coupon Cards With WordPress Blocks</strong></a>. Get ready for the 2022 eCommerce season for Black Friday and Cyber Monday in the fall. Or for any other eCommerce sale you might have in mind. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/2ndKauBoy\">Bernhard Kau</a></strong>, who is not only co-organizer of this year&#8217;s WordCamp Europe but also a plugin developer, just released a new plugin: <a href=\"https://wordpress.org/plugins/campaign-archive-block-for-mailchimp/\"><strong>Campaign Archive Block for Mailchimp</strong></a></p>\n\n\n\n<p>After adding an API key in the settings, the block displays the latest newsletters from your Mailchimp account. Kau has added some display settings and a control for the numbers of campaigns to be listed. This way, you keep your visitors for one more page on your site before they head off to read you latest campaigns. A plugin that does one thing and only one thing. The best kind of block. </p>\n\n\n\n<img />\n\n\n\n<p>It&#8217;s a solid first version and if you are interesting in a short twitter exchange between Kau and myself,  on possible improvements, <a href=\"https://twitter.com/2ndKauBoy/status/1525545215326658561\">you can follow along here</a>. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Munir Kamal</strong>, developer of the EditorPlus plugin, demonstrates in this video <a href=\"https://www.youtube.com/watch?v=v52gIxyDXzg\">How to Create Animated Search Box in Gutenberg</a>. All through the plugin and a short CSS snippet added to the backend for rendering the animation. Pretty nifty! </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Justin Tadlock</strong> reviewed one of the newest block themes: <a href=\"https://wptavern.com/catch-fse-is-a-bold-business-friendly-wordpress-block-theme\"><strong>Catch FSE Is a Bold, Business-Friendly WordPress Block Theme</strong></a></p>\n\n\n\n<h2 id=\"3-developing-custom-blocks-and-tools\">Developing Custom Blocks and Tools</h2>\n\n\n\n<p>Core contributor and Gutenberg developer <strong><a href=\"https://twitter.com/get_dave\">Dave Smith</a></strong>, gave a presentation recently on <a href=\"https://www.youtube.com/watch?v=Bqj2J1QYYoI\"><strong>Gutenberg Now, Next and How to Use it Better Today</strong></a>. </p>\n\n\n\n<p>He spoke to developers at the WordPress agency <a href=\"https://twitter.com/cornershop\">CornerShop Creative</a> who are building sites for nonprofits, small and large. The video description has time stamps so you can jump to the relevant topics. Smith also points out that the second half of the presentation was Live Q &amp; A and he provided answers to questions, you might have too. <a href=\"https://aheadcreative.co.uk/wp-content/uploads/2022/05/Cornershop-Creative-Presentation-2022.pdf\">The slidedeck is available online.</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Liam Giddy </strong>ventured into <a href=\"https://www.advancedcustomfields.com/blog/build-business-listing-acf-blocks-query-loop-block-theme/\">building a business listing using ACF Blocks and the Query Loop Block with a block theme</a> and created this tutorial. It&#8217;s great step  on the journey to switch to block theme development.</p>\n\n\n\n<h2 id=\"6-upcoming-word-press-social-learning-meetups\">Upcoming WordPress Social Learning Meetups</h2>\n\n\n\n<p><strong>May 18, 2022 &#8211; 6 pm EDT / 22:00 UTC</strong><br /><strong><a href=\"https://www.meetup.com/wordpress-social-learning/events/285518331/\">Sticky Styling: Getting Colors, Fonts, and Sizes to Stick</a></strong> w/ Sarah Snow</p>\n\n\n\n<p><strong>May 19, 2022 5pm EDT / 21:00 UTC</strong><br /><a href=\"https://www.meetup.com/wordpress-social-learning/events/285412812/\"><strong>Using the Navigation Block</strong></a>&nbsp;w/ Wes Theron</p>\n\n\n\n<p><strong>May 19, 2022 &#8211; 2pm EDT / 18:00 UTC</strong><br /><strong><a href=\"https://www.meetup.com/wordpress-social-learning/events/285518331/\">Builder Basics: Working with Templates in Full Site Editing (Part 3</a></strong><a href=\"https://www.meetup.com/wordpress-social-learning/events/285518274/\"><strong>)</strong></a> w/ Nick Diego</p>\n\n\n\n<p><strong>May 23, 2022 1pm EDT / 17:00 UTC</strong> <br /><strong><a href=\"https://www.meetup.com/wordpress-social-learning/events/285798142/\">Hello Blocks! Coding a custom block</a></strong> w/ Ryan Welcher</p>\n\n\n\n<p><strong>May 25, 2022 &#8211; 7pm EDT / 23:00 UTC </strong><br /><strong><a href=\"https://www.meetup.com/wordpress-social-learning/events/285577455/\">Design With Me: Create a Simple Website for your Small Business</a></strong> w/ Sarah Snow</p>\n\n\n\n\n<p><em>Featured Image: Skyline of Chicago by Birgit Pauli-Haack (Nov 2021)</em></p>\n\n\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 14 May 2022 19:47:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"WPTavern: WordSesh 2022 Kicks Off Monday, May 16, Featuring a World-Class Speaker Lineup and Hands-On Workshops\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=134352\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"https://wptavern.com/wordsesh-2022-kicks-off-monday-may-16-featuring-a-world-class-speaker-lineup-and-hands-on-workshops\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4797:\"<p><a href=\"https://wordsesh.com/\">WordSesh 2022</a>, the live, virtual conference for WordPress professionals, is right around the corner. The event runs from May 16â€“20, 2022. While previous WordSesh events have always been high quality, this particular edition is jam-packed with a diverse selection of industry experts &#8211; many who have been building high impact projects with WordPress for years.</p>\n\n\n\n<img />A sampling of the speakers for WordSesh 2022\n\n\n\n<p>This year&#8217;s WordSesh will feature 20 sessions, 3 keynotes, and two in-depth workshops. On May 19, at 8PM EDT, frontend developer Ellen Bauer from Elma Studio will guide users in a workshop on how to &#8220;Convert a Classic Theme to a BlockÂ Theme.&#8221; If you are a theme developer who hasn&#8217;t taken the leap into block themes, this workshop will get you started:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Together, we will set up the header and footer in a block theme, learn to work with Templates and Template Parts, set up page contents, and dive into how Styles work.</p><p>Throughout the workshop we&#8217;ll discuss which website projects can benefit from the new FSE features the most, what limitations we are still facing, and how the future of WordPress themes will most likely look.</p></blockquote>\n\n\n\n<p>The second workshop will be given by Tiffany Bridge, Product Manager at Nexcess, on May 20. She will give attendees an overview of how to prepare their web properties for a high traffic event.</p>\n\n\n\n<p>One of the most exciting sessions on the schedule is the keynote on May 19. The team that rebuilt <a href=\"https://www.whitehouse.gov/\">WhiteHouse.gov</a> on WordPress in just six months will join the event to talk about the project. Other topics on the schedule include custom block development, headless WordPress, hacking, client services, performance, accessibility, and user experience.</p>\n\n\n\n<p>In 2021, Brian Richards, founder of <a href=\"https://wpsessions.com/\">WPSessions.com</a> and organizer of WordSesh, has transitioned the event to be more inclusive of timezones around the world. This year&#8217;s event will happen over the course of four days, with time offsets that accommodate a global audience. The first block of sessions is optimally timed for attendees across Asia and the Pacific. Day 2 is designed for attendees across Europe, Middle East, and Africa, and day 3 will cater to attendees in the Americas, Iceland, and Greenland.</p>\n\n\n\n<p>&#8220;In 2019 and 2020 I ran entirely separate events for each region, but in 2021 I brought them back together as a single event,&#8221; Richards said. &#8220;I found it was a lot easier to get people excited about and paying attention to one big WordSesh event.</p>\n\n\n\n<p>&#8220;It feels more inclusive this way, even though the separate events were also open to attendees from around the world. I think thatâ€™s primarily because there isÂ <em>something</em>Â that is conveniently scheduled for someone no matter where they live. And with a single event, watching the recordings feels more akin to catching up on the pieces you missed rather than trying to watch talks for an event that was designed for somebody else.&#8221;</p>\n\n\n\n<p>The scheduling modifications seem to be working, as the last event in 2021 hosted 3,600 attendees, making WordSesh the second largest WordPress community event behind WCEU 2020. </p>\n\n\n\n<p>Richards continues to curate a high-quality speaker lineup year after year, through the help of attendee surveys, which reveal where people are spending their time, attention, and money. WordSesh pays its speakers and Richards also invests time for personal outreach. Through this combination, he said the schedule fills up fast.</p>\n\n\n\n<p>&#8220;I think paying the speakers certainly helps with recruiting such incredible presenters, but I imagine thatâ€™s more icing on the cake for most speakers,&#8221; Richards said. &#8220;Probably the biggest draw is the history WordSesh now has (this is the 9th year and 12th event, officially), helped by the ever-increasing reach of my own personal network.&#8221;</p>\n\n\n\n<p>Until 2021, Richards had been running the events entirely by himself. Last year he hired a part-time assistant and also started contracting out the video editing, which has helped him keep the event running more efficiently. It is quite a feat to have hosted WordSesh so many years running when many comparable virtual WordCamps of this caliber often rely on a large team of volunteers and organizers. </p>\n\n\n\n<p><a href=\"https://wordsesh.com/register/\">Registration for WordSesh</a> is still open and it&#8217;s <strong>free</strong> for anyone to attend. The event will be live captioned by real people and all sessions will be recorded for purchase later on WPSessions.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 May 2022 19:35:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Post Status: WordPress Podcast and Video Picks for the Week of May 8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=97445\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://cdn.poststatus.com/wordpress-podcast-and-video-picks-for-the-week-of-may-8/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2661:\"<div class=\"has-background has-theme-palette-7-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Jane Genova on overcoming ageism. Courtney Robertson on Learn #WordPress. 10 lesser-known browser APIs. PHP encryption. Free FSE theme. </p></div>\n\n\n<h2 id=\"h-my-podcast-picks\">My Podcast Picks <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /></h2>\n\n\n\n<ul><li><strong>Freelancing After 50</strong>: <strong>Jane Genova</strong> <a href=\"https://anchor.fm/freelancingafter50/episodes/Episode-3-Interview-with-Jane-Genova--Veteran-Freelancer--One-of-the-Smartest-People-I-Know-e1id3lk\">on dealing with marketplace age bias</a> and her &#8220;reset&#8221; â€” shifting her services and mindset to fit prevailing marketing forces.&nbsp;</li><li><strong>WP Tavern Jukebox:</strong> <strong>Courtney Robertson</strong> <a href=\"https://wptavern.com/podcast/26-courtney-robertson-on-how-the-learn-project-is-educating-people-about-wordpress\">discusses</a> how the <strong>Learn Project</strong> educates people about WordPress.</li><li><strong>Syntax.fm</strong>: <a href=\"https://syntax.fm/show/456/10-nifty-browser-apis\">10 browser APIs</a> you might not be familiar with.</li></ul>\n\n\n\n<h2 id=\"h-my-video-picks\">My Video Picks <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f4fa.png\" alt=\"?\" class=\"wp-smiley\" /></h2>\n\n\n\n<ul><li><strong>Best Ways To Encrypt Passwords, Keys, and More With PHP</strong>: <strong>Thomas McGee</strong> from <strong>Delicious Brains</strong> <a href=\"https://www.youtube.com/watch?v=ekesz19MhOQ\">covers hashing, secret key encryption, and envelope encryption</a>.</li><li><strong>Bricksy</strong>: A <a href=\"https://www.youtube.com/watch?v=Z_VScu1KaI0\">video tour</a> of a recently released (and free) full site editor theme.</li></ul>\n\n\n\n<div class=\"wp-container-1 wp-block-group has-theme-palette-8-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Get our weekly WordPress community news digest</strong> â€” Post Status\' <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> â€” also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f48c.png\" alt=\"?\" class=\"wp-smiley\" />  </p>\n\n\n\n<p>And don\'t miss <strong>the latest updates from the people making WordPress</strong>. We\'ve got you covered with <a href=\"https://poststatus.com/make-wordpress/\">This Week at WordPress.org</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/2699.png\" alt=\"âš™\" class=\"wp-smiley\" /></p>\n</div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 May 2022 19:12:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"David Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"Post Status: Post Status Comments (No. 9) â€” The State of WordPress Market Share\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=97556\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://poststatus.com/the-state-of-wordpress-market-share/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5862:\"<h2 id=\"h-in-order-for-wordpress-to-win-the-rest-of-the-competition-doesn-t-have-to-lose-david-bisset\">â€œIn order for WordPress to win, the rest of the competition doesnâ€™t have to lose.â€ â€” David Bisset</h2>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-drop-cap\">How should the WordPress community react to <a href=\"https://poststatus.com/does-market-share-matter/\">the first recorded dip in market share</a>? Is a small decline something to be concerned about or more of an opportunity to examine what defines WordPress as a successful platform? Are the Gutenberg project, Full Site Editing, other core features, or competitor innovations important factors? Should some organizations in the WordPress space be playing a bigger role as contributors? </p>\n\n\n\n<p>Special guests <strong>Joost de Valk</strong>, <strong>Alex Denning</strong>, and <strong>Jessica Frick</strong> discuss these subjects with host <strong>David Bisset</strong> â€” and near the end <strong>Ben Gabler</strong> joins in.</p>\n\n\n\n\n\n\n\n<p class=\"has-background\"><strong>Post Status Comments</strong> <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f4ac.png\" alt=\"?\" class=\"wp-smiley\" /> is a stage for WordPress professionals to exchange ideas and talk about recent topics and trends.<br /><br /><a href=\"https://poststatus.com/podcast/comments/\">Browse past episodes</a> and subscribe to <a href=\"https://poststatus.com/podcasts/\">our podcasts</a> on&nbsp; <a href=\"https://open.spotify.com/show/1m3xwXbe0MG5BzFVPtB0A7\">Spotify</a>, Amazon Music, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\">Google Podcasts</a>, <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">iTunes</a>, <a href=\"https://castro.fm/podcast/c53552c6-1ee0-4fc4-9de4-08ed6bf1ee4d\">Castro</a>, <a href=\"https://www.youtube.com/c/PostStatus\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, <a href=\"https://player.fm/series/wordpress-post-status-podcasts\">Player.fm</a>, <a href=\"https://pca.st/05rR\">Pocket Casts</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\">Simplecast</a>, or get them by <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<h3 id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f517.png\" alt=\"?\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul><li><a href=\"https://joost.blog/wordpress-market-share-shrinking/\">WordPressâ€™ market share is shrinking</a></li><li><a href=\"https://wpreview.io/wordpress-discontinued-ipod/ https://wpreview.io/wordpress-discontinued-ipod/\">What WordPress has to do with the Discontinued iPod</a></li><li><a href=\"https://getellipsis.com/blog/105m-searched-wordpress-terms/https:/getellipsis.com/blog/105m-searched-wordpress-terms/\">A 0.4% drop in WordPress CMS market share doesnâ€™t really matter</a> (Article)</li><li><a href=\"https://twitter.com/AlexDenning/status/1524743992524427265\">Alex Denning WordPress\' Market Share Twitter Thread</a></li><li><a href=\"https://twitter.com/AlexDenning/status/1524743999390593026\">Continuation of Alex Denning WordPress\' Market Share Twitter Thread</a></li><li><a href=\"https://twitter.com/richard_tabor/status/1524731039112962050\">Rich Tabor reply on Full Site Editing on Twitter</a></li><li><a href=\"https://twitter.com/nickmdiego/status/1525066224828354560\">Nick Diego </a><a href=\"https://twitter.com/richard_tabor/status/1524731039112962050\">reply on Full Site Editing</a> <a href=\"https://twitter.com/nickmdiego/status/1525066224828354560\">on Twitter</a> Part 1</li><li><a href=\"https://twitter.com/nickmdiego/status/1525074482976772096\">Nick Diego reply on Full Site Editing on Twitter</a> Part 2</li><li><a href=\"https://getellipsis.com/blog/105m-searched-wordpress-terms/\">105,495,450 searches for WordPress terms in the last 12 months, up 7.5% year-on-year</a><a href=\"https://wptavern.com/clarity-ad-blocker-for-wordpress-announced-receives-mixed-reactions\"></a></li></ul>\n\n\n\n<div class=\"wp-block-columns has-theme-palette-8-background-color has-background\" id=\"WP-Engine\">\n<div class=\"wp-block-column\">\n<h3 id=\"sponsor-bluehost\"><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststat.us/wpengine/\">WP Engine</a></h3>\n\n\n\n<p><strong>WP Engine</strong> is <a href=\"https://poststat.us/wpengine/\">the WordPress Digital Experience Platform that drives your business forward faster</a>. WP Engine makes WordPress easier and faster. It does the heavy lifting so you can focus on your core business and win online.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center\">\n<div id=\"WP-Engine\" class=\"wp-block-image\"><a href=\"https://poststat.us/wpengine/\"><img width=\"112\" height=\"151\" src=\"https://cdn.poststatus.com/wp-content/uploads/2022/01/WPE-LOGO-S-Default.svg\" alt=\"WP Engine\" class=\"wp-image-95924\" title=\"WP Engine\" /></a></div>\n</div>\n</div>\n\n\n\n<h3 id=\"follow-our-panelists-and-post-status-on-twitter-a4ffc805-90f1-41dc-9135-61b3ff20cb40\">Follow Our Panelists (and Post Status) on Twitter:</h3>\n\n\n\n<ul><li><a href=\"https://twitter.com/jdevalk\">Joost de Valk</a> (Twitter)</li><li><a href=\"https://twitter.com/AlexDenning\">Alex Denning</a> (Twitter)</li><li><a href=\"https://twitter.com/renewabelle\">Jessica Frick</a> (Twitter)</li><li><a href=\"https://twitter.com/ben_gabler\">Ben Gabler</a> (Twitter)</li><li><a href=\"https://twitter.com/dimensionmedia\">David Bisset</a> (Twitter)</li><li><a href=\"https://twitter.com/post_status\">Post Status </a>(Twitter)<a href=\"https://twitter.com/post_status\" target=\"_blank\" rel=\"noreferrer noopener\"></a></li></ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 May 2022 18:30:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"David Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"Post Status: Post Status Upgrade â€” Zen and the Art of Lockpicking\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=97528\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://poststatus.com/post-status-upgrade-zen-and-the-art-of-lockpicking/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2550:\"<p class=\"has-background\">Learn new skills and build your knowledge to enhance your career in WordPress! <strong>Post Status Upgrade</strong> is an ongoing series of live workshops centered around a particular skill or learning activity.</p>\n\n\n\n<p class=\"has-drop-cap\">Watch Robert Rowley explain the basics of lock picking in this live, hands-on workshop for Post Status members that took place on May 5th, 2022. Watch as Robert teaches participants how to open locks, as well as their minds. He shares stories about emotional intelligence and the life cycle of skill practice from the beginner\'s mind to the expert\'s. You\'ll laugh at some entertaining mishaps Robert has had with lock picks!</p>\n\n\n\n<div class=\"wp-container-9 wp-block-group\"><div class=\"wp-block-group__inner-container\">\n<div class=\"wp-block-image\"><img width=\"132\" height=\"150\" src=\"https://cdn.poststatus.com/wp-content/uploads/2022/03/robert-snow-1-132x150.png\" alt=\"Robert Rowley\" class=\"wp-image-95165\" />Robert Rowley</div>\n\n\n\n<p><strong>Robert Rowley</strong> is <strong>Patchstack</strong>&#8216;s Security Advocate and has been picking locks since 2004. Between 2016 and 2019 Robert ran a retreat for his information security friends and colleagues called <strong>Disconnect Camp</strong>. This is where he first combined skills like lock picking with reflection on mental health, wellness, skill development and more.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-columns has-theme-palette-7-background-color has-background\">\n<div class=\"wp-block-column is-vertically-aligned-center\">\n<div id=\"StellarWP\" class=\"wp-block-image is-style-default\"><a href=\"https://poststat.us/stellarwp\"><img width=\"300\" height=\"300\" src=\"https://cdn.poststatus.com/wp-content/uploads/2022/02/stellarwp-black-1-300x300.png\" alt=\"StellarWP\" class=\"wp-image-93207\" title=\"StellarWP\" /></a></div>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<p class=\"has-small-font-size\"><strong>StellarWP</strong> is a collective of WordPress innovators empowering business owners and creators with plugins and tools to help them thrive. We build great plugins, but we donâ€™t stop there; we continually challenge ourselves to keep innovating and improving. Our solutions include <a href=\"https://poststat.us/stellarwp\"><strong>the most trusted names in WordPress</strong></a>, with more than 2.5 Million installs. Since 2021, weâ€™ve grown to encompass seven brands and dozens of plugins. StellarWP is part of the Liquid Web family of brands. <br /></p>\n</div>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 May 2022 18:15:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"David Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Post Status: Post Status Notes #498\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=97447\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://poststatus.com/post-status-notes-498/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12021:\"<div class=\"wp-container-3 wp-block-group has-theme-palette-8-background-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Are we up or down? What should happen when a license expires? Is the block protocol worth it? Driesnote 2022. WP Engine expands. Becoming a better writer. Best backup solutions. Define your role. Reaktiv wins a spot in Inc\'s Best Workplaces. Open Source JobHub. Our passwordless future. </p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_f5fe16-0a\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>Joost de Valk</strong>&#8216;s latest <a href=\"https://twitter.com/jdevalk/status/1524354975089967105\">WordPress market share analysis</a> has led to a lot of good questions that are hard to answer without better data and ways to assess it. Are we going up or down? <strong>David Bisset</strong> <a href=\"https://poststatus.com/does-market-share-matter/\">offered his take</a> and hosted a community conversation on the <a href=\"https://poststatus.com/the-state-of-wordpress-market-share/\">State of WordPress Market Share</a>.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8fc5e9-38\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>Munir Kamal</strong> explains <a href=\"https://gutenberghub.com/create-scrollable-image-gallery-block/\">how to create a scrollable image gallery block</a> in the editor with an already scaffolded Gutenberg block and some basic <strong>React</strong> knowledge.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_d1e0d5-c8\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>Apple</strong>, <strong>Google</strong>, and <strong>Microsoft</strong> have taken <a href=\"https://fidoalliance.org/apple-google-and-microsoft-commit-to-expanded-support-for-fido-standard-to-accelerate-availability-of-passwordless-sign-ins/\">another step towards a possible passwordless future</a>. This applies to both apps and websites, so I\'m looking forward to logging into a WordPress site without entering a password.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_c0fe17-01\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>Aleksandar Vucenovic</strong> <a href=\"https://poststatus.slack.com/archives/C02GALGDLLA/p1651854889972039\">announced</a> in <strong>Post Status Slack</strong> <a href=\"https://woocommerce.com/products/pixel-manager-pro-for-woocommerce/\">the launch</a> of <strong>Pixel Manag</strong>er for <strong>WooCommerce</strong>, an extension that tracks store visitors with tracking pixels in the standard way but with &#8220;more functional layers that increase measurement accuracy.&#8221; </p>\n\n\n\n<p>Pixel Manager also finds and automatically fixes or gives you guidance about &#8220;problems in your shop setup that might lower or prevent accurate tracking.&#8221;</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_0d7648-0a\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>Linux</strong> <strong>New Media</strong> has launched <strong><a href=\"https://opensourcejobhub.com/\">Open Source JobHub</a></strong>, a <a href=\"https://www.zdnet.com/article/a-new-job-site-just-for-open-source-jobs-opens-its-doors/\">job site just for open source jobs</a>.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_574e02-81\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>Patchstack</strong> has <a href=\"https://patchstack.com/articles/winners-of-wordpress-bug-hunt-2021/\">announced the winners</a> of their 2021 <strong>WP Bug Hunt</strong>, which resulted in &#8220;more than 1000 security reports and paid out $17,450 USD as cash&#8221; in bounties.</p>\n\n\n\n<p>In<strong> Post Status Slack</strong>, Oliver <a href=\"https://poststatus.slack.com/archives/CHNM7Q7T8/p1652276299830169\">noted</a> they\'ve <a href=\"https://patchstack.com/alliance/\">launched a new</a> <strong>Patchstack Alliance</strong> site where you can learn about &#8220;some new special bounties&#8221; and how to get into the hunt yourself! Get in touch with Patchstack to be part of the next WP Bug Hunt challenge.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_ba507b-8d\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p>Congrats to <strong>Reakitv</strong>, a <strong>WordPress VIP</strong> Partner, for becoming one of <strong>Inc</strong>&#8216;s <a href=\"https://www.inc.com/profile/reaktiv\">Best Workplaces honorees</a> for 2022.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_0b5b4c-f5\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>Neil Thanedar</strong> thinks <a href=\"https://neilthanedar.com/we-need-a-middle-class-for-startups/\">we need a &#8220;middle class&#8221; for startups</a> â€” those with $10M to $1B USD in annual revenue. </p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8abeb8-e9\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>Eric Karkovack</strong> added to <a href=\"https://speckyboy.com/wordpress-theme-plugin-license-expires/\">the conversation about WordPress theme and plugin license expirations</a>. Eric believes there\'s a middle ground between supporting non-paying customers for free and making the user experience worse if a plugin isn\'t renewed:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>&#8220;Software developers should be able to convey the importance of license renewals. But they should also make their intentions crystal clear&#8230; Users should know a developerâ€™s policy <em>before</em> they make a purchase.&#8221;</p></blockquote>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_bac61d-75\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>Hugh Lashbrooke</strong> â€” who is <strong>Head of Community Education</strong> at <strong>Automattic</strong> â€” shared <a href=\"https://www.linkedin.com/feed/update/urn:li:activity:6929625424058609664/\">how he wrote his job description and invented the title for his role</a>. Hugh advises, &#8220;If you want to change your career path, figure out what that looks like for you in your context and push for it â€” advocate for yourself and make it happen.&#8221;</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_e8c5ab-de\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>Leonardo Losoviz</strong> wraps up his investigation of the possible benefits and costs to WordPress if it adopts the <strong>Block Protocol</strong>. While he feels the attempt at a standard is a &#8220;wonderful idea,&#8221; Leonardo has come to the conclusion <a href=\"https://masterwp.com/would-wordpress-be-better-off-by-joining-the-block-protocol/\">it might not be worth it</a>.</p>\n\n\n\n<p>Check out Leonardo\'s conversation with <strong>David Bisset</strong> on <strong>Post Status Excerpt</strong> to get some background on the Block Protocol along with Leonardo\'s first thoughts about it.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_7eedc0-c8\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p>If you are looking for a backup plugin, then <a href=\"https://deliciousbrains.com/best-wordpress-backup-plugin/\">this recent product comparison</a> from <strong>Mike Davey</strong> is worth a read. </p>\n\n\n\n<p>My preference is for <a href=\"https://twitter.com/dimensionmedia/status/1524103981160714240\">server-side backups</a>, but Mike raises a good point about how we can\'t assume any backup is 100% reliable if we haven\'t tested them. The bottom line is, the more important the site, the more backup plans you should have in place.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_1c4f57-34\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>DrupalCon</strong> was held in <strong>Portland</strong> at the end of April. I\'ve always enjoyed watching <strong>Drupal</strong> founder <strong>Dries Buytaert</strong>&#8216;s &#8220;Driesnotes,&#8221; which are his keynote speeches at DrupalCons â€”similar to Matt\'s &#8220;<a href=\"https://www.youtube.com/watch?v=Ig676RzJbLo&list=PLpeDXSh4nHjRye9v5rA62RG2Gg6AgwAds&index=2&t=4s\">State of the Word</a>&#8221; talks. They\'re full of interesting things to learn about this sister CMS project. </p>\n\n\n\n<p>The <a href=\"https://www.youtube.com/watch?v=Ig676RzJbLo\">2022 Driesnote</a> is available on <strong>YouTube</strong> right now.</p>\n\n\n\n<p>Big Drupal news for 2022: <strong>Drupal 10</strong> is coming out later this year, and it <a href=\"https://www.drupal.org/about/core/blog/drupal-10-will-require-php-81\">will require PHP 8.1</a>.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_057bb2-d9\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>WP Engine</strong> continues to expand! They\'ve added <a href=\"https://martechseries.com/technology/wp-engine-unveils-new-omaha-office/\">a new office</a> in <strong>Omaha</strong> where <strong>Flywheel</strong> is based. Flywheel <a href=\"https://cloud.google.com/customers/flywheel\">moved onto</a> <strong>Google Cloud</strong> a few years ago around the time Google\'s <strong>Council Bluffs</strong> <a href=\"https://www.google.com/about/datacenters/locations/council-bluffs/\">datacenter</a> came online across the river in Iowa. </p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_3adab1-6b\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>Heinrich Hartmann</strong> has <a href=\"https://www.heinrichhartmann.com/posts/writing/\">some excellent suggestions</a> for engineers and really everyone who wants to become a better and more productive writer. Some tips include knowing your audience, making your text skimmable, and leveraging small writing tasks as exercise. </p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_76a8c2-b0\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p>Get <a href=\"https://poststatus.com/wordpress-podcast-and-video-picks-for-the-week-of-may-8/\">David\'s picks for the week</a> from WordPress and web tech podcasts and videos.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_e17dc8-44\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-container-4 wp-block-group has-theme-palette-7-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<h2 id=\"h-do-you-enjoy-our-weekly-notes\"><strong>Do you enjoy our weekly notes? </strong></h2>\n\n\n\n<p>Get them and more in Post Status\' <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a>. We gather WordPress and WooCommerce news along with significant writing, videos, and podcast episodes from the WordPress community and beyond. Don\'t miss the latest updates from the people making WordPress in our <a href=\"https://poststatus.com/make-wordpress/\">This Week at WordPress.org</a> summaries. It\'s all in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>! <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f48c.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 May 2022 17:25:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"David Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"Post Status: Does Market Share Matter?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=97600\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://poststatus.com/does-market-share-matter/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6856:\"<div class=\"wp-container-7 wp-block-group\"><div class=\"wp-block-group__inner-container\">\n<p class=\"has-small-font-size\">By <a href=\"https://poststatus.com/author/david-bisset/\">David Bisset</a> and <a href=\"https://poststatus.com/author/dan-knauss/\">Dan Knauss</a> â€¢ May 13, 2022 <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f5d3.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Is the WordPress market share beginning to shrink? How do we assess market share? What metrics matter? It\'s time we asked these questions. </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-drop-cap\">This week brought some attention to WordPress\'s market share, at least as it gets reported by <strong>W3techs</strong>. For the first time, the WordPress market share <a href=\"https://w3techs.com/technologies/history_overview/content_management/all\">appears to have declined</a> â€” by 0.4% since February this year. David noticed this as soon as the first numbers were published and <a href=\"https://twitter.com/dimensionmedia/status/1518633952906461185\">tweeted about it on April 25th</a>. This week, <strong>Joost de Valk</strong> <a href=\"https://joost.blog/wordpress-market-share-shrinking/\">broke down the numbers</a> and gave his take on the causes of the decline.</p>\n\n\n\n<p>You should read the whole thing, but in Joost\'s opinion, the main cause of this multi-month trend is &#8220;out innovation&#8221; from <strong>Wix</strong> and <strong>Squarespace</strong>, even though both have had almost flat growth recently. Joost feels these centralized platforms can update customer sites with enhancements and best practices faster than WordPress can.</p>\n\n\n\n<h2 id=\"h-is-pointing-fingers-at-full-site-editing-fair\">Is Pointing Fingers at Full Site Editing Fair?</h2>\n\n\n\n<p>Unsurprisingly, Full Site Editing (as distinct from Gutenberg / the block editor) has come in for a lot of renewed criticism, with Joost leading the pack:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>&#8220;The Full Site Editing project is simply taking far too long. Thatâ€™s causing the rest of the platform to lag behind current web trends.&#8221;</p></blockquote>\n\n\n\n<p><a href=\"https://twitter.com/jdevalk/status/1524354975089967105\">Others have suggested one or more primary causes</a>: the whole Gutenberg project, COVID, loss of in-person events, emphasis on PHP, emphasis on React/JavaScript, a decline in volunteering, and not enough core contributors. Sure, these are all possible influences in any downward trend. But it\'s an avalanche of anecdotes, speculation, axes to grind â€” and not a few potentially useful insights.</p>\n\n\n\n<p>A popular and reasonable opinion is that competing publishing platforms can handle some (typically simpler) use cases faster or easier than WordPress. If you don\'t care about the tool you use (or owning your own content, the GPL, open source, etc.) then WordPress isn\'t the first choice quite as clearly as it used to be for some use cases, like blogging or simple websites.</p>\n\n\n\n<h2>In Context, an Overreaction?</h2>\n\n\n\n<p>The global economic context right now is one of alarm over recession and &#8220;stagflation&#8221; indicators â€” flat or negative growth plus inflation. Many other CMS platforms are trending down or flattening in growth too. Under these conditions, a tiny 0.4% decline shouldn\'t ring any alarm bells.</p>\n\n\n\n<p>But as you can imagine (<a href=\"https://twitter.com/dimensionmedia/status/1524405251733921793\">and as David predicted</a>), many people are quick to offer dramatic opinions, but for others, it\'s an opportunity for the WordPress community to do some self-examination. </p>\n\n\n\n<h2>Is WordPress the iPod or the iPhone?</h2>\n\n\n\n<p><strong>Joe Casabona</strong> compares WordPress to <a href=\"https://wpreview.io/wordpress-discontinued-ipod/\">the discontinued iPod</a> â€” an innovative breakthrough in its day that eventually became obsolete. </p>\n\n\n\n<p>We believe WordPress <a href=\"https://twitter.com/dimensionmedia/status/1435675442200162313\">might be closer to the iPhone</a>, however. Growth stops at some point for a dominant player that is still winning. The WordPress community should stop obsessing over growth and using it as our only measure of health and success. </p>\n\n\n\n<p><strong>Brian Coords</strong> takes a similar view and suggests <a href=\"https://masterwp.com/wordpress-needs-to-start-thinking-like-a-platform-again/\">WordPress should start thinking like a platform again</a>.</p>\n\n\n\n<h2>What do we know anyway?</h2>\n\n\n\n<p>That\'s not to say a reported 0.4% drop over 2-3 months is clearly a decline at all. Will it prove a lasting trend? </p>\n\n\n\n<p>As <strong>Alex Denning</strong> <a href=\"https://getellipsis.com/blog/wordpress-shrinking-maybe/\">observes</a>, year over year <strong>W3Techs</strong> shows the overall WordPress market share is <em>up</em> 1.7%. Moreover, W3techs has been our only measure of CMS market share. Their primary data comes from <strong>Alexa</strong> rankings, <a href=\"https://www.coywolf.news/seo/amazon-alexa-rank-end-of-life/\">a defunct service</a> as of this month. Alex lays his finger on our biggest challenge:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>&#8220;We had no idea why the market share was growing, and we accordingly have no idea why itâ€™s shrinking.&#8221;</em></p></blockquote>\n\n\n\n<h2>We need to know! How can we find out?</h2>\n\n\n\n<p>There are many other things alongside market share that we ought to be researching, like indicators of the project and the community\'s health â€” the whole ecosystem and specific parts of it.</p>\n\n\n\n<p><strong>Jordi Cabot</strong> asked earlier this year, <a href=\"https://poststatus.com/can-five-for-the-future-fund-wordpress-research/\">What if Five for the Future funded WordPress research</a>? He also put out this call for proposals: <a href=\"https://poststatus.com/can-five-for-the-future-fund-wordpress-research#h-call-for-proposals-what-are-the-most-important-questions-to-ask\">What are the most important questions to ask</a>? </p>\n\n\n\n<h2>Tired of wandering in the dark?</h2>\n\n\n\n<p>We\'d love to hear your ideas about the questions we should be asking, the metrics we need, and how we can get them. Send them to us or bring them into <strong>Post Status Slack.</strong></p>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\"><strong>Post Status</strong> hosted and recorded a community conversation about the <a href=\"https://poststatus.com/the-state-of-wordpress-market-share/\">State of the WordPress Market Share</a> as a <strong>Comments</strong> episode on <strong>Twitter Spaces</strong> on May 13th with <strong>Joost</strong>, <strong>Alex</strong>, and <strong>Jessica Frick</strong> as invited guests.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 May 2022 17:06:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"David Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"Do The Woo Community: WooBits: Dropping My .02% About WordPress Marketshare\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=71652\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://dothewoo.io/woobits-dropping-my-02-about-wordpress-marketshare/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:430:\"<p>In light of the recent article and discussion of the drop in the WordPress marketshare, well, I felt it my duty to weigh in, ever so small.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://dothewoo.io/woobits-dropping-my-02-about-wordpress-marketshare/\">WooBits: Dropping My .02% About WordPress Marketshare</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 13 May 2022 09:54:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WPTavern: A Farewell from Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=134249\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wptavern.com/a-farewell-from-justin-tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8067:\"<p class=\"has-drop-cap\">Around three years ago, I was at a crossroads. I had spent nearly my entire adult life and most of my professional career within the WordPress space. However, the responsibilities of being a solo theme/plugin shop owner were like a boulder upon my shoulders that I could no longer hold up. After 11 years in the business, I was ready to throw in the towel.</p>\n\n\n\n<p>My work was my life, and my life was my work. I was not sure if I even knew how to do anything else. I briefly considered returning to South Korea for another year-long stint teaching English as a second language. But, I had already spent years rebuilding my life and relationships back in my home state of Alabama. <em>Plus, I was not prepared to say goodbye to my cats for that long.</em></p>\n\n\n\n<p>The only other practical experience I had was gardening and farming work. I have spent many summers working watermelon fields and hauling hay under the heat of the Alabama sun, and I have piddled around in my own garden over the years. However, I was not in a financially stable position to start my own farm. It was too risky a proposition at that stage in my life.</p>\n\n\n\n<p>I was also not quite ready to let go of WordPress. There was more that I wanted to accomplish, but I still faced the reality of needing to move on from the place I was at or find some way to get more joy out of the work I was doing.</p>\n\n\n\n<p>It was not until a few months later that the writing position for WP Tavern opened. I was hesitant about it at first. I figured I had the credentials and experience to do the job, but daily writing, editing, and publishing would be unlike anything I had taken on before. Sarah Gooding, who has been the best colleague anyone could ask for, convinced me that I should pursue this job.</p>\n\n\n\n<p>It turned out to be one of the best things to ever happen to me.</p>\n\n\n\n<p>As I got into the swing of things and began to find my voice, I was once again genuinely happy to be involved with the WordPress project. Since I have been here, I have rekindled the flame I once had with our beloved platform.</p>\n\n\n\n<p>I have made wonderful friends along the way. It has been a blessing to have the Tavern and its readers in my life.</p>\n\n\n\n<p>Today, I am ready for a new challenge. I am stepping down from my role as a writer at WP Tavern.</p>\n\n\n\n<p>No, I am not ready to start that farm just yet. Y&#8217;all cannot get rid of me that easily. I will stick around the WordPress community for a while, but today is not about my new role. It is a celebration of the Tavern.</p>\n\n\n\n<p>I have published 647 stories and written 857 comments as of this post. I can only hope that, somewhere along the way, I have made an impact in some of your lives or work.</p>\n\n\n\n<p>As I leave, I have one request: be kind to one another.</p>\n\n\n\n<p>I believe we all want WordPress to be successful. We might have different opinions about how to make that happen. Sometimes, those ideas clash, but if we all treat one another with respect and have constructive discussions, things will work themselves out.</p>\n\n\n\n<p>To our readers, thank you for going on this journey with me.</p>\n\n\n\n<p>There are two remaining questions I want to answer before closing this chapter in my part of that journey. Feel free to continue reading. Otherwise, thank you for making it this far.</p>\n\n\n\n<h2>Writing About WordPress</h2>\n\n\n\n<img /><a href=\"https://wordpress.org/photos/photo/632620a981/\">Photo</a> by <a href=\"https://wordpress.org/photos/author/turtlepod/\">David Chandra Purnama</a>.\n\n\n\n<p>Someone messaged me a week or so into my employment at WP Tavern about writing for WordPress. They wanted to know how they could become a writer on WordPress-related topics and one day work in the field. At the time, I did not have a great answer to the question. Maybe I still do not, but I will take a crack at it.</p>\n\n\n\n<p>We might as well start with the advice of one of the most prolific writers in modern history, Stephen King. At the end of <em>The Stand</em>, one of my favorites from him, he answered this same question, and it has always resonated with me.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>When asked, &#8220;How do you write?&#8221; I invariably answer, &#8220;One word at a time,&#8221; and the answer is invariably dismissed. But that is all it is. It sounds too simple to be true, but consider the Great Wall of China, if you will: one stone at a time, man. That&#8217;s all. One stone at a time. But I&#8217;ve read you can see that mother&#8212; from space without a telescope.</p></blockquote>\n\n\n\n<p>I think he may be wrong about seeing the Great Wall from space (<em>Where&#8217;s a fact-checker when you need one?</em>), but it is still generally sound advice.</p>\n\n\n\n<p>I have been writing about WordPress for 17 years. Sometimes on my personal blog. At other times, I have taken one-off jobs. And, of course, I have written 100s of posts here at the Tavern. What has always helped me is sticking to topics I am passionate about. There are days when the job can be a grind (especially during slow news weeks), so you must love what you are doing to sustain any sort of career in writing.</p>\n\n\n\n<p>I have a B.A. in English with a secondary concentration in journalism. However, my education merely provided a solid foundation. It is not a prerequisite for doing the job.</p>\n\n\n\n<p>No one can teach you how to build those habits necessary for a sustainable career. They are too personal, and you can only figure out what works by practicing.</p>\n\n\n\n<p>No one can give you your voice. That is a discovery that only you can make, and writing is a discovery in and of itself.</p>\n\n\n\n<p>My advice to would-be writers is to give <a href=\"https://nanowrimo.org/\">National Novel Writing Month</a> a shot this November. It is a challenge to write 50,000 words in 30 days. I have won twice and hope to do it again this year. I guarantee that you will figure out everything you need to know about yourself as a writer if you push yourself through the challenge. It is OK to fail. Just dust yourself off and try again if you have your heart set on it.</p>\n\n\n\n<p>To the person who asked this question: I am sorry for not remembering your name. It has been over two years, and my memory is not what it once was. But, I hope you are reading now.</p>\n\n\n\n<h2>Spilling the Beans</h2>\n\n\n\n<img />Coffee Beans. <a href=\"https://wordpress.org/photos/photo/12961feeb9/\">Photo</a> by <a href=\"https://wordpress.org/photos/author/cagrimmett/\">Chuck Grimmett</a>\n\n\n\n<p>There is a question I get asked. <em>A lot.</em> Some of you probably already know what it is and have, perhaps, asked it or some variation of it yourself.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Does Matt dictate or control the content that we cover?</p></blockquote>\n\n\n\n<p>Since it is my last day on the job, I might as well let readers peek behind the curtain. And the answer is no.</p>\n\n\n\n<p><em>Sorry to let down our conspiracy-theory-loving readers, but the truth is just not that juicy.</em></p>\n\n\n\n<p>I always joke that I have only talked with &#8220;the boss&#8221; a handful of times while working here. That is pretty close to the truth (I have not actually kept count).</p>\n\n\n\n<p>From the day I arrived until today, I have had complete independence to thrive or fail by the result of my work. It felt like our small team had been left on an island to fend for ourselves at times. We must go through the same channels as other publications for information and have never been given special treatment.</p>\n\n\n\n<p>This level of autonomy is vital for journalistic integrity.</p>\n\n\n\n<p>The WordPress community will always need a publication where its writers have the independence to do their work without conflicts of interest. The Tavern has always been that place, and I do not expect it to change going forward.</p>\n\n\n\n<p>I appreciate that our readers have trusted our team to perform this job. It is a responsibility that has not been taken lightly. I am proud to have contributed in at least in some small way.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 May 2022 22:47:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"Post Status: Post Status Excerpt (No. 58) â€” Understanding Your Outsourcing Needs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=97290\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://poststatus.com/understanding-your-outsourcing-needs/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4506:\"<blockquote class=\"wp-block-quote\"><p>â€œMatching is key. &#8230;the right skills, the right availability, and the right temperament to join an agency\'s team to help them meet their goals.â€</p><cite>â€” Morayo Orija</cite></blockquote>\n\n\n\n<p class=\"has-drop-cap\">Have you ever considered outsourcing some aspect of your business? Have you hired a virtual assistant â€” for yourself or for your agency? David chats with <strong>Michael Short</strong> and <strong>Morayo Orija</strong> from <strong>GoWP</strong> about the value of outsourcing certain business operations. Learn what to look for, and why you might need to &#8220;let it go&#8221; and trust other people as you outsource parts of your business you can\'t handle.</p>\n\n\n\n<p><strong>Why This Matters:</strong> Most businesses and freelancers can\'t do it all â€” or they shouldn\'t. Whether it\'s accounting, content creation, or development â€” we sometimes have to acknowledge our limitations and weaknesses. Why not turn to trusted sources in the industry and WordPress community for help? If you\'ve thought about outsourcing as a possible solution for your business, you\'ll benefit from listening to Michael and Morayo.</p>\n\n\n\n\n\n\n\n<p class=\"has-background\">Every week <strong><a href=\"https://poststatus.com/podcast/the-excerpt/\">Post Status Excerpt</a></strong> will bring you important news and insights from guests working in the WordPress space. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /><br /><br />You can listen to <a href=\"https://poststatus.com/podcast/the-excerpt/\">past episodes</a> of <strong>The Excerpt</strong>, <a href=\"https://poststatus.com/category/post-status-podcasts/\">browse all our podcasts</a>, and donâ€™t forget to subscribe on <a href=\"https://open.spotify.com/show/1m3xwXbe0MG5BzFVPtB0A7\">Spotify</a>, Amazon Music, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\">Google Podcasts</a>, <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">iTunes</a>, <a href=\"https://castro.fm/podcast/c53552c6-1ee0-4fc4-9de4-08ed6bf1ee4d\">Castro</a>, <a href=\"https://www.youtube.com/c/PostStatus\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, <a href=\"https://player.fm/series/wordpress-post-status-podcasts\">Player.fm</a>, <a href=\"https://pca.st/05rR\">Pocket Casts</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\">Simplecast</a>, or by <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f3a7.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<h3 id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f517.png\" alt=\"?\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul><li><a href=\"https://michaelshort.pro/\"><strong>Michael Short</strong></a></li><li><a href=\"https://www.linkedin.com/in/morija\"><strong>Morayo Orija</strong></a></li><li><a href=\"https://givewp.com/\"><strong>GiveWP</strong></a></li><li><a href=\"https://twitter.com/dimensionmedia\" target=\"_blank\" rel=\"noreferrer noopener\"></a><a href=\"https://twitter.com/dimensionmedia\" target=\"_blank\" rel=\"noreferrer noopener\">David Bisset</a> (Twitter)</li><li><a href=\"https://twitter.com/dimensionmedia\" target=\"_blank\" rel=\"noreferrer noopener\"></a><a href=\"https://twitter.com/post_status\" target=\"_blank\" rel=\"noreferrer noopener\">Post Status</a> (Twitter)</li></ul>\n\n\n\n<div class=\"wp-block-columns has-theme-palette-8-background-color has-background\" id=\"WP-Engine\">\n<div class=\"wp-block-column\">\n<h3 id=\"sponsor-bluehost\"><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststat.us/wpengine/\">WP Engine</a></h3>\n\n\n\n<p><strong>WP Engine</strong> is <a href=\"https://poststat.us/wpengine/\">the WordPress Digital Experience Platform that drives your business forward faster</a>. WP Engine makes WordPress easier and faster. It does the heavy lifting so you can focus on your core business and win online.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center\">\n<div id=\"WP-Engine\" class=\"wp-block-image\"><a href=\"https://poststat.us/wpengine/\"><img width=\"112\" height=\"151\" src=\"https://cdn.poststatus.com/wp-content/uploads/2022/01/WPE-LOGO-S-Default.svg\" alt=\"WP Engine\" class=\"wp-image-95924\" title=\"WP Engine\" /></a></div>\n</div>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 May 2022 20:00:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"David Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"Do The Woo Community: Education, the LMS Ecosystem and WooCommerce with Ronnie Burt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=71635\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://dothewoo.io/education-the-lms-ecosystem-and-woocommerce/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:418:\"<p>Ronnie Burt from Sensei LMS shares insights and thoughts from his years of experience in education, WordPress, and WooCommerce</p>\n<p>The post <a rel=\"nofollow\" href=\"https://dothewoo.io/education-the-lms-ecosystem-and-woocommerce/\">Education, the LMS Ecosystem and WooCommerce with Ronnie Burt</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 May 2022 14:00:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"WPTavern: WordPress Community Attributes Declining Market Share to Performance Issues, Increased Complexity, and the Lagging Full-Site Editing Project\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=134243\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:159:\"https://wptavern.com/wordpress-community-attributes-declining-market-share-to-performance-issues-increased-complexity-and-the-lagging-full-site-editing-project\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11917:\"<p>For the first time in WordPress&#8217; nearly 19-year history, the software&#8217;s usage stats are showing signs of declining market share. Its remarkable ascension to 43.3% market share took a turn in March 2022 and usage has slowly declined since then, according to a new WordPress market share report from Joost de Valk that references <a href=\"https://w3techs.com/technologies/history_overview/content_management/all\">stats from W3Techs</a>. </p>\n\n\n\n<img />CMS usage stats since January 2011 &#8211; source: W3Techs\n\n\n\n<p>In a post titled &#8220;<a href=\"https://joost.blog/wordpress-market-share-shrinking/\">WordPress&#8217; Market Share Is Shrinking,</a>&#8221; de Valk highlighted the numbers from the last few months, which now conclusively demonstrate a decline:</p>\n\n\n\n<img />source: <a href=\"https://joost.blog/wordpress-market-share-shrinking/\">Joost de Valk</a>\n\n\n\n<p>de Valk&#8217;s analysis elaborates on how WordPress&#8217; market share, and that of its open source contemporaries, is being eroded by competitors like Wix and Squarespace. He attributes this change to two major factors: WordPress&#8217; lack of focus on performance, and the complexity of the unfinished full-site editing project:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>If you look at&nbsp;<a href=\"http://cwvtech.report/\">cwvtech.report</a>&nbsp;youâ€™ll see that in the last year, sites on Wix and Squarespace on average have improved their site speed more than WordPress sites. WordPress has a performance team now, and it has made some progress. But the reality is that it hasnâ€™t really made big strides yet, and in my opinion, really should. Project leadership still seems unwilling to focus on performance though, which has to do with the next point:</p><p>WordPressâ€™ full site editing project is not done yet. Anecdotally, more and more people are having a hard time deciding how to build their site on WordPress. Wix and Squarespace are simply way simpler tools to build a site. As they improve their SEO tooling, thereâ€™s less and less reason to switch over to WordPress.</p></blockquote>\n\n\n\n<p>The post inspired rampant speculation in the community, and the discussion has splintered off into different pockets across the web &#8211; various <a href=\"https://twitter.com/jdevalk/status/1524354975089967105\">Twitter threads</a>, Post Status Slack, and a <a href=\"https://www.facebook.com/groups/advancedwp/posts/5335192453209592/\">post in the Advanced WP</a> group on Facebook that has already received more than 100 comments. </p>\n\n\n\n<p>It&#8217;s not realistic to expect any CMS to make gains every month, even if it has grown steadily in the past. WordPress is still far and away the market leader, but many see the new decline in market share as a symptom of a deeper problem.  No one can definitively say why WordPress is losing market share but the community has a few prevailing theories. </p>\n\n\n\n<p>Performance is one of the contributing factors that is easier to measure than many others. According to <a href=\"https://t.co/UXrPUetsXH\">data from HTTP Archive</a>, WordPress trails its closest competitors when it comes to percentage of sites with good Core Web Vitals scores.</p>\n\n\n\n<img />\n\n\n\n<p>&#8220;I&#8217;m not excited to see the percentage drop, but it confirms even more that something needs to change,&#8221; Google-sponsored contributor Felix Arntz <a href=\"https://www.facebook.com/groups/advancedwp/posts/5335192453209592/?comment_id=5335463033182534&__cft__[0]=AZXHiAZGjTdaMvv69aWrE4uqcclxVqhyYOPyNLpAN6rFHg9aXVJM5D_cSXcFPU5STYxj6mrkzp7e909jEvJgUKrPSAoI1AlPn2app0822R8UjgvsZpLbxfepE6ci8tTiWC62JubpIYAVNcgp3lYcNVzZ&__tn__=R]-R\">said</a>. &#8220;It&#8217;s also worth adding that the growth rate of other CMSs like Wix or Shopify has already long surpassed WordPress even before this. My session at WordCamp Europe is precisely going to focus on this topic.</p>\n\n\n\n<p>&#8220;All this is why we started the WordPress performance team a couple months back, we need to make more solid performance decisions out of the box for WordPress. Let&#8217;s work together so that we can turn this around over the next few years.&#8221;</p>\n\n\n\n<p>Many saw the news of WordPress&#8217; declining market share as an opportunity to weigh in on their pet grievances about WordPress and the Gutenberg project in general, but there are some legitimate concerns about the condition of the software when it&#8217;s rolled out to millions of users.</p>\n\n\n\n<p>&#8220;Full site editing and its deployment into core before it has really been ready isnâ€™t doing us any favors for newcomers to WordPress,&#8221; WordPress developer Daniel Schutzsmith <a href=\"https://twitter.com/schutzsmith/status/1524420452021682181\">said</a>. &#8220;It throws them off and scares them because it feels broken in many aspects.&#8221;</p>\n\n\n\n<p>WordPress&#8217; increasing complexity is another strong factor many participants cited as a possible influence, particularly those who build websites for clients. The software has become more sophisticated, enabling users to do more things than ever before, but it&#8217;s not getting easier to use.  </p>\n\n\n\n<p>&#8220;I donâ€™t do much WP dev anymore, but after needing multiple articles and a YouTube tutorial for me to understand the new Navigation block, I knew WP was in serious trouble,&#8221; developer Alexis Rae <a href=\"https://twitter.com/TransCinderella/status/1524363595903025152?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1524363595903025152%7Ctwgr%5E%7Ctwcon%5Es1_&ref_url=https%3A%2F%2Fwptavern.com%2Fwp-admin%2Fpost.php%3Fpost%3D134243action%3Dedit\">said</a>. &#8220;That 5.9 pushed out full site editing as the only option (that I can tell) while itâ€™s a beta is insane.&#8221;</p>\n\n\n\n<p>Multiple participants in the discussions on Facebook and Twitter said they have recently been building some of their clients&#8217; sites with other technologies to make it easier for their clients to manage their websites.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">&#8230; for the last few years, this hasn\'t been our experience and eyes are wondering towards other solutions. We\'ve already delivered sites on Webflow, and even a couple on Squarespace. That would have been unthinkable two years ago.</p>&mdash; Nick Wilmot (@nickwilmot) <a href=\"https://twitter.com/nickwilmot/status/1524416730805776384?ref_src=twsrc%5Etfw\">May 11, 2022</a></blockquote>\n</div>\n\n\n\n<p>&#8220;From working with clients I notice that the quality of the admin interface is really becoming an issue that turns people off from WordPress,&#8221; Florian Fermin <a href=\"https://www.facebook.com/groups/168889943173228/user/1498532059/?__cft__[0]=AZXHiAZGjTdaMvv69aWrE4uqcclxVqhyYOPyNLpAN6rFHg9aXVJM5D_cSXcFPU5STYxj6mrkzp7e909jEvJgUKrPSAoI1AlPn2app0822R8UjgvsZpLbxfepE6ci8tTiWC62JubpIYAVNcgp3lYcNVzZ&__tn__=R]-R\">said</a>. &#8220;On the lower end, this drives people to go to Squarespace and Wix instead. On the high end, I have now migrated multiple sites away from WordPress to CraftCMS and clients have been delighted with the clean interface it provides, and they&#8217;re confident to make small changes themselves, allowing me to put my energy in more exciting stuff.&#8221;</p>\n\n\n\n<p>WordPress gained popularity early on by being the best free software available for blogging, and then later for its flexibility as a CMS. The transition into a nocode style site builder has been difficult with extensive periods of growing pains. As most of the energy and resources put into core seem to go towards Gutenberg, other older aspects of the software have gone neglected. </p>\n\n\n\n<p>&#8220;WordPress has really developed into jack of all trades and master of none,&#8221; Fermin said. &#8220;In my experience, this has meant in the last years that when I have to recommend a CMS for the use case of a client, more and more often the answer has been something else and not WordPress.&#8221;</p>\n\n\n\n<p>WordPress used to be one of the strongest solutions on the market for building small, simple sites but competitors are making it faster and easier to launch these kinds of sites. Meanwhile, WordPress themes are going through a rocky transition towards better accommodating full-site editing features. </p>\n\n\n\n<p>&#8220;For my clients (mostly government), FSE is not the way to go,&#8221; WordPress developer Roy Tanck <a href=\"https://twitter.com/roytanck/status/1524394782176514049?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1524394782176514049%7Ctwgr%5E%7Ctwcon%5Es1_&ref_url=https%3A%2F%2Fwptavern.com%2Fwp-admin%2Fpost.php%3Fpost%3D134243action%3Dedit\">said</a>. &#8220;I spend a lot of my time disabling new features now. If WP continues to become a &#8216;site builder,&#8217; traditional CMS clients will likely start to look elsewhere.&#8221;</p>\n\n\n\n<p>In his conclusion, Joost de Valk contends that the full-site editing project is taking far too long. </p>\n\n\n\n<p>&#8220;Thatâ€™s causing the rest of the platform to lag behind current web trends,&#8221; he said. &#8220;Without a drastic change in this approach I think WordPress will continue to lose market share for the next few years.&#8221;</p>\n\n\n\n<p>Although some may agree that the project is taking a long time to reach a polished state, much of the feedback on social media indicates that developers do not find FSE user friendly enough for their clients. </p>\n\n\n\n<p>&#8220;WordPress is just too complicated for the majority to use effectively,&#8221; development agency owner Jon Brown <a href=\"https://www.facebook.com/groups/advancedwp/posts/5335192453209592/?comment_id=5335256633203174&__cft__[0]=AZXHiAZGjTdaMvv69aWrE4uqcclxVqhyYOPyNLpAN6rFHg9aXVJM5D_cSXcFPU5STYxj6mrkzp7e909jEvJgUKrPSAoI1AlPn2app0822R8UjgvsZpLbxfepE6ci8tTiWC62JubpIYAVNcgp3lYcNVzZ&__tn__=R]-R\">said</a>.</p>\n\n\n\n<p>&#8220;WordPress ought to be way more opinionated on accessibility and performance such that users should not even have to think about them. The problem with the current WP philosophy it is &#8216;letâ€™s do as little as possible to leave options for the user or make the user rely on plugins&#8217;â€¦ No! Stop that. Do more by default and then give the user the option to override that if/when necessary.&#8221;</p>\n\n\n\n<p>Brown said this applies to core WordPress but is most evident in WooCommerce, where, after ten years, &#8220;you still need 25 add-ons just to get a basic store up and running.&#8221;</p>\n\n\n\n<p>&#8220;This is why Shopify is devouring e-commerce market share,&#8221; he said.</p>\n\n\n\n<p>&#8220;And simple personal sites, way easier to setup a five-page site on Squarespace or Wix for laypeople than it is to navigate WordPress.</p>\n\n\n\n<p>&#8220;How to regain market share? Simplify.&#8221;</p>\n\n\n\n<p>Is WordPress losing touch with every day users? After two years of drastically reduced WordCamps and meetups, this is a genuine possibility. Many months before WordPress&#8217; market share growth started leveling off, the strangely feverish push to return to in-person events during a pandemic seemed to betray an insecurity about what might happen to the community if required to continue on in isolation. WordPress usage numbers could be impacted by missing out on some of the grassroots growth and momentum that in-person events often generate. </p>\n\n\n\n<p>WordPress&#8217; relationship with the common user seems strained at the moment. It is no longer considered one of the easiest ways to get a website off the ground. Those who are eager to see WordPress succeed and grow can likely agree at almost any point in time that WordPress is not yet easy enough to use. A veritable army of Gutenberg contributors are working day and night to make full-site editing possible, but the project cannot afford to shelve usability concerns for too much longer, or it risks becoming software that is only used by an elite, knowledgeable few.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 May 2022 04:57:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"WPTavern: Gutenberg 13.2 Adds Persistent User Preferences and a Visualizer for Margin and Padding Controls\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=134247\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"https://wptavern.com/gutenberg-13-2-adds-persistent-user-preferences-and-a-visualizer-for-margin-and-padding-controls\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4891:\"<p>Gutenberg 13.2 was released earlier today. While much of the developer community is gearing up for the WordPress 6.0 release in two weeks, work continues steadily on the plugin, driving future updates. The latest release is not as hefty on enhancements as previous updates but includes around four dozen bug fixes.</p>\n\n\n\n<p>Despite a heavy focus on squashing bugs, there are several welcome improvements in the plugin update. Persistent user preferences will make for fewer surprises when opening the editor. New visual updates for block spacing and the Post Comments Form block make it easier to design layouts.</p>\n\n\n\n<p>Developers should look at the early work on a <a href=\"https://github.com/WordPress/gutenberg/pull/40547\">new <code>settings</code> hook</a>. This represents one step toward creating the <a href=\"https://github.com/WordPress/gutenberg/issues/40318\">concept of &#8220;sections&#8221;</a> that can house settings and styles for block instances and descendants. Patterns are a prime example of the necessity of sections. Matias Ventura <a href=\"https://github.com/WordPress/gutenberg/issues/39281\">covered the various uses</a> in a separate open ticket.</p>\n\n\n\n<p>The latest release also <a href=\"https://github.com/WordPress/gutenberg/pull/40652\">removes spotlight mode</a> for template parts, and I say, <em>good riddance</em>. The editor already has such a mode for all blocks, and users who prefer it can enable it.</p>\n\n\n\n<h2>Persistent Editor Preferences</h2>\n\n\n\n<img />Welcome to the editor popup.\n\n\n\n<p>Have you ever visited the WordPress editor and noticed the &#8220;welcome&#8221; popup, despite dismissing it ages ago? Or, logged in with a new browser only to reconfigure settings, such as enabling top toolbar support and turning off fullscreen mode? <em>Annoying, right?</em></p>\n\n\n\n<p>This has been a <a href=\"https://github.com/WordPress/gutenberg/issues/15105\">long-standing issue</a> caused by WordPress storing user preferences in the browser. In Gutenberg 13.2, these preferences are now <a href=\"https://github.com/WordPress/gutenberg/pull/39795\">saved as user metadata</a> in the database and should no longer pose an issue.</p>\n\n\n\n<p>Sarah Gooding took a deeper dive into this problem and solution in an <a href=\"https://wptavern.com/coming-in-gutenberg-13-1-users-editor-preferences-will-be-stored-in-the-database-improving-persistence-across-sessions\">earlier post on the Tavern</a>.</p>\n\n\n\n<h2>Padding and Margin Visualizers</h2>\n\n\n\n<img />Adding margin to the Group block.\n\n\n\n<p>Landing in the pretty-neat-and-nice-to-have category is a <a href=\"https://github.com/WordPress/gutenberg/pull/40505\">new &#8220;visualizer&#8221; feature</a> for block margin and padding. Essentially, it displays a colored box, representing the space when one of the two options is adjusted. It quickly fades out and returns the canvas to its default look.</p>\n\n\n\n<p>I am a fan of this change. It draws the eyes back to the canvas and allows users to visualize how the block spacing is applied.</p>\n\n\n\n<h2>Comments Form in the Editor</h2>\n\n\n\n<img />Comments Form Block in the site editor.\n\n\n\n<p>The Post Comments Form block was simply a placeholder in the editor in past releases. This did not allow end-users to see how it would look on the front end of their sites.</p>\n\n\n\n<p>Gutenberg 13.2 updates this to show something <a href=\"https://github.com/WordPress/gutenberg/pull/40368\">closer to what it will look like </a>on the front end, at least for logged-in users. This also lets the user see how color and typography customizations will be displayed.</p>\n\n\n\n<p>This is a two-part change. The Comments Query Loop block now <a href=\"https://github.com/WordPress/gutenberg/pull/40256\">outputs the form within its default template</a>. This way, users and creators will not need to build out each part of the overall comments area.</p>\n\n\n\n<p>There is still much work to do for the Post Comments Form block in the long term. It needs a broader selection of design tools for starters. However, it could also use a revamp that provides fine-grain control over the various elements shown for logged-in and logged-out users. That may even mean splitting the form into multiple blocks. For now, the additional visualization will have to suffice.</p>\n\n\n\n<h2>Margin Support for Separators</h2>\n\n\n\n<img />Adding top and bottom margin to a Separator block.\n\n\n\n<p>The Separator block now <a href=\"https://github.com/WordPress/gutenberg/pull/40551\">supports top and bottom margins</a>. Users can adjust it from the spacing tools in the sidebar.</p>\n\n\n\n<p>It is a small change but a welcome one. Users could previously increase the space between a Separator and sibling block through other means, such as setting the margin on the sibling or using a Spacer. However, those were often unintuitive solutions. And decreasing the space sometimes seemed an impossible task.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 May 2022 04:30:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"Post Status: Getting to â€˜Yesâ€™ on Plugin â€œLicense Hellâ€\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=97406\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://poststatus.com/getting-to-yes-on-plugin-license-hell/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7620:\"<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Is there a win-win solution for plugin owners fighting churn and their professional WordPress customers, like agencies and freelancers? </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-drop-cap\">I appreciate&nbsp;<a href=\"https://poststatus.com/wordpress-plugin-license-renewals-and-the-challenge-of-churn/\" target=\"_blank\" rel=\"noreferrer noopener\">Rob Howard\'s response</a>&nbsp;to&nbsp;<a href=\"https://twitter.com/post_status/status/1518994407864684545\" target=\"_blank\" rel=\"noreferrer noopener\">the insightful discussion</a>&nbsp;that emerged on Twitter over MemberPress\'s new subscription renewal interface in the WordPress dashboard. I learned a lot, and I was reminded this controversy goes back a long way. In 2015 we wrote about unhappy customer reactions when&nbsp;<a href=\"https://poststatus.com/notes/jetbrains-refines-new-phpstorm-subscriptions/\" target=\"_blank\" rel=\"noreferrer noopener\">JetBrains adopted an Adobe CS payment model for PHPstorm</a>. Beyond the WordPress bubble, this sort of thing is old news.</p>\n\n\n\n<blockquote><p>Even if they hand off this responsibility to the site owner or cover it with ongoing maintenance and support services, managing license keys&nbsp;will still be hell for someone.</p></blockquote>\n\n\n\n<h2 id=\"h-maybe-there-s-a-win-here-for-everyone\">Maybe there\'s a win here for everyone</h2>\n\n\n\n<p>There are separate questions about design and business ethics. Is completely locking out users when there\'s not a valid support key out of step with a community ethic, i.e. &#8220;The WordPress Way?&#8221; That\'s a big and important topic, but there\'s some low-hanging fruit in the far less contentious problems Rob helpfully focused on. Maybe there is a potential win-win solution. His ideas might satisfy the two most legitimately frustrated (but seemingly opposed) perspectives in this controversy:</p>\n\n\n\n<ol><li>Plugin owners fighting subscriber churn so they can sustain their businesses.</li><li>Their customers and colleagues in the WordPress ecosystem, especially WordPress agencies and freelancers. They\'re also trying to run their businesses and don\'t want the extra work and potential embarrassments license management can create.</li></ol>\n\n\n\n<p>As Rob points out, aggressive upsells and lockouts are aimed at the mass market of common WordPress users. They\'re for people who don\'t understand what they\'ve installed or why they might pay for it. The target is not highly WordPress-literate people â€” especially those who are building sites professionally.</p>\n\n\n\n<p>Unfortunately, we all get the same annoyances in our WordPress dashboards anyhow.</p>\n\n\n\n<h2 id=\"h-small-agencies-and-site-builders-are-your-friends\">Small agencies and site builders are your friends</h2>\n\n\n\n<p>Site builders, small web dev teams, and WordPress agencies don\'t want their clients confused or hassled with upsells. Worse, they don\'t want a license to expire and break functionality on a client\'s site. Even if they hand off this responsibility to the site owner or cover it with ongoing maintenance and support services â€” something&nbsp;<a href=\"https://poststatus.com/notes/you-might-not-want-to-use-your-developer-licenses-for-your-clients-plugins/\" target=\"_blank\" rel=\"noreferrer noopener\">Syed Balkhi recommended in 2015</a>&nbsp;â€” managing license keys&nbsp;<a href=\"https://poststatus.com/notes/crate-wants-help-escape-license-key-hell/\" target=\"_blank\" rel=\"noreferrer noopener\">will still be hell</a> for someone.</p>\n\n\n\n<p>I haven\'t thought aboutÂ <a href=\"https://cratewp.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Crate</a>Â in a long time, but it has been around for quite some time. It\'s a way to get out of &#8220;license hell&#8221; â€” and deal with other challenges that won\'t apply and can\'t be afforded by a lot of small to mid-sized WordPress businesses. Rob\'sÂ <a href=\"https://wordpress.org/plugins/wp-wallet/\" target=\"_blank\" rel=\"noreferrer noopener\">WP Wallet</a>Â is aimed at that broader market. It sounds like a worthwhile project, along withÂ <a href=\"https://poststatus.com/podcast/wp-notify/\" target=\"_blank\" rel=\"noreferrer noopener\">WP Notify</a>Â andÂ <a href=\"https://poststatus.com/podcast/clarity/\" target=\"_blank\" rel=\"noreferrer noopener\">Clarity</a>. For those who work with WordPress on a daily basis, getting control of notifications and aggressive advertising in the WordPress back-end is universally wanted.</p>\n\n\n\n<blockquote><p> It would be fantastic if more plugin shops catered to the needs and concerns of agencies and freelancers who don\'t want their clients to ever see an upgrade notice or an upsell pretending to be one.</p></blockquote>\n\n\n\n<h2 id=\"h-is-license-hell-necessary\">Is license hell necessary?</h2>\n\n\n\n<p>It\'s not hard to see that people who want to pay for plugins (and essentially resell them to their customers) are the people you want to keep happy and maintain a good relationship with, as a plugin owner. It would be fantastic if more plugin shops catered to the needs and concerns of agencies and freelancers who don\'t want their clients to ever see an upgrade notice or an upsell pretending to be one. (Or to be locked out of anything.)</p>\n\n\n\n<blockquote><p>Educating newcomers to WordPress and shaping their expectations about your product is good for everyone.</p></blockquote>\n\n\n\n<h2 id=\"h-whiny-free-riders-are-people-and-potential-customers-too\">Whiny free-riders are people (and potential customers) too</h2>\n\n\n\n<p>I\'d also like to stick up for the frustrations of people who just don\'t understand what a support license subscription is and why they should happily pay for continuous upgrades. Yes, they often look like and act like free riders. We can\'t expect different if we don\'t market and communicate effectively to them.</p>\n\n\n\n<p>Educating newcomers to WordPress and shaping their expectations about your product is good for everyone. If customers or potential customers are upset because they\'re being pressed to repeatedly pay for something they don\'t understand (itâ€™s not a buy-once, own-forever product!) that\'s on the seller. Rob has some good ideas for how to better communicate the proper expectations to customers. Giving options to people who want to pay one time or less frequently than an annual cycle is one solution that ought to appeal to professional WordPressers too.</p>\n\n\n\n<h2 id=\"h-product-or-service-what-am-i-paying-for-what-do-i-own\">Product or service? What am I paying for? What do I own?</h2>\n\n\n\n<p>A decade ago (and even before that) I used to keep local copies of WordPress plugins (and add-ons for other CMSes) even though I knew it was pointless because they\'d be obsolete quickly. I was treating plugins like my music collection in the early days of iTunes. I knew it was crazy, but the drive to &#8220;own&#8221; something is strong. Many of us are now paying to access music we previously owned on CDs, tapes, etc.</p>\n\n\n\n<p>This is still a new and evolving digital media culture. There are good reasons many people resist the SaaSification of everything. It\'s a model that makes sense for a lot of commercial plugins: mimic Netflix\'s marketing and sell a plugin as a service . ButÂ <a href=\"https://speckyboy.com/wordpress-theme-plugin-license-expires/\" target=\"_blank\" rel=\"noreferrer noopener\">I agree with Eric Karkovack</a>Â that more needs to be done to help potential customers understand the value of continuously paying for software updates. Why can\'t that involve a good user experience too?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 May 2022 21:40:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Post Status: This Week at WordPress.org (May 9, 2022)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=97396\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://poststatus.com/this-week-at-wordpress-org-may-9-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15710:\"<p class=\"has-theme-palette-7-background-color has-background\">Each week we are highlighting the news from WordPress.org that you don\'t want to miss.  If you or your company create products or services that use WordPress, we\'ve got the news you need to know. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here â€º</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> â€” Post Status\' <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> â€” covering the WP/Woo news plus significant writing and podcasts. It\'s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f48c.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 id=\"h-news\">News</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/news/2022/04/wordpress-6-0-beta-3/\"></a><a href=\"https://wordpress.org/news/2022/05/wordpress-6-0-release-candidate-2-rc2-now-available-for-testing/\">WordPress 6.0 Release Candidate 2 (RC2) Now Available for Testing</a></li><li><a href=\"https://wordpress.org/news/2022/05/the-month-in-wordpress-april-2022/\">The Month in WordPress â€“ April 2022</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\">WordPress 6.0 Field Guide</a></li><li>New <a href=\"https://poststatus.com/planet/feed/#5ftf\">Five for the Future</a> section below! </li></ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_a98156-c2\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\">\n<h2 id=\"h-accessibility\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul><li>Request for feedback on the&nbsp;<a href=\"https://make.wordpress.org/project/2022/04/01/discussion-contrib-handbook-part-1/\">WordPress Accessibility Statement</a>.</li></ul>\n\n\n\n<h2 id=\"h-central\"><a href=\"https://central.wordcamp.org\">Central</a></h2>\n\n\n\n<ul><li><a href=\"https://central.wordcamp.org/news/2022/05/wordcamp-europe-2022-is-just-around-the-corner/\">WordCamp Europe 2022 is just around the corner</a></li><li><a href=\"https://central.wordcamp.org/news/2022/05/join-the-european-wordpress-community-in-porto-portugal/\">Join the European WordPress Community in Porto, Portugal!</a></li></ul>\n\n\n\n<h2 id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<p>Reminder: <a href=\"https://developer.wordpress.org/block-editor/contributors/versions-in-wordpress/\">Gutenberg 13.0 ships with WordPress 6.0</a>.</p>\n\n\n\n<ul><li>&nbsp;<a href=\"https://github.com/WordPress/performance/issues/220\">Add Site Health test for full page caching (advanced cache)</a></li><li>Proposal: <a href=\"https://github.com/WordPress/performance/issues/140\">API to facilitate more accurate sizes #140</a></li><li>Proposal:&nbsp;<a href=\"https://github.com/WordPress/performance/issues/24\">Regenerate existing image</a></li><li><a href=\"https://github.com/WordPress/performance/issues/289\">Research: Impact of additional WebP images on upload</a></li><li><a href=\"https://github.com/WordPress/performance/issues/290\">Research: WebP compatibility</a></li><li><a href=\"https://docs.google.com/document/d/1NzURb3u-KZTgYYHK9Gx_KPvSCX4N8Ci3oZfLsfVF7Tk/edit\">Measurement overview doc</a></li><li><a href=\"https://docs.google.com/document/d/1elY0vgrLU2373mX3jSUj_vFZeGDyhED1WMPYwzSYiVA/edit\">Capturing front-end performance metrics in WordPress doc</a>&nbsp;</li><li><a href=\"https://make.wordpress.org/core/2022/05/03/a-week-in-core-may-2-2022/\">A Week in Core â€“ May 2, 2022</a></li></ul>\n\n\n\n<h3 id=\"h-devnotes\">DevNotes</h3>\n\n\n\n<p>Leading up to releasing WordPress 6.0, DevNotes and release-related information will remain.</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\">WordPress 6.0 Field Guide</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/05/block-locking-settings-in-wordpress-6-0/\">Block Locking Settings in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/04/wordpress-6-0-release-candidate-phase/\">WordPress 6.0 Release Candidate Phase</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/miscellaneous-dev-notes-for-wordpress-6-0/\">Miscellaneous Dev Notes for WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/block-editor-miscellaneous-dev-notes-for-wordpress-6-0/\">Block Editor miscellaneous Dev Notes for WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/page-creation-patterns-in-wordpress-6-0/\">Page creation patterns in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/global-styles-variations-in-wordpress-6-0/\">Global Styles variations in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/separator-block-updated-to-use-block-supports-color-settings/\">Separator block: Updated to use block supports color settings</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/block-markup-updates-for-image-quote-list-and-group-blocks/\">Block markup updates for image, quote, list, and group blocks</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/support-for-handling-resolution-errors-for-editor-data-module/\">Support for handling resolution errors for Editor data module</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/28/taxonomy-performance-improvements-in-wordpress-6-0/\" target=\"_blank\" rel=\"noreferrer noopener\">Taxonomy performance improvements in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/27/changes-to-do_parse_request-filter-in-wordpress-6-0/\">Changes to the do_parse_request filter in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/29/caching-improvements-in-wordpress-6-0/\">Caching improvements in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/27/new-filter-to-modify-content-images-in-wordpress-6-0/\">New filter to modify content images in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/02/media-storing-file-size-as-part-of-metadata/\">Media: storing file size as part of the metadata</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/05/updates-to-the-wordpress-create-block-templating-system/\">Updates to the @wordpress/create-block templating system</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/02/object-type-specific-registration-hooks-in-6-0/\">Object type-specific registration hooks in 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/28/taxonomy-performance-improvements-in-wordpress-6-0/\">Taxonomy performance improvements in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/02/new-features-for-working-with-patterns-and-themes-in-wordpress-6-0/\">New features for working with patterns and themes in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/02/theme-export-in-wordpress-6-0/\">Theme export in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/29/wp_user_query-now-accepts-fields-options-in-wordpress-6-0/\">WP_User_Query now accepts fields options in WordPress 6.0&nbsp;</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/02/performance-increase-for-sites-with-large-user-counts-now-also-available-on-single-site/\">Performance increase for sites with large user counts (now also available on a single site)</a></li></ul>\n\n\n\n<h2 id=\"h-docs\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul><li><a href=\"https://wordpress.tv/2022/03/30/milana-cap-birgit-pauli-haack-courtney-engle-robertson-femy-praseeth-akira-tachibana-wordpress-release-6-0-trac-ticket-triage-for-docs/\">WordPress release 6.0 Trac ticket triage for docs</a></li><li><a href=\"https://make.wordpress.org/updates/2022/04/25/documentation-team-update-april-25-2022/\">Documentation Team Update â€“ April 25, 2022</a></li><li><a href=\"https://make.wordpress.org/updates/2022/05/09/documentation-team-update-may-9-2022/\">Documentation Team Update â€“ May 9, 2022</a></li></ul>\n\n\n\n<h3 id=\"h-support-docs\"><a href=\"https://wordpress.org/support/articles\">Support Docs:</a></h3>\n\n\n\n<ul><li><a href=\"https://wordpress.org/support/article/css/\">CSS</a></li></ul>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<h2 id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/community/2022/04/22/wpdiversity-is-expanding-to-apac/\"><a href=\"https://make.wordpress.org/community/2022/05/11/join-the-community-team-for-a-wpdiversity-writing-sprint-may-23-to-may-30/\">Join the Community Team for a #WPDiversity Writing Sprint: May 23 to May 30</a></a></li><li><a href=\"https://make.wordpress.org/community/2022/04/22/wpdiversity-is-expanding-to-apac/\"><a href=\"https://make.wordpress.org/community/2022/05/06/report-allyship-and-diverse-speaker-workshops-april-2022/\">Report: Allyship and Diverse Speaker Workshops April 2022</a></a></li></ul>\n\n\n\n<h2 id=\"h-design\"><a href=\"https://make.wordpress.org/design\">Design</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/design/2022/05/09/design-share-apr-25-may-6/\">Design Share:&nbsp;Apr 25â€“May 6</a></li></ul>\n\n\n\n<h2 id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/hosting/2022/05/04/get-ready-for-wordpress-6-0/\">Get ready for WordPress 6.0</a></li></ul>\n\n\n\n<h2 id=\"h-meta\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/meta/2022/04/28/proposal-make-wordpress-team-or-project-updates/\">Proposal: Make WordPress Team or Project Updates</a></li></ul>\n\n\n\n<h2 id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/mobile/2022/05/02/call-for-testing-wordpress-for-ios-19-8/\">Call for Testing: WordPress for iOS 19.8</a></li><li><a href=\"https://make.wordpress.org/mobile/2022/05/02/call-for-testing-wordpress-for-android-19-8/\">Call for Testing: WordPress for Android 19.8</a></li></ul>\n\n\n\n<h2 id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/updates/2022/05/10/plugin-review-team-status-9-may-22/\">Plugin Review Team Status: 9 May â€™22</a></li></ul>\n\n\n\n<h2 id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/polyglots/2022/05/02/wordpress-6-0-ready-to-be-translated/\">WordPress 6.0 ready to be translated</a></li></ul>\n\n\n\n<h2 id=\"h-project\"><a href=\"https://make.wordpress.org/project\">Project</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/project/2022/04/29/discussion-contrib-handbook-part-2/\">Discussion: Contrib Handbook, Part 2</a></li><li><a href=\"https://make.wordpress.org/project/2022/04/01/discussion-contrib-handbook-part-1/\">Discussion: Contrib Handbook, Part 1</a></li></ul>\n\n\n\n<h2 id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/test/2022/04/28/fse-program-testing-call-14-rallying-recipe-reviewers/\">FSE Program Testing Call #14: Rallying Recipe Reviewers</a></li></ul>\n\n\n\n<h2 id=\"h-themes\"><a href=\"https://make.wordpress.org/themes\">Themes</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/themes/2022/04/28/latest-changes-in-gutenberg-themes-13-0-release/\">Latest changes in Gutenberg + Themes: 13.0 release</a></li><li><a href=\"https://make.wordpress.org/updates/2022/05/10/themes-team-update-may-10-2022/\">Themes team update May 10, 2022</a></li></ul>\n\n\n\n<h2 id=\"h-support\"><a href=\"https://make.wordpress.org/support\">Support</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/support/2022/04/off-forum-support-requests/\">Off forum support requests</a></li></ul>\n\n\n\n<h3 id=\"h-support-articles\">Support Articles:</h3>\n\n\n\n<ul><li></li></ul>\n\n\n\n<h2 id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/training/2022/04/19/migrating-contributor-training-to-learn-wordpress/\"></a><a href=\"https://make.wordpress.org/training/2022/05/03/may-2022-sprint/\">May 2022 Sprint</a></li><li><a href=\"https://make.wordpress.org/training/2022/05/05/the-training-team-faculty-program-is-now-live/\">The Training Team Faculty Program is now live</a></li></ul>\n\n\n\n<h4 id=\"h-workshops\">Workshops:</h4>\n\n\n\n<ul><li><a href=\"https://learn.wordpress.org/workshop/understanding-the-page-editor-vs-site-editor/\">Understanding the Page Editor vs. Site Editor</a></li></ul>\n\n\n\n<h4 id=\"h-social-learning-spaces\">Social Learning Spaces:</h4>\n\n\n\n<ul><li><a href=\"https://learn.wordpress.org/?meeting=open-source-principles-and-wordpress\">Open Source Principles and WordPress</a></li><li><a href=\"https://learn.wordpress.org/?meeting=wordpress-5-9-lookback-6-0-look-ahead\">WordPress 5.9 Lookback & 6.0 Look ahead</a></li><li><a href=\"https://learn.wordpress.org/?meeting=showcasing-content-with-query-loops-2\">Showcasing Content with Query Loops</a></li></ul>\n</div>\n</div>\n\n\n\n<h2 id=\"5ftf\"><a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a></h2>\n\n\n\n<p>What\'s happening specific to Five for the Future? Provide your feedback on these posts:</p>\n\n\n\n<ul><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/190\">Consider launching end-to-end solution for a specific team</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/182\">Tracking contributions: receiving special access</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/180\">Tracking contributions: meeting attendance</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/177\">Tracking Contributions: HelpScout</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/176\">Tracking Contributions: Contributors share their contributions periodically.&nbsp;</a></li></ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://cdn.poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You â€” and <a href=\"https://poststatus.com/business-membership/\">your whole team</a> can <a href=\"https://poststatus.com/post-status-membership-club/\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job â€” or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/2709.png\" alt=\"âœ‰\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 May 2022 14:58:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WPTavern: #26 â€“ Courtney Robertson on How the Learn Project Is Educating People About WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=133875\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"https://wptavern.com/podcast/26-courtney-robertson-on-how-the-learn-project-is-educating-people-about-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:49272:\"<p>On the podcast today we have <a href=\"https://twitter.com/courtneyr_dev\">Courtney Robertson</a>.</p>\n\n\n\n<p>Courtney is a Developer Advocate at GoDaddy Pro who has a passion for teaching and learning, specifically about how to use WordPress.</p>\n\n\n\n<p>Her work for GoDaddy Pro involves outreach to developers but it also includes time to help contribute to WordPress as well. Courtney uses this time to assist with the <a href=\"https://make.wordpress.org/training/\">WordPress Training Team</a> as well as <a href=\"https://learn.wordpress.org/\">Learn WordPress</a>.</p>\n\n\n\n<p>If youâ€™re new to WordPress, or have been using it for years, thereâ€™s always something new to learn. WordPress never stands still. In the recent past the adoption of blocks and Full Site Editing has meant that the way of interacting with WordPress has changed entirely. You could of course figure out how everything in WordPress works all by yourself, but it would be great if there were freely available materials which you could use to accelerate your knowledge. Thatâ€™s what Courtney is involved in and what this podcast is all about.</p>\n\n\n\n<p>We talk about the history of the project and how it was started as a way to assist people in putting on WordCamps and Meetups. Since then the scope of WordPress training has grown enormously.</p>\n\n\n\n<p>We discuss what areas of WordPress are covered by the learning materials, what constraints there are on the type of content that is made, and what formats they take.</p>\n\n\n\n<p>Who creates the content and how do they ensure that itâ€™s up to date and of a high enough standard? Can people become certified if they complete different learning paths?</p>\n\n\n\n<p>We round off by talking about how you can become involved with the team if youâ€™re keen to help others learn more about WordPress.</p>\n\n\n\n<h2>Useful links.</h2>\n\n\n\n<p><a href=\"https://courtneyr.dev/\">Courtney&#8217;s website</a></p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">Learn WordPress</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/training/\">WordPress Training Team</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/training/getting-started/\">What does the WordPress Training team do?</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/training/handbook/guidelines/brand-usage-guidelines/\">Brand Usage Guidelines</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/training/handbook/guidelines/promotional-guidelines/\">Promotional Guidelines</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/training/2022/01/18/training-team-goals-for-2022/\">Training Team Goals for 2022</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/training/2022/05/03/may-2022-sprint/\">May 2022 Sprint</a></p>\n\n\n\n<p><a href=\"https://github.com/WordPress/Learn/projects/2?card_filter_query=label%3A%22%5Bpriority%5D+high%22#column-17929295\">Learn WordPress Github repo</a></p>\n\n\n\n<p><a href=\"https://github.com/WordPress/Learn/issues/new?assignees=&labels=Awaiting+Triage%2C+%5BContent+Type%5D+Lesson+Plan&template=lesson-plan-template.md&title=Topic+-+Lesson+Plan\">Lesson Plan template</a></p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/lesson-plans\">Lesson Plans</a></p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/workshops/\">Workshops</a></p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/courses/\">Courses</a></p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/social-learning/\">Social Learning Spaces </a></p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/pathways-to-learn-wordpress/\">Pathways to Learn WordPress</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/training/2021/05/03/high-level-roadmap-to-learning-wordpress-development/\">High-Level Roadmap to Learning WordPress Development</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/training/2021/08/08/who-can-learn-help/\">Who can Learn WordPress help?</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/meetings/#training\">Upcoming WordPress Meetings</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/training/2021/09/27/proposal-ensuring-high-quality-video-contributions-to-learn-wordpress/\">Ensuring high-quality video contributions to Learn WordPress</a></p>\n\n\n\nTranscript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley. Jukebox is a podcast which is dedicated to all things WordPress, the people, the events, the plugins, the themes, the blocks, and in this case, learning about how WordPress works. If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com forward slash feed forward slash podcast.</p>\n\n\n\n<p>And you can copy that URL into most podcasts players. If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you or your idea featured on the show. Head over to wptavern.com forward slash contact forward slash jukebox and use the contact form there.</p>\n\n\n\n<p>So on the podcast today we have Courtney Robertson. Courtney is a developer advocate at GoDaddy Pro who has a passion for teaching and learning, specifically about how to use WordPress. Her work for GoDaddy Pro involves outreach to developers, but it also includes time to help contribute to WordPress as well. Courtney uses this time to assist with the WordPress training team, as well as Learn WordPress.</p>\n\n\n\n<p>If you&#8217;re new to WordPress or have been using it for years, there&#8217;s always something new to learn. WordPress never stands still. In the recent past, the adoption of blocks and full site editing has meant that the way of interacting with WordPress has changed entirely.</p>\n\n\n\n<p>You could of course, figure out how everything in WordPress works all by yourself, but it would be great if there were freely available materials, which you could use to accelerate your knowledge. That&#8217;s what Courtney is involved in and what this podcast is all about.</p>\n\n\n\n<p>We talk about the history of the project and how it was started as a way to assist people in putting on WordCamps and meetups. Since then, the scope of WordPress training has grown enormously.</p>\n\n\n\n<p>We discuss what areas of WordPress are covered by the learning materials, what constraints there are on the types of content that is made, and what formats they take. Who creates the content and how do they ensure that it&#8217;s up to date and have a high enough standard? Can people become certified if they complete different learning paths? We round off by talking about how you can become involved with the team if you&#8217;re keen to help others learn more about WordPress.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all the links in the show notes by heading over to wptavern.com forward slash podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so, without further delay. I bring you Courtney Robertson.</p>\n\n\n\n<p>I am joined on the podcast today by Courtney Robertson. Hello Courtney.</p>\n\n\n\n<p>[00:03:29] <strong>Courtney Robertson:</strong> Hello Nathan, how are you today?</p>\n\n\n\n<p>[00:03:31] <strong>Nathan Wrigley:</strong> I&#8217;m really good. Thanks for joining us on the podcast today?</p>\n\n\n\n<p>We are going to talk about learning all about WordPress, how you might learn about the things that are going on in WordPress and potentially how you may contribute to that learning process for other people.</p>\n\n\n\n<p>But before we get into that, Courtney, I always ask a fairly generic question at the start. I want some orientation really, so that people who are listening know who you are. Would you mind just telling us a little bit about yourself and your relationship with WordPress.</p>\n\n\n\n<p>[00:03:59] <strong>Courtney Robertson:</strong> Sure. So I first found WordPress because I was teaching in a classroom in 2006. Needed both an LMS and a blog. And at that time, LMS was not an option inside of WordPress yet. WordPress was really just getting started. So I remember, I think around WordPress version two, installing it and figuring out what was going on.</p>\n\n\n\n<p>I have spent some time building sites for clients. And then I found myself back to teaching again with high school students. Teaching WordPress development this time. And it would have been around 2015 in a career technical school. Later I went on to work at a few plug-in companies. I got a lot of experience in The Events Calendar. Writing technical documents, knowledge-base articles, making sure front of sight was updated along with all of our releases.</p>\n\n\n\n<p>And then later found myself teaching WordPress development at a front end dev bootcamp. So I had both high school students and adults that were laid off due to Covid, going through a program free of charge to them. And in fact, our high school students were paid to do this. My students got to speak for WordCamp Philly, so that was really exciting.</p>\n\n\n\n<p>And then I found that I really wanted to go a level up, and make the training material that any institution could use. I found the material needed to teach WordPress development successfully, to get folks actually employed in the WordPress industry. And so an opportunity opened up at GoDaddy Pro for me as a developer advocate, and that affords me some time to continue contributing to the training team.</p>\n\n\n\n<p>[00:05:37] <strong>Nathan Wrigley:</strong> Would you be able to just elucidate a little bit more about the GoDaddy Pro angle? How does that work? Are you essentially employed by GoDaddy Pro and they allow you to have a proportion of your time over at the learn project that we&#8217;re going to be talking about later?</p>\n\n\n\n<p>[00:05:52] <strong>Courtney Robertson:</strong> Yes, that would be correct. So I am a developer advocate, which means that my internal work involves our outreach and our community efforts, specifically oriented for developers. But also this role is one that involves contributing to WordPress itself. And the avenue that I take with that is to contribute on learn.wordpress.org or the WordPress training team.</p>\n\n\n\n<p>So in companies that have folks contributing to the project. Some are full-time sponsored. Some get a certain number of hours per week, or per month, or however the company chooses to allocate that to contribute towards WordPress.</p>\n\n\n\n<p>[00:06:32] <strong>Nathan Wrigley:</strong> Now I&#8217;m guessing, and we&#8217;ll come to that a little bit later. I&#8217;m guessing that there&#8217;ll be an opportunity in this podcast to talk about how other people may become involved. Before we get to that, let&#8217;s just deal with what the whole learn project is. And again, it&#8217;s a fairly generic question.</p>\n\n\n\n<p>Would you just give us some, some understanding of what we might find, what the history of learn is over the last few years? Basically, what is the learn project all about?</p>\n\n\n\n<p>[00:06:57] <strong>Courtney Robertson:</strong> Yeah. So the team behind the learn project is the training team. And we&#8217;ve been around since 2013, and have been working on creating content that would be published eventually on learn. learn.Wordpress.org launched in 2020, during the height of Covid. So we already had a stockpile of content ready to go, and we&#8217;re able to load that up.</p>\n\n\n\n<p>Learn has several different purposes or formats. Different audiences can come to learn. So the training team began with a mission of creating material for meetup organizers. If you&#8217;re hosting a meetup and you&#8217;re doing the work of preparing the meetup, but then you also need to figure out what&#8217;s my topic and who&#8217;s presenting and all of these things.</p>\n\n\n\n<p>Well, the training team has been making lesson plans available, so that a meetup organizer already has topics at the ready. With research done, and all of the resources available. Indicating, cover this topic, here&#8217;s how to present the information. But also those same lesson plans have been used in a few different week long type of workshops.</p>\n\n\n\n<p>So we have quite a good bit of material in that regard. We also have workshops. Workshops are videos. They&#8217;re on demand, and their audience is direct learners. So somebody that wants to find out how to do the thing, at any time of day can come and watch the video. The videos could also be played, I have heard that several meetup groups have done this during a meetup or string, a series of them together.</p>\n\n\n\n<p>And then we have courses. And courses are sort of a roll-up of both of those pieces. So if you think of your years in school. You had a specific subject that you were studying. That was an entire course. And each day your instructor or presenter would have a smaller segment for just that day to cover.</p>\n\n\n\n<p>So a course would bring in some of the content from lesson plans and some of the content from workshops. And it would be self-paced, on demand. And those courses, when you complete them, do show a completion notification, I would say, on your wordpress.org profile. So if you&#8217;re looking at your wordpress.org profile and you look at the activity, you would see if somebody has completed a course.</p>\n\n\n\n<p>We have a proposal out to move those to its own designated tab. Going to give the heads up ahead of time, we&#8217;ll never call them batches because teams use badges to indicate contributors to teams in WordPress. But learn.wordpress.org is a great resource for somebody that wants to come and learn all kinds of things.</p>\n\n\n\n<p>Whether you are teaching others, or on demand learning, and you just need that one specific piece or want to go through an entire course. And at this time, I believe we&#8217;ve got five courses on getting started with WordPress, all the way up through using FSE, full site editing, to build out a site. And we have a few contributor courses that have moved over that the community team had housed previously, to help folks get onboarded with contributing.</p>\n\n\n\n<p>And then finally we have social learning spaces. And you may see those in your WordPress dashboard on the upcoming events area, but you also can find them on learn.wordpress.org. It is technically a meetup group under the hood and uses Zoom. These are sessions that happen and there are several throughout the week. Every week, there are several going on that you could swing by for about an hour. Sometimes an hour and a half or so, and learn whatever the topic is that&#8217;s being presented that day. Great folks like Daisy Olsen have been running a lot of those along with Sarah Snow. I&#8217;ve got one coming up soon with Anne and Sarah. Anne, a lot of us know, Anne McCarthy. We&#8217;ll be doing a call for testing using one of those social learning spaces.</p>\n\n\n\n<p>[00:10:31] <strong>Nathan Wrigley:</strong> That&#8217;s fabulous. I genuinely didn&#8217;t know that prime mover of the whole learn project was to assist people putting on meetups. Was the intention there just to facilitate people who were potentially, maybe trying it out for the first time. We were all in lockdown, as you said, and, and it&#8217;s quite daunting, isn&#8217;t it to</p>\n\n\n\n<p>[00:10:49] <strong>Courtney Robertson:</strong> Yeah.</p>\n\n\n\n<p>[00:10:49] <strong>Nathan Wrigley:</strong> to begin something like that, and just the process of setting one up might be daunting enough, but then to actually find material that you can talk about, was that the intention there? Just to bootstrap and kickstart more and more meetups?</p>\n\n\n\n<p>[00:11:00] <strong>Courtney Robertson:</strong> That was the intention in 2013. It has grown significantly, as you can imagine in that time. As has WordPress and the WordPress community. So in 2013, meetups were really just a new thing. And we were looking at ways to support meetup groups. And as things have evolved, we now want to help the job pipelines. We would like to provide some official guidance as to what should be covered for what skillsets.</p>\n\n\n\n<p>[00:11:29] <strong>Nathan Wrigley:</strong> It&#8217;s a really exciting time in WordPress. There&#8217;s so much happening. A lot of that centered around the new editor and full site editing and so on. So there&#8217;s definitely lots and lots of opportunities for things to be taught. I&#8217;m just wondering, in terms of the types of content that you will be putting or potentially that you will have put. Do you have any sort of constraints on the remit of the project?</p>\n\n\n\n<p>So for example, is it always going to be focused on the core of WordPress? Things that you can do inside of Core? What I&#8217;m really asking there, I suppose, in a backhanded way is do you stray into other areas, for example, things like third party plugins and things like that?</p>\n\n\n\n<p>[00:12:07] <strong>Courtney Robertson:</strong> Good question. We began our delve into third party plugins at WordCamp US in 2015. Those that have been around a while may know this. If you wanted to add some custom CSS to a site, before the customizer had it available, we needed Jetpack to do that. So as a team, we essentially indicated we want to make use of third party plugins.</p>\n\n\n\n<p>The parameters need to be that it&#8217;s in the wordpress.org repo. As things have launched, our main focus has started really with how to use WordPress to put a basic site together. However our audience for who can learn help is really vast. So we&#8217;ve formed some guidelines around third party plugins, and also for those that are hosting some social learning spaces. If somebody volunteers to host one, and many folks do volunteer to host those, we can&#8217;t be overly self-promotional, and if we are mentioning in any of our training materials, any type of plugin or something to that effect, that it be available, plugins, themes, be available through wordpress.org.</p>\n\n\n\n<p>We try to draw on the theme unit test data for our dummy content. We use the photos repo for our media. We use the showcase for showing off what WordPress is capable of doing. So we reference our own material as absolutely much as possible in that process, and have some just general guidelines for how we can cover the material safely for everybody.</p>\n\n\n\n<p>[00:13:37] <strong>Nathan Wrigley:</strong> Yeah, I feel that you&#8217;ve answered that really comprehensively. It feels very much like the same kind of constraints that we might have if we were, for example, putting on a WordCamp or something. The nature of the conversation that we could have as a presenter would feel like it&#8217;s falling under the same kind of boundaries.</p>\n\n\n\n<p>Yeah, that&#8217;s really cleared it up, thank you. Now, the project itself, the WordPress project, as I just alluded to a minute ago, it is really changed over the last few years. If you roll back the clock five or six years, the way WordPress behaved, the way that you created content is now completely different.</p>\n\n\n\n<p>And we&#8217;ve got all sorts of things which are coming down the pipe and they&#8217;re coming thick and fast. Things like full site editing and all of that kind of stuff. I&#8217;m just wondering what your priority list is? It feels to me like this question is basically asking what&#8217;s the roadmap? What kind of things that you&#8217;re prioritizing? Because there must be a limited amount of hours in everybody&#8217;s day that&#8217;s connected to the team and you&#8217;ve got to decide, okay, this feels like it matters more right now. Can you give us some idea about what are you thinking for the learn platform in the near future?</p>\n\n\n\n<p>[00:14:40] <strong>Courtney Robertson:</strong> Yeah, that&#8217;s a great question. So our team is comprised of both sponsored and self-sponsored or volunteers in all capacities. So that looks like there are a few folks that are sponsored by Automattic led by Hugh Lashbrooke, to be part of our team, as well as delightful project manager, Hauwa Abashir, and a plugin co-founder Pooja Derashri.</p>\n\n\n\n<p>And so that&#8217;s the core of our team. However, we have a lot of contributors and I say this first, because in open source, we can have some high-level type of priorities, but as you know, when it comes to people volunteering to do something, they&#8217;ll volunteer to what they want to do, and they&#8217;re not going to volunteer for what doesn&#8217;t interest them all the time.</p>\n\n\n\n<p>So with our priorities, we have a few ways of looking at priorities. The content priority is lately focused on doing as much as we can that is geared towards a release as close to release as possible. We have some great ways of trying to work a little bit into the future. So that right now we&#8217;re already preparing material that will come out with the next release.</p>\n\n\n\n<p>That would be 6.0 at the time of today&#8217;s recording. But we also have some other priorities as well, as you can imagine. We&#8217;re managing a website, a large website that is on a massive multi-site install. And so some of those other priorities look like, we just moved the team from Trello over to GitHub to help track all of the activity of what we&#8217;re creating and what our roadmap actually looks like and what our priorities are. That also helps surface our activity and contribution to the project, because that too then will help track with our .org profiles.</p>\n\n\n\n<p>We have some needs, some really big needs coming up. There is ideas around merging lesson plans and workshops. So that would be the instructional materials as well as the video that coincides with it, that would need to develop a resourcing. We would like to do a little bit more with the UX. We had a UX audit come back and we would like to do some more with the front of site. But again, that too would need some developer lift.</p>\n\n\n\n<p>And at this time our theme is not block-based and in our case, that could be helpful for us to help lay out that content in a way that would be more beneficial for learners as they come in. To find our roadmap, there will be lots of show notes available. To find our roadmaps, we have a few places, and I know that seems a little tricky. Go to make.wordpress.org/training, and from there, you&#8217;ll find a big blue box that talks about the training team&#8217;s goals for 2022. One of the next goals aside from content is a needs analysis. So that means actually talking to the WordPress community and saying, everything from a hobbyist, a small business owner to a large scale enterprise level agency.</p>\n\n\n\n<p>What do you need for training your staff? How can we help you reach those goals? What do you think the highest priority of content should be? And in what order should that happen? Get the feedback of what actually matters. And what&#8217;s going to be most beneficial. Who&#8217;s using this and how can we make it better?</p>\n\n\n\n<p>We also have sprints, and those sprints are, what are we working on just this month that is both content or the other annual goal type of projects? And so each month we&#8217;ll publish at the beginning of the month, what we&#8217;re doing this month, and at the end of the month, we&#8217;ll post a recap. How did it go? What did we get done? And we have our issues in GitHub and there&#8217;ll be some links available for those too. So if you want to see what&#8217;s the highest priority thing that I can contribute to, you could go right to our GitHub repo that shows you exactly that issue.</p>\n\n\n\n<p>[00:18:23] <strong>Nathan Wrigley:</strong> I have to say Courtney, you&#8217;ve done a fabulous job of giving me links. Virtually everything that Courtney is mentioning is going to be referenced in the show notes. So firstly Bravo, thank you for making my life easier and doing that. That&#8217;s brilliant. But just to say if you are curious about any of these bits, you&#8217;ll be able to find a portion in the show notes, which relates to each of the questions that we&#8217;re asking and in most cases there&#8217;s several links to follow through there.</p>\n\n\n\n<p>I&#8217;m just going to ask a question related to what we&#8217;ve just talked about, and that is, I&#8217;m going to use an example, and the example I&#8217;m using is the BBC, which is the British Broadcasting Corporation. The BBC is funded by tax payers essentially. We all have to contribute if we have a television set, and because of the fact that we&#8217;re all contributing there&#8217;s a thing called the BBC charter, and the BBC charter, now it may be imperfect, but it&#8217;s what they got. The charter compels the BBC to make programming for everybody.</p>\n\n\n\n<p>So it may be that there&#8217;s a giant audience for this type of program, and there&#8217;s a considerably smaller audience for this type of programming, but the charter, in theory, compels the BBC to make programming despite the fact that the audience may be smaller. You can see where I&#8217;m going with this probably. I&#8217;m just wondering if you have any of those kinds of things. Does it always come down to the numbers? In other words, if you can see that there&#8217;s a giant need for this, because everybody&#8217;s clamoring for this kind of tutorial or whatever, well, that&#8217;s obviously important, but there may be something over here, a bit of an edge case, really truly crucial to the people who need it, though their numbers may be small. I&#8217;m just wondering if there&#8217;s any those, kind of, bits that fit into the bigger jigsaw.</p>\n\n\n\n<p>[00:20:02] <strong>Courtney Robertson:</strong> They do. Those are areas that we would often allow the individual that has such an idea for that topic to help develop. Because again, open source, we allow the contributors that would like to do something. If they say this is the one thing that I am willing to do, then, okay then, we&#8217;ll work with that.</p>\n\n\n\n<p>That said we do have some priorities as you indicated, but some things will work across multiple pathways. And so by a learning pathway, what I mean is, if you think about who can learn help, and there&#8217;s actually a post that is cross-referenced to something that Josepha had helped create. I want to say it was about two years ago.</p>\n\n\n\n<p>When you think about all the edge cases of who can WordPress help, how is WordPress used? Josepha and Mark Uraine wrote a piece on make WordPress updates awhile ago about care and influence, a theory about the WordPress community. And it&#8217;s this broken down idea that we have, Core, central folks contributing. Then we have contributors on the project. We have extenders that are using WordPress. That will be what we&#8217;re doing right now. That&#8217;d be like a podcast about WordPress. Users of sites and also visitors of sites. And so when you break that down into actual kinds of careers or professions, or even just hobbyists, right?</p>\n\n\n\n<p>That is a lot of things. In the extenders category you have podcasters and you have newsletters, and you&#8217;ve got people that use WordPress for marketing purposes. Some are developers, some are in quality assurance. Some are support staff at companies. So who can learn help? Well, there&#8217;s a lot of varying needs like that.</p>\n\n\n\n<p>And I could see a lot of those edge cases that you mention, still applying to a lot of people. So learns really important. I think that learn is a great tool to help folks into not just the community in terms of events, but the community in terms of understanding what can I do with WordPress? And if WordPress is related to my profession, what do I need to know, and how can I best leverage, what learn has to offer to help me get there.</p>\n\n\n\n<p>[00:22:11] <strong>Nathan Wrigley:</strong> Yeah, thank you. Okay, let&#8217;s move on to the people who may be asking those questions of you. If I was to come to you and I had a particular topic in mind, and there was something that was really troubling me, and I wanted to get to the bottom of it. Are there any ways that I can ask, I don&#8217;t know, beg, plead maybe the right words for certain content to be created?</p>\n\n\n\n<p>[00:22:31] <strong>Courtney Robertson:</strong> Yes. So one of the ways is that if you need a little bit of extra help in doing that, if you are able to get to the make WordPress Slack and the training team inside of that, and you can find the link again from the training team site at make.wordpress.org/training. We are glad to give a little extra hand holding through that process.</p>\n\n\n\n<p>The other thing that we welcome folks to do is, go to our GitHub repo and submit a topic as a lesson plan idea. That does not mean that you need to create the lesson plan. If you would like to help create that or create a workshop, you may absolutely do that. But if it&#8217;s just, I have this one idea, this one thing, or I have got a vision for a course, and I could tell you every step along the way of what needs to go into the course, we are happy to work with you in that process.</p>\n\n\n\n<p>So we would begin with starting an issue in our GitHub repo and to be clear, if you&#8217;re not accustomed to GitHub, it&#8217;s about on par with submitting a form or a comment on a site. So our way of submitting an issue will look similar to that. You&#8217;ll get some preloaded template that asks you to fill in a little bit more information for us. And then we&#8217;ve got that idea of ready to go.</p>\n\n\n\n<p>[00:23:44] <strong>Nathan Wrigley:</strong> Yeah, GetHub can be very intimidating to look at can&#8217;t it, if you&#8217;re there for the time, but like you say, it&#8217;s merely a, a set of comments, so, oh, that&#8217;s really helpful, thank you. In terms of who is making the content, how the content is made, what does that look like? I&#8217;m going to sort of cross two questions here, and we&#8217;ll get onto learning paths and things like that, but just wondering, who&#8217;s actually putting the content together.</p>\n\n\n\n<p>Do you have particular panel, do you give certain members of the team the job of going away and create a video for that particular thing based upon these guidelines? Is it always the same people or can other people contribute their content? In other words, could I contribute my content? And if that was the case, are there any guidelines that would be helpful to know about?</p>\n\n\n\n<p>I mean, there&#8217;s obviously going to be things which are out of the remit, boundaries that I shouldn&#8217;t cross and probably ways that you would prefer me to curate that content.</p>\n\n\n\n<p>[00:24:35] <strong>Courtney Robertson:</strong> Yeah, absolutely. I would love to have you create a video. I love listening to your voice. Anyone is most welcome to help create that content. In fact, when learn launched, because we had this stockpile of lesson plans over the years, I counted nearly 200 contributors, at the launch of learn that had contributed over the years to the training team. That&#8217;s a staggering number for the work that we did.</p>\n\n\n\n<p>And I think back at all of those WordCamps when we had contributor days and all the folks that we met. It was great. So we have lots of people help create the content. But as you can imagine, during Covid, a lot of activity came to an absolute halt. I myself just resurfaced within contributing during that time, and none of the folks were around or available then. Literally no meetings had happened for several months and I had a hard time finding folks. We&#8217;ve grown since then, a lot. And the folks that are contributing these days, as I mentioned, there is a contingent of folks by Automattic that are contributing.</p>\n\n\n\n<p>I am there a good bit as well by making content, but we have a lot of people that are not sponsored. And I had spent about seven years in that category myself. And so I want to be very thoughtful. We&#8217;ve got a lot of folks that are absolutely delightful to work with. Speaking highly of my team reps as well.</p>\n\n\n\n<p>They do contribute so much in the way of content and proofreading. We open up opportunities to help folks proofread the material that goes out or create some feedback for others that are creating that content. So anybody is welcome to help come and make this stuff too.</p>\n\n\n\n<p>[00:26:12] <strong>Nathan Wrigley:</strong> In terms of the guidelines though, what would cut muster for inclusion? Presumably there&#8217;s barriers in terms of, okay, that&#8217;s too short. That&#8217;s far too long. The quality of the audio there is too poor. I think we probably could have covered the topic in half the time or whatever it may be. There are probably guidelines for keeping the quality high.</p>\n\n\n\n<p>[00:26:31] <strong>Courtney Robertson:</strong> That is true. We are working on improving that quality, and we do have a post that I did not provide a link to it ahead of time, and I will dig that back out for you. But it is basically the idea when we first launched, we&#8217;re new, in terms of creating videos. We&#8217;re new in terms of creating courses and let&#8217;s get going and learn as we go, what we&#8217;re doing.</p>\n\n\n\n<p>Our earliest videos, we learned a lot about needing to keep content current with revisions. That&#8217;s a really big struggle. When WordPress ships a big update, we have to come back and revise things. Also we have learned a good bit about, if we need the person&#8217;s video, their face on screen or not, about how to create these videos.</p>\n\n\n\n<p>The kind of quality that we&#8217;re looking for. We are flexible still within those parameters. In fact, one of our highest videos, I think was done during a contributor session for WordCamp India. And there was a bit of background it. So we&#8217;re learning. As we make learn, we&#8217;re learning and we would love to have lots of global representation. We would love to have a high quality production to it, but we&#8217;ll help each other get through that process.</p>\n\n\n\n<p>[00:27:43] <strong>Nathan Wrigley:</strong> I love the meta there. We&#8217;re learning to learn. That&#8217;s brilliant. The different formats that you do, actually no, I&#8217;ll come back to that in a moment. I&#8217;m going to ask about the way that your team meets, because we&#8217;re currently talking about people contributing their time, and you mentioned that you can go and do things like contribute in GitHub with comments and so on.</p>\n\n\n\n<p>But I&#8217;m just wondering if you became much more involved in the team and you were there regularly, not just committing a piece of content once in a while, but really digging into the team and trying to help out on a regular basis. It would be quite helpful to know what that might look like. Where do you hang out? Where do you do the work?</p>\n\n\n\n<p>[00:28:17] <strong>Courtney Robertson:</strong> Sure. So, forgive my American mindset about time, but on Tuesdays at noon Eastern time. On Thursdays at 7:30 AM Eastern or, oh, I forget exactly what time it is for Pooja, but she runs an APAC specific time zone meeting. And so it&#8217;s the same time and option available for both of these meetings. Those happen by the way, all in Slack, those are entirely Slack based chat messages, as you would find across the 20 now different WordPress teams. We conduct our meetings through Slack. We have coffee hours as a get to know folks session. Those are delightful to stop by and see. We&#8217;re running those Fridays at 9:00 AM Eastern. However, we are open to exploring alternative times for that.</p>\n\n\n\n<p>We&#8217;ve got some folks that are traveling that are our normals that help conduct these. So we&#8217;ll give it a few more weeks before we start looking into different time zones. We do those through Zoom. We find that that generally meets the most accessible needs and we have the accessibility team rep often join us too. So that&#8217;s delightful. And then you can find us, hopefully in the near future at a WordCamp close to you at a contributor day.</p>\n\n\n\n<p>[00:29:31] <strong>Nathan Wrigley:</strong> That would be nice.</p>\n\n\n\n<p>[00:29:32] <strong>Courtney Robertson:</strong> Yes.</p>\n\n\n\n<p>[00:29:33] <strong>Nathan Wrigley:</strong> Let&#8217;s hope that&#8217;s true. Now my understanding is that broadly speaking people fall into different types of learners. You may be kinesthetic, or you may be auditory or visual or what have you. That is going to inevitably lead to people, desiring different types of content. And you mentioned a moment ago, you called it learning paths, I think you said. What different formats have you got? I mean it may be that that is still to be explored. Maybe you&#8217;re going to invest time and effort into different things in the future, but whether you&#8217;ve got it live at the moment or whether it&#8217;s just a, an aspiration, tell us the thinking behind that.</p>\n\n\n\n<p>[00:30:06] <strong>Courtney Robertson:</strong> Yeah. Our content types, are lesson plans, workshops, courses, and social learning spaces. Our audience is quite vast, but then if you break it down into an individual, an individual may learn in different methods. So some folks really like videos. Some people really like to read, like it&#8217;s a book. And so our courses approach different learning styles.</p>\n\n\n\n<p>And the more that we can do that, the better. Our courses do suggest projects to extend upon what you&#8217;ve already learned. So often that would look like doing the work along with the course, and that would be delivered both in text and video form. And then having a suggested, now here&#8217;s a challenge to try on your own. To give you that hands-on experience without being guided. The more ways that we can continue to help cater to individual learning styles, the better.</p>\n\n\n\n<p>Also along those lines my teaching hat background comes in here. It really matters to me that we are available in the global space. And so that also looks like translation opportunities, because one of the things about learning styles is that, if you think about folks in, you and I both speak English. English second language individuals, that would be a student in a school whose first language was not English often needs a little extra support when they&#8217;re just beginning to be immersed English.</p>\n\n\n\n<p>And so, I don&#8217;t find it to be particularly reasonable or fair that somebody that is not primarily English is only presented training materials in English. We need a lot of support around getting the content available in as many languages as we possibly can. We also need then to help work on the initiatives that WordPress has to be multi-lingual.</p>\n\n\n\n<p>So at this time that&#8217;s on the roadmap, but it&#8217;s not until I think phase four in the Gutenberg project to be fully multilingual. So that presents a challenge then on Learn, because how do we make our courses available in different languages? We need some help.</p>\n\n\n\n<p>[00:32:08] <strong>Nathan Wrigley:</strong> Well, let&#8217;s hope that somebody listening to this is, uh, is going to step in and assist you with that. Just a thing, I may be jumping the gun here, and it may be something that you&#8217;re unable to talk about. You mentioned in our exchanges prior to recording that there was potentially in the future, some path towards certification. So I&#8217;m guessing, you know, you put the time in, and as a result, you are handed something in exchange to prove that you pass the test, if you like. You achieved what it was and you got through it all. Just tell us the thinking on that, even if none of it&#8217;s particularly concrete right now.</p>\n\n\n\n<p>[00:32:42] <strong>Courtney Robertson:</strong> Yeah. So this is a podcast for WP Tavern. If you&#8217;re interested in the history of WordPress entertaining the idea of certification, you may search the archives here. I will say that certification as we see it. I also had some questions about several years ago, I would say, but what changed my mind first and foremost was that when I was teaching in the bootcamp and I presented to my leaders, here&#8217;s what individuals need to be job ready, and here&#8217;s the timeframe that that could be delivered in and what would be adequate for the amount of each programming language, plus then how WordPress pulls that together. It wasn&#8217;t provided, it was a challenge then to get individuals placed for jobs.</p>\n\n\n\n<p>The resourcing for such material wasn&#8217;t readily available. So having a definitive here is what it would take to being basically job ready as a common industry accepted standard suddenly became a high priority in my mind. I realized, oh, if that was in place, it would be really easy to point to and say, here&#8217;s what folks need to be able to do. And here&#8217;s a pathway for how to learn that.</p>\n\n\n\n<p>So at this time we are not ready to begin starting a certification initiative. We are looking in quarter four of this year. So the last three months of 2022, of beginning, a discovery session. A discovery session means to, again, talk to folks about what they need, what their concerns are. Also look at other open source projects and see what worked and what didn&#8217;t work.</p>\n\n\n\n<p>I&#8217;ve been checking in with the folks that help form the certification over at Joomla. And I&#8217;m learning a bit about what has and has not worked for them. I&#8217;m keeping loose eyes on what Drupal is doing, but I think there&#8217;s something to learn from other open source initiatives that are not even about a content management system.</p>\n\n\n\n<p>So look at how do they do this? What have they learned? How would that potentially work for us? Would that work for us? What other concerns does the community have? So, disclaimer, folks. Yes, this is a hot topic. Yes, it&#8217;s had a history. We&#8217;re interested. We want to talk. That&#8217;s where we&#8217;re at at this time. We want to talk about it and the conversations happening starting around October of 2022.</p>\n\n\n\n<p>[00:34:59] <strong>Nathan Wrigley:</strong> Oh, a perfect time for us to release this then. You&#8217;ve got the people thinking about that in time for October. That&#8217;s fabulous. You mentioned earlier about resources for the learn project. And again, I don&#8217;t know if you&#8217;ve got an insight to deliver here. I&#8217;m just wondering how it is, how it is all funded essentially. Now you mentioned that your seconded from GoDaddy, forgive me the word wasn&#8217;t seconded it was whatever it was. GoDaddy provide you with the financial support so that you can lend your time to the project. What other resources are brought to bear. You mentioned that other people were seconded, there were volunteers and so on, but</p>\n\n\n\n<p>[00:35:37] <strong>Courtney Robertson:</strong> Yeah.</p>\n\n\n\n<p>[00:35:37] <strong>Nathan Wrigley:</strong> Is there anything else? Are there pots of money, which you can dip into provided by, I don&#8217;t know, sponsorship or different organizations who contribute to the project.</p>\n\n\n\n<p>[00:35:47] <strong>Courtney Robertson:</strong> Wouldn&#8217;t that be delightful if I just had unlimited money to use on this. Oh, where could we go? So our team does have some resources provided for our team. In addition to, there are contributors across multiple other organizations, I will say as well, that do periodically pop by for some contribution to the project as well.</p>\n\n\n\n<p>But we do have some resources. So a lot of teams in WordPress use Helpscout. Even Slack itself is a paid Slack instance, and I could be mistaken, but I believe that a lot of that financial work overhead is through Automattic. I would love to be corrected if so. We are using Sensei Pro, which is a learning management system. It is a plugin. The pro version just recently released, but that is owned by Automattic. Sensei has been an Automattic product for about 10 years. We do have an access through VideoPress. Should we need it? And VideoPress for WordPress TV is also how we embed our videos. So again, those two are provided through Automattic with Jetpack.</p>\n\n\n\n<p>Meetups that would run through WordCamp central. We recently received both WP Sandbox and Insta WP as options that we can use. So when somebody is going through a course, when we&#8217;re new to learning WordPress, the hardest challenge is to get a WordPress environment set up. And with both of these tools, we are able to, whether it is social learning spaces or courses or something to that effect. We&#8217;re able to very quickly get folks a single link that takes them to WordPress install. That&#8217;s got today&#8217;s theme, plugin and some demo content ready to go so they can get to work on doing the activity, not be stumped by how to set WordPress up. So those are fantastic resources that we do have available at this time.</p>\n\n\n\n<p>[00:37:30] <strong>Nathan Wrigley:</strong> Thank you very much. Is there anything else that I failed to ask you? Obviously, you know, you&#8217;ve really deeply embedded in this project and I&#8217;ve asked the questions that I wish to ask, but quite happy for you to tell us about something that I missed.</p>\n\n\n\n<p>[00:37:43] <strong>Courtney Robertson:</strong> Sure, I mentioned that we focused in early on, on just getting started using WordPress, but we make space for all of these other types of things that folks might want to learn how to do with WordPress. There&#8217;s really almost no limit, other than if we&#8217;re mentioning a plugin or a theme, keep it within WordPress dot org, so other people can access it and use it.</p>\n\n\n\n<p>But we do have some beginning workings of a developer content roadmap. I began forming this when I was planning what I needed to do at the front end dev bootcamp. I looked at it like at what point along the journey from installing WordPress and activating Hello Dolly to I&#8217;m going to build a multi-site WordPress instance, that power s thousands of sub-sites or something like that.</p>\n\n\n\n<p>How do you learn how to do all of these things? How do you begin learning? At what point do you learn APIs? What about build tools like Webpack. Those that are high into development with no, oh yeah, at some point I learned this and that, and what logically would happen with that?</p>\n\n\n\n<p>So we do have a higher level, how to learn everything from just getting started all the way through, I want you to do the most complex possible things available there. And I&#8217;m really excited that we will soon be joined by Jonathan Bossenger, as a developer educator. He is coming in again, sponsored by Automattic.</p>\n\n\n\n<p>And will be contributing developer oriented content. So that, that roadmap that I began laying down while at the bootcamp will hopefully come into play with creating more dev oriented content. If you&#8217;re interested in seeing what is everything in a logical order, again, challenge, we, we need dev resourcing to help develop the site as well here.</p>\n\n\n\n<p>So we have a pathway that is everything that we have made available. And it&#8217;s in a logical order, but it&#8217;s just a table at this time until we can get some more development on the site. So there&#8217;s a learn pathway link that I can provide. And then finally, again, the call-out is there, contribute, contribute.</p>\n\n\n\n<p>We love to partner with folks along the way. I know this is a lot. I&#8217;m coming in as a former second generation computer teacher. So I have a bit of a runway and I&#8217;ve been working with the project since 2013. We&#8217;ve talked about a lot today. It seems a lot of a lot. We&#8217;re happy to help slow it down and connect you with exactly where you need to go. Because again, our team is made up of a lot of folks that think like teachers.</p>\n\n\n\n<p>[00:40:16] <strong>Nathan Wrigley:</strong> In the course of this podcast, we&#8217;ve mentioned so much as you described, just to reiterate, if you&#8217;ve been listening to this podcast and you, you know, you&#8217;re maybe listening to it on your headphones whilst you&#8217;re driving the car or something like that. Don&#8217;t forget that the show notes will have all the links that Courtney&#8217;s provided and hopefully you&#8217;ll be able to get to the exact thing that piqued your interest. However Courtney, there&#8217;s one thing missing off those show notes, and that would be how we might contact you. If somebody has a need to speak to you on the back of this podcast, what&#8217;s the preferred way or ways of getting in touch?</p>\n\n\n\n<p>[00:40:51] <strong>Courtney Robertson:</strong> Yeah, so to help lighten the load, if it is specific to the training team or learn, please swing through the channel inside of make.wordpress.org/training. You&#8217;ll find our link to get to our Slack channel there. That helps the right folks get connected with you, so if it&#8217;s a general team question. If you would like to find me specifically courtneyr_dev on Twitter, Courtney Robertson on LinkedIn, courtneyr.dev is my website. You can find everywhere I am there.</p>\n\n\n\n<p>[00:41:19] <strong>Nathan Wrigley:</strong> Courtney Robertson thank you for joining us on the podcast today. I&#8217;ve really enjoyed it.</p>\n\n\n\n<p>[00:41:24] <strong>Courtney Robertson:</strong> Delightful, thanks for having me.</p>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 May 2022 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WordCamp Central: WordCamp Europe 2022 is just around the corner\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=3147947\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://central.wordcamp.org/news/2022/05/wordcamp-europe-2022-is-just-around-the-corner/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2817:\"<p>Only a few weeks left to join the European WordPress Communities and celebrate the 10th anniversary of WCEU.</p>\n\n\n\n<p>Nearing WordCamp Europe 2022 &#8211; the first in-person flagship WordCamp since the pandemic, things are getting exciting backstage. </p>\n\n\n\n<p>Celebrating the 10th anniversary of WordCamp Europe makes WCEU 2022 the best way to welcome back in-person events. So, what are the things you can expect from WordCamp Europe 2022? Weâ€™re listing all the updates, so keep reading!</p>\n\n\n\n<h2>The Speakers are already announced</h2>\n\n\n\n<a href=\"https://central.wordcamp.org/files/2022/05/a80d3e34-d1b9-acb5-517b-679649bce52f.jpg\"><img /></a>\n\n\n\n<p>An amazing lineup of speakers covering topics such as Business, Design, Gutenberg, Development, Accessibility, Headless, and more have been announced. For details, find out more <a href=\"https://europe.wordcamp.org/2022/news/\">here</a>.</p>\n\n\n\n<h2>The Schedule is posted on the WCEU 2022 website</h2>\n\n\n\n<a href=\"https://central.wordcamp.org/files/2022/05/82037f4d-c46a-d54f-1a64-b0941c532787.jpg\"><img /></a>\n\n\n\n<p>After announcing a wide range of great speakers in the past few weeks, the full schedule of WCEU 2022 is now revealed. There will be 40+ exciting sessions &amp; workshops along with a fun and amazing After Party. Click <a href=\"https://europe.wordcamp.org/2022/schedule/\">here</a> if you canâ€™t wait and want to check out the complete event schedule.</p>\n\n\n\n<h2>And the Contributor day is on!</h2>\n\n\n\n<a href=\"https://central.wordcamp.org/files/2022/05/96a88be8-1253-323b-2481-46de89879ef4.jpg\"><img /></a>\n\n\n\n<p>Contributor Day will take place, as usual, one day before the main WordCamp Europe event, on Thursday 2nd June 2022, at the same venue as the rest of the camp â€“ the Super Bock Arena in Porto. It is a full day of contributing and networking with other passionate WordPressers! In order to participate at Contributor Day, please complete this <a href=\"https://europe.wordcamp.org/2022/contributor-day/\">registration form</a>.</p>\n\n\n\n<h2>HOORAY!</h2>\n\n\n\n<p>So only a few weeks to go before WordCamp Europe 2022.</p>\n\n\n\n<p>The organizing team behind the scenes of WordCamp Europe 2022 can&#8217;t wait to meet you! Everyone is giving their best efforts to make sure you will enjoy an amazing event.</p>\n\n\n\n<p><em><strong>WordCamp Europe 2022 takes place 2- 4 June in Porto, Portugal.</strong></em><br />For more information, check the <a rel=\"noreferrer noopener\" href=\"https://europe.wordcamp.org/2022\" target=\"_blank\">WCEU website</a>.</p>\n\n\n\n<p><strong>Fired up and ready to be a part of the WordCamp Europe family?</strong></p>\n\n\n\n<div class=\"wp-container-1 wp-block-buttons\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://europe.wordcamp.org/2022/tickets/\">Grab your ticket</a></div>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 May 2022 08:13:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Timi Wahalahti\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WPTavern: Catch FSE Is a Bold, Business-Friendly WordPress Block Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=134226\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wptavern.com/catch-fse-is-a-bold-business-friendly-wordpress-block-theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7710:\"<p>And another theme shop hops on the block bandwagon. Catch Themes&#8217; first block-based theme, <a href=\"https://wordpress.org/themes/catch-fse/\">Catch FSE</a>, landed on WordPress.org over the weekend.</p>\n\n\n\n<p>The company is one of the most prolific authors in the official WordPress theme directory, touting a <a href=\"https://wordpress.org/themes/author/catchthemes/\">total of 109 themes</a>. There are only a few others with such an impressive body of work, at least in sheer numbers. Averaging over 10 new releases each year for the last decade is no small feat, and that just accounts for the company&#8217;s free themes.</p>\n\n\n\n<p>At a time when WordPress is still in a transitioning phase between classic, PHP-based themes and those built entirely from blocks, the community needs leaders in the space pushing the project forward.</p>\n\n\n\n<p>With WordPress 6.0&#8217;s slew of features, I expect we will see more and more authors join the ride.</p>\n\n\n\n<p>When reviewing new themes, I typically install them a few days ahead of time and test them off and on. Then, I decide if they are worth sharing with the Tavern audience. However, in this case, I am going in blind. Well, not <em>entirely</em> blind. I am familiar enough with some of Catch Themes&#8217; past work to know the company has produced some well-designed projects. Plus, I had quickly peeked at the demo.</p>\n\n\n\n<p>My immediate reaction after installing and activating Catch FSE was disappointment. The homepage did not look like the theme&#8217;s screenshot or what was <a href=\"https://fse.catchthemes.com/catch-fse/\">shown in the demo</a>. Instead of the business-friendly layout I expected, I gazed upon a standard blog post listing.</p>\n\n\n\n<img />Default homepage blog posts.\n\n\n\n<p>This should not be happening in the block themes era.</p>\n\n\n\n<p>Theme authors are not entirely at fault for this problem. Those who have submitted their designs to WordPress.org have been conditioned over the years to do this. This was a necessity in the classic theme era because users did not have the same control as they do now over their homepages. The site editor gives them that freedom, and it also breaks the shackles that have been holding theme authors back for years.</p>\n\n\n\n<p>Now is the time to be bold. Now is the time for theme authors to put their signature on their work, showcasing their design skills with those custom homepages they have always wanted to provide out of the box. Now is the time to break free of those draconian guidelines from an era that block-based themes are leaving behind.</p>\n\n\n\n<p>Catch Themes, if you are reading this, I want to see a <code>front-page.html</code> template in version 2.0 that outputs the following:</p>\n\n\n\n<img />Homepage design from the Catch FSE demo.\n\n\n\n<p>Give users an immediate solution instead of forcing them to create a new page, select a template, and move into the template editor to customize it.</p>\n\n\n\n<p>A blog post listing is a perfectly acceptable default for a theme, and Catch FSE&#8217;s works well enough&#8212;<em>those gradient &#8220;read more&#8221; buttons are also sweet</em>. However, if the screenshot and demo showcase a custom homepage, that is what I expect to see upon activation. And, based on my somewhat educated guess, it is also what the average user will expect.</p>\n\n\n\n<p>After tinkering around with the theme for a while longer, I realized how well-designed it was. The typography made for an enjoyable reading experience. Each template was well laid out. The footer &#8220;widgets&#8221; even felt right. Catch FSE was suddenly making a beeline toward the top of my favorite themes list this year.</p>\n\n\n\n<p>And, I must take another moment to appreciate the gradient used for buttons in the theme, as shown in this screenshot of the About Us pattern:</p>\n\n\n\n<img />&#8220;About Us&#8221; block pattern.\n\n\n\n<p>Those who have followed me long enough know that I often dislike dark designs. Automattic&#8217;s Livro made me <a href=\"https://wptavern.com/automattics-livro-is-a-minimal-block-theme-for-writers\">rethink my position</a> earlier this year. With Catch FSE, I am moving beyond merely tolerating such designs to enjoying them. <em>Well, some of them. Let&#8217;s not get crazy.</em></p>\n\n\n\n<p>What Catch FSE does as well as any theme is offer a well-designed set of block patterns. In total, it ships 15 that users can pick and choose from.</p>\n\n\n\n<img />Inserting a call-to-action pattern in the page editor.\n\n\n\n<p>From a development perspective, other theme authors should take notes. Following the DRY principle, Catch FSE routinely reuses its own patterns in its templates and parts.</p>\n\n\n\n<p>The theme registers 10 block styles, but it is impossible to know what most of them do without trying them out first. The user-facing label simply reads &#8220;Theme Style&#8221; for eight of them. <em>What does that even mean? If it is <strong>the</strong> theme style, should it not be the default?</em></p>\n\n\n\n<p>Most are generally design variations for the various blocks they are attached to. They might alter the typography, colors, or other styles, as shown in the following screenshot of the Blockquote block with the &#8220;Theme Style&#8221; assigned to it:</p>\n\n\n\n<img />Assigning a custom style to the Blockquote block.\n\n\n\n<p>That is actually a well-designed Blockquote style, but I would have never known it was something I would want to use if I had not been digging. Custom block styles suffer from a bit of a discoverability problem by default, and cryptic names for them are doing users no favors.</p>\n\n\n\n<p>Most of the issues I had with the theme were around the comments list design. However, it is not yet using the new Comments Query Loop block shipping with WordPress 6.0. In a future release, I would like to see the author put more time into bringing it up to par with the rest of the theme&#8217;s design. At the moment, it feels like a feature that was tacked on as an afterthought.</p>\n\n\n\n<p>Catch FSE is a freemium theme with a commercial <a href=\"https://catchthemes.com/fse-pro-plugin/\">add-on plugin</a> that offers three custom blocks and 10 patterns. I like seeing the upsells focused purely on value-adds.</p>\n\n\n\n<p>I have often said that the next generation of freemium themes cannot be like the last. Developers will need to focus on enticing users with solutions to their problems instead of nickel-and-diming customers, locking necessary features behind a paywall. The block system is changing the game, and when most users can flesh out their site designs via the built-in WordPress site editor, the old-school upsells will not cut it.</p>\n\n\n\n<p>Turnkey, plug-n-play solutions are needed. I may be so far off-base that I am not even in the ballpark, but I foresee block patterns being a central part of that. Once commercial theme authors figure out how to market and build with these new tools, we will see an explosion of growth in the block-based themes space.</p>\n\n\n\n<p>Catch Themes&#8217; 10 commercial patterns represent a start, but I imagine the company will need to continue pushing limits to see a worthwhile return on its premium upsell. Now is the time for experimentation while the field is wide open.</p>\n\n\n\n<p><em>My biggest nit-pick?</em> The name.</p>\n\n\n\n<p><strong>Attention all developers:</strong> Can we stop naming themes &#8220;Something FSE&#8221; and &#8220;Guten Something&#8221;? It is confusing and makes it tough to remember which project is which. Take some time to come up with something that stands out in the crowd.</p>\n\n\n\n<p>Catch FSE is a bold and beautiful business-ready theme, but it needed a name to match its personality. I only hope folks remember it.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 11 May 2022 03:27:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"WPTavern: WPSiteSync Shuts Down, Commercial Extensions Now Available on GitHub\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=134205\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wptavern.com/wpsitesync-shuts-down-commercial-extensions-now-available-on-github\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4898:\"<p><a href=\"https://wpsitesync.com/\">WPSiteSync</a>, a content syncing plugin from the team behind DesktopServer, has discontinued support for its free, core plugin and commercial extensions. The plugin lets users sync specific content, such as posts, pages, featured images, and taxonomies, without having to migrate the entire database. Commercial <a href=\"https://wpsitesync.com/downloads/\">extensions</a> allowed users to sync things like WooCommerce products, Gutenberg blocks, EDD product information, custom post types, Beaver Builder projects, and more.</p>\n\n\n\n<p>It has been nine months since the <a href=\"https://wordpress.org/plugins/wpsitesynccontent/\">WPSiteSync plugin</a> was updated and more than a year since a major release. After six years, the ServerPress team has published a statement explaining their reasons for shutting down:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>After a lot of consideration and discussion, we have concluded that we will no longer be updating WPSiteSync and its Premium Extensions. This was a difficult decision for us to make as we know that many of you rely on it in order to enhance your WordPress Workflow. The decision was made due to the fact that with each extension being dependent on the code of the plugin that it supports, we could not keep up with their changes as we enhanced our library, and frankly, there was not as much demand for it as we had hoped. Additionally, we found that our time supporting WPSiteSync took away from our ability to move our flagship product, DesktopServer, forward.</p></blockquote>\n\n\n\n<p>The ServerPress team plans to integrate some of WPSiteSync&#8217;s functionality into its DestopServer product and is making the current iteration of the plugin and all of its commercial extensions <a href=\"https://github.com/ServerPress\">available for free on GitHub</a>. </p>\n\n\n\n<p>PublishPress founder Steve Burge, whose business followed a similar monetization path, commented that WPSiteSync chose &#8220;an honorable and honest way to end the commercial life of a WordPress plugin.&#8221; He said his company considered a similar set of features &#8220;but it seemed as daunting as they describe.&#8221; </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">This is an honorable and honest way to end the commercial life of a WordPress plugin: <a href=\"https://t.co/DQ1dKnjvMC\">https://t.co/DQ1dKnjvMC</a><br /><br />(We\'d considered a similar set of features for PublishPress, but it seemed as daunting as they describe)</p>&mdash; Steve Burge (@SteveJBurge) <a href=\"https://twitter.com/SteveJBurge/status/1523748197943848962?ref_src=twsrc%5Etfw\">May 9, 2022</a></blockquote>\n</div>\n\n\n\n<p>The free core with commercial extensions business model can work well, but it can also stretch a development team thin if they are also responsible for a flagship product on top of maintaining such a diverse set of extensions. Keeping up with changes in Gutenberg, WooCommerce, Beaver Builder, EDD, and many other fast-moving plugins is an ambitious endeavor. It&#8217;s easy to see how the support and maintenance of these extensions could become untenable.</p>\n\n\n\n<p>&#8220;Just as an example, the Advanced Custom Fields extension might take X number of hours to code and then they might make one small change in how it writes to the database and then our extension would lose its functionality,&#8221; ServerPress Operations Director Marc Benzakein told the Tavern. &#8220;This often meant that instead of continually sticking with a production schedule, we would have to change our focus to support the ACF plugin. The more plugins WPSiteSync supported, the more untenable it became and the more man-hours it took to support it.&#8221; </p>\n\n\n\n<p>Benzakein also said another reason ServerPress decided not to sell is because they are exploring the idea of approaching it from a more manageable direction, to have WPSiteSync features available as an integration into their other workflow tool. </p>\n\n\n\n<p>WPSiteSync has hovered at approximately 3,000 active installs for the past two years. Putting the plugin and extensions on GitHub gives WPSiteSync and its extensions the opportunity to be forked and supported by a new team with more incentive and resources. Shutting down may be disappointing for current users and customers, but, after so long without updates, it&#8217;s better that the software is officially released to the public for a chance at new life.</p>\n\n\n\n<p>Customers who purchased WPSiteSync&#8217;s &#8220;Premium Bundle&#8221; within the last 30 days can request a refund. </p>\n\n\n\n<p>&#8220;We will support our current customers as far as we can,&#8221; Benzakein said. &#8220;By and large the plugin and its extensions still work and the core plugin, which is available on the repo, will likely continue to work for some time as well.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 May 2022 22:15:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"Post Status: Celebrate Small Businesses\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=97393\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://poststatus.com/celebrate-small-businesses/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1128:\"<p class=\"has-drop-cap\">There are 455,000,000+ websites running WordPress. There are a <em>lot</em> of small businesses supporting those sites! Our Post Status community represents a number of those companies and my guess is that most of you receiving our newsletter own or work with small businesses as well.<br /><br />In May we <a href=\"https://www.sba.gov/national-small-business-week\">celebrate small businesses</a> in the United States to honor everyone who is stepping out on that ledge. We can honor them by choosing to shop differently this month, by sending notes of thanks to those who support us, or by sharing our small business story with others. Would you like to share your small business story with us? We would love to add it to our blog this month! (Just comment here, <a href=\"https://poststatus.com/contact\">use our contact form</a>, or reach out on Twitter: <a href=\"https://twitter.com/LindseyMillerWP\">@LindseyMillerWP</a>.)<br /><br />I hope you take some time to recognize and celebrate others who are on this path with us.</p>\n\n\n\n<p class=\"has-text-align-right\"><strong>â€“ Lindsey Miller</strong></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 May 2022 19:45:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Lindsey Miller\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"WordPress.org blog: WordPress 6.0 Release Candidate 2 (RC2) Now Available for Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12840\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://wordpress.org/news/2022/05/wordpress-6-0-release-candidate-2-rc2-now-available-for-testing/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4786:\"<p>The next release candidate for WordPress 6.0 is now available!&nbsp;</p>\n\n\n\n<p>WordPress 6.0 is scheduled for release on May 24th, 2022 &#8211; just two weeks from today.</p>\n\n\n\n<p>â€œRelease Candidateâ€ means that this version of WordPress is ready for release! Since the WordPress ecosystem includes thousands of plugins and themes, it is important that everyone within the WordPress community check to see if anything was missed along the way. That means the project would love your help.</p>\n\n\n\n<p>Thank you to everyone who has contributed towards testing and logging issues to help make WordPress 6.0 stable (and awesome). WordPress still needs your help testing, especially theme and plugin developers.</p>\n\n\n\n<p>Since the RC1 release on May 3rd, 2022, there have been approximately 40 issues resolved in <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.0\">Gutenberg</a> and <a href=\"https://core.trac.wordpress.org/query?status=accepted&status=closed&changetime=05%2F03%2F2022..05%2F10%2F2022&resolution=fixed&milestone=6.0&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=id\">Trac</a>.</p>\n\n\n\n<h1>Installing RC2</h1>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, and test this version of WordPress on a production or mission-critical website. Instead, it is recommended that you RC2 on a test server and site.&nbsp;</p>\n\n\n\n<p>You can test WordPress 6.0 RC2 in three ways:</p>\n\n\n\n<ul><li><strong>Option 1: </strong>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the â€œBleeding edgeâ€ channel and â€œBeta/RC Onlyâ€ stream).</li></ul>\n\n\n\n<ul><li><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.0-RC2.zip\">release candidate version here (zip)</a>.</li></ul>\n\n\n\n<ul><li><strong>Option 3:</strong> When using WP-CLI to upgrade from Beta 1, 2, 3, 4, or RC1 on a case-insensitive filesystem, please use the following command:<br /><code>wp core update --version=6.0-RC2</code></li></ul>\n\n\n\n<p>Additional information on the full <a href=\"https://make.wordpress.org/core/6-0/\">6.0 release cycle is available here</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-0/\">6.0-related developer notes</a> in the coming weeks, which will detail all upcoming changes.</p>\n\n\n\n<h1>Plugin and Theme Developers</h1>\n\n\n\n<p>All plugin and theme developers should test their respective extensions against WordPress 6.0 RC2 and update the â€œ<em>Tested up toâ€</em> version in their readme file to 6.0. If you find compatibility problems, please be sure to post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> so that these items can be investigated further prior to the final release date of May 24th.</p>\n\n\n\n<p>Review the <a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\"><em>WordPress 6.0 Field Guide</em></a> for more details on this release.</p>\n\n\n\n<h1>Translate WordPress</h1>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages</a>.</p>\n\n\n\n<h1>How to Help Test WordPress</h1>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute to WordPress. If you are new to testing, check out this <a href=\"https://make.wordpress.org/test/2022/04/12/help-wanted-test-wordpress-6-0/\">detailed guide</a> that will walk you through how to get started.</p>\n\n\n\n<p>If you think you have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2>An RC2 Haiku for You</h2>\n\n\n\n<p>Anticipation<br />Sprinting toward G/A now<br />Please â€” test, translate â€” thanks!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Thank you to the following contributors for collaborating on this post: <a href=\"https://profiles.wordpress.org/dansoschin/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>dansoschin</a>, <a href=\"https://profiles.wordpress.org/priethor/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>priethor</a>.&nbsp;&nbsp;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 May 2022 18:06:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"Do The Woo Community: The WooCommerce Roundtable Dives Into WordPress 6.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=71617\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://dothewoo.io/the-woocommerce-roundtable-dives-into-wordpress-6-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:420:\"<p>The WooCommerce panel talks about WordPress 6.0 with insights around the features, hosting, education, blocks and web development.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://dothewoo.io/the-woocommerce-roundtable-dives-into-wordpress-6-0/\">The WooCommerce Roundtable Dives Into WordPress 6.0</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 May 2022 10:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WPTavern: WordPress 6.0 To Ship New Block Locking Feature\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=134165\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wptavern.com/wordpress-6-0-to-ship-new-block-locking-feature\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4458:\"<p>WordPress 6.0 has several new features that should make any extender happy about building on top of the platform. However, one of the more advanced tools is the ability to lock blocks, which can be used to prevent specific blocks from being moved or removed.</p>\n\n\n\n<p>The upcoming release includes a new &#8220;Lock&#8221; setting in the block toolbar&#8217;s options dropdown, as shown in the following screenshot:</p>\n\n\n\n<img />Selecting the Lock option from the block toolbar.\n\n\n\n<p>Once clicking the lock option, a modal appears that allows the user to disable movement of the block or prevent its removal:</p>\n\n\n\n<img />Block locking options.\n\n\n\n<p>Thus far, the best use case I have found for locking blocks via the UI is to stop accidental edits. Because users have access to the UI settings by default, they can disable the lock later if I need to move something around the layout or delete it.</p>\n\n\n\n<p>On the surface, this may not seem like a particularly robust feature. However, the real power of block locking is on the development end. Theme authors can use the new <code>lock</code> key to prevent end-users from moving or removing specific blocks in their templates.</p>\n\n\n\n<p>The following code is an example of a Group block that prevents both:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!-- wp:group {\"lock\":{\"move\":true,\"remove\":true}} -->\n\n&lt;!-- /wp:group --></code></pre>\n\n\n\n<p>This can be especially handy for more complex layouts, such as a header and navigation area. Theme authors can now exert more control over the user experience in places where the design might easily be broken.</p>\n\n\n\n<p>Note that locking does not trickle down to nested blocks. Therefore, if an outer Group block is locked, users can still add, remove, or move anything inside it. Themers must also add a lock to any nested items they want to keep in place. There is an open ticket and some early design work around <a href=\"https://github.com/WordPress/gutenberg/issues/40069\">locking nested blocks</a>, but it will not land in WordPress 6.0.</p>\n\n\n\n<p>While this new feature offers more control for theme authors, it does not grant absolute power. Users can still unlock blocks by clicking the lock icon in the toolbar. However, as is the common saying in WordPress development circles, &#8220;There is a hook for that.&#8221;</p>\n\n\n\n<p>George Mamadashvili <a href=\"https://make.wordpress.org/core/2022/05/05/block-locking-settings-in-wordpress-6-0/\">covered using the <code>block_editor_settings_all</code> filter hook</a> to customize access. He provided a few examples of enabling or disabling the UI based on capabilities, user email, and context, such as the post type. There is no limit on how developers can use this hook. In general, capability checks are typically the best option when dealing with permissions.</p>\n\n\n\n<p>A developer could disable any user&#8217;s ability to move or remove blocks. In real-world cases, this should help agencies and freelancers create tightly-controlled experiences for their clients, especially when handing over access to the site editor.</p>\n\n\n\n<p>For developers who are building themes for release on WordPress.org, the Themes Team currently disallows using this hook. It falls under the &#8220;plugin territory&#8221; guideline. Last month, <a href=\"https://make.wordpress.org/themes/2022/04/26/themes-team-meeting-notes-april-26-2022/\">the team announced</a> that themes could lock blocks but not disable the user&#8217;s ability to unlock them.</p>\n\n\n\n<p>Block locking is not limited to block-based templates. It is also possible to lock things down within posts or pages. With a custom permissions setup, developers could extend it to give administrators and editors free rein while preventing authors and contributors from overriding locks, for example.</p>\n\n\n\n<p>By default, all blocks support locking. For plugin developers who want to opt-out of this feature, they can set the <code>supports.lock</code> key to <code>false</code> in their <code>block.json</code> file.</p>\n\n\n\n<p>I am eager to see new WordPress plugins built on this system. There is plenty of room to explore from site customization and editing flow angles.</p>\n\n\n\n<p>For further reading, check out Anne McCarthy&#8217;s post on creating <a href=\"https://make.wordpress.org/core/2022/02/09/core-editor-improvement-curated-experiences-with-locking-apis-theme-json/\">curated experiences with locking APIs and theme.json</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 10 May 2022 04:52:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WPTavern: Ulysses App Updates WordPress Publishing to Use WP REST API\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=134148\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wptavern.com/ulysses-app-updates-wordpress-publishing-to-use-wp-rest-api\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2701:\"<img />\n\n\n\n<p><a href=\"https://ulysses.app/\">Ulysses</a>, a writing app for Mac, iPad, and iPhone, has <a href=\"https://ulysses.app/releases/\">released</a> version 26. This is an important update for those who use the app to write and publish to WordPress. It adds support for more blogs and has simplified the process of setting them up using the WordPress REST API.</p>\n\n\n\n<p>Under the File > Publishing Preview menu, users with connected WordPress sites can see how their posts would look with the Twenty Twenty-One default theme. Here you can also manage external publishing accounts and add multiple WordPress blogs by authenticating for each one and authorizing the Ulysses app. (Accounts were previously available under a separate menu but are now found under the Publishing Previews screen.)</p>\n\n\n\n<img />\n\n\n\n<p>Ulysses has been around since 2003 &#8211; as long as WordPress, and has gained a loyal customer base over the past 19 years. It is run by a small team based in Leipzig, Germany. The app&#8217;s users are often attracted by its sophisticated support for writing projects, distraction-free writing interface, and clean design, which won an Apple Design Award in 2016. </p>\n\n\n\n<p>The app has supported publishing directly to WordPress since version 2.6, released in August 2016. Prior to this release, users had been exporting their posts as HTML or Markdown and pasting them into the WordPress editor. <a href=\"https://wptavern.com/ulysses-22-adds-wordpress-post-updating\">Version 22</a>, released in 2021, introduced Micro.blog publishing and WordPress post updating.</p>\n\n\n\n<p>In addition to the more modernized WordPress publishing integration, the latest update changes the publishing flow UI to feature dedicated buttons for quick access to publishing and the publishing preview. It also introduces a new counter on MacOS in the editor that shows the word count and pops out a little table of other stats on click, including characters, sentences, paragraphs, pages, and more.</p>\n\n\n\n<img />\n\n\n\n<p>Version 26 also fixes some sluggishness in the editor and eliminates a gaggle of annoying crash scenarios that users have been experiencing:</p>\n\n\n\n<ul id=\"block-4f7f6d69-01bc-4de2-961d-d09011b67cb4\"><li>Fixed a crash when sharing a sheet from Ulysses</li><li>Fixed a potential delay when typing in the editor</li><li>Fixed a rare crash on app launch</li><li>Fixed a crash when dragging a sheet from Mac to iPad using Universal Control</li></ul>\n\n\n\n<p>Ulysses users who want to find out what&#8217;s coming in upcoming releases can test new features before they come available by joining the app&#8217;s <a href=\"https://ulysses.app/beta/\">beta program</a> for iOS or macOS.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 May 2022 22:44:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"Gutenberg Times: WordPress 6.0 Devnotes, Sneak Peeks and articles â€“ Weekend edition 214\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=21086\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://gutenbergtimes.com/wordpress-6-0-devnotes-sneak-peeks-and-articles-weekend-edition-214/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11117:\"<p>Howdy, </p>\n\n\n\n<p>Today&#8217;s Weekend Edition is full of WordPress 6.0 developer notes  and articles. The  <a href=\"https://wordpress.org/news/2022/05/wordpress-6-0-release-candidate-1/\">Release Candidate 1 was released this week</a>. Now is a good time to test the new version with your themes, plugins and hosting. And <a href=\"https://wordpress.org/support/forum/alphabeta/\">report bugs and quirks</a>!  </p>\n\n\n\n<p>It&#8217;s already quite late, let&#8217;s get this on the road! </p>\n\n\n\n<p>Be well, and have a great next week! </p>\n\n\n\n<p>Yours,?<br />Birgit</p>\n\n\n\n\n\n<div class=\"wp-container-6 wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<p><strong>?ï¸ </strong> New episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-65-gallery-block/\">Gutenberg Changelog #66 â€“ Gutenberg 13.1, New Zealand, InnerBlocks</a> with co-hosts Birgit Pauli-Haack and Mary Job. Special Guest: Glen Davies</p>\n</div></div>\n\n\n\n<h2>Developer Notes for Block Themes and the Editor in WordPress 6.0</h2>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\">WordPress 6.0 Field Guide</a> is published for your perusal. Grab&#8217; your favorite beverage and start reading. ? </p>\n\n\n\n<p>Here, as always, I collected the Dev Notes specifically related to the Block editor:</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/05/03/separator-block-updated-to-use-block-supports-color-settings/\">Separator block: Updated to use block supports color settings</a> </li><li><a href=\"https://make.wordpress.org/core/2022/05/03/support-for-handling-resolution-errors-for-editor-data-module/\">Support for handling resolution errors for Editor data module</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/05/updates-to-the-wordpress-create-block-templating-system/\">Updates to the @wordpress/create-block templating system</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/05/block-locking-settings-in-wordpress-6-0/\">Block Locking Settings in WordPress 6.0</a> </li></ul>\n\n\n\n<p><strong>Building Themes</strong> </p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/05/03/page-creation-patterns-in-wordpress-6-0/\">Page creation patterns in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/global-styles-variations-in-wordpress-6-0/\">Global Styles variations in WordPress 6.0</a> </li><li><a href=\"https://make.wordpress.org/core/2022/05/02/new-features-for-working-with-patterns-and-themes-in-wordpress-6-0/\">New features for working with patterns and themes in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/02/theme-export-in-wordpress-6-0/\">Theme export in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/block-markup-updates-for-image-quote-list-and-group-blocks/\">Block markup updates for image, quote, list and group blocks</a><br /></li></ul>\n\n\n\n<p>There is also the <a href=\"https://make.wordpress.org/core/2022/05/03/block-editor-miscellaneous-dev-notes-for-wordpress-6-0/\">Block Editor miscellaneous Dev Notes for WordPress 6.0</a> with the following short notes: </p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/05/03/block-editor-miscellaneous-dev-notes-for-wordpress-6-0/#bottom-margin\">Removed bottom margin on LineHeightControl component</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/block-editor-miscellaneous-dev-notes-for-wordpress-6-0/#block-preservation\">Unrecognized block preservation</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/block-editor-miscellaneous-dev-notes-for-wordpress-6-0/#blocks-in-themes\">Registration of Blocks from within Themes</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/block-editor-miscellaneous-dev-notes-for-wordpress-6-0/#enable-post-comments\">Enable legacy Post Comments block</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/block-editor-miscellaneous-dev-notes-for-wordpress-6-0/#gallery-block\">Gallery block â€“ Ability to adjust gap between images added</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/block-editor-miscellaneous-dev-notes-for-wordpress-6-0/#ancestor\">New&nbsp;<code>ancestor</code>&nbsp;property in&nbsp;<code>block.json</code></a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/block-editor-miscellaneous-dev-notes-for-wordpress-6-0/#media-entity\">Changes to media object returned from the WordPress data module</a>&nbsp;</li><li><a href=\"https://make.wordpress.org/core/2022/05/03/block-editor-miscellaneous-dev-notes-for-wordpress-6-0/#removed-apis\">Removed Deprecated APIs</a>&nbsp;</li></ul>\n\n\n\n<p>There are a ton of details to digest. Take you time. ? </p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2>Block editor for content creators, site owners and site builders. </h2>\n\n\n\n<p>In the <strong><a href=\"https://wordpress.org/news/2022/05/episode-30-a-sneak-peek-at-wordpress-6-0/\">thirtieth episode of the WordPress Briefing,</a></strong> Executive Director <strong><a href=\"https://twitter.com/JosephaHaden\">Josepha Haden Chomphosy</a></strong> and special guest <strong><a href=\"https://twitter.com/critterverse\">Channing Ritter</a></strong> give listeners a sneak peek into the WordPress 6.0 release ahead of the Release Candidate 1 (RC1).</p>\n\n\n\n<p>Learn more about Style Switcher and the Style variations coming with the Twenty-Twenty-Two theme updates. Chomphosy and Ritter also touch on the Block locking UI features for site builders. Ritter is the design release lead for WordPress 6.0 and she talks about the experience. It&#8217;s particular interesting because, the position wasn&#8217;t assigned for a few release cycles. I also learned about the new feature tying the Slack #props channel to the WordPress profile. Listen in and have fun. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In<a href=\"https://stunningdigitalmarketing.com/episode-225-block-museum-and-wordpress-6-0/\"> his podcast&#8217;s 225th<strong>,</strong></a> <strong><a href=\"https://twitter.com/RobCairns\">Rob Cairns</a></strong> sits down with <strong>Anne McCarthy </strong>of Automattic to talk about her <a href=\"https://gutenbergtimes.com/introducing-the-museum-of-block-art-moba/\">Block Museum project</a> and the road to WordPress 6.0. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://twitter.com/carlodaniele\"><strong>Carlo Daniele</strong></a> did a deep dive into all the features coming to WordPress 6.0 for Kinsta Blog: <strong><a href=\"https://kinsta.com/blog/wordpress-6-0/\">Whatâ€™s New in WordPress 6.0: New Blocks, Style Switching, Template Editing, Webfonts API, and Much More</a></strong>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>For a less technical overview and more visual details, head on over to WPBeginner&#8217;s post: <a href=\"https://www.wpbeginner.com/news/whats-coming-in-wordpress-6-0-features-and-screenshots/\"><strong>Whatâ€™s Coming in WordPress 6.0 (Features and Screenshots)</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h2>Upcoming WordPress Social Learning Meetups</h2>\n\n\n\n<p><strong>May 9, 2022 3am EDT/ 7am UTC</strong><br /><a href=\"https://www.meetup.com/wordpress-social-learning/events/285413699/\"><strong>Showcasing Content with Query Loops</strong></a>&nbsp;w/ Wes Theron</p>\n\n\n\n<p><strong>May 12, 2022 &#8211; 2pm EDT / 18:00 UTC</strong><br /><a href=\"https://www.meetup.com/wordpress-social-learning/events/285518274/\"><strong>Builder Basics: Working with Templates in Full Site Editing (Part 2)</strong></a> w/ Nick Diego</p>\n\n\n\n<p><strong>May 18, 2022 &#8211; 6 pm EDT / 22:00 UTC</strong><br /><strong><a href=\"https://www.meetup.com/wordpress-social-learning/events/285518331/\">Sticky Styling: Getting Colors, Fonts, and Sizes to Stick</a></strong> w/ Sarah Snow</p>\n\n\n\n<p><strong>May 19, 2022 5pm EDT / 21:00 UTC</strong><br /><a href=\"https://www.meetup.com/wordpress-social-learning/events/285412812/\"><strong>Using the Navigation Block</strong></a>&nbsp;w/ Wes Theron</p>\n\n\n\n<p><strong>May 19, 2022 &#8211; 2pm EDT / 18:00 UTC</strong><br /><strong><a href=\"https://www.meetup.com/wordpress-social-learning/events/285518331/\">Builder Basics: Working with Templates in Full Site Editing (Part 3</a></strong><a href=\"https://www.meetup.com/wordpress-social-learning/events/285518274/\"><strong>)</strong></a> w/ Nick Diego</p>\n\n\n\n<p><strong>May 25, 2022 &#8211; 7pm EDT / 23:00 UTC </strong><br /><strong><a href=\"https://www.meetup.com/wordpress-social-learning/events/285577455/\">Design With Me: Create a Simple Website for your Small Business</a></strong> w/ Sarah Snow</p>\n\n\n\n\n<p>Featured Image: &#8220;<a href=\"https://www.flickr.com/photos/9322302@N03/1886898013\" target=\"_blank\" rel=\"noreferrer noopener\">Brick</a>&#8221;&nbsp;by&nbsp;<a href=\"https://www.flickr.com/photos/9322302@N03\" target=\"_blank\" rel=\"noreferrer noopener\">marv1nalon3</a>&nbsp;is marked with&nbsp;<a href=\"https://creativecommons.org/licenses/by-nc-sa/2.0/?ref=openverse\" target=\"_blank\" rel=\"noreferrer noopener\">CC BY-NC-SA 2.0</a>. found on <a href=\"https://wordpress.org/openverse/\">Openverse</a></p>\n\n\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 07 May 2022 23:49:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WPTavern: How To Build Coupon Cards With WordPress Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=134129\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wptavern.com/how-to-build-coupon-cards-with-wordpress-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5378:\"<p class=\"has-drop-cap\">Last year, I designed several patterns for showcasing coupon codes on a site. They were part of a larger theme project that I never finished. However, I had a ton of fun playing around with variations. Disliking them withering away on my laptop&#8217;s hard drive, I thought I would share them with the Tavern audience.</p>\n\n\n\n<p>The base coupon card looks like the following:</p>\n\n\n\n<img />\n\n\n\n<p>When I designed it and the others, I had Christmas on my mind (if that was not obvious from the screenshot). Of course, I am always thinking about the holiday, usually starting my shopping by at least July each year.</p>\n\n\n\n<p>Other than the image, I intentionally left most of the design generic so that it easily applies to other holidays and events.</p>\n\n\n\n<p>This tutorial in the <a href=\"https://wptavern.com/category/building-with-blocks\">Building with Blocks</a> series will walk you through each step of creating custom coupon cards from the editor. I will also share a couple of ideas for variations at the end.</p>\n\n\n\n<h2>Step 1: Adding a Group Block</h2>\n\n\n\n<img />Adding a Group block with custom background and border.\n\n\n\n<p>As with most patterns, you should start with a container-type block. For the coupon card, begin by inserting a Group. You are free to personalize this however you want. However, to use the same layout in the tutorial, you should at least set the block&#8217;s padding to <code>0px</code> and block spacing option to <code>0px</code>. Those need to be zeroed out for the rest of the design to work.</p>\n\n\n\n<p>I adjusted my Group block to have a light gray background color. Then, I added a <code>4px</code> dashed border and an <code>8px</code> border-radius. Each of these design tools is available in the block inspector in the sidebar panel. Have a little fun with colors and other settings until you find something you like.</p>\n\n\n\n<h2>Step 2: Add an Image</h2>\n\n\n\n<img />Inserting an Image block into the Group.\n\n\n\n<p>This step is straightforward. Insert an Image block inside of the Group from step #1. There are no particular settings required.</p>\n\n\n\n<p>Of course, you should link it to something via the insert-link button in the toolbar. <em>You are presumably selling a product and want folks to click on it.</em></p>\n\n\n\n<h2>Step 3: Add Content Group</h2>\n\n\n\n<img />Adding a nested Group block.\n\n\n\n<p>This should be another simple step. Below the Image block from step #2, add a new Group. This will house the &#8220;content&#8221; you will add in step #4.</p>\n\n\n\n<p>The most crucial setting for this block is to add padding via the block design tools in the sidebar panel. I opted for <code>2rem</code> to match my theme. Remember that you zeroed out the padding in the outer Group in step #1. Now, you need to add some to keep the content from butting against the side of the container.</p>\n\n\n\n<h2>Step 4: Add Content</h2>\n\n\n\n<img />Adding the sales pitch.\n\n\n\n<p>With the Group block in place from step #3, you have a new freeform area to throw in your sales pitch to potential customers. This can be as simple as a Heading followed by a Paragraph or something much more complex. It is probably best to keep it short and on point.</p>\n\n\n\n<h2>Step 5: Coupon Code Row</h2>\n\n\n\n<img />Inserting a Row block for coupon code section.\n\n\n\n<p>To highlight the coupon code, add a new Row block below the Group block added in step #3. This allows you to add a section for the code and expiration date in the next step.</p>\n\n\n\n<p>Select the &#8220;space between items&#8221; option for the justification control. This setting pushes each nested block away from the other.</p>\n\n\n\n<p>Then, select a custom background color. This should automatically give padding to the Row block. If you opt out of setting a color, you should manually set the padding to match the Group block above it.</p>\n\n\n\n<h2>Step 6: Add Code and Expiration</h2>\n\n\n\n<img />Custom coupon code and expiration date.\n\n\n\n<p>The final step is to add two Paragraph blocks into the Row container. The first should read something like &#8220;Coupon: XMAS2022,&#8221; and the second should be &#8220;Expires: December 31.&#8221;</p>\n\n\n\n<p>Of course, it is your card, so have fun customizing it.</p>\n\n\n\n<h2>Variations</h2>\n\n\n\n<p>The wonderful thing about the WordPress block editor is there are so many ways that users can modify the output of a set of blocks like the above. Something as simple as changing the colors can give you an entirely different look. And, by rearranging a block or two, you can craft something uniquely your own.</p>\n\n\n\n<p>One of the easiest ways of customizing the coupon code above is by throwing in a few emoji, as shown in the following screenshot:</p>\n\n\n\n<img />Emoji variation.\n\n\n\n<p>OK. I was having a bit of fun with that. On a more serious note, there are many ways to tinker with the formula and create something new.</p>\n\n\n\n<p>It took me only a few moments to merge steps #2 and #4 (skipping step #3) from earlier to create the following:</p>\n\n\n\n<img />Media &amp; Text variation.\n\n\n\n<p>That is a Media &amp; Text block in the mix. I will leave you with the challenge of recreating this variation without a complete walkthrough. If you get stuck, check out my <a href=\"https://wptavern.com/how-to-build-book-and-book-review-cards-with-wordpress-blocks\">previous tutorial</a>, which covers Media &amp; Text extensively.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 07 May 2022 02:39:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"Post Status: BobWPâ€™s Woo Snippet for the Week of May 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=97145\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://poststatus.com/bobwps-woo-snippet-for-the-week-of-may-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3683:\"<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">WooCommerce RC1 and RC2 â€¢ GetEllipsis search volume trends report shows growth for Woo â€¢ Negative security perceptions â€¢ Remkus de Vries on burnout and making life changes.  </p></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_215fb5-9b\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p class=\"has-drop-cap\">Over at <strong>WooCommerce</strong> Core, <a href=\"https://developer.woocommerce.com/2022/05/04/woocommerce-6-5-rc-2/\">both the RC1 and RC2 for 6.5 came out this week</a> in preparation for the May 10th final release. </p>\n\n\n\n<p><strong>Alex Denning</strong> published <a href=\"https://getellipsis.com/blog/105m-searched-wordpress-terms/\">his latest analysis on WordPress and WooCommerce search volumes</a> for <strong>Get Ellipsis</strong>. WordPress search dipped a bit in Q1 of 2022, but WooCommerce searches took a leap upwards. Get Ellipsis looked at 10K searches for WooCommerce terms and found monthly searches were up 12.0% year-on-year, which they note is double growth. </p>\n\n\n\n<p>Take a look at <a href=\"https://www.ecommercetimes.com/story/third-party-risk-could-cost-e-commerce-sites-millions-176618.html\">Third-Party Risks Could Cost E-Commerce Sites Millions</a> from <strong>Ecommerce Times</strong>. Their assessment is aimed at the broader ecommerce space, but the topic is applicable to anyone with a site using third-party services with security and liability concerns. Buried in the post they also mention Woo â€” oddly placing it in the context of open source and linking both with &#8220;small websites&#8221; especially susceptible to unaddressed security vulnerabilities. In several respects, it\'s <a href=\"https://poststatus.com/finding-the-upside-in-wordpress-security/\">a highly inaccurate view that needs to be changed</a>.</p>\n\n\n\n<p>And over at <strong>Do the Woo</strong> we have <a href=\"https://dothewoo.io/listening-to-yourself-when-agency-life-calls-you-back/\">a great conversation</a> with <strong>Remkus de Vries</strong> around his recent decision to reboot his agency and go back to being at the helm of his own ship. We learned more about his earlier transition resulting from burnout after running his own business <em>and</em> deciding to join the team at <strong>Yoast</strong> and <strong>Boltserve</strong>. But listening to himself more over the last several months has pointed him back to agency life. Don\'t forget to listen to yourself for your own needs â€” you can pay a little now or pay a lot more later!</p>\n\n\n\n<div class=\"wp-container-11 wp-block-group has-theme-palette-8-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Get the Woo Snippet and more in our weekly WordPress community news digest</strong>: Post Status\' <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> â€” covering the WordPress and WooCommerce news plus significant writing and podcast episodes from the WordPress community and beyond. It\'s all in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f48c.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<p>And don\'t miss <strong>the latest updates from the people making WordPress</strong>. We\'ve got you covered with <a href=\"https://poststatus.com/make-wordpress/\">This Week at WordPress.org</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/2699.png\" alt=\"âš™\" class=\"wp-smiley\" /> Now with a new Five for the Future section!</p>\n</div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 May 2022 16:31:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Post Status: Post Status Notes #497\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=96899\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://poststatus.com/post-status-notes-497/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:13916:\"<div class=\"wp-container-9 wp-block-group has-theme-palette-8-background-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">WordPress is 19! â€¢ WP 6.0 news and Beta 4 release. â€¢ JetPack 10.9 â€¢ BuddyPress Rewrites 1.1.0 â€¢ Simple Local Avatars 2.3.0 â€¢ InMotion funds WCUS scholarships â€¢ RSS and Blogging FTW â€¢ Wishlist Member acquired â€¢ New leadership team at Yoast â€¢ and the rest of your weekly WP news roundup! </p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_f5fe16-0a\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 id=\"h-wordpress-6-0-news\">WordPress 6.0 News</h2>\n\n\n\n<p><strong>WordPress 6.0 Beta </strong>4 is <a href=\"https://wordpress.org/news/2022/05/wordpress-6-0-beta-4/\">available for testing</a> with the final release still planned for May 24, 2022.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_d1e0d5-c8\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p>With the release of <strong>WordPress 6.0</strong> fast approaching, developers should bookmark and examine <a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\">the newly released WordPress 6.0 Field Guide</a> â€” a summary of the enhancements and additions coming to core. The 6.0 release includes&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&type=defect+(bug)&milestone=6.0&group=component&col=id&col=summary&col=type&col=owner&col=priority&col=component&col=version&order=priority\">131</a>&nbsp;bug fixes and&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&type=enhancement&type=feature+request&milestone=6.0&max=500&col=id&col=summary&col=type&col=status&col=milestone&col=owner&col=priority&order=priority\">97</a>&nbsp;enhancements or feature requests. Two items of note:</p>\n\n\n\n<ul><li>WordPress is now <a href=\"https://make.wordpress.org/core/2022/05/02/media-storing-file-size-as-part-of-metadata/\">storing file size as part of the metadata</a>.  </li><li>A new filter that <a href=\"https://make.wordpress.org/core/2022/05/03/miscellaneous-dev-notes-for-wordpress-6-0/\">can modify or replace the description of a plugin</a> on the <strong>Plugins &gt; Add New</strong> screen. </li></ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_aad85c-e8\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p class=\"has-theme-palette-8-background-color has-background\">The <a href=\"https://thephp.foundation/blog/2022/05/02/the-php-foundation-update-april-2022/\">April 2022 PHP Foundation Update</a> is available now. It always has lots of PHP news important to WordPress but outside the community\'s often too-narrow &#8220;bubble&#8221; of concern. If you\'d like to get up to speed, <strong>Tonya Mork</strong> and <strong>Carl Alexander</strong> recently sat down with <strong>David Bisset</strong> to cover <a href=\"https://poststatus.com/post-status-comments-no-6-getting-up-to-speed-on-php-news/\">the major PHP news you need to know</a>.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_1e6dbd-4c\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2>Giving Back Big!</h2>\n\n\n\n<p>Kudos to <strong>InMotion Hosting</strong> for <a href=\"https://www.inmotionhosting.com/blog/wordcamp-us-2022-diversity-speaker/\">committing to five travel scholarships</a> of $1500 for WordCamp US. Two are reserved for the diversity speaker program, and three are for people who have never attended a WordCamp. </p>\n\n\n\n<p>InMotion mentions they are following <a href=\"https://masterwp.com/wordcamp-us-2022-sponsorship/\">MasterWP\'s example</a> â€” that company is funding travel for up to six speakers, organizers, or volunteers. You can <a href=\"https://www.gofundme.com/f/contribute-to-masterwps-wordcamp-sponsorships\">add to the fund as an individual</a>.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_9fb53f-83\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p class=\"has-theme-palette-8-background-color has-background\"><strong>Olivia Bisset</strong> (with <strong>David Bisset</strong>) has launched <a href=\"https://wp19.day\">wp19day</a> â€” a celebration the 19th anniversary of WordPress which is happening on <strong>May 27th</strong>. <strong>Post Status</strong> is helping out â€” and you can too by submitting your <a href=\"https://wp19.day\">words, short videos, or photos</a> to be displayed on the site and tweeted by <a href=\"http://twitter.com/wp19day\">@wp19day</a>. The site will also monitor Twitter for activity as the date gets closer. Use the hashtags <code>#wp19</code> and <code>#wp19day</code>.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Thank you to <a href=\"https://twitter.com/JJJ?ref_src=twsrc%5Etfw\">@JJJ</a> for sharing your thoughts on <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> for <a href=\"https://twitter.com/hashtag/wp19day?src=hash&ref_src=twsrc%5Etfw\">#wp19day</a>. <br /><br />Anyone can enter a submission quote or short video at <a href=\"https://t.co/rx1iUaxbFH\">https://t.co/rx1iUaxbFH</a> <a href=\"https://t.co/Cty5BLFVJ5\">pic.twitter.com/Cty5BLFVJ5</a></p>&mdash; wp19day (@wp19day) <a href=\"https://twitter.com/wp19day/status/1522213776077979648?ref_src=twsrc%5Etfw\">May 5, 2022</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_34c43a-06\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2>Notable Plugin Updates</h2>\n\n\n\n<p>This week saw <a href=\"https://memberium.com/wishlist-announcement/\">another WordPress acquisition</a>. The <strong>Wishlist Member</strong> plugin and its team are being acquired by&nbsp;<strong>Micah Mitchell</strong> and brought under the <strong>Membershipper</strong> brand. Also recently <strong>James Kemp</strong>, founder of <a href=\"https://iconicwp.com/\">Iconic</a>, acquired <a href=\"https://getreplybox.com/\">ReplyBox</a> which a privacy-focused comment system that has a WordPress plugin.</p>\n\n\n\n<p>The latest version of <strong>JetPack</strong> (10.9) will allow you to <a href=\"https://jetpack.com/blog/jetpack-10-9-share-videos-directly-with-your-site-members/\">share private videos with your site members</a>.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8abeb8-e9\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p>The first maintenance release of <strong>BP Rewrites</strong> (1.1.0) â€” the <strong>BuddyPress</strong> add-on that gives you the power to control every BuddyPress<strong>&#8211;</strong>generated URL â€” <a href=\"https://buddypress.org/2022/05/bp-rewrites-1-1-0-maintenance-release/\">is now ready for download</a>.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_bac61d-75\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p>Here\'s the 2.3.0 release for <a href=\"https://github.com/10up/simple-local-avatars\"><strong>Simple Local Avatars</strong></a> from <strong>10up</strong> that adds an avatar upload field to user profiles. It\'s new to <strong>Github</strong> but has been available <a href=\"https://wordpress.org/plugins/simple-local-avatars/\">in the .org repo</a> for over a decade as one of 10up\'s very useful, very small, very free plugins originally created by <strong>Jake Goldman</strong>. </p>\n\n\n\n<p>The latest release adds <a href=\"https://wordpress.org/plugins/simple-local-avatars/#developers\">a lot of nice fixes and enhancements</a> contributed by Faisal Alvi and many othe 10up team members.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_e8c5ab-de\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p class=\"has-theme-palette-8-background-color has-background\"><strong>Yoast</strong> has <a href=\"https://yoast.com/meet-yoasts-new-leadership-team/\">a new leadership team</a>: <strong>Thijs de Valk</strong> (CEO), <strong>Chaya Oosterbroek</strong> (COO), <strong>Marieke van de Rakt</strong> (Head of Strategy), <strong>Inge AriÃ«ns </strong>(Head of Marketing), <strong>Taco Verdonschot</strong> (Head of Relations), <strong>Irene Strikkers</strong> (Head of Research & Development) and <strong>Herre Groen</strong> (Head of Technology).</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_7eedc0-c8\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2>Worthy Projects, Maintainers Needed </h2>\n\n\n\n<p>Here\'s <a href=\"https://twitter.com/wprigio/status/1522335333597147136\">a nice reminder</a> from <strong>WP Rig</strong> that they are still on the lookout for more maintainers to join the team. The WP Rig project is a progressive theme development rig for WordPress that was started nearly two years ago. <strong>Morten Rand-Hendriksen</strong> has more details <a href=\"https://github.com/wprig/wprig/issues/618\">on this Github ticket</a>. </p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_5c0d89-6b\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>Tom Critchlow</strong> has some good thoughts on how we can increase the &#8220;surface area&#8221; of blogging <a href=\"https://tomcritchlow.com/2022/04/21/new-rss/\">from OPML and RSS to personal feeds</a>. <strong>Chris Coyier</strong> also <a href=\"https://chriscoyier.net/2022/04/29/rss-3/\">shared his thoughts on RSS</a> and how we can support a &#8220;slow social network&#8221; with personal sites.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>How is all this social? Itâ€™s just slow social. If you want to respond to me, publish something linking to what I said. If I want to respond to you, I publish something linking to what you wrote. Old school. Good school. Itâ€™s high-effort, but I think the required effort is a positive thing for a social network. Forces you to think more. I do kinda like the low-effort-ness of just a quick â€œlikeâ€, but hey, RSS readers support that in the form of stars, and mine are even <a href=\"https://feedbin.com/starred/56d6b0fe68e5efd3d447fd5bf328a57e.xml\">also syndicated</a>.</p></blockquote>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_71cd44-70\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 id=\"h-good-things-shared\">Good Things Shared</h2>\n\n\n\n<p class=\"has-theme-palette-8-background-color has-background\">We\'re loving this <a href=\"https://developers.googleblog.com/2022/04/what-is-black-and-white-and-read-all.html\">new black and white <strong>Noto emoji font</strong></a> from <strong>Google</strong>.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_46b758-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>Alex Denning</strong> notes <a href=\"https://getellipsis.com/blog/105m-searched-wordpress-terms/\">that searches for WordPress keywords</a> are up 7.4% year on year, and <strong>WooCommerce</strong> searches are up 12.0%. 2021 Q4 &#8220;rallied significantly&#8221; and brought &#8220;the largest volume of search traffic for WordPress weâ€™ve seen yet.&#8221;  Interest &#8220;in themes has found its middle ground.&#8221;</p>\n\n\n\n<p>Going by search traffic alone isn\'t a perfect metric â€”like market share numbers from <strong>W3C Techs</strong> â€” but it\'s another indicator to keep an eye on.</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_3b4666-df\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<p><strong>WPCampus</strong> now has a <strong>Learning Library</strong> â€” <a href=\"https://www.wpcampus.org/learning/library/\">a growing collection of slides, videos, and discussions</a> of <strong>WPCampus</strong> conference sessions. Thanks to the members of the <strong>WPCampus</strong> community for sharing this valuable resource!</p>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_057bb2-d9\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-container-10 wp-block-group has-theme-palette-7-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<p>David\'s got the <a href=\"https://poststatus.com/wordpress-podcast-and-video-picks-for-the-week-of-may-1/\">WordPress Podcast and Video Picks for the Week of May 1</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f3a7.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<p>And don\'t miss <strong>the latest updates from the people making WordPress</strong>. We\'ve got you covered with <a href=\"https://poststatus.com/make-wordpress/\">This Week at WordPress.org</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/2699.png\" alt=\"âš™\" class=\"wp-smiley\" /> Now with a new Five for the Future section! </p>\n\n\n\n<p><strong>Get all this and more in our weekly WordPress community news digest</strong> â€” Post Status\' <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> â€” covering the WordPress and WooCommerce news plus significant writing and podcast episodes from the WordPress community and beyond. It\'s all in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f48c.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 May 2022 15:38:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"David Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Post Status: WordPress Podcast and Video Picks for the Week of May 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=96901\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://poststatus.com/wordpress-podcast-and-video-picks-for-the-week-of-may-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3810:\"<div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">It\'s <strong>David Bisset</strong>&#8216;s weekly WordPress podcast and video roundup! This week we have <strong>Ines van Dijk</strong> on <strong>Women in WP</strong>, <strong>An Event Apart</strong> on <strong>The ShopTalk Show</strong>, <strong>Heather Brunner</strong> on <strong>Content is for Closers</strong>, UX and design on <strong>WP Builds</strong>, <strong>Joe Casabona</strong> on the Tavern\'s <strong>Jukebox</strong>, <strong>Josepha Chomphosy and Channing Ritter</strong> the <strong>WordPress Briefing</strong>, <strong>Syed Balkhi</strong> on <strong>The Gamechangers</strong>, and <strong>Dave Smith</strong> on key block editor features coming to <strong>WordPress 6.0</strong>. </p></div>\n\n\n<h2 id=\"h-my-podcast-picks\">My Podcast Picks <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /></h2>\n\n\n\n<ul><li><strong>Women in WP</strong>: Advice from <strong>Ines van Dijk</strong> <a href=\"https://womeninwp.com/podcast/082-ines-van-dijk-providing-quality-support-to-end-users/\">on providing quality support</a> to end users.</li><li><strong>ShopTalk Show:</strong> Chris and Dave <a href=\"https://shoptalkshow.com/513/\">answer questions about CSS and more</a> live from <strong>An Event Apart</strong>.</li><li><strong>Content is for Closers:</strong> <strong>Heather Brunner</strong>, the CEO of <strong>WP Engine</strong>, <a href=\"https://www.contentisforclosers.com/podcast/platforming-different-voices/\">shares how she has learned to lean into her unique abilities</a>, in addition to the tactical ideas that WP Engine uses to practically promote diversity.</li><li><strong>WP Builds:</strong> Nathan and David <a href=\"https://wpbuilds.com/2022/05/05/277-user-experience-and-user-interface/\">talk about user experience</a> in the design process.</li><li><strong>WP Tavern Jukebox:</strong> <strong>Joe Casabona</strong> explains why WordPress <a href=\"https://wptavern.com/podcast/25-joe-casabona-on-why-wordpress-is-a-great-choice-for-your-podcast\">is a good choice for hosting your podcast</a>.</li><li><strong>WordPress Briefing</strong>: <strong>Josepha Haden Chomphosy</strong> and <strong>Channing Ritter</strong> <a href=\"https://wordpress.org/news/2022/05/episode-30-a-sneak-peek-at-wordpress-6-0/\">offer a sneak peek</a> into <strong>WordPress 6.0</strong>.</li></ul>\n\n\n\n<h2 id=\"h-my-video-pick\">My Video Pick <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f4fa.png\" alt=\"?\" class=\"wp-smiley\" /></h2>\n\n\n\n<ul><li><strong>WordPress 6.0 Features in Four Minutes: Dave Smith</strong> <a href=\"https://www.youtube.com/watch?v=09affdqg0-E\">highlights some of the key block editor features</a> coming in <strong>WordPress 6.0</strong>.</li><li><strong>The Gamechangers</strong>: <strong>Syed Balkhi</strong> talks about <a href=\"https://www.youtube.com/watch?v=S0bdxdgByRA\">how he got into the WordPress acquisitions game</a>.</li></ul>\n\n\n\n<div class=\"wp-container-13 wp-block-group has-theme-palette-8-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Get our weekly WordPress community news digest</strong> â€” Post Status\' <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> â€” also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f48c.png\" alt=\"?\" class=\"wp-smiley\" />  </p>\n\n\n\n<p>And don\'t miss <strong>the latest updates from the people making WordPress</strong>. We\'ve got you covered with <a href=\"https://poststatus.com/make-wordpress/\">This Week at WordPress.org</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/2699.png\" alt=\"âš™\" class=\"wp-smiley\" /></p>\n</div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 May 2022 14:40:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"David Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"Do The Woo Community: WooBits: Web3 Integration, Woo in Search and More Random WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=71604\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://dothewoo.io/web3-integration-and-woocommerce-in-search/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:415:\"<p>This week I chat about the flux of crypto plugins for WooCommerce, how Woo is rating in search and third-party risks.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://dothewoo.io/web3-integration-and-woocommerce-in-search/\">WooBits: Web3 Integration, Woo in Search and More Random WooCommerce</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 May 2022 10:03:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WPTavern: FSE Outreach #14: Building Recipe Posts With Lists and Quotes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=134115\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wptavern.com/fse-outreach-14-building-recipe-posts-with-lists-and-quotes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4926:\"<p>Round #14 of the FSE Outreach program is <a href=\"https://make.wordpress.org/test/2022/04/28/fse-program-testing-call-14-rallying-recipe-reviewers/\">now open to the public</a>. Anne McCarthy, who oversees the program, calls for testers to build a recipe post using existing tools like the template editor and some new and experimental blocks.</p>\n\n\n\n<p>Those who want to leave feedback can do so until May 18. The program always needs testers from across the spectrum of user experiences. This is an easy way to contribute back to the WordPress project.</p>\n\n\n\n<p>The latest round calls on users to test some new blocks in the Gutenberg plugin. Some of these are related to comments. I opted out of this part of the test because I had already covered everything I had to say in <a href=\"https://wptavern.com/new-comment-related-blocks-arriving-with-wordpress-6-0\">an article in early April</a>. That post, along with feedback from the community, helped drive some of the changes that should land in WordPress 6.0.</p>\n\n\n\n<p>My focus was on the List and Quote block updates for this round. &#8220;Version 2&#8221; of these are available via Gutenberg 13.1 and must be enabled via the Gutenberg > Experiments admin screen.</p>\n\n\n\n<p>The new List is no longer a single block. Instead, each item within it is a separate block of its own. Likewise, for each sub-list.</p>\n\n\n\n<p>The overhaul of the Quote block allows end-users to nest other blocks within it. By default, this is a Paragraph, and there seems to be no limit to what can be placed inside.</p>\n\n\n\n<p>I had fun with this testing round. <em>Recipes are my jam</em>, so I had to pick the perfect one to share. Ultimately, I built a custom &#8220;recipe template&#8221; and a <em>faux</em> recipe post, as shown in the following screenshot:</p>\n\n\n\n<img />\n\n\n\n<p>For this experiment, I relied on the ever-reliable <a href=\"https://wordpress.org/themes/archeo/\">Archeo theme</a> by Automattic. It has been my go-to for several weeks now, and I will likely continue using it until I find something new that sparks my interest. It is definitely a solid solution for these types of tests.</p>\n\n\n\n<h2>Testing the New List and Quote Blocks</h2>\n\n\n\n<p>The call for testing asks volunteers to create a custom template for recipe posts. The only change I made to the theme&#8217;s default single template was to wrap the site header, post title, and post excerpt in a Cover block tied to the post&#8217;s featured image.</p>\n\n\n\n<img />Custom single recipe template.\n\n\n\n<p>I described <a href=\"https://wptavern.com/featured-cover-blocks-and-the-future-of-binding-data-to-generic-wordpress-blocks\">how to do this in a post in April</a>. Once that was in place, I moved forward with building out a recipe post.</p>\n\n\n\n<p>Ultimately, I added a short intro for the recipe. Then, used the Columns block to section off the <a href=\"https://wptavern.com/how-to-build-a-recipe-card-via-the-wordpress-block-editor\">recipe card</a> and some tips from readers. This is where I was able to dive into the experimental List and Quote blocks.</p>\n\n\n\n<p>The List block proved to be the most problematic. It seemed impossible to add a new item to the top level after an inserted sub-list. Clicking the first item and hitting <code>Enter</code> deleted everything nested below it. No amount of clicking or keyboard input seemed to get me back to the top level to continue adding more items.</p>\n\n\n\n<p>Eventually, I wised up and navigated to the top level via the breadcrumbs in the editor. Then, I clicked the &#8220;+&#8221; icon (this could also be done from the editor&#8217;s list view). As someone who primarily works from the keyboard, this felt unintuitive.</p>\n\n\n\n<img />Troubleshooting a List block.\n\n\n\n<p>It also seems impossible to escape the List and into a new Paragraph block. In the past, this could be accomplished by hitting the <code>Enter</code> key twice while on the final list item. That action now creates a nested list.</p>\n\n\n\n<p>Markdown-based lists are also not transformed into a List block when pasted into the editor. The formatting is lost, and each item gets absorbed into a Paragraph block.</p>\n\n\n\n<p>The new Quote block worked well. It is now possible to add nested blocks inside it, one of the features I have long needed as a writer here at the Tavern when quoting from third-party resources.</p>\n\n\n\n<p>One enhancement I would like to see for Quote v2 is the <code>&lt;cite></code> element separated into a standalone block. This would allow end-users to customize its design separately from the wrapping <code>&lt;blockquote></code> on the block and global levels. Currently, only theme authors can modify its style, which must be handled via custom CSS.</p>\n\n\n\n<p>Overall, I am eager to see the finalized versions of these blocks. They will bring back some of the missing functionality from the classic editor and give users the flexibility to do even more.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 06 May 2022 03:04:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WordPress.org blog: The Month in WordPress â€“ April 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12816\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2022/05/the-month-in-wordpress-april-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10554:\"<p>This past month saw a lot of preparation work for WordPress 6.0, due to release on 24 May 2022. This major release brings exciting improvements â€“ read on to find out more about the latest happenings in the WordPress project.</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<h2>WordPress 6.0 Release Candidate 1</h2>\n\n\n\n<p><strong>The first release candidate (RC1) for WordPress 6.0 is now available for download</strong>. Help improve the project by testing and translating this version to non-English languages. Check out the RC1 <a href=\"https://wordpress.org/news/2022/05/wordpress-6-0-release-candidate-1/\">release post</a> to learn whatâ€™s new and how to contribute. For a more in-depth look at the upcoming changes, you can refer to the <a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\">WordPress 6.0 Field Guide</a>.</p>\n\n\n\n<p>WordPress 6.0 is packed with all kinds of improvements for everyone. It brings new blocks, <a href=\"https://make.wordpress.org/core/2022/04/20/wordpress-6-0-accessibility-improvements/\">accessibility enhancements</a>, refined design tools, the ability to switch theme styles easily, multi-block partial text selection, and a new block locking interface, to name a few of its highlights.</p>\n\n\n\n<div class=\"wp-container-1 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://wordpress.org/news/2022/05/episode-30-a-sneak-peek-at-wordpress-6-0/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><strong>Listen to the latest </strong><strong>WP Briefing episode</strong><strong> for a sneak peek into the exciting features included in WordPress 6.0.</strong></strong></a></div>\n</div>\n\n\n\n<h2>Gutenberg releases: Versions 13.0 and 13.1 are here</h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/04/14/whats-new-in-gutenberg-13-0-14-april/\">Gutenberg 13.0</a> shipped on April 14, 2022, and introduced the final updates that will be part of WordPress 6.0. These include an improved editor experience (with the ability to select text across blocks), better responsive blocks, and prominently exposed block patterns.</li><li><a href=\"https://make.wordpress.org/core/2022/04/28/whats-new-in-gutenberg-13-1-27-april/\">Gutenberg 13.1</a> landed on April 27, 2022. This version adds border support to the Columns block and accessibility and Comment block improvements.</li></ul>\n\n\n\n<div class=\"wp-container-2 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/core/tag/gutenberg-new/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><strong>Follow the </strong><strong>#gutenberg-new</strong><strong> posts for more details on the latest updates.</strong></strong></a></div>\n</div>\n\n\n\n<h2>Team updates: Updated guidelines for in-person events, redesign of the Gutenberg page, and more</h2>\n\n\n\n<ul><li>The Community team announced <a href=\"https://make.wordpress.org/community/2022/04/21/announcement-updated-covid-19-guidelines-for-official-wordpress-events/\">updated Covid-19 guidelines</a> for official WordPress events.</li><li>The <a href=\"https://make.wordpress.org/meta/2022/04/12/gutenberg-landing-page-kick-off/\">redesign of the Gutenberg landing page</a> on WordPress.org is nearing completion.</li><li>#WPDiversity announced new meeting times for Asia-Pacific (APAC) areas. You can express your interest <a href=\"https://make.wordpress.org/community/2022/04/22/wpdiversity-is-expanding-to-apac/\">in this post</a>.</li><li>The Training team plans to <a href=\"https://make.wordpress.org/training/2022/04/19/migrating-contributor-training-to-learn-wordpress/\">migrate the Contributor Training materials</a> to Learn WordPress. This move will help consolidate all the community-based training content in one place.</li><li>All learners on Learn WordPress can now enjoy using <a href=\"https://make.wordpress.org/training/2022/04/07/demo-sites-for-learn-wordpress-users/\">a live WordPress demo site</a> as they go through courses on the site.</li><li>The first stable <a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/2022/04/18/version-1-0-0-of-the-performance-lab-plugin-published/\" target=\"_blank\">version 1.0.0</a> of the <a href=\"https://wordpress.org/plugins/performance-lab/\">Performance Lab</a>Â pluginÂ was released.</li><li>Read the latest edition of the <a href=\"https://make.wordpress.org/community/2022/04/21/meetup-organizer-newsletter-april-2022/\">Meetup Organizer Newsletter</a>.</li><li>Everyone is welcome and encouraged to join the new <a href=\"https://make.wordpress.org/photos/\">Photo Directory team</a> meetings. They are held on the first Friday of every month at 14:00 UTC in the <a rel=\"noreferrer noopener\" href=\"https://wordpress.slack.com/messages/photos\" target=\"_blank\">#photos</a> channel of the Make WordPress Slack.</li><li>The Performance team published a <a href=\"https://make.wordpress.org/core/2022/04/12/follow-up-on-webp-by-default-proposal/\">follow-up post</a> with the next steps on the WebP proposal.</li><li>Check out the <a href=\"https://make.wordpress.org/design/2022/04/25/design-share-apr-11-22/\">projects</a> the Design team contributed to over the past couple of weeks.</li><li>Official Featured and Beta plugins now limit <a href=\"https://make.wordpress.org/plugins/2022/04/15/featured-beta-plugins-now-limit-changes/\">ownership and committer changes</a>.</li><li>The April 2022 edition of the <a href=\"https://make.wordpress.org/polyglots/2022/04/22/polyglots-monthly-newsletter-april-2022/\">Polyglots Monthly Newsletter</a> was published.</li><li>The latest edition of People of WordPress features <a href=\"https://wordpress.org/news/2022/04/people-of-wordpress-meher-bala/\">Meher Bala</a>, a frontend web developer and community builder from India.</li><li>The <a rel=\"noreferrer noopener\" href=\"https://wordpress.slack.com/archives/C0FRG66LR\" target=\"_blank\">#props</a> channel of the Make WordPress Slack is now connected to the WordPress.org profile activity! This way when you give props, it will be included on your WordPress.org profile and the profile of those you mention. This change is part of a <a href=\"https://make.wordpress.org/project/2022/03/16/proposal-to-remove-spam-dormant-five-for-the-future-pledges/\">larger project</a> that will help credit more non-code contributions.</li></ul>\n\n\n\n<div class=\"wp-container-3 wp-block-buttons\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/community/2022/04/11/return-to-in-person-events-share-your-challenges/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>How do you feel about in-person WordPress gatherings? The Community team wants to hear about the challenges in returning to these events.</strong></a></div>\n</div>\n\n\n\n<h2>Open feedback/testing calls</h2>\n\n\n\n<ul><li>Following this <a href=\"https://make.wordpress.org/updates/2021/03/16/proposal-a-wordpress-project-contributor-handbook/\">proposal</a> for a WordPress Project Contributor Handbook, Executive Director Josepha Haden opened a <a href=\"https://make.wordpress.org/project/2022/04/29/discussion-contrib-handbook-part-2/\">round of discussions</a> to share feedback on the various handbook sections.</li><li>Version 19.8 of WordPress for <a href=\"https://make.wordpress.org/mobile/2022/05/02/call-for-testing-wordpress-for-android-19-8/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2022/05/02/call-for-testing-wordpress-for-ios-19-8/\">iOS</a> is available for testing.</li><li>Join the 14th testing call of the Full Site Editing (FSE) Outreach program â€“ â€œ<a href=\"https://make.wordpress.org/test/2022/04/28/fse-program-testing-call-14-rallying-recipe-reviewers/\">Rallying Recipe Reviewers</a>.â€ This call focuses on testing blocks that help recipe authors make their recipe blogs more interactive. Leave your feedback by May 18, 2022.</li></ul>\n\n\n\n<div class=\"wp-container-4 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://make.wordpress.org/test/2022/04/12/help-wanted-test-wordpress-6-0/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><strong>Are you interested in helping test out new WordPress 6.0 features but donâ€™t know where to start? This </strong><strong>detailed guide</strong><strong> will walk you through how to get started.</strong></strong></a></div>\n</div>\n\n\n\n<h2>Get ready for WordCamp Europe in Porto</h2>\n\n\n\n<ul><li>We are four weeks away from <a href=\"https://central.wordcamp.org/news/2022/05/join-the-european-wordpress-community-in-porto-portugal/\">WordCamp Europe</a>. After being postponed twice due to the pandemic, the WordPress event is taking place in Porto, Portugal, on 2-4 June 2022. Check out the <a href=\"https://europe.wordcamp.org/2022/schedule/\">schedule</a> and get your <a href=\"https://europe.wordcamp.org/2022/tickets/\">tickets</a> if you havenâ€™t yet!</li><li>WordCamp US <a href=\"https://us.wordcamp.org/2022/support-underrepresented-speakers-at-wordcamp-us/\">announced</a> a new program to support underrepresented speakers.</li><li><a href=\"https://irun.wordcamp.org/2022/\">WordCamp Irun</a> (Spain) is happening this month on May 21 and 22, 2022.</li></ul>\n\n\n\n<div class=\"wp-container-5 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link\" href=\"https://us.wordcamp.org/2022/our-call-for-volunteers-is-now-open/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><strong><strong>The </strong><strong>Call for Volunteers</strong><strong> for WordCamp US in San Diego, California, is now open. Newcomers to WordPress are always welcomed. Apply today!</strong></strong></strong></a></div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<p><strong><em><strong><em>Have a story that we could include in the next issue of The Month in WordPress? Let us know by filling out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this form</em></strong></a><strong><em>.</em></strong></em></strong></p>\n\n\n\n<p><em>The following folks contributed to this Month in WordPress: <a href=\"https://profiles.wordpress.org/rmartinezduque/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>rmartinezduque</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a>, <a href=\"https://profiles.wordpress.org/dansoschin/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>dansoschin</a>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 May 2022 15:01:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"rmartinezduque\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"Do The Woo Community: Listen to Yourself When Agency Life Calls You Back with Remkus de Vries\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=71595\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://dothewoo.io/listening-to-yourself-when-agency-life-calls-you-back/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:438:\"<p>Remkus de Vries has decided to reboot his agency and bring himself back into setting at the helm of his life and his business.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://dothewoo.io/listening-to-yourself-when-agency-life-calls-you-back/\">Listen to Yourself When Agency Life Calls You Back with Remkus de Vries</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 May 2022 10:01:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: WordPress Should Support Featured Images for Categories, Users, and More\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=133652\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wptavern.com/wordpress-should-support-featured-images-for-categories-users-and-more\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4227:\"<p>One of the features that I have long wanted for WordPress has been on my mind lately. It is not a new idea, and it has been implemented in some form or fashion by plugin and theme authors in the past. However, it has never been standardized. WordPress needs featured images for more than just posts. It should support them for taxonomy terms (e.g., categories, tags) and users.</p>\n\n\n\n<p>One month ago today, I participated in <a href=\"https://wptavern.com/fse-outreach-13-building-an-author-template-from-the-wordpress-site-editor\">Round #13 of the FSE Outreach Program</a>. It was the first time that the Gutenberg plugin allowed adding a new author template via the site editor (this is coming in WordPress 6.0). Author templates have always been supported if added via the theme, but users now have that power. The program called for volunteers to test this feature and some new author-related blocks.</p>\n\n\n\n<p>As I always do when participating in the FSE Outreach testing calls, I tried to push the design limits of the editor. Much of the program focuses on the user experience, but I want to go beyond that and find those design-related pain points.</p>\n\n\n\n<p>Ultimately, I settled on a design for my <em>faux</em> author template:</p>\n\n\n\n<img />Custom author template.\n\n\n\n<p>I added a Cover block as the backdrop for the author profile section at the top of the page. I liked the look of the mountains mixed in with the active theme design. The problem was that there was no way to personalize that for each user account. Sure, every user gets to select their own avatar and write their own bio, but there is no easy way to let them have their own featured image.</p>\n\n\n\n<p>Technically, it is possible to do this by creating custom <code>author-{$id}.html</code> or <code>author-{$username}.html</code> templates and manually and uploading them to the theme&#8217;s <code>/templates</code> folder. For controlled environments, such as client builds with a set number of users/authors, it is a possibility. Even in those scenarios, it is a bit of a management headache. And it does not account for every other WordPress user who might want to do something similar.</p>\n\n\n\n<p>In the classic era, the same issue existed. However, it was relatively simple to code for the front end in a PHP-based templating system. For block themes, most would need to create a custom block. The image upload form would be the same in both scenarios (handled on user profile and taxonomy term admin screens).</p>\n\n\n\n<p>The trouble with custom blocks is they do not tap into the core blocks&#8217; built-in features. For example, WordPress 6.0 will allow setting a Cover block&#8217;s background using the post featured image. In the long term, core will likely support this for other image-related blocks like Media &amp; Text. Porting these same features over to third-party plugins does not make sense.</p>\n\n\n\n<p>It also does not empower users who want to build such designs with WordPress. Nor does it provide theme authors with the tools to ship templates and patterns with unique layouts to the public.</p>\n\n\n\n<p>While I have primarily focused on author templates, the same arguments stand for taxonomy term templates, such as categories and tags. For example, I built out a quick category template using a similar design as shown earlier:</p>\n\n\n\n<img />\n\n\n\n<p>The image works well for my example Nature category but not so much for others.  We need a way to dynamically display per-category images.</p>\n\n\n\n<p>There is at least a solid plugin for taxonomy terms: <a href=\"https://wordpress.org/plugins/wp-term-images/\">WP Term Images</a>. Perhaps I can convince John James Jacoby, the plugin&#8217;s author, to extend it to the block system.</p>\n\n\n\n<p>After stewing on this for a month, I still did not know whether I could make a convincing argument for the feature other than <em>I think this would be cool</em>. I am unsure if there is enough demand for it. However, it is OK to dream about new things from time to time and share those ideas with others. So, this is me, dreaming out loud, hoping that one of the items from my wish list will land in WordPress one day.</p>\n\n\n\n<p>What are some of the things you want to see?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 May 2022 01:50:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"Post Status: Post Status Excerpt (No. 57) â€” WordPress Development With Docker and Lando\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=96903\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://poststatus.com/wordpress-development-with-docker-and-lando/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4462:\"<blockquote class=\"wp-block-quote\"><p>â€œBack in the early days of WordPress development&#8230; I could only have one system on my local computer.â€</p><cite>â€” Cal Evans</cite></blockquote>\n\n\n\n<p class=\"has-drop-cap\">In this developer-oriented conversation for <strong>Post Status Excerpt</strong>, David talks about WordPress development with <strong>Cal Evans</strong>. Cal explains the basics of <strong>Docker</strong> and <strong>Lando</strong> â€” as well as the advantages of using them. <strong>Docker</strong> is an open platform for developing, shipping, and running applications. It can work with <strong>Lando</strong> to automate your development workflow.</p>\n\n\n\n<p><strong>Why This Matters:</strong> Developers â€” both individually and in teams â€” are building more complex applications with (and for) WordPress, so the software stack is getting more complex. How you setup your environment (local, cloud, or both) is becoming more important, and developers should educate themselves on the available options â€” especially with popular choices being explored by PHP developers.</p>\n\n\n\n\n\n\n\n<p class=\"has-background\">Every week <strong><a href=\"https://poststatus.com/podcast/the-excerpt/\">Post Status Excerpt</a></strong> will bring you important news and insights from guests working in the WordPress space. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /><br /><br />You can listen to <a href=\"https://poststatus.com/podcast/the-excerpt/\">past episodes</a> of <strong>The Excerpt</strong>, <a href=\"https://poststatus.com/category/post-status-podcasts/\">browse all our podcasts</a>, and donâ€™t forget to subscribe on <a href=\"https://open.spotify.com/show/1m3xwXbe0MG5BzFVPtB0A7\">Spotify</a>, Amazon Music, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\">Google Podcasts</a>, <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">iTunes</a>, <a href=\"https://castro.fm/podcast/c53552c6-1ee0-4fc4-9de4-08ed6bf1ee4d\">Castro</a>, <a href=\"https://www.youtube.com/c/PostStatus\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, <a href=\"https://player.fm/series/wordpress-post-status-podcasts\">Player.fm</a>, <a href=\"https://pca.st/05rR\">Pocket Casts</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\">Simplecast</a>, or by <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f3a7.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<h3 id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f517.png\" alt=\"?\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul><li><a href=\"https://docs.docker.com/get-started/overview/\">Docker Get Started</a></li><li><a href=\"https://blog.calevans.com/2022/03/29/lando-wordpress-and-ngrok-oh-my/\">Lando, WordPress, and ngrok&#8230;oh my</a></li><li><a href=\"https://blog.calevans.com/2021/03/12/lando-db-helper/\">Lando DB Helper</a></li><li><a href=\"https://twitter.com/CalEvans/status/1287901011252842500\">Lando and WordPress Development</a></li><li><a href=\"https://lando.dev/\">Lando Website</a></li><li><a href=\"https://calevans.com/\">Cal Evan\'s Personal Website</a></li><li><a href=\"https://twitter.com/CalEvans\">Cal Evans</a> (Twitter)</li><li><a href=\"https://twitter.com/dimensionmedia\" target=\"_blank\" rel=\"noreferrer noopener\"></a><a href=\"https://twitter.com/dimensionmedia\" target=\"_blank\" rel=\"noreferrer noopener\">David Bisset</a> (Twitter)</li><li><a href=\"https://twitter.com/dimensionmedia\" target=\"_blank\" rel=\"noreferrer noopener\"></a><a href=\"https://twitter.com/post_status\" target=\"_blank\" rel=\"noreferrer noopener\">Post Status</a> (Twitter)</li></ul>\n\n\n\n<div class=\"wp-container-11 wp-block-group has-theme-palette-7-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<h3 id=\"sponsor-bluehost\"><img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststat.us/wpengine/\">WP Engine</a></h3>\n\n\n\n<p>WP Engine is the WordPress Digital Experience Platform that drives your business forward faster. Simply put, WP Engine makes WordPress easier and faster, and they do the heavy lifting for our customers, so they can focus on their core business and win online.</p>\n</div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 May 2022 17:15:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"David Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Post Status: This Week at WordPress.org (May 1, 2022)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=97003\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://poststatus.com/this-week-at-wordpress-org-may-1-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15720:\"<p class=\"has-theme-palette-7-background-color has-background\">Each week we are highlighting the news from WordPress.org that you don\'t want to miss.  If you or your company create products or services that use WordPress, we\'ve got the news you need to know. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here â€º</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> â€” Post Status\' <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> â€” covering the WP/Woo news plus significant writing and podcasts. It\'s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f48c.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 id=\"h-news\">News</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/news/2022/04/wordpress-6-0-beta-3/\"></a><a href=\"https://wordpress.org/news/2022/05/wordpress-6-0-release-candidate-1/\">WordPress 6.0 Release Candidate 1</a></li><li><a href=\"https://wordpress.org/news/2022/04/wordpress-6-0-beta-3/\"></a><a href=\"https://wordpress.org/news/2022/05/wordpress-6-0-beta-4/\">WordPress 6.0 Beta 4</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\">WordPress 6.0 Field Guide</a></li><li><a href=\"https://wordpress.org/news/2022/04/wordpress-6-0-beta-3/\"></a><a href=\"https://wordpress.org/news/2022/05/episode-30-a-sneak-peek-at-wordpress-6-0/\">WP Briefing: Episode 30: A Sneak Peek at WordPress 6.0</a></li><li><a href=\"https://wordpress.org/news/2022/04/people-of-wordpress-meher-bala/\">People of WordPress: Meher Bala</a></li><li>New <a href=\"https://poststatus.com/planet/feed/#5ftf\">Five for the Future</a> section below! </li></ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_a98156-c2\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\">\n<h2 id=\"h-accessibility\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/04/20/wordpress-6-0-accessibility-improvements/\">WordPress 6.0 Accessibility Improvements</a></li></ul>\n\n\n\n<h2 id=\"h-central\"><a href=\"https://central.wordcamp.org\">Central</a></h2>\n\n\n\n<ul><li><a href=\"https://central.wordcamp.org/news/2022/05/join-the-european-wordpress-community-in-porto-portugal/\">Join the European WordPress Community in Porto, Portugal!</a></li></ul>\n\n\n\n<h2 id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<p>Reminder: <a href=\"https://developer.wordpress.org/block-editor/contributors/versions-in-wordpress/\">Gutenberg 13.0 ships with WordPress 6.0</a>.</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/05/03/a-week-in-core-may-2-2022/\">A Week in Core â€“ May 2, 2022</a></li></ul>\n\n\n\n<h3 id=\"h-devnotes\">DevNotes</h3>\n\n\n\n<p>Leading up to releasing WordPress 6.0, DevNotes and release-related information will remain.</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\">WordPress 6.0 Field Guide</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/05/block-locking-settings-in-wordpress-6-0/\">Block Locking Settings in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/04/wordpress-6-0-release-candidate-phase/\">WordPress 6.0 Release Candidate Phase</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/miscellaneous-dev-notes-for-wordpress-6-0/\">Miscellaneous Dev Notes for WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/block-editor-miscellaneous-dev-notes-for-wordpress-6-0/\">Block Editor miscellaneous Dev Notes for WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/page-creation-patterns-in-wordpress-6-0/\">Page creation patterns in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/global-styles-variations-in-wordpress-6-0/\">Global Styles variations in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/separator-block-updated-to-use-block-supports-color-settings/\">Separator block: Updated to use block supports color settings</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/block-markup-updates-for-image-quote-list-and-group-blocks/\">Block markup updates for image, quote, list, and group blocks</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/03/support-for-handling-resolution-errors-for-editor-data-module/\">Support for handling resolution errors for Editor data module</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/28/taxonomy-performance-improvements-in-wordpress-6-0/\" target=\"_blank\" rel=\"noreferrer noopener\">Taxonomy performance improvements in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/27/changes-to-do_parse_request-filter-in-wordpress-6-0/\">Changes to the do_parse_request filter in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/29/caching-improvements-in-wordpress-6-0/\">Caching improvements in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/27/new-filter-to-modify-content-images-in-wordpress-6-0/\">New filter to modify content images in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/02/media-storing-file-size-as-part-of-metadata/\">Media: storing file size as part of the metadata</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/05/updates-to-the-wordpress-create-block-templating-system/\">Updates to the @wordpress/create-block templating system</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/02/object-type-specific-registration-hooks-in-6-0/\">Object type-specific registration hooks in 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/28/taxonomy-performance-improvements-in-wordpress-6-0/\">Taxonomy performance improvements in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/02/new-features-for-working-with-patterns-and-themes-in-wordpress-6-0/\">New features for working with patterns and themes in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/02/theme-export-in-wordpress-6-0/\">Theme export in WordPress 6.0</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/29/wp_user_query-now-accepts-fields-options-in-wordpress-6-0/\">WP_User_Query now accepts fields options in WordPress 6.0&nbsp;</a></li><li><a href=\"https://make.wordpress.org/core/2022/05/02/performance-increase-for-sites-with-large-user-counts-now-also-available-on-single-site/\">Performance increase for sites with large user counts (now also available on a single site)</a></li></ul>\n\n\n\n<h2 id=\"h-docs\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul><li><a href=\"https://wordpress.tv/2022/03/30/milana-cap-birgit-pauli-haack-courtney-engle-robertson-femy-praseeth-akira-tachibana-wordpress-release-6-0-trac-ticket-triage-for-docs/\">WordPress release 6.0 Trac ticket triage for docs</a></li><li><a href=\"https://make.wordpress.org/updates/2022/04/25/documentation-team-update-april-25-2022/\">Documentation Team Update â€“ April 25, 2022</a></li></ul>\n\n\n\n<h3 id=\"h-developer-docs\"><a href=\"https://developer.wordpress.org\">Developer Docs:</a></h3>\n\n\n\n<ul><li><a href=\"https://developer.wordpress.org/block-editor/reference-guides/packages/packages-preferences-persistence/\">@wordpress/preferences-persistence</a></li></ul>\n\n\n\n<h3 id=\"h-support-docs\"><a href=\"https://wordpress.org/support/articles\">Support Docs:</a></h3>\n\n\n\n<ul><li><a href=\"https://wordpress.org/support/article/wolfram-embed/\">Wolfram Embed</a></li><li><a href=\"https://wordpress.org/support/article/site-tagline-block/\">Site Tagline Block</a></li><li><a href=\"https://wordpress.org/support/article/post-content-block/\">Post Content Block</a></li></ul>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<h2 id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/community/2022/04/21/announcement-updated-covid-19-guidelines-for-official-wordpress-events/\"></a><a href=\"https://make.wordpress.org/community/2022/04/22/wpdiversity-is-expanding-to-apac/\">WPDiversity is Expanding to APAC!</a></li><li><a href=\"https://make.wordpress.org/community/2022/04/21/announcement-updated-covid-19-guidelines-for-official-wordpress-events/\">Announcement: Updated COVID-19 guidelines for official WordPress events</a></li></ul>\n\n\n\n<h2 id=\"h-design\"><a href=\"https://make.wordpress.org/design\">Design</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/design/2022/04/25/design-share-apr-11-22/\">Design Share: Apr&nbsp;11â€“22</a></li></ul>\n\n\n\n<h2 id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/hosting/2022/05/04/get-ready-for-wordpress-6-0/\">Get ready for WordPress 6.0</a></li></ul>\n\n\n\n<h2 id=\"h-marketing\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/marketing/2022/04/01/grow-your-story-on-wordpress/\">Grow Your Story on WordPress</a></li></ul>\n\n\n\n<h2 id=\"h-meta\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/meta/2022/04/28/proposal-make-wordpress-team-or-project-updates/\">Proposal: Make WordPress Team or Project Updates</a></li><li><a href=\"https://make.wordpress.org/meta/2022/04/12/gutenberg-landing-page-kick-off/\">Gutenberg Landing Page: Kick-Off</a></li></ul>\n\n\n\n<h2 id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/plugins/2022/04/15/featured-beta-plugins-now-limit-changes/\">Featured/Beta Plugins Now Limit Changes</a></li></ul>\n\n\n\n<h2 id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/polyglots/2022/05/02/wordpress-6-0-ready-to-be-translated/\">WordPress 6.0 ready to be translated</a></li></ul>\n\n\n\n<h2 id=\"h-project\"><a href=\"https://make.wordpress.org/project\">Project</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/project/2022/04/29/discussion-contrib-handbook-part-2/\">Discussion: Contrib Handbook, Part 2</a></li><li><a href=\"https://make.wordpress.org/project/2022/04/01/discussion-contrib-handbook-part-1/\">Discussion: Contrib Handbook, Part 1</a></li></ul>\n\n\n\n<h2 id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/test/2022/04/28/fse-program-testing-call-14-rallying-recipe-reviewers/\">FSE Program Testing Call #14: Rallying Recipe Reviewers</a></li></ul>\n\n\n\n<h2 id=\"h-themes\"><a href=\"https://make.wordpress.org/themes\">Themes</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/themes/2022/04/28/latest-changes-in-gutenberg-themes-13-0-release/\">Latest changes in Gutenberg + Themes: 13.0 release</a></li></ul>\n\n\n\n<h2 id=\"h-support\"><a href=\"https://make.wordpress.org/support\">Support</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/support/2022/04/off-forum-support-requests/\">Off forum support requests</a></li></ul>\n\n\n\n<h2 id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/training/2022/04/19/migrating-contributor-training-to-learn-wordpress/\"></a><a href=\"https://make.wordpress.org/training/2022/05/03/may-2022-sprint/\">May 2022 Sprint</a></li></ul>\n\n\n\n<h4 id=\"h-workshops\">Workshops:</h4>\n\n\n\n<ul><li><a href=\"https://learn.wordpress.org/workshop/applying-duotone-filters-to-change-color-effects/\">Applying Duotone Filters to Change Color Effects</a></li></ul>\n\n\n\n<h4 id=\"h-social-learning-spaces\">Social Learning Spaces:</h4>\n\n\n\n<ul><li><a href=\"https://learn.wordpress.org/?meeting=open-source-principles-and-wordpress\">Open Source Principles and WordPress</a></li><li><a href=\"https://learn.wordpress.org/?meeting=wordpress-5-9-lookback-6-0-look-ahead\">WordPress 5.9 Lookback & 6.0 Look ahead</a></li><li><a href=\"https://learn.wordpress.org/?meeting=showcasing-content-with-query-loops-2\">Showcasing Content with Query Loops</a></li></ul>\n</div>\n</div>\n\n\n\n<h2 id=\"5ftf\"><a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a></h2>\n\n\n\n<p>What\'s happening specific to Five for the Future? Provide your feedback on these posts:</p>\n\n\n\n<ul><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/182\">Tracking contributions: receiving special access</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/180\">Tracking contributions: meeting attendance</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/177\">Tracking Contributions: HelpScout</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/176\">Tracking Contributions: Contributors share their contributions periodically.&nbsp;</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/174\">Manual &#8220;props&#8221; for team activity</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/173\">The minimal onboarding process for newly pledged contributors</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/170\">Outreach process for various types of incomplete and dormant pledges</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/169\">Prevent and remove spam/dormant pledges</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/168\">Require logging in for submitting the company pledge form</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/166\">Prevent company pledges from becoming a public without pledges</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/160\">Include the number of pledges in the pledge listing</a></li><li><a href=\"https://github.com/WordPress/five-for-the-future/issues/140\">Team Pledges: Link to Slack user for convenience</a></li></ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://cdn.poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You â€” and <a href=\"https://poststatus.com/business-membership/\">your whole team</a> can <a href=\"https://poststatus.com/post-status-membership-club/\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job â€” or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/2709.png\" alt=\"âœ‰\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a>. <img src=\"https://s.w.org/images/core/emoji/13.1.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 May 2022 14:56:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: #25 â€“ Joe Casabona on Why WordPress Is a Great Choice for Your Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=133709\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://wptavern.com/podcast/25-joe-casabona-on-why-wordpress-is-a-great-choice-for-your-podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:49481:\"<p>So on the podcast today we have <a href=\"https://twitter.com/jcasabona\">Joe Casabona</a>.</p>\n\n\n\n<p>Joe is a podcaster and educator, which makes him perfect for the discussion today, â€˜Why WordPress Is a Great Choice for Your Podcastâ€™.</p>\n\n\n\n<p>He started his career over 20 years ago as a freelance web developer before realising his true passion, which is sharing his years of knowledge to help creators and small business owners.</p>\n\n\n\n<p>His goal is to help people make money with their content, which he does primarily through his podcast, and courses.</p>\n\n\n\n<p>We start out the podcast talking about Joeâ€™s story; how he found WordPress and podcasting. It was not all plain sailing and Joe went through several iterations of his podcast before he began to think of it less as a hobby, and more as a useful tool for his business.</p>\n\n\n\n<p>The conversation then turns to the purpose of setting up a podcast. Right now podcasts appear to be all the rage. Many people create them for fun, as an outlet for their creativity, but thereâ€™s also a growing recognition that they can have purposes beyond entertainment. They could help you connect with customers or be used as a way of communicating with your team.</p>\n\n\n\n<p>We also cover the subject of the things that youâ€™ll need to create a podcast, and why this list is not as daunting or expensive as you might think. You can, if you like, buy the latest and greatest equipment, but Joe is of the opinion that, whilst this is nice, itâ€™s not essential.</p>\n\n\n\n<p>As this is a podcast about WordPress we make sure to discuss how WordPress and podcasting are a perfect match. Whilst many podcast hosting platforms will allow you to have a basic website, itâ€™s likely that youâ€™ll be able to make your podcast more effective if you are able to extend the websiteâ€™s functionality. WordPress is perfect for this. Thereâ€™s no restrictions on what you can do and youâ€™re free to change anything whenever you like.</p>\n\n\n\n<p>So if youâ€™re curious about how to set up a podcast, or if youâ€™ve already got one going and just want to hear some fresh perspectives, this episode is for you.</p>\n\n\n\n<h2>Useful links.</h2>\n\n\n\n<p><a href=\"https://casabona.org/\">Joe&#8217;s website</a></p>\n\n\n\n<p><a href=\"https://podcastliftoff.com/\">Podcast Liftoff</a></p>\n\n\n\nTranscript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley. Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case why WordPress is a great choice for your podcast.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to our podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to WP Tavern dot com forward slash feed forward slash podcast. And you can copy and paste that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, well I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head over to WP Tavern dot com forward slash contact forward slash jukebox. And use the contact form there.</p>\n\n\n\n<p>So on the podcast today we have Joe Casabona. Joe is a podcast and educator, which makes him perfect for the discussion today. Why WordPress is a great choice for your podcast. He started his career over 20 years ago as a freelance web developer before realizing his true passion. Which is sharing his years of knowledge to help creators and small business owners.</p>\n\n\n\n<p>His goal is to help people make money with their content. Which he does primarily through his podcast and his courses. We start out the podcast today talking about Joe story. How he found WordPress and podcasting. It wasn&#8217;t all plain sailing. And Joe went through several iterations of his podcast before he began to think of it less as a hobby and more as a useful tool for his business.</p>\n\n\n\n<p>The conversation then turns to the purpose of setting up a podcast. Right now podcasts appear to be all the rage. Many people create them for fun. As an outlet for their creativity. But there&#8217;s also a growing recognition that they can have a purpose beyond entertainment. They could help you connect with customers or be used as a way of communicating with your team.</p>\n\n\n\n<p>We also cover the subject of the things that you&#8217;ll need to create a podcast. And why this list is not as daunting or as expensive as you might think. You can, if you like, buy the latest and greatest equipment, but Joe is of the opinion that, whilst this is nice, it&#8217;s not essential.</p>\n\n\n\n<p>As this as a podcast about WordPress, we make sure to discuss how WordPress and podcasting are a perfect match.</p>\n\n\n\n<p>Whilst many podcast hosting platforms will allow you to have a basic website, it&#8217;s likely that you&#8217;ll be able to make your podcast more effective if you&#8217;re able to extend the website&#8217;s functionality. WordPress is perfect for this. There&#8217;s no restrictions on what you can do and you&#8217;re free to change anything whenever you like.</p>\n\n\n\n<p>So, if you&#8217;re curious about how to set up a podcast, or if you&#8217;ve already got one going and just want to hear some fresh perspectives, this episode is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all the links in the show notes by heading over to WP Tavern dot com forward slash podcast. Where you&#8217;ll also find all the other episodes. And so without further delay, I bring you Joe Casabona.</p>\n\n\n\n<p>I am joined on the podcast today by Joe Casabona. Hello Joe.</p>\n\n\n\n<p>[00:03:58] <strong>Joe Casabona:</strong> Hey, Nathan. Thanks for having me.</p>\n\n\n\n<p>[00:04:00] <strong>Nathan Wrigley:</strong> You&#8217;re very welcome. Joe and I have actually spoken on a number of occasions, but we&#8217;ve never actually spoken about this particular subject. And it&#8217;s nice to have you on the WP Tavern podcast as well. First of all, Joe the generic question, which always ask, it may not be the most interesting, but at least it sets the tone for the episode. Give us a little bit of a backstory about yourself as long or as short as you like, tell us who you are and how come you&#8217;re talking about podcasts and WordPress today?</p>\n\n\n\n<p>[00:04:24] <strong>Joe Casabona:</strong> Yeah. So I&#8217;ve been a WordPress developer since 2004. My origin story is a little bit, I was telling my friend how I think I&#8217;m going to build my own content management system, cause I was doing client work since high school. And he said, have you heard of this thing called WordPress? And I was like, no, I looked into it, and I basically used it ever since. I did it the bad way for awhile before pages were supported, I would put like my own PHP files into Core, but then pages got support in like 2006, I think, and since then, pretty much all of my client work has been done with WordPress. I also, since second grade was in drama club from second to 12th grade.</p>\n\n\n\n<p>And so I love entertaining. I love performing, and podcasting seemed like a good outlet for that, as I became an adult and moved away from theater, as other things claimed my time. But in 2012, I launched a podcast, but it was terrible because it was like a panel podcast. It was basically just me and my buddies talking, which is just like the worst kind of podcast.</p>\n\n\n\n<p>But in 2016 I launched a real proper, I had a proper go at podcasting with my podcast, how I built it. And since then, that&#8217;s a main driver of my income. I&#8217;m self-employed, full time since 2017. I have three children at home, so this business supports my family and podcasting is a major part of that. And so from 2016 on I&#8217;ve been able to combine my two careers of WordPress and podcasting into a content creation business we&#8217;ll say.</p>\n\n\n\n<p>[00:05:58] <strong>Nathan Wrigley:</strong> So it&#8217;s fair to say that on the subject of podcasting and WordPress combined, you&#8217;ve pretty much got it sussed. So that&#8217;s perfect. Thank you very much indeed. You mentioned in there that you had a go at podcasting and the format was wrong, but you persevered. And I&#8217;m just curious about that. It seems to me that at the moment, the words I&#8217;m going to do a podcast, pretty much fall out of everybody&#8217;s lips at some point. It&#8217;s very much in vogue. Everybody&#8217;s talking about it. It&#8217;s the latest thing. Whether or not that continues, who knows, but right now it seems that everybody wants to get on that bandwagon. Do you think it is for everybody? Are there any gotchas that you would put in people&#8217;s way and say, actually before you commit, just answer these questions about yourself. Just think about these particular things. I know that&#8217;s a very generic question, but do you believe it is truly for everybody?</p>\n\n\n\n<p>[00:06:49] <strong>Joe Casabona:</strong> I think it is for everybody, as long as the answer to why do you want to start a podcast is not to make a lot of money or to be famous. I think you need a better reason than either one of those, because while I make a lot of my money with podcasting, it&#8217;s not the reason I started. I thought that this was going to be more of like a marketing tool for my online courses which is another way to make money. Don&#8217;t get me wrong.</p>\n\n\n\n<p>But if you go into podcasting thinking, I&#8217;m going to be rich and I&#8217;m going to be famous. I&#8217;m going to be the next Joe Rogan or Conan O&#8217;Brien or whoever Then you&#8217;ll be disappointed. But if you go in with a reason beyond that, I want to help people learn about this thing I&#8217;m passionate about. I want to help establish my expertise in a specific area, then yes, you should start a podcast.</p>\n\n\n\n<p>[00:07:44] <strong>Nathan Wrigley:</strong> Do you think that the skill set is something that you can learn in its entirety? Because there&#8217;s a lot going on in a podcast. When you consume it, it feels as if it just fell out of the podcast player. You know, you might not realize the amount of work that goes in. That might be research. It might be setting up the interview, redoing the interview, editing the interview, putting music in and searching for that. The time spent, if you&#8217;re doing guest interviews and all of that.</p>\n\n\n\n<p>Do you feel that there&#8217;s a certain proclivity, a certain type of person who fits best? In other words, If you&#8217;re, let&#8217;s say more on the reclusive side, is that something that would put you off? And also, from a technical point of view, can you just learn everything that needs to be learned, or is it difficult to acquire the skills and, you know, you need to basically dedicate time to learn all those before you actually commit to starting.</p>\n\n\n\n<p>[00:08:36] <strong>Joe Casabona:</strong> Yeah, that&#8217;s a really interesting question because, I think a lesson people learn time and time again is the thing that looks effortless on the front end, right? The way we see it is actually a huge effort on the backend, by the creator, right? The YouTube videos that look like they&#8217;re so smooth and easy, really just take hours of editing for example, right. And so I think it does take time to learn. I think the hardest thing to learn is probably how to have a good conversation. I think a lot of people don&#8217;t really know how to do that, especially with people they don&#8217;t know personally.</p>\n\n\n\n<p>And so that takes some research. You know, you and I had a pre-interview discussion, even though we know each other. I do the same thing with my podcast interviewees. We get out about 20 minutes before we&#8217;re going to record and chat and get comfortable with each other. So I think that there are some things you do need to learn. Or you need to recognize your strengths and outsource the things that you don&#8217;t care to learn or don&#8217;t like to do, right.</p>\n\n\n\n<p>Coming from the WordPress space, that always feels like a tough conversation to have, right? Why would I pay for somebody to do it when I can do it myself, but one of the first things and one of the best things I did when I started my podcast was hire an editor. I hated editing. And if I had to edit my own podcasts, I wouldn&#8217;t be where I am today.</p>\n\n\n\n<p>[00:09:59] <strong>Nathan Wrigley:</strong> So it&#8217;s a question of finding the things that you&#8217;re good at. Finding the things that you like. Concentrating on those and knowing that there are commercial avenues for taking that off your plate and giving it to somebody else. That&#8217;s really good advice.</p>\n\n\n\n<p>In terms of the sort of scope of the project, typically the podcasts that I listened to fall into two main categories, I listened to podcasts for entertainment. So, there&#8217;s comedy podcasts and there&#8217;s news podcasts and things like that. But then I also more recently have found podcasts where I&#8217;m consuming information. It&#8217;s almost like I&#8217;ve replaced the TV documentary with podcasts.</p>\n\n\n\n<p>And I just wonder if you had any thoughts about that. In other words, should you think really carefully about the subject matter at hand? Is a pet project good enough. Or do you really need to be introspective and thinking long and hard about what the nature is? In other words, if you begin, are you stuck doing that?</p>\n\n\n\n<p>Or can you pivot halfway through like you did, you kiboshed one podcast and started again. Just curious as to how much thought you think the subject matter of the podcast may need.</p>\n\n\n\n<p>[00:11:06] <strong>Joe Casabona:</strong> Yeah, that&#8217;s a really great question, right, and sometimes it&#8217;s a situation of you don&#8217;t know what you don&#8217;t know, right. It&#8217;s like when you do client work and you say well, what do you, what do you want? I&#8217;ll know I don&#8217;t like something when I see it. And so I think if you want to start a podcast, try your first or third or fifth idea, don&#8217;t spend too much time on laboring over that and just get started. Record a couple of test episodes, and see how well you fall into the habit of recording and the format and see if it works for you.</p>\n\n\n\n<p>Yeah, cause I&#8217;m listening to a highly produced podcast right now called Wicked Game. It looks at all of the American elections from the very first to the 2020 election, American presidential elections, I should say. And it&#8217;s highly produced with music and sound effects and it&#8217;s deeply researched. And it&#8217;s so interesting, but my podcast is nowhere near that. I&#8217;m having a good conversation with somebody. And it&#8217;s a little bit researched.</p>\n\n\n\n<p>I look into my guest if I want to have them on the show. I look at the questions I&#8217;m going to ask them, for example, I&#8217;m interviewing Chris Coyier later today. And I listened Nathan to your interview with him from a few weeks ago, to make sure that we didn&#8217;t cover the same exact things, because there&#8217;s probably some overlap, and I&#8217;m sure Chris doesn&#8217;t wanna, I&#8217;m sure he&#8217;s not going on like a podcast junket, to tell the same stories over and over again. So I think that was maybe a meandering answer. I would say when you have an idea, you think is good enough, start, you&#8217;re not stuck, but it will help you understand what works for you and what does not work for you.</p>\n\n\n\n<p>[00:12:42] <strong>Nathan Wrigley:</strong> The use case, so I mentioned two categories there, broadly entertainment and information. I caught sight of a really interesting idea of podcasting the other day. And I confess having been a podcast and myself for a few years, it was caught short by this re-purposing of audio content. And that was that the CEO of a company, had decided that the daily huddle of his, I don&#8217;t know how many staff let&#8217;s say 20 or so, was it a bit of a waste of time. And he thought to himself, well, most of the people that work for me are commuting. They&#8217;re all using iPhones or Android phones and they&#8217;re all consuming podcasts.</p>\n\n\n\n<p>Why don&#8217;t I create a podcast episode telling everybody what would have been in the morning meeting the following morning. And although that&#8217;s a very specific use case, it just suddenly made me think, oh, so it&#8217;s not just about information. It&#8217;s not just about entertainment. You really could finesse this down, and make it something very specific indeed. I don&#8217;t know if you&#8217;d come across any other curious examples of how audio podcasts had been used.</p>\n\n\n\n<p>[00:13:48] <strong>Joe Casabona:</strong> Yeah, I think that&#8217;s a brilliant, and I had somebody approach me last year interested in basically doing the same thing. They run a company of truck drivers, and instead of making their truck drivers, who could be all over the country, tune into a go-to meeting every month, they wanted to put those go-to meetings, which were usually just presentations by the CEO, out as podcasts.</p>\n\n\n\n<p>That way truck drivers who are in their car or their truck most of the day, could listen whenever they could more conveniently. I&#8217;ve seen use cases of teachers using podcasts to put out lectures, or to announce new homework assignments or add more context to a homework assignment. So there are, especially with the advent of private podcasting, I think there are a ton of fantastic use cases because audio is a simpler medium than video, and it is easier on bandwidth and you have a podcast app where new episodes automatically get downloaded, right? You don&#8217;t have to go to a website to check, to see if it&#8217;s updated. You can get a push notification when a new episode drops.</p>\n\n\n\n<p>[00:15:01] <strong>Nathan Wrigley:</strong> One of the things that I find really amazing about audio is just the fact that I can actually be doing several things at the same time. You know, I can be sitting at my computer working and I can tune into a podcast. And if I don&#8217;t need it to give my full attention, it&#8217;s just there. And if something piques my interest, I&#8217;ll probably pause what I&#8217;m doing and get engaged with it for a little moment.</p>\n\n\n\n<p>But also equally, I could be giving it my full attention whilst I&#8217;m carrying out some household chores, it could be vacuuming the floor or something. And that requires almost no cognitive ability from me at all. And I do that quite a lot and I&#8217;m, I&#8217;m really engaged in it. And so you don&#8217;t have to be, as you would be for a, a piece of video content, you don&#8217;t have to apply all thought towards it.</p>\n\n\n\n<p>Things can be going on at the same time. In particular, as you said, things like commuting. It&#8217;s the perfect time to have audio content, because most people are probably throwing on the car stereo at some point anyway, so. Yeah. That&#8217;s really interesting.</p>\n\n\n\n<p>Do you see this as an avenue, in terms of WordPress website builds, do you see this as a growing avenue for let&#8217;s say agencies or freelancers, as an area that they can bolster their offering to their clients. At the moment they can say things like, we can build you a website. We can offer you a care plan. We can do the maintenance, we can do SEO and so on. Do you think people are more frequently asking, can you do me a podcast? What benefit could I get from a podcast?</p>\n\n\n\n<p>[00:16:26] <strong>Joe Casabona:</strong> Yeah, I&#8217;m not the best marketer. And I get these inquiries. I have a couple of clients for whom I produce podcasts. But even from the WordPress side, right, I think more podcasters are realizing they need a good website for their podcast. And I think, even if we&#8217;re not looking at independent podcasters, you know, who are more reluctant to spend money at first, because there isn&#8217;t a real, tangible cost associated with podcasting from the very beginning.</p>\n\n\n\n<p>But you have agencies and institutions who are like, maybe we should have a podcast. Building a good website around that is going to be important to them, especially if they want to offer something to their members or their employees, or their students, where there is some sort of privacy aspect involved.</p>\n\n\n\n<p>[00:17:16] <strong>Nathan Wrigley:</strong> Yeah, you mentioned privacy or private podcasts. Perhaps people who don&#8217;t listen to podcasts or, like us, are habitual about podcasting. Just tell us what a private podcast is. Because it&#8217;s a whole different area of podcasting that many people don&#8217;t even know about.</p>\n\n\n\n<p>[00:17:31] <strong>Joe Casabona:</strong> Private podcasting, I guess if I&#8217;m going to generalize the definition, it is a podcast for which you control access to. So for me, I have a private podcast called build something more. That is for my members. They get add free extended episodes of my podcast, but they also get, on Fridays, an episode called the weekly wrap, where I just tell them what I worked on this week. And some of my struggles, some of my wins, and it&#8217;s a 15 minute or so update for just my members. But as you mentioned, a private podcast could also be a company only podcast, right? Where maybe the CEO is talking about their roadmap for the next quarter.</p>\n\n\n\n<p>And that&#8217;s not necessarily public information, but he still wants, or he or she wants to disseminate that information to the employees. A podcast could be a great way to do that. If you have a classroom based podcast, that&#8217;s the same thing, right? You&#8217;re putting out lessons that you don&#8217;t want the whole world to hear. Maybe you&#8217;re communicating with student feedback or something like that. That could be a private podcast as well.</p>\n\n\n\n<p>[00:18:36] <strong>Nathan Wrigley:</strong> Yeah. Okay. Thank you. That&#8217;s cleared that up. In terms of growth of podcasts, it feels like there&#8217;s been more or less exponential growth in the last few years. If we rewind the clock, maybe ten or eight years, they existed, but they were fairly niche. You probably had to sit at a device and then along comes the iPod and changes all of that. And then after that along comes the iPhone and smartphones in general. And all of a sudden, this stuff is just in your pocket. It&#8217;s completely there all the time. It&#8217;s a device which you are more or less guaranteed to hold during the time that you&#8217;re awake.</p>\n\n\n\n<p>So it felt like it was getting bigger and bigger and bigger. And everybody seems to be jumping on the bandwagon. Do you have any, any insight into whether or not that&#8217;s still the case. In other words, if today is the moment that you&#8217;re thinking about a podcast, you would want to be thinking, okay, it&#8217;s a growing medium. I want to hop on whilst it&#8217;s still growing, but maybe that&#8217;s not the case. Maybe it&#8217;s in decline.</p>\n\n\n\n<p>[00:19:34] <strong>Joe Casabona:</strong> Yeah, really interesting question. And I think as with anything with data, you could probably twist the stats to tell your own story, but Edison research is a organization that does a lot of different kinds of stats. They&#8217;ll do like a thing called terrestrial radio as well. They&#8217;ll do general content consumption by household, but, they have a report called the infinite dial, where they look at listening habits and podcasts specifically. Right? So for example, smartphone ownership grew by about 250 million over the last couple of years. Internet connected watch owners and they have all the, all of these stats.</p>\n\n\n\n<p>But one of the stats is podcasting. How many people are listening to podcasts? How many people are aware that podcasting is a thing. And for the first time, since they were doing this study it is I think monthly or weekly listenership decreased. I&#8217;m trying to find the stat. I wish I had it up, but it was all a buzz when they announced it in March, that for the first time podcast consumption went down.</p>\n\n\n\n<p>[00:20:40] <strong>Nathan Wrigley:</strong> It feels like there&#8217;s always going to be a moment in any market where it has plateaued, but it feels as if the threshold which we&#8217;ve reached is still more or less everybody. It still feels like there&#8217;s plenty of audience to share around, and the sky is not necessarily falling in just because in the more recent past the numbers haven&#8217;t kept growing. I think in our pre-recording chat you mentioned that there might be some kind of COVID pandemic data that explains that a little bit better.</p>\n\n\n\n<p>[00:21:10] <strong>Joe Casabona:</strong> Yeah, that&#8217;s exactly right. Honestly, I&#8217;m looking through this data right now and I cannot find, oh, monthly podcasts listening went down from 41 percent to 38 percent from 21 to 22, it looks like. Yeah, a small decrease. And what happened in that time? The world opened up again, right.</p>\n\n\n\n<p>Because again, from 19 to 20, we saw a 5 percent increase. From 20 to 21, we saw a 4 percent increase. So if we compare 20 to 22, we see a 1 percent increase. People are going back to their normal lives. What is the more interesting stat to me is around awareness. A lot more people are aware that podcasting is a thing. A lot more people are listening to more than one podcast now.</p>\n\n\n\n<p>So yeah, maybe I&#8217;m listening to fewer podcasts on a monthly basis than I was a year ago, but that doesn&#8217;t mean that podcasting is decreasing in popularity. And on that same token, podcasting has not hit critical mass yet. There&#8217;s 2.2 million podcasts only about, I think it&#8217;s something like less than half of them are active. And so we have 38 million YouTube channels, you tell me is podcasting has podcasting hit max capacity yet?</p>\n\n\n\n<p>[00:22:37] <strong>Nathan Wrigley:</strong> Yeah, it certainly feels to me as if there&#8217;s lots more growth. And it&#8217;s curious, the sort of up and down of the last couple of years, and there definitely seems to be some data points, which explain maybe the more recent dip, because life is going back to normal.</p>\n\n\n\n<p>If somebody is listening to this, and they think to themselves, wow, I really must make time for this. I&#8217;ve finally been persuaded. I&#8217;m going to do my podcast. Regardless of the subject, let&#8217;s get into the tooling that&#8217;s needed. And first of all, let&#8217;s stay away from, let&#8217;s just stay right away from WordPress and just concentrate on the things that you would need in your life if you were to become a podcaster.</p>\n\n\n\n<p>And now we don&#8217;t need to go to the extremity of all of the different bits and pieces, but at the very basics, what would you say would be the essential and then maybe we can go onto the more that would be desirable. So let&#8217;s start with the essential stuff. What is needed to do a podcast?</p>\n\n\n\n<p>[00:23:28] <strong>Joe Casabona:</strong> I think that you need four things to do a podcast, excluding your voice, right. That would be number five. I guess that&#8217;d be number one. Really? You need a not built in microphone, right? So you will see blog posts they&#8217;re like what microphone should you get? Should you buy the Shure SM7B? Every podcaster that you see on a TV show has the Shure SM7B, and I assure you as someone who&#8217;s speaking into one right now, you don&#8217;t need that. You can spend 50 bucks or 40 bucks and get a decent built in microphone because you&#8217;re not singing, probably. You&#8217;re talking. So you just need something that has reasonable noise rejection, that has a dedicated function for capturing your voice.</p>\n\n\n\n<p>You also need headphones. There are going to be people who say, I don&#8217;t need headphones. I&#8217;ve done podcasts without headphones and it&#8217;s, it&#8217;s fine. It&#8217;s not fine. What happened was the person whose podcast you went on was too polite to ask you to put on headphones, and then too polite to tell you that the recording sounded like crap.</p>\n\n\n\n<p>You need headphones, because if you don&#8217;t, you&#8217;re going to get a lot of interference. So mic, headphones, that&#8217;s one and two. Three is a way to record. Luckily, whatever device you are consuming this podcast on has a way to record. It could be Quicktime on a Mac. It could be Windows Recorder on Windows, or your phones have recording apps as well. Heck the iPhone has like a version of Garage Band I think you can use.</p>\n\n\n\n<p>And then you need an audio host. We&#8217;ll probably get into audio host recommendations later, but you can&#8217;t just throw an MP3 up in your WordPress media library and call it a day. You need a dedicated audio host for a bunch of reasons.</p>\n\n\n\n<p>[00:25:14] <strong>Nathan Wrigley:</strong> Just develop that further. I mean, we all know what a WordPress website host is and the reasons why you wouldn&#8217;t put your WordPress website on your home computer, unless you were really skilled and knew what you were doing. What&#8217;s the purpose of a host, and why is that an essential component?</p>\n\n\n\n<p>[00:25:27] <strong>Joe Casabona:</strong> Yeah. So I&#8217;ll put it to you this way, right? If you wanted to travel across your country, whatever country you happen to be in. You could put on like those 1970s roller skates, right? With the four wheels on each side of the shoe. Or you could get a bicycle, which one of those sounds better?</p>\n\n\n\n<p>Or in the United States, like biking across the country sounds terrible to me, but some people do it. I&#8217;d probably want a car or a plane. So if you want to put your audio online, technically you can just upload it to any old server, but you want a server that specializes in serving audio, just like YouTube or Vimeo or not just any old video hosting providers, right.</p>\n\n\n\n<p>They do a lot of things behind the scenes to make sure that people are getting those videos served up quickly and efficiently. And it&#8217;s the same thing for an audio host. They do a lot of things behind the scenes to make sure your audio is available and that stats are being captured on it. And that If maybe one server crashes, they have redundancy, right? There are things in place that audio hosts do that general hosts will not do.</p>\n\n\n\n<p>[00:26:39] <strong>Nathan Wrigley:</strong> They also compile something called an RSS feed, and WordPress users were really familiar with this, but there is a particular type of RSS feed which needs to be consumed by a podcast player. And they also typically take that heavy lifting as well, so that when you subscribe to the podcast, it comes with all of the album art and all of the episode descriptions and all of that. So, yeah, highly recommended to look into that.</p>\n\n\n\n<p>In terms of then things which you quite like. So it&#8217;s no longer the four essential things. What about some of the things which you found to be quite useful although not necessary.</p>\n\n\n\n<p>[00:27:13] <strong>Joe Casabona:</strong> Okay. So strictly gear I, heavy caveat here, that I love tech and gear and I go overboard right? But I do have a fancy microphone, and I have something called the Rodecastor Pro. This is a 500 or $600 device that allows me to capture audio from multiple channels, and sound effects, et cetera.</p>\n\n\n\n<p>What I like about the Rodecaster Pro is it&#8217;s a soundboard built for podcasts. I have a couple of mikes plugged into it and they&#8217;re all dialed in based on the microphone. So I sound good, no matter which one I use, and it allows me to do things like monitor my audio. You can even record audio directly onto the hardware. That&#8217;s a piece of hardware I really like.</p>\n\n\n\n<p>If you&#8217;re thinking, look, I want to sound better than just a regular old USB microphone. Then you can get an XLR microphone and you can get the Focusrite Scarlett Solo, which is a interface that allows you to plug an XLR microphone basically into your computer. Those are two things that I think if you&#8217;re looking to upgrade, that&#8217;s a good place to start.</p>\n\n\n\n<p>The rest of my podcast gear, I mean, the rest of my recording gear honestly is more around live streaming. I guess the other kind of piece of gear I really like, I have a Zoom recorder, the Zoom H5, which is like a portable kind of podcast recorder that you could again, plug an XLR microphone into. And when I&#8217;m quote unquote on location, usually on location means at my parents&#8217; house. I&#8217;ll use that to record.</p>\n\n\n\n<p>[00:28:46] <strong>Nathan Wrigley:</strong> What about the software? Do you obsess about that in the same way? Do you download the most expensive audio software that money can buy or do you just go for some of the freely available stuff like Audacity?</p>\n\n\n\n<p>[00:28:57] <strong>Joe Casabona:</strong> Yeah, I&#8217;m actually, I&#8217;m recording this on my end into garage band, which just comes with the Mac. As far as other software goes uh, you know, something I forgot to mention in the hardware, is the Stream Deck. Again, that&#8217;s not something I think about with podcasting, but there&#8217;s a lot of stuff for podcasting on my Stream Deck.</p>\n\n\n\n<p>Maybe that&#8217;s another piece of gear that&#8217;s really interesting, and we can talk about that if there&#8217;s time later, but, as far as the software goes, I use riverside.fm to record. Of all of the online recording platforms that get good audio from your guests. That&#8217;s the one I&#8217;ve liked the best. I like having video on, cause I like seeing my guest. Again, riverside.fm is a really good tool for that full disclosure, they have sponsored my podcast in the past.</p>\n\n\n\n<p>[00:29:45] <strong>Nathan Wrigley:</strong> So these days it&#8217;s fair to say that there are basically tools which live inside the browser. You now no longer need to be using an app like Skype or something like that. You can connect with multiple guests, dozens potentially through browser based solutions, and Riverside.fm is one of them, and there&#8217;s a whole tranche of them and they all seem to have similar feature parity, but that&#8217;s the one that you&#8217;ve chosen.</p>\n\n\n\n<p>Let&#8217;s flip to the website side of things. It&#8217;s a WordPress podcast. There is going to be things that we would like to implement on our website. What makes a good podcasting website? Now that could be the way it looks. It could be the plugins that you&#8217;re putting in there. It could be lead capture, anything like that, that you want to discuss.</p>\n\n\n\n<p>[00:30:29] <strong>Joe Casabona:</strong> Yeah. So that&#8217;s a great question right. And I think, so I think what a lot of podcasters suffer from is a weak call to action, right? They&#8217;ll say subscribe in Apple podcasts or wherever you get your podcast right. First of all, if people are using a podcast app and they already know that, right? They know how to get your podcasts.</p>\n\n\n\n<p>What I like is having a call to action for my website. So my call to action will always be, you know, go visit URL slash episode number. And there you can get all the show notes, you can get a transcript and you can get this thing I&#8217;m offering. If you give me your email address, whatever that happens to be. Your website serves as the canonical place for all people to go, no matter what platform they&#8217;re using to get more information about your podcast.</p>\n\n\n\n<p>So, this is again, kind of like mission-based right. Why are you starting a podcast? If you&#8217;re starting it to have sponsors, then great. You could have a good section for sponsors. And I have, I have a page where I don&#8217;t know if this is the case anymore cause I had to like quickly redesign it because there was something wrong with something I was using.</p>\n\n\n\n<p>But for awhile, if you visited a sponsor page, it would list all of the episodes they sponsored. Right. I should probably turn that back on. So you can make it really nice for your sponsors. You can add transcripts in a way that works really nicely. And I, again, I just updated my website. I have a custom post type for transcripts, and instead of when somebody searches my site, if they come across a word in the transcript, they don&#8217;t go to the transcript or they go to the episode page, right. There&#8217;s like a little magic you can do with Search WP to make that happen. So it depends on what you want. But using WordPress as I&#8217;m sure everybody listening knows gives you a lot of flexibility, sponsors, merch.</p>\n\n\n\n<p>If it&#8217;s your agency say, you can just, you can add a podcast feed using the right plugin. Directing people to your podcast website allows you to get a better return, let&#8217;s say, on your investment. Especially if you&#8217;re an agency or a freelancer who is doing this to open up more avenues of income.</p>\n\n\n\n<p>[00:32:28] <strong>Nathan Wrigley:</strong> Yeah. it&#8217;s the same piece that we&#8217;ve used for the longest time when building websites, just for clients. You are in control of the content. And if you choose to go for the default website, which would be built potentially by your podcast host, you really aren&#8217;t in control of that. Things could go wrong. There could be an outage, they could go out of business. You may just decide that you wish to leave them and so on. Whereas if you&#8217;ve got all of that on your own domain and you&#8217;re running it and owning it, I completely concur. I just think that&#8217;s the best way to do it. You can do what you like.</p>\n\n\n\n<p>And, It is true to say that typically, if you go to a podcast host website, the usual ones that have nothing to do with WordPress, they will offer the functionality for a basic website. Do you just want to outline why there&#8217;s drawbacks there, you know, in terms of the options to customize it, and also the things that, all of the clever things that you just mentioned, presumably they&#8217;re all out of the window. You can&#8217;t modify, customize, update it as you would change the layout and so on.</p>\n\n\n\n<p>[00:33:34] <strong>Joe Casabona:</strong> Yeah. Most of them are just terrible. They look terrible. They don&#8217;t work well. I&#8217;ve seen some where like, you don&#8217;t even get an episode specific link. Right. It&#8217;s just like, all the episodes are like listed in line on a single page. That&#8217;s not great. And then, yeah, you can&#8217;t really customize anything.</p>\n\n\n\n<p>I think the best implementation I&#8217;ve seen is Castos. They rolled out their like website templates. And even those are pretty limited. If you have nothing Castos is a lot better, but you can&#8217;t bolt a e-commerce option on to any of those, right. Or you can&#8217;t when somebody becomes a member, right? Maybe you want them to get a member RSS feed and integrate your podcasts into that. That&#8217;s a lot easier to do on WordPress. Or you can&#8217;t have an account area in general for any private podcast if you&#8217;re using the audio hosts implementation.</p>\n\n\n\n<p>You&#8217;re just locked in, in a lot of ways. You&#8217;re limited in your show notes. You&#8217;re limited in what you can do with sponsor stuff. And so it&#8217;s probably better than nothing, but I am fully confident that the reason that my show grew so much over the first couple of years was because I had a good website right off the bat.</p>\n\n\n\n<p>[00:34:49] <strong>Nathan Wrigley:</strong> If you are literally just going for audio, then I think an audio host is fine, but if you want to have anything ancillary to just the audio, if you want to put any words on pages or any images that might attach themselves to that or any upsells, then I, think you&#8217;ve got to stray away because it&#8217;s almost like the podcast has got the memo about a website five years after it was needed. I&#8217;ve yet to find a podcast host where the website isn&#8217;t something that you could put together with WordPress in a matter of moments.</p>\n\n\n\n<p>Let&#8217;s go to some recommendations for podcast hosts, which are WordPress specific. Now, I&#8217;ve come across one, as it happens. There may be many, but the one that I&#8217;ve used before is called Castos, and they&#8217;re quite unique, in that they allow you to do all the things inside of WordPress and you literally don&#8217;t need to go away and visit a podcast house. It&#8217;s all happening as metadata. Just explain how that works.</p>\n\n\n\n<p>[00:35:49] <strong>Joe Casabona:</strong> Yeah as far as I know unless a new host has entered the scene recently, Castos is the only kind of WordPress based podcast host. And you can do it both ways, which is a little bit confusing if I&#8217;m being honest. But, if you tell Casto is I&#8217;m managing my podcast completely from WordPress, you can do everything from there, upload the audio, it&#8217;ll send it to Casto&#8217;s server. Update the title and description and on the Castos end, everything will get sinked.</p>\n\n\n\n<p>And so you can manage your whole podcast from WordPress in a custom post type for podcasts. You can say, I want this in the main feed or not. So you can have a completely separate section for your podcast. And it just it makes everything a lot easier, right, because when I was not on Castos, I would have to. Well, I set up an automation to do this eventually, but it was like, what if this breaks, and my whole podcast goes down or whatever, but I&#8217;d have to upload the audio to Libsyn. That&#8217;s what I was using. Libsyn was the big dog for a while, but then they rested on their laurels and now they&#8217;re really not good at all. They were really good in like 2002. But it&#8217;s not 2002 anymore.</p>\n\n\n\n<p>And so I&#8217;d have to go there, upload, copy the audio URL, right? The audio files URL. Paste it into a different podcast plugin I was using. And the whole process was just like womp or like it took so much time. And so if you&#8217;re using Castos, this sounds like a commercial for Castos, but Castos is the only one who does this. This is their competitive edge. Then you don&#8217;t have to do all that. You can do everything from the dashboard, from your WordPress admin. And you&#8217;re not going around into a bunch of different places.</p>\n\n\n\n<p>[00:37:22] <strong>Nathan Wrigley:</strong> Yeah. So you are basically saving yourself a little bit of time and yes, caveats, everything that we have described on the Castos side can be achieved. There&#8217;s just more little intermediate steps. Like you said, you have to go over here, and upload the file and then paste maybe an iframe or something like that into your Gutenberg posts or whatever. It&#8217;s just stuff you&#8217;ve got to do.</p>\n\n\n\n<p>[00:37:43] <strong>Joe Casabona:</strong> Yeah, like maybe Bluberry is another podcast host, like maybe they have this integration because I think the biggest competitor to Casto&#8217;s plugin, which is Seriously Simple Podcasting is PowerPress, which is Bluberry&#8217;s offering. But I still don&#8217;t think anybody does it as well as Castos.</p>\n\n\n\n<p>[00:37:58] <strong>Nathan Wrigley:</strong> So we&#8217;ve made the case for having a podcast, the different use cases. We&#8217;ve described some of the tech that you might have, on the WordPress side and the tech that you might own in the physical world as well, the bits and pieces, the microphones and so on. Just curious to know if you&#8217;ve over the years that you&#8217;ve been podcasting, if you&#8217;ve had any aha moments where you&#8217;ve suddenly strayed into something and thought, boy, why have I not been doing this for a while? Anything that you&#8217;ve figured out. Top tips that may save our audience sometimes, should they decide to podcast..</p>\n\n\n\n<p>[00:38:31] <strong>Joe Casabona:</strong> Yeah, this is not necessarily the process of podcasting, but build your email list. Because what you&#8217;ll learn quickly is podcasting feels a lot like a one-way street. You&#8217;re talking into a microphone, the vast majority of people who are listening, probably aren&#8217;t engaging, but if people sign up for your mailing list, now you have direct access to them.</p>\n\n\n\n<p>You can put names with listeners and engage with them on a deeper level. So I would say build your email list right off the bat. That&#8217;s something I didn&#8217;t do for years and it hurt me. I think the other thing that a lot of podcasts was making a mistake about is. Again, I mentioned it earlier, but have a clear call to action, right? Because usually what podcasters, myself included, will do is say, rate us and review us on Apple podcasts or wherever you get your podcasts, subscribe wherever you get your podcasts. If you want to learn more about this, go here. And that&#8217;s too many things, especially for somebody who&#8217;s probably not fully paying attention.</p>\n\n\n\n<p>Instead, say, hey, join my mailing list. You can sign up at the show notes page over at wp tavern.com slash whatever. There you&#8217;ll also find all of the show notes for everything that we talked about. Then mention it again in the middle of the episode. Hey, by the way, you can find all of the show notes and sign up for my newsletter over at blah blah.</p>\n\n\n\n<p>And then at the end where your call to action will be. And the great part about that is that you can have a link to rate and review wherever. You can have the subscribe buttons. And in the email newsletters that you send out every week with the new episodes or every two weeks with the new episodes, you can have links to rate and review, to subscribe, to check out this new ebook I launched. You can have early access if you want. There&#8217;s a lot of things that I think when people first start podcasting, they&#8217;re really focused on, all right, I need to sound good, I need to make it good, I need to launch it. But these ancillary actions are the things that become the base for which your podcast business or your podcast income is based off of.</p>\n\n\n\n<p>[00:40:30] <strong>Nathan Wrigley:</strong> Now you&#8217;re obviously very bullish about podcasting. You&#8217;ve really made it your life in more recent times. Just curious as to whether or not that is relentlessly the case. If we were to cast the net a little bit wider and go back five or six years, have you got any cautionary tales about the usual thing that begins when people begin to a project like this.</p>\n\n\n\n<p>It&#8217;s all roses and everything is sparkly and new, and you&#8217;re fascinated by the process. And perhaps it&#8217;s not as easy, perhaps there is a bit of grinds to this as well. So just wondering if you had any thoughts about that.</p>\n\n\n\n<p>[00:41:01] <strong>Joe Casabona:</strong> Yeah, it definitely is a grind. It&#8217;s work. And the thing that made it less like work for me in the beginning is I am an extrovert. I love having conversations with people. In an increasingly remote world, I&#8217;m seeing people less and less. A friend from high school who lives in my area now invited me to get a beer on Thursday and there were like several hurdles to that. And my wife was like do you want to see him? And I was like, I want to see almost anybody I&#8217;m not blood related to you right now. Like I just miss seeing people. That&#8217;s not a knock on my family, of course. I like the human connection.</p>\n\n\n\n<p>And so what made it feel less like work for me was I got to have conversations. I&#8217;m passionate about those conversations and when you&#8217;re starting a podcast, again, it goes back to that first question you asked me, like, why shouldn&#8217;t somebody start a podcast? If you&#8217;re just doing it for the money and the glory. You&#8217;re in for a long, frustrating ride.</p>\n\n\n\n<p>But if you&#8217;re doing it because you want to tell the world about this thing that you&#8217;re super passionate about, then yeah, it&#8217;s a grind, but it&#8217;s a grind where you get to talk about this thing that you love. And that is what&#8217;s going to make an audience connect with you, and that is what&#8217;s going to get your podcast to grow.</p>\n\n\n\n<p>[00:42:12] <strong>Nathan Wrigley:</strong> I love it. That&#8217;s a really perfect place to end the interview, but I don&#8217;t want to end quite there because I want to give you an opportunity to tell us a little bit about where we can find you. So yeah, exactly that the opportunity now to give us your Twitter feed or your email address, or possibly a website.</p>\n\n\n\n<p>[00:42:29] <strong>Joe Casabona:</strong> Yes. So if you are interested in my podcast specific services and content, you can go to podcast liftoff dot com, and you can find everything podcast related I&#8217;m doing there. If you&#8217;re generally interested in the stuff I&#8217;m doing whether it&#8217;s WordPress or anything else that we have, or haven&#8217;t talked about, you can go to casabona dot org. You&#8217;ll find everywhere I am and links to Twitter and all that fun stuff.</p>\n\n\n\n<p>[00:42:51] <strong>Nathan Wrigley:</strong> Joe Casabona, thank you for joining me on the podcast today. I really appreciate it.</p>\n\n\n\n<p>[00:42:55] <strong>Joe Casabona:</strong> My pleasure, Nathan. Thanks for having me.</p>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 May 2022 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"HeroPress: The pleasure of being a part of a community â€“ Ð©Ð°ÑÑ‚Ñ Ð±ÑƒÑ‚Ð¸ Ñ‡Ð°ÑÑ‚Ð¸Ð½Ð¾ÑŽ ÑÐ¿Ñ–Ð»ÑŒÐ½Ð¾Ñ‚Ð¸\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=4479\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:160:\"https://heropress.com/essays/the-pleasure-of-being-a-part-of-a-community/#utm_source=rss&utm_medium=rss&utm_campaign=the-pleasure-of-being-a-part-of-a-community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15729:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2022/05/050322-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Every contribution, big or small, makes WordPress better.\" />\n<p><a href=\"https://heropress.com/feed/#ukranian\">Ð¦Ðµ ÐµÑÐµ Ñ‚Ð°ÐºÐ¾Ð¶ Ð´Ð¾ÑÑ‚ÑƒÐ¿Ð½Ð¾ ÑƒÐºÑ€Ð°Ñ—Ð½ÑÑŒÐºÐ¾ÑŽ.</a></p>\n\n\n\n<p>Hey there! My name is Artemy, and I am from Ukraine. Iâ€™ve been working with WordPress since 2018. I specialize in WordPress backend development: I build and support WordPress plugins, third-party integrations, and other cool custom features.</p>\n\n\n\n<p>If you ask me why I love WordPress and why I decided to stick with it, my answer is <strong>the community</strong>. There are a lot of different CMS written in PHP and other languages. Still, I donâ€™t know any other CMS with such an active, responsive and enthusiastic community.</p>\n\n\n\n<p>So in this post, I want to tell you how I became a part of this community. And I hope this post will encourage someone to do the same.</p>\n\n\n\n<h2 id=\"h-how-it-started\">How it started</h2>\n\n\n\n<p>I vividly remember my first WordPress experience: I was confused, had many questions, and was desperately trying to understand how to do the most simple things.</p>\n\n\n\n<p>Back in those days, I was an intern in a small agency in Zaporizhzhya, my hometown. I had basic HTML/CSS skills, and I just started learning PHP development. My senior colleagues helped me take my first steps in web development. They gave me some simple tasks, and I was annoying them with questions.</p>\n\n\n\n<p>One day, the agencyâ€™s director came to me and told me that Iâ€™d be responsible for creating a WordPress website for his friend. It was a big surprise for me, and I was like: â€œ<em>Man, I barely know PHP; how would that go?</em>â€. But he just said, â€œDonâ€™t<em> worry, youâ€™ll figure everything out as you go</em>.â€</p>\n\n\n\n<p>Well, he was right. It took some time, though.</p>\n\n\n\n<h2 id=\"h-my-first-wordpress-experience\">My first WordPress experience</h2>\n\n\n\n<p>So thatâ€™s how I started experimenting with WordPress. My senior colleagues were busy with their own projects, so I had to find answers on my own.</p>\n\n\n\n<p>The first WordPress theme I built was awful. It was a wild Frankenstein composed of my own â€œcreativeâ€ solutions and code snippets I googled somewhere. It worked like crap; it had a lot of bugs, but as people say, â€œ<em>the first pancake is always a bit tricky</em>.â€</p>\n\n\n\n<p>No matter how bad it was, it was my first experience, and I learned a lot about the basic concepts of WordPress. Thatâ€™s why I believe that learning by doing is the best way to learn something new.</p>\n\n\n\n<p><strong>Moral: </strong>donâ€™t be afraid of doing something awful when you create something for the first time. Itâ€™s okay; weâ€™ve all been through this.</p>\n\n\n\n<h2 id=\"h-why-i-think-that-wordpress-is-one-of-the-best-options-for-beginners\">Why I think that WordPress is one of the best options for beginners</h2>\n\n\n\n<p>Itâ€™s nice to have a mentor when you learn something new. Luckily, you donâ€™t need a person sitting next to you anymore. All of us have got the best mentor possible: the Internet. You donâ€™t know how to do something? Try to google it.</p>\n\n\n\n<p>No wonder some say that one of the most required skills of every developer is to know how to search for information. And from this point of view, WordPress is one of the best options for beginners.</p>\n\n\n\n<p>Why?</p>\n\n\n\n<p>Because when you stumble upon a problem, thereâ€™s a high probability that someone already asked the same question on StackOverflow. Or on WordPress Stack Exchange. Or on one of the dozens of other forums.</p>\n\n\n\n<p>If youâ€™re lucky enough, someone already wrote a post about your problem with a great explanation of how to solve it with examples and code snippets.</p>\n\n\n\n<p>And thatâ€™s the most wonderful thing about the WordPress community: we are not selfish. WordPress is an open-source project, so there are a lot of free code and snippets anyone can use.</p>\n\n\n\n<p>At some point, I became very grateful to all of these people that wrote answers on StackOverflow, wrote blog posts, created free plugins, and other helpful stuff. Hence, I decided to help other people when Iâ€™d be able to.&nbsp;</p>\n\n\n\n<p>And today, Iâ€™m happy to be a part of this community as well.</p>\n\n\n\n<h2 id=\"h-how-i-contribute-to-the-wordpress-community\">How I contribute to the WordPress community</h2>\n\n\n\n<p>In August 2021, I started blogging about WordPress on my website: <a href=\"https://kayart.dev/\">https://kayart.dev/</a></p>\n\n\n\n<p>I like to think that this way Iâ€™m repaying my karmic debts for all the content I have consumed. And it makes me happy to see that people really read my posts, and it helps them solve their WordPress problems.</p>\n\n\n\n<p>So today, when I face a problem and canâ€™t find the solution, I think: â€œWell, it might be a great idea for a new post!â€.</p>\n\n\n\n<p>Also, I visit StackOverflow, WordPress-related Facebook groups, and other communities where people ask their questions almost every day. Sometimes I find some nice ideas for new content there; sometimes, I help people figure their problems out.</p>\n\n\n\n<h2 id=\"h-every-community-is-a-two-way-street\">Every community is a two-way street</h2>\n\n\n\n<p>I encourage everyone to become a part of the WordPress community. There are a lot of opportunities for everyone.&nbsp;</p>\n\n\n\n<p>You can help with the translation of your favorite plugins or themes. You can create your own plugin or become a contributor to an already existing open-source plugin. You can write tutorials. You can write reviews helping other people to choose the best option for them. You can help people on support forums.</p>\n\n\n\n<p>Every contribution, big or small, makes WordPress better. Isnâ€™t it great to understand that youâ€™re a part of it?</p>\n\n\n\n<p>Anyways, thank you for reading my story. If I inspired you to start contributing to our community, please, write me a DM on Twitter or email me about this.&nbsp;</p>\n\n\n\n<p>Good luck!</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p></p>\n\n\n\n<h1 id=\"ukranian\">Ð©Ð°ÑÑ‚Ñ Ð±ÑƒÑ‚Ð¸ Ñ‡Ð°ÑÑ‚Ð¸Ð½Ð¾ÑŽ ÑÐ¿Ñ–Ð»ÑŒÐ½Ð¾Ñ‚Ð¸</h1>\n\n\n\n<p>ÐŸÑ€Ð¸Ð²Ñ–Ñ‚! ÐœÐµÐ½Ðµ Ð·Ð²Ð°Ñ‚Ð¸ ÐÑ€Ñ‚ÐµÐ¼Ñ–Ð¹, Ñ Ð· Ð£ÐºÑ€Ð°Ñ—Ð½Ð¸. Ð¯ Ð¿Ñ€Ð°Ñ†ÑŽÑŽ Ð· WordPress Ð· 2018 Ñ€Ð¾ÐºÑƒ. Ð¯ ÑÐ¿ÐµÑ†Ñ–Ð°Ð»Ñ–Ð·ÑƒÑŽÑÑŒ Ð½Ð° backend-Ñ€Ð¾Ð·Ñ€Ð¾Ð±Ñ†Ñ– Ð´Ð»Ñ WordPress: ÑÑ‚Ð²Ð¾Ñ€ÑŽÑŽ Ñ‚Ð° Ð¿Ñ–Ð´Ñ‚Ñ€Ð¸Ð¼ÑƒÑŽ Ð¿Ð»Ð°Ð³Ñ–Ð½Ð¸ Ð´Ð»Ñ WordPress, ÑÑ‚Ð¾Ñ€Ð¾Ð½Ð½Ñ– Ñ–Ð½Ñ‚ÐµÐ³Ñ€Ð°Ñ†Ñ–Ñ—, Ñ‚Ð° Ñ–Ð½ÑˆÑ– Ð¿Ñ€Ð¸ÐºÐ¾Ð»ÑŒÐ½Ñ– Ð´Ð¾Ð´Ð°Ñ‚ÐºÐ¾Ð²Ñ– Ñ„Ñ–Ñ‡Ñ–.</p>\n\n\n\n<p>Ð¯ÐºÑ‰Ð¾ Ð²Ð¸ Ð± ÑÐ¿Ð¸Ñ‚Ð°Ð»Ð¸ Ð¼ÐµÐ½Ðµ, Ñ‡Ð¾Ð¼Ñƒ Ñ Ð»ÑŽÐ±Ð»ÑŽ WordPress Ñ‚Ð° Ñ‡Ð¾Ð¼Ñƒ Ð²Ð¸Ñ€Ñ–ÑˆÐ¸Ð² Ð¿Ñ€Ð°Ñ†ÑŽÐ²Ð°Ñ‚Ð¸ ÑÐ°Ð¼Ðµ Ð· Ð½Ð¸Ð¼, Ð¼Ð¾Ñ Ð²Ñ–Ð´Ð¿Ð¾Ð²Ñ–Ð´ÑŒ &#8211; Ñ†Ðµ <strong>ÑÐ¿Ñ–Ð»ÑŒÐ½Ð¾Ñ‚Ð°</strong>. Ð†ÑÐ½ÑƒÑ” Ð±ÐµÐ·Ð»Ñ–Ñ‡ CMS Ð½Ð°Ð¿Ð¸ÑÐ°Ð½Ð¸Ñ… Ð½Ð° PHP Ñ‚Ð° Ñ–Ð½ÑˆÐ¸Ñ… ÑÐ·Ð¸ÐºÐ°Ñ…. ÐÐ»Ðµ Ñ Ð½Ðµ Ð·Ð½Ð°ÑŽ Ð¶Ð¾Ð´Ð½Ð¾Ñ— CMS Ð· Ñ‚Ð°ÐºÐ¾ÑŽ Ð¶ Ð°ÐºÑ‚Ð¸Ð²Ð½Ð¾ÑŽ, Ñ‡ÑƒÑ‚ÐºÐ¾ÑŽ Ñ‚Ð° ÑÐ¿Ð¾Ð²Ð½ÐµÐ½Ð¾ÑŽ ÐµÐ½Ñ‚ÑƒÐ·Ñ–Ð°Ð·Ð¼Ñƒ ÑÐ¿Ñ–Ð»ÑŒÐ½Ð¾Ñ‚Ð¾ÑŽ.</p>\n\n\n\n<p>Ð¢Ð¾Ð¼Ñƒ Ð² Ñ†ÑŒÐ¾Ð¼Ñƒ Ð¿Ð¾ÑÑ‚Ñ– Ñ Ñ…Ð¾Ñ‡Ñƒ Ñ€Ð¾Ð·Ð¿Ð¾Ð²Ñ–ÑÑ‚Ð¸, ÑÐº Ñ ÑÑ‚Ð°Ð² Ñ‡Ð°ÑÑ‚Ð¸Ð½Ð¾ÑŽ Ñ†Ñ–Ñ”Ñ— ÑÐ¿Ñ–Ð»ÑŒÐ½Ð¾Ñ‚Ð¸. Ð† Ñ ÑÐ¿Ð¾Ð´Ñ–Ð²Ð°ÑŽÑÑŒ, Ñ‰Ð¾ Ñ†ÐµÐ¹ Ð¿Ð¾ÑÑ‚ Ð½Ð°Ð´Ð¸Ñ…Ð½Ðµ ÐºÐ¾Ð³Ð¾ÑÑŒ Ð·Ñ€Ð¾Ð±Ð¸Ñ‚Ð¸ Ñ‚Ðµ Ð¶ ÑÐ°Ð¼Ðµ.</p>\n\n\n\n<h2>Ð¯Ðº Ð²ÑÐµ Ð¿Ð¾Ñ‡Ð°Ð»Ð¾ÑÑ</h2>\n\n\n\n<p>Ð¯ Ð´Ð¾Ð±Ñ€Ðµ Ð¿Ð°Ð¼&#8217;ÑÑ‚Ð°ÑŽ ÑÐ²Ñ–Ð¹ Ð¿ÐµÑ€ÑˆÐ¸Ð¹ Ð´Ð¾ÑÐ²Ñ–Ð´ Ñ€Ð¾Ð±Ð¾Ñ‚Ð¸ Ð· WordPress: Ñ Ð±ÑƒÐ² Ñ€Ð¾Ð·Ð³ÑƒÐ±Ð»ÐµÐ½Ð¸Ð¹, Ð² Ð¼ÐµÐ½Ðµ Ð±ÑƒÐ»Ð° ÐºÑƒÐ¿Ð° Ð¿Ð¸Ñ‚Ð°Ð½ÑŒ, Ñ– Ñ Ð²Ñ–Ð´Ñ‡Ð°Ð¹Ð´ÑƒÑˆÐ½Ð¾ Ð½Ð°Ð¼Ð°Ð³Ð°Ð²ÑÑ Ð·Ñ€Ð¾Ð·ÑƒÐ¼Ñ–Ñ‚Ð¸, ÑÐº Ñ€Ð¾Ð±Ð¸Ñ‚Ð¸ Ð½Ð°Ð¹Ð¿Ñ€Ð¾ÑÑ‚Ñ–ÑˆÑ– Ñ€ÐµÑ‡Ñ–.</p>\n\n\n\n<p>Ð’ Ñ‚Ñ– Ð´Ð½Ñ– Ñ Ð±ÑƒÐ² ÑÑ‚Ð°Ð¶ÐµÑ€Ð¾Ð¼ Ð² Ð¼Ð°Ð»ÐµÐ½ÑŒÐºÐ¾Ð¼Ñƒ Ð°Ð³ÐµÐ½Ñ‚ÑÑ‚Ð²Ñ– Ð² Ð—Ð°Ð¿Ð¾Ñ€Ñ–Ð¶Ð¶Ñ–, Ð¼Ð¾Ñ”Ð¼Ñƒ Ñ€Ñ–Ð´Ð½Ð¾Ð¼Ñƒ Ð¼Ñ–ÑÑ‚Ñ–. Ð’ Ð¼ÐµÐ½Ðµ Ð±ÑƒÐ»Ð¸ Ð±Ð°Ð·Ð¾Ð²Ñ– Ð½Ð°Ð²Ð¸Ñ‡ÐºÐ¸ HTML/CSS Ñ– Ñ Ñ‚Ñ–Ð»ÑŒÐºÐ¸-Ð½Ð¾ Ð¿Ð¾Ñ‡Ð°Ð² Ð²Ñ‡Ð¸Ñ‚Ð¸ÑÑ&nbsp; PHP-Ñ€Ð¾Ð·Ñ€Ð¾Ð±Ñ†Ñ–. ÐœÐ¾Ñ— ÑÑ‚Ð°Ñ€ÑˆÑ– ÐºÐ¾Ð»ÐµÐ³Ð¸ Ð´Ð¾Ð¿Ð¾Ð¼Ð°Ð³Ð°Ð»Ð¸ Ð¼ÐµÐ½Ñ– Ñ€Ð¾Ð±Ð¸Ñ‚Ð¸ Ð¿ÐµÑ€ÑˆÑ– ÐºÑ€Ð¾ÐºÐ¸ Ð² Ð²ÐµÐ±-Ñ€Ð¾Ð·Ñ€Ð¾Ð±Ñ†Ñ–. Ð’Ð¾Ð½Ð¸ Ð´Ð°Ð²Ð°Ð»Ð¸ Ð¼ÐµÐ½Ñ– Ð¿Ñ€Ð¾ÑÑ‚ÐµÐ½ÑŒÐºÑ– Ð·Ð°Ð´Ð°Ñ‡ÐºÐ¸, Ð° Ñ Ð½Ð°Ð´Ð¾ÐºÑƒÑ‡ÑƒÐ²Ð°Ð² Ñ—Ð¼ ÑÐ²Ð¾Ñ—Ð¼Ð¸ Ð¿Ð¸Ñ‚Ð°Ð½Ð½ÑÐ¼Ð¸.</p>\n\n\n\n<p>ÐžÐ´Ð½Ð¾Ð³Ð¾ Ð´Ð½Ñ Ð¿Ñ€Ð¸Ð¹ÑˆÐ¾Ð² Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€ Ñ– ÑÐºÐ°Ð·Ð°Ð² Ð¼ÐµÐ½Ñ–, Ñ‰Ð¾ Ñ Ð±ÑƒÐ´Ñƒ Ð²Ñ–Ð´Ð¿Ð¾Ð²Ñ–Ð´Ð°Ñ‚Ð¸ Ð·Ð° ÑÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ ÑÐ°Ð¹Ñ‚Ñƒ Ð½Ð° WordPress Ð´Ð»Ñ Ð¹Ð¾Ð³Ð¾ Ñ‚Ð¾Ð²Ð°Ñ€Ð¸ÑˆÐ°. Ð¯ Ð±ÑƒÐ² Ð·Ð´Ð¸Ð²Ð¾Ð²Ð°Ð½Ð¸Ð¹ Ñ– Ð¼Ñ–Ð³ Ð»Ð¸ÑˆÐµ ÑÐºÐ°Ð·Ð°Ñ‚Ð¸ Ñ‰Ð¾ÑÑŒ Ð½Ð° ÐºÑˆÑ‚Ð°Ð»Ñ‚: â€œ<em>Ð§ÑƒÐ²Ð°Ñ‡Ðµ, Ñ Ð»ÐµÐ´ÑŒ Ð·Ð½Ð°ÑŽ PHP; ÑÐº Ñ‚Ð¸ ÑÐ¾Ð±Ñ– Ñ†Ðµ ÑƒÑÐ²Ð»ÑÑ”Ñˆ?</em>â€. ÐÐ° Ñ‰Ð¾ Ð²Ñ–Ð½ Ð²Ñ–Ð´Ð¿Ð¾Ð²Ñ–Ð²: â€œ<em>ÐÐµ Ð¿Ð°Ñ€ÑŒÑÑ, Ñ€Ð¾Ð·Ð±ÐµÑ€ÐµÑˆÑÑ Ð¿Ð¾ Ñ…Ð¾Ð´Ñƒ ÑÐ¿Ñ€Ð°Ð²Ð¸</em>.â€</p>\n\n\n\n<p>ÐÑƒ, Ð²Ñ–Ð½ Ð±ÑƒÐ² Ð¿Ñ€Ð°Ð²Ð¸Ð¹. ÐÐ»Ðµ Ð´Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ Ð±ÑƒÐ² Ð¿Ð¾Ñ‚Ñ€Ñ–Ð±ÐµÐ½ Ñ‡Ð°Ñ.</p>\n\n\n\n<h2>ÐœÑ–Ð¹ Ð¿ÐµÑ€ÑˆÐ¸Ð¹ Ð´Ð¾ÑÐ²Ñ–Ð´ Ñ€Ð¾Ð±Ð¾Ñ‚Ð¸ Ð· WordPress</h2>\n\n\n\n<p>Ð¢Ð¾ Ð¶ Ñ‚Ð°Ðº Ñ Ð¿Ð¾Ñ‡Ð°Ð² ÑÐ²Ð¾Ñ— ÐµÐºÑÐ¿ÐµÑ€Ð¸Ð¼ÐµÐ½Ñ‚Ð¸ Ð· WordPress. ÐœÐ¾Ñ— ÑÑ‚Ð°Ñ€ÑˆÑ– ÐºÐ¾Ð»ÐµÐ³Ð¸ Ð±ÑƒÐ»Ð¸ Ð·Ð°Ð¹Ð½ÑÑ‚Ñ– ÑÐ²Ð¾Ñ—Ð¼Ð¸ Ð²Ð»Ð°ÑÐ½Ð¸Ð¼Ð¸ Ð¿Ñ€Ð¾ÐµÐºÑ‚Ð°Ð¼Ð¸, Ñ‚Ð¾Ð¼Ñƒ Ð¼ÐµÐ½Ñ– Ð´Ð¾Ð²Ð¾Ð´Ð¸Ð»Ð¾ÑÑŒ ÑˆÑƒÐºÐ°Ñ‚Ð¸ Ð²Ñ–Ð´Ð¿Ð¾Ð²Ñ–Ð´Ñ– ÑÐ°Ð¼Ð¾ÑÑ‚Ñ–Ð¹Ð½Ð¾.</p>\n\n\n\n<p>ÐŸÐµÑ€ÑˆÐ° Ñ‚ÐµÐ¼Ð° Ð´Ð»Ñ WordPress, ÑÐºÑƒ Ñ ÑÑ‚Ð²Ð¾Ñ€Ð¸Ð², Ð±ÑƒÐ»Ð° Ð¿Ñ€Ð¾ÑÑ‚Ð¾ Ð¶Ð°Ñ…Ð»Ð¸Ð²Ð°. Ð¦Ðµ Ð±ÑƒÐ² ÑÐºÐ¸Ð¹ÑÑŒ Ð´Ð¸ÐºÐ¸Ð¹ Ð¤Ñ€Ð°Ð½ÐºÐµÐ½ÑˆÑ‚ÐµÐ¹Ð½, ÑÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð¸Ð¹ Ð· Ð¼Ð¾Ñ—Ñ… Ð²Ð»Ð°ÑÐ½Ð¸Ñ… â€œÐºÑ€ÐµÐ°Ñ‚Ð¸Ð²Ð½Ð¸Ñ…â€ Ñ€Ñ–ÑˆÐµÐ½ÑŒ Ñ‚Ð° ÐºÐ¾Ð´Ñƒ, ÑÐºÐ¸Ð¹ Ð¼ÐµÐ½Ñ– Ð²Ð´Ð°Ð»Ð¾ÑÑŒ Ð½Ð°Ð³ÑƒÐ³Ð»Ð¸Ñ‚Ð¸. ÐŸÑ€Ð°Ñ†ÑŽÐ²Ð°Ð»Ð¾ Ð²ÑÐµ Ð½Ðµ Ð¼ÐµÐ½Ñˆ Ð¶Ð°Ñ…Ð»Ð¸Ð²Ð¾; Ð±ÑƒÐ»Ð° Ñ†Ñ–Ð»Ð° Ñ‚ÑƒÑ‡Ð° Ð±Ð°Ð³Ñ–Ð², Ð°Ð»Ðµ ÑÐº Ñ‚Ð¾ ÐºÐ°Ð¶ÑƒÑ‚ÑŒ: â€œ<em>Ð¿ÐµÑ€ÑˆÐ¸Ð¹ Ð¼Ð»Ð¸Ð½ÐµÑ†ÑŒ Ð½Ð°Ð½Ñ–Ð²ÐµÑ†ÑŒ</em>â€.</p>\n\n\n\n<p>ÐÐµÐ·Ð²Ð°Ð¶Ð°ÑŽÑ‡Ð¸ Ð½Ð° Ñ‚Ðµ, ÑÐºÐ¾ÑŽ Ð¿Ð¾Ð³Ð°Ð½Ð¾ÑŽ Ð²Ð¾Ð½Ð° Ð±ÑƒÐ»Ð°, Ñ†Ðµ Ð±ÑƒÐ² Ð¼Ñ–Ð¹ Ð¿ÐµÑ€ÑˆÐ¸Ð¹ Ð´Ð¾ÑÐ²Ñ–Ð´, Ð·Ð°Ð²Ð´ÑÐºÐ¸ ÑÐºÐ¾Ð¼Ñƒ Ñ Ð±Ð°Ð³Ð°Ñ‚Ð¾ Ð´Ñ–Ð·Ð½Ð°Ð²ÑÑ Ð¿Ñ€Ð¾ Ð±Ð°Ð·Ð¾Ð²Ñ– ÐºÐ¾Ð½Ñ†ÐµÐ¿Ñ†Ñ–Ñ— WordPress. ÐžÑÑŒ Ñ‡Ð¾Ð¼Ñƒ Ñ Ð²Ñ–Ñ€ÑŽ, Ñ‰Ð¾ ÐºÑ€Ð°Ñ‰Ð¸Ð¹ ÑÐ¿Ð¾ÑÑ–Ð± Ð²Ð¸Ð²Ñ‡Ð¸Ñ‚Ð¸ Ñ‰Ð¾ÑÑŒ Ð½Ð¾Ð²Ðµ â€“ Ñ†Ðµ Ð½Ð°Ð²Ñ‡Ð°Ñ‚Ð¸ÑÑ Ð½Ð° Ð¿Ñ€Ð°ÐºÑ‚Ð¸Ñ†Ñ–.</p>\n\n\n\n<p><strong>ÐœÐ¾Ñ€Ð°Ð»ÑŒ: </strong>Ð½Ðµ Ð±Ñ–Ð¹Ñ‚ÐµÑÑ Ð·Ñ€Ð¾Ð±Ð¸Ñ‚Ð¸ Ñ‰Ð¾ÑÑŒ Ð¶Ð°Ñ…Ð»Ð¸Ð²Ð¾, ÐºÐ¾Ð»Ð¸ Ð²Ð¸ Ñ€Ð¾Ð±Ð¸Ñ‚Ðµ Ñ‰Ð¾ÑÑŒ Ð²Ð¿ÐµÑ€ÑˆÐµ. Ð¦Ðµ Ñ†Ñ–Ð»ÐºÐ¾Ð¼ Ð½Ð¾Ñ€Ð¼Ð°Ð»ÑŒÐ½Ð¾, Ð¼Ð¸ Ð²ÑÑ– Ñ‡ÐµÑ€ÐµÐ· Ñ†Ðµ Ð¿Ñ€Ð¾Ñ…Ð¾Ð´Ð¸Ð»Ð¸.</p>\n\n\n\n<h2>Ð§Ð¾Ð¼Ñƒ Ñ Ð²Ð²Ð°Ð¶Ð°ÑŽ, Ñ‰Ð¾ WordPress â€“ Ñ†Ðµ Ð¾Ð´Ð¸Ð½ Ð· Ð½Ð°Ð¹ÐºÑ€Ð°Ñ‰Ð¸Ñ… Ð²Ð°Ñ€Ñ–Ð°Ð½Ñ‚Ñ–Ð² Ð´Ð»Ñ Ð½Ð¾Ð²Ð°Ñ‡ÐºÑ–Ð²</h2>\n\n\n\n<p>ÐšÑ€ÑƒÑ‚Ð¾ Ð¼Ð°Ñ‚Ð¸ Ð¼ÐµÐ½Ñ‚Ð¾Ñ€Ð°, ÐºÐ¾Ð»Ð¸ Ñ‚Ð¸ Ð²Ñ‡Ð¸Ñˆ Ñ‰Ð¾ÑÑŒ Ð½Ð¾Ð²Ðµ. ÐÐ° Ñ‰Ð°ÑÑ‚Ñ, Ð²Ð°Ð¼ ÑÑŒÐ¾Ð³Ð¾Ð´Ð½Ñ– Ð½Ðµ Ð¿Ð¾Ñ‚Ñ€Ñ–Ð±Ð½Ð¾, Ñ‰Ð¾Ð± Ð¿Ð¾Ñ€ÑÐ´ Ð· Ð²Ð°Ð¼Ð¸ ÑÐ¸Ð´Ñ–Ð»Ð° ÑÐºÐ°ÑÑŒ Ð»ÑŽÐ´Ð¸Ð½Ð°. Ð’ ÐºÐ¾Ð¶Ð½Ð¾Ð³Ð¾ Ð· Ð½Ð°Ñ Ñ” Ð½Ð°Ð¹ÐºÑ€Ð°Ñ‰Ñ–Ð¹ Ð· Ð¼Ð¾Ð¶Ð»Ð¸Ð²Ð¸Ñ… Ð¼ÐµÐ½Ñ‚Ð¾Ñ€Ñ–Ð²: Ñ–Ð½Ñ‚ÐµÑ€Ð½ÐµÑ‚. ÐÐµ Ð·Ð½Ð°Ñ”Ñˆ, ÑÐº Ñ‰Ð¾ÑÑŒ Ð·Ñ€Ð¾Ð±Ð¸Ñ‚Ð¸? Ð¡Ð¿Ñ€Ð¾Ð±ÑƒÐ¹ Ð·Ð°Ð³ÑƒÐ³Ð»Ð¸Ñ‚Ð¸.</p>\n\n\n\n<p>ÐÐµ Ð´Ð¸Ð²Ð½Ð¾, Ñ‰Ð¾ Ð¾Ð´Ð½Ð° Ð· Ð½Ð°Ð¹Ð¿Ð¾Ñ‚Ñ€Ñ–Ð±Ð½Ñ–ÑˆÐ¸Ñ… Ð½Ð°Ð²Ð¸Ñ‡Ð¾Ðº Ð´Ð»Ñ ÐºÐ¾Ð¶Ð½Ð¾Ð³Ð¾ Ñ€Ð¾Ð·Ñ€Ð¾Ð±Ð½Ð¸ÐºÐ° â€“ Ñ†Ðµ Ð²Ð¼Ñ–Ð½Ð½Ñ ÑˆÑƒÐºÐ°Ñ‚Ð¸ Ñ–Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–ÑŽ. Ð— Ñ†Ñ–Ñ”Ñ— Ñ‚Ð¾Ñ‡ÐºÐ¸ Ð·Ð¾Ñ€Ñƒ, WordPress â€“ Ñ†Ðµ Ð¾Ð´Ð¸Ð½ Ð· Ð½Ð°Ð¹ÐºÑ€Ð°Ñ‰Ð¸Ñ… Ð²Ð°Ñ€Ñ–Ð°Ð½Ñ‚Ñ–Ð² Ð´Ð»Ñ Ð½Ð¾Ð²Ð°Ñ‡ÐºÐ°.</p>\n\n\n\n<p>Ð§Ð¾Ð¼Ñƒ?</p>\n\n\n\n<p>Ð¢Ð¾Ð¼Ñƒ Ñ‰Ð¾, ÐºÐ¾Ð»Ð¸ Ð²Ð¸ ÑÑ‚Ð¸ÐºÐ°Ñ”Ñ‚ÐµÑÑ Ð· Ð¿Ñ€Ð¾Ð±Ð»ÐµÐ¼Ð¾ÑŽ, Ñ–ÑÐ½ÑƒÑ” Ð²ÐµÐ»Ð¸ÐºÐ° Ð¹Ð¼Ð¾Ð²Ñ–Ñ€Ð½Ñ–ÑÑ‚ÑŒ, Ñ‰Ð¾ Ñ…Ñ‚Ð¾ÑÑŒ Ð²Ð¶Ðµ ÑÑ‚Ð°Ð²Ð¸Ð² Ñ‚Ð°ÐºÐµ Ð¶ ÑÐ°Ð¼Ðµ Ð¿Ð¸Ñ‚Ð°Ð½Ð½Ñ Ð½Ð° StackOverflow. ÐÐ±Ð¾ Ð½Ð° WordPress Stack Exchange. ÐÐ±Ð¾ Ð½Ð° Ñ–Ð½ÑˆÐ¾Ð¼Ñƒ Ð· Ð´ÐµÑÑÑ‚ÐºÑ–Ð² Ñ„Ð¾Ñ€ÑƒÐ¼Ñ–Ð².</p>\n\n\n\n<p>Ð¯ÐºÑ‰Ð¾ Ð¶ Ð²Ð°Ð¼ Ð´ÑƒÐ¶Ðµ Ð¿Ð¾Ñ‰Ð°ÑÑ‚Ð¸Ñ‚ÑŒ, Ñ…Ñ‚Ð¾ÑÑŒ Ð²Ð¶Ðµ Ð½Ð°Ð¿Ð¸ÑÐ°Ð² Ñ†Ñ–Ð»Ð¸Ð¹ Ð¿Ð¾ÑÑ‚ Ð¿Ñ€Ð¾ Ð²Ð°ÑˆÑƒ Ð¿Ñ€Ð¾Ð±Ð»ÐµÐ¼Ñƒ Ð· Ñ‡ÑƒÐ´Ð¾Ð²Ð¸Ð¼ Ð¿Ð¾ÑÑÐ½ÐµÐ½Ð½ÑÐ¼, ÑÐº Ñ—Ñ— Ð²Ð¸Ñ€Ñ–ÑˆÐ¸Ñ‚Ð¸ Ð· Ð¿Ñ€Ð¸ÐºÐ»Ð°Ð´Ð°Ð¼Ð¸ Ñ‚Ð° Ð³Ð¾Ñ‚Ð¾Ð²Ð¸Ð¼ ÐºÐ¾Ð´Ð¾Ð¼.</p>\n\n\n\n<p>Ð† Ñ†Ðµ Ð½Ð°Ð¹Ð´Ð¸Ð²Ð¾Ð²Ð¸Ð¶Ð½Ñ–ÑˆÐ¸Ð¹ Ñ„Ð°ÐºÑ‚ Ð¿Ñ€Ð¾ Ð¿Ñ€Ð¾ ÑÐ¿Ñ–Ð»ÑŒÐ½Ð¾Ñ‚Ñƒ WordPress: Ð¼Ð¸ Ð½Ðµ ÐµÐ³Ð¾Ñ—ÑÑ‚Ð¸. WordPress â€“ Ñ†Ðµ open-source Ð¿Ñ€Ð¾ÐµÐºÑ‚, Ñ‚Ð¾Ð¼Ñƒ Ñ‚ÑƒÑ‚ Ñ–ÑÐ½ÑƒÑ” Ð±Ð°Ð³Ð°Ñ‚Ð¾ Ð²Ð¶Ðµ Ð³Ð¾Ñ‚Ð¾Ð²Ð¾Ð³Ð¾ Ñ‚Ð° Ð±ÐµÐ·ÐºÐ¾ÑˆÑ‚Ð¾Ð²Ð½Ð¾Ð³Ð¾ ÐºÐ¾Ð´Ñƒ, ÑÐºÐ¸Ð¹ Ð¼Ð¾Ð¶Ðµ Ð²Ð¸ÐºÐ¾Ñ€Ð¸ÑÑ‚Ð¾Ð²ÑƒÐ²Ð°Ñ‚Ð¸ ÐºÐ¾Ð¶ÐµÐ½ Ð±Ð°Ð¶Ð°ÑŽÑ‡Ð¸Ð¹.</p>\n\n\n\n<p>Ð’ ÑÐºÐ¸Ð¹ÑÑŒ Ð¼Ð¾Ð¼ÐµÐ½Ñ‚ Ñ ÑÑ‚Ð°Ð² Ð½Ð°ÑÑ‚Ñ–Ð»ÑŒÐºÐ¸ Ð²Ð´ÑÑ‡Ð½Ð¸Ð¹ Ð²ÑÑ–Ð¼ Ñ‚Ð¸Ð¼ Ð»ÑŽÐ´ÑÐ¼, Ñ…Ñ‚Ð¾ Ð¿Ð¸ÑÐ°Ð² Ð²Ñ–Ð´Ð¿Ð¾Ð²Ñ–Ð´Ñ– Ð½Ð° StackOverflow, Ð²Ñ–Ð² Ð±Ð»Ð¾Ð³Ð¸, ÑÑ‚Ð²Ð¾Ñ€ÑŽÐ²Ð°Ð² Ð¿Ð»Ð°Ð³Ñ–Ð½Ð¸ Ñ‚Ð° Ñ€Ð¾Ð±Ð¸Ð² Ñ–Ð½ÑˆÑ– ÐºÐ¾Ñ€Ð¸ÑÐ½Ñ– Ñ€ÐµÑ‡Ñ–. Ð¢Ð¾Ð¼Ñƒ Ñ Ð²Ð¸Ñ€Ñ–ÑˆÐ¸Ð² Ñ‚Ð°ÐºÐ¾Ð¶ Ð´Ð¾Ð¿Ð¾Ð¼Ð°Ð³Ð°Ñ‚Ð¸ Ð»ÑŽÐ´ÑÐ¼, ÐºÐ¾Ð»Ð¸ Ð·Ð¼Ð¾Ð¶Ñƒ Ñ†Ðµ Ñ€Ð¾Ð±Ð¸Ñ‚Ð¸.</p>\n\n\n\n<p>Ð¡ÑŒÐ¾Ð³Ð¾Ð´Ð½Ñ– Ñ Ñ‰Ð°ÑÐ»Ð¸Ð²Ð¸Ð¹ Ñ‚Ð°ÐºÐ¾Ð¶ Ð±ÑƒÑ‡Ð¸ Ñ‡Ð°ÑÑ‚Ð¸Ð½Ð¾ÑŽ Ñ†Ñ–Ñ”Ñ— ÑÐ¿Ñ–Ð»ÑŒÐ½Ð¾Ñ‚Ð¸.</p>\n\n\n\n<h2>Ð¯Ðº Ñ Ð¿Ñ€Ð¸Ð¹Ð¼Ð°ÑŽ ÑƒÑ‡Ð°ÑÑ‚ÑŒ Ð² ÑÐ¿Ñ–Ð»ÑŒÐ½Ð¾Ñ‚Ñ– WordPress</h2>\n\n\n\n<p>Ð’ ÑÐµÑ€Ð¿Ð½Ñ– 2021 Ñ€Ð¾ÐºÑƒ Ñ Ð¿Ð¾Ñ‡Ð°Ð² Ð²ÐµÑÑ‚Ð¸ Ð±Ð»Ð¾Ð³ Ð¿Ñ€Ð¾ WordPress Ð½Ð° Ð¼Ð¾Ñ”Ð¼Ñƒ ÑÐ°Ð¹Ñ‚Ñ–: <a href=\"https://kayart.dev/\">https://kayart.dev/</a></p>\n\n\n\n<p>ÐœÐµÐ½Ñ– Ð¿Ð¾Ð´Ð¾Ð±Ð°Ñ”Ñ‚ÑŒÑÑ Ð´ÑƒÐ¼Ð°Ñ‚Ð¸, Ñ‰Ð¾ Ñ‚Ð°ÐºÐ¸Ð¼ Ñ‡Ð¸Ð½Ð¾Ð¼ Ñ Ð²Ñ–Ð´Ð´Ð°ÑŽ ÑÐ²Ñ–Ð¹ ÐºÐ°Ñ€Ð¼Ñ–Ñ‡Ð½Ð¸Ð¹ Ð±Ð¾Ñ€Ð³ Ð·Ð° Ð²ÐµÑÑŒ Ñ‚Ð¾Ð¹ ÐºÐ¾Ð½Ñ‚ÐµÐ½Ñ‚, ÑÐºÐ¸Ð¼ Ñ ÐºÐ¾Ñ€Ð¸ÑÑ‚ÑƒÐ²Ð°Ð²ÑÑ. Ð¯ Ñ‰Ð°ÑÐ»Ð¸Ð²Ð¸Ð¹ Ð±Ð°Ñ‡Ð¸Ñ‚Ð¸, Ñ‰Ð¾ Ð»ÑŽÐ´Ð¸ Ñ‡Ð¸Ñ‚Ð°ÑŽÑ‚ÑŒ Ð¼Ð¾Ñ— Ð¿Ð¾ÑÑ‚Ð¸ Ñ‚Ð° Ñ‰Ð¾ Ð²Ð¾Ð½Ð¸ Ð´Ð¾Ð¿Ð¾Ð¼Ð°Ð³Ð°ÑŽÑ‚ÑŒ Ñ—Ð¼ Ð²Ð¸Ñ€Ñ–ÑˆÑƒÐ²Ð°Ñ‚Ð¸ Ñ—Ñ… Ð¿Ñ€Ð¾Ð±Ð»ÐµÐ¼Ð¸, Ð¿Ð¾Ð²&#8217;ÑÐ·Ð°Ð½Ñ– Ð· WordPress.</p>\n\n\n\n<p>Ð¢Ð¾Ð¼Ñƒ ÑÑŒÐ¾Ð³Ð¾Ð´Ð½Ñ–, ÐºÐ¾Ð»Ð¸ Ñ ÑÑ‚Ð¸ÐºÐ°ÑŽÑÑŒ Ð· Ð¿Ñ€Ð¾Ð±Ð»ÐµÐ¼Ð¾Ð¹ Ñ‚Ð° Ð½Ðµ Ð¼Ð¾Ð¶Ñƒ Ð½Ð°Ð¹Ñ‚Ð¸ Ñ—Ñ— Ñ€Ñ–ÑˆÐµÐ½Ð½Ñ, Ñ Ð´ÑƒÐ¼Ð°ÑŽ: â€œÐ©Ð¾ Ð¶, Ñ†Ðµ Ð¼Ð¾Ð¶Ðµ Ð±ÑƒÑ‚Ð¸ Ñ‡ÑƒÐ´Ð¾Ð²Ð¾ÑŽ Ñ–Ð´ÐµÑ”ÑŽ Ð´Ð»Ñ Ð½Ð¾Ð²Ð¾Ð³Ð¾ Ð¿Ð¾ÑÑ‚Ð°!â€.</p>\n\n\n\n<p>Ð¢Ð°ÐºÐ¾Ð¶ Ñ Ñ‡Ð¸Ñ‚Ð°ÑŽ StackOverflow, Facebook-Ð³Ñ€ÑƒÐ¿Ð¸ Ð¿Ñ€Ð¾ WordPress Ñ‚Ð° Ñ–Ð½ÑˆÑ– ÑÐ¿Ñ–Ð»ÑŒÐ½Ð¾Ñ‚Ð¸, Ð´Ðµ Ð»ÑŽÐ´Ð¸ ÑÑ‚Ð°Ð²Ð»ÑÑ‚ÑŒ Ð¿Ð¸Ñ‚Ð°Ð½Ð½Ñ Ð¼Ð°Ð¹Ð¶Ðµ ÐºÐ¾Ð¶ÐµÐ½ÑŒ Ð´ÐµÐ½ÑŒ. Ð†Ð½Ð¾Ð´Ñ– Ñ Ð·Ð½Ð°Ñ…Ð¾Ð´Ð¶Ñƒ Ñ‚ÑƒÑ‚ ÐºÐ»Ð°ÑÐ½Ñ– Ñ–Ð´ÐµÑ— Ð´Ð»Ñ Ð½Ð¾Ð²Ð¾Ð³Ð¾ ÐºÐ¾Ð½Ñ‚ÐµÐ½Ñ‚Ñƒ; Ñ–Ð½Ð¾Ð´Ñ– Ð´Ð¾Ð¿Ð¾Ð¼Ð°Ð³Ð°ÑŽ Ð»ÑŽÐ´ÑÐ¼ Ð²Ð¸Ñ€Ñ–ÑˆÐ¸Ñ‚Ð¸ Ñ—Ñ…Ð½Ñ– Ð¿Ñ€Ð¾Ð±Ð»ÐµÐ¼Ð¸.</p>\n\n\n\n<h2>ÐšÐ¾Ð¶Ð½Ð° ÑÐ¿Ñ–Ð»ÑŒÐ½Ð¾Ñ‚Ð° Ð¼Ð°Ñ” Ð±ÑƒÑ‚Ð¸ Ð´Ð²Ð¾ÑÑ‚Ð¾Ñ€Ð¾Ð½Ð½ÑŒÐ¾ÑŽ Ð²ÑƒÐ»Ð¸Ñ†ÐµÑŽ</h2>\n\n\n\n<p>Ð¯ Ð·Ð°ÐºÐ»Ð¸ÐºÐ°ÑŽ Ð²Ð°Ñ ÑÑ‚Ð°Ð²Ð°Ñ‚Ð¸ Ñ‡Ð°ÑÑ‚Ð¸Ð½Ð¾ÑŽ WordPress-ÑÐ¿Ñ–Ð»ÑŒÐ½Ð¾Ñ‚Ð¸. Ð¢ÑƒÑ‚ ÐºÐ¾Ð¶ÐµÐ½ Ð·Ð¼Ð¾Ð¶Ðµ Ð·Ð°ÑÑ‚Ð¾ÑÑƒÐ²Ð°Ñ‚Ð¸ ÑÐ²Ð¾Ñ— Ð²Ð¼Ñ–Ð½Ð½Ñ.</p>\n\n\n\n<p>Ð’Ð¸ Ð¼Ð¾Ð¶ÐµÑ‚Ðµ Ð´Ð¾Ð¿Ð¾Ð¼Ð°Ð³Ð°Ñ‚Ð¸ Ð· Ð¿ÐµÑ€ÐµÐºÐ»Ð°Ð´Ð¾Ð¼ Ð²Ð°ÑˆÐ¸Ñ… ÑƒÐ»ÑŽÐ±Ð»ÐµÐ½Ð¸Ñ… Ð¿Ð»Ð°Ð³Ñ–Ð½Ñ–Ð² Ð°Ð±Ð¾ Ñ‚ÐµÐ¼. Ð’Ð¸ Ð¼Ð¾Ð¶ÐµÑ‚Ðµ ÑÑ‚Ð²Ð¾Ñ€ÑŽÐ²Ð°Ñ‚Ð¸ Ð²Ð»Ð°ÑÐ½Ñ– Ð¿Ð»Ð°Ð³Ñ–Ð½Ð¸ Ð°Ð±Ð¾ Ð´Ð¾Ð¿Ð¾Ð¼Ð¾Ð³Ñ‚Ð¸ Ð· Ñ€Ð¾Ð·Ñ€Ð¾Ð±ÐºÐ¾ÑŽ Ð²Ð¶Ðµ Ñ–ÑÐ½ÑƒÑŽÑ‡Ð¸Ñ… open-source Ð¿Ñ€Ð¾ÐµÐºÑ‚Ñ–Ð². Ð’Ð¸ Ð¼Ð¾Ð¶ÐµÑ‚Ðµ Ð¿Ð¸ÑÐ°Ñ‚Ð¸ Ñ‚ÑƒÑ‚Ð¾Ñ€Ñ–Ð°Ð»Ð¸. Ð’Ð¸ Ð¼Ð¾Ð¶ÐµÑ‚Ðµ Ð¿Ð¸ÑÐ°Ñ‚Ð¸ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–Ñ—, Ð´Ð¾Ð¿Ð¾Ð¼Ð°Ð³Ð°ÑŽÑ‡Ð¸ Ñ–Ð½ÑˆÐ¸Ð¼ Ð»ÑŽÐ´ÑÐ¼ Ð· Ð²Ð¸Ð±Ð¾Ñ€Ð¾Ð¼ Ð½Ð°Ð¹ÐºÑ€Ð°Ñ‰Ð¾Ð³Ð¾ Ð²Ð°Ñ€Ñ–Ð°Ð½Ñ‚Ñƒ. Ð’Ð¸ Ð¼Ð¾Ð¶ÐµÑ‚Ðµ Ð´Ð¾Ð¿Ð¾Ð¼Ð°Ð³Ð°Ñ‚Ð¸ Ð»ÑŽÐ´ÑÐ¼ Ð½Ð° Ñ„Ð¾Ñ€ÑƒÐ¼Ð°Ñ… Ð¿Ñ–Ð´Ñ‚Ñ€Ð¸Ð¼ÐºÐ¸.</p>\n\n\n\n<p>ÐšÐ¾Ð¶ÐµÐ½ Ð²Ð½ÐµÑÐ¾Ðº, Ð±ÑƒÐ´ÑŒ Ð²Ñ–Ð½ Ð²ÐµÐ»Ð¸ÐºÐ¸Ð¼ Ñ‡Ð¸ Ð¼Ð°Ð»Ð¸Ð¼, Ñ€Ð¾Ð±Ð¸Ñ‚ÑŒ WordPress ÐºÑ€Ð°Ñ‰Ðµ. Ð§Ð¸ Ð½Ðµ ÐºÑ€ÑƒÑ‚Ð¾ Ñ€Ð¾Ð·ÑƒÐ¼Ñ–Ñ‚Ð¸, Ñ‰Ð¾ Ñ‚Ð¸ Ñ” Ñ‡Ð°ÑÑ‚Ð¸Ð½Ð¾ÑŽ Ñ†ÑŒÐ¾Ð³Ð¾?</p>\n\n\n\n<p>Ð¢Ð°Ðº Ñ‡Ð¸ Ñ–Ð½Ð°ÐºÑˆÐµ, Ð´ÑÐºÑƒÑŽ Ð²Ð°Ð¼, Ñ‰Ð¾ Ð¿Ñ€Ð¾Ñ‡Ð¸Ñ‚Ð°Ð»Ð¸ Ð¼Ð¾ÑŽ Ñ–ÑÑ‚Ð¾Ñ€Ñ–ÑŽ. Ð¯ÐºÑ‰Ð¾ Ñ Ð½Ð°Ð´Ð¸Ñ…Ð½ÑƒÐ² Ð²Ð°Ñ Ð¿Ð¾Ñ‡Ð°Ñ‚Ð¸ Ñ€Ð¾Ð±Ð¸Ñ‚Ð¸ Ð²Ð½ÐµÑÐ¾Ðº Ð² ÑÐ¿Ñ–Ð»ÑŒÐ½Ð¾Ñ‚Ñƒ WordPress, Ð±ÑƒÐ´ÑŒ Ð»Ð°ÑÐºÐ°, Ð½Ð°Ð¿Ð¸ÑˆÑ–Ñ‚ÑŒ Ð¼ÐµÐ½Ñ– Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ñƒ Twitter Ð°Ð±Ð¾ Ð½Ð°Ð´Ñ–ÑˆÐ»Ñ–Ñ‚ÑŒ Ð¼ÐµÐ½Ñ– Ñ–Ð¼ÐµÐ¹Ð» Ð¿Ñ€Ð¾ Ñ†Ðµ.&nbsp;</p>\n\n\n\n<p>ÐÐµÑ…Ð°Ð¹ Ñ‰Ð°ÑÑ‚Ð¸Ñ‚ÑŒ!</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/the-pleasure-of-being-a-part-of-a-community/\">The pleasure of being a part of a community &#8211; Ð©Ð°ÑÑ‚Ñ Ð±ÑƒÑ‚Ð¸ Ñ‡Ð°ÑÑ‚Ð¸Ð½Ð¾ÑŽ ÑÐ¿Ñ–Ð»ÑŒÐ½Ð¾Ñ‚Ð¸</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 May 2022 05:00:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Artemy Kaydash\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WPTavern: The Image Filters Plugin Adds Over 20 Filters, Including Vintage, Pastel Pink, and More\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=134064\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://wptavern.com/the-image-filters-plugin-adds-over-20-filters-including-vintage-pastel-pink-and-more\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4121:\"<p>Kevin Batdorf released the <a href=\"https://wordpress.org/plugins/image-filters/\">Image Filters plugin</a> for WordPress yesterday. It is a block that allows users to select from curated list of filters and apply it to their images.</p>\n\n\n\n<p>Batdorf is the creator of one of my favorite &#8220;fun&#8221; plugins for WordPress: <a href=\"https://wordpress.org/plugins/wavy-divider/\">Wavy Divider</a>. It allows users to create wavy and jagged divider sections between blocks. After reviewing it in February, Batdorf said to <a href=\"https://wptavern.com/creating-content-dividers-with-the-wavy-divider-wordpress-plugin#comment-414743\">stay tuned for more fun blocks</a>. It seems that he is keeping good on his promise. A week ago, he released <a href=\"https://wordpress.org/plugins/animate-in-view/\">Animate In View</a>, a wrapper block that allows nested blocks to slide or fade into view on the page. The Image Filters plugin promises more of the same.  However, the latest two can be used for more than just fun. </p>\n\n\n\n<p>The Image Filters plugin offers a range of handy filters, and they are applicable for everything from photography portfolios to business sites. It is a tool that end-users can make of it what they will.</p>\n\n\n\n<p>The plugin is straightforward to use. End-users need to only insert the Image Filters block and select an image from the media library. Then, click the &#8220;View Filters&#8221; button in the editor toolbar, which will create an overlay with all 22 image filters applied to choose from:</p>\n\n\n\n<img />Image filters overlay.\n\n\n\n<p>From that point, users merely need to select a filter to insert it into the content canvas.</p>\n\n\n\n<p>Unlike other plugins that apply CSS filters to images, the plugin creates the filtered images on the server. It does not overwrite existing media files, so the originals are still available.</p>\n\n\n\n<img />Applying a filter on an image.\n\n\n\n<p>Batdorf listed several features in the plugin description that he may explore in future versions. The list included:</p>\n\n\n\n<ul><li>Watermarking</li><li>Resizing</li><li>Cropping</li><li>More filters</li><li>Image blending</li></ul>\n\n\n\n<p>Core WordPress already supports resizing and cropping. I am not sure how these might be expanded. However, image blending sounds like something I want to tinker with now.</p>\n\n\n\n<p>My one nit-pick with the plugin is that it is a block in and of itself. I will not pretend to understand the technical hurdles of the project since I was not involved in its build. However, I would have liked to have seen it as an extension of the core image-related blocks. Currently, it is a wrapper for Image, but from a UX perspective, it would have been easier to use without the extra layer.</p>\n\n\n\n<p>Technically, it is possible to use it like that. Because the Image Filters block creates images directly on the server, they are also available via the media library. Users could use the plugin&#8217;s block to build a filtered version of an image, delete the block, and use the image elsewhere.</p>\n\n\n\n<p>The WordPress block system has opened a world of possibilities around media. Whether that is unique gallery patterns, the built-in duotone filters, or third-party plugins that apply masks over images, there is a little something for everyone. Many of these things existed for the classic editor, but they were often wrapped up in shortcode soup, lacking a visual preview. Or, they did not play well with other plugins because there was no standard API for developers to build from.</p>\n\n\n\n<p>Some of the most exciting work that developers are doing is with media. Image Filters is yet another example.</p>\n\n\n\n<p>Even with my nit-pick over the implementation, I love the experimentation. Image Filters pushes boundaries, exploring new methods of manipulating media from within the block editor. The only thing I really want is to see even more of this from the WordPress developer community.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://wordpress.org/plugins/image-filters/\">Image Filters</a></blockquote>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 May 2022 00:47:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WordPress.org blog: WordPress 6.0 Release Candidate 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12799\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2022/05/wordpress-6-0-release-candidate-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7246:\"<p>The first release candidate (RC1) for WordPress 6.0 is now available!</p>\n\n\n\n<p>This is an important milestone on the 6.0 release cycle journey. â€œRelease Candidateâ€ means that this version of WordPress is ready for release! Before the official release date, time is set aside for the community to perform final reviews and help test. Since the WordPress ecosystem includes thousands of plugins and themes, it is important that everyone within the WordPress community check to see if anything was missed along the way. That means the project would love your help.</p>\n\n\n\n<p>WordPress 6.0 is planned for official release on May 24th, 2022, three weeks from today.&nbsp;</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, and test this version of WordPress on a production or mission-critical website. Instead, it is recommended that you RC1 on a test server and site.&nbsp;</p>\n\n\n\n<p>You can test WordPress 6.0 RC1 in three ways:</p>\n\n\n\n<p><strong>Option 1: </strong>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the â€œBleeding edgeâ€ channel and â€œBeta/RC Onlyâ€ stream).</p>\n\n\n\n<p><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.0-RC1.zip\">release candidate version here (zip)</a>.</p>\n\n\n\n<p><strong>Option 3:</strong> When using WP-CLI to upgrade from Beta 1, 2, 3, or 4, on a case-insensitive filesystem, please use the following command:<br /><code>wp core update --version=6.0-RC1</code></p>\n\n\n\n<p>Additional information on the full <a href=\"https://make.wordpress.org/core/6-0/\">6.0 release cycle is available here</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-0/\">6.0-related developer notes</a> in the coming weeks which will detail all upcoming changes.</p>\n\n\n\n<h1>Whatâ€™s in WordPress 6.0 RC1?</h1>\n\n\n\n<p>Since Beta 4, various items have been addressed, including (but not limited to):&nbsp;</p>\n\n\n\n<ul><li>Backport updates of Comment blocks tests (<a href=\"https://core.trac.wordpress.org/ticket/55643\">#55643</a>)</li><li>Backport a bugfix of Comment Template block pagination (<a href=\"https://core.trac.wordpress.org/ticket/55658\">#55658</a>)</li><li>Editor: Backport bug fixes for WordPress 6.0 from Gutenberg (<a href=\"https://core.trac.wordpress.org/ticket/55567\">#55567</a>)</li></ul>\n\n\n\n<p>WordPress 6.0 is the second major release for 2022, following 5.9 which became generally available in January. This release includes nearly 1,000 fixes and enhancements spanning most areas of the WordPress platform. Some key highlights within the content creation and site-building feature sets include:</p>\n\n\n\n<ul><li><strong>Style Switching:</strong> <a href=\"https://make.wordpress.org/core/2022/03/03/core-editor-improvement-choose-your-style/\">switch up the look and feel of your site</a>, all in one block theme. No need to change themes!</li><li><strong>More template options:</strong> use blocks to edit five more templates (author, date, categories, tag, and taxonomy).</li><li><strong>Multi-select: </strong>Easily select text across multiple blocks. Edit to your liking.</li><li><strong>Retain Styles: </strong>Keep your custom styles in place, whether transforming between blocks or creating new buttons.&nbsp;</li><li><strong>More patterns in more places:</strong> the Quick Inserter surfaces patterns that might work well for the condition youâ€™re in, baking in relevant patterns for template parts and pages youâ€™re working on.&nbsp;</li><li><strong>List View improvements: </strong>New keyboard shortcuts (shift + click) let you select multiple blocks to modify in bulk (reposition, delete, etc.), see your content at a glance with a collapsed by default view, and more.</li><li><strong>Refined design tools: </strong>Explore<strong> </strong>a new color panel, transparency options, more group block variations to create new layout options (Stack, Row), the ability to set your featured image in a Cover block, control the exact size of your featured image, gap support for the Gallery block, and more.</li><li><strong>New blocks: </strong>Various Post Comments, Read More, No Results in Query Loop, Post Author Biography, Avatar blocks.&nbsp;</li><li><strong>Block Locking: </strong>Choose to disable the option to remove a block, move it, or both, right in the editor.&nbsp;</li><li><strong>Export block themes: </strong>Explore the improved block theme export tool, as WordPress heads closer to codeless visual block theme building.</li></ul>\n\n\n\n<h1>Plugin and Theme Developers</h1>\n\n\n\n<p>All plugin and theme developers should test their respective extensions against WordPress 6.0 RC1 and update the â€œ<em>Tested up toâ€</em> version in their readme file to 6.0. If you find compatibility problems, please be sure to post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>, so these items can be investigated further prior to the final release date of May 24th.</p>\n\n\n\n<p>Review the <em><a href=\"https://make.wordpress.org/core/2022/05/03/wordpress-6-0-field-guide/\">WordPress 6.0 Field Guide</a></em>, for more details on whatâ€™s contained in this release.</p>\n\n\n\n<h1>Translate WordPress</h1>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a> This release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 6.0 release cycle.</p>\n\n\n\n<h1>How to Help Test WordPress</h1>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute to WordPress. If you are new to testing, check out this <a href=\"https://make.wordpress.org/test/2022/04/12/help-wanted-test-wordpress-6-0/\">detailed guide</a> that will walk you through how to get started.</p>\n\n\n\n<p>If you think you have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2>Haiku Fun for RC 1</h2>\n\n\n\n<p>Release candidate&nbsp;<br />Our journey nearly done<br />Get ready, WordPress</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Thank you to the following contributors for collaborating on this post: <a href=\"https://profiles.wordpress.org/dansoschin/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>dansoschin</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webcommsat</a>, and <a href=\"https://profiles.wordpress.org/annezazu/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>annezazu</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 May 2022 17:18:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"Do The Woo Community: Recommending the Right Solution for Your eCommerce Client, All the Time\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=71523\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://dothewoo.io/recommending-the-right-solution-for-your-ecommerce-client-all-the-time/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:429:\"<p>It just makes sense that sometimes you send a client somewhere else because it is not your specialty</p>\n<p>The post <a rel=\"nofollow\" href=\"https://dothewoo.io/recommending-the-right-solution-for-your-ecommerce-client-all-the-time/\">Recommending the Right Solution for Your eCommerce Client, All the Time</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 03 May 2022 11:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordPress.org blog: WordPress 6.0 Beta 4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12787\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2022/05/wordpress-6-0-beta-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5747:\"<p>WordPress 6.0 Beta 4 is now available for testing!</p>\n\n\n\n<p>Beta 4 was not part of the originally published development cycle. It is aimed at providing an opportunity for testing some specific issues that were resolved since Beta 3. WordPress will continue with the regularly scheduled release milestones on May 3rd, 2022, with the RC1 release.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, and test this version of WordPress on a production or mission-critical website. Instead, it is recommended that you test Beta 4 on a test server and site.&nbsp;</p>\n\n\n\n<p>You can test WordPress 6.0 Beta 4 in three ways:</p>\n\n\n\n<p><strong>Option 1: </strong>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the â€œBleeding edgeâ€ channel and â€œBeta/RC Onlyâ€ stream).</p>\n\n\n\n<p><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.0-beta4.zip\">beta version here (zip)</a>.</p>\n\n\n\n<p><strong>Option 3:</strong> Use WP-CLI to test: wp core update &#8211;version=6.0-beta4.<br /><em>Do not use this option if your filesystem is case-insensitive.</em></p>\n\n\n\n<p>The current target for the final 6.0 release is May 24, 2022, which is in less than a month!&nbsp;</p>\n\n\n\n<p>Additional information on the full <a href=\"https://make.wordpress.org/core/6-0/\">6.0 release cycle is available</a>.</p>\n\n\n\n<p>Check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-0/\">6.0-related developer notes</a> in the coming weeks which will detail all upcoming changes.</p>\n\n\n\n<h2>Explore Whatâ€™s in Beta 4</h2>\n\n\n\n<p>Since Beta 3, various items have been addressed, including (but not limited to):Â </p>\n\n\n\n<ul><li>Update post content placeholder (<a href=\"https://github.com/WordPress/gutenberg/pull/40177\">#40177</a>)</li><li>Comments block: Fix glitches found while backporting (<a href=\"https://github.com/WordPress/gutenberg/pull/40628\">#40628</a>)</li><li>Show add pattern label when patterns are being prioritised (<a href=\"https://github.com/WordPress/gutenberg/pull/40598\">#40598</a>)</li><li>Fix regression with featured images in latest posts (<a href=\"https://github.com/WordPress/gutenberg/pull/40662\">#40662</a>)</li><li>Navigation Link: Avoid unnecessary re-renders (<a href=\"https://github.com/WordPress/gutenberg/pull/40696\">#40696</a>)</li><li>Navigation: Improve selector performance (<a href=\"https://github.com/WordPress/gutenberg/pull/40700\">#40700</a>)</li><li>Comments Title: Count toggle working in &#8216;Singular&#8217; editing mode (<a href=\"https://github.com/WordPress/gutenberg/pull/40728\">#40728</a>)</li><li>[Writing Flow]: Try to fix multi-selection with shift+click (<a href=\"https://github.com/WordPress/gutenberg/pull/40687\">#40687</a>)</li><li>Fix alignment issue with comment author name (<a href=\"https://github.com/WordPress/gutenberg/pull/40610\">#40610</a>)</li><li>Comment Content: Show moderation message (<a href=\"https://github.com/WordPress/gutenberg/pull/40612\">#40612</a>)</li><li>Display paragraph breaks in comment contents block (<a href=\"https://github.com/WordPress/gutenberg/pull/40667\">#40667</a>)</li><li>Fix style comment awaiting moderation indentation (<a href=\"https://github.com/WordPress/gutenberg/pull/40681\">#40681</a>)</li><li>Fix: Page patterns don&#8217;t show when only one pattern is available (<a href=\"https://github.com/WordPress/gutenberg/pull/40707\">#40707</a>)</li><li>Update the placeholder for post excerpt (<a href=\"https://github.com/WordPress/gutenberg/pull/40178\">#40178</a>)</li><li>REST API: Fix regression in the Pattern Directory endpoint. (<a href=\"https://core.trac.wordpress.org/ticket/55617\">#55617</a>)</li><li>REST API: Fix the scheme for the Block Directory search endpoint. (<a href=\"https://core.trac.wordpress.org/ticket/53621\">#53621</a>)</li><li>Show comments previews in the Comment Query Loop. (<a href=\"https://core.trac.wordpress.org/ticket/55634\">#55634</a>)</li><li>Avoid DB error in comment meta queries. (<a href=\"https://core.trac.wordpress.org/ticket/55218\">#55218</a>)</li></ul>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute to WordPress. If you are new to testing, check out this <a href=\"https://make.wordpress.org/test/2022/04/12/help-wanted-test-wordpress-6-0/\">detailed guide</a> that will walk you through how to get started.</p>\n\n\n\n<p>If you think you have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. This is also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2>Another Haiku, Just for You</h2>\n\n\n\n<p>Beta four, surprise!<br />Iterating all day long<br />Time to share and test</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Thank you to the following contributors for collaborating on this post: <br /><a href=\"https://profiles.wordpress.org/dansoschin/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>dansoschin</a>, <a href=\"https://profiles.wordpress.org/annezazu/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>annezazu</a>, and <a href=\"https://profiles.wordpress.org/costdev/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>costdev</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 May 2022 16:46:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"WordCamp Central: Join the European WordPress Community in Porto, Portugal!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=3147696\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://central.wordcamp.org/news/2022/05/join-the-european-wordpress-community-in-porto-portugal/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1446:\"<p>In just 4 weeks Porto will finally host the long-awaited WordCamp Europe in the Super Bock Arena in Porto, Portugal after having been postponed for 2 years in a row.</p>\n\n\n\n<p>To celebrate the 10th anniversary of WCEU and the return of the in-person WordCamps this edition will be a special one that you shouldnâ€™t miss. This year speakers and workshop hosts will focus on â€˜<em>WordPressâ€™ </em>and<em> </em>â€˜<em>The future of WordPress</em>â€™, in WP Cafe you will be able to grab a coffee and discuss other WordPress topics at one of the tables. Of course, youâ€™re welcome to share your knowledge yourself and contribute to WordPress during the Contributor Day.</p>\n\n\n\n<p>If you plan to bring your partner and maybe your kids, weâ€™ve got you covered: <a href=\"https://europe.wordcamp.org/2022/childcare-registration/\">childcare will be available too</a>.</p>\n\n\n\n<p>And while youâ€™re planning your visit to WCEU2022, extend your stay and visit this great city. We have partnered with <a href=\"https://europe.wordcamp.org/2022/wceu-partner-tap-airlines/\">TAP Airlines</a> and some <a href=\"https://europe.wordcamp.org/2022/location/staying-in-porto/\">hotels</a> to get a nice reduction on your expenses.</p>\n\n\n\n<p>Convinced? Grab your <a href=\"https://europe.wordcamp.org/2022/tickets/\">tickets</a> while they are still available!</p>\n\n\n\n<p>Location: Super Bock Arena in Porto<br />Date: 2- 4 June 2022</p>\n\n\n\n<p>See you in Porto!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 May 2022 14:02:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Timi Wahalahti\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WordPress.org blog: WP Briefing: Episode 30: A Sneak Peek at WordPress 6.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=12742\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wordpress.org/news/2022/05/episode-30-a-sneak-peek-at-wordpress-6-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:33181:\"<p>In the thirtieth episode of the WordPress Briefing, Executive Director Josepha Haden Chomphosy and special guest Channing Ritter give listeners a sneak peek into the WordPress 6.0 release ahead of the Release Candidate 1 (RC1). </p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 id=\"credits\">Credits</h2>\n\n\n\n<ul><li>Special Guest: <a href=\"https://profiles.wordpress.org/critterverse/\">Channing Ritter</a></li><li>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a></li><li>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a></li><li>Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a> </li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/themes/twentytwentytwo/\">Twenty Twenty-Two Theme</a></li><li><a href=\"https://make.wordpress.org/core/2022/01/08/locking-blocks-in-wordpress-5-9/\">Block Locking</a></li><li><a href=\"https://wordpress.tv/2017/12/10/josepha-haden-beginners-guide-to-contributions/\">Beginner&#8217;s Guide to Contributing</a>, Josepha Haden Chomphosy</li><li><a rel=\"noreferrer noopener\" href=\"https://wordsesh.com/\" target=\"_blank\">WordSesh</a></li><li><a rel=\"noreferrer noopener\" href=\"https://learn.wordpress.org/social-learning/\" target=\"_blank\">Social Learning Spaces</a></li><li><a rel=\"noreferrer noopener\" href=\"https://europe.wordcamp.org/2022/contributor-day/\" target=\"_blank\">WordCamp Europe Contributor Day</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-12742\"></span>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:00:00]&nbsp;</p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:00:40]</p>\n\n\n\n<p>Tomorrow&#8217;s a big day. It marks the beginning of what is called the RC period, or release candidate period, for the current major release of the WordPress CMS. If you&#8217;re not super familiar with the way release cycles work, this is the point in the process where the code should pretty much be done changing.&nbsp;</p>\n\n\n\n<p>That way you can call in your designers, developers, and anyone else who builds things for others using your software. And they can either start testing their products on it, or they can figure out what new things they need to be able to teach their clients, whichever is most relevant to them. That is generally true for WordPress as well, but in true open source fashion, there is a caveat built in that helps us to get in last-minute, vital changes from contributors.</p>\n\n\n\n<p>We have a two-person sign-off rule that&#8217;s been around for about as long as I can remember, but lets things be added late in the release cycle, as long as there are two sign-offs from qualified contributors. Most of the time, those qualified contributors are lead developers of the project, but not always. We have a good group of people who are around helping us make sure that this is doable and the best thing that we can offer to all of our users.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:01:50]</p>\n\n\n\n<p>And so, yeah, two-person sign-off, that is the little bit of release process trivia that you never knew you needed. And since we&#8217;re looking at a release trivia, kind of hidden bits of how software is made, I actually have a guest with me today, Channing Ritter. So Channing is a product and visual designer based in Brooklyn, New York.</p>\n\n\n\n<p>She&#8217;s a design director at Automattic and has been working on the WordPress project as a full-time sponsored contributor since January, 2021. She is joining us to share some behind the scenes intel on what&#8217;s going into the 6.0 release, her role in that process, and then we&#8217;ll just kind of see how the conversation goes from there.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:02:40]</p>\n\n\n\n<p>Well, and with that, I&#8217;d like to welcome Channing to the WordPress Briefing. Hi Channing!</p>\n\n\n\n<p>[<strong>Channing Ritter </strong>00:02:45]</p>\n\n\n\n<p>Hey Josepha. Thanks so much for having me.&nbsp;</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:02:48] </p>\n\n\n\n<p>I&#8217;m excited to have you here. If I understand, you are working on the design side of things with the release. So why don&#8217;t you tell me a little bit about the role you&#8217;ve played?</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:02:59] </p>\n\n\n\n<p>I am. I am the design release lead for the 6.0 release. And if I understand correctly, this is a position that has been unfulfilled for the past few release cycles. So I&#8217;m kind of the first person to step in over the past few releases. And I think that&#8217;s really exciting, especially because design has started to play such a more important role in the WordPress project over the past few years.</p>\n\n\n\n<p>So it makes sense that design would have a seat at the table, and I&#8217;m really excited to be helping advocate for the design team and learning from other folks on the release squad. Who&#8217;ve been doing this for a while.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:03:33] </p>\n\n\n\n<p>So. First big question about 6.0, what is the feature that you are most excited about?&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:03:39] </p>\n\n\n\n<p>I&#8217;m most excited about the style switcher within the global styles panel. Um, so if folks still don&#8217;t know what I&#8217;m talking about there, it&#8217;s the ability to change between different variations of the theme.json without actually switching the theme.&nbsp;</p>\n\n\n\n<p>So this is a way to get a drastically different look and feels across your site with just a single click. And I see it as a really fun place to experiment and kind of get inspired for the different ways your site could appear without ever having to change your theme.</p>\n\n\n\n<p>And in terms of the Twenty Twenty-Two variations, they&#8217;re just really gorgeous and all so diverse. Like you have the main default theme that has the deep green and kind of peachy colors and this really elegant type treatment with a really thin Serif typeface. But then the variations are so different from that. And I think my favorite one is the Swiss variation.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:04:36]</p>\n\n\n\n<p>The Swiss variation?&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:04:38]</p>\n\n\n\n<p>Yeah, every graphic design nerd loves Swiss design.&nbsp;</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:04:42] </p>\n\n\n\n<p>Oh, ok! Now I know!&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:04:38] </p>\n\n\n\n<p>Really awesome things found in there. It&#8217;s a really high contrast, bold variation. It&#8217;s kind of black and white with red accents. I just love how different it is from the default style and how easy it is to change up your site and just get a whole drastically different look and feel.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:05:00] </p>\n\n\n\n<p>That&#8217;s excellent. So for folks who do not know what we&#8217;re referring to, when we talk about the Twenty Twenty-Two variation, that is the default theme, Twenty Twenty-Two. I&#8217;ll put a link to both the classic and block-based versions in our show notes, but you&#8217;ll want to use the block-based version to look at these style variations that Channing has mentioned here.&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:05:24] </p>\n\n\n\n<p>You know, we&#8217;re really excited that the first-ever default block theme was released with 5.9, which is when Twenty Twenty-Two first went out and was bundled with 5.9.</p>\n\n\n\n<p>But now, with 6.0, I think even more so it&#8217;s starting to showcase the real power of block themes and what can actually be done there. And style variations is a huge kind of first step into this new world of block themes and starting to really open up the possibilities and all the flexibility that you have there.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:05:55] </p>\n\n\n\n<p>Yeah, absolutely. So when we&#8217;re talking about the Twenty Twenty-Two default theme, when we&#8217;re talking about switching these variations inside the theme itself, that seems to me to be a very user-focused kind of feature. And when we talk about users in WordPress, there&#8217;s a lot of room for interpretation. Like if we look at it kind of in a framework of three types of users of WordPress, you have, like end-users. So people who are site owners using it as a site to, like, enable their business.&nbsp;</p>\n\n\n\n<p>But you also have mid-end usersâ€”people who use it to build sites for others. And what I like to call back-end users, people who are using WordPress as a framework. And of course at the start of the Gutenberg project, way back in forever, a million years ago, one of the big calls to action that we had around even, like, trying to do this, was that we wanted to make WordPress easier for users. Just plain users.&nbsp;</p>\n\n\n\n<p>And, and to me, that means making WordPress easier for those mid-end users, people who are creating WordPress sites for other people. But also should give some power and autonomy back to those end-users, the people who are using sites to enable their business or are site owners.&nbsp;</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:07:14] </p>\n\n\n\n<p>And so in that context, between 5.9 and 6.0, do you feel like we have features that are really giving that kind of power and agency back to our end-users? Do you feel like we have some features that are really focused on those mid-end users, as opposed to our backend users? For a long time, we focused heavily on enabling our backend users, and now Gutenberg kind of moves us into those other two areas.</p>\n\n\n\n<p>And so do you think that things like being able to switch between your style of variations, other things like that are moving us closer to that particular goal of Gutenberg?</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:07:51] </p>\n\n\n\n<p>That&#8217;s a great question. I think it&#8217;s both. I think some of the features being released in 6.0 are absolutely going to empower that end-user.</p>\n\n\n\n<p>Particularly in terms of improvements around design tools and some of the quality of life improvements. For example, partially selecting across multiple blocks and being able to partially select texts there. That&#8217;s the type of thing that really brings the writing experience in the editor to be on par with how you would expect a text editing experience to work.</p>\n\n\n\n<p>And there are tons of small quality of life improvements in this release that I think are really gonna help those end-users. But there are also improvements around what we might call the maintainers who are building sites for others. I think block locking in particular is something that is really going to start filling a gap between people who build the sites and then people who do the day-to-day maintenance within a site.</p>\n\n\n\n<p>For example, in 6.0, we&#8217;re introducing some interface UI around block locking, but also there&#8217;ll be control around the ability to lock user roles.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:09:03]</p>\n\n\n\n<p>Which I think makes a lot of sense. I mean, we have all of these user roles in the CMS itself, and for a long time, we&#8217;ve just been like free for all on blocks, which was great and is great and should be available to people.</p>\n\n\n\n<p>But also if we are saying, like, it makes sense to have this gradient of users and their abilities for the CMS itself, and we are saying that we want to move control of the website and the content to be at the base layer in these blocks, then it also makes sense that we should be able to provide that same sort of granular level of access in the blocks.</p>\n\n\n\n<p>So I think that&#8217;s a great thing. If you all, if dear listeners, you do not know what we mean by â€œblock locking,â€ I&#8217;m sure that I can find a link for us in our show notes below as well. If for anyone who&#8217;s been talking through Gutenberg things with me for a while, you know that this is one of the primary use cases that I think has been a long time coming.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:10:05]</p>\n\n\n\n<p>It was one of the first examples that I offered to folks when we had that question of like, who is this being built for? In what way is this beneficial to that mid-end user, as opposed to just giving all of the power and autonomy to users in a way that maybe is not the best for their visitors?&nbsp;</p>\n\n\n\n<p>This is one of those use cases that made the most sense to me being able to say, okay, well, the opportunity to, as somebody who runs an agency and is building websites for people to be able to say, yeah, â€˜You can do anything that is possible in this instance of WordPress and all the things that you are allowed to do will not break your instance. It won&#8217;t break your websiteâ€™.&nbsp;</p>\n\n\n\n<p>And so it gives a lot of time back to agencies to focus on their client&#8217;s most important problems, as opposed to not knowing how to update the hours in their footer or something like that. And so I&#8217;m very excited about that particular feature.</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:11:01]</p>\n\n\n\n<p>It&#8217;s such a long-requested feature. I mean, we&#8217;ve been hearing requests around this particular feature for years and, you know, often when something gets requested over a span of years like that, it&#8217;s because there are some complexities to figure out how it works.</p>\n\n\n\n<p>And that&#8217;s definitely been the case with moving forward with block locking. And there are a lot of nuances there. But I think what you were saying, I totally agree with. Thereâ€™s always a push and pull. And as we enable more and more flexibility for end-users, there needs to be a little bit of push from the other side to kind of give more granular controls, more locking options, and make sure that everything can still be easily maintained.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:11:43]</p>\n\n\n\n<p>Yeah, we mentioned in that answer the concept of maintainers. If you are a contributor, it&#8217;s not <em>that</em> kind of â€˜maintainer.â€™ So if you&#8217;re a WordPress contributor and we said maintainers there, um, just know that that&#8217;s not what we&#8217;re referring to. If you don&#8217;t know what I&#8217;m talking about when I say â€˜contributor,â€™ there is a whole community of open source people and maintainers are people who specifically take care of a particular part of the WordPress software or the WordPress project, um, that makes all this possible.</p>\n\n\n\n<p>So there&#8217;s, ya knowâ€¦.&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:12:19] </p>\n\n\n\n<p>So true! The maintainer has another meaning in this context.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:12:20]</p>\n\n\n\n<p>Yeah, we have a mix in our audience and I love it, but it also makes me frequently spend like 10% of my podcast being like, by the way, when I said this, I didn&#8217;t mean you, but I did mean <em>you</em>, which makes it harder. I know.&nbsp;</p>\n\n\n\n<p>So. Youâ€™ve been with the project for a little bit, but if I recall correctly, this is the first time that you were, like, leading part of a release.</p>\n\n\n\n<p>So what would you say was the most challenging part of that?</p>\n\n\n\n<p>[<strong>Channing Ritter</strong>  00:12:52] </p>\n\n\n\n<p>Another great question. This is my first time being this closely involved with the release. Although I was involved with the 5.9 release, but mostly in a release assets capacity. So I helped with the <em>About Page</em> and the welcome banner that goes on the dashboard.</p>\n\n\n\n<p>So I did get some insight in the last release cycle. Which was great preparation for being more involved as a release lead on this cycle. From the design perspective, one of the hardest things is always going to be figuring out what exactly goes into the release and what needs more time. In the sense, you know, that there might be some features that need to stay in the Gutenberg plugin for a while and get more testing before they get released to a much wider audience in a major WordPress release.</p>\n\n\n\n<p>So I think on the design side, we definitely have some goals that are big, long-term projects that are likely going to span across, you know, many releases, maybe even over many years. And I think the full site editor is a great example of that in a sense that it&#8217;s not something that you just were gone in one release and then it all gets released and then it&#8217;s all good to go.</p>\n\n\n\n<p>[<strong>Channing Ritter</strong>  00:14:06] </p>\n\n\n\n<p>It&#8217;s something that has to be staggered across many releases, and there&#8217;s a lot of thought that goes into it; does this make sense in this more limited capacity, and what else needs to go in in order for this feature to go in? And the most complex things about the WordPress project is how interconnected things are.</p>\n\n\n\n<p>So when you start making those decisions about what should go in, what should get pulled out, often there&#8217;s sort of a domino effect of like, well, that would affect this feature and then, well, maybe they shouldn&#8217;t go in, or maybe this does need to go in. And that is really one of the most challenging, but also one of the most fascinating aspects of the release process.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:14:46] </p>\n\n\n\n<p>Yes. It is very, very true that there are kind of no small problems left in WordPress. *laughs* Yeah, when we, when we first started with this like bigger release squad, cause that has not been routine for the history of the project. When we first started with that, I know that expanding out the exposure to like how much one change affects 25 different things was really, it was really good for all of us to be reminded.</p>\n\n\n\n<p>And as I mentioned at the top of our episode today, tomorrow begins the RC period. It begins the release candidate period, which is when it&#8217;s supposed to be, as locked down as possible. But if you all have been following along with our release process in general, which if you&#8217;re listening to this, you probably have, you know that last week or a couple of weeks ago, we had this whole question about the Webfonts API, and we had that conversation in a public space as best we could,&nbsp;</p>\n\n\n\n<p>Like, there are always things that you can&#8217;t, like, fully disclose in public spaces, but we had a very open and transparent conversation about, like, who is most affected by putting it in, in the state that the API was in. And, who&#8217;s most affected if we take it out. And where can we make compromises on either side so that both sides are a little happy and a little unhappy?</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:16:09] </p>\n\n\n\n<p>And, like, that is all so hard to do. Not only in general. We have a 20-year-old code base and a five-year-old code base. And it&#8217;s all a big, big undertaking to understand what is happening and where it happens. And so there&#8217;s this moment always when we are trying to decide, like, is this baked enough? Did we put it in too early? Should we pull it out? How, if we pull it out, did we ask people to do too much work before we decided to pull it out anyway?</p>\n\n\n\n<p>Like, you always have those kinds of questions about it. And honestly, I think that most of us weren&#8217;t around the last time, that WordPress was, was this experimental in public, like it&#8217;s always been open source. It&#8217;s always been experimental and iterating publicly, which is just the hardest way to work on anything. We like, we shipped our best guesses. Don&#8217;t be mad. It&#8217;ll beâ€¦ we&#8217;re coming for it. We&#8217;re going to fix it. Like, that&#8217;s always hard, but the last time around, when it was this substantial a change was, like, 2008 or something, like, it was ages and ages ago.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong>  00:17:14] </p>\n\n\n\n<p>And we were smaller than, we had a smaller number of contributors. We had a smaller group of people actually using the CMS. And so over time it has gotten more and more complicated. And, and I don&#8217;t think that we can ever understate the complexities of that. And so for you, you had a little bit of exposure to it in 5.9 and then showed up for like really doing it in 6.0.</p>\n\n\n\n<p>Has it been a surprising change? Like, were you surprised much more by how complicated it was when you were closer to it?&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:17:47] </p>\n\n\n\n<p>Yeah, definitely. Itâ€™s been a real learning process, especially coming to understand how much there really are no easy answers. I think a lot of us are in the release squad are real problem solver types of people and, and want it to, you know, be a really neat, tidy answer.&nbsp;</p>\n\n\n\n<p>And it&#8217;s not always the case. You know, sometimes parts of the feature might go in, or some contingency plan might get put into place and things didn&#8217;t go exactly as planned. But what you said of being an experiment and being on kind of the cutting edge of trying out new things, I think there is a lot of passion around that in the WordPress project.&nbsp;</p>\n\n\n\n<p>Right now, we&#8217;re in such a transitional period for the project, you know, moving from classic themes to block themes and really changing the ideas of how we approach designing sites. And because of that, I think there is a lot of momentum and energy around getting new features, as many new features as possible into each release. But there&#8217;s also, you know, a lot of testing and stuff that needs to happen.</p>\n\n\n\n<p>And to make sure that, like you said, these things aren&#8217;t going out too early.&nbsp;</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:19:01] </p>\n\n\n\n<p>Well, and there&#8217;s always that difficulty, we&#8217;re going to just leap right into open source areas now. There&#8217;s always that difficulty around, like, there&#8217;s this concept that when, like, we always want to ship something that doesn&#8217;t break backward compatibility when possible, we don&#8217;t want to ship vulnerabilities. Like, that&#8217;s always true, but we are in an open source project, and open source projects are necessarily kind of tolerant of like, that&#8217;s not our best, but like it skates, right?&nbsp;</p>\n\n\n\n<p>This was, we aimed for Ferrari and got a skateboard because sometimes you got to start with a skateboard, right? *laughter* Like if it gets you from one place to another, that&#8217;s kind of where we&#8217;ve got to aim some days.&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:19:45] </p>\n\n\n\n<p>Totally.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong>  00:19:46] </p>\n\n\n\n<p>And that&#8217;s always so, so difficult, especially cause, like, for the big change that 5.0 represented, and that 5.9 representedâ€“ 6.0 is not as big a shock as 5.9 was.&nbsp; But, like, as big a change as those represented, it still skates. And that&#8217;s, I think what makes the work especially hard, especially nuanced. And like, we haven&#8217;t gotten together as human beings in two years. And so sometimes people just kind of forget there&#8217;s a human being back there.</p>\n\n\n\n<p>We&#8217;re humans. Everyone be nice. Yeah. I don&#8217;t know that part of running a release definitely was surprising to me. My first release that I ran was 5.0 andâ€¦</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:20:31] </p>\n\n\n\n<p>Oh, wow!</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:20:32]</p>\n\n\n\n<p> Yeah, it was, like, that was  2018. And then I became the executive director at the top of 2019. And I distinctly remember one core chat where I showed up and just was like the most transparent, vulnerable person we&#8217;ve ever experienced in life.</p>\n\n\n\n<p>That&#8217;s not true. We have very vulnerable people in the project and very transparent people, but I told everyone like, there are a million of you and one of me, and it&#8217;s kind of terrifying that you&#8217;re leaping on me in thisâ€”like you&#8217;re scaring me a lot right now. And that was quite a thing to say to like, all theseâ€¦ it&#8217;s terrifying! Right?</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:21:12] </p>\n\n\n\n<p>I love when you see that type of vulnerability in the project. I think it takesâ€¦ it takes a degree of comfort and familiarity with the project to even be able to admit to that. And to me, that&#8217;s a real sign of growth in the project. Like when I first started contributing, I don&#8217;t think I ever would have just said, like, â€˜How is the feature supposed to work? I have no idea.â€™ That&#8217;s something that I say all the time now.</p>\n\n\n\n<p>*Laughter*</p>\n\n\n\n<p>And you know, that is completely fine and more than okay. It&#8217;s a massive project. There are folks who have done deep thinking about a feature over the course of years. You know, and there are experts who can help shed light on various problems that maybe you just haven&#8217;t had a chance to dive into yet and really understand the nuances of yet.</p>\n\n\n\n<p>So that&#8217;s the amazing thing about open source is that you can lean on folks who do have expertise in that particular area. You&#8217;re not expected to be an expert-expert in every single domain. It&#8217;s okay to say, I don&#8217;t really have a good idea or a good concept of this feature. I don&#8217;t have a good feeling for it. What do other folks think?&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:22:24] </p>\n\n\n\n<p>And even people who have been in the project for a long time, decade plus, still say that all the time. You know, or you might just say, like, I have a really rough idea of how this works, are other people seeing this the same way? Or did other people have a different, you know, mental picture of how this might work?</p>\n\n\n\n<p>Even if, sometimes it feels like you&#8217;re over-communicating, it&#8217;s really helpful because often people do have really dramatically different ideas about how a feature might take shape.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:22:49] </p>\n\n\n\n<p>And I hope that&#8217;s one of the things that we never lose in the project. Like we are an old, old project now and we support a bunch of the web with a tiny, tiny group of people compared to the amount of the web that we support.</p>\n\n\n\n<p>And I hope that we always have that opportunity as senior leaders, which I am, and all of our upcoming leaders to all of us, just at some point, be like, can we stop the train? I don&#8217;t understand. I donâ€™t understand that. Um, and not necessarily feel that that has made us a worse contributor. Cause I think that it&#8217;s when we are transparent about our lack of understanding.</p>\n\n\n\n<p>That&#8217;s when we have the opportunity to make what we&#8217;re offering to the world more solid and always better.&nbsp;&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:23:35] </p>\n\n\n\n<p>I love it. I think it&#8217;s the, one of the most lovely things about the WordPress community. There&#8217;s really low judgment around those types of questions and people are really inclusive and more than happy to take a moment to explain something to you or shed some light on an issue you might not have thought that much about.&nbsp;</p>\n\n\n\n<p>I think that&#8217;s one of the best things you can always reach out for help. And folks are always willing to provide guidance or context or even historical information about, you know, whether it&#8217;s been tried in the past or previous explorations and that sort of thing.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:24:10] </p>\n\n\n\n<p> All right. Well, that covers all of my questions for you. Do you have a final thought about the release that you would like to share with everyone you don&#8217;t have to, if you don&#8217;t want to, not everyone has like a final sign off.&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:24:25] </p>\n\n\n\n<p>Yeah. One of the things I&#8217;m most excited about for this 6.0 release is all of the improvements around design tools.</p>\n\n\n\n<p>And these are just small improvements around a ton of different things, like the color panel, border controls, gap support, typography options, flexible container blocks, etc. These are the types of tools that are a designer&#8217;s dream. You know, they really make the difference between being able to make a really crisp, finished looking final product and having something that&#8217;s a little rough around the edges.</p>\n\n\n\n<p>And as a designer, like those are the things that your eye goes straight towards. And all of these nuanced new tools, they really allow designers to have that fine detailed control to create really pixel perfect sites. And I think that&#8217;s something that, you know, myself and a lot of others on the design team are just so beyond excited about.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:25:25]</p>\n\n\n\n<p>Excellent. Well, Channing, thank you so much for joining us today on the WordPress Briefing; it has been an absolute delight.&nbsp;</p>\n\n\n\n<p>[<strong>Channing Ritter</strong> 00:25:32] </p>\n\n\n\n<p>Thank you for having me.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy</strong> 00:25:41] </p>\n\n\n\n<p>And now it is time, woohoo, for the small list of big things. My favorite part of this podcast, that&#8217;s not true. I have a lot of things that I love about this podcast. I just, in particular love being able to share like three things that are coming up in the next couple of weeks that everybody should be aware of. And I really particularly like the list I have this week.&nbsp;</p>\n\n\n\n<p>First as of today, we are two weeks away from WordSesh. If you&#8217;re looking forward to your first in-person WordPress event, but feel like you could use a little foundation information, a little bit of a WordPress primer, then this event has a lot of excellent thought leaders in the project that you can learn from.</p>\n\n\n\n<p>If you&#8217;re looking for more practical or hands-on opportunities, uh, you can also check out social learning spaces. All of those are free for anyone. So I will include links to both of them in the show notes.&nbsp;</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:26:30]&nbsp;</p>\n\n\n\n<p>Second, as of today, we are four weeks away from WordCamp Europe. This is one of our flagship events. So it also includes a contributor day, which I encourage you to look into. If you have never heard of one before. I will be there to meet some of the contributors that have joined the project since the end of 2019. And hopefully, I will see you there as well. If you&#8217;ve never heard of a contributor day, then I&#8217;ll include a link to the beginner&#8217;s guide to contributions, a little talk that I gave in 2017 in the show notes that should help you get your bearings or at the very least know what questions to ask yourself to figure out if a contributor day is right for you.</p>\n\n\n\n<p>And then the third thing as of today, it has been one week since <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> and the <a href=\"https://make.wordpress.org/meta/\">Meta</a> developersâ€¦ Um, that sounds like a bandâ€¦ Ian Dunn and the Meta developers connected the props channel in the community Slack to WordPress.org profile activity. I&#8217;m really excited about this. It&#8217;s the first in a long list of changes that are part of a larger project to credit more non-code contributions, more contributions that are not specific to a major release or event.</p>\n\n\n\n<p>And also to set us up to be able to provide more quality checks and balances for our growing Five for the Future program. If you&#8217;ve not been over there lately, if you&#8217;re not super sure what I&#8217;m talking about, there&#8217;s a link to the discussion post that we had about it, but also you can wander right over into the Making WordPress Slack and check out the props channel to just kind of see a running list of contributors that people are really grateful for. Which, frankly, if you ever are having a bad day, that is a wonderful place to just kind of wander in and see all of the positive vibes that people are sending around to each other.</p>\n\n\n\n<p>Uh, yeah, so the props channel, is always good. Uh, and that my friends is your small list of big things. Thank you for tuning in today for the WordPress Briefing. </p>\n\n\n\n<p>I&#8217;m your host, Josepha Haden Chomphosy. And I&#8217;ll see you again in a couple of weeks.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 May 2022 13:03:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Do The Woo Community: devlife_snippet: Building in Two Worlds of Open Source, Joomla and WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=71531\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://dothewoo.io/building-joomla-and-wordpress-products-extensions/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:412:\"<p>Being in the open source space, the beginning and the end can happen with moving between platforms.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://dothewoo.io/building-joomla-and-wordpress-products-extensions/\">devlife_snippet: Building in Two Worlds of Open Source, Joomla and WordPress</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 May 2022 09:35:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"BuddyPress: BP Rewrites 1.1.0 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=324472\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://buddypress.org/2022/05/bp-rewrites-1-1-0-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:849:\"<p>Immediately available is&nbsp;<a href=\"https://downloads.wordpress.org/plugin/bp-rewrites.1.1.0.zip\">BP Rewrites 1.1.0</a>. This maintenance release fixes two bugs. For details on the changes, please read the&nbsp;<a href=\"https://github.com/buddypress/bp-rewrites/blob/trunk/CHANGELOG.md#110\">1.1.0 release notes</a>.</p>\n\n\n\n<p>Update to BP Rewrites 1.1.0 today in your WordPress Dashboard, or by&nbsp;<a href=\"https://wordpress.org/plugins/bp-rewrites/\">downloading from the WordPress.org plugin repository</a>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"many-thanks-to-9-2-0-contributors\">Many thanks to 1.1.0 contributors&nbsp;<span class=\"dashicons dashicons-heart\"></span></h2>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/shawfactor\">shawfactor</a>&nbsp;&amp;&nbsp;<a href=\"https://profiles.wordpress.org/imath/\">imath</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 01 May 2022 16:39:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"Gutenberg Times: Gutenberg Changelog #66 â€“ Gutenberg 13.1, New Zealand, InnerBlocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=21075\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-65-gallery-block/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:48996:\"<p>Birgit Pauli-Haack and Mary Job  discuss with their guest, Glen Davies, Gutenberg 13.1, New Zealand, InnerBlocks and more so much more.</p>\n\n\n\n<ul><li>Music:&nbsp;<a href=\"https://soundcloud.com/xirclebox\">Homer Gaines</a></li><li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li><li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li><li>Production:&nbsp;<a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li></ul>\n\n\n\n<span id=\"more-21075\"></span>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-65-gutenberg-13-0-wordpress-6-0-inline-token-proposal#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/ggutenberg-changelog-65-gutenberg-13-0-wordpress-6-0-inline-token-proposal/#transcript\">Transcript</a></p>\n\n\n\n<p class=\"has-large-font-size\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<p><a href=\"https://twitter.com/glendaviesnz\">Glen Davies on Twitter</a></p>\n\n\n\n<p><a href=\"https://glendaviesnz.blog/\">GlenDavisNZ.blog</a></p>\n\n\n\n<p>FSE Program <a href=\"https://make.wordpress.org/test/2022/04/28/fse-program-testing-call-14-rallying-recipe-reviewers/\">Rallying Recipe Reviewers</a></p>\n\n\n\n<p><a href=\"https://wptavern.com/play-the-piano-and-other-instruments-via-the-wordpress-block-editor\">Play the Piano and Other Instruments via the WordPress Block Editor</a></p>\n\n\n\n<p><a href=\"https://wptavern.com/podcast/24-aki-hamano-on-building-useful-blocks-for-fun\">#24 â€“ Aki Hamano on Building Useful Blocks for Fun</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/news/2022/04/wordpress-6-0-beta-3/\">WordPress Beta 3</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2022/04/28/whats-new-in-gutenberg-13-1-27-april/\">Whatâ€™s new in Gutenberg 13.1? (27 April)</a></p>\n\n\n\n<p><a href=\"https://wptavern.com/gutenberg-13-1-ships-a-batch-of-improvements-and-implements-a-new-border-design-component\">Gutenberg 13.1 Ships a Batch of Improvements and Implements a New Border Design Component</a></p>\n\n\n\n<p><a href=\"https://github.com/WordPress/gutenberg/pull/40505\">Add visualizers for padding and margin for all blocks</a></p>\n\n\n\n<p><a href=\"https://github.com/WordPress/gutenberg/issues/39194\">Save theme edits from the site editor to the theme files</a></p>\n\n\n\n<p><a href=\"https://github.com/WordPress/gutenberg/pull/39795\">Persistent Preferences in User Meta</a></p>\n\n\n\n<p><a href=\"https://wptavern.com/coming-in-gutenberg-13-1-users-editor-preferences-will-be-stored-in-the-database-improving-persistence-across-sessions\">Coming in Gutenberg 13.2: Usersâ€™ Editor Preferences Will Be Stored in the Database, Improving Persistence Across Sessions</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/design/2022/04/25/design-share-apr-11-22/\">Design Share: Apr&nbsp;11â€“22</a></p>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-container-7 wp-block-group\"><div class=\"wp-block-group__inner-container\">\n<ul><li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li><li>Ping us on Twitter or send DMs with questions. <a href=\"https://twitter.com/maryojob\">@maryojob </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li><li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li><li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li></ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\" id=\"transcript\">Transcript</p>\n\n\n\n<p> </p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Hello, and welcome to our 66th episode of the Gutenberg ChangeLog podcast. In today&#8217;s episode, we will talk about Gutenberg 13.1 version, New Zealand, inner blocks in an interesting work in progress with our special guest, Glen Davies. I&#8217;m Birgit Pauli-Haack, curator at the Gutenberg Times and a WordPress developer advocate. And I&#8217;m here with my lovely co-host Mary Job. She&#8217;s also a WordPress advocate, works as support engineer at Paid Membership Pro and is a community organizer at wpafrica.org. And today we also have a special guest. I&#8217;m thrilled to welcome Glen Davies to our show. He&#8217;s from New Zealand, a JavaScript engineer on the Gutenberg project and the release lead for the Gutenberg plugin 13.1 version. Good evening, Mary, top of the morning to you, Glen. And thank you both for joining. How are you today?</p>\n\n\n\n<p><em>Glen Davies</em>: Good, thanks.</p>\n\n\n\n<p><em>Mary Job</em>: Yeah, I&#8217;m fine too Birgit. Nice to see you. Nice to meet you, Glen.</p>\n\n\n\n<p><em>Glen Davies</em>: Yeah, likewise.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Awesome. Awesome. So Glen, before we go into the weeds of the plugin release and the rest of the show, I want to ask you a couple of questions about your WordPress journey and about your work on the gallery block. And maybe you can briefly tell us how you came to WordPress and automattic.</p>\n\n\n\n<p><em>Glen Davies</em>: Guess I came to automattic and then to WordPress.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, okay. The other way around.</p>\n\n\n\n<p><em>Glen Davies</em>: I had used WordPress quite a few years ago. I was an IT manager for a not for profit for a few years and they needed a blogging platform. So I installed WordPress for them. But that was mostly from a tinkering setting up point of view rather than development. They didn&#8217;t really need a lot of development, just a pretty simple blog. Prior to that, I&#8217;d done quite a bit of PHP development. I developed an open source learning management system for a university. I don&#8217;t know if you&#8217;ve dealt with LMSs, you&#8217;ve probably heard of something called Moodle.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh yeah, yeah.</p>\n\n\n\n<p><em>Glen Davies</em>: Yeah, yeah. But that wasn&#8217;t the LMS I developed.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It was similar.</p>\n\n\n\n<p><em>Glen Davies</em>: Yeah. Well, the one I developed, I probably say mine was the beta max to Moodle&#8217;s VHS. So Moodle sort of&#8230; Moodle got the community and mine never did. At one point I said to the university they were wasting their money paying me to be the sole developer of an open source LMS. They should really use Moodle instead. So I sort of did myself out of a job.</p>\n\n\n\n<p>I was ready for a change. I did IT management for a while and that&#8217;s when I first encountered WordPress. Decided that IT management wasn&#8217;t really for me. So I went back to development for a couple of big corporates. But got a bit sick of the commute and the crammed office spaces. I think the last office I was in there was a person a meter and a half that side and the meter and a half that side and a meter behind me was other three people. You had to say, &#8220;excuse me&#8221; when you pushed your chair out to go to the bathroom.</p>\n\n\n\n<p>So I had a bit of a look around about three years ago for remote work positions and Automattic came up and looking through the Automattic CRE, just the whole philosophy and culture really, rang true for me. So I took a punt and applied and managed to get a position. That was, yeah, about three years ago.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, wow. Yeah. So that is in the middle of the new development of Gutenberg pretty much. Yeah.</p>\n\n\n\n<p><em>Glen Davies</em>: Yeah. It was some of the early releases was sort of going out.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That kind of brings up the question that I had, or that a lot of people had, is how do you migrate or how do you become, get, from a PHP developer to a JavaScript developer or a mixed to, for the Gutenberg blocks and custom blocks and all that?</p>\n\n\n\n<p><em>Glen Davies</em>: Yeah, for me, it wasn&#8217;t&#8230; Cause I said years ago I did a lot of PHP, but then when I came back to development, I went almost straight into just JavaScript front end. It was just a big learning curve of diving in. So for me coming to Automattic and WordPress, it was almost the reverse I had to go back from doing JavaScript to some PHP stuff.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh yeah. Okay. I get that. Yeah. All right. Yeah. Did you have contact with other people in the workers community in New Zealand?</p>\n\n\n\n<p><em>Glen Davies</em>: No. Cause unfortunately I started 2019. I spent the first eight or nine months just really getting to grips with WordPress and then of course COVID hit. So I&#8217;m hoping this year, New Zealand, like most countries has opened up quite a bit. So hopefully there&#8217;ll be some local WordPress events I can get along to.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, hopefully. I hope that for you too. Yeah. Cause you&#8217;re probably not coming to work in Europe.</p>\n\n\n\n<p><em>Glen Davies</em>: No, not this year.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. There&#8217;s actually a good friend of the Gutenberg Times, so to speak, Ellen Bauer. She is the owner of the Elmer Studio and with her significant other Manuel they have quite a few themes in the&#8230; And she&#8217;s was one of the early adopters of Gutenberg as well as the block themes. I&#8217;m not quite sure how far away you were, but yeah. She&#8217;s definitely, she migrated to New Zealand a long time ago. Yeah.</p>\n\n\n\n<p><em>Glen Davies</em>: Yeah, no. It would be good to catch up with some local events this year.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Well keeping the fingers crossed that that&#8217;s possible. So you and me, Glen, we collaborated a little bit on the working on the gallery block of trying to figure out how to let the community know that they were be a change. And you converted the first version, which came out 2018, had not particularly been developed much after that. And it now uses a single image block within blocks and it came to WordPress school in 5.9 in January. So it&#8217;s such a richer experience and has all the features that the image block has, is now coming to gallery block and you can kind of change each image or&#8230; And also you have the styles for it. I had the feeling that the journey wasn&#8217;t particularly easy one, from especially around backwards compatibility blocks and deprecating blocks. What did you learn and what advice would you give developers working on version two for the list and the quotes and the developers building custom blocks?</p>\n\n\n\n<p><em>Glen Davies</em>: Well, I learned that it&#8217;s not as easy as it looks.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That&#8217;s life for you, right.</p>\n\n\n\n<p><em>Glen Davies</em>: There were a whole list of open issues of people saying, &#8220;oh, we need the gallery to be able to do this.&#8221; And, &#8220;in an image in a gallery, we need to be able to do that.&#8221; And I sort of looked and thought, well, you can already do that on the image block. So why aren&#8217;t we just wrapping the image blocks rather than&#8230; Cause there was almost a whole lot of copy and pasted code to duplicate stuff between images and the gallery. I thought I might as well have a go and see whether we could use inner blocks. Which the initial setup was pretty straightforward, but yeah, there were a whole lot of gotchas in actually getting it to run properly.</p>\n\n\n\n<p>And then when we looked at the backwards compatibility, the main issue we had was with the mobile app. So the big learning was just how different the Gutenberg editor in the mobile app is from the web editor. In terms of the fact that you have a whole lot of different versions of the editor out running in people&#8217;s apps that haven&#8217;t been upgraded. And currently the editor has no way of knowing what to do with a block it hasn&#8217;t encountered before. So in the mobile app, it would get the gallery that had inner blocks and think there&#8217;s no content, cause it didn&#8217;t recognize blocks. And Android quite nicely, or it was thought it was being quite nice in auto saving as soon as it opened it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Overriding whatever&#8217;s there, yeah.</p>\n\n\n\n<p><em>Glen Davies</em>: Yeah. Would say, oh, it&#8217;s a gallery. There&#8217;s nothing in it, save. And it would lose all the people&#8217;s images. There was a lot of working with the mobile team to work out, how do we stage deploying the new version so that people on the mobile app don&#8217;t lose their data. Yeah, one of the big learnings was just the issues with compatibility. In the meantime, Dennis, I think you had Dennis on the podcast a few weeks ago. He&#8217;s done quite a bit of work to make the editor a bit more robust to be able to cope with blocks it doesn&#8217;t recognize. So rather than just losing the data, just say, hang on, I don&#8217;t recognize this. I&#8217;ll just ignore it for now and leave it as it is.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Just display what I have and then yeah, the plain HDML. So yeah.</p>\n\n\n\n<p><em>Glen Davies</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Glen Davies</em>: So hopefully it&#8217;ll slowly start to ease, but I know the quote block people have the&#8230; The developers that have converted quotes to inner blocks have had the same issue with mobile. Cause they&#8217;ve had to stage the deployment so that the mobile versions don&#8217;t lose the data.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Interesting. Yeah.</p>\n\n\n\n<p><em>Glen Davies</em>: Yeah. One of the other big learnings was just how well the whole community works together. It&#8217;s like, it&#8217;s&#8230; It was a pretty big change but it wasn&#8217;t too hard to get the people that needed to be involved, involved, and work through the issues together. And then paying the likes of yourselves to say, we need to let the community know. And knowing that you took that bit on board and paying the relevant developers and let them know.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And it was interesting to see that most of the theme developers that are plugin developers and also theme developers that I reached out to, they already were aware that there&#8217;s something coming and there were testing quite a bit on the Gutenberg plugin. Yeah. So when it came to 5.9, there were no surprises on that, not that particular on that part. Well, but we were not able to reach all of the people, but I think it was a good chunk of it. Yeah.</p>\n\n\n\n<p><em>Glen Davies</em>: Yeah. I held my breath when the 5.9 release went out.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Say that again.</p>\n\n\n\n<p><em>Glen Davies</em>: I held my breath when the 5.9 release went out. I thought, oh, I hope this is going to work.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Glen Davies</em>: It&#8217;s a pretty block. There&#8217;s a lot of people use gallery blocks. So it was a bit nerve racking pushing out such a major change, but it seems to have gone reasonably smoothly.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. The backwards compatibility and on the desktop version or on the web version. Yeah. That was quite nicely. I was really pleasantly surprised that what I can do in addition what I was doing already on the gallery block. So it was a very pleasant surprise.</p>\n\n\n\n<p><em>Mary Job</em>: Yeah. I think I have a question for Glen if you don&#8217;t mind.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Sure.</p>\n\n\n\n<p><em>Glen Davies</em>: Yeah, sure.</p>\n\n\n\n<p><em>Mary Job</em>: As you said you came into WordPress three years ago. Would you say coming from all that kind of development into WordPress, would you say WordPress has a steep learning curve or was it like smooth?</p>\n\n\n\n<p><em>Glen Davies</em>: Yeah. Reasonably steep learning curve. Cause although it&#8217;s Java script and react, which I&#8217;d used before, there&#8217;s a reasonable amount of complexity in Gutenberg. It&#8217;s a pretty impressive project when you look at the depth and the breadth of it, what it&#8217;s actually doing. Even having worked on it for three years, there&#8217;s some parts of Gutenberg that are just a black box to me. Yeah. There&#8217;s parts I haven&#8217;t had to touch and I&#8217;ve got no idea what they&#8217;re doing. And if I had to actually do some debugging in that area, there&#8217;s quite often quite a bit of work to think what&#8217;s actually happening here, what&#8217;s going on.</p>\n\n\n\n<p>But having said that, think it wraps really well some of that complexity. And then allows the block developers to do an awful lot of fairly clever stuff with a minimal amount of work. For instance, the new block supports are fairly impressive. Previously, if you wanted to have borders and background colors and text colors, you had to copy and paste a whole lot of code. Now it&#8217;s just a matter of adding a few flags to your JSON file and suddenly your block has borders and background color and text color.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. That&#8217;s pretty impressive. I really love the development on the theme JSON file and all the configuration that goes in there. And it works very well with classic themes as well. So it&#8217;s a really good way how that works.</p>\n\n\n\n<p><em>Glen Davies</em>: It&#8217;s sort of an interesting mix of complexity and simplicity. There&#8217;s some really complex stuff going on in the background, but it&#8217;s been wrapped quite well to a nice, simple API for block developers.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Do you have another question, Mary?</p>\n\n\n\n<p><em>Mary Job</em>: No, no, no. I was just thinking how impressive that is.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Well, let&#8217;s get started with the rest of the show. It&#8217;s so glad you&#8217;re here.&nbsp;</p>\n\n\n\n<h3><strong>Announcements</strong></h3>\n\n\n\n<p>So we have one announcement that just made it in. If you want to test the features that are in Gutenberg 13.1, head over to the latest call for testing from the FSE, from the full site editing program. And it&#8217;s called &#8216;Rallying Recipe Reviewers&#8217;. And this call for testing focuses on, on taking a few blocks amongst on the list view in this and the quote blocks in the second version and practically spin it up with fun for interactive recipe focused site. Where you can customize the commenting experience. And for a very interactive site. The instructions are from Anne McCarthy again. It&#8217;s the 14th of these testing calls and they are very detailed and they get you really into the topic of things. It just was published yesterday. You have about three weeks to comment on this and try it out. Of course, as always, the link to the post will be in the show notes. And yeah. So that&#8217;s the announcement for today. What else do we have?</p>\n\n\n\n<h3><strong>Community Contributions</strong></h3>\n\n\n\n<p><em>Mary Job</em>: Oh, we have community contributions. So our fellow WordPress podcast Nathan Wrigley over at Jukebox podcast talked to Aki Hamano who is a plugin and freelance developer from Japan. Hamano also has some great blocks in the repository. Three years ago, he created a rich text expansion plugin when Gutenberg only had rudimentary color spacing and controls.</p>\n\n\n\n<p>And he also has a flexible table block. So he also has this amazing block plugin, piano block, which I actually just tried today and it was fun. I didn&#8217;t want to leave the post editor. What this does is it adds a musical instrument to your editor screen and you can take a break from content version and make some music in between. And this block doesn&#8217;t show anything on the front end, which makes it a really fun project. Have you tried that plugin Birgit or Glen? I thought it was fun.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I have not tried it but Justin Tadlock actually wrote a separate blog about it a month or so ago, blog post about it. And he has a video where he tried to do a music thing. And I&#8217;m not saying which one, because you might want to go there and kind of try it out.</p>\n\n\n\n<p><em>Mary Job</em>: What about you, Glen? Have you tried it?</p>\n\n\n\n<p><em>Glen Davies</em>: No, I haven&#8217;t tried it. I did see the WP Tavern article about it. Yeah, I must give it a go. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Mary Job</em>: Yeah. I saw today and I didn&#8217;t want to stop playing. I felt like a genius. You know those saying, is it all work and no play makes Jack do&#8230; I remember that when I saw that I was like, ah, yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And sometimes when you&#8217;re stuck on developing or trying to write something and you distract yourself and you come back, it&#8217;s coming there.</p>\n\n\n\n<p><em>Mary Job</em>: Yeah, it makes very profit break time. Because there are times when you are stuck, like, okay, it&#8217;s not working. And then I just want to take a walk. I mean I could take a break and then play some piano.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right.</p>\n\n\n\n<p><em>Mary Job</em>: On the podcast, Nathan and Aki also talked about what the developer journal learning and building blocks was like. As always, we&#8217;re going to put the link to this and the show notes so you can always read. It was quite entertaining listening to them.</p>\n\n\n\n<h3><strong>Whatâ€™s Released &#8211; WordPress 6.0 Beta 3 and Gutenberg 13.1</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Great, yeah. So the brings us to the section what&#8217;s released? And so we had two releases. One was WordPress Beta 3. Do you want to talk about it Mary or?</p>\n\n\n\n<p><em>Mary Job</em>: Oh yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: The notes.</p>\n\n\n\n<p><em>Mary Job</em>: The Beta 3 release comes with a few bug fixes that was discovered in the previous betas. It now has the power down version of Workfront API. I believe we&#8217;ve talked about this in past episodes. Which allows team developers to register team star versions, including typography with their team.JSON file.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. We talked the last episode where it wasn&#8217;t clear if the fonts API actually would make it into 6.0.</p>\n\n\n\n<p><em>Mary Job</em>: Yes. So the team is working tirelessly to bring all the notes to the field guide and least order interesting changes in time for the release candidate that will be coming on the third of May. And just in case you&#8217;re wondering, WordPress 6.0 is scheduled to come to you, WordPress on the 24th of May, 2002. I&#8217;m quite excited to try it out and see what new exciting features it brings.</p>\n\n\n\n<p>So WordPress in 6.0 is not as big as 5.9, but it has a lot of exciting new features. Anne McCarthy also published a video with highlights on YouTube if you want to check that out.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And we talked about it two weeks ago and what our favorite features are. Glen, do have a favorite feature for the 6.0 version?</p>\n\n\n\n<p><em>Glen Davies</em>: Can&#8217;t think of anything off the top of my head. There was so much 5.9 and I&#8217;ve been doing a bit of background stuff.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I really like, and I haven&#8217;t looked at it before, but I&#8217;ve found that there are actually quite some writing experience improvements in there.&nbsp;</p>\n\n\n\n<p><em>Glen Davies</em>: Yeah, actually, now that you mentioned that the partial block selection is probably it, yeah. There&#8217;s been so many times over the last few years where that&#8217;s come up as you can&#8217;t select partial blocks.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. If, if you want over two paragraphs or something like that, and want to have something italic or bold that is half a sentence above and the other half below, you couldn&#8217;t do that and it&#8217;s now possible and you can do all of it. That&#8217;s one of the things. And the other one is the double bracket short code to have a list of all the posts or pages that are on your site to link to it, to do inner links. That is actually quite nicely done. But we will talk about it when it&#8217;s out again. You will find quite a few things will be published right around that. The about page and then marketing is working on their releases for that.</p>\n\n\n\n<p>We also had the Gutenberg 13.1 release. It was released on yesterday, also April 27th, and release lead Glen Davies. Thank you so much. How is that release experience when you do it as a developer?</p>\n\n\n\n<p><em>Glen Davies</em>: Oh, it was my first time at it so I was sort of a newbie. Luckily the documentation&#8217;s pretty straightforward and I was sort of lucky that it was a reasonably small release. Because 13.0 was the release that went into WordPress six. So doing the release, that&#8217;s going to go into the WordPress, call releases, usually a big job. I was lucky I got the one just after that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And I think only a few PRs were backboarded to 6.0. There were still some buck fixes or so.&nbsp;</p>\n\n\n\n<h3><strong>Enhancements</strong></h3>\n\n\n\n<p>So what brings&#8230; We have definitely someone had enhancements coming, even it&#8217;s a small release, but it&#8217;s the design tools for borders. There&#8217;s a new border control component in the block support thing. So it can also be configured with the theme.JSON for individual blocks, like the column blocks you can have in your theme.JSON settings for the blocks. You can say a standard, a variation, on the border configuration, which is really nice. There is also for the duotone. There are two things for duotone on&#8230; There&#8217;s a new icon for the filter on the image block. And the other one was that the duotone&#8217;s now render in the site editor when you use it on the placeholder. So if you have a featured image placeholder or other media and text placeholder or something like that and use the duotone for it will show you in the editor as well.</p>\n\n\n\n<p><em>Mary Job</em>: The block library also had some enhancements. I&#8217;m excited about the comments, the fact that you can now style the comments area, because I know in the past, when I first started creating WordPress sites people would tell you, ah, no, the comments section is too boring. Can you like make it brighter? Or can you change? So this is actually interesting because you don&#8217;t have to use third party. Well, you can still use them if you want. But having it in Chrome means that you don&#8217;t have to go allowed to start a comments area on blog post. The category section also had an enhancement. There&#8217;s now an option to show or how I entered categories previously in the past. If her category has no post, it was eating. But now you can now choose to show or hide categories that are empty. So that&#8217;s also interesting. Yeah. This particular one, this, the styles, this enhancement styles. I didn&#8217;t quite get this. You mentioned duotone tone earlier. Can you expand on this one? Because I tried reading about it, but I wasn&#8217;t quite sure what it was referring to here.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. You can do a preset for the dual tone in the theme.JSON. so when you have a duotone filter for the image, you can set that with a theme.JSON is and reference foreground and secondary for instance, since colors. So you can. That only that is available. A lot of people have real stomach ache when they envision that people who edit a site can come up with all different kind of crazy combination for the duotone or for the gradient. Having a way to standardize that for a whole site that is now in the theme.JSON You can switch off the duotone settings then for the editor, but still have duotone settings for the images if you allow that. Does it make sense?</p>\n\n\n\n<p><em>Mary Job</em>: Yes. Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Okay, good. Yeah. Some on the other styles changes, there were all a little bit more cosmetic. Do you have anything that you want to point out there Glen or Mary?</p>\n\n\n\n<p><em>Glen Davies</em>: Probably just highlighting again, what you&#8217;ve already mentioned that the borders, it&#8217;s great that there&#8217;s now the ability to set each of the borders separately. Both in the U both in the UI and in the theme.JSON.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Did you test this specifically as well? Because I have a question on it and there was a question that&#8217;s actually on the release post, is there a way to also get some styles in there, like a double or outset or dotted line in that?</p>\n\n\n\n<p><em>Glen Davies</em>: Yeah. So you can change it to solid dotted. Adding it to columns is quite good I think, cause it&#8217;s quite a good showcase of it. Because columns is an obvious place where you only want one border as a division between each of the columns.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Glen Davies</em>: So I think it was quite a good block to get that into to sort of showcase 101 borders and its specific edge.</p>\n\n\n\n<h3><strong>Accessibility</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Absolutely, yeah. And then there were also quite a few changes, accessibility improvements, that included the resolve around the focus loss problems that have been experienced for the installing blocks, from the directory or creating pages from a link. Or there were quite a few situations where all of a sudden the block editor would lose focus and a screenwriter wouldn&#8217;t know where to be and how to handle that. And so that there have been quite a few fixes there.&nbsp;</p>\n\n\n\n<h3><strong>Documentation</strong></h3>\n\n\n\n<p>And then documentation, what I saw was that you fixed some of the&#8230; Was it in this release that you, Glen, wrote about the deprecated locks that you fix up the documentation for that. Was this for this release?</p>\n\n\n\n<p><em>Glen Davies</em>: No, I think there was a couple of releases ago.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Okay. But that definitely helps some of the developers to figure out how to deprecate the versioning for static blocks you, which is still a little bit cumbersome.</p>\n\n\n\n<p><em>Glen Davies</em>: Yeah. That was one big learning from the gallery block that forced me to work out how deprecations work. And that&#8217;s slightly different there how duplications and migrations work in software in general.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And I wish they had kind of written a blog post about your learning and the frustrations about it because I think that&#8217;s what a lot of developers have in the community as well.</p>\n\n\n\n<p><em>Glen Davies</em>: Yeah. Maybe I might, might take the time to do that. Yeah. Our team&#8217;s set up a blog to try and document some of our experiences. So perhaps I&#8217;ll take the time to go back and go through that. There is some discussion about improving the duplication migration process.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. But there&#8217;s nothing yet kind of that surface that trade.</p>\n\n\n\n<p><em>Glen Davies</em>: No, there&#8217;s, there&#8217;s an issue and there&#8217;s a bit of discussion about it. An agreement that&#8217;s a little bit confusing,</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: A little bit confusing. I think that&#8217;s the understatement of the year.</p>\n\n\n\n<p><em>Glen Davies</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: You&#8217;re not English, are you?</p>\n\n\n\n<p><em>Glen Davies</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. No, but there were quite a few documentation updates in this release. one was about the new ancestor property for the block meta data. And the other one was about the inserter argument for the patterns where you can hide patterns that are with your theme to set the inserter setting to false, then users won&#8217;t be able to find the pattern in your, in the inserter, but you can still use it on tablet and tablet parts. And that is documented, it&#8217;s also documented the updates for the theme.JSON file has been updated as well as documentation around the individual block locking sections.</p>\n\n\n\n<p>So if you are interested in that and want to do that&#8217;s the state of the art kind of on how that is, check out the documentation and follow the links.&nbsp;</p>\n\n\n\n<h3><strong>Code Quality</strong></h3>\n\n\n\n<p>So in the release post to get to that code quality, is there anything that&#8217;s stood out to you that you feel, oh, that&#8217;s a neat thing.</p>\n\n\n\n<p><em>Glen Davies</em>: No, probably more on the testing side of it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: The testing, yeah.</p>\n\n\n\n<p><em>Glen Davies</em>: Which is sort of related to code quality and that&#8217;s the migration to using playwright.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. How is that going?</p>\n\n\n\n<p><em>Glen Davies</em>: That&#8217;s making good progress and it&#8217;s going to make the writing at the end to end test and debugging of them Significantly easier. So it&#8217;ll be good ones that&#8217;s completed.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. It would be really interesting to see kind of a primer on how to use playwright and how to write the test. Not only for of course for the Gutenberg project, but definitely for contributors on the Gutenberg project, but definitely also if you want to use it also for their own project yeah. To how to get into that testing part.</p>\n\n\n\n<p><em>Glen Davies</em>: Yeah. Which I&#8217;m sure that&#8217;ll be coming once once the the whole migration project&#8217;s finalized and underway.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I can imagine there&#8217;s quite a foundational foundational work that needs to be done for that can be migrated. Totally.</p>\n\n\n\n<p>I think that was&#8230; So anything we forgot? Kind of&#8230; There&#8217;s some developer experience for the local environment. Now you can have a environment and core environment variable, and I&#8217;m thinking that&#8217;s probably about the version. And then the create block scaffolding tool has been updated to fix all the warnings and errors that are reported during the scaffolding and validation. So it&#8217;s all a little nicer now. All right. Yeah.</p>\n\n\n\n<p>So that concludes our session of what was released, or the session part.&nbsp;</p>\n\n\n\n<h3><strong>Whatâ€™s in Active Development or Discussed</strong></h3>\n\n\n\n<p>And we can now go and discuss what&#8217;s active in development, what&#8217;s work in progress and what people can look forward to. One is APR called a visualizer for the padding. Riad is working on that. So when you are changing the padding for a block, it shows you a visualize representation, a visual representation of that, how it looks in the editor around the block. If you say 20, how does that look? 20 pixels or one for that side. Because there&#8217;s a lot of&#8230; There&#8217;s padding, there is margin. And then there is block gaps and all those three things, if you are using that in the side bar, can be confusing. Where did I change things? And if you have a visualizer, it&#8217;s very obvious on how you change things and those changes are easily then replicated or even controlled. So that&#8217;s definitely something to look forward to. I&#8217;m not quite sure how far that is. Definitely&#8230;. Oh, it has been merged. So this will come in a 13.2 version, Gutenberg version. And it&#8217;s the same version that will have the persistent preferences and user meta. And that was horah on Twitter when one of the developers discovers that that is coming, we have all been waiting for.</p>\n\n\n\n<p>What am I talking about? I&#8217;m talking about the welcome guide, popping up on all kinds of different situations. When you have a new browser, you have a new computer, you have just changed the browser settings. And here comes welcome to the block editor. You have been using it for four years and it still wants to welcome you. It was kind of an annoying thing. It&#8217;s also&#8230; That&#8217;s one of the obvious things, but the other part is also your settings for the top toolbar. When you are in the editor and you go from block to block, there&#8217;s a block toolbar. And sometimes that&#8217;s a little bit disconcerting for content editors. You can actually glue it up to the top, through the settings menu. And it was also just stored in local storage on the browser and you had to do it again over and over as well.</p>\n\n\n\n<p>Now this is changing. With 13.2, those settings will be stored in the user meta data, in the database. It will remember. You go away and you come back. It will remember. And it&#8217;s yeah&#8230; Quite a few people who say, okay, it&#8217;s about time that it comes. I know why it was a little bit delayed because these are settings for the editor and there are editors. There&#8217;s a widget editor, there&#8217;s a site editor, there&#8217;s a template editor, there&#8217;s a block editor and a post editor. There are a lot of editors that first needed be unified before you could actually standardize the persistence for it. But yeah, three years ago there wasn&#8217;t a widget editor. There wasn&#8217;t a site editor. So back then, I think the developers didn&#8217;t have enough information to make that a good way to start out. So waiting was far probably a good decision to not get into technical depth with backwards compatibility promises and all that. Yes. But we&#8217;re all happy about that.</p>\n\n\n\n<p>Sarah Gooding has the story already WP Tavern. We share the links, of course, on the show notes. And the last thing that I have&#8230; So there is also&#8230; So when you use a theme and you edit it with the global styles or with the styles thing, all the information is stored in the database. Only when you export it, all the changes will come into the theme.JSON. In the works is a safe theme edits from the site editor to the theme files. When it&#8217;s in a so-called developer mode, making it a little bit easier for designers to visually update a theme and then have that, and then update the theme files per se, be it the JSON file or template power or template files.</p>\n\n\n\n<p>So it can be export or can be reused. But it doesn&#8217;t have to be an export. And then there will just be a safe button and you can switch it off with a development flag mode true or false. That&#8217;s also in the works. We will share the PRS for it. So you can comment on it or chime in the show notes.</p>\n\n\n\n<p>Channing Ritter has updated the design share on the make block for design, and you will see some things that they&#8217;re working on with the Figma files or Figma links. One of them is also it&#8217;s the element state exploration. How can the interface look when you want to change the hover or active setting for elements like a menu or a link or something like that.</p>\n\n\n\n<p>Mel Joyce says up the did some work in Block Patterns in Figma. There&#8217;s also a discussion of revising the global style panels. What I like is, or what I really pleasantly surprised on how far the work has been done, is the design for documentation and handbook pages as Stella Raella has that, has the Figma file shared with the design team. And it&#8217;s all in the design of the new news theme. I don&#8217;t know if you saw the news scene webpress.org/news has had a recent design and now all the designers are working on replicating that for the rest of workforce.org and make.org. So it&#8217;s really cool.</p>\n\n\n\n<p>Anything else? Glen, do you want to&#8230; What are you working on now? Is it that you, the race is out and you&#8217;re working on certain projects?</p>\n\n\n\n<p><em>Glen Davies:</em> The team that I&#8217;m currently on, we&#8217;re working on global styles and design tools. So the big project we are currently working on is something called the style engine. Which is sort of a way of trying to bring together all the different styling elements of a block. Because at the moment it&#8217;s a bit&#8230; The styles in quite a few different places, particularly with static blocks, There are some that actually are applied to the static content, there&#8217;s class names that are applied, there&#8217;s inline styles that are applied. The sort of Nirvana would be that the actual static block content had very little styling actually saved within it. There would just be some meta information and the styles are then applied at the server. And it could be a lot clearer than about which styles of output with the page based on what block content was there.</p>\n\n\n\n<p>At the moment, there&#8217;s a lot of redundant style content has to go with the page to cover all the possibilities of blocks that might be there. So there&#8217;s a lot of work around trying to rationalize that and say, well, let&#8217;s only output the CSS that&#8217;s actually needed for this particular page content.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I know that some theme developers are really having a hard time with a few block changes. Every release there is a change that they have to update their themes and either take away classes or find classes. All of a sudden it&#8217;s all overwritten, both important kind of thing.</p>\n\n\n\n<p><em>Glen Davies</em>: Yeah, there&#8217;s some discussions going on. There&#8217;s been some really good input from theme authors about what the difficulties they&#8217;re having. So that&#8217;s feeding in really well to this around the style engine and there&#8217;s all those ongoing questions about backwards compatibility and the API. It&#8217;s a reasonably big project. At the moment there&#8217;s sort of no definite timeframes. We have the basic style engine in place, but then we&#8217;ve got to go through the process of how do we move all of the existing blocks to use this new way.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Styles. Yeah. This new way and what to do with the old ones.</p>\n\n\n\n<p><em>Glen Davies</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Because the static blocks, they don&#8217;t update themselves. You need to touch them before they update themselves.</p>\n\n\n\n<p><em>Glen Davies</em>: Yeah. It&#8217;s a needed project, but it&#8217;s a big project and it&#8217;s a matter of working out how do we stage it, rather than go away for two years and work on the style engine. By the time everything&#8217;s moved on. It&#8217;s the usual thing with software development. What are the little pieces we can do to actually keep this thing moving and release pieces along the way create a massive project that never actually completes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, no, I get it. But it&#8217;s good. I know there was some discussion and we had also discussed it here with the proposal from Mark Road Wiley. I think he did some foundational thinking about that and there was quite a good summary, but also the ideas that he had in terms of how that could be input or what a theme developer would need. That I think that post really informed about that to make it as close as possible for how theme developers were going.</p>\n\n\n\n<p><em>Glen Davies</em>: Yeah. That generated some really good discussion. And what we&#8217;ve done is split that up into about four different areas. Because there was some quite of distinct parts within that. So we&#8217;ve tried to split that into separate issues to deal with each of them separately. So hopefully some progress will be made.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent.</p>\n\n\n\n<p><em>Glen Davies</em>: And coming releases on this.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I&#8217;m looking forward to that to maybe write about things that work. I have some deaf notes that I could wrangle about soon.</p>\n\n\n\n<p>Okay. So I think we are at the end of the show. Glen, if somebody wants to get in touch with you and wants to reach you, what would be the best way to do that?</p>\n\n\n\n<p><em>Glen Davies</em>: At glendavies.nz</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right. And you also&#8230; Are you often on the WebPress slack community.</p>\n\n\n\n<p><em>Glen Davies</em>: Oh yeah. Yeah. All WebPress slack. Same. Glendavies.nz. See me there.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Okay. Thank you</p>\n\n\n\n<p><em>Mary Job</em>: Before we let Glen go, I hope you don&#8217;t mind my asking. So my question again is on your background. I hope you don&#8217;t mind my asking. In my part of the world, we have a lot of people who are learning development actively. It&#8217;s like an escape over here. &#8220;Okay, if I can&#8217;t get a normal day job, maybe I can learn development and make something out of that.&#8221; If you were to meet somebody who is starting to learn development, is in their first or second year of learning, would you recommend WordPress development to such a person? Is this something you would say, okay, maybe you could actually build a career in WordPress development? Do you think that&#8217;sâ€¦? Because people are very skeptic hearing some WordPress developers like, what&#8217;s a WordPress developer. It&#8217;s not common. It&#8217;s not like everywhere as opposed to other developments languages.</p>\n\n\n\n<p><em>Glen Davies</em>: Yeah. I definitely recommend it particularly the likes of the Gutenberg project. So if you can get involved in the project and pick up some small issues, there&#8217;s some reasonably simple things that come through. And if you can start putting up some PRs with some simple fixes, a reasonably easy way to get into a development community. And then if you start getting some of your PRs accepted. It&#8217;s a pretty friendly and accepting developer community. There&#8217;s some other developer communities where you might put up some simple PRs and get lambasted for doing things the wrong way. But from my experience, you&#8217;re not going to get that in the WordPress community. You&#8217;re just going to generally get help and support. So I think that there would definitely be a way to actually get into development in a bigger way. Plus it&#8217;s real life and it&#8217;s a real project. So can&#8217;t help but improve your CV or your resume if you can say, &#8220;Well, I&#8217;ve been actively involved in this project for the last year and here&#8217;s the 10 PRs that I&#8217;ve had accepted and merged.â€</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It&#8217;s a very good question. Thank you, Mary. And I like the answer. There&#8217;s actually a label in the Gutenberg repository that says &#8216;Good First Bugs&#8217;. So scouting through those or just pulling up and see if something moves you or something you were interested in is definitely, yeah. Try to pick that up. There are also other ways to start contributing to WordPress. I always have to say that it doesn&#8217;t have to be code. But if you&#8217;re a developer code is definitely one thing. But it&#8217;s also could be testing quite a bit. So there are also labels says &#8220;needs testing&#8221; means, okay, we need some more reports and what could configuration or something like that. Is that reproducible, especially for the bug reports. So the developer who picks that up has a better inkling on how to attack that. That&#8217;s also a good way to get started if you don&#8217;t know the project yet. I think doing it from the user point and tested for some bugs is definitely a good way to get in there. Yeah, definitely.</p>\n\n\n\n<p>All right. Anything else? How can people reach you, Mary? Anything from your side that you want to announce and let people know, our listeners know?</p>\n\n\n\n<p><em>Mary Job</em>: Not a lot. We recently had a diverse speaker training group, all the meet up for the leaguers, some citizen in Nigeria, and also here. That was interesting. They had a lot of good feedback. Like I said, we&#8217;re actively trying to grow the WP Africa community. We want, I personally want to get to know people who are doing WordPress on this continent and maybe we can have chat that wordcam.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And if you are listening from Africa and you want to be part of it, WPafrica.org is the website with all information about it. You can also get Mary on Twitter. MaryoJob is the Twitter handle.</p>\n\n\n\n<p>As always, the show notes will be published on Gutenbergtimes.com/podcast. This is episode 66. If you have questions or suggestions or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. That&#8217;s<a href=\"mailto:changelog@gutenbergtimes.com\"> changelog@gutenbergtimes.com</a>.</p>\n\n\n\n<p>Well, thank you so much for joining us, Glen. It was a great pleasure to have you and talk to you. And thank you, Mary, for being with me again on this podcast. And it&#8217;s for me, goodbye.</p>\n\n\n\n<p><em>Mary Job</em>: Thank you.</p>\n\n\n\n<p><em>Glen Davies</em>: Goodbye.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Goodbye. Take care.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 01 May 2022 03:43:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"WordPress.org blog: People of WordPress: Meher Bala\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12706\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wordpress.org/news/2022/04/people-of-wordpress-meher-bala/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14211:\"<p>In this series, we share some of the inspiring stories of how WordPress and its global network of contributors can change peopleâ€™s lives for the better. This month we feature a Indian-based WordPress developer and long term contributor on how it helped her find a career and a local and global community to belong to.</p>\n\n\n\n<img width=\"1024\" height=\"515\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/04/meher-1.jpg?resize=1024%2C515&ssl=1\" alt=\"Meher pictured against the backdrop of a window overlooking trees \" class=\"wp-image-12728\" />\n\n\n\n<p><strong>WordPress is an inspiration to Meher Bala, a frontend web developer and community builder from India. From using the software as a basic website tool to helping entrepreneurs and good causes around the world fulfill their aspirations, she has overcome personal barriers and now aims to inspire others.</strong></p>\n\n\n\n<p>Meher found her vocation and learned new skills through WordPress. She also discovered a way to encourage other women to consider careers in IT.&nbsp;</p>\n\n\n\n<h2>Opening the doors to a career in technology</h2>\n\n\n\n<p>As a child, Meher was diagnosed with dyslexia (difficulty in reading the written word) and dyscalculia (difficulty in comprehending numbers and mathematical functions). With the support of her parents and a tutor, she was able to overcome this learning obstacle. She developed coping techniques and a determination to work to overcome challenges as they appeared later in life.</p>\n\n\n\n<p>In school, she got an opportunity to replace one subject with computer studies as an alternative. This proved to be an eye-opener to future career possibilities.&nbsp;</p>\n\n\n\n<p>She began to research not only what the internet had to offer but also how it worked, including the new and fascinating concepts of email and websites. Her father bought the familyâ€™s first desktop computer so she could do her research at home.</p>\n\n\n\n<p>Meherâ€™s father wanted to turn her love for computers into something that would serve her well in the future. In 2005, he enrolled her in a short computer course from a global IT training provider. The course tutor was so impressed with her performance, she was advised to enroll in a four year software development course.</p>\n\n\n\n<p>That meant she had studied the software development course alongside her higher education college course. Looking back, she enjoyed the dual challenge of the degree course in commerce, and the experience prepared her well to keep learning software while working as a developer. Within three years, she had learned C#, C, C++, HTML, Java, and .NET. </p>\n\n\n\n<p>After graduation, she was in a dilemma to choose between commerce and IT. What to choose? She had a compulsory one-year technology internship to complete, and her choice of focus for that year would prove to be a defining moment.</p>\n\n\n\n<p>In 2009, on her birthday, Meher was offered an internship. On the first day of the internship, she was introduced to WordPress. Her initial assignment was to change the look and feel of the WordPress dashboard â€” in just six hours. But there was a problem &#8211; she had never worked with WordPress before!</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>&#8220;I stared at the whiteboard and thought that task given was impossible and difficult to meet the deadline. I wondered if my boss was joking and did not know then what you could do with WordPress as a developer and how it could slot into your toolbox. It opened my eyes.&#8221;&nbsp;</p><cite>Meher Bala</cite></blockquote>\n\n\n\n<p>Meher used her research skills to know more about using WordPress. She found a plugin that would help her achieve her task. She met the deadline and it ingrained an interest that she would never lose. </p>\n\n\n\n<h2>Re-discovering WordPress</h2>\n\n\n\n<p>Five years after her initial WordPress experience, Meher was assigned to lead an international project in WordPress.&nbsp;She was hesitant â€” she had lost touch with the CMS during that five years, but the project was a great opportunity to become a team leader and lead from the front.&nbsp;</p>\n\n\n\n<p>She decided to update her WordPress skills, relying again on the strength of her research skills and determination. In the process, she also taught her team all about WordPress, inspiring many of those members to continue to develop their WordPress skill set.</p>\n\n\n\n<p>The success of that project was a pivotal moment for Meher and a new dawn as a developer specializing in WordPress.</p>\n\n\n\n<p>As a team lead, Meher soon found it was not possible to always have all the answers straight away. She found internet searches gave practical solutionsâ€”but rarely explained the theory behind it.</p>\n\n\n\n<p>So she went looking for a WordPress group to help her expand the scope and depth of her knowledge.</p>\n\n\n\n<h2>Finding the community and its developer learning opportunities </h2>\n\n\n\n<img width=\"999\" height=\"667\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/04/dsc_00345.jpg?resize=999%2C667&ssl=1\" alt=\"Meher at WordCamp Nagpur in 2017\" class=\"wp-image-12762\" />Meher enjoying being part of <em>WordCamp Nagpur in 2017</em>\n\n\n\n<p>In 2015, while browsing Facebook, Meher came across an advertisement for something called WordCamp Mumbai, an event that had taken two days before. She did a little digging to learn what a WordCamp was, and about the people behind it. She took the plunge and joined the WordPress Mumbai Meetup group.</p>\n\n\n\n<p>Her first Meetup experience was not love at first sight. She felt the topics were for advanced users, and the timing late in the evening made it difficult to attend.</p>\n\n\n\n<p>But a few months later, the Meetup addressed a topic that could help her resolve an issue in one of her current projects. She made the effort to show up and came away with a number of important tips.&nbsp;The speaker had taken the time to speak to individual attendees. When he came to Meher, she took the opportunity to ask a couple of questions about her project issues. </p>\n\n\n\n<p>Thereafter she went to more Meetups and got to know the people behind this group, just as they started talking about WordCamp Mumbai 2016.</p>\n\n\n\n<h2>A WordCamp adventure</h2>\n\n\n\n<img src=\"https://i1.wp.com/wordpress.org/news/files/2022/04/wcm16.jpg?resize=600%2C800&ssl=1\" alt=\"Meher pictured with the WordCamp Mumbai 2016 sign \" class=\"wp-image-12758\" width=\"600\" height=\"800\" />Meher discovering <em>WordCamps in Mumbai in 2016</em>\n\n\n\n<p>Meher expressed interest in being a part of the coming&nbsp; WordCamp Mumbai and started in an entry-level role with basic responsibilities.</p>\n\n\n\n<p>At first, she thought WordCamp was a formal conference with about 100 people. So on the first day of WordCamp Mumbai 2016, she was surprised to see so many WordCamp enthusiasts attending and enjoying such a relaxed and friendly conference.</p>\n\n\n\n<p>After that great experience, Meher went to many more meetups and did more volunteering. She started taking on responsibilities in the coming WordCamps and getting to know the different aspects of the camp.&nbsp;</p>\n\n\n\n<p>In the following years, at each WordPress, she took up a new role like speaker vetting, sponsors, and volunteer coordination. This allowed her to know more about what an organizer needs to do, from planning to execution, to make WordCamp a successful event.</p>\n\n\n\n<img width=\"900\" height=\"600\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/04/wcmumbai-17.jpg?resize=900%2C600&ssl=1\" alt=\"WordCamp Mumbai 2017 group photo of the team\" class=\"wp-image-12765\" />With the team at <em>WordCamp Mumbai in 2017</em>\n\n\n\n<p>Meher is grateful for her WordPress journey which was fostered in the Mumbai community. It has been filled with beautiful surprises.&nbsp;</p>\n\n\n\n<p>When people ask why sheâ€™s chosen to specialize professionally in WordPress, Meher says WordPress is easy to teach a non-technical person, yet it is still highly customizable. Being a WordPress developer has given her the opportunity to work&nbsp; remotely for global web development companies that let her think out of the box. And she learns new skills with every release.</p>\n\n\n\n<h3>The community makes WordPress special</h3>\n\n\n\n<p>Meher says that some of her most memorable WordPress moments have revolved around special friendships, trying new things, and participating in community building.&nbsp;</p>\n\n\n\n<p>WordPress has let her explore different parts of India, make new friends locally and internationally, and encourage women to be a part of meetup groups and events across India.&nbsp;</p>\n\n\n\n<p>One of Meherâ€™s biggest dreams was to lead WordCamp Mumbai as a lead organizer and show others what could be achieved by working together in open source. In 2019, she did just that and has volunteered at international WordCamps and meetups since.</p>\n\n\n\n<img width=\"1024\" height=\"515\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/04/wc-19.jpg?resize=1024%2C515&ssl=1\" alt=\"Meher speaking at WordCamp Mumbai 2019\" class=\"wp-image-12731\" />Taking to the stage at WordCamp Mumbai in 2019\n\n\n\n<p>As part of her enthusiasm for sharing the opportunities WordPress can give people, especially women, she has given time to co-organize two global <a href=\"https://wptranslationday.org/\">WordPress Translation month long events</a> and contributor events in India.&nbsp;&nbsp;&nbsp;</p>\n\n\n\n<p>Meher said: â€œI was first introduced to translation at one of the meetups which was organised to support the WordPress Translation Day. I realized this was another way to support my local communities and bring the power of WordPress to them by contributing in Gujarati and Hindi. I did not imagine I would a few years later be a global organizer for the event itself!â€</p>\n\n\n\n<p>With her commitment to ongoing learning as a developer and to model what she believes about the value and community growth opportunities of open source, Meher has given time and energy to the Marketing Team, where she has been a Team Rep, to the Training Team, and to the Core Team contributing to multiple releases.&nbsp;</p>\n\n\n\n<h2>The developer adventure with WordPress is unlimited</h2>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>At the start of my software developer journey, I always thought the C++ and Java were the only skills you required to excel in your career. From the time I started exploring WordPress in depth, I realized the potential and the power of WordPress in web development.</p><cite>Meher Bala</cite></blockquote>\n\n\n\n<p>Being a part of the WordPress community, Meher learned that there is so much more than just building blogs on WordPress. She started exploring different features of WordPress, created her first theme, and eventually specialized as a frontend specialist.</p>\n\n\n\n<p>Meher now works as a consultant and front end developer with an international agency specializing in WordPress. Asked what she thought was the best thing about being a WordPress developer, Meher replied: &#8220;Through WordPress, I have an opportunity to build unique out of the box websites and work&nbsp;remotely for global web development companies that encourages you to think out of the box. There is always opportunity to continuously advance my coding skills and learn new techniques with every release.&#8221; </p>\n\n\n\n<p>She believes that there is no limit to where using the software can take you and what you can combine it with to find solutions to projects big and small.</p>\n\n\n\n<p>If you earn a living from WordPress, her advice is from the heart: try to give back to the WordPress community.</p>\n\n\n\n<p>â€œI am sure you will learn or teach something new and definitely make friends across the world. There is no shame in making mistakes, as you can learn from them and develop your skills further. You can also help others as they build their skills.â€</p>\n\n\n\n<p>Meher added: â€œDonâ€™t let the things you find difficult get in the way of your success.â€</p>\n\n\n\n<h2 id=\"share-the-stories\">Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community.Â Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p>Thanks to Abha Thakor (<a href=\"https://profiles.wordpress.org/webcommsat/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webcommsat</a>), Larissa Murillo (<a href=\"https://profiles.wordpress.org/lmurillom/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>lmurillom</a>), Mary Baum (<a href=\"https://profiles.wordpress.org/marybaum/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>marybaum</a>), ChloÃ© Bringmann (<a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a>), and Meg Phillips (<a href=\"https://profiles.wordpress.org/megphillips91/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>megphillips91</a>) for interviews, writing and image work on this story. Thank you to Meher Bala (<a href=\"https://profiles.wordpress.org/meher/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>meher</a>) for sharing her experiences and to Josepha Haden Chomphosy (<a href=\"https://profiles.wordpress.org/chanthaboune/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chanthaboune</a>) and Topher DeRosia (<a href=\"https://profiles.wordpress.org/topher1kenobe/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>topher1kenobe</a>) for their support of the series. </p>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\"><img width=\"180\" height=\"135\" src=\"https://i1.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" /><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published onÂ </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard.Â </em>#HeroPress </p>\n</div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 30 Apr 2022 09:20:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"webcommsat AbhaNonStopNewsUK\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"Gutenberg Times: How to switch your site to full-site-editing, 69 Themes and WordCamp Europe â€“ Weekend Edition 213\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=21049\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:122:\"https://gutenbergtimes.com/how-to-switch-your-site-to-full-site-editing-69-themes-and-wordcamp-europe-weekend-edition-213/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:23695:\"<p>Howdy, </p>\n\n\n\n<p>It&#8217;s been an interesting week, sorting through all trac and GitHub issues and PRs, and collect all the necessary information to compile the Field Guide for WordPress 6.0. </p>\n\n\n\n\n\n<p>I certainly learned a lot. It takes quite a few contributors, many steps, and a plenty of reading to make sure nothing falls through the cracks. I am not entirely sure, that is actually an achievable goal.</p>\n\n\n\n<p>So much from the WordPress release front, and this week&#8217;s inside baseball reporting, haha. This week <a href=\"https://wordpress.org/news/2022/04/wordpress-6-0-beta-3/\">WordPress Beta 3</a> arrived, and next week WordPress 6.0 Beta 4 will be released, followed shortly by the Release Candidate 1 version. </p>\n\n\n\n<p>To get a quick overview of the <strong>Gutenberg features coming to WordPress 6.0</strong> you can either watch the <a href=\"https://youtu.be/09affdqg0-E\">4 minute video by <strong>Dave Smith</strong></a>, or if you have a need for more detail, the <a href=\"https://www.youtube.com/watch?v=abaaVKl-beM\">22 min video by <strong>Anne McCarthy</strong></a> </p>\n\n\n\n<p>Let&#8217;s see what else is new in the Guten-verse</p>\n\n\n\n<p>Have a wonderful weekend! </p>\n\n\n\n<p>Yours, ?<br />Birgit. </p>\n\n\n\n\n<div class=\"wp-container-8 wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-gutenberg-plugin-13-1-release\">Gutenberg Plugin 13.1 release</a></li><li><a href=\"https://gutenbergtimes.com/feed/#1-gutenberg-for-content-creators\">Gutenberg for Content Creators</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#2-69-block-themes-in-the-word-press-theme-directory\">69 Block Themes in the WordPress Theme Directory</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#3-block-builders-and-gutenberg-tools\">Block Builders and Gutenberg tools</a></li><li><a href=\"https://gutenbergtimes.com/feed/#4-upcoming-word-press-events\">Upcoming WordPress Events</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#4-gutenberg-related-session-on-the-word-camp-europe-schedule\">Gutenberg related session on the WordCamp Europe schedule</a></li><li><a href=\"https://gutenbergtimes.com/feed/#5-social-learning-and-other-events\">Social Learning Meetups</a></li><li><a href=\"https://gutenbergtimes.com/feed/#6-w\">WordCamps and other events</a></li></ul></li></ul></div>\n</div></div>\n\n\n\n\n<h2 id=\"0-gutenberg-plugin-13-1-release\">Gutenberg Plugin 13.1 release</h2>\n\n\n\n<p><strong>Glen Davies</strong> led the release of Gutenberg 13.1. In his release post <a href=\"https://make.wordpress.org/core/2022/04/28/whats-new-in-gutenberg-13-1-27-april/\"><strong>Whatâ€™s new in Gutenberg 13.1? (27 April)</strong></a> he highlighted the following:</p>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2022/04/28/whats-new-in-gutenberg-13-1-27-april/#highlight-1\">Columns block border support</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/28/whats-new-in-gutenberg-13-1-27-april/#accessibility\">Accessibility improvements</a></li><li><a href=\"https://make.wordpress.org/core/2022/04/28/whats-new-in-gutenberg-13-1-27-april/#comments\">Comment block improvements</a></li></ul>\n\n\n\n<p>and <a href=\"https://make.wordpress.org/core/2022/04/28/whats-new-in-gutenberg-13-1-27-april/#minor\">other notable highlights</a>. </p>\n\n\n\n<p><strong>Mary Job </strong>and I had the great pleasure of talking to <strong>Glen Davies</strong> on our latest Episode of the Gutenberg Changelog podcast. The episode will be published over the weekend. </p>\n\n\n\n<p><strong>Justin Tadlock</strong> checked out the new Gutenberg plugin version and shared his insights in this article:  <a href=\"https://wptavern.com/gutenberg-13-1-ships-a-batch-of-improvements-and-implements-a-new-border-design-component\"><strong>Gutenberg 13.1 Ships a Batch of Improvements and Implements a New Border Design Component</strong></a>. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The best way to learn some new features in 13.1, is to heed the latest call for testing from the FSE Program:  <a href=\"https://make.wordpress.org/test/2022/04/28/fse-program-testing-call-14-rallying-recipe-reviewers/\"><strong>Rallying Recipe Reviewers</strong></a>. It &#8220;focuses on taking a few blocks for a practical spin to create a fun, interactive recipe focused site that has a customized commenting experience to rally your recipe reviewers.&#8221; wrote <strong>Anne McCarthy.</strong>  You get to test the experimental new version of the List and Quote blocks and the new set of granular  comment blocks.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In this week&#8217;s <strong><a href=\"https://make.wordpress.org/design/2022/04/25/design-share-apr-11-22/\">WordPress Design Share</a></strong>, <strong>Channing Ritter</strong> shared visuals of some great work in progres across various teams: </p>\n\n\n\n<ul><li>New Duotone Icon,</li><li>Element state explorations (hover, active etc)</li><li>WordCamp block patterns</li><li>Global Styles panel revisions</li><li>Designs for Documentation &amp; Handbook pages</li><li>About Page &gt; header artwork curated by</li></ul>\n\n\n\n<p>I am loving all the designs, especially for Documentation and Handbook pages. They are beautiful: Typography gives a pleasant reading experience and your eyes find quiet through great use of empty space. The designs are based on the new <a href=\"https://wordpress.org/news/2022/02/a-new-wordpress-news/\">News Theme</a> by <strong>Beatriz Fialho</strong>, and are augmented by <strong>Estela Rueda</strong> </p>\n\n\n\n<h2 id=\"1-gutenberg-for-content-creators\">Gutenberg for Content Creators</h2>\n\n\n\n<p><strong>Carolina Nymark</strong> posted a indepth tutorial and checklist on <a href=\"https://fullsiteediting.com/site-creators/switch-your-website-to-full-site-editing/\"><strong>How to switch your website to full site editing</strong></a>. She listed her recommendations of what you need to think about before you switch your website to full site editing. These are lessons learned from the first months after WordPress 5.9. Nymark also wrote about what precautions and steps you need to take and how to set up your full site editing theme after the installation. She also provides a list of popular plugins that work with full site editing.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Coming in Gutenberg 13.2 and WordPress 6.1:  <a href=\"https://wptavern.com/coming-in-gutenberg-13-1-users-editor-preferences-will-be-stored-in-the-database-improving-persistence-across-sessions\"><strong>Usersâ€™ Editor Preferences will be stored in the database, improving persistence across sessions</strong></a> &#8211; We all have been waiting for this! Sarah Gooding has the scoop for you. Now more, annoying pop-up of the Welcome Screens. It will now remember. Gutenberg 13.2 will be released May 11, 2022, WordPress 6.1 is schedule to be released in October 2022. </p>\n\n\n\n<p>Building with Blocks on WPTavern: <a href=\"https://wptavern.com/building-a-polaroid-image-block-style\"><strong>Building a â€œPolaroidâ€ Image Block Style</strong></a> with Justin Tadlock</p>\n\n\n\n<h3 id=\"2-69-block-themes-in-the-word-press-theme-directory\">69 Block Themes in the WordPress Theme Directory</h3>\n\n\n\n<p><a href=\"https://wordpress.org/themes/tags/full-site-editing/\">There are now 69 Themes in the WordPress Theme Directory</a>. </p>\n\n\n\n<p>The 7 newcomers are: </p>\n\n\n\n<ul><li><a href=\"https://wordpress.org/themes/xidea/\">Xidea</a> by&nbsp;xideathemes</li><li><a href=\"https://wordpress.org/themes/mcms-lite/\">mcms Lite</a> by Roland Farkas</li><li><a href=\"https://wordpress.org/themes/sampler/\">Sampler</a> By&nbsp;uxl</li><li><a href=\"https://wordpress.org/themes/gutenify-store/\">Gutenify Store</a> by&nbsp;Gutenify Dev</li><li><a href=\"https://wordpress.org/themes/photology/\">Photology</a> By&nbsp;Jegstudio</li><li><a href=\"https://wordpress.org/themes/blockpress/\">Blockpress</a> by&nbsp;MotionBlocks</li><li><a href=\"https://wordpress.org/themes/charta/\">Charta</a> By&nbsp;ThemeZee</li></ul>\n\n\n\n<img /><em>Screenshot latest Block Themes for FSE in WordPress Directory</em>\n\n\n\n<p><strong>Justin Tadlock</strong> took <a href=\"https://wptavern.com/a-look-at-twenty-twenty-twos-upcoming-global-style-variations\"><strong>A Look at Twenty Twenty-Twoâ€™s Upcoming Global Style Variations </strong></a>&#8220;If I am being honest, I feel like I have been waiting for this my entire career in the WordPress space. I think I have always known I have wanted it without always being able to verbalize it.&#8221; he wrote. </p>\n\n\n\n<p class=\"has-border-background-color has-background\"><a href=\"https://gutenbergtimes.com/how-to-disable-theme-features-and-lock-block-templates-for-full-site-editing-in-wordpress/\"><strong>How to disable theme features and Lock Block Templates for Full-Site Editing in WordPress</strong></a> on Gutenberg Times</p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 id=\"3-block-builders-and-gutenberg-tools\">Block Builders and Gutenberg tools</h2>\n\n\n\n<p><strong><a href=\"https://twitter.com/corinaschedler\">Corina Schedler</a></strong>, front-end developer at the European agency <a href=\"https://required.com/\">Required</a>, shared how they <a href=\"https://required.com/en/the-use-of-wordpress-full-site-editing-in-a-customer-project/\"><strong>use of WordPress full site editing in a customer project</strong></a>. Learn more about their processes and how the various parts of Full-Site Editing enhance the customer experience. As a side note, I also learned from Schedler&#8217;s post that the newest version of the multi-language plugin, <a href=\"https://polylang.pro/its-official-polylang-3-2-is-available/\"><strong>Polylang Pro</strong></a>, is now compatible with Full-site editing and provides a language switcher for the navigation block.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Our fellow WordPress podcaster, <strong>Nathan Wrigley</strong> over at <a href=\"https://wptavern.com/podcast/24-aki-hamano-on-building-useful-blocks-for-fun\"><strong>WPTavern Jukebox podcast</strong></a>, talked to <strong>Aki Hamano</strong>, a plugin and freelance developer from Japan. Hamano has some great blocks in the repository: 3 years ago he created the <a href=\"https://wordpress.org/plugins/richtext-extension/\">RichText extension </a>plugin, when Gutenberg only had rudimentary color, spacing or border controls. Another of Hamano&#8217;s plugins is the <a href=\"https://wordpress.org/plugins/flexible-table-block/\">Flexible Table Block</a>.&nbsp;</p>\n\n\n\n<p>The most amazing block is his <a href=\"https://wordpress.org/plugins/piano-block/\">Piano block</a>, that adds a musical instrument to your editor screen and you can take a break from dense content creation and make some music in between. It doesnâ€™t save anything or show up on the front end. Itâ€™s just really a fun project.&nbsp;</p>\n\n\n\n<p>Wrigley and Hamano, also talked about the developer journey of learning and building blocks.&nbsp;I found it quite entertaining to listen to them. </p>\n\n\n\n<p><strong>Justin Tadlock</strong> wrote about the piano block in detail: <a href=\"https://wptavern.com/play-the-piano-and-other-instruments-via-the-wordpress-block-editor\"><strong>Play the Piano and Other Instruments via the WordPress Block Editor</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Munir Kamal</strong>&nbsp;built a great tool for site builders:&nbsp;<a href=\"https://www.youtube.com/watch?v=tFaq6lqSURo&t=24s\" target=\"_blank\" rel=\"noreferrer noopener\">Build Full Page using WP Patterns by GutenbergHub</a>. It&#8217;s a separate web app that allows the user to assemble a page layout from WordPress Directory Patterns, rearrange things and then copy code to use on a site. It&#8217;s a simple utility, that streamlines the flow of creating page layouts with just a few clicks. </p>\n\n\n\n<p>What makes it so intriguing is that it keeps track of the Patterns as a whole when moving them around or deleting them on the canvas. </p>\n\n\n\n<p>Handling Patterns as a whole in the editor is on <a href=\"https://make.wordpress.org/core/2022/01/26/preliminary-roadmap-for-6-0/\">the roadmap for WordPress</a>, one is coming to WordPress 6.0 with loading patterns when creating a new page for easy access, and also for a later new features that allows users to transform content in one pattern to another pattern. </p>\n\n\n\n<p>Justin Tadlock also took it for a spin. Here is his article: <a href=\"https://wptavern.com/gutenberg-hub-launches-an-online-page-builder-app-using-wordpress-patterns\"><strong>Gutenberg Hub Launches an Online Page Builder App Using WordPress Patterns</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/juanmaguitar\">JuanMa Garrido</a></strong> posted a call for comments on the Make core block and invites you to an <a href=\"https://make.wordpress.org/core/2022/04/27/exploration-to-enable-better-developer-and-visitor-experiences-with-blocks/\"><strong>Exploration to enable better developer and visitor Experiences with blocks</strong></a>. Garrido aims to get more developer involved in find to collect ideas on adding more Interactivity to websites with blocks, and brainstorm path ways to arrive at a standard or best practices to implement those ideas with modern block development. </p>\n\n\n\n<p>This discussion is a continuation of the conversation from last Fall, that started with a <a href=\"https://twitter.com/markjaquith/status/1432461667187765251\">tweet by Mark Jaquith</a> and a Live Q &amp; A with Helen Hou-SandÃ­, Riad Benguella and Mark Jaquith on <a href=\"https://www.youtube.com/watch?v=-PZwfvtkQOM\"><strong>&#8220;Live Q &amp; A: How can we make building custom blocks easier?&#8221;</strong></a>. Michal Czaplinski also shared in the comments his research into <a href=\"https://github.com/WordPress/gutenberg/discussions/38224\">Universal blocks and block hydration</a>. </p>\n\n\n\n<p>Your opinion is important and can make a difference for many people by getting involved and contribute to the discussion. </p>\n\n\n\n<h2 id=\"4-upcoming-word-press-events\">Upcoming WordPress Events</h2>\n\n\n\n<h3 id=\"4-gutenberg-related-session-on-the-word-camp-europe-schedule\">Gutenberg related session on the WordCamp Europe schedule</h3>\n\n\n\n<p>Four tracks for sessions at the same time, it will be hard to decide for each single hour which session to attend. The range of topics is fantastic and there will be session for any particular user. BTW I do not sure the view that there are not enough backend or advanced developer sessions to make a trip feasible. <a href=\"https://europe.wordcamp.org/2022/schedule/\">Check it out for yourself</a>. </p>\n\n\n\n<p>Below is the curated list of sessions, workshops and lightning talks on the Block editor. <a href=\"https://europe.wordcamp.org/2022/schedule/\">Times are display in local time in Porto, Portugal (UTC+1)</a> </p>\n\n\n\n<p>June 3rd, 2022</p>\n\n\n\n<ul><li>Noon &#8211; <a href=\"https://twitter.com/SeanBlakeley\">Sean Blakeley</a>: <a href=\"https://europe.wordcamp.org/2022/session/the-block-pattern-revolution/\">The block pattern revolution</a></li><li>14:00 &#8211; 16:00 Workshop:<a href=\"https://europe.wordcamp.org/2022/session/build-your-first-block-theme/\">Build your first block theme</a> Daisy Olsen</li><li>14:00 &#8211; 15:00 <a href=\"https://europe.wordcamp.org/2022/session/lightning-talks/\">Lightning Talks on Gutenberg</a>.<ul><li>Creating interactive blocks: old, new, and good ways, JuanMa Garrido</li><li>Blockity McBlock Blocks, Oh My! w/ Evan Mullins</li><li>Delivering Personalised Experiences using WordPress, Paul Halfpenny</li><li>Block Themes â€“ The Future of FSE, Imran Sayed</li><li>Extending Gutenberg with SlotFill, Ryan Welcher</li></ul></li><li>16:00 <a href=\"https://europe.wordcamp.org/2022/session/level-up-block-building-skills/\">Level Up Block Building Skills</a> , Greg Ziolkowski</li></ul>\n\n\n\n<p>June 4th, 2022</p>\n\n\n\n<ul><li>9:00 Workshop: <a href=\"https://europe.wordcamp.org/2022/session/creating-a-pre-publish-checklist-for-gutenberg/\">Creating a pre-publish checklist for Gutenberg</a>, Ryan Welcher</li><li>11:00 <a href=\"https://europe.wordcamp.org/2022/session/the-future-of-commerce-in-wordpress-with-full-site-editing/\">The future of commerce in WordPress with Full Site Editing</a>, Darren Ethier</li><li>14:00 <a href=\"https://europe.wordcamp.org/2022/session/a-glimpse-into-the-future-of-wordpress-from-a-frontend-point-of-view/\">A glimpse into the future of WordPress from a frontend point of view</a>  Pablo Postigo</li><li>15:00 <a href=\"https://europe.wordcamp.org/2022/session/growing-the-wordpress-design-system/\">Growing the WordPress design system </a> Tammie Lister</li><li>16:00 Matt Mullenweg, co-founder of WordPress and CEO of Automattic </li></ul>\n\n\n\n<h3 id=\"5-social-learning-and-other-events\">Social Learning Meetups</h3>\n\n\n\n<p><strong>May 2, 2022 3pm EDT / 19:00 UTC</strong><br /><strong><a href=\"https://www.meetup.com/wordpress-social-learning/events/285551597/\">Testing WordPress Together: New Interactivity Features for Recipe Websites</a></strong> w/ Anne McCarthy</p>\n\n\n\n<p><strong>May 4, 2022 -11am EDT / 15:00 UTC</strong><br /><a href=\"https://www.meetup.com/wordpress-social-learning/events/285412406/\"><strong>Creating a Restaurant Website with the Block Editor</strong></a>&nbsp;w/ Wes Theron</p>\n\n\n\n<p><strong>May 5, 2022 &#8211; 2pm EDT / 18:00 UTC</strong><br /><strong><a href=\"https://www.meetup.com/wordpress-social-learning/events/285518202/\">Builder Basics: Working with Templates in Full Site Editing (Part 1)</a></strong> with Nick Diego</p>\n\n\n\n<p><strong>May 9, 2022 3am EDT/ 7am UTC</strong><br /><a href=\"https://www.meetup.com/wordpress-social-learning/events/285413699/\"><strong>Showcasing Content with Query Loops</strong></a>&nbsp;w/ Wes Theron</p>\n\n\n\n<p><strong>May 12, 2022 &#8211; 2pm EDT / 18:00 UTC</strong><br /><a href=\"https://www.meetup.com/wordpress-social-learning/events/285518274/\"><strong>Builder Basics: Working with Templates in Full Site Editing (Part 2)</strong></a> w/ Nick Diego</p>\n\n\n\n<p><strong>May 19, 2022 5pm EDT / 21:00 UTC</strong><br /><a href=\"https://www.meetup.com/wordpress-social-learning/events/285412812/\"><strong>Using the Navigation Block</strong></a>&nbsp;w/ Wes Theron</p>\n\n\n\n<p><strong>May 19, 2022 &#8211; 2pm EDT / 18:00 UTC</strong><br /><strong><a href=\"https://www.meetup.com/wordpress-social-learning/events/285518331/\">Builder Basics: Working with Templates in Full Site Editing (Part 3</a></strong><a href=\"https://www.meetup.com/wordpress-social-learning/events/285518274/\"><strong>)</strong></a> w/ Nick Diego</p>\n\n\n\n<h3 id=\"6-w\">WordCamps and other events</h3>\n\n\n\n<p><em>More and more WordCamps are being scheduled!&nbsp;<a href=\"https://central.wordcamp.org/schedule/\">On WordCamp Central you can view the whole calendar.</a></em></p>\n\n\n\n<p><strong>May 16-20, 2022</strong><br /><strong><a href=\"https://wordsesh.com/\">WordSesh</a></strong><br />A virtual conference. The schedule is fantastic. Among the awesome sessions by brilliant speakers you can find </p>\n\n\n\n<ul><li>Daisy Olsen with her session <strong>&#8220;Block Theme Adoption: A Gradual Approach&#8221;</strong> and</li><li>Rich Tabor with his talk <strong>Bodacious Block Themes: An in-depth Look at this New Era of Theming</strong></li></ul>\n\n\n\n<p><strong>June 2 â€“ 4th, 2022</strong><br /><strong><a href=\"https://europe.wordcamp.org/2022/\">WordCamp Europe</a></strong><br />You can start planning,&nbsp;<a href=\"https://europe.wordcamp.org/2022/schedule/\">the schedule is now available</a></p>\n\n\n\n<p><strong>June 25, 2022</strong><br /><strong><a href=\"https://montclair.wordcamp.org/2022/\">WordCamp Montclair, NJ</a></strong></p>\n\n\n\n<p><strong>June 20 â€“ 24, 2022</strong><br /><strong><a href=\"https://pagebuildersummit.com/\">Page Builder Summit&nbsp;</a></strong>will take place June 20th to June 24, 2022.&nbsp;<a href=\"https://pagebuildersummit.com/sponsors/\"><em>The call for sponsors is still open</em></a>. Sign-up for the VIP list to learn first when tickets are available and the schedule is published. The first sessions and speakers are confirmed. Many talks are more about the business of building sites for others and their tools, then about a specific page builder product. So much good topics and not enough time ? </p>\n\n\n\n<p>J<strong>une 25, 2022</strong><br /><strong><a href=\"https://montclair.wordcamp.org/2022/\">WordCamp Montclair, NJ</a></strong><br />The&nbsp;<a href=\"https://montclair.wordcamp.org/2022/call-for-speakers/\">call for speakers</a>&nbsp;is open only until April 15th, 2022</p>\n\n\n\n<p><strong>September 9 â€“ 11, 2022</strong><br /><strong><a href=\"https://us.wordcamp.org/2022/\">WordCamp US</a></strong>, San Diego, California<br />in-person conference in San Diego.&nbsp;</p>\n\n\n\n<p><strong>February 17-19 2023</strong>Â (tent)<br /><a href=\"https://asia.wordcamp.org/2023/\"><strong>WordCamp Asia</strong></a>, Bangkok, Thailand<br /><strong><a href=\"https://twitter.com/naokomc\">Naoko Takano</a></strong>Â posted a call for organizers<br /></p>\n\n\n\n<p>Featured Image: &#8220;<a href=\"https://www.flickr.com/photos/34399400@N05/6629810149\" target=\"_blank\" rel=\"noreferrer noopener\">Mega Blocks Monsters</a>&#8221;Â byÂ <a href=\"https://www.flickr.com/photos/34399400@N05\" target=\"_blank\" rel=\"noreferrer noopener\">sammynetbook</a>Â is marked withÂ <a href=\"https://creativecommons.org/licenses/by/2.0/?ref=openverse\" target=\"_blank\" rel=\"noreferrer noopener\">CC BY 2.0</a>. found on <a href=\"https://wordpress.org/openverse/\">Openverse</a></p>\n\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 30 Apr 2022 06:07:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"Post Status: The Right Way, the Wrong Way, and the Elusive WordPress Way\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=96779\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://poststatus.com/the-right-way-the-wrong-way-and-the-elusive-wordpress-way/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7511:\"<div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">There are significant differences in the ways plugin owners think about and operate their businesses. This is an opportunity to learn and grow together. </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-drop-cap\">I learned a lot from <a href=\"https://twitter.com/post_status/status/1518994407864684545\">the community discussion on Twitter this week</a> in response to <strong>MemberPress</strong>â€™s handling of users with lapsed support licenses. The specific question we started from spawned a lot of important tangents, but the main issue is really about limits â€” or voluntary self-limitation:</p>\n\n\n\n<p id=\"h-is-it-over-the-line-for-a-commercial-wordpress-plugin-to-respond-to-a-lapsed-support-license-by-locking-users-out-of-the-plugin-s-admin-screens\"><strong>&#8220;Is it over the line for a commercial WordPress plugin to respond to a lapsed support license by locking users out of the pluginâ€™s admin screens?&#8221;</strong></p>\n\n\n\n<p>Is there in fact a line, a standard of acceptable practice?</p>\n\n\n\n<ul><li><a href=\"https://twitter.com/Otto42/status/1519101482943107073\">Yes</a>, lapsed plugins should simply degrade to &#8220;free/basicâ€ features and core business functions for e-commerce, like <a href=\"https://twitter.com/Otto42/status/1519101482943107073\">the ability to issue refunds</a>.</li><li><a href=\"https://twitter.com/NathLussier/status/1519325184615985152\">No</a>, lapsed plugins can completely shut down access to their admin/settings or even quit functioning altogether.</li></ul>\n\n\n\n<h2>What is the WordPress Way?</h2>\n\n\n\n<p>There\'s an old joke in different military branches and other organizations about there being the right way, the wrong way, and the Army (or whatever) way. Our way, the way we do it here. </p>\n\n\n\n<p>Read Jason Coleman\'s <a href=\"https://therealjasoncoleman.com/2022/04/26/the-wordpress-way/\">thoughtful and deeply invested view</a> of The WordPress Way. He defines it as:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>&#8220;an ever-evolving set of standards and conventions that will change over time, but basically what we mean is that <strong>our code, UI, and UX should be familiar to other WordPress developers and users interacting with our software.</strong>&#8220;</p></blockquote>\n\n\n\n<p>Is that how you define â€œThe WordPress Way?â€</p>\n\n\n\n<blockquote><p>Itâ€™s not a sign of a healthy ecosystem if buyers and sellers are seriously at odds with each other.</p></blockquote>\n\n\n\n<p>This is an important conversation to have. There are significant differences in the ways plugin owners think about and operate their businesses in a tough market in uncertain times. Differences can seem like barriers and conflict-starters, but they are a great opportunity to learn and grow together.</p>\n\n\n\n<h2>Finding Common Ground </h2>\n\n\n\n<p>I noticed there were a few quiet (and humorous) points of agreement that may seem small, but they\'re important. First, attacking othersâ€™ motives is never good, but even <a href=\"https://twitter.com/lesley_pizza/status/1519130905495105536/photo/1\">the least relevant complaint in any marketplace</a> â€” that buyers are cheap and sellers are greedy â€” shows what everyone has in common when frustrations run high: the sense that too much is being asked of them. Thatâ€™s relatable, whoever feels it, but maligning each other\'s motives &#8230; we don\'t do that. </p>\n\n\n\n<p>We can probably all agree itâ€™s not a sign of a healthy ecosystem when buyers and sellers are seriously at odds with each other. Thatâ€™s not what anyone wants.</p>\n\n\n\n<p>So what are the tough realities and hard questions we need to face to get where we want to be? (Giving and growing â€” together.)</p>\n\n\n\n<h3>What doesn\'t work? What does? What are the most difficult dilemmas and apparent contradictions? What risks might be taken?</h3>\n\n\n\n<p><strong>Lesley Sim</strong> and others involved in this discussion so far have suggested a good place to start. <a href=\"https://twitter.com/lesley_pizza/status/1519332353428299777\">Admit whatâ€™s broken and what doesnâ€™t work</a>, whatâ€™s not sustainable. <a href=\"https://twitter.com/lesley_pizza/status/1519334979846942720\">Take risks expressing challenging ideas</a>. Value and hold <a href=\"https://twitter.com/lesley_pizza/status/1519338304554283013\">all the disagreements and apparent contradictions</a> in mind together. Be kind. Donâ€™t demonize others.</p>\n\n\n\n<p>No guarantees on outcomes, but it is a start. </p>\n\n\n\n<p class=\"has-theme-palette-8-background-color has-background\"><strong>And weâ€™re asking for your involvement! </strong>Consider this a call for papers â€” and blog posts! (Or even Twitter threads, spaces, and <a href=\"https://poststatus.com/announcing-post-status-twitter-conference/\">conferences</a>.)</p>\n\n\n\n<h3 id=\"h-how-should-we-define-the-key-issues-and-concepts\">How should we define the key issues and concepts?</h3>\n\n\n\n<p>Are the appropriate limits for commercial activity in the WordPress back end <a href=\"https://twitter.com/Otto42/status/1519101482943107073\">a UX design issue</a>? <a href=\"https://twitter.com/briancoords/status/1519164630509121536\">A communication issue</a>? An <a href=\"https://twitter.com/jvmediadesign/status/1519141833452171265\">ethical issue</a>? All of the above? </p>\n\n\n\n<p>Should we view plugins (that need constant updates and support) as products, services, or something in-between? How do you educate customers to adopt the appropriate view of your software product so renewals for updates make sense?</p>\n\n\n\n<h3>Which plugin sales tactics work best?</h3>\n\n\n\n<p>Are aggressive shutdowns of potentially all functionality one of many possible <a href=\"https://twitter.com/lesley_pizza/status/1519129300074926081\">sales models worth trying out</a>? What else hasn\'t been tried much, or at all? How do support license renewals and marketing around them work <a href=\"https://twitter.com/Otto42/status/1519101482943107073\">elsewhere</a> in Open Source? Does it <a href=\"https://twitter.com/williamsba/status/1519285147585159168\">kill off your user base</a> or just <a href=\"https://twitter.com/lesley_pizza/status/1519130650779209728/photo/1\">free riders</a> if you take a very aggressive approach to customer retention?</p>\n\n\n\n<p><a href=\"https://twitter.com/rickg/status/1519347108653928448\">What if plugin vendors didnâ€™t offer unlimited support with their licenses?</a> Is this problem what we get without a WordPress â€œapp store?â€ Is there another way to a win for both plugin owners and users?</p>\n\n\n\n<p class=\"has-theme-palette-8-background-color has-background\"><em><em>This is a <strong>Call for Papers</strong> (or even short posts) that advance knowledge and understanding of a thorny issue in the WordPress community and commercial ecosystem. We need your perspectives, experiments, and the wisdom of experience youâ€™ve accumulated. Please connect by email to </em><a href=\"http://mailto:dan@poststatus.com\" target=\"_blank\" rel=\"noreferrer noopener\"><em>submit a proposal or share a draft post</em></a><em> for Post Status on this subject. If you\'ve published relevant writing elsewhere, please let us know about that too. Join the </em><strong><em>Post Status Slack </em></strong><a href=\"https://poststatus.slack.com/archives/C03B92XE3TQ\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><em>#tending-the-commons</em></strong></a><em> channel for an ongoing discussion of these and related issues.</em></em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 30 Apr 2022 01:23:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 16 May 2022 10:11:28 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Mon, 16 May 2022 10:00:10 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";s:16:\"content-encoding\";s:2:\"br\";}}s:5:\"build\";s:14:\"20220204041554\";}','no'),(7750,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1652739089','no'),(7751,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1652695889','no'),(7752,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1652739089','no'),(7753,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2022/05/wordpress-6-0-release-candidate-2-rc2-now-available-for-testing/\'>WordPress 6.0 Release Candidate 2 (RC2) Now Available for Testing</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2022/05/the-month-in-wordpress-april-2022/\'>The Month in WordPress â€“ April 2022</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://gutenbergtimes.com/three-block-theme-generators-gutenberg-13-2-coupons-with-blocks-and-more-weekend-edition-215/\'>Gutenberg Times: Three Block Theme Generators, Gutenberg 13.2,  Coupons with Blocks and more â€“  Weekend Edition 215</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordsesh-2022-kicks-off-monday-may-16-featuring-a-world-class-speaker-lineup-and-hands-on-workshops\'>WPTavern: WordSesh 2022 Kicks Off Monday, May 16, Featuring a World-Class Speaker Lineup and Hands-On Workshops</a></li><li><a class=\'rsswidget\' href=\'https://cdn.poststatus.com/wordpress-podcast-and-video-picks-for-the-week-of-may-8/\'>Post Status: WordPress Podcast and Video Picks for the Week of May 8</a></li></ul></div>','no'),(7759,'wordfence_ls_version','1.0.9','yes'),(7760,'wfls_last_role_change','1652696026','no'),(7761,'wordfence_version','7.5.9','yes'),(7762,'wordfence_case','1','yes'),(7763,'wordfence_installed','1','yes'),(7764,'_transient_timeout_77680b30e1f68188d8aef0c','1652782431','no'),(7765,'_transient_77680b30e1f68188d8aef0c','a:5:{s:22:\"woocs_current_currency\";s:3:\"INR\";s:24:\"woocs_first_unique_visit\";s:1:\"1\";s:22:\"woocs_default_currency\";s:3:\"INR\";s:18:\"woocs_user_country\";s:2:\"US\";s:24:\"woocs_first_unique_geoip\";s:1:\"1\";}','no'),(7766,'wordfenceActivated','1','yes'),(7767,'wf_plugin_act_error','','yes'),(7775,'_transient_timeout_wc_upgrade_notice_6.5.1','1652782440','no'),(7776,'_transient_wc_upgrade_notice_6.5.1','','no'),(7792,'_transient_timeout_79354e6326e3941aecbe60a','1652783054','no'),(7793,'_transient_79354e6326e3941aecbe60a','a:5:{s:22:\"woocs_current_currency\";s:3:\"INR\";s:24:\"woocs_first_unique_visit\";s:1:\"1\";s:22:\"woocs_default_currency\";s:3:\"INR\";s:18:\"woocs_user_country\";s:2:\"IN\";s:24:\"woocs_first_unique_geoip\";s:1:\"1\";}','no'),(7794,'_transient_timeout_49904af43527d30b50d250c','1652782844','no'),(7795,'_transient_49904af43527d30b50d250c','a:3:{s:22:\"woocs_current_currency\";s:3:\"INR\";s:24:\"woocs_first_unique_visit\";s:1:\"1\";s:22:\"woocs_default_currency\";s:3:\"INR\";}','no'),(7797,'_transient_timeout_b479921659571d02071e5a8','1652782845','no'),(7798,'_transient_b479921659571d02071e5a8','a:3:{s:22:\"woocs_current_currency\";s:3:\"INR\";s:24:\"woocs_first_unique_visit\";s:1:\"1\";s:22:\"woocs_default_currency\";s:3:\"INR\";}','no'),(7806,'_site_transient_timeout_available_translations','1652707465','no'),(7807,'_site_transient_available_translations','a:128:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"am\";a:8:{s:8:\"language\";s:2:\"am\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-18 21:47:24\";s:12:\"english_name\";s:7:\"Amharic\";s:11:\"native_name\";s:12:\"áŠ áˆ›áˆ­áŠ›\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.3/am.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"am\";i:2;s:3:\"amh\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"á‰€áŒ¥áˆ\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-02-24 06:01:42\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"Ø§Ù„Ø¹Ø±Ø¨ÙŠØ©\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.3/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Ø§Ù„Ù…ØªØ§Ø¨Ø¹Ø©\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.19\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"Ø§Ù„Ø¹Ø±Ø¨ÙŠØ© Ø§Ù„Ù…ØºØ±Ø¨ÙŠØ©\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.19/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Ø§Ù„Ù…ØªØ§Ø¨Ø¹Ø©\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"5.8.4\";s:7:\"updated\";s:19:\"2021-09-08 17:57:56\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"à¦…à¦¸à¦®à§€à¦¯à¦¼à¦¾\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.4/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"Ú¯Ø¤Ù†Ø¦ÛŒ Ø¢Ø°Ø±Ø¨Ø§ÛŒØ¬Ø§Ù†\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"AzÉ™rbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.20\";s:7:\"updated\";s:19:\"2019-10-29 07:54:22\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Ð‘ÐµÐ»Ð°Ñ€ÑƒÑÐºÐ°Ñ Ð¼Ð¾Ð²Ð°\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.20/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"ÐŸÑ€Ð°Ñ†ÑÐ³Ð½ÑƒÑ†ÑŒ\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-28 06:54:05\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Ð‘ÑŠÐ»Ð³Ð°Ñ€ÑÐºÐ¸\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"ÐÐ°Ð¿Ñ€ÐµÐ´\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:6:\"5.4.10\";s:7:\"updated\";s:19:\"2020-10-31 08:48:37\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"à¦¬à¦¾à¦‚à¦²à¦¾\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.10/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"à¦à¦—à¦¿à§Ÿà§‡ à¦šà¦².\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-10-30 03:24:38\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"à½–à½¼à½‘à¼‹à½¡à½²à½‚\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:33:\"à½˜à½´à¼‹à½˜à½à½´à½‘à¼‹à½‘à½´à¼\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-25 09:39:54\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-05-09 15:44:15\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"CatalÃ \";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.3/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-30 19:47:03\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"ÄŒeÅ¡tina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"PokraÄovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-31 09:09:16\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.3/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-05-02 07:32:55\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"FortsÃ¦t\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-17 12:58:14\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Ã–sterreich)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-01-24 12:22:31\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/5.9.3/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-01-24 12:26:13\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-05-10 07:23:15\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-05-10 07:24:50\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/5.9.3/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-30 09:37:19\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"DolnoserbÅ¡Ä‡ina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.9.3/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"à½¢à¾«à½¼à½„à¼‹à½\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-05-01 20:23:06\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Î•Î»Î»Î·Î½Î¹ÎºÎ¬\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.3/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Î£Ï…Î½Î­Ï‡ÎµÎ¹Î±\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-15 16:05:58\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-01 22:35:34\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2021-12-24 12:36:39\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-01 04:45:08\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-01 22:35:50\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-01 08:44:40\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.3/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"DaÅ­rigi\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-26 16:35:59\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"EspaÃ±ol de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-29 02:25:56\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"EspaÃ±ol de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-30 04:42:59\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"EspaÃ±ol de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-30 04:44:22\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"EspaÃ±ol de Ecuador\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/es_EC.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-29 15:59:16\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"EspaÃ±ol\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"5.8.4\";s:7:\"updated\";s:19:\"2021-10-04 20:53:18\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"EspaÃ±ol de PerÃº\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.4/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:5:\"5.8.4\";s:7:\"updated\";s:19:\"2021-10-08 14:32:50\";s:12:\"english_name\";s:28:\"Spanish (Dominican Republic)\";s:11:\"native_name\";s:33:\"EspaÃ±ol de RepÃºblica Dominicana\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.4/es_DO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-06-14 16:02:22\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"EspaÃ±ol de Chile\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-31 18:33:26\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"EspaÃ±ol de Uruguay\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:6:\"5.4.10\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"EspaÃ±ol de Puerto Rico\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.10/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.15\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"EspaÃ±ol de Guatemala\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.15/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-30 04:45:11\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"EspaÃ±ol de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-30 14:14:00\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"EspaÃ±ol de MÃ©xico\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-08-12 08:38:59\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"JÃ¤tka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-05-07 15:31:04\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.3/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-16 14:30:05\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"ÙØ§Ø±Ø³ÛŒ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Ø§Ø¯Ø§Ù…Ù‡\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:5:\"5.8.4\";s:7:\"updated\";s:19:\"2021-11-20 16:34:11\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(ÙØ§Ø±Ø³ÛŒ (Ø§ÙØºØ§Ù†Ø³ØªØ§Ù†\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.4/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Ø§Ø¯Ø§Ù…Ù‡\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-08 04:04:20\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.3/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-12 20:09:11\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"FranÃ§ais du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-05-12 13:28:11\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"FranÃ§ais\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-22 13:54:46\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"FranÃ§ais de Belgique\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.19\";s:7:\"updated\";s:19:\"2018-01-29 17:32:35\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.19/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"GÃ idhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-05-05 17:19:25\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:6:\"4.9.20\";s:7:\"updated\";s:19:\"2018-09-14 12:33:48\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"àª—à«àªœàª°àª¾àª¤à«€\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.20/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"àªšàª¾àª²à« àª°àª¾àª–àªµà«àª‚\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.27\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"Ù‡Ø²Ø§Ø±Ù‡ Ú¯ÛŒ\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.4.27/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Ø§Ø¯Ø§Ù…Ù‡\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-05-10 12:47:42\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"×¢Ö´×‘Ö°×¨Ö´×™×ª\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"×”×ž×©×š\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:6:\"5.4.10\";s:7:\"updated\";s:19:\"2020-11-06 12:34:38\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"à¤¹à¤¿à¤¨à¥à¤¦à¥€\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.10/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"à¤œà¤¾à¤°à¥€ à¤°à¤–à¥‡à¤‚\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-14 11:09:23\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.3/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-30 09:38:59\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"HornjoserbÅ¡Ä‡ina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.9.3/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-05 08:34:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"FolytatÃ¡s\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Õ€Õ¡ÕµÕ¥Ö€Õ¥Õ¶\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Õ‡Õ¡Ö€Õ¸Ö‚Õ¶Õ¡Õ¯Õ¥Õ¬\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-10 01:12:24\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.9.20\";s:7:\"updated\";s:19:\"2018-12-11 10:40:02\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Ãslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.20/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Ãfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-30 08:09:26\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-29 23:58:18\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"æ—¥æœ¬èªž\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.3/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"æ¬¡ã¸\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.20\";s:7:\"updated\";s:19:\"2019-02-16 23:58:56\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.20/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"NerusakÃ©\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-01-24 08:56:29\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"áƒ¥áƒáƒ áƒ—áƒ£áƒšáƒ˜\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"áƒ’áƒáƒ’áƒ áƒ«áƒ”áƒšáƒ”áƒ‘áƒ\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-10 17:24:06\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.9.3/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:6:\"4.9.20\";s:7:\"updated\";s:19:\"2018-07-10 11:35:44\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"ÒšÐ°Ð·Ð°Ò› Ñ‚Ñ–Ð»Ñ–\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.20/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Ð–Ð°Ð»Ò“Ð°ÑÑ‚Ñ‹Ñ€Ñƒ\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:6:\"5.2.15\";s:7:\"updated\";s:19:\"2019-06-10 16:18:28\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"áž—áž¶ážŸáž¶ážáŸ’áž˜áŸ‚ážš\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.15/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"áž”áž“áŸ’áž\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-02-23 01:39:33\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"à²•à²¨à³à²¨à²¡\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.3/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"à²®à³à²‚à²¦à³à²µà²°à²¿à²¸à³\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-02 01:11:00\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"í•œêµ­ì–´\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"ê³„ì†\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"5.8.4\";s:7:\"updated\";s:19:\"2021-12-07 16:32:30\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"ÙƒÙˆØ±Ø¯ÛŒâ€Ž\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.8.4/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"Ø¨Ù‡â€ŒØ±Ø¯Ù‡â€ŒÙˆØ§Ù… Ø¨Ù‡â€Œ\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"àºžàº²àºªàº²àº¥àº²àº§\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"àº•à»à»ˆâ€‹à»„àº›\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-23 12:35:40\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"LietuviÅ³ kalba\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"TÄ™sti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-04 15:22:04\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"LatvieÅ¡u valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.3/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"TurpinÄt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-12 12:32:07\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"ÐœÐ°ÐºÐµÐ´Ð¾Ð½ÑÐºÐ¸ Ñ˜Ð°Ð·Ð¸Ðº\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"ÐŸÑ€Ð¾Ð´Ð¾Ð»Ð¶Ð¸\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"à´®à´²à´¯à´¾à´³à´‚\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"à´¤àµà´Ÿà´°àµà´•\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 07:29:35\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"ÐœÐ¾Ð½Ð³Ð¾Ð»\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"Ò®Ñ€Ð³ÑÐ»Ð¶Ð»Ò¯Ò¯Ð»ÑÑ…\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:6:\"4.9.20\";s:7:\"updated\";s:19:\"2019-11-22 15:32:08\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"à¤®à¤°à¤¾à¤ à¥€\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.20/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"à¤¸à¥à¤°à¥ à¤ à¥‡à¤µà¤¾\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:5:\"5.5.9\";s:7:\"updated\";s:19:\"2022-03-11 13:52:22\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.5.9/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.2.32\";s:7:\"updated\";s:19:\"2017-12-26 11:57:10\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"á€—á€™á€¬á€…á€¬\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.32/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"á€†á€€á€ºá€œá€€á€ºá€œá€¯á€•á€ºá€†á€±á€¬á€„á€ºá€•á€«á‹\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-30 21:39:47\";s:12:\"english_name\";s:19:\"Norwegian (BokmÃ¥l)\";s:11:\"native_name\";s:13:\"Norsk bokmÃ¥l\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-22 19:23:48\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"à¤¨à¥‡à¤ªà¤¾à¤²à¥€\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"à¤œà¤¾à¤°à¥€ à¤°à¤¾à¤–à¥à¤¨à¥à¤¹à¥‹à¤¸à¥\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-12 12:40:41\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/5.9.3/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-05-10 13:17:15\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (BelgiÃ«)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-30 06:48:38\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-18 10:59:16\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:6:\"4.8.19\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.19/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:7:\"Punjabi\";s:11:\"native_name\";s:18:\"à¨ªà©°à¨œà¨¾à¨¬à©€\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"à¨œà¨¾à¨°à©€ à¨°à©±à¨–à©‹\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-05-13 10:25:49\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.3.28\";s:7:\"updated\";s:19:\"2015-12-02 21:41:29\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"Ù¾ÚšØªÙˆ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.3.28/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"Ø¯ÙˆØ§Ù… ÙˆØ±Ú©Ú“Ù‡\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-06 15:21:06\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"PortuguÃªs\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-05-01 12:49:37\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"PortuguÃªs do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"5.8.4\";s:7:\"updated\";s:19:\"2021-11-27 16:28:47\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"PortuguÃªs de Angola\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.4/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"5.8.4\";s:7:\"updated\";s:19:\"2021-09-09 21:40:55\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"PortuguÃªs (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/5.8.4/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"RuÃ¡inga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-05-05 14:55:31\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"RomÃ¢nÄƒ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ContinuÄƒ\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-10 05:43:57\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Ð ÑƒÑÑÐºÐ¸Ð¹\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"ÐŸÑ€Ð¾Ð´Ð¾Ð»Ð¶Ð¸Ñ‚ÑŒ\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Ð¡Ð°Ñ…Ð°Ð»Ñ‹Ñ‹\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Ð¡Ð°Ð»Ò•Ð°Ð°\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:6:\"5.4.10\";s:7:\"updated\";s:19:\"2020-07-07 01:53:37\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"Ø³Ù†ÚŒÙŠ\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/5.4.10/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Ø§Ú³ØªÙŠ Ù‡Ù„Ùˆ\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"à·ƒà·’à¶‚à·„à¶½\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"à¶¯à·’à¶œà¶§à¶¸ à¶šà¶»à¶œà·™à¶± à¶ºà¶±à·Šà¶±\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-06 04:43:12\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"SlovenÄina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"PokraÄovaÅ¥\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"5.9.2\";s:7:\"updated\";s:19:\"2022-01-24 13:37:43\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"Ø³Ø±Ø§Ø¦ÛŒÚ©ÛŒ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.9.2/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"Ø¬Ø§Ø±ÛŒ Ø±Ú©Ú¾Ùˆ\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-02-01 10:20:40\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"SlovenÅ¡Äina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-04 20:07:24\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.3/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"5.8.4\";s:7:\"updated\";s:19:\"2021-08-01 21:21:06\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Ð¡Ñ€Ð¿ÑÐºÐ¸ Ñ˜ÐµÐ·Ð¸Ðº\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.4/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"ÐÐ°ÑÑ‚Ð°Ð²Ð¸\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-05-01 10:36:06\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"FortsÃ¤tt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:6:\"5.3.12\";s:7:\"updated\";s:19:\"2019-10-13 15:35:35\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.3.12/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"ÅšlÅnskÅ gÅdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"KÅntynuowaÄ‡\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"à®¤à®®à®¿à®´à¯\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"à®¤à¯Šà®Ÿà®°à®µà¯à®®à¯\";}}s:5:\"ta_LK\";a:8:{s:8:\"language\";s:5:\"ta_LK\";s:7:\"version\";s:6:\"4.2.32\";s:7:\"updated\";s:19:\"2015-12-03 01:07:44\";s:12:\"english_name\";s:17:\"Tamil (Sri Lanka)\";s:11:\"native_name\";s:15:\"à®¤à®®à®¿à®´à¯\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.32/ta_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"à®¤à¯Šà®Ÿà®°à¯à®•\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"à°¤à±†à°²à±à°—à±\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"à°•à±Šà°¨à°¸à°¾à°—à°¿à°‚à°šà±\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"5.8.4\";s:7:\"updated\";s:19:\"2021-12-28 02:58:38\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"à¹„à¸—à¸¢\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.4/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"à¸•à¹ˆà¸­à¹„à¸›\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:6:\"4.8.19\";s:7:\"updated\";s:19:\"2017-09-30 09:04:29\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.19/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-17 09:38:19\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"TÃ¼rkÃ§e\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Ð¢Ð°Ñ‚Ð°Ñ€ Ñ‚ÐµÐ»Ðµ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"Ð´Ó™Ð²Ð°Ð¼ Ð¸Ñ‚Ò¯\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:6:\"4.9.20\";s:7:\"updated\";s:19:\"2021-07-03 18:41:33\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"Ø¦Û‡ÙŠØºÛ‡Ø±Ú†Û•\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.20/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"Ø¯Ø§Û‹Ø§Ù…Ù„Ø§Ø´ØªÛ‡Ø±Û‡Ø´\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"5.8.4\";s:7:\"updated\";s:19:\"2022-03-06 15:05:20\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Ð£ÐºÑ€Ð°Ñ—Ð½ÑÑŒÐºÐ°\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.4/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"ÐŸÑ€Ð¾Ð´Ð¾Ð²Ð¶Ð¸Ñ‚Ð¸\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:6:\"5.4.10\";s:7:\"updated\";s:19:\"2020-04-09 11:17:33\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"Ø§Ø±Ø¯Ùˆ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.4.10/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"Ø¬Ø§Ø±ÛŒ Ø±Ú©Ú¾ÛŒÚº\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"Oâ€˜zbekcha\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-30 13:50:02\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiáº¿ng Viá»‡t\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.9.3/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiáº¿p tá»¥c\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-04-01 20:41:20\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"ç¹é«”ä¸­æ–‡\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"ç¹¼çºŒ\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-03-14 15:03:38\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"é¦™æ¸¯ä¸­æ–‡ç‰ˆ	\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"ç¹¼çºŒ\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"5.9.3\";s:7:\"updated\";s:19:\"2022-05-14 02:47:32\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"ç®€ä½“ä¸­æ–‡\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.9.3/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"ç»§ç»­\";}}}','no'),(7810,'woocommerce_task_list_reminder_bar_hidden','yes','yes'),(7813,'woocommerce_attribute_lookup_enabled','yes','yes'),(7814,'woocommerce_attribute_lookup_direct_updates','no','yes'),(7815,'_transient_timeout__woocommerce_upload_directory_status','1652783137','no'),(7816,'_transient__woocommerce_upload_directory_status','protected','no'),(7818,'_transient_wc_attribute_taxonomies','a:1:{i:0;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"1\";s:14:\"attribute_name\";s:6:\"weight\";s:15:\"attribute_label\";s:6:\"Weight\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"0\";}}','yes'),(7831,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.9.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.9.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.9.3\";s:7:\"version\";s:5:\"5.9.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1652707129;s:15:\"version_checked\";s:5:\"5.9.3\";s:12:\"translations\";a:0:{}}','no'),(7835,'_transient_timeout_woocommerce_admin_remote_inbox_notifications_specs','1653311933','no'),(7836,'_transient_woocommerce_admin_remote_inbox_notifications_specs','a:35:{s:27:\"new_in_app_marketplace_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:27:\"new_in_app_marketplace_2021\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:36:\"Customize your store with extensions\";s:7:\"content\";s:164:\"Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"browse_extensions\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Browse extensions\";}}s:3:\"url\";s:15:\"&page=wc-addons\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:14:23\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.7\";}}}s:21:\"wayflyer_bnpl_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:21:\"wayflyer_bnpl_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Grow your business with funding through Wayflyer\";s:7:\"content\";s:261:\"Fast, flexible financing to boost cash flow and help your business grow â€“ one fee, no interest rates, penalties, equity, or personal guarantees. Based on your storeâ€™s performance, Wayflyer provides funding and analytical insights to invest in your business.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"wayflyer_bnpl_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Level up with funding\";}}s:3:\"url\";s:118:\"https://woocommerce.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-17 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-18 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BE\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IE\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NL\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}}}}}}s:35:\"wc_shipping_mobile_app_usps_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:94:\"Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> â€“ all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Shipping\";}}s:3:\"url\";s:135:\"https://woocommerce.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"woocommerce-shipping-usps\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}}s:30:\"wc_shipping_mobile_app_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wc_shipping_mobile_app_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:69:\"Print and manage your shipping labels with the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> â€“ all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"wc_shipping_mobile_app_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:30:\"Get the WooCommerce Mobile App\";}}s:3:\"url\";s:116:\"https://woocommerce.com/mobile/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}s:37:\"ecomm-need-help-setting-up-your-store\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"ecomm-need-help-setting-up-your-store\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:32:\"Need help setting up your Store?\";s:7:\"content\";s:350:\"Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. Weâ€™re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"set-up-concierge\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Schedule free session\";}}s:3:\"url\";s:34:\"https://wordpress.com/me/concierge\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:16:48\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}}}s:20:\"woocommerce-services\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"woocommerce-services\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"WooCommerce Shipping & Tax\";s:7:\"content\";s:251:\"WooCommerce Shipping & Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:84:\"https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:17:25\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:32:\"ecomm-unique-shopping-experience\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"ecomm-unique-shopping-experience\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"For a shopping experience as unique as your customers\";s:7:\"content\";s:270:\"Product Add-Ons allow your customers to personalize products while they\'re shopping on your online store. No more follow-up email requestsâ€”customers get what they want, before they\'re done checking out. Learn more about this extension that comes included in your plan.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:43:\"learn-more-ecomm-unique-shopping-experience\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:71:\"https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:18:01\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:37:\"wc-admin-getting-started-in-ecommerce\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-getting-started-in-ecommerce\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:38:\"Getting Started in eCommerce - webinar\";s:7:\"content\";s:174:\"We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"watch-the-webinar\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Watch the webinar\";}}s:3:\"url\";s:28:\"https://youtu.be/V_2XtCOyZ7o\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:18:37\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:12:\"setup_client\";s:9:\"operation\";s:2:\"!=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_count\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:7:\"revenue\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:4:\"none\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:7:\"revenue\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:10:\"up-to-2500\";}}}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:467:\"Thatâ€™s huge! Youâ€™re well on your way to building a successful online store â€” now itâ€™s time to think about how youâ€™ll fulfill your orders.<br/><br/>Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:130:\"https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_were_no_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_are_now_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_types\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"physical\";s:7:\"default\";a:0:{}}}}s:37:\"wc-admin-optimizing-the-checkout-flow\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-optimizing-the-checkout-flow\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:28:\"Optimizing the checkout flow\";s:7:\"content\";s:177:\"Itâ€™s crucial to get your storeâ€™s checkout as smooth as possible to avoid losing sales. Letâ€™s take a look at how you can optimize the checkout experience for your shoppers.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"optimizing-the-checkout-flow\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:144:\"https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:49\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:39:\"wc-admin-first-five-things-to-customize\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-admin-first-five-things-to-customize\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:45:\"The first 5 things to customize in your store\";s:7:\"content\";s:175:\"Deciding what to start with first is tricky. To help you properly prioritize, weâ€™ve put together this short list of the first few things you should customize in WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:130:\"https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:20:31\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:2;}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:5:\"value\";s:9:\"NOT EMPTY\";s:7:\"default\";s:9:\"NOT EMPTY\";s:9:\"operation\";s:2:\"!=\";}}}s:32:\"wc-payments-qualitative-feedback\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wc-payments-qualitative-feedback\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Payments setup - let us know what you think\";s:7:\"content\";s:146:\"Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"qualitative-feedback-from-new-users\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:39:\"https://automattic.survey.fm/wc-pay-new\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:13\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:20:\"woocommerce-payments\";s:7:\"default\";a:0:{}}}}s:29:\"share-your-feedback-on-paypal\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"share-your-feedback-on-paypal\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:29:\"Share your feedback on PayPal\";s:7:\"content\";s:127:\"Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:43:\"http://automattic.survey.fm/paypal-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:50\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}}}s:31:\"google_listings_and_ads_install\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"google_listings_and_ads_install\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Drive traffic and sales with Google\";s:7:\"content\";s:123:\"Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"get-started\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Get started\";}}s:3:\"url\";s:122:\"https://woocommerce.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-06-09 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google_listings_and_ads\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:10;}}}s:39:\"wc-subscriptions-security-update-3-0-15\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-subscriptions-security-update-3-0-15\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:42:\"WooCommerce Subscriptions security update!\";s:7:\"content\";s:738:\"We recently released an important security update to WooCommerce Subscriptions. To ensure your siteâ€™s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br/><br/>Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br/><br/>We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br/><br/>If you have any questions we are here to help â€” just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"update-wc-subscriptions-3-0-15\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"View latest version\";}}s:3:\"url\";s:30:\"&page=wc-addons&section=helper\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:30:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:6:\"3.0.15\";}}}s:29:\"woocommerce-core-update-5-4-0\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"woocommerce-core-update-5-4-0\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Update to WooCommerce 5.4.1 now\";s:7:\"content\";s:140:\"WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"update-wc-core-5-4-0\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"How to update WooCommerce\";}}s:3:\"url\";s:64:\"https://docs.woocommerce.com/document/how-to-update-woocommerce/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:31:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.0\";}}}s:19:\"wcpay-promo-2020-11\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-11\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-11\";s:7:\"content\";s:19:\"wcpay-promo-2020-11\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:19:\"wcpay-promo-2020-12\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-12\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-12\";s:7:\"content\";s:19:\"wcpay-promo-2020-12\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:34:\"ppxo-pps-upgrade-paypal-payments-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-1\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Get the latest PayPal extension for WooCommerce\";s:7:\"content\";s:442:\"Heads up! Thereâ€™s a new PayPal on the block!<br/><br/>Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-1\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:33:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:7;s:7:\"default\";i:1;s:9:\"operation\";s:1:\"<\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-2\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Upgrade your PayPal experience!\";s:7:\"content\";s:358:\"Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-2\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:34:30\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:6;s:7:\"default\";i:1;s:9:\"operation\";s:1:\">\";}}}s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Critical vulnerabilities in WooCommerce\";s:7:\"content\";s:574:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:59:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.8\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.9\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.2\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.3\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.4\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.5\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.4\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.3\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.4\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.2\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:36;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:37;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.3\";}i:38;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}i:39;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.5.10\";}i:40;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.7\";}i:41;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.3\";}i:42;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.3\";}i:43;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.5\";}i:44;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.4\";}i:45;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.4\";}i:46;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.5\";}i:47;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.6\";}i:48;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.4\";}i:49;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.5\";}i:50;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.5\";}i:51;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.4\";}i:52;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.3\";}i:53;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.5\";}i:54;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.3\";}i:55;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:56;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.5\";}i:57;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.3\";}i:58;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.4\";}}}s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Critical vulnerabilities in WooCommerce Blocks\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:32:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:42\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"2.5.16\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.6.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.7.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.8.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.9.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.0.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.1.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.1\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:45:\"woocommerce-core-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woocommerce-core-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"Solved: Critical vulnerabilities patched in WooCommerce\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:18\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:23:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.6\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.8\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.9\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.2\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.1\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Solved: Critical vulnerabilities patched in WooCommerce Blocks\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:54\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:19:\"habit-moment-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"habit-moment-survey\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Weâ€™re all ears! Share your experience so far with WooCommerce\";s:7:\"content\";s:136:\"Weâ€™d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:45:\"https://automattic.survey.fm/store-management\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:37:30\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:30;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:0;}}}s:26:\"ecomm-wc-navigation-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:26:\"ecomm-wc-navigation-survey\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"Weâ€™d like your feedback on the WooCommerce navigation\";s:7:\"content\";s:134:\"Weâ€™re making improvements to the WooCommerce navigation and would love your feedback. Share your experience in this 2 minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:32:\"share-navigation-survey-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:63:\"https://automattic.survey.fm/feedback-on-woocommerce-navigation\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:38:07\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:12:\"is_ecommerce\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:90;}}}s:42:\"woocommerce-core-paypal-march-2022-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:391:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). Itâ€™s recommended to disable PayPal Standard, and use <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-core-paypal-march-2022-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:44:57\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"5.5\";}i:1;a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}}}}}}}s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:237:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:45:04\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}s:24:\"pinterest_03_2022_update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"pinterest_03_2022_update\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"Your Pinterest for WooCommerce plugin is out of date!\";s:7:\"content\";s:262:\"Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins &gt; Installed Plugins</strong>, and click on â€œupdate nowâ€ under Pinterest for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"pinterest_03_2022_update\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"Update Instructions\";}}s:3:\"url\";s:148:\"https://woocommerce.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-23 00:00:39\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"pinterest-for-woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"1.0.8\";}}}s:36:\"setup_task_initiative_survey_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:36:\"setup_task_initiative_survey_q2_2022\";s:4:\"type\";s:6:\"survey\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"We want to know what matters most to you\";s:7:\"content\";s:144:\"Take 2 minutes to give us your input on what is important for you while setting up your store and help shape the future of WooCommerce together.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:53:\"setup_task_initiative_survey_q2_2022_share_your_input\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:16:\"Share your input\";}}s:3:\"url\";s:26:\"https://t.maze.co/87390007\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-04-26 00:00:37\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:180;}}}s:14:\"affirm_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:14:\"affirm_q2_2022\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:42:\"Boost your business with flexible payments\";s:7:\"content\";s:286:\"Expand your customer base with smarter payment options for more shoppers. With Affirm,  you can offer the most relevant payment options at every price point â€“ from four interest-free payments every two weeks to longer installments up to 36 months. Fast-track your revenue goals today!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"affirm_q2_2022\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Get started for free\";}}s:3:\"url\";s:129:\"https://woocommerce.com/products/woocommerce-gateway-affirm/?utm_source=inbox_note&utm_medium=product&utm_campaign=affirm_q2_2022\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-15 00:00:33\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2022-05-28 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}}}}}s:32:\"setup_task_second_survey_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"setup_task_second_survey_q2_2022\";s:4:\"type\";s:6:\"survey\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"We want to know what matters most to you\";s:7:\"content\";s:144:\"Take 2 minutes to give us your input on what is important for you while setting up your store and help shape the future of WooCommerce together.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:49:\"setup_task_second_survey_q2_2022_share_your_input\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:16:\"Share your input\";}}s:3:\"url\";s:26:\"https://t.maze.co/87390007\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-10 01:44:35\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:1:{i:0;a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:180;}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:365;}}}}}}s:33:\"store_setup_survey_survey_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:33:\"store_setup_survey_survey_q2_2022\";s:4:\"type\";s:6:\"survey\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:30:\"How is your store setup going?\";s:7:\"content\";s:232:\"Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWeâ€™d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:53:\"store_setup_survey_survey_q2_2022_share_your_thoughts\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Tell us how itâ€™s going\";}}s:3:\"url\";s:52:\"https://automattic.survey.fm/store-setup-survey-2022\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-09 08:42:10\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:7;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:9;}}}s:31:\"wc-admin-EU-consumer-protection\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"wc-admin-EU-consumer-protection\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Important changes to EU consumer protection laws\";s:7:\"content\";s:317:\"New regulations to help modernize and strengthen consumer protection laws in the European Union (EU) take effect on May 28, 2022. These rules impact all merchants selling to the EU, regardless of where their business is located. Further detailed information is available on the European Commission\'s official website.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:31:\"wc-admin-EU-consumer-protection\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:30:\"Learn more about these changes\";}}s:3:\"url\";s:98:\"https://ec.europa.eu/info/law/law-topic/consumer-protection-law/review-eu-consumer-law_en#guidance\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-14 11:42:55\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2022-07-01 23:59:00\";}}}s:37:\"googlelistings_multicountrygtm_q22022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"googlelistings_multicountrygtm_q22022\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"Expand your audience with Multi-Country Advertising\";s:7:\"content\";s:263:\"It\'s time to expand your audience with Multi-Country Advertising, an exciting new feature in Google Listings &amp; Ads. Reach more potential customers in as many regions as you like within a single campaign, all from the convenience of your WooCommerce dashboard.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:37:\"googlelistings_multicountrygtm_q22022\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:34:\"Get Google Listings & Ads â€“ free\";}}s:3:\"url\";s:149:\"https://woocommerce.com/products/google-listings-and-ads/?utm_source=inbox_note&utm_medium=product&utm_campaign=googlelistings_multicountrygtm_q22022\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-15 15:55:35\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2022-05-21 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google-listings-and-ads\";}}}}}}}','no'),(7837,'_transient_timeout_as-post-store-dependencies-met','1652783327','no'),(7838,'_transient_as-post-store-dependencies-met','yes','no'),(7841,'action_scheduler_migration_status','complete','yes'),(7869,'_transient_timeout_wc_onboarding_product_data','1652784769','no'),(7870,'_transient_wc_onboarding_product_data','a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:19:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 16 May 2022 10:52:49 GMT\";s:12:\"content-type\";s:31:\"application/json; charset=UTF-8\";s:14:\"content-length\";s:5:\"12911\";s:12:\"x-robots-tag\";s:7:\"noindex\";s:4:\"link\";s:60:\"<https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:29:\"access-control-expose-headers\";s:33:\"X-WP-Total, X-WP-TotalPages, Link\";s:28:\"access-control-allow-headers\";s:73:\"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type\";s:13:\"x-wccom-cache\";s:3:\"HIT\";s:13:\"cache-control\";s:10:\"max-age=60\";s:5:\"allow\";s:3:\"GET\";s:4:\"x-rq\";s:13:\"bom1 0 4 9980\";s:16:\"content-encoding\";s:4:\"gzip\";s:3:\"age\";s:2:\"22\";s:7:\"x-cache\";s:3:\"hit\";s:4:\"vary\";s:23:\"Accept-Encoding, Origin\";s:13:\"accept-ranges\";s:5:\"bytes\";s:25:\"strict-transport-security\";s:16:\"max-age=31536000\";}}s:4:\"body\";s:69710:\"{\"products\":[{\"title\":\"WooCommerce Google Analytics\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/woo-Google_Analytics-fvsrvf.png\"},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Tax-Dark.png\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders - by city, country, or state - at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/12\\/stripe-app-icon-7m1xi7.png\"},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/11\\/Jetpack-1-m5mwyg.png\",\"excerpt\":\"Security, performance, and marketing tools made for WooCommerce stores by the WordPress experts. Get started with basic security and speed tools for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Jetpack\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/jetpack\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/02\\/jetpack-logo--80sgtq.png\"},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin for three powerful ways to help grow your business.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297,\"rating\":2,\"reviews_count\":60,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Pay-Dark.png\",\"excerpt\":\"The only payment solution fully integrated to Woo. Accept credit\\/debit cards &amp; local payment options with no setup or monthly fees.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/02\\/woo-WooCommerce_Payments-mtulxp.png\"},{\"title\":\"Square for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png\",\"excerpt\":\"Accepting payments is easy with Square. Clear rates, fast deposits (1-2 business days). Sell online and in person, and sync all payments, items and inventory.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503,\"rating\":3.2,\"reviews_count\":75,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/07\\/woo-Square-u8km15.png\"},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png\",\"excerpt\":\"Amazon Pay is embedded in your WooCommerce store. Transactions take place via\\u00a0Amazon widgets, so the buyer never leaves your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816,\"rating\":3.5,\"reviews_count\":13,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/08\\/woo-Amazon_Pay-8lvfuy.png\"},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Dark-1.png\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save up to 90%. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Subscriptions-Dark.png\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147,\"rating\":3.4,\"reviews_count\":41,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618,\"rating\":3,\"reviews_count\":23,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Mailchimp\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/mailchimp\\/\",\"icon\":null},{\"title\":\"ShipStation Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png\",\"excerpt\":\"Fulfill all your Woo orders (and wherever else you sell) quickly and easily using ShipStation. Try it free for 30 days today!\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/woo-Shipstation-xqap96.png\"},{\"title\":\"PayFast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Payfast-Dark-1.png\",\"excerpt\":\"Take payments on your WooCommerce store via PayFast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/09\\/woo-Payfast-murskg.png\"},{\"title\":\"Google Listings &amp; Ads\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/marketplace-card.png\",\"excerpt\":\"Reach millions of engaged shoppers across Google with free product listings and ads. Built in partnership with Google.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-listings-and-ads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"118f4d86-f126-4c3a-8525-644e3170d161\",\"slug\":\"google-listings-and-ads\",\"id\":7623964,\"rating\":2.8,\"reviews_count\":17,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/woo-GoogleListingsAds-jworee.png\"},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/usps-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-USPS-yhn1rb.png\"},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ups-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665,\"rating\":3.3,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"PayPal Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/PPCP-Tile-PayPal-Logo-and-Cart-Art-2x-2-uozwz8.jpg\",\"excerpt\":\"PayPal\'s latest, all-in-one checkout solution. Securely accept PayPal Digital Payments, credit\\/debit cards and local payment methods.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paypal-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"934115ab-e3f3-4435-9580-345b1ce21899\",\"slug\":\"woocommerce-paypal-payments\",\"id\":6410731,\"rating\":2.6,\"reviews_count\":12,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/woo-PayPal-nlioum.png\"},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693,\"rating\":3.1,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Google Ads &amp; Marketing by Kliken\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/02\\/GA-for-Woo-Logo-374x192px-qu3duk.png\",\"excerpt\":\"Get in front of shoppers and drive traffic to your store so you can grow your business with Smart Shopping Campaigns and free listings.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145,\"rating\":4.3,\"reviews_count\":110,\"vendor_name\":\"Kliken\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kliken\\/\",\"icon\":null},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"&#36;249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890,\"rating\":2.6,\"reviews_count\":26,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/table-rate-shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png\",\"excerpt\":\"Specify minimum and maximum allowed product quantities for orders to be completed.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/australia-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/canada-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-CanadaPost-fjlcfq.png\"},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/royalmail.png\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/woo-RoyalMail-sd9zwy.png\"},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/fedex-shipping-module\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-FedEx-auxjb7.png\"},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-csv-import-suite\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Follow-Ups\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Follow-Ups-Dark.png\",\"excerpt\":\"Automatically contact customers after purchase - be it everyone, your most loyal or your biggest spenders - and keep your store top-of-mind.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/follow-up-emails\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"05ece68fe94558e65278fe54d9ec84d2\",\"slug\":\"woocommerce-follow-up-emails\",\"id\":18686,\"rating\":3.1,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png\",\"excerpt\":\"Power your membership association, online magazine, elearning sites, and more with access control to content\\/products and member discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589,\"rating\":4.4,\"reviews_count\":78,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Braintree for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-Braintree-wrweyl.png\"},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/07\\/logo-pb-lzevsq.png\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages, and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716,\"rating\":4.9,\"reviews_count\":115,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982,\"rating\":2.9,\"reviews_count\":17,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/automatewoo\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/10\\/woo-AutomateWoo-m4jpva.png\"},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/woocommerce-xero-integration-sdth2k.jpg\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/woo-Xero-4ovyoc.png\"},{\"title\":\"Omnichannel for WooCommerce: Google, Amazon, eBay &amp; Walmart Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/10\\/Woo-Extension-Store-Logo-v3.png\",\"excerpt\":\"Get the official Google, Amazon, eBay and Walmart extension and create, sync and manage multichannel listings directly from WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-ebay-integration\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e4000666-9275-4c71-8619-be61fb41c9f9\",\"slug\":\"woocommerce-amazon-ebay-integration\",\"id\":3545890,\"rating\":3,\"reviews_count\":35,\"vendor_name\":\"Codisto\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/codisto\\/\",\"icon\":null},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/brands\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259,\"rating\":2.9,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Authorize.Net\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png\",\"excerpt\":\"Authorize.Net gateway with support for pre-orders and subscriptions.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481,\"rating\":4.7,\"reviews_count\":44,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/livechat\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.livechat.com\\/livechat-for-ecommerce\\/?a=woocommerce&amp;utm_source=woocommerce.com&amp;utm_medium=integration&amp;utm_campaign=woocommerce.com\",\"price\":\"&#36;0.00\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Live Chat\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/live-chat\\/\",\"icon\":null},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"excerpt\":\"Add gallery images per variation on variable products within WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/product\\/woo-single-1\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Storefront Homepage Contact Section\",\"image\":\"\",\"excerpt\":\"Add a Contact section to the Storefront homepage.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-homepage-contact-section\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"cb12b87f8bbb0139dafbf92ca1f871ef\",\"slug\":\"storefront-homepage-contact-section\",\"id\":1468793,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-Storefront-ipreuh.png\"},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Amazon S3 Storage\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/woo-AmazonS3Storage-jhzxk2.png\"},{\"title\":\"Cart Add-ons\",\"image\":\"\",\"excerpt\":\"A powerful tool for driving incremental and impulse purchases by customers once they are in the shopping cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/cart-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"3a8ef25334396206f5da4cf208adeda3\",\"slug\":\"woocommerce-cart-add-ons\",\"id\":18717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Storefront Footer Bar\",\"image\":\"\",\"excerpt\":\"Adds a full-width widget region above the Storefront footer widget area, which can be customized with colors and a background image.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-footer-bar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"6cfd3d4f923cafa16e4801ae801751f4\",\"slug\":\"storefront-footer-bar\",\"id\":1434472,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-Storefront-ipreuh.png\"},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping-multiple-addresses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Email Customizer\",\"image\":\"\",\"excerpt\":\"Connect with your customers with each email you send by visually modifying your email templates via the WordPress Customizer.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-email-customizer\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"bd909fa97874d431f203b5336c7e8873\",\"slug\":\"woocommerce-email-customizer\",\"id\":853277,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Force Sells\",\"image\":\"\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Quick View\",\"image\":\"\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-quick-view\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"excerpt\":\"Receive purchase orders via your WooCommerce-powered online store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"excerpt\":\"Manage the RMA process, add warranties to products &amp; let customers request &amp; manage returns \\/ exchanges from their account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/warranty-requests\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Product Enquiry Form\",\"image\":\"\",\"excerpt\":\"Allow visitors to contact you directly from the product details page via a reCAPTCHA protected form to enquire about a product.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-enquiry-form\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5a0f5d72519a8ffcc86669f042296937\",\"slug\":\"woocommerce-product-enquiry-form\",\"id\":18601,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ordercustomer-csv-export\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652,\"rating\":4.5,\"reviews_count\":23,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"excerpt\":\"Generates a unique barcode for each order on your site - perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce 360\\u00ba Image\",\"image\":\"\",\"excerpt\":\"An easy way to add a dynamic, controllable 360\\u00ba image rotation to your WooCommerce site, by adding a group of images to a product\\u2019s gallery.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-360-image\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging &amp; dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png\",\"excerpt\":\"Automate sales tax compliance for your multi-channel e-commerce business. Accurate sales tax calculations, data aggregation, quality reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"TaxJar\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/taxjar\\/\",\"icon\":null},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png\",\"excerpt\":\"Everything you need for discounts, coupons, credits, gift cards, product giveaways, offers, and promotions. Most popular and complete coupons plugin for WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"&#36;99.00\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729,\"rating\":4.5,\"reviews_count\":129,\"vendor_name\":\"StoreApps\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/storeapps\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/wc-icon-smart-coupons-160-p8fwgu.png\"},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Products Compare\",\"image\":\"\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-products-compare\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Store Catalog PDF Download\",\"image\":\"\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/woocommerce-zapier-logo.png\",\"excerpt\":\"Integrate your WooCommerce store with 4000+ cloud apps and services today. Trusted by 11,000+ users.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589,\"rating\":4.5,\"reviews_count\":35,\"vendor_name\":\"OM4\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/om4\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/OM4-Software-Logo-RGB-Round-160x160-1-372opg.png\"},{\"title\":\"WooCommerce AvaTax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-Avalara-updated.png\",\"excerpt\":\"Get 100% accurate sales tax calculations and on-time tax filing. No more tracking sales tax rates and rules.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/name-your-price\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738,\"rating\":5,\"reviews_count\":54,\"vendor_name\":\"Backcourt Development\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/backcourt-development\\/\",\"icon\":null},{\"title\":\"Storefront Reviews\",\"image\":\"\",\"excerpt\":\"Reviews can often be the deciding factor when making a purchase online. Highlight your best reviews on your homepage, or across your site with Storefront Reviews.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-reviews\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/reviews\\/\",\"price\":\"&#36;19.00\",\"hash\":\"0c8a1d86b8eff9f1edffa923aeb3fc1f\",\"slug\":\"storefront-reviews\",\"id\":1044976,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-Storefront-ipreuh.png\"},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643,\"rating\":3.3,\"reviews_count\":28,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Sensei LMS Course Progress\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-course-progress.png\",\"excerpt\":\"Enable your students to easily see their progress and pick up where they left off in a course.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sensei-course-progress\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"ec0f55d8fa7c517dc1844f5c873a77da\",\"slug\":\"sensei-course-progress\",\"id\":435833,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png\",\"excerpt\":\"Klarna Checkout is a full checkout experience embedded on your site that includes all popular payment methods (Pay Now, Pay Later, Financing, Installments).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"&#36;0.00\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":null},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/11\\/logo-regular-lscryp.png\",\"excerpt\":\"Feed rich product data to Google Merchant Center for setting up free product listings, product ads, and local inventory campaigns. Full control over your field mappings, and feed content so you can maximize campaign performance and ad spend.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619,\"rating\":4.2,\"reviews_count\":42,\"vendor_name\":\"Ademti Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/ademti-software\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/11\\/product-icon-omiutq.png\"},{\"title\":\"WooCommerce Print Invoices and Packing Lists\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/print-invoices-packing-lists\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666,\"rating\":4.4,\"reviews_count\":28,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Sensei LMS Certificates\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-certificates.png\",\"excerpt\":\"Award your students with a certificate of completion and a sense of accomplishment after finishing a course.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sensei-certificates\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"625ee5fe1bf36b4c741ab07507ba2ffd\",\"slug\":\"sensei-certificates\",\"id\":247548,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/06\\/logo-cp-ey7bzs.png\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836,\"rating\":4.9,\"reviews_count\":99,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gravity-forms-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/gravity-forms\\/\",\"price\":\"&#36;99.00\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Eway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/51456-Eway-logo-tagline-RGB-H-yellow-_-grey.png\",\"excerpt\":\"Take credit card payments securely via Eway (SG, MY, HK, AU, and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/woo-eway-0klzux.png\"},{\"title\":\"WooCommerce Blocks\",\"image\":\"\",\"excerpt\":\"WooCommerce Blocks offers a range of Gutenberg blocks you can use to build and customise your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gutenberg-products-block\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Sensei Pro (WC Paid Courses)\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/01\\/Sensei-Pro.png\",\"excerpt\":\"Sell your online courses using Sensei LMS with WooCommerce \\u2014 complete learning management with quizzes, certificates, content drip, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;149.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/01\\/SenseiProWooIcon-aut8wu.png\"},{\"title\":\"Sensei LMS Media Attachments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-media-attachments.png\",\"excerpt\":\"Provide your students with easy access to additional learning materials, from audio files to slideshows and PDFs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sensei-media-attachments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"788647a9a1d8ef5c95371f0e69223a0f\",\"slug\":\"sensei-media-attachments\",\"id\":290551,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png\",\"excerpt\":\"Automatic two-way sync for orders, customers, products, inventory and more between WooCommerce and QuickBooks (Online, Desktop, or POS).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"MyWorks Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/myworks-software\\/\",\"icon\":null},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/03\\/logo-csp-aqfm98.png\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253,\"rating\":4.7,\"reviews_count\":43,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398,\"rating\":4.3,\"reviews_count\":10,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Catalog Visibility Options\",\"image\":\"\",\"excerpt\":\"Transform WooCommerce into an online catalog by removing eCommerce functionality\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/catalog-visibility-options\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png\",\"excerpt\":\"Tame your order numbers! Upgrade from Sequential Order Numbers with advanced features and with optional prefixes\\/suffixes.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png\",\"excerpt\":\"The perfect search engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-product-search\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174,\"rating\":4.4,\"reviews_count\":148,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":null},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497,\"rating\":4,\"reviews_count\":20,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Klarna Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Payments_Pink.png\",\"excerpt\":\"With Klarna Payments\\u00a0you can choose the payment that you want, Pay Now, Pay Later or Slice It. No credit card numbers, no passwords, no worries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnapayments\\/\",\"price\":\"&#36;0.00\",\"hash\":\"a19c689325bc8ea63c620765dd54b33a\",\"slug\":\"klarna-payments-for-woocommerce\",\"id\":2754217,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":null},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"excerpt\":\"Create special pages where customers can choose products, checkout &amp; pay all on the one page.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Checkout Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/07\\/Thumbnail-Checkout-Add-Ons-updated.png\",\"excerpt\":\"Highlight relevant products, offers like free shipping and other up-sells during checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Coupon Shortcodes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-image-1870x960-1-vc5gux.png\",\"excerpt\":\"Show coupon discount info using shortcodes. Allows to render coupon information and content conditionally, based on the validity of coupons.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/coupon-shortcodes\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":null},{\"title\":\"Viva Wallet Standard Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/04\\/Viva-Wallet-logo.png?w=374\",\"excerpt\":\"Integrate the Viva Wallet payment gateway with your WooCommerce store to process and sync your payments and help you sell more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/viva-wallet-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"7240a329-047f-4d8b-b7ec-ee3defd798bd\",\"slug\":\"viva-wallet-for-woocommerce\",\"id\":6137160,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Viva Wallet\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/viva-wallet\\/\",\"icon\":null},{\"title\":\"HubSpot for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/04\\/hubspotlogo-web-color-pxebeq.png\",\"excerpt\":\"Connect your WooCommerce store to HubSpot. Sync, automate &amp; analyze data with HubSpot WooCommerce Integration\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/hubspot-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e50acec8-3a6c-454c-8562-2da4898fa6c1\",\"slug\":\"hubspot-for-woocommerce\",\"id\":5785079,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"MakeWebBetter\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/makewebbetter\\/\",\"icon\":null},{\"title\":\"First Data\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-FirstData-updated.png\",\"excerpt\":\"Accept payment with First Data using the Payeezy Gateway, Payeezy, or legacy Global Gateway payment gateways.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/firstdata\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"eb3e32663ec0810592eaf0d097796230\",\"slug\":\"woocommerce-gateway-firstdata\",\"id\":18645,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"}]}\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:69710:\"{\"products\":[{\"title\":\"WooCommerce Google Analytics\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/woo-Google_Analytics-fvsrvf.png\"},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Tax-Dark.png\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders - by city, country, or state - at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/12\\/stripe-app-icon-7m1xi7.png\"},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/11\\/Jetpack-1-m5mwyg.png\",\"excerpt\":\"Security, performance, and marketing tools made for WooCommerce stores by the WordPress experts. Get started with basic security and speed tools for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Jetpack\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/jetpack\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/02\\/jetpack-logo--80sgtq.png\"},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin for three powerful ways to help grow your business.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297,\"rating\":2,\"reviews_count\":60,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Pay-Dark.png\",\"excerpt\":\"The only payment solution fully integrated to Woo. Accept credit\\/debit cards &amp; local payment options with no setup or monthly fees.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/02\\/woo-WooCommerce_Payments-mtulxp.png\"},{\"title\":\"Square for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png\",\"excerpt\":\"Accepting payments is easy with Square. Clear rates, fast deposits (1-2 business days). Sell online and in person, and sync all payments, items and inventory.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503,\"rating\":3.2,\"reviews_count\":75,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/07\\/woo-Square-u8km15.png\"},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png\",\"excerpt\":\"Amazon Pay is embedded in your WooCommerce store. Transactions take place via\\u00a0Amazon widgets, so the buyer never leaves your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816,\"rating\":3.5,\"reviews_count\":13,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/08\\/woo-Amazon_Pay-8lvfuy.png\"},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Dark-1.png\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save up to 90%. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Subscriptions-Dark.png\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147,\"rating\":3.4,\"reviews_count\":41,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618,\"rating\":3,\"reviews_count\":23,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Mailchimp\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/mailchimp\\/\",\"icon\":null},{\"title\":\"ShipStation Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png\",\"excerpt\":\"Fulfill all your Woo orders (and wherever else you sell) quickly and easily using ShipStation. Try it free for 30 days today!\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/woo-Shipstation-xqap96.png\"},{\"title\":\"PayFast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Payfast-Dark-1.png\",\"excerpt\":\"Take payments on your WooCommerce store via PayFast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/09\\/woo-Payfast-murskg.png\"},{\"title\":\"Google Listings &amp; Ads\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/marketplace-card.png\",\"excerpt\":\"Reach millions of engaged shoppers across Google with free product listings and ads. Built in partnership with Google.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-listings-and-ads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"118f4d86-f126-4c3a-8525-644e3170d161\",\"slug\":\"google-listings-and-ads\",\"id\":7623964,\"rating\":2.8,\"reviews_count\":17,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/woo-GoogleListingsAds-jworee.png\"},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/usps-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-USPS-yhn1rb.png\"},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ups-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665,\"rating\":3.3,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"PayPal Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/PPCP-Tile-PayPal-Logo-and-Cart-Art-2x-2-uozwz8.jpg\",\"excerpt\":\"PayPal\'s latest, all-in-one checkout solution. Securely accept PayPal Digital Payments, credit\\/debit cards and local payment methods.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paypal-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"934115ab-e3f3-4435-9580-345b1ce21899\",\"slug\":\"woocommerce-paypal-payments\",\"id\":6410731,\"rating\":2.6,\"reviews_count\":12,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/woo-PayPal-nlioum.png\"},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693,\"rating\":3.1,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Google Ads &amp; Marketing by Kliken\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/02\\/GA-for-Woo-Logo-374x192px-qu3duk.png\",\"excerpt\":\"Get in front of shoppers and drive traffic to your store so you can grow your business with Smart Shopping Campaigns and free listings.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145,\"rating\":4.3,\"reviews_count\":110,\"vendor_name\":\"Kliken\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kliken\\/\",\"icon\":null},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"&#36;249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890,\"rating\":2.6,\"reviews_count\":26,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/table-rate-shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png\",\"excerpt\":\"Specify minimum and maximum allowed product quantities for orders to be completed.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/australia-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/canada-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-CanadaPost-fjlcfq.png\"},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/royalmail.png\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/woo-RoyalMail-sd9zwy.png\"},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/fedex-shipping-module\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-FedEx-auxjb7.png\"},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-csv-import-suite\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Follow-Ups\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Follow-Ups-Dark.png\",\"excerpt\":\"Automatically contact customers after purchase - be it everyone, your most loyal or your biggest spenders - and keep your store top-of-mind.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/follow-up-emails\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"05ece68fe94558e65278fe54d9ec84d2\",\"slug\":\"woocommerce-follow-up-emails\",\"id\":18686,\"rating\":3.1,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png\",\"excerpt\":\"Power your membership association, online magazine, elearning sites, and more with access control to content\\/products and member discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589,\"rating\":4.4,\"reviews_count\":78,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Braintree for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-Braintree-wrweyl.png\"},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/07\\/logo-pb-lzevsq.png\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages, and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716,\"rating\":4.9,\"reviews_count\":115,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982,\"rating\":2.9,\"reviews_count\":17,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/automatewoo\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/10\\/woo-AutomateWoo-m4jpva.png\"},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/woocommerce-xero-integration-sdth2k.jpg\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/woo-Xero-4ovyoc.png\"},{\"title\":\"Omnichannel for WooCommerce: Google, Amazon, eBay &amp; Walmart Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/10\\/Woo-Extension-Store-Logo-v3.png\",\"excerpt\":\"Get the official Google, Amazon, eBay and Walmart extension and create, sync and manage multichannel listings directly from WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-ebay-integration\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e4000666-9275-4c71-8619-be61fb41c9f9\",\"slug\":\"woocommerce-amazon-ebay-integration\",\"id\":3545890,\"rating\":3,\"reviews_count\":35,\"vendor_name\":\"Codisto\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/codisto\\/\",\"icon\":null},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/brands\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259,\"rating\":2.9,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Authorize.Net\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png\",\"excerpt\":\"Authorize.Net gateway with support for pre-orders and subscriptions.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481,\"rating\":4.7,\"reviews_count\":44,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/livechat\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.livechat.com\\/livechat-for-ecommerce\\/?a=woocommerce&amp;utm_source=woocommerce.com&amp;utm_medium=integration&amp;utm_campaign=woocommerce.com\",\"price\":\"&#36;0.00\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Live Chat\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/live-chat\\/\",\"icon\":null},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"excerpt\":\"Add gallery images per variation on variable products within WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/product\\/woo-single-1\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Storefront Homepage Contact Section\",\"image\":\"\",\"excerpt\":\"Add a Contact section to the Storefront homepage.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-homepage-contact-section\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"cb12b87f8bbb0139dafbf92ca1f871ef\",\"slug\":\"storefront-homepage-contact-section\",\"id\":1468793,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-Storefront-ipreuh.png\"},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Amazon S3 Storage\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/woo-AmazonS3Storage-jhzxk2.png\"},{\"title\":\"Cart Add-ons\",\"image\":\"\",\"excerpt\":\"A powerful tool for driving incremental and impulse purchases by customers once they are in the shopping cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/cart-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"3a8ef25334396206f5da4cf208adeda3\",\"slug\":\"woocommerce-cart-add-ons\",\"id\":18717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Storefront Footer Bar\",\"image\":\"\",\"excerpt\":\"Adds a full-width widget region above the Storefront footer widget area, which can be customized with colors and a background image.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-footer-bar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"6cfd3d4f923cafa16e4801ae801751f4\",\"slug\":\"storefront-footer-bar\",\"id\":1434472,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-Storefront-ipreuh.png\"},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping-multiple-addresses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Email Customizer\",\"image\":\"\",\"excerpt\":\"Connect with your customers with each email you send by visually modifying your email templates via the WordPress Customizer.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-email-customizer\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"bd909fa97874d431f203b5336c7e8873\",\"slug\":\"woocommerce-email-customizer\",\"id\":853277,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Force Sells\",\"image\":\"\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Quick View\",\"image\":\"\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-quick-view\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"excerpt\":\"Receive purchase orders via your WooCommerce-powered online store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"excerpt\":\"Manage the RMA process, add warranties to products &amp; let customers request &amp; manage returns \\/ exchanges from their account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/warranty-requests\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Product Enquiry Form\",\"image\":\"\",\"excerpt\":\"Allow visitors to contact you directly from the product details page via a reCAPTCHA protected form to enquire about a product.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-enquiry-form\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5a0f5d72519a8ffcc86669f042296937\",\"slug\":\"woocommerce-product-enquiry-form\",\"id\":18601,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ordercustomer-csv-export\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652,\"rating\":4.5,\"reviews_count\":23,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"excerpt\":\"Generates a unique barcode for each order on your site - perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce 360\\u00ba Image\",\"image\":\"\",\"excerpt\":\"An easy way to add a dynamic, controllable 360\\u00ba image rotation to your WooCommerce site, by adding a group of images to a product\\u2019s gallery.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-360-image\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging &amp; dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png\",\"excerpt\":\"Automate sales tax compliance for your multi-channel e-commerce business. Accurate sales tax calculations, data aggregation, quality reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"TaxJar\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/taxjar\\/\",\"icon\":null},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png\",\"excerpt\":\"Everything you need for discounts, coupons, credits, gift cards, product giveaways, offers, and promotions. Most popular and complete coupons plugin for WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"&#36;99.00\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729,\"rating\":4.5,\"reviews_count\":129,\"vendor_name\":\"StoreApps\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/storeapps\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/wc-icon-smart-coupons-160-p8fwgu.png\"},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Products Compare\",\"image\":\"\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-products-compare\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Store Catalog PDF Download\",\"image\":\"\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/woocommerce-zapier-logo.png\",\"excerpt\":\"Integrate your WooCommerce store with 4000+ cloud apps and services today. Trusted by 11,000+ users.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589,\"rating\":4.5,\"reviews_count\":35,\"vendor_name\":\"OM4\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/om4\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/OM4-Software-Logo-RGB-Round-160x160-1-372opg.png\"},{\"title\":\"WooCommerce AvaTax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-Avalara-updated.png\",\"excerpt\":\"Get 100% accurate sales tax calculations and on-time tax filing. No more tracking sales tax rates and rules.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/name-your-price\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738,\"rating\":5,\"reviews_count\":54,\"vendor_name\":\"Backcourt Development\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/backcourt-development\\/\",\"icon\":null},{\"title\":\"Storefront Reviews\",\"image\":\"\",\"excerpt\":\"Reviews can often be the deciding factor when making a purchase online. Highlight your best reviews on your homepage, or across your site with Storefront Reviews.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-reviews\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/reviews\\/\",\"price\":\"&#36;19.00\",\"hash\":\"0c8a1d86b8eff9f1edffa923aeb3fc1f\",\"slug\":\"storefront-reviews\",\"id\":1044976,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-Storefront-ipreuh.png\"},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643,\"rating\":3.3,\"reviews_count\":28,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Sensei LMS Course Progress\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-course-progress.png\",\"excerpt\":\"Enable your students to easily see their progress and pick up where they left off in a course.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sensei-course-progress\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"ec0f55d8fa7c517dc1844f5c873a77da\",\"slug\":\"sensei-course-progress\",\"id\":435833,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png\",\"excerpt\":\"Klarna Checkout is a full checkout experience embedded on your site that includes all popular payment methods (Pay Now, Pay Later, Financing, Installments).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"&#36;0.00\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":null},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/11\\/logo-regular-lscryp.png\",\"excerpt\":\"Feed rich product data to Google Merchant Center for setting up free product listings, product ads, and local inventory campaigns. Full control over your field mappings, and feed content so you can maximize campaign performance and ad spend.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619,\"rating\":4.2,\"reviews_count\":42,\"vendor_name\":\"Ademti Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/ademti-software\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/11\\/product-icon-omiutq.png\"},{\"title\":\"WooCommerce Print Invoices and Packing Lists\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/print-invoices-packing-lists\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666,\"rating\":4.4,\"reviews_count\":28,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Sensei LMS Certificates\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-certificates.png\",\"excerpt\":\"Award your students with a certificate of completion and a sense of accomplishment after finishing a course.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sensei-certificates\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"625ee5fe1bf36b4c741ab07507ba2ffd\",\"slug\":\"sensei-certificates\",\"id\":247548,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/06\\/logo-cp-ey7bzs.png\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836,\"rating\":4.9,\"reviews_count\":99,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gravity-forms-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/gravity-forms\\/\",\"price\":\"&#36;99.00\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Eway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/51456-Eway-logo-tagline-RGB-H-yellow-_-grey.png\",\"excerpt\":\"Take credit card payments securely via Eway (SG, MY, HK, AU, and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/woo-eway-0klzux.png\"},{\"title\":\"WooCommerce Blocks\",\"image\":\"\",\"excerpt\":\"WooCommerce Blocks offers a range of Gutenberg blocks you can use to build and customise your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gutenberg-products-block\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Sensei Pro (WC Paid Courses)\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/01\\/Sensei-Pro.png\",\"excerpt\":\"Sell your online courses using Sensei LMS with WooCommerce \\u2014 complete learning management with quizzes, certificates, content drip, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;149.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/01\\/SenseiProWooIcon-aut8wu.png\"},{\"title\":\"Sensei LMS Media Attachments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-media-attachments.png\",\"excerpt\":\"Provide your students with easy access to additional learning materials, from audio files to slideshows and PDFs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sensei-media-attachments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"788647a9a1d8ef5c95371f0e69223a0f\",\"slug\":\"sensei-media-attachments\",\"id\":290551,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png\",\"excerpt\":\"Automatic two-way sync for orders, customers, products, inventory and more between WooCommerce and QuickBooks (Online, Desktop, or POS).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"MyWorks Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/myworks-software\\/\",\"icon\":null},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/03\\/logo-csp-aqfm98.png\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253,\"rating\":4.7,\"reviews_count\":43,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398,\"rating\":4.3,\"reviews_count\":10,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Catalog Visibility Options\",\"image\":\"\",\"excerpt\":\"Transform WooCommerce into an online catalog by removing eCommerce functionality\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/catalog-visibility-options\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png\",\"excerpt\":\"Tame your order numbers! Upgrade from Sequential Order Numbers with advanced features and with optional prefixes\\/suffixes.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png\",\"excerpt\":\"The perfect search engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-product-search\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174,\"rating\":4.4,\"reviews_count\":148,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":null},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497,\"rating\":4,\"reviews_count\":20,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Klarna Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Payments_Pink.png\",\"excerpt\":\"With Klarna Payments\\u00a0you can choose the payment that you want, Pay Now, Pay Later or Slice It. No credit card numbers, no passwords, no worries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnapayments\\/\",\"price\":\"&#36;0.00\",\"hash\":\"a19c689325bc8ea63c620765dd54b33a\",\"slug\":\"klarna-payments-for-woocommerce\",\"id\":2754217,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":null},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"excerpt\":\"Create special pages where customers can choose products, checkout &amp; pay all on the one page.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Checkout Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/07\\/Thumbnail-Checkout-Add-Ons-updated.png\",\"excerpt\":\"Highlight relevant products, offers like free shipping and other up-sells during checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Coupon Shortcodes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-image-1870x960-1-vc5gux.png\",\"excerpt\":\"Show coupon discount info using shortcodes. Allows to render coupon information and content conditionally, based on the validity of coupons.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/coupon-shortcodes\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":null},{\"title\":\"Viva Wallet Standard Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/04\\/Viva-Wallet-logo.png?w=374\",\"excerpt\":\"Integrate the Viva Wallet payment gateway with your WooCommerce store to process and sync your payments and help you sell more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/viva-wallet-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"7240a329-047f-4d8b-b7ec-ee3defd798bd\",\"slug\":\"viva-wallet-for-woocommerce\",\"id\":6137160,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Viva Wallet\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/viva-wallet\\/\",\"icon\":null},{\"title\":\"HubSpot for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/04\\/hubspotlogo-web-color-pxebeq.png\",\"excerpt\":\"Connect your WooCommerce store to HubSpot. Sync, automate &amp; analyze data with HubSpot WooCommerce Integration\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/hubspot-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e50acec8-3a6c-454c-8562-2da4898fa6c1\",\"slug\":\"hubspot-for-woocommerce\",\"id\":5785079,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"MakeWebBetter\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/makewebbetter\\/\",\"icon\":null},{\"title\":\"First Data\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-FirstData-updated.png\",\"excerpt\":\"Accept payment with First Data using the Payeezy Gateway, Payeezy, or legacy Global Gateway payment gateways.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/firstdata\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"eb3e32663ec0810592eaf0d097796230\",\"slug\":\"woocommerce-gateway-firstdata\",\"id\":18645,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"}]}\";s:3:\"raw\";s:70390:\"HTTP/1.1 200 OK\r\nServer: nginx\r\nDate: Mon, 16 May 2022 10:52:49 GMT\r\nContent-Type: application/json; charset=UTF-8\r\nContent-Length: 12911\r\nConnection: close\r\nX-Robots-Tag: noindex\r\nLink: <https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\r\nX-Content-Type-Options: nosniff\r\nAccess-Control-Expose-Headers: X-WP-Total, X-WP-TotalPages, Link\r\nAccess-Control-Allow-Headers: Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type\r\nX-WCCOM-Cache: HIT\r\nCache-Control: max-age=60\r\nAllow: GET\r\nX-rq: bom1 0 4 9980\r\nContent-Encoding: gzip\r\nAge: 22\r\nX-Cache: hit\r\nVary: Accept-Encoding, Origin\r\nAccept-Ranges: bytes\r\nStrict-Transport-Security: max-age=31536000\r\n\r\n{\"products\":[{\"title\":\"WooCommerce Google Analytics\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/woo-Google_Analytics-fvsrvf.png\"},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Tax-Dark.png\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders - by city, country, or state - at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/12\\/stripe-app-icon-7m1xi7.png\"},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/11\\/Jetpack-1-m5mwyg.png\",\"excerpt\":\"Security, performance, and marketing tools made for WooCommerce stores by the WordPress experts. Get started with basic security and speed tools for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Jetpack\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/jetpack\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/02\\/jetpack-logo--80sgtq.png\"},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin for three powerful ways to help grow your business.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297,\"rating\":2,\"reviews_count\":60,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Pay-Dark.png\",\"excerpt\":\"The only payment solution fully integrated to Woo. Accept credit\\/debit cards &amp; local payment options with no setup or monthly fees.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/02\\/woo-WooCommerce_Payments-mtulxp.png\"},{\"title\":\"Square for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png\",\"excerpt\":\"Accepting payments is easy with Square. Clear rates, fast deposits (1-2 business days). Sell online and in person, and sync all payments, items and inventory.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503,\"rating\":3.2,\"reviews_count\":75,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/07\\/woo-Square-u8km15.png\"},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png\",\"excerpt\":\"Amazon Pay is embedded in your WooCommerce store. Transactions take place via\\u00a0Amazon widgets, so the buyer never leaves your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816,\"rating\":3.5,\"reviews_count\":13,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/08\\/woo-Amazon_Pay-8lvfuy.png\"},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Dark-1.png\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save up to 90%. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Subscriptions-Dark.png\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147,\"rating\":3.4,\"reviews_count\":41,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618,\"rating\":3,\"reviews_count\":23,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Mailchimp\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/mailchimp\\/\",\"icon\":null},{\"title\":\"ShipStation Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png\",\"excerpt\":\"Fulfill all your Woo orders (and wherever else you sell) quickly and easily using ShipStation. Try it free for 30 days today!\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/woo-Shipstation-xqap96.png\"},{\"title\":\"PayFast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Payfast-Dark-1.png\",\"excerpt\":\"Take payments on your WooCommerce store via PayFast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/09\\/woo-Payfast-murskg.png\"},{\"title\":\"Google Listings &amp; Ads\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/marketplace-card.png\",\"excerpt\":\"Reach millions of engaged shoppers across Google with free product listings and ads. Built in partnership with Google.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-listings-and-ads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"118f4d86-f126-4c3a-8525-644e3170d161\",\"slug\":\"google-listings-and-ads\",\"id\":7623964,\"rating\":2.8,\"reviews_count\":17,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/woo-GoogleListingsAds-jworee.png\"},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/usps-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-USPS-yhn1rb.png\"},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ups-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665,\"rating\":3.3,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"PayPal Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/PPCP-Tile-PayPal-Logo-and-Cart-Art-2x-2-uozwz8.jpg\",\"excerpt\":\"PayPal\'s latest, all-in-one checkout solution. Securely accept PayPal Digital Payments, credit\\/debit cards and local payment methods.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paypal-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"934115ab-e3f3-4435-9580-345b1ce21899\",\"slug\":\"woocommerce-paypal-payments\",\"id\":6410731,\"rating\":2.6,\"reviews_count\":12,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/woo-PayPal-nlioum.png\"},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693,\"rating\":3.1,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Google Ads &amp; Marketing by Kliken\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/02\\/GA-for-Woo-Logo-374x192px-qu3duk.png\",\"excerpt\":\"Get in front of shoppers and drive traffic to your store so you can grow your business with Smart Shopping Campaigns and free listings.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145,\"rating\":4.3,\"reviews_count\":110,\"vendor_name\":\"Kliken\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kliken\\/\",\"icon\":null},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"&#36;249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890,\"rating\":2.6,\"reviews_count\":26,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/table-rate-shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png\",\"excerpt\":\"Specify minimum and maximum allowed product quantities for orders to be completed.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/australia-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/canada-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-CanadaPost-fjlcfq.png\"},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/royalmail.png\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/woo-RoyalMail-sd9zwy.png\"},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/fedex-shipping-module\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/01\\/woo-FedEx-auxjb7.png\"},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-csv-import-suite\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Follow-Ups\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Follow-Ups-Dark.png\",\"excerpt\":\"Automatically contact customers after purchase - be it everyone, your most loyal or your biggest spenders - and keep your store top-of-mind.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/follow-up-emails\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"05ece68fe94558e65278fe54d9ec84d2\",\"slug\":\"woocommerce-follow-up-emails\",\"id\":18686,\"rating\":3.1,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png\",\"excerpt\":\"Power your membership association, online magazine, elearning sites, and more with access control to content\\/products and member discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589,\"rating\":4.4,\"reviews_count\":78,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Braintree for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-Braintree-wrweyl.png\"},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/07\\/logo-pb-lzevsq.png\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages, and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716,\"rating\":4.9,\"reviews_count\":115,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982,\"rating\":2.9,\"reviews_count\":17,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/automatewoo\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/10\\/woo-AutomateWoo-m4jpva.png\"},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/woocommerce-xero-integration-sdth2k.jpg\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/woo-Xero-4ovyoc.png\"},{\"title\":\"Omnichannel for WooCommerce: Google, Amazon, eBay &amp; Walmart Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/10\\/Woo-Extension-Store-Logo-v3.png\",\"excerpt\":\"Get the official Google, Amazon, eBay and Walmart extension and create, sync and manage multichannel listings directly from WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-ebay-integration\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e4000666-9275-4c71-8619-be61fb41c9f9\",\"slug\":\"woocommerce-amazon-ebay-integration\",\"id\":3545890,\"rating\":3,\"reviews_count\":35,\"vendor_name\":\"Codisto\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/codisto\\/\",\"icon\":null},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/brands\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259,\"rating\":2.9,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Authorize.Net\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png\",\"excerpt\":\"Authorize.Net gateway with support for pre-orders and subscriptions.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481,\"rating\":4.7,\"reviews_count\":44,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/livechat\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.livechat.com\\/livechat-for-ecommerce\\/?a=woocommerce&amp;utm_source=woocommerce.com&amp;utm_medium=integration&amp;utm_campaign=woocommerce.com\",\"price\":\"&#36;0.00\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Live Chat\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/live-chat\\/\",\"icon\":null},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"excerpt\":\"Add gallery images per variation on variable products within WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/product\\/woo-single-1\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Storefront Homepage Contact Section\",\"image\":\"\",\"excerpt\":\"Add a Contact section to the Storefront homepage.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-homepage-contact-section\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"cb12b87f8bbb0139dafbf92ca1f871ef\",\"slug\":\"storefront-homepage-contact-section\",\"id\":1468793,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-Storefront-ipreuh.png\"},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Amazon S3 Storage\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/woo-AmazonS3Storage-jhzxk2.png\"},{\"title\":\"Cart Add-ons\",\"image\":\"\",\"excerpt\":\"A powerful tool for driving incremental and impulse purchases by customers once they are in the shopping cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/cart-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"3a8ef25334396206f5da4cf208adeda3\",\"slug\":\"woocommerce-cart-add-ons\",\"id\":18717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Storefront Footer Bar\",\"image\":\"\",\"excerpt\":\"Adds a full-width widget region above the Storefront footer widget area, which can be customized with colors and a background image.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-footer-bar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"6cfd3d4f923cafa16e4801ae801751f4\",\"slug\":\"storefront-footer-bar\",\"id\":1434472,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-Storefront-ipreuh.png\"},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping-multiple-addresses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Email Customizer\",\"image\":\"\",\"excerpt\":\"Connect with your customers with each email you send by visually modifying your email templates via the WordPress Customizer.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-email-customizer\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"bd909fa97874d431f203b5336c7e8873\",\"slug\":\"woocommerce-email-customizer\",\"id\":853277,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Force Sells\",\"image\":\"\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Quick View\",\"image\":\"\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-quick-view\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"excerpt\":\"Receive purchase orders via your WooCommerce-powered online store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"excerpt\":\"Manage the RMA process, add warranties to products &amp; let customers request &amp; manage returns \\/ exchanges from their account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/warranty-requests\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Product Enquiry Form\",\"image\":\"\",\"excerpt\":\"Allow visitors to contact you directly from the product details page via a reCAPTCHA protected form to enquire about a product.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-enquiry-form\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5a0f5d72519a8ffcc86669f042296937\",\"slug\":\"woocommerce-product-enquiry-form\",\"id\":18601,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ordercustomer-csv-export\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652,\"rating\":4.5,\"reviews_count\":23,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"excerpt\":\"Generates a unique barcode for each order on your site - perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce 360\\u00ba Image\",\"image\":\"\",\"excerpt\":\"An easy way to add a dynamic, controllable 360\\u00ba image rotation to your WooCommerce site, by adding a group of images to a product\\u2019s gallery.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-360-image\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging &amp; dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png\",\"excerpt\":\"Automate sales tax compliance for your multi-channel e-commerce business. Accurate sales tax calculations, data aggregation, quality reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"TaxJar\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/taxjar\\/\",\"icon\":null},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png\",\"excerpt\":\"Everything you need for discounts, coupons, credits, gift cards, product giveaways, offers, and promotions. Most popular and complete coupons plugin for WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"&#36;99.00\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729,\"rating\":4.5,\"reviews_count\":129,\"vendor_name\":\"StoreApps\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/storeapps\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/08\\/wc-icon-smart-coupons-160-p8fwgu.png\"},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Products Compare\",\"image\":\"\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-products-compare\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Store Catalog PDF Download\",\"image\":\"\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/woocommerce-zapier-logo.png\",\"excerpt\":\"Integrate your WooCommerce store with 4000+ cloud apps and services today. Trusted by 11,000+ users.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589,\"rating\":4.5,\"reviews_count\":35,\"vendor_name\":\"OM4\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/om4\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/OM4-Software-Logo-RGB-Round-160x160-1-372opg.png\"},{\"title\":\"WooCommerce AvaTax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-Avalara-updated.png\",\"excerpt\":\"Get 100% accurate sales tax calculations and on-time tax filing. No more tracking sales tax rates and rules.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/name-your-price\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738,\"rating\":5,\"reviews_count\":54,\"vendor_name\":\"Backcourt Development\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/backcourt-development\\/\",\"icon\":null},{\"title\":\"Storefront Reviews\",\"image\":\"\",\"excerpt\":\"Reviews can often be the deciding factor when making a purchase online. Highlight your best reviews on your homepage, or across your site with Storefront Reviews.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-reviews\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/reviews\\/\",\"price\":\"&#36;19.00\",\"hash\":\"0c8a1d86b8eff9f1edffa923aeb3fc1f\",\"slug\":\"storefront-reviews\",\"id\":1044976,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/woo-Storefront-ipreuh.png\"},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643,\"rating\":3.3,\"reviews_count\":28,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Sensei LMS Course Progress\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-course-progress.png\",\"excerpt\":\"Enable your students to easily see their progress and pick up where they left off in a course.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sensei-course-progress\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"ec0f55d8fa7c517dc1844f5c873a77da\",\"slug\":\"sensei-course-progress\",\"id\":435833,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png\",\"excerpt\":\"Klarna Checkout is a full checkout experience embedded on your site that includes all popular payment methods (Pay Now, Pay Later, Financing, Installments).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"&#36;0.00\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":null},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/11\\/logo-regular-lscryp.png\",\"excerpt\":\"Feed rich product data to Google Merchant Center for setting up free product listings, product ads, and local inventory campaigns. Full control over your field mappings, and feed content so you can maximize campaign performance and ad spend.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619,\"rating\":4.2,\"reviews_count\":42,\"vendor_name\":\"Ademti Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/ademti-software\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/11\\/product-icon-omiutq.png\"},{\"title\":\"WooCommerce Print Invoices and Packing Lists\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/print-invoices-packing-lists\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666,\"rating\":4.4,\"reviews_count\":28,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Sensei LMS Certificates\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-certificates.png\",\"excerpt\":\"Award your students with a certificate of completion and a sense of accomplishment after finishing a course.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sensei-certificates\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"625ee5fe1bf36b4c741ab07507ba2ffd\",\"slug\":\"sensei-certificates\",\"id\":247548,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/06\\/logo-cp-ey7bzs.png\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836,\"rating\":4.9,\"reviews_count\":99,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gravity-forms-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/gravity-forms\\/\",\"price\":\"&#36;99.00\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Eway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/51456-Eway-logo-tagline-RGB-H-yellow-_-grey.png\",\"excerpt\":\"Take credit card payments securely via Eway (SG, MY, HK, AU, and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/woo-eway-0klzux.png\"},{\"title\":\"WooCommerce Blocks\",\"image\":\"\",\"excerpt\":\"WooCommerce Blocks offers a range of Gutenberg blocks you can use to build and customise your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gutenberg-products-block\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Sensei Pro (WC Paid Courses)\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/01\\/Sensei-Pro.png\",\"excerpt\":\"Sell your online courses using Sensei LMS with WooCommerce \\u2014 complete learning management with quizzes, certificates, content drip, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;149.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/01\\/SenseiProWooIcon-aut8wu.png\"},{\"title\":\"Sensei LMS Media Attachments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-media-attachments.png\",\"excerpt\":\"Provide your students with easy access to additional learning materials, from audio files to slideshows and PDFs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sensei-media-attachments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"788647a9a1d8ef5c95371f0e69223a0f\",\"slug\":\"sensei-media-attachments\",\"id\":290551,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png\",\"excerpt\":\"Automatic two-way sync for orders, customers, products, inventory and more between WooCommerce and QuickBooks (Online, Desktop, or POS).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"MyWorks Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/myworks-software\\/\",\"icon\":null},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/03\\/logo-csp-aqfm98.png\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253,\"rating\":4.7,\"reviews_count\":43,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398,\"rating\":4.3,\"reviews_count\":10,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Catalog Visibility Options\",\"image\":\"\",\"excerpt\":\"Transform WooCommerce into an online catalog by removing eCommerce functionality\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/catalog-visibility-options\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png\",\"excerpt\":\"Tame your order numbers! Upgrade from Sequential Order Numbers with advanced features and with optional prefixes\\/suffixes.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png\",\"excerpt\":\"The perfect search engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-product-search\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174,\"rating\":4.4,\"reviews_count\":148,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":null},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497,\"rating\":4,\"reviews_count\":20,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Klarna Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Payments_Pink.png\",\"excerpt\":\"With Klarna Payments\\u00a0you can choose the payment that you want, Pay Now, Pay Later or Slice It. No credit card numbers, no passwords, no worries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnapayments\\/\",\"price\":\"&#36;0.00\",\"hash\":\"a19c689325bc8ea63c620765dd54b33a\",\"slug\":\"klarna-payments-for-woocommerce\",\"id\":2754217,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":null},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"excerpt\":\"Create special pages where customers can choose products, checkout &amp; pay all on the one page.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Checkout Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/07\\/Thumbnail-Checkout-Add-Ons-updated.png\",\"excerpt\":\"Highlight relevant products, offers like free shipping and other up-sells during checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Coupon Shortcodes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-image-1870x960-1-vc5gux.png\",\"excerpt\":\"Show coupon discount info using shortcodes. Allows to render coupon information and content conditionally, based on the validity of coupons.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/coupon-shortcodes\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":null},{\"title\":\"Viva Wallet Standard Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/04\\/Viva-Wallet-logo.png?w=374\",\"excerpt\":\"Integrate the Viva Wallet payment gateway with your WooCommerce store to process and sync your payments and help you sell more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/viva-wallet-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"7240a329-047f-4d8b-b7ec-ee3defd798bd\",\"slug\":\"viva-wallet-for-woocommerce\",\"id\":6137160,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Viva Wallet\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/viva-wallet\\/\",\"icon\":null},{\"title\":\"HubSpot for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/04\\/hubspotlogo-web-color-pxebeq.png\",\"excerpt\":\"Connect your WooCommerce store to HubSpot. Sync, automate &amp; analyze data with HubSpot WooCommerce Integration\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/hubspot-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e50acec8-3a6c-454c-8562-2da4898fa6c1\",\"slug\":\"hubspot-for-woocommerce\",\"id\":5785079,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"MakeWebBetter\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/makewebbetter\\/\",\"icon\":null},{\"title\":\"First Data\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-FirstData-updated.png\",\"excerpt\":\"Accept payment with First Data using the Payeezy Gateway, Payeezy, or legacy Global Gateway payment gateways.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/firstdata\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"eb3e32663ec0810592eaf0d097796230\",\"slug\":\"woocommerce-gateway-firstdata\",\"id\":18645,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"}]}\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:19:{s:6:\"server\";a:1:{i:0;s:5:\"nginx\";}s:4:\"date\";a:1:{i:0;s:29:\"Mon, 16 May 2022 10:52:49 GMT\";}s:12:\"content-type\";a:1:{i:0;s:31:\"application/json; charset=UTF-8\";}s:14:\"content-length\";a:1:{i:0;s:5:\"12911\";}s:12:\"x-robots-tag\";a:1:{i:0;s:7:\"noindex\";}s:4:\"link\";a:1:{i:0;s:60:\"<https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\";}s:22:\"x-content-type-options\";a:1:{i:0;s:7:\"nosniff\";}s:29:\"access-control-expose-headers\";a:1:{i:0;s:33:\"X-WP-Total, X-WP-TotalPages, Link\";}s:28:\"access-control-allow-headers\";a:1:{i:0;s:73:\"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type\";}s:13:\"x-wccom-cache\";a:1:{i:0;s:3:\"HIT\";}s:13:\"cache-control\";a:1:{i:0;s:10:\"max-age=60\";}s:5:\"allow\";a:1:{i:0;s:3:\"GET\";}s:4:\"x-rq\";a:1:{i:0;s:13:\"bom1 0 4 9980\";}s:16:\"content-encoding\";a:1:{i:0;s:4:\"gzip\";}s:3:\"age\";a:1:{i:0;s:2:\"22\";}s:7:\"x-cache\";a:1:{i:0;s:3:\"hit\";}s:4:\"vary\";a:1:{i:0;s:23:\"Accept-Encoding, Origin\";}s:13:\"accept-ranges\";a:1:{i:0;s:5:\"bytes\";}s:25:\"strict-transport-security\";a:1:{i:0;s:16:\"max-age=31536000\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.100000000000000088817841970012523233890533447265625;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:59:\"https://woocommerce.com/wp-json/wccom-extensions/1.0/search\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:0:{}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}','no'),(7871,'_transient_timeout_woocommerce_admin_remote_free_extensions_specs','1653303169','no'),(7872,'_transient_woocommerce_admin_remote_free_extensions_specs','a:4:{s:10:\"obw/basics\";O:8:\"stdClass\":3:{s:3:\"key\";s:10:\"obw/basics\";s:5:\"title\";s:14:\"Get the basics\";s:7:\"plugins\";a:4:{i:0;O:8:\"stdClass\":4:{s:11:\"description\";s:163:\"Accept credit cards and other popular payment methods with <a href=\"https://woocommerce.com/products/woocommerce-payments\" target=\"_blank\">WooCommerce Payments</a>\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:19:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:3:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}i:2;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_search\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:2:\"!=\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";s:0:\"\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:20:\"woocommerce-payments\";}i:1;O:8:\"stdClass\":4:{s:11:\"description\";s:119:\"Print shipping labels with <a href=\"https://woocommerce.com/products/shipping\" target=\"_blank\">WooCommerce Shipping</a>\";s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:13:\"product_types\";}}i:1;O:8:\"stdClass\":1:{s:3:\"use\";s:5:\"count\";}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:5:\"value\";i:1;s:7:\"default\";s:0:\"\";s:9:\"operation\";s:2:\"!=\";}}i:1;a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:15:\"product_types.0\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:5:\"value\";s:9:\"downloads\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:2:\"!=\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:29:\"woocommerce-services:shipping\";}i:2;O:8:\"stdClass\":4:{s:11:\"description\";s:111:\"Get automated sales tax with <a href=\"https://woocommerce.com/products/tax\" target=\"_blank\">WooCommerce Tax</a>\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:24:\"woocommerce-services:tax\";}i:3;O:8:\"stdClass\":4:{s:11:\"description\";s:110:\"Enhance speed and security with <a href=\"https://woocommerce.com/products/jetpack\" target=\"_blank\">Jetpack</a>\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:7:\"jetpack\";}}}}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:7:\"jetpack\";}}}s:8:\"obw/grow\";O:8:\"stdClass\":3:{s:3:\"key\";s:8:\"obw/grow\";s:5:\"title\";s:15:\"Grow your store\";s:7:\"plugins\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:115:\"Level up your email marketing with <a href=\"https://woocommerce.com/products/mailpoet\" target=\"_blank\">MailPoet</a>\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:8:\"mailpoet\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:8:\"mailpoet\";}i:1;O:8:\"stdClass\":7:{s:4:\"name\";s:21:\"Google Listings & Ads\";s:11:\"description\";s:127:\"Drive sales with <a href=\"https://woocommerce.com/products/google-listings-and-ads\" target=\"_blank\">Google Listings and Ads</a>\";s:9:\"image_url\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/google-listings-and-ads.png\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google-listings-and-ads\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:23:\"google-listings-and-ads\";}}}s:15:\"task-list/reach\";O:8:\"stdClass\":3:{s:3:\"key\";s:15:\"task-list/reach\";s:5:\"title\";s:22:\"Reach out to customers\";s:7:\"plugins\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:111:\"Create and send purchase follow-up emails, newsletters, and promotional campaigns straight from your dashboard.\";s:9:\"image_url\";s:96:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/mailpoet.png\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:12:\"mailpoet:alt\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:9:\"Mailchimp\";s:11:\"description\";s:78:\"Send targeted campaigns, recover abandoned carts and much more with Mailchimp.\";s:9:\"image_url\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/mailchimp-for-woocommerce.png\";s:10:\"manage_url\";s:36:\"admin.php?page=mailchimp-woocommerce\";s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:25:\"mailchimp-for-woocommerce\";}i:2;O:8:\"stdClass\":6:{s:4:\"name\";s:29:\"Creative Mail for WooCommerce\";s:11:\"description\";s:99:\"Create on-brand store campaigns, fast email promotions and customer retargeting with Creative Mail.\";s:9:\"image_url\";s:121:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/creative-mail-by-constant-contact.png\";s:10:\"manage_url\";s:27:\"admin.php?page=creativemail\";s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:33:\"creative-mail-by-constant-contact\";}}}s:14:\"task-list/grow\";O:8:\"stdClass\":3:{s:3:\"key\";s:14:\"task-list/grow\";s:5:\"title\";s:15:\"Grow your store\";s:7:\"plugins\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"Google Listings & Ads\";s:11:\"description\";s:134:\"Reach more shoppers and drive sales for your store. Integrate with Google to list your products for free and launch paid ad campaigns.\";s:9:\"image_url\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/google-listings-and-ads.png\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:27:\"google-listings-and-ads:alt\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:159:\"Get your products in front of Pinterest users searching for ideas and things to buy. Get started with Pinterest and make your entire product catalog browsable.\";s:9:\"image_url\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/pinterest.png\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:25:\"pinterest-for-woocommerce\";}}}}','no'),(7874,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1652707131;s:7:\"checked\";a:6:{s:8:\"flatsome\";s:6:\"3.14.3\";s:7:\"padmini\";s:3:\"3.0\";s:14:\"twentynineteen\";s:3:\"2.2\";s:12:\"twentytwenty\";s:3:\"1.9\";s:15:\"twentytwentyone\";s:3:\"1.5\";s:15:\"twentytwentytwo\";s:3:\"1.1\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:5:{s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.2\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.2.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"1.9\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.9.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.5.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.1.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}s:8:\"flatsome\";a:4:{s:5:\"theme\";s:8:\"flatsome\";s:11:\"new_version\";s:6:\"3.14.3\";s:3:\"url\";s:92:\"https://demoweblinks.in/padmini/wp-admin/admin.php?page=flatsome-version-info&version=3.14.3\";s:7:\"package\";s:114:\"https://demoweblinks.in/padmini/wp-admin/admin.php?page=flatsome-panel&flatsome_version=3.14.3&flatsome_download=1\";}}s:12:\"translations\";a:0:{}}','no'),(7880,'_transient_timeout_global_styles_svg_filters_padmini','1652707188','no'),(7881,'_transient_global_styles_svg_filters_padmini','<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-dark-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncG type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncB type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.54901960784314 0.98823529411765\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.71764705882353 0.25490196078431\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-red\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 0.27843137254902\" /><feFuncB type=\"table\" tableValues=\"0.5921568627451 0.27843137254902\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-midnight\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0\" /><feFuncG type=\"table\" tableValues=\"0 0.64705882352941\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-magenta-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.78039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.94901960784314\" /><feFuncB type=\"table\" tableValues=\"0.35294117647059 0.47058823529412\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-green\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.65098039215686 0.40392156862745\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.44705882352941 0.4\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-orange\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.098039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.66274509803922\" /><feFuncB type=\"table\" tableValues=\"0.84705882352941 0.41960784313725\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg>','no'),(7882,'_transient_timeout_global_styles_padmini','1652707188','no'),(7883,'_transient_global_styles_padmini','body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url(\'#wp-duotone-dark-grayscale\');--wp--preset--duotone--grayscale: url(\'#wp-duotone-grayscale\');--wp--preset--duotone--purple-yellow: url(\'#wp-duotone-purple-yellow\');--wp--preset--duotone--blue-red: url(\'#wp-duotone-blue-red\');--wp--preset--duotone--midnight: url(\'#wp-duotone-midnight\');--wp--preset--duotone--magenta-yellow: url(\'#wp-duotone-magenta-yellow\');--wp--preset--duotone--purple-green: url(\'#wp-duotone-purple-green\');--wp--preset--duotone--blue-orange: url(\'#wp-duotone-blue-orange\');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}','no'),(7885,'_transient_timeout__woocommerce_helper_subscriptions','1652708029','no'),(7886,'_transient__woocommerce_helper_subscriptions','a:0:{}','no'),(7887,'_site_transient_timeout_theme_roots','1652708929','no'),(7888,'_site_transient_theme_roots','a:6:{s:8:\"flatsome\";s:7:\"/themes\";s:7:\"padmini\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(7889,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1652707132;s:8:\"response\";a:1:{s:34:\"yith-woocommerce-wishlist/init.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:39:\"w.org/plugins/yith-woocommerce-wishlist\";s:4:\"slug\";s:25:\"yith-woocommerce-wishlist\";s:6:\"plugin\";s:34:\"yith-woocommerce-wishlist/init.php\";s:11:\"new_version\";s:5:\"3.9.0\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/yith-woocommerce-wishlist/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/yith-woocommerce-wishlist.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:78:\"https://ps.w.org/yith-woocommerce-wishlist/assets/icon-128x128.jpg?rev=2215573\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:81:\"https://ps.w.org/yith-woocommerce-wishlist/assets/banner-1544x500.jpg?rev=2209192\";s:2:\"1x\";s:80:\"https://ps.w.org/yith-woocommerce-wishlist/assets/banner-772x250.jpg?rev=2209192\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.7\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";b:0;}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:11:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.2.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.2.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.5.6\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.5.6.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=2279696\";s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.7\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:53:\"nextend-facebook-connect/nextend-facebook-connect.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"w.org/plugins/nextend-facebook-connect\";s:4:\"slug\";s:24:\"nextend-facebook-connect\";s:6:\"plugin\";s:53:\"nextend-facebook-connect/nextend-facebook-connect.php\";s:11:\"new_version\";s:5:\"3.1.4\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/nextend-facebook-connect/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/nextend-facebook-connect.3.1.4.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:77:\"https://ps.w.org/nextend-facebook-connect/assets/icon-256x256.png?rev=1825061\";s:2:\"1x\";s:69:\"https://ps.w.org/nextend-facebook-connect/assets/icon.svg?rev=1825061\";s:3:\"svg\";s:69:\"https://ps.w.org/nextend-facebook-connect/assets/icon.svg?rev=1825061\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/nextend-facebook-connect/assets/banner-1544x500.png?rev=2159749\";s:2:\"1x\";s:79:\"https://ps.w.org/nextend-facebook-connect/assets/banner-772x250.png?rev=2159749\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:53:\"products-compare-for-woocommerce/products-compare.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:46:\"w.org/plugins/products-compare-for-woocommerce\";s:4:\"slug\";s:32:\"products-compare-for-woocommerce\";s:6:\"plugin\";s:53:\"products-compare-for-woocommerce/products-compare.php\";s:11:\"new_version\";s:7:\"3.5.7.4\";s:3:\"url\";s:63:\"https://wordpress.org/plugins/products-compare-for-woocommerce/\";s:7:\"package\";s:83:\"https://downloads.wordpress.org/plugin/products-compare-for-woocommerce.3.5.7.4.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:85:\"https://ps.w.org/products-compare-for-woocommerce/assets/icon-128x128.png?rev=2499559\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:87:\"https://ps.w.org/products-compare-for-woocommerce/assets/banner-772x250.png?rev=2499559\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:51:\"ti-woocommerce-wishlist/ti-woocommerce-wishlist.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/ti-woocommerce-wishlist\";s:4:\"slug\";s:23:\"ti-woocommerce-wishlist\";s:6:\"plugin\";s:51:\"ti-woocommerce-wishlist/ti-woocommerce-wishlist.php\";s:11:\"new_version\";s:6:\"1.44.1\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/ti-woocommerce-wishlist/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/ti-woocommerce-wishlist.1.44.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/ti-woocommerce-wishlist/assets/icon-256x256.gif?rev=2469447\";s:2:\"1x\";s:76:\"https://ps.w.org/ti-woocommerce-wishlist/assets/icon-128x128.gif?rev=2469447\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/ti-woocommerce-wishlist/assets/banner-1544x500.png?rev=2071101\";s:2:\"1x\";s:78:\"https://ps.w.org/ti-woocommerce-wishlist/assets/banner-772x250.png?rev=2071101\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"6.5.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.5.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=2366418\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=2366418\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2366418\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2366418\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.7\";}s:45:\"woocommerce-multilingual/wpml-woocommerce.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"w.org/plugins/woocommerce-multilingual\";s:4:\"slug\";s:24:\"woocommerce-multilingual\";s:6:\"plugin\";s:45:\"woocommerce-multilingual/wpml-woocommerce.php\";s:11:\"new_version\";s:6:\"4.12.6\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/woocommerce-multilingual/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/woocommerce-multilingual.4.12.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/woocommerce-multilingual/assets/icon-256x256.png?rev=2026021\";s:2:\"1x\";s:77:\"https://ps.w.org/woocommerce-multilingual/assets/icon-128x128.png?rev=2026021\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:79:\"https://ps.w.org/woocommerce-multilingual/assets/banner-772x250.png?rev=2026021\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";}s:39:\"woocommerce-currency-switcher/index.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:43:\"w.org/plugins/woocommerce-currency-switcher\";s:4:\"slug\";s:29:\"woocommerce-currency-switcher\";s:6:\"plugin\";s:39:\"woocommerce-currency-switcher/index.php\";s:11:\"new_version\";s:7:\"1.3.7.5\";s:3:\"url\";s:60:\"https://wordpress.org/plugins/woocommerce-currency-switcher/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/woocommerce-currency-switcher.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:82:\"https://ps.w.org/woocommerce-currency-switcher/assets/icon-256x256.png?rev=2462480\";s:2:\"1x\";s:82:\"https://ps.w.org/woocommerce-currency-switcher/assets/icon-128x128.png?rev=2462480\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:85:\"https://ps.w.org/woocommerce-currency-switcher/assets/banner-1544x500.png?rev=2462480\";s:2:\"1x\";s:84:\"https://ps.w.org/woocommerce-currency-switcher/assets/banner-772x250.png?rev=2462480\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"4.9.0\";}s:23:\"wordfence/wordfence.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/wordfence\";s:4:\"slug\";s:9:\"wordfence\";s:6:\"plugin\";s:23:\"wordfence/wordfence.php\";s:11:\"new_version\";s:5:\"7.5.9\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/wordfence/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/wordfence.7.5.9.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/wordfence/assets/icon-256x256.png?rev=2070855\";s:2:\"1x\";s:54:\"https://ps.w.org/wordfence/assets/icon.svg?rev=2070865\";s:3:\"svg\";s:54:\"https://ps.w.org/wordfence/assets/icon.svg?rev=2070865\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wordfence/assets/banner-1544x500.jpg?rev=2124102\";s:2:\"1x\";s:64:\"https://ps.w.org/wordfence/assets/banner-772x250.jpg?rev=2124102\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.9\";}s:33:\"yith-woocommerce-compare/init.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"w.org/plugins/yith-woocommerce-compare\";s:4:\"slug\";s:24:\"yith-woocommerce-compare\";s:6:\"plugin\";s:33:\"yith-woocommerce-compare/init.php\";s:11:\"new_version\";s:6:\"2.13.0\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/yith-woocommerce-compare/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/yith-woocommerce-compare.2.13.0.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:77:\"https://ps.w.org/yith-woocommerce-compare/assets/icon-128x128.jpg?rev=1460909\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/yith-woocommerce-compare/assets/banner-1544x500.jpg?rev=1460909\";s:2:\"1x\";s:79:\"https://ps.w.org/yith-woocommerce-compare/assets/banner-772x250.jpg?rev=1460909\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.7\";}}s:7:\"checked\";a:12:{s:19:\"akismet/akismet.php\";s:5:\"4.2.3\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.5.6\";s:9:\"hello.php\";s:5:\"1.7.2\";s:53:\"nextend-facebook-connect/nextend-facebook-connect.php\";s:5:\"3.1.4\";s:53:\"products-compare-for-woocommerce/products-compare.php\";s:7:\"3.5.7.4\";s:51:\"ti-woocommerce-wishlist/ti-woocommerce-wishlist.php\";s:6:\"1.44.1\";s:27:\"woocommerce/woocommerce.php\";s:5:\"6.5.1\";s:45:\"woocommerce-multilingual/wpml-woocommerce.php\";s:6:\"4.12.6\";s:39:\"woocommerce-currency-switcher/index.php\";s:7:\"1.3.7.5\";s:23:\"wordfence/wordfence.php\";s:5:\"7.5.9\";s:33:\"yith-woocommerce-compare/init.php\";s:6:\"2.13.0\";s:34:\"yith-woocommerce-wishlist/init.php\";s:5:\"3.8.0\";}}','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_postmeta`
--

DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=9115 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_postmeta`
--

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(5,6,'_form','<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]'),(6,6,'_mail','a:8:{s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:37:\"[_site_title] <sonuvalakam@gmail.com>\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(7,6,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:37:\"[_site_title] <sonuvalakam@gmail.com>\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(8,6,'_messages','a:12:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";}'),(9,6,'_additional_settings',''),(10,6,'_locale','en_US'),(11,7,'_wp_attached_file','woocommerce-placeholder.png'),(12,7,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13,13,'_form','<div class=\"form-flat\">\n[text* your-name placeholder \"Your Name (required)\"]\n\n[email* your-email placeholder \"Your Email (required)\"] </p>\n\n[textarea your-message placeholder \"Your Message (required)\"] </p>\n\n[submit class:button primary \"Submit\"]\n</div>'),(14,13,'_mail',''),(15,13,'_mail_2',''),(16,13,'_messages','a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(17,13,'_additional_settings',''),(18,13,'_locale','en_US'),(19,14,'_form','<div class=\"form-flat\">\n	[email* your-email placeholder \"Your Email (required)\"]\n\n	[submit class:button primary \"Sign Up\"]\n</div>'),(20,14,'_mail','a:8:{s:7:\"subject\";s:11:\"New signup!\";s:6:\"sender\";s:34:\"Flatsome Theme <mail@flatsome.dev>\";s:4:\"body\";s:24:\"New signup: [your-email]\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(21,14,'_mail_2',''),(22,14,'_messages','a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(23,14,'_additional_settings',''),(24,14,'_locale','en_US'),(25,15,'_form','<div class=\"flex-row form-flat medium-flex-wrap\">\n<div class=\"flex-col flex-grow\">\n	[email* your-email placeholder \"Email ID\"]\n</div>\n<div class=\"flex-col ml-half\">\n	[submit class:button-newsletter secondary \"Submit\"]\n</div>\n</div>'),(26,15,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:26:\"[your-name] <[your-email]>\";s:9:\"recipient\";s:19:\"sonus90@outlook.com\";s:4:\"body\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(27,15,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:9:\"recipient\";s:0:\"\";s:4:\"body\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(28,15,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(29,15,'_additional_settings',''),(30,15,'_locale','en_US'),(31,16,'_form','<label>Your Name (required)</label>\n[text* your-name]\n\n<label>Your Email (required)</label>\n[email*  your-email] </p>\n\n<label>Your Message (required)</label>\n[textarea your-message] </p>\n\n[submit class:button primary \"Submit\"]'),(32,16,'_mail',''),(33,16,'_mail_2',''),(34,16,'_messages','a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(35,16,'_additional_settings',''),(36,16,'_locale','en_US'),(37,17,'_wp_attached_file','2016/08/dummy-1.jpg'),(38,17,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:260;s:4:\"file\";s:19:\"2016/08/dummy-1.jpg\";s:5:\"sizes\";a:6:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"dummy-1-300x260.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"dummy-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"dummy-1-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"dummy-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"dummy-1-300x260.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"dummy-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(39,18,'_wp_attached_file','2016/08/dummy-2.jpg'),(40,18,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:650;s:4:\"file\";s:19:\"2016/08/dummy-2.jpg\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"dummy-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"dummy-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"dummy-2-600x390.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:390;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"dummy-2-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"dummy-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"dummy-2-768x499.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"dummy-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"dummy-2-600x390.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:390;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"dummy-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(41,19,'_wp_attached_file','2016/08/dummy-prod-1.jpg'),(42,19,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2016/08/dummy-prod-1.jpg\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"dummy-prod-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"dummy-prod-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"dummy-prod-1-250x300.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"dummy-prod-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:24:\"dummy-prod-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"dummy-prod-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:24:\"dummy-prod-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(44,20,'_thumbnail_id','391'),(46,21,'_thumbnail_id','390'),(48,22,'_thumbnail_id','388'),(50,23,'_thumbnail_id','17'),(52,24,'_thumbnail_id','17'),(54,25,'_thumbnail_id','17'),(56,26,'_thumbnail_id','17'),(58,27,'_thumbnail_id','17'),(59,28,'_footer','normal'),(60,28,'_wp_page_template','default'),(61,29,'_footer','normal'),(62,29,'_wp_page_template','page-left-sidebar.php'),(63,30,'_footer','normal'),(64,30,'_thumbnail_id','17'),(65,30,'_wp_page_template','page-blank.php'),(66,31,'_footer','transparent'),(67,31,'_wp_page_template','page-transparent-header-light.php'),(68,31,'_thumbnail_id','17'),(69,32,'_footer','normal'),(70,32,'_wp_page_template','page-blank-landingpage.php'),(71,33,'_footer','transparent'),(72,33,'_wp_page_template','page-transparent-header-light.php'),(73,33,'_thumbnail_id','17'),(74,34,'_footer','normal'),(75,34,'_wp_page_template','page-blank.php'),(76,34,'_thumbnail_id','17'),(77,35,'_footer','normal'),(78,35,'_wp_page_template','page-blank.php'),(79,35,'_thumbnail_id','17'),(80,36,'_footer','transparent'),(81,36,'_wp_page_template','page-transparent-header-light.php'),(82,36,'_thumbnail_id','17'),(83,37,'_footer','normal'),(84,37,'_wp_page_template','page-blank.php'),(85,37,'_thumbnail_id','17'),(86,38,'_footer','normal'),(87,38,'_wp_page_template','default'),(88,38,'_thumbnail_id','17'),(89,39,'_footer','normal'),(90,39,'_wp_page_template','page-blank.php'),(91,39,'_thumbnail_id','17'),(92,40,'_footer','normal'),(93,40,'_wp_page_template','page-blank.php'),(94,40,'_thumbnail_id','17'),(95,41,'_footer','normal'),(96,41,'_wp_page_template','default'),(97,41,'_thumbnail_id','17'),(98,42,'_footer','normal'),(99,42,'_wp_page_template','page-blank.php'),(100,42,'_thumbnail_id','17'),(101,43,'_footer','normal'),(102,43,'_wp_page_template','page-blank.php'),(103,43,'_thumbnail_id','17'),(104,44,'_wp_page_template','page-transparent-header.php'),(105,44,'_footer','normal'),(106,44,'_thumbnail_id','17'),(107,45,'_wp_page_template','page-blank.php'),(108,45,'_footer','normal'),(109,45,'_thumbnail_id','17'),(110,46,'_thumbnail_id','17'),(111,46,'_wp_page_template','page-blank.php'),(112,46,'_footer','normal'),(113,47,'_thumbnail_id','17'),(114,47,'_wp_page_template','page-blank.php'),(115,47,'_footer','normal'),(116,48,'_thumbnail_id','17'),(117,48,'_wp_page_template','page-blank.php'),(118,48,'_footer','normal'),(119,49,'_thumbnail_id','17'),(120,49,'_wp_page_template','page-blank.php'),(121,49,'_footer','normal'),(122,50,'_wp_page_template','page-blank.php'),(123,50,'_thumbnail_id','17'),(124,50,'_footer','normal'),(125,51,'_wp_page_template','page-blank.php'),(126,51,'_thumbnail_id','17'),(127,51,'_footer','normal'),(128,52,'_thumbnail_id','17'),(129,52,'_wp_page_template','page-blank.php'),(130,52,'_footer','normal'),(131,53,'_thumbnail_id','17'),(132,53,'_wp_page_template','page-transparent-header-light.php'),(133,53,'_footer','normal'),(134,54,'_wp_page_template','page-blank.php'),(135,54,'_thumbnail_id','17'),(136,54,'_footer','normal'),(137,55,'_wp_page_template','page-blank.php'),(138,55,'_thumbnail_id','17'),(139,55,'_footer','normal'),(140,56,'_wp_page_template','page-transparent-header-light.php'),(141,56,'_footer','normal'),(142,56,'_thumbnail_id','17'),(143,57,'_wp_page_template','page-blank.php'),(144,57,'_thumbnail_id','17'),(145,57,'_footer','normal'),(146,58,'_wp_page_template','page-blank.php'),(147,58,'_footer','normal'),(148,58,'_thumbnail_id','17'),(149,59,'_wp_page_template','page-blank.php'),(150,59,'_footer','normal'),(151,59,'_thumbnail_id','17'),(152,60,'_wp_page_template','page-blank.php'),(153,60,'_footer','normal'),(154,60,'_thumbnail_id','17'),(155,61,'_wp_page_template','page-blank.php'),(156,61,'_footer','normal'),(157,61,'_thumbnail_id','17'),(158,62,'_wp_page_template','page-blank.php'),(159,62,'_footer','normal'),(160,62,'_thumbnail_id','17'),(161,63,'_wp_page_template','page-blank.php'),(162,63,'_footer','normal'),(163,63,'_thumbnail_id','17'),(164,64,'_wp_page_template','default'),(165,65,'_wp_page_template','page-blank.php'),(166,65,'_thumbnail_id','17'),(167,65,'_footer','normal'),(168,66,'_wp_page_template','default'),(169,66,'_footer','normal'),(170,66,'_thumbnail_id','17'),(171,67,'_wp_page_template','default'),(172,67,'_footer','normal'),(173,67,'_thumbnail_id','17'),(174,68,'_wp_page_template','page-blank-featured.php'),(175,68,'_footer','normal'),(176,68,'_thumbnail_id','17'),(177,69,'_wp_page_template','page-blank.php'),(178,69,'_footer','normal'),(179,70,'_wp_page_template','default'),(182,72,'_wp_page_template','page-blank.php'),(183,72,'_footer','normal'),(184,72,'_thumbnail_id','17'),(185,73,'_wp_page_template','page-blank.php'),(186,73,'_thumbnail_id','17'),(187,73,'_footer','normal'),(188,74,'_wp_page_template','page-blank.php'),(189,74,'_footer','normal'),(190,74,'_thumbnail_id','17'),(191,75,'_wp_page_template','page-blank.php'),(192,75,'_thumbnail_id','17'),(193,75,'_footer','normal'),(194,76,'_wp_page_template','page-transparent-header-light.php'),(195,76,'_footer','normal'),(196,76,'_thumbnail_id','17'),(197,77,'_wp_page_template','page-my-account.php'),(198,78,'_wp_page_template','page-blank.php'),(199,78,'_thumbnail_id','17'),(200,78,'_footer','normal'),(201,79,'_wp_page_template','page-blank.php'),(202,79,'_thumbnail_id','17'),(203,79,'_footer','normal'),(204,80,'_wp_page_template','page-blank.php'),(205,80,'_thumbnail_id','17'),(206,80,'_footer','normal'),(207,81,'_wp_page_template','page-blank.php'),(208,81,'_thumbnail_id','17'),(209,81,'_footer','normal'),(210,82,'_wp_page_template','page-blank.php'),(211,82,'_thumbnail_id','17'),(212,82,'_footer','normal'),(213,83,'_wp_page_template','page-blank.php'),(214,83,'_thumbnail_id','17'),(215,83,'_footer','normal'),(216,84,'_wp_page_template','page-blank.php'),(217,84,'_thumbnail_id','17'),(218,84,'_footer','normal'),(219,85,'_wp_page_template','page-blank.php'),(220,85,'_footer','normal'),(221,85,'_thumbnail_id','17'),(222,86,'_wp_page_template','default'),(223,87,'_wp_page_template','page-blank.php'),(224,87,'_thumbnail_id','17'),(225,87,'_footer','normal'),(226,88,'_wp_page_template','page-blank.php'),(227,88,'_footer','normal'),(228,88,'_thumbnail_id','17'),(229,89,'_wp_page_template','page-blank.php'),(230,89,'_footer','normal'),(231,89,'_thumbnail_id','17'),(232,90,'_wp_page_template','default'),(233,91,'_wp_page_template','page-transparent-header-light.php'),(234,91,'_footer','normal'),(235,91,'_thumbnail_id','17'),(236,92,'_wp_page_template','page-blank.php'),(237,92,'_thumbnail_id','17'),(238,92,'_footer','normal'),(239,93,'_wp_page_template','default'),(240,93,'_thumbnail_id','17'),(241,93,'_footer','normal'),(242,94,'_wp_page_template','page-my-account.php'),(243,94,'_footer','normal'),(244,95,'_wp_page_template','page-transparent-header-light.php'),(245,95,'_thumbnail_id','17'),(246,95,'_footer','normal'),(247,96,'_wp_page_template','page-blank.php'),(248,96,'_footer','normal'),(249,96,'_thumbnail_id','17'),(250,97,'_wp_page_template','page-blank.php'),(251,97,'_footer','normal'),(252,97,'_thumbnail_id','17'),(253,98,'_wp_page_template','page-blank.php'),(254,98,'_footer','normal'),(255,98,'_thumbnail_id','17'),(256,99,'_wp_page_template','page-blank.php'),(257,99,'_footer','normal'),(258,99,'_thumbnail_id','17'),(259,161,'_thumbnail_id','17'),(260,162,'_thumbnail_id','17'),(261,163,'_thumbnail_id','17'),(262,164,'_thumbnail_id','17'),(263,166,'_wp_page_template',''),(264,166,'_footer',''),(2469,224,'_thumbnail_id','17'),(2470,225,'_thumbnail_id','17'),(2471,226,'_thumbnail_id','17'),(2472,227,'_thumbnail_id','17'),(2473,228,'_thumbnail_id','17'),(2474,229,'_thumbnail_id','17'),(2475,230,'_thumbnail_id','17'),(2476,231,'_thumbnail_id','17'),(2485,233,'_menu_item_type','post_type'),(2486,233,'_menu_item_menu_item_parent','0'),(2487,233,'_menu_item_object_id','8'),(2488,233,'_menu_item_object','page'),(2489,233,'_menu_item_target',''),(2490,233,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2491,233,'_menu_item_xfn',''),(2492,233,'_menu_item_url',''),(2493,233,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2494,234,'_menu_item_type','post_type'),(2495,234,'_menu_item_menu_item_parent','0'),(2496,234,'_menu_item_object_id','69'),(2497,234,'_menu_item_object','page'),(2498,234,'_menu_item_target',''),(2499,234,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2500,234,'_menu_item_xfn',''),(2501,234,'_menu_item_url',''),(2502,234,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2503,235,'_menu_item_type','post_type'),(2504,235,'_menu_item_menu_item_parent','234'),(2505,235,'_menu_item_object_id','70'),(2506,235,'_menu_item_object','page'),(2507,235,'_menu_item_target',''),(2508,235,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2509,235,'_menu_item_xfn',''),(2510,235,'_menu_item_url',''),(2511,235,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2521,237,'_menu_item_type','post_type'),(2522,237,'_menu_item_menu_item_parent','0'),(2523,237,'_menu_item_object_id','98'),(2524,237,'_menu_item_object','page'),(2525,237,'_menu_item_target',''),(2526,237,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2527,237,'_menu_item_xfn',''),(2528,237,'_menu_item_url',''),(2529,237,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2530,238,'_menu_item_type','post_type'),(2531,238,'_menu_item_menu_item_parent','236'),(2532,238,'_menu_item_object_id','31'),(2533,238,'_menu_item_object','page'),(2534,238,'_menu_item_target',''),(2535,238,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2536,238,'_menu_item_xfn',''),(2537,238,'_menu_item_url',''),(2538,239,'_menu_item_type','post_type'),(2539,239,'_menu_item_menu_item_parent','236'),(2540,239,'_menu_item_object_id','33'),(2541,239,'_menu_item_object','page'),(2542,239,'_menu_item_target',''),(2543,239,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2544,239,'_menu_item_xfn',''),(2545,239,'_menu_item_url',''),(2546,240,'_menu_item_type','post_type'),(2547,240,'_menu_item_menu_item_parent','236'),(2548,240,'_menu_item_object_id','35'),(2549,240,'_menu_item_object','page'),(2550,240,'_menu_item_target',''),(2551,240,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2552,240,'_menu_item_xfn',''),(2553,240,'_menu_item_url',''),(2554,241,'_menu_item_type','post_type'),(2555,241,'_menu_item_menu_item_parent','235'),(2556,241,'_menu_item_object_id','36'),(2557,241,'_menu_item_object','page'),(2558,241,'_menu_item_target',''),(2559,241,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2560,241,'_menu_item_xfn',''),(2561,241,'_menu_item_url',''),(2562,242,'_menu_item_type','post_type'),(2563,242,'_menu_item_menu_item_parent','235'),(2564,242,'_menu_item_object_id','44'),(2565,242,'_menu_item_object','page'),(2566,242,'_menu_item_target',''),(2567,242,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2568,242,'_menu_item_xfn',''),(2569,242,'_menu_item_url',''),(2570,243,'_menu_item_type','post_type'),(2571,243,'_menu_item_menu_item_parent','235'),(2572,243,'_menu_item_object_id','55'),(2573,243,'_menu_item_object','page'),(2574,243,'_menu_item_target',''),(2575,243,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2576,243,'_menu_item_xfn',''),(2577,243,'_menu_item_url',''),(2578,243,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2588,245,'_menu_item_type','post_type'),(2589,245,'_menu_item_menu_item_parent','244'),(2590,245,'_menu_item_object_id','65'),(2591,245,'_menu_item_object','page'),(2592,245,'_menu_item_target',''),(2593,245,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2594,245,'_menu_item_xfn',''),(2595,245,'_menu_item_url',''),(2596,245,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2597,246,'_menu_item_type','post_type'),(2598,246,'_menu_item_menu_item_parent','235'),(2599,246,'_menu_item_object_id','68'),(2600,246,'_menu_item_object','page'),(2601,246,'_menu_item_target',''),(2602,246,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2603,246,'_menu_item_xfn',''),(2604,246,'_menu_item_url',''),(2605,246,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2606,247,'_menu_item_type','post_type'),(2607,247,'_menu_item_menu_item_parent','235'),(2608,247,'_menu_item_object_id','67'),(2609,247,'_menu_item_object','page'),(2610,247,'_menu_item_target',''),(2611,247,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2612,247,'_menu_item_xfn',''),(2613,247,'_menu_item_url',''),(2614,247,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2615,248,'_menu_item_type','post_type'),(2616,248,'_menu_item_menu_item_parent','236'),(2617,248,'_menu_item_object_id','99'),(2618,248,'_menu_item_object','page'),(2619,248,'_menu_item_target',''),(2620,248,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2621,248,'_menu_item_xfn',''),(2622,248,'_menu_item_url',''),(2623,248,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2624,249,'_menu_item_type','post_type'),(2625,249,'_menu_item_menu_item_parent','0'),(2626,249,'_menu_item_object_id','52'),(2627,249,'_menu_item_object','page'),(2628,249,'_menu_item_target',''),(2629,249,'_menu_item_classes','a:1:{i:0;s:11:\"menu-flyout\";}'),(2630,249,'_menu_item_xfn',''),(2631,249,'_menu_item_url',''),(2632,249,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2633,250,'_menu_item_type','post_type'),(2634,250,'_menu_item_menu_item_parent','0'),(2635,250,'_menu_item_object_id','90'),(2636,250,'_menu_item_object','page'),(2637,250,'_menu_item_target',''),(2638,250,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2639,250,'_menu_item_xfn',''),(2640,250,'_menu_item_url',''),(2641,250,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2642,251,'_menu_item_type','post_type'),(2643,251,'_menu_item_menu_item_parent','236'),(2644,251,'_menu_item_object_id','93'),(2645,251,'_menu_item_object','page'),(2646,251,'_menu_item_target',''),(2647,251,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2648,251,'_menu_item_xfn',''),(2649,251,'_menu_item_url',''),(2650,251,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2651,252,'_menu_item_type','post_type'),(2652,252,'_menu_item_menu_item_parent','236'),(2653,252,'_menu_item_object_id','74'),(2654,252,'_menu_item_object','page'),(2655,252,'_menu_item_target',''),(2656,252,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2657,252,'_menu_item_xfn',''),(2658,252,'_menu_item_url',''),(2659,252,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2660,253,'_menu_item_type','post_type'),(2661,253,'_menu_item_menu_item_parent','236'),(2662,253,'_menu_item_object_id','76'),(2663,253,'_menu_item_object','page'),(2664,253,'_menu_item_target',''),(2665,253,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2666,253,'_menu_item_xfn',''),(2667,253,'_menu_item_url',''),(2668,253,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2669,254,'_menu_item_type','post_type'),(2670,254,'_menu_item_menu_item_parent','236'),(2671,254,'_menu_item_object_id','85'),(2672,254,'_menu_item_object','page'),(2673,254,'_menu_item_target',''),(2674,254,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2675,254,'_menu_item_xfn',''),(2676,254,'_menu_item_url',''),(2677,254,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2678,255,'_menu_item_type','post_type'),(2679,255,'_menu_item_menu_item_parent','0'),(2680,255,'_menu_item_object_id','91'),(2681,255,'_menu_item_object','page'),(2682,255,'_menu_item_target',''),(2683,255,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2684,255,'_menu_item_xfn',''),(2685,255,'_menu_item_url',''),(2686,256,'_menu_item_type','post_type'),(2687,256,'_menu_item_menu_item_parent','0'),(2688,256,'_menu_item_object_id','90'),(2689,256,'_menu_item_object','page'),(2690,256,'_menu_item_target',''),(2691,256,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2692,256,'_menu_item_xfn',''),(2693,256,'_menu_item_url',''),(2702,258,'_menu_item_type','post_type'),(2703,258,'_menu_item_menu_item_parent','249'),(2704,258,'_menu_item_object_id','32'),(2705,258,'_menu_item_object','page'),(2706,258,'_menu_item_target',''),(2707,258,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2708,258,'_menu_item_xfn',''),(2709,258,'_menu_item_url',''),(2710,259,'_menu_item_type','post_type'),(2711,259,'_menu_item_menu_item_parent','249'),(2712,259,'_menu_item_object_id','34'),(2713,259,'_menu_item_object','page'),(2714,259,'_menu_item_target',''),(2715,259,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2716,259,'_menu_item_xfn',''),(2717,259,'_menu_item_url',''),(2718,260,'_menu_item_type','post_type'),(2719,260,'_menu_item_menu_item_parent','244'),(2720,260,'_menu_item_object_id','37'),(2721,260,'_menu_item_object','page'),(2722,260,'_menu_item_target',''),(2723,260,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2724,260,'_menu_item_xfn',''),(2725,260,'_menu_item_url',''),(2726,261,'_menu_item_type','post_type'),(2727,261,'_menu_item_menu_item_parent','244'),(2728,261,'_menu_item_object_id','42'),(2729,261,'_menu_item_object','page'),(2730,261,'_menu_item_target',''),(2731,261,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2732,261,'_menu_item_xfn',''),(2733,261,'_menu_item_url',''),(2734,262,'_menu_item_type','post_type'),(2735,262,'_menu_item_menu_item_parent','244'),(2736,262,'_menu_item_object_id','43'),(2737,262,'_menu_item_object','page'),(2738,262,'_menu_item_target',''),(2739,262,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2740,262,'_menu_item_xfn',''),(2741,262,'_menu_item_url',''),(2742,263,'_menu_item_type','post_type'),(2743,263,'_menu_item_menu_item_parent','244'),(2744,263,'_menu_item_object_id','56'),(2745,263,'_menu_item_object','page'),(2746,263,'_menu_item_target',''),(2747,263,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2748,263,'_menu_item_xfn',''),(2749,263,'_menu_item_url',''),(2750,263,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2751,264,'_menu_item_type','post_type'),(2752,264,'_menu_item_menu_item_parent','244'),(2753,264,'_menu_item_object_id','57'),(2754,264,'_menu_item_object','page'),(2755,264,'_menu_item_target',''),(2756,264,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2757,264,'_menu_item_xfn',''),(2758,264,'_menu_item_url',''),(2759,264,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2760,265,'_menu_item_type','post_type'),(2761,265,'_menu_item_menu_item_parent','244'),(2762,265,'_menu_item_object_id','63'),(2763,265,'_menu_item_object','page'),(2764,265,'_menu_item_target',''),(2765,265,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2766,265,'_menu_item_xfn',''),(2767,265,'_menu_item_url',''),(2768,265,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2769,266,'_menu_item_type','post_type'),(2770,266,'_menu_item_menu_item_parent','249'),(2771,266,'_menu_item_object_id','51'),(2772,266,'_menu_item_object','page'),(2773,266,'_menu_item_target',''),(2774,266,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2775,266,'_menu_item_xfn',''),(2776,266,'_menu_item_url',''),(2777,266,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2778,267,'_menu_item_type','post_type'),(2779,267,'_menu_item_menu_item_parent','249'),(2780,267,'_menu_item_object_id','89'),(2781,267,'_menu_item_object','page'),(2782,267,'_menu_item_target',''),(2783,267,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2784,267,'_menu_item_xfn',''),(2785,267,'_menu_item_url',''),(2786,267,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2787,268,'_menu_item_type','post_type'),(2788,268,'_menu_item_menu_item_parent','249'),(2789,268,'_menu_item_object_id','91'),(2790,268,'_menu_item_object','page'),(2791,268,'_menu_item_target',''),(2792,268,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2793,268,'_menu_item_xfn',''),(2794,268,'_menu_item_url',''),(2795,268,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2855,165,'_edit_lock','1638278367:1'),(2878,303,'_edit_last','1'),(2879,303,'_edit_lock','1638278426:1'),(2918,99,'_edit_lock','1641214926:1'),(2919,99,'_edit_last','1'),(2935,352,'_wp_attached_file','2021/12/artem-beliaikin-j5almO1E8rU-unsplash-small.jpg'),(2936,352,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:54:\"2021/12/artem-beliaikin-j5almO1E8rU-unsplash-small.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"artem-beliaikin-j5almO1E8rU-unsplash-small-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"artem-beliaikin-j5almO1E8rU-unsplash-small-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:54:\"artem-beliaikin-j5almO1E8rU-unsplash-small-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:54:\"artem-beliaikin-j5almO1E8rU-unsplash-small-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:54:\"artem-beliaikin-j5almO1E8rU-unsplash-small-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:54:\"artem-beliaikin-j5almO1E8rU-unsplash-small-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:54:\"artem-beliaikin-j5almO1E8rU-unsplash-small-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:54:\"artem-beliaikin-j5almO1E8rU-unsplash-small-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:54:\"artem-beliaikin-j5almO1E8rU-unsplash-small-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2937,352,'_flatsome_studio_id','15028'),(2938,353,'_wp_attached_file','2021/12/ivana-cajina-dnL6ZIpht2s-unsplash-small.jpg'),(2939,353,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:51:\"2021/12/ivana-cajina-dnL6ZIpht2s-unsplash-small.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"ivana-cajina-dnL6ZIpht2s-unsplash-small-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"ivana-cajina-dnL6ZIpht2s-unsplash-small-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"ivana-cajina-dnL6ZIpht2s-unsplash-small-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:51:\"ivana-cajina-dnL6ZIpht2s-unsplash-small-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:51:\"ivana-cajina-dnL6ZIpht2s-unsplash-small-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:51:\"ivana-cajina-dnL6ZIpht2s-unsplash-small-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:51:\"ivana-cajina-dnL6ZIpht2s-unsplash-small-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:51:\"ivana-cajina-dnL6ZIpht2s-unsplash-small-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:51:\"ivana-cajina-dnL6ZIpht2s-unsplash-small-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2940,353,'_flatsome_studio_id','15029'),(2941,354,'_wp_attached_file','2021/12/marius-ciocirlan-vMV6r4VRhJ8-unsplash-small.jpg'),(2942,354,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:777;s:4:\"file\";s:55:\"2021/12/marius-ciocirlan-vMV6r4VRhJ8-unsplash-small.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"marius-ciocirlan-vMV6r4VRhJ8-unsplash-small-412x400.jpg\";s:5:\"width\";i:412;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"marius-ciocirlan-vMV6r4VRhJ8-unsplash-small-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:55:\"marius-ciocirlan-vMV6r4VRhJ8-unsplash-small-768x746.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:746;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:55:\"marius-ciocirlan-vMV6r4VRhJ8-unsplash-small-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:55:\"marius-ciocirlan-vMV6r4VRhJ8-unsplash-small-600x583.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:55:\"marius-ciocirlan-vMV6r4VRhJ8-unsplash-small-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:55:\"marius-ciocirlan-vMV6r4VRhJ8-unsplash-small-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:55:\"marius-ciocirlan-vMV6r4VRhJ8-unsplash-small-600x583.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:55:\"marius-ciocirlan-vMV6r4VRhJ8-unsplash-small-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2943,354,'_flatsome_studio_id','15030'),(2944,360,'_wp_attached_file','2021/12/bruno-nascimento-9XTyIiFceKM-unsplash.jpg'),(2945,360,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:49:\"2021/12/bruno-nascimento-9XTyIiFceKM-unsplash.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"bruno-nascimento-9XTyIiFceKM-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"bruno-nascimento-9XTyIiFceKM-unsplash-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"bruno-nascimento-9XTyIiFceKM-unsplash-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"bruno-nascimento-9XTyIiFceKM-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:49:\"bruno-nascimento-9XTyIiFceKM-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:49:\"bruno-nascimento-9XTyIiFceKM-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:49:\"bruno-nascimento-9XTyIiFceKM-unsplash-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:49:\"bruno-nascimento-9XTyIiFceKM-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:49:\"bruno-nascimento-9XTyIiFceKM-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:49:\"bruno-nascimento-9XTyIiFceKM-unsplash-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2946,360,'_flatsome_studio_id','19599'),(2947,363,'_wp_attached_file','2021/12/landingpage-clean-studio-logo-6-flatsome-theme-uxbuilder.png'),(2948,363,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:68:\"2021/12/landingpage-clean-studio-logo-6-flatsome-theme-uxbuilder.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-6-flatsome-theme-uxbuilder-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-6-flatsome-theme-uxbuilder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-6-flatsome-theme-uxbuilder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-6-flatsome-theme-uxbuilder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-6-flatsome-theme-uxbuilder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2949,363,'_flatsome_studio_id','13486'),(2950,364,'_wp_attached_file','2021/12/landingpage-clean-studio-logo-5-flatsome-theme-uxbuilder.png'),(2951,364,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:68:\"2021/12/landingpage-clean-studio-logo-5-flatsome-theme-uxbuilder.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-5-flatsome-theme-uxbuilder-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-5-flatsome-theme-uxbuilder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-5-flatsome-theme-uxbuilder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-5-flatsome-theme-uxbuilder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-5-flatsome-theme-uxbuilder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2952,364,'_flatsome_studio_id','13487'),(2953,365,'_wp_attached_file','2021/12/landingpage-clean-studio-logo-4-flatsome-theme-uxbuilder.png'),(2954,365,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:68:\"2021/12/landingpage-clean-studio-logo-4-flatsome-theme-uxbuilder.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-4-flatsome-theme-uxbuilder-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-4-flatsome-theme-uxbuilder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-4-flatsome-theme-uxbuilder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-4-flatsome-theme-uxbuilder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-4-flatsome-theme-uxbuilder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2955,365,'_flatsome_studio_id','13488'),(2956,366,'_wp_attached_file','2021/12/landingpage-clean-studio-logo-3-flatsome-theme-uxbuilder.png'),(2957,366,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:68:\"2021/12/landingpage-clean-studio-logo-3-flatsome-theme-uxbuilder.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-3-flatsome-theme-uxbuilder-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-3-flatsome-theme-uxbuilder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-3-flatsome-theme-uxbuilder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-3-flatsome-theme-uxbuilder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-3-flatsome-theme-uxbuilder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2958,366,'_flatsome_studio_id','13489'),(2959,367,'_wp_attached_file','2021/12/landingpage-clean-studio-logo-2-flatsome-theme-uxbuilder.png'),(2960,367,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:68:\"2021/12/landingpage-clean-studio-logo-2-flatsome-theme-uxbuilder.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-2-flatsome-theme-uxbuilder-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-2-flatsome-theme-uxbuilder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-2-flatsome-theme-uxbuilder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-2-flatsome-theme-uxbuilder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-2-flatsome-theme-uxbuilder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2961,367,'_flatsome_studio_id','13490'),(2962,368,'_wp_attached_file','2021/12/landingpage-clean-studio-logo-1-flatsome-theme-uxbuilder.png'),(2963,368,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:68:\"2021/12/landingpage-clean-studio-logo-1-flatsome-theme-uxbuilder.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-1-flatsome-theme-uxbuilder-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-1-flatsome-theme-uxbuilder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-1-flatsome-theme-uxbuilder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-1-flatsome-theme-uxbuilder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:68:\"landingpage-clean-studio-logo-1-flatsome-theme-uxbuilder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2964,368,'_flatsome_studio_id','13491'),(2965,369,'_wp_attached_file','2021/12/ruslan-bardash-4kTbAMRAHtQ-unsplash-edited.jpg'),(2966,369,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:400;s:4:\"file\";s:54:\"2021/12/ruslan-bardash-4kTbAMRAHtQ-unsplash-edited.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"ruslan-bardash-4kTbAMRAHtQ-unsplash-edited-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:54:\"ruslan-bardash-4kTbAMRAHtQ-unsplash-edited-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:54:\"ruslan-bardash-4kTbAMRAHtQ-unsplash-edited-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:54:\"ruslan-bardash-4kTbAMRAHtQ-unsplash-edited-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:54:\"ruslan-bardash-4kTbAMRAHtQ-unsplash-edited-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:54:\"ruslan-bardash-4kTbAMRAHtQ-unsplash-edited-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:54:\"ruslan-bardash-4kTbAMRAHtQ-unsplash-edited-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:54:\"ruslan-bardash-4kTbAMRAHtQ-unsplash-edited-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2967,369,'_flatsome_studio_id','15773'),(2968,370,'_wp_attached_file','2021/12/viktor-talashuk-Sjk38bu7VXg-unsplash-edited.jpg'),(2969,370,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:663;s:4:\"file\";s:55:\"2021/12/viktor-talashuk-Sjk38bu7VXg-unsplash-edited.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"viktor-talashuk-Sjk38bu7VXg-unsplash-edited-603x400.jpg\";s:5:\"width\";i:603;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"viktor-talashuk-Sjk38bu7VXg-unsplash-edited-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:55:\"viktor-talashuk-Sjk38bu7VXg-unsplash-edited-768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:55:\"viktor-talashuk-Sjk38bu7VXg-unsplash-edited-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:55:\"viktor-talashuk-Sjk38bu7VXg-unsplash-edited-600x398.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:55:\"viktor-talashuk-Sjk38bu7VXg-unsplash-edited-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:55:\"viktor-talashuk-Sjk38bu7VXg-unsplash-edited-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:55:\"viktor-talashuk-Sjk38bu7VXg-unsplash-edited-600x398.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:55:\"viktor-talashuk-Sjk38bu7VXg-unsplash-edited-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2970,370,'_flatsome_studio_id','15808'),(2971,371,'_wp_attached_file','2021/12/thought-catalog-FACFpJVoMJs-unsplash-edited.jpg'),(2972,371,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:55:\"2021/12/thought-catalog-FACFpJVoMJs-unsplash-edited.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"thought-catalog-FACFpJVoMJs-unsplash-edited-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"thought-catalog-FACFpJVoMJs-unsplash-edited-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:55:\"thought-catalog-FACFpJVoMJs-unsplash-edited-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:55:\"thought-catalog-FACFpJVoMJs-unsplash-edited-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:55:\"thought-catalog-FACFpJVoMJs-unsplash-edited-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:55:\"thought-catalog-FACFpJVoMJs-unsplash-edited-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:55:\"thought-catalog-FACFpJVoMJs-unsplash-edited-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:55:\"thought-catalog-FACFpJVoMJs-unsplash-edited-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:55:\"thought-catalog-FACFpJVoMJs-unsplash-edited-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2973,371,'_flatsome_studio_id','15811'),(2974,372,'_wp_attached_file','2021/12/icons8-team-BzAEmJc2-2w-unsplash-edited.jpg'),(2975,372,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:668;s:4:\"file\";s:51:\"2021/12/icons8-team-BzAEmJc2-2w-unsplash-edited.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"icons8-team-BzAEmJc2-2w-unsplash-edited-599x400.jpg\";s:5:\"width\";i:599;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"icons8-team-BzAEmJc2-2w-unsplash-edited-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"icons8-team-BzAEmJc2-2w-unsplash-edited-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:51:\"icons8-team-BzAEmJc2-2w-unsplash-edited-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:51:\"icons8-team-BzAEmJc2-2w-unsplash-edited-600x401.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:51:\"icons8-team-BzAEmJc2-2w-unsplash-edited-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:51:\"icons8-team-BzAEmJc2-2w-unsplash-edited-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:51:\"icons8-team-BzAEmJc2-2w-unsplash-edited-600x401.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:51:\"icons8-team-BzAEmJc2-2w-unsplash-edited-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2976,372,'_flatsome_studio_id','15812'),(2977,373,'_wp_attached_file','2021/12/mae-mu-vbAEHCrvXZ0-unsplash-edited.jpg'),(2978,373,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:461;s:4:\"file\";s:46:\"2021/12/mae-mu-vbAEHCrvXZ0-unsplash-edited.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"mae-mu-vbAEHCrvXZ0-unsplash-edited-800x231.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:231;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"mae-mu-vbAEHCrvXZ0-unsplash-edited-1400x403.jpg\";s:5:\"width\";i:1400;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"mae-mu-vbAEHCrvXZ0-unsplash-edited-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"mae-mu-vbAEHCrvXZ0-unsplash-edited-768x221.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:221;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"mae-mu-vbAEHCrvXZ0-unsplash-edited-1536x443.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:443;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"mae-mu-vbAEHCrvXZ0-unsplash-edited-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:46:\"mae-mu-vbAEHCrvXZ0-unsplash-edited-600x173.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"mae-mu-vbAEHCrvXZ0-unsplash-edited-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:46:\"mae-mu-vbAEHCrvXZ0-unsplash-edited-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:46:\"mae-mu-vbAEHCrvXZ0-unsplash-edited-600x173.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"mae-mu-vbAEHCrvXZ0-unsplash-edited-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2979,373,'_flatsome_studio_id','15821'),(2980,374,'_wp_attached_file','2021/12/apostolos-vamvouras-mKi4QEJXRCs-unsplash-edited-1.jpg'),(2981,374,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1678;s:6:\"height\";i:1042;s:4:\"file\";s:61:\"2021/12/apostolos-vamvouras-mKi4QEJXRCs-unsplash-edited-1.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"apostolos-vamvouras-mKi4QEJXRCs-unsplash-edited-1-644x400.jpg\";s:5:\"width\";i:644;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"apostolos-vamvouras-mKi4QEJXRCs-unsplash-edited-1-1288x800.jpg\";s:5:\"width\";i:1288;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"apostolos-vamvouras-mKi4QEJXRCs-unsplash-edited-1-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:61:\"apostolos-vamvouras-mKi4QEJXRCs-unsplash-edited-1-768x477.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:477;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:62:\"apostolos-vamvouras-mKi4QEJXRCs-unsplash-edited-1-1536x954.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:954;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:61:\"apostolos-vamvouras-mKi4QEJXRCs-unsplash-edited-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:61:\"apostolos-vamvouras-mKi4QEJXRCs-unsplash-edited-1-600x373.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:61:\"apostolos-vamvouras-mKi4QEJXRCs-unsplash-edited-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:61:\"apostolos-vamvouras-mKi4QEJXRCs-unsplash-edited-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:61:\"apostolos-vamvouras-mKi4QEJXRCs-unsplash-edited-1-600x373.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:61:\"apostolos-vamvouras-mKi4QEJXRCs-unsplash-edited-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2982,374,'_flatsome_studio_id','15853'),(2983,375,'_wp_attached_file','2021/12/malvestida-magazine-DMl5gG0yWWY-unsplash-edited.jpg'),(2984,375,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:59:\"2021/12/malvestida-magazine-DMl5gG0yWWY-unsplash-edited.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"malvestida-magazine-DMl5gG0yWWY-unsplash-edited-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"malvestida-magazine-DMl5gG0yWWY-unsplash-edited-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"malvestida-magazine-DMl5gG0yWWY-unsplash-edited-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"malvestida-magazine-DMl5gG0yWWY-unsplash-edited-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:59:\"malvestida-magazine-DMl5gG0yWWY-unsplash-edited-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:59:\"malvestida-magazine-DMl5gG0yWWY-unsplash-edited-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:59:\"malvestida-magazine-DMl5gG0yWWY-unsplash-edited-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:59:\"malvestida-magazine-DMl5gG0yWWY-unsplash-edited-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:59:\"malvestida-magazine-DMl5gG0yWWY-unsplash-edited-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2985,375,'_flatsome_studio_id','15858'),(2986,376,'_wp_attached_file','2021/12/malvestida-magazine-FfbVFLAVscw-unsplash-edited.jpg'),(2987,376,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:506;s:4:\"file\";s:59:\"2021/12/malvestida-magazine-FfbVFLAVscw-unsplash-edited.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"malvestida-magazine-FfbVFLAVscw-unsplash-edited-632x400.jpg\";s:5:\"width\";i:632;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"malvestida-magazine-FfbVFLAVscw-unsplash-edited-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"malvestida-magazine-FfbVFLAVscw-unsplash-edited-768x486.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"malvestida-magazine-FfbVFLAVscw-unsplash-edited-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:59:\"malvestida-magazine-FfbVFLAVscw-unsplash-edited-600x380.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:59:\"malvestida-magazine-FfbVFLAVscw-unsplash-edited-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:59:\"malvestida-magazine-FfbVFLAVscw-unsplash-edited-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:59:\"malvestida-magazine-FfbVFLAVscw-unsplash-edited-600x380.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:59:\"malvestida-magazine-FfbVFLAVscw-unsplash-edited-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2988,376,'_flatsome_studio_id','15859'),(2989,377,'_wp_attached_file','2021/12/alex-gruber-qfgm_F0VxQ0-unsplash-edited.jpg'),(2990,377,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:396;s:4:\"file\";s:51:\"2021/12/alex-gruber-qfgm_F0VxQ0-unsplash-edited.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"alex-gruber-qfgm_F0VxQ0-unsplash-edited-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:51:\"alex-gruber-qfgm_F0VxQ0-unsplash-edited-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:51:\"alex-gruber-qfgm_F0VxQ0-unsplash-edited-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:51:\"alex-gruber-qfgm_F0VxQ0-unsplash-edited-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:51:\"alex-gruber-qfgm_F0VxQ0-unsplash-edited-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2991,377,'_flatsome_studio_id','15860'),(2992,388,'_wp_attached_file','2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg'),(2993,388,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:888;s:4:\"file\";s:52:\"2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.53-PM-577x400.jpeg\";s:5:\"width\";i:577;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"WhatsApp-Image-2021-11-29-at-5.10.53-PM-1153x800.jpeg\";s:5:\"width\";i:1153;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.53-PM-280x280.jpeg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.53-PM-768x533.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.53-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.53-PM-600x416.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.53-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.53-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.53-PM-600x416.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.53-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2994,389,'_wp_attached_file','2021/12/WhatsApp-Image-2021-11-29-at-5.11.00-PM.jpeg'),(2995,389,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:888;s:4:\"file\";s:52:\"2021/12/WhatsApp-Image-2021-11-29-at-5.11.00-PM.jpeg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.11.00-PM-577x400.jpeg\";s:5:\"width\";i:577;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"WhatsApp-Image-2021-11-29-at-5.11.00-PM-1153x800.jpeg\";s:5:\"width\";i:1153;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.11.00-PM-280x280.jpeg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.11.00-PM-768x533.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.11.00-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.11.00-PM-600x416.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.11.00-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.11.00-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.11.00-PM-600x416.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.11.00-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2996,390,'_wp_attached_file','2021/12/WhatsApp-Image-2021-11-29-at-5.10.54-PM.jpeg'),(2997,390,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:888;s:4:\"file\";s:52:\"2021/12/WhatsApp-Image-2021-11-29-at-5.10.54-PM.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.54-PM-577x400.jpeg\";s:5:\"width\";i:577;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"WhatsApp-Image-2021-11-29-at-5.10.54-PM-1153x800.jpeg\";s:5:\"width\";i:1153;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.54-PM-280x280.jpeg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.54-PM-768x533.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.54-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.54-PM-600x416.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.54-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.54-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.54-PM-600x416.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.54-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.54-PM-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2998,391,'_wp_attached_file','2021/12/WhatsApp-Image-2021-11-29-at-5.10.55-PM.jpeg'),(2999,391,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:888;s:4:\"file\";s:52:\"2021/12/WhatsApp-Image-2021-11-29-at-5.10.55-PM.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.55-PM-577x400.jpeg\";s:5:\"width\";i:577;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"WhatsApp-Image-2021-11-29-at-5.10.55-PM-1153x800.jpeg\";s:5:\"width\";i:1153;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.55-PM-280x280.jpeg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.55-PM-768x533.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.55-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.55-PM-600x416.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.55-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.55-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.55-PM-600x416.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.55-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.55-PM-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3024,162,'_edit_lock','1638871030:1'),(3025,161,'_edit_lock','1639990943:1'),(3048,15,'_config_errors','a:2:{s:12:\"mail.subject\";a:1:{i:0;a:2:{s:4:\"code\";i:101;s:4:\"args\";a:3:{s:7:\"message\";s:0:\"\";s:6:\"params\";a:0:{}s:4:\"link\";s:57:\"https://contactform7.com/configuration-errors/maybe-empty\";}}}s:9:\"mail.body\";a:1:{i:0;a:2:{s:4:\"code\";i:101;s:4:\"args\";a:3:{s:7:\"message\";s:0:\"\";s:6:\"params\";a:0:{}s:4:\"link\";s:57:\"https://contactform7.com/configuration-errors/maybe-empty\";}}}}'),(3098,8,'_edit_lock','1639129449:1'),(3099,8,'_thumbnail_id','389'),(3100,8,'_edit_last','1'),(3101,8,'_footer','normal'),(3102,20,'_edit_lock','1638524869:1'),(3104,21,'_edit_lock','1638525003:1'),(3106,22,'_edit_lock','1638532712:1'),(3140,8,'_wp_page_template','default'),(3141,515,'_menu_item_type','post_type'),(3142,515,'_menu_item_menu_item_parent','0'),(3143,515,'_menu_item_object_id','99'),(3144,515,'_menu_item_object','page'),(3145,515,'_menu_item_target',''),(3146,515,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3147,515,'_menu_item_xfn',''),(3148,515,'_menu_item_url',''),(3150,515,'_menu_item_design','default'),(3151,515,'_menu_item_width',''),(3152,515,'_menu_item_height',''),(3153,515,'_menu_item_block',''),(3154,515,'_menu_item_behavior','hover'),(3155,515,'_menu_item_icon-type','media'),(3156,515,'_menu_item_icon-id',''),(3157,515,'_menu_item_icon-width',''),(3158,515,'_menu_item_icon-height',''),(3159,515,'_menu_item_icon-html',''),(3160,516,'_menu_item_type','custom'),(3161,516,'_menu_item_menu_item_parent','0'),(3162,516,'_menu_item_object_id','516'),(3163,516,'_menu_item_object','custom'),(3164,516,'_menu_item_target',''),(3165,516,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3166,516,'_menu_item_xfn',''),(3167,516,'_menu_item_url','https://demoweblinks.in/padmini/elements/pages/about/'),(3169,517,'_menu_item_type','custom'),(3170,517,'_menu_item_menu_item_parent','0'),(3171,517,'_menu_item_object_id','517'),(3172,517,'_menu_item_object','custom'),(3173,517,'_menu_item_target',''),(3174,517,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3175,517,'_menu_item_xfn',''),(3176,517,'_menu_item_url','https://demoweblinks.in/padmini/shop/'),(3187,519,'_menu_item_type','custom'),(3188,519,'_menu_item_menu_item_parent','517'),(3189,519,'_menu_item_object_id','519'),(3190,519,'_menu_item_object','custom'),(3191,519,'_menu_item_target',''),(3192,519,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3193,519,'_menu_item_xfn',''),(3194,519,'_menu_item_url','#'),(3214,516,'_menu_item_design','default'),(3215,516,'_menu_item_width',''),(3216,516,'_menu_item_height',''),(3217,516,'_menu_item_block',''),(3218,516,'_menu_item_behavior','hover'),(3219,516,'_menu_item_icon-type','media'),(3220,516,'_menu_item_icon-id',''),(3221,516,'_menu_item_icon-width',''),(3222,516,'_menu_item_icon-height',''),(3223,516,'_menu_item_icon-html',''),(3224,517,'_menu_item_design','default'),(3225,517,'_menu_item_width',''),(3226,517,'_menu_item_height',''),(3227,517,'_menu_item_block',''),(3228,517,'_menu_item_behavior','hover'),(3229,517,'_menu_item_icon-type','media'),(3230,517,'_menu_item_icon-id',''),(3231,517,'_menu_item_icon-width',''),(3232,517,'_menu_item_icon-height',''),(3233,517,'_menu_item_icon-html',''),(3244,519,'_menu_item_design','default'),(3245,519,'_menu_item_width',''),(3246,519,'_menu_item_height',''),(3247,519,'_menu_item_block',''),(3248,519,'_menu_item_behavior','hover'),(3249,519,'_menu_item_icon-type','media'),(3250,519,'_menu_item_icon-id',''),(3251,519,'_menu_item_icon-width',''),(3252,519,'_menu_item_icon-height',''),(3253,519,'_menu_item_icon-html',''),(3274,522,'_menu_item_type','custom'),(3275,522,'_menu_item_menu_item_parent','0'),(3276,522,'_menu_item_object_id','522'),(3277,522,'_menu_item_object','custom'),(3278,522,'_menu_item_target',''),(3279,522,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3280,522,'_menu_item_xfn',''),(3281,522,'_menu_item_url','#'),(3283,522,'_menu_item_design','default'),(3284,522,'_menu_item_width',''),(3285,522,'_menu_item_height',''),(3286,522,'_menu_item_block',''),(3287,522,'_menu_item_behavior','hover'),(3288,522,'_menu_item_icon-type','media'),(3289,522,'_menu_item_icon-id',''),(3290,522,'_menu_item_icon-width',''),(3291,522,'_menu_item_icon-height',''),(3292,522,'_menu_item_icon-html',''),(3293,523,'_menu_item_type','custom'),(3294,523,'_menu_item_menu_item_parent','0'),(3295,523,'_menu_item_object_id','523'),(3296,523,'_menu_item_object','custom'),(3297,523,'_menu_item_target',''),(3298,523,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3299,523,'_menu_item_xfn',''),(3300,523,'_menu_item_url','https://demoweblinks.in/padmini/bulk-custom/'),(3302,523,'_menu_item_design','default'),(3303,523,'_menu_item_width',''),(3304,523,'_menu_item_height',''),(3305,523,'_menu_item_block',''),(3306,523,'_menu_item_behavior','hover'),(3307,523,'_menu_item_icon-type','media'),(3308,523,'_menu_item_icon-id',''),(3309,523,'_menu_item_icon-width',''),(3310,523,'_menu_item_icon-height',''),(3311,523,'_menu_item_icon-html',''),(3419,601,'_wp_attached_file','2021/12/logo-8.png'),(3420,601,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:114;s:4:\"file\";s:18:\"2021/12/logo-8.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"logo-8-280x114.png\";s:5:\"width\";i:280;s:6:\"height\";i:114;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"logo-8-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"logo-8-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3423,603,'_wp_attached_file','2021/12/logo-9.png'),(3424,603,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:85;s:4:\"file\";s:18:\"2021/12/logo-9.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"logo-9-100x85.png\";s:5:\"width\";i:100;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"logo-9-100x85.png\";s:5:\"width\";i:100;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3427,605,'_wp_attached_file','2021/12/cropped-logo-9.png'),(3428,605,'_wp_attachment_context','site-icon'),(3429,605,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:26:\"2021/12/cropped-logo-9.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"cropped-logo-9-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"cropped-logo-9-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"cropped-logo-9-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"cropped-logo-9-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"cropped-logo-9-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"cropped-logo-9-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:26:\"cropped-logo-9-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:26:\"cropped-logo-9-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:26:\"cropped-logo-9-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:24:\"cropped-logo-9-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3436,611,'_wp_attached_file','2021/12/ban1-3.png'),(3437,611,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:435;s:4:\"file\";s:18:\"2021/12/ban1-3.png\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"ban1-3-800x348.png\";s:5:\"width\";i:800;s:6:\"height\";i:348;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"ban1-3-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"ban1-3-768x334.png\";s:5:\"width\";i:768;s:6:\"height\";i:334;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"ban1-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"ban1-3-600x261.png\";s:5:\"width\";i:600;s:6:\"height\";i:261;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"ban1-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"ban1-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"ban1-3-600x261.png\";s:5:\"width\";i:600;s:6:\"height\";i:261;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"ban1-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3438,613,'_wp_attached_file','2021/12/banwriting.png'),(3439,613,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:333;s:6:\"height\";i:175;s:4:\"file\";s:22:\"2021/12/banwriting.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"banwriting-280x175.png\";s:5:\"width\";i:280;s:6:\"height\";i:175;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"banwriting-300x175.png\";s:5:\"width\";i:300;s:6:\"height\";i:175;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"banwriting-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"banwriting-300x175.png\";s:5:\"width\";i:300;s:6:\"height\";i:175;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"banwriting-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3440,615,'_wp_attached_file','2021/12/ban1-4.png'),(3441,615,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:435;s:4:\"file\";s:18:\"2021/12/ban1-4.png\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"ban1-4-800x348.png\";s:5:\"width\";i:800;s:6:\"height\";i:348;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"ban1-4-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"ban1-4-768x334.png\";s:5:\"width\";i:768;s:6:\"height\";i:334;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"ban1-4-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"ban1-4-600x261.png\";s:5:\"width\";i:600;s:6:\"height\";i:261;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"ban1-4-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"ban1-4-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"ban1-4-600x261.png\";s:5:\"width\";i:600;s:6:\"height\";i:261;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"ban1-4-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3442,617,'_wp_attached_file','2021/12/logo-footer.png'),(3443,617,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:85;s:4:\"file\";s:23:\"2021/12/logo-footer.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"logo-footer-100x85.png\";s:5:\"width\";i:100;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"logo-footer-100x85.png\";s:5:\"width\";i:100;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3454,627,'_wp_attached_file','2021/12/cont.png'),(3455,627,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:400;s:4:\"file\";s:16:\"2021/12/cont.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"cont-800x167.png\";s:5:\"width\";i:800;s:6:\"height\";i:167;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"cont-1400x292.png\";s:5:\"width\";i:1400;s:6:\"height\";i:292;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"cont-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"cont-768x160.png\";s:5:\"width\";i:768;s:6:\"height\";i:160;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"cont-1536x320.png\";s:5:\"width\";i:1536;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"cont-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:16:\"cont-600x125.png\";s:5:\"width\";i:600;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"cont-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:16:\"cont-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:16:\"cont-600x125.png\";s:5:\"width\";i:600;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"cont-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3466,635,'_wp_attached_file','2021/12/sale.png'),(3467,635,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1241;s:6:\"height\";i:251;s:4:\"file\";s:16:\"2021/12/sale.png\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"sale-800x162.png\";s:5:\"width\";i:800;s:6:\"height\";i:162;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"sale-280x251.png\";s:5:\"width\";i:280;s:6:\"height\";i:251;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"sale-768x155.png\";s:5:\"width\";i:768;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"sale-300x251.png\";s:5:\"width\";i:300;s:6:\"height\";i:251;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:16:\"sale-600x121.png\";s:5:\"width\";i:600;s:6:\"height\";i:121;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"sale-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:16:\"sale-300x251.png\";s:5:\"width\";i:300;s:6:\"height\";i:251;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:16:\"sale-600x121.png\";s:5:\"width\";i:600;s:6:\"height\";i:121;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"sale-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3468,638,'_wp_attached_file','2021/12/abv-footer.png'),(3469,638,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:322;s:4:\"file\";s:22:\"2021/12/abv-footer.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"abv-footer-800x134.png\";s:5:\"width\";i:800;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"abv-footer-1400x235.png\";s:5:\"width\";i:1400;s:6:\"height\";i:235;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"abv-footer-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"abv-footer-768x129.png\";s:5:\"width\";i:768;s:6:\"height\";i:129;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"abv-footer-1536x258.png\";s:5:\"width\";i:1536;s:6:\"height\";i:258;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"abv-footer-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"abv-footer-600x101.png\";s:5:\"width\";i:600;s:6:\"height\";i:101;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"abv-footer-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"abv-footer-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"abv-footer-600x101.png\";s:5:\"width\";i:600;s:6:\"height\";i:101;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"abv-footer-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3477,515,'_wp_old_date','2021-12-06'),(3478,516,'_wp_old_date','2021-12-06'),(3479,517,'_wp_old_date','2021-12-06'),(3481,519,'_wp_old_date','2021-12-06'),(3482,523,'_wp_old_date','2021-12-06'),(3483,522,'_wp_old_date','2021-12-06'),(3497,655,'_wp_attached_file','2021/12/shop-doop.png'),(3498,655,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:431;s:4:\"file\";s:21:\"2021/12/shop-doop.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"shop-doop-800x180.png\";s:5:\"width\";i:800;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"shop-doop-1400x314.png\";s:5:\"width\";i:1400;s:6:\"height\";i:314;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"shop-doop-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"shop-doop-768x172.png\";s:5:\"width\";i:768;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"shop-doop-1536x345.png\";s:5:\"width\";i:1536;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"shop-doop-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"shop-doop-600x135.png\";s:5:\"width\";i:600;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"shop-doop-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"shop-doop-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"shop-doop-600x135.png\";s:5:\"width\";i:600;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"shop-doop-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3499,656,'_wp_attached_file','2021/12/shop-doop-1.png'),(3500,656,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:431;s:4:\"file\";s:23:\"2021/12/shop-doop-1.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"shop-doop-1-800x180.png\";s:5:\"width\";i:800;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"shop-doop-1-1400x314.png\";s:5:\"width\";i:1400;s:6:\"height\";i:314;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-doop-1-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"shop-doop-1-768x172.png\";s:5:\"width\";i:768;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"shop-doop-1-1536x345.png\";s:5:\"width\";i:1536;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"shop-doop-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"shop-doop-1-600x135.png\";s:5:\"width\";i:600;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-doop-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"shop-doop-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"shop-doop-1-600x135.png\";s:5:\"width\";i:600;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-doop-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3617,725,'_order_key','wc_order_47vK0u33ha6OL'),(3618,725,'_customer_user','1'),(3619,725,'_payment_method','cod'),(3620,725,'_payment_method_title','Cash on delivery'),(3621,725,'_customer_ip_address','2409:4073:2185:6492:b199:485e:32a1:250d'),(3622,725,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36'),(3623,725,'_created_via','checkout'),(3624,725,'_cart_hash','f92f4b7f59b4e8f78d15572ab73c60e8'),(3625,725,'_billing_first_name','sonu'),(3626,725,'_billing_last_name','s'),(3627,725,'_billing_company','amekA'),(3628,725,'_billing_address_1','THACHUKUNNEL KUNNEKAL PO VALAKOM'),(3629,725,'_billing_address_2','VALAKOM'),(3630,725,'_billing_city','Fort Kochi'),(3631,725,'_billing_state','KL'),(3632,725,'_billing_postcode','682316'),(3633,725,'_billing_country','IN'),(3634,725,'_billing_email','sonuvalakam@gmail.com'),(3635,725,'_billing_phone','+919447727591'),(3636,725,'_order_currency','INR'),(3637,725,'_cart_discount','0'),(3638,725,'_cart_discount_tax','0'),(3639,725,'_order_shipping','0'),(3640,725,'_order_shipping_tax','0'),(3641,725,'_order_tax','0'),(3642,725,'_order_total','29.00'),(3643,725,'_order_version','5.9.0'),(3644,725,'_prices_include_tax','no'),(3645,725,'_billing_address_index','sonu s amekA THACHUKUNNEL KUNNEKAL PO VALAKOM VALAKOM Fort Kochi KL 682316 IN sonuvalakam@gmail.com +919447727591'),(3646,725,'_shipping_address_index','         '),(3647,725,'is_vat_exempt','no'),(3648,725,'_download_permissions_granted','yes'),(3649,725,'_recorded_sales','yes'),(3650,725,'_recorded_coupon_usage_counts','yes'),(3651,725,'_order_stock_reduced','yes'),(3652,725,'_new_order_email_sent','true'),(3653,726,'_order_key','wc_order_yDfZZY1Vz2cZ3'),(3654,726,'_customer_user','1'),(3655,726,'_payment_method','cod'),(3656,726,'_payment_method_title','Cash on delivery'),(3657,726,'_customer_ip_address','2409:4073:2185:6492:b199:485e:32a1:250d'),(3658,726,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36'),(3659,726,'_created_via','checkout'),(3660,726,'_cart_hash','886e849ab789a0152263be4cb1bec1b0'),(3661,726,'_billing_first_name','sonu'),(3662,726,'_billing_last_name','s'),(3663,726,'_billing_company','amekA'),(3664,726,'_billing_address_1','THACHUKUNNEL KUNNEKAL PO VALAKOM'),(3665,726,'_billing_address_2','VALAKOM'),(3666,726,'_billing_city','Fort Kochi'),(3667,726,'_billing_state','KL'),(3668,726,'_billing_postcode','682316'),(3669,726,'_billing_country','IN'),(3670,726,'_billing_email','sonuvalakam@gmail.com'),(3671,726,'_billing_phone','+919447727591'),(3672,726,'_order_currency','INR'),(3673,726,'_cart_discount','0'),(3674,726,'_cart_discount_tax','0'),(3675,726,'_order_shipping','0'),(3676,726,'_order_shipping_tax','0'),(3677,726,'_order_tax','0'),(3678,726,'_order_total','35.00'),(3679,726,'_order_version','5.9.0'),(3680,726,'_prices_include_tax','no'),(3681,726,'_billing_address_index','sonu s amekA THACHUKUNNEL KUNNEKAL PO VALAKOM VALAKOM Fort Kochi KL 682316 IN sonuvalakam@gmail.com +919447727591'),(3682,726,'_shipping_address_index','         '),(3683,726,'is_vat_exempt','no'),(3684,726,'_download_permissions_granted','yes'),(3685,726,'_recorded_sales','yes'),(3686,726,'_recorded_coupon_usage_counts','yes'),(3687,726,'_order_stock_reduced','yes'),(3688,726,'_new_order_email_sent','true'),(3689,726,'_edit_lock','1639043427:1'),(3690,727,'_order_key','wc_order_q7z9Q3vcv2sgL'),(3691,727,'_customer_user','1'),(3692,727,'_payment_method','cod'),(3693,727,'_payment_method_title','Cash on delivery'),(3694,727,'_customer_ip_address','2409:4073:2185:6492:b199:485e:32a1:250d'),(3695,727,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36'),(3696,727,'_created_via','checkout'),(3697,727,'_cart_hash','886e849ab789a0152263be4cb1bec1b0'),(3698,727,'_billing_first_name','sonu'),(3699,727,'_billing_last_name','s'),(3700,727,'_billing_company','amekA'),(3701,727,'_billing_address_1','THACHUKUNNEL KUNNEKAL PO VALAKOM'),(3702,727,'_billing_address_2','VALAKOM'),(3703,727,'_billing_city','Fort Kochi'),(3704,727,'_billing_state','KL'),(3705,727,'_billing_postcode','682316'),(3706,727,'_billing_country','IN'),(3707,727,'_billing_email','sonuvalakam@gmail.com'),(3708,727,'_billing_phone','+919447727591'),(3709,727,'_order_currency','INR'),(3710,727,'_cart_discount','0'),(3711,727,'_cart_discount_tax','0'),(3712,727,'_order_shipping','0'),(3713,727,'_order_shipping_tax','0'),(3714,727,'_order_tax','0'),(3715,727,'_order_total','35.00'),(3716,727,'_order_version','5.9.0'),(3717,727,'_prices_include_tax','no'),(3718,727,'_billing_address_index','sonu s amekA THACHUKUNNEL KUNNEKAL PO VALAKOM VALAKOM Fort Kochi KL 682316 IN sonuvalakam@gmail.com +919447727591'),(3719,727,'_shipping_address_index','         '),(3720,727,'is_vat_exempt','no'),(3721,727,'Some Field','356435634563456'),(3722,727,'_download_permissions_granted','yes'),(3723,727,'_recorded_sales','yes'),(3724,727,'_recorded_coupon_usage_counts','yes'),(3725,727,'_order_stock_reduced','yes'),(3726,727,'_new_order_email_sent','true'),(3727,727,'_edit_lock','1639043519:1'),(3728,728,'_order_key','wc_order_BkCrXp8ulozzz'),(3729,728,'_customer_user','1'),(3730,728,'_payment_method','cod'),(3731,728,'_payment_method_title','Cash on delivery'),(3732,728,'_customer_ip_address','2409:4073:2185:6492:b199:485e:32a1:250d'),(3733,728,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36'),(3734,728,'_created_via','checkout'),(3735,728,'_cart_hash','886e849ab789a0152263be4cb1bec1b0'),(3736,728,'_billing_first_name','sonu'),(3737,728,'_billing_last_name','s'),(3738,728,'_billing_company','amekA'),(3739,728,'_billing_address_1','THACHUKUNNEL KUNNEKAL PO VALAKOM'),(3740,728,'_billing_address_2','VALAKOM'),(3741,728,'_billing_city','Fort Kochi'),(3742,728,'_billing_state','KL'),(3743,728,'_billing_postcode','682316'),(3744,728,'_billing_country','IN'),(3745,728,'_billing_email','sonuvalakam@gmail.com'),(3746,728,'_billing_phone','+919447727591'),(3747,728,'_order_currency','INR'),(3748,728,'_cart_discount','0'),(3749,728,'_cart_discount_tax','0'),(3750,728,'_order_shipping','0'),(3751,728,'_order_shipping_tax','0'),(3752,728,'_order_tax','0'),(3753,728,'_order_total','35.00'),(3754,728,'_order_version','5.9.0'),(3755,728,'_prices_include_tax','no'),(3756,728,'_billing_address_index','sonu s amekA THACHUKUNNEL KUNNEKAL PO VALAKOM VALAKOM Fort Kochi KL 682316 IN sonuvalakam@gmail.com +919447727591'),(3757,728,'_shipping_address_index','         '),(3758,728,'is_vat_exempt','no'),(3759,728,'GST Number','aertert3334534534'),(3760,728,'_download_permissions_granted','yes'),(3761,728,'_recorded_sales','yes'),(3762,728,'_recorded_coupon_usage_counts','yes'),(3763,728,'_order_stock_reduced','yes'),(3764,728,'_new_order_email_sent','true'),(3765,728,'_edit_lock','1639043572:1'),(3882,821,'_form','[text* Name class:form-control placeholder \"Enter Customer Name\"]\n[email* Email class:form-control placeholder \"Enter Email address\"]\n[number* number class:form-control placeholder \"Enter Mobile Number\"]\n[textarea address class:form-control placeholder \"Address\"]\n[select* Type class:form-control \" Select Category to Purchase \"  \"Charms\" \"Dhoops\" \"Fragrance Fabulos \" \"Floral Collection\" \"Pure Jasmine\" \"Divine Collections\" \"Ultimo Colections \" \"others\"]\n[text* Total class:form-control placeholder \"Enter total Qantity\"] \n[text* Location class:form-control placeholder \"Enter Place\"]\n[text* Gst class:form-control placeholder \"Enter Gst Number\"]\n[textarea note class:form-control placeholder \"Your Comments\"]\n\n\n\n\n\n\n\n\n[submit class:button-primary \"Submit\"]'),(3883,821,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:41:\"[_site_title] <wordpress@demoweblinks.in>\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(3884,821,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:41:\"[_site_title] <wordpress@demoweblinks.in>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(3885,821,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(3886,821,'_additional_settings',''),(3887,821,'_locale','en_US'),(3890,822,'_edit_lock','1639130225:1'),(3891,822,'_edit_last','1'),(3892,822,'_footer','normal'),(3893,822,'_wp_page_template','page-blank.php'),(3894,822,'_thumbnail_id',''),(3896,91,'_edit_lock','1639129239:1'),(3897,91,'_edit_last','1'),(3899,821,'_config_errors','a:1:{s:23:\"mail.additional_headers\";a:1:{i:0;a:2:{s:4:\"code\";i:102;s:4:\"args\";a:3:{s:7:\"message\";s:51:\"Invalid mailbox syntax is used in the %name% field.\";s:6:\"params\";a:1:{s:4:\"name\";s:8:\"Reply-To\";}s:4:\"link\";s:68:\"https://contactform7.com/configuration-errors/invalid-mailbox-syntax\";}}}}'),(3900,68,'_edit_lock','1639130183:1'),(3901,68,'_edit_last','1'),(3902,515,'_wp_old_date','2021-12-07'),(3903,516,'_wp_old_date','2021-12-07'),(3904,517,'_wp_old_date','2021-12-07'),(3906,519,'_wp_old_date','2021-12-07'),(3907,523,'_wp_old_date','2021-12-07'),(3908,522,'_wp_old_date','2021-12-07'),(3909,835,'_menu_item_type','post_type'),(3910,835,'_menu_item_menu_item_parent','0'),(3911,835,'_menu_item_object_id','8'),(3912,835,'_menu_item_object','page'),(3913,835,'_menu_item_target',''),(3914,835,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3915,835,'_menu_item_xfn',''),(3916,835,'_menu_item_url',''),(3918,836,'_menu_item_type','post_type'),(3919,836,'_menu_item_menu_item_parent','0'),(3920,836,'_menu_item_object_id','99'),(3921,836,'_menu_item_object','page'),(3922,836,'_menu_item_target',''),(3923,836,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3924,836,'_menu_item_xfn',''),(3925,836,'_menu_item_url',''),(3927,837,'_menu_item_type','custom'),(3928,837,'_menu_item_menu_item_parent','0'),(3929,837,'_menu_item_object_id','837'),(3930,837,'_menu_item_object','custom'),(3931,837,'_menu_item_target',''),(3932,837,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3933,837,'_menu_item_xfn',''),(3934,837,'_menu_item_url','#'),(3936,836,'_menu_item_design','default'),(3937,836,'_menu_item_width',''),(3938,836,'_menu_item_height',''),(3939,836,'_menu_item_block',''),(3940,836,'_menu_item_behavior','hover'),(3941,836,'_menu_item_icon-type','media'),(3942,836,'_menu_item_icon-id',''),(3943,836,'_menu_item_icon-width',''),(3944,836,'_menu_item_icon-height',''),(3945,836,'_menu_item_icon-html',''),(3946,255,'_wp_old_date','2015-11-19'),(3947,255,'_menu_item_design','default'),(3948,255,'_menu_item_width',''),(3949,255,'_menu_item_height',''),(3950,255,'_menu_item_block',''),(3951,255,'_menu_item_behavior','hover'),(3952,255,'_menu_item_icon-type','media'),(3953,255,'_menu_item_icon-id',''),(3954,255,'_menu_item_icon-width',''),(3955,255,'_menu_item_icon-height',''),(3956,255,'_menu_item_icon-html',''),(3957,835,'_menu_item_design','default'),(3958,835,'_menu_item_width',''),(3959,835,'_menu_item_height',''),(3960,835,'_menu_item_block',''),(3961,835,'_menu_item_behavior','hover'),(3962,835,'_menu_item_icon-type','media'),(3963,835,'_menu_item_icon-id',''),(3964,835,'_menu_item_icon-width',''),(3965,835,'_menu_item_icon-height',''),(3966,835,'_menu_item_icon-html',''),(3967,256,'_wp_old_date','2015-11-19'),(3968,256,'_menu_item_design','default'),(3969,256,'_menu_item_width',''),(3970,256,'_menu_item_height',''),(3971,256,'_menu_item_block',''),(3972,256,'_menu_item_behavior','hover'),(3973,256,'_menu_item_icon-type','media'),(3974,256,'_menu_item_icon-id',''),(3975,256,'_menu_item_icon-width',''),(3976,256,'_menu_item_icon-height',''),(3977,256,'_menu_item_icon-html',''),(3978,837,'_menu_item_design','default'),(3979,837,'_menu_item_width',''),(3980,837,'_menu_item_height',''),(3981,837,'_menu_item_block',''),(3982,837,'_menu_item_behavior','hover'),(3983,837,'_menu_item_icon-type','media'),(3984,837,'_menu_item_icon-id',''),(3985,837,'_menu_item_icon-width',''),(3986,837,'_menu_item_icon-height',''),(3987,837,'_menu_item_icon-html',''),(3988,838,'_menu_item_type','custom'),(3989,838,'_menu_item_menu_item_parent','0'),(3990,838,'_menu_item_object_id','838'),(3991,838,'_menu_item_object','custom'),(3992,838,'_menu_item_target',''),(3993,838,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3994,838,'_menu_item_xfn',''),(3995,838,'_menu_item_url','#'),(3997,839,'_menu_item_type','custom'),(3998,839,'_menu_item_menu_item_parent','0'),(3999,839,'_menu_item_object_id','839'),(4000,839,'_menu_item_object','custom'),(4001,839,'_menu_item_target',''),(4002,839,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4003,839,'_menu_item_xfn',''),(4004,839,'_menu_item_url','#'),(4006,840,'_menu_item_type','custom'),(4007,840,'_menu_item_menu_item_parent','0'),(4008,840,'_menu_item_object_id','840'),(4009,840,'_menu_item_object','custom'),(4010,840,'_menu_item_target',''),(4011,840,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4012,840,'_menu_item_xfn',''),(4013,840,'_menu_item_url','#'),(4015,841,'_menu_item_type','custom'),(4016,841,'_menu_item_menu_item_parent','0'),(4017,841,'_menu_item_object_id','841'),(4018,841,'_menu_item_object','custom'),(4019,841,'_menu_item_target',''),(4020,841,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4021,841,'_menu_item_xfn',''),(4022,841,'_menu_item_url','#'),(4024,842,'_menu_item_type','post_type'),(4025,842,'_menu_item_menu_item_parent','0'),(4026,842,'_menu_item_object_id','89'),(4027,842,'_menu_item_object','page'),(4028,842,'_menu_item_target',''),(4029,842,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4030,842,'_menu_item_xfn',''),(4031,842,'_menu_item_url',''),(4033,838,'_menu_item_design','default'),(4034,838,'_menu_item_width',''),(4035,838,'_menu_item_height',''),(4036,838,'_menu_item_block',''),(4037,838,'_menu_item_behavior','hover'),(4038,838,'_menu_item_icon-type','media'),(4039,838,'_menu_item_icon-id',''),(4040,838,'_menu_item_icon-width',''),(4041,838,'_menu_item_icon-height',''),(4042,838,'_menu_item_icon-html',''),(4043,839,'_menu_item_design','default'),(4044,839,'_menu_item_width',''),(4045,839,'_menu_item_height',''),(4046,839,'_menu_item_block',''),(4047,839,'_menu_item_behavior','hover'),(4048,839,'_menu_item_icon-type','media'),(4049,839,'_menu_item_icon-id',''),(4050,839,'_menu_item_icon-width',''),(4051,839,'_menu_item_icon-height',''),(4052,839,'_menu_item_icon-html',''),(4053,840,'_menu_item_design','default'),(4054,840,'_menu_item_width',''),(4055,840,'_menu_item_height',''),(4056,840,'_menu_item_block',''),(4057,840,'_menu_item_behavior','hover'),(4058,840,'_menu_item_icon-type','media'),(4059,840,'_menu_item_icon-id',''),(4060,840,'_menu_item_icon-width',''),(4061,840,'_menu_item_icon-height',''),(4062,840,'_menu_item_icon-html',''),(4063,841,'_menu_item_design','default'),(4064,841,'_menu_item_width',''),(4065,841,'_menu_item_height',''),(4066,841,'_menu_item_block',''),(4067,841,'_menu_item_behavior','hover'),(4068,841,'_menu_item_icon-type','media'),(4069,841,'_menu_item_icon-id',''),(4070,841,'_menu_item_icon-width',''),(4071,841,'_menu_item_icon-height',''),(4072,841,'_menu_item_icon-html',''),(4073,842,'_menu_item_design','default'),(4074,842,'_menu_item_width',''),(4075,842,'_menu_item_height',''),(4076,842,'_menu_item_block',''),(4077,842,'_menu_item_behavior','hover'),(4078,842,'_menu_item_icon-type','media'),(4079,842,'_menu_item_icon-id',''),(4080,842,'_menu_item_icon-width',''),(4081,842,'_menu_item_icon-height',''),(4082,842,'_menu_item_icon-html',''),(4092,850,'_edit_last','1'),(4093,850,'_edit_lock','1641191491:1'),(4094,850,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(4097,850,'total_sales','0'),(4098,850,'_tax_status','taxable'),(4099,850,'_tax_class',''),(4100,850,'_manage_stock','no'),(4101,850,'_backorders','no'),(4102,850,'_sold_individually','no'),(4103,850,'_virtual','no'),(4104,850,'_downloadable','no'),(4105,850,'_download_limit','-1'),(4106,850,'_download_expiry','-1'),(4107,850,'_stock',NULL),(4108,850,'_stock_status','instock'),(4109,850,'_wc_average_rating','0'),(4110,850,'_wc_review_count','0'),(4111,850,'_product_attributes','a:1:{s:9:\"pa_weight\";a:6:{s:4:\"name\";s:9:\"pa_weight\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(4112,850,'_product_version','5.9.0'),(4114,851,'_wp_attached_file','2021/12/WhatsApp-Image-2021-12-07-at-5.16.28-PM.jpeg'),(4115,851,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:52:\"2021/12/WhatsApp-Image-2021-12-07-at-5.16.28-PM.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.28-PM-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"WhatsApp-Image-2021-12-07-at-5.16.28-PM-1200x800.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.28-PM-280x280.jpeg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.28-PM-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"yith-woocompare-image\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.28-PM-220x154.jpeg\";s:5:\"width\";i:220;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.28-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.28-PM-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.28-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.28-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.28-PM-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.28-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4116,850,'_thumbnail_id','933'),(4117,852,'_edit_last','1'),(4118,852,'_edit_lock','1641192341:1'),(4119,853,'_wp_attached_file','2021/12/WhatsApp-Image-2021-12-07-at-5.16.49-PM.jpeg'),(4120,853,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:52:\"2021/12/WhatsApp-Image-2021-12-07-at-5.16.49-PM.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.49-PM-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"WhatsApp-Image-2021-12-07-at-5.16.49-PM-1200x800.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.49-PM-280x280.jpeg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.49-PM-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"yith-woocompare-image\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.49-PM-220x154.jpeg\";s:5:\"width\";i:220;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.49-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.49-PM-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.49-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.49-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.49-PM-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.49-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4121,852,'_thumbnail_id','935'),(4122,852,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(4125,852,'total_sales','0'),(4126,852,'_tax_status','taxable'),(4127,852,'_tax_class',''),(4128,852,'_manage_stock','no'),(4129,852,'_backorders','no'),(4130,852,'_sold_individually','no'),(4131,852,'_virtual','no'),(4132,852,'_downloadable','no'),(4133,852,'_download_limit','-1'),(4134,852,'_download_expiry','-1'),(4135,852,'_stock',NULL),(4136,852,'_stock_status','instock'),(4137,852,'_wc_average_rating','0'),(4138,852,'_wc_review_count','0'),(4139,852,'_product_attributes','a:1:{s:9:\"pa_weight\";a:6:{s:4:\"name\";s:9:\"pa_weight\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(4140,852,'_product_version','5.9.0'),(4142,855,'_edit_last','1'),(4143,855,'_edit_lock','1641192462:1'),(4144,855,'_thumbnail_id','936'),(4145,855,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(4148,855,'total_sales','0'),(4149,855,'_tax_status','taxable'),(4150,855,'_tax_class',''),(4151,855,'_manage_stock','no'),(4152,855,'_backorders','no'),(4153,855,'_sold_individually','no'),(4154,855,'_virtual','no'),(4155,855,'_downloadable','no'),(4156,855,'_download_limit','-1'),(4157,855,'_download_expiry','-1'),(4158,855,'_stock',NULL),(4159,855,'_stock_status','instock'),(4160,855,'_wc_average_rating','0'),(4161,855,'_wc_review_count','0'),(4162,855,'_product_version','5.9.0'),(4164,855,'_product_attributes','a:1:{s:9:\"pa_weight\";a:6:{s:4:\"name\";s:9:\"pa_weight\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(4165,856,'_variation_description',''),(4166,856,'total_sales','0'),(4167,856,'_tax_status','taxable'),(4168,856,'_tax_class','parent'),(4169,856,'_manage_stock','no'),(4170,856,'_backorders','no'),(4171,856,'_sold_individually','no'),(4172,856,'_virtual','no'),(4173,856,'_downloadable','no'),(4174,856,'_download_limit','-1'),(4175,856,'_download_expiry','-1'),(4176,856,'_stock',NULL),(4177,856,'_stock_status','instock'),(4178,856,'_wc_average_rating','0'),(4179,856,'_wc_review_count','0'),(4180,856,'attribute_pa_weight','100-sticks'),(4181,856,'_product_version','5.9.0'),(4200,856,'_regular_price','80'),(4203,856,'_thumbnail_id','0'),(4204,856,'_price','80'),(4258,860,'_edit_last','1'),(4259,860,'_edit_lock','1641192782:1'),(4260,860,'total_sales','0'),(4261,860,'_tax_status','taxable'),(4262,860,'_tax_class',''),(4263,860,'_manage_stock','no'),(4264,860,'_backorders','no'),(4265,860,'_sold_individually','no'),(4266,860,'_virtual','no'),(4267,860,'_downloadable','no'),(4268,860,'_download_limit','-1'),(4269,860,'_download_expiry','-1'),(4270,860,'_stock',NULL),(4271,860,'_stock_status','instock'),(4272,860,'_wc_average_rating','0'),(4273,860,'_wc_review_count','0'),(4275,860,'_product_version','5.9.0'),(4276,860,'_thumbnail_id','945'),(4277,860,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(4278,861,'_variation_description',''),(4279,861,'total_sales','0'),(4280,861,'_tax_status','taxable'),(4281,861,'_tax_class','parent'),(4282,861,'_manage_stock','no'),(4283,861,'_backorders','no'),(4284,861,'_sold_individually','no'),(4285,861,'_virtual','no'),(4286,861,'_downloadable','no'),(4287,861,'_download_limit','-1'),(4288,861,'_download_expiry','-1'),(4289,861,'_stock',NULL),(4290,861,'_stock_status','instock'),(4291,861,'_wc_average_rating','0'),(4292,861,'_wc_review_count','0'),(4293,861,'attribute_pa_weight','100-gm'),(4294,861,'_product_version','5.9.0'),(4295,862,'_variation_description',''),(4296,862,'total_sales','0'),(4297,862,'_tax_status','taxable'),(4298,862,'_tax_class','parent'),(4299,862,'_manage_stock','no'),(4300,862,'_backorders','no'),(4301,862,'_sold_individually','no'),(4302,862,'_virtual','no'),(4303,862,'_downloadable','no'),(4304,862,'_download_limit','-1'),(4305,862,'_download_expiry','-1'),(4306,862,'_stock',NULL),(4307,862,'_stock_status','instock'),(4308,862,'_wc_average_rating','0'),(4309,862,'_wc_review_count','0'),(4310,862,'attribute_pa_weight','125-gm'),(4311,862,'_product_version','5.9.0'),(4312,863,'_variation_description',''),(4313,863,'total_sales','0'),(4314,863,'_tax_status','taxable'),(4315,863,'_tax_class','parent'),(4316,863,'_manage_stock','no'),(4317,863,'_backorders','no'),(4318,863,'_sold_individually','no'),(4319,863,'_virtual','no'),(4320,863,'_downloadable','no'),(4321,863,'_download_limit','-1'),(4322,863,'_download_expiry','-1'),(4323,863,'_stock',NULL),(4324,863,'_stock_status','instock'),(4325,863,'_wc_average_rating','0'),(4326,863,'_wc_review_count','0'),(4327,863,'attribute_pa_weight','13-gm-flat'),(4328,863,'_product_version','5.9.0'),(4329,864,'_variation_description',''),(4330,864,'total_sales','0'),(4331,864,'_tax_status','taxable'),(4332,864,'_tax_class','parent'),(4333,864,'_manage_stock','no'),(4334,864,'_backorders','no'),(4335,864,'_sold_individually','no'),(4336,864,'_virtual','no'),(4337,864,'_downloadable','no'),(4338,864,'_download_limit','-1'),(4339,864,'_download_expiry','-1'),(4340,864,'_stock',NULL),(4341,864,'_stock_status','instock'),(4342,864,'_wc_average_rating','0'),(4343,864,'_wc_review_count','0'),(4344,864,'attribute_pa_weight','240-gm'),(4345,864,'_product_version','5.9.0'),(4346,861,'_regular_price','55'),(4349,861,'_thumbnail_id','0'),(4350,861,'_price','55'),(4351,862,'_regular_price','70'),(4354,862,'_thumbnail_id','0'),(4355,862,'_price','70'),(4356,863,'_regular_price','10'),(4359,863,'_thumbnail_id','0'),(4360,863,'_price','10'),(4361,864,'_regular_price','125'),(4364,864,'_thumbnail_id','0'),(4365,864,'_price','125'),(4370,866,'_edit_last','1'),(4371,866,'_edit_lock','1641192988:1'),(4372,866,'total_sales','1'),(4373,866,'_tax_status','taxable'),(4374,866,'_tax_class',''),(4375,866,'_manage_stock','no'),(4376,866,'_backorders','no'),(4377,866,'_sold_individually','no'),(4378,866,'_virtual','no'),(4379,866,'_downloadable','no'),(4380,866,'_download_limit','-1'),(4381,866,'_download_expiry','-1'),(4382,866,'_stock',NULL),(4383,866,'_stock_status','instock'),(4384,866,'_wc_average_rating','0'),(4385,866,'_wc_review_count','0'),(4386,866,'_product_attributes','a:1:{s:9:\"pa_weight\";a:6:{s:4:\"name\";s:9:\"pa_weight\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(4387,866,'_product_version','5.9.0'),(4405,868,'_variation_description',''),(4406,868,'total_sales','0'),(4407,868,'_tax_status','taxable'),(4408,868,'_tax_class','parent'),(4409,868,'_manage_stock','no'),(4410,868,'_backorders','no'),(4411,868,'_sold_individually','no'),(4412,868,'_virtual','no'),(4413,868,'_downloadable','no'),(4414,868,'_download_limit','-1'),(4415,868,'_download_expiry','-1'),(4416,868,'_stock',NULL),(4417,868,'_stock_status','instock'),(4418,868,'_wc_average_rating','0'),(4419,868,'_wc_review_count','0'),(4420,868,'attribute_pa_weight','8-sticks-flat'),(4421,868,'_product_version','5.9.0'),(4422,869,'_variation_description',''),(4423,869,'total_sales','0'),(4424,869,'_tax_status','taxable'),(4425,869,'_tax_class','parent'),(4426,869,'_manage_stock','no'),(4427,869,'_backorders','no'),(4428,869,'_sold_individually','no'),(4429,869,'_virtual','no'),(4430,869,'_downloadable','no'),(4431,869,'_download_limit','-1'),(4432,869,'_download_expiry','-1'),(4433,869,'_stock',NULL),(4434,869,'_stock_status','instock'),(4435,869,'_wc_average_rating','0'),(4436,869,'_wc_review_count','0'),(4437,869,'attribute_pa_weight','10-sticks-50-pou'),(4438,869,'_product_version','5.9.0'),(4439,870,'_variation_description',''),(4440,870,'total_sales','0'),(4441,870,'_tax_status','taxable'),(4442,870,'_tax_class','parent'),(4443,870,'_manage_stock','no'),(4444,870,'_backorders','no'),(4445,870,'_sold_individually','no'),(4446,870,'_virtual','no'),(4447,870,'_downloadable','no'),(4448,870,'_download_limit','-1'),(4449,870,'_download_expiry','-1'),(4450,870,'_stock',NULL),(4451,870,'_stock_status','instock'),(4452,870,'_wc_average_rating','0'),(4453,870,'_wc_review_count','0'),(4454,870,'attribute_pa_weight','50-sticks'),(4455,870,'_product_version','5.9.0'),(4473,868,'_regular_price','10'),(4476,868,'_thumbnail_id','0'),(4477,868,'_price','10'),(4478,869,'_regular_price','8'),(4480,869,'_weight','200'),(4481,869,'_thumbnail_id','0'),(4482,869,'_price','8'),(4483,870,'_regular_price','55'),(4486,870,'_thumbnail_id','0'),(4487,870,'_price','55'),(4495,866,'_thumbnail_id','946'),(4496,866,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(4498,872,'_edit_last','1'),(4499,872,'_edit_lock','1641193183:1'),(4500,872,'total_sales','0'),(4501,872,'_tax_status','taxable'),(4502,872,'_tax_class',''),(4503,872,'_manage_stock','no'),(4504,872,'_backorders','no'),(4505,872,'_sold_individually','no'),(4506,872,'_virtual','no'),(4507,872,'_downloadable','no'),(4508,872,'_download_limit','-1'),(4509,872,'_download_expiry','-1'),(4510,872,'_stock',NULL),(4511,872,'_stock_status','instock'),(4512,872,'_wc_average_rating','0'),(4513,872,'_wc_review_count','0'),(4514,872,'_product_attributes','a:1:{s:9:\"pa_weight\";a:6:{s:4:\"name\";s:9:\"pa_weight\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(4515,872,'_product_version','5.9.0'),(4516,873,'_variation_description',''),(4517,873,'total_sales','0'),(4518,873,'_tax_status','taxable'),(4519,873,'_tax_class','parent'),(4520,873,'_manage_stock','no'),(4521,873,'_backorders','no'),(4522,873,'_sold_individually','no'),(4523,873,'_virtual','no'),(4524,873,'_downloadable','no'),(4525,873,'_download_limit','-1'),(4526,873,'_download_expiry','-1'),(4527,873,'_stock',NULL),(4528,873,'_stock_status','instock'),(4529,873,'_wc_average_rating','0'),(4530,873,'_wc_review_count','0'),(4531,873,'attribute_pa_weight','100-gm'),(4532,873,'_product_version','5.9.0'),(4533,874,'_variation_description',''),(4534,874,'total_sales','0'),(4535,874,'_tax_status','taxable'),(4536,874,'_tax_class','parent'),(4537,874,'_manage_stock','no'),(4538,874,'_backorders','no'),(4539,874,'_sold_individually','no'),(4540,874,'_virtual','no'),(4541,874,'_downloadable','no'),(4542,874,'_download_limit','-1'),(4543,874,'_download_expiry','-1'),(4544,874,'_stock',NULL),(4545,874,'_stock_status','instock'),(4546,874,'_wc_average_rating','0'),(4547,874,'_wc_review_count','0'),(4548,874,'attribute_pa_weight','13-gm-flat'),(4549,874,'_product_version','5.9.0'),(4550,875,'_variation_description',''),(4551,875,'total_sales','0'),(4552,875,'_tax_status','taxable'),(4553,875,'_tax_class','parent'),(4554,875,'_manage_stock','no'),(4555,875,'_backorders','no'),(4556,875,'_sold_individually','no'),(4557,875,'_virtual','no'),(4558,875,'_downloadable','no'),(4559,875,'_download_limit','-1'),(4560,875,'_download_expiry','-1'),(4561,875,'_stock',NULL),(4562,875,'_stock_status','instock'),(4563,875,'_wc_average_rating','0'),(4564,875,'_wc_review_count','0'),(4565,875,'attribute_pa_weight','35-gm'),(4566,875,'_product_version','5.9.0'),(4584,877,'_wp_attached_file','2021/12/WhatsApp-Image-2021-12-07-at-5.17.23-PM.jpeg'),(4585,877,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:52:\"2021/12/WhatsApp-Image-2021-12-07-at-5.17.23-PM.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.23-PM-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"WhatsApp-Image-2021-12-07-at-5.17.23-PM-1200x800.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.23-PM-280x280.jpeg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.23-PM-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"yith-woocompare-image\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.23-PM-220x154.jpeg\";s:5:\"width\";i:220;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.23-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.23-PM-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.23-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.23-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.23-PM-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.23-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4586,872,'_thumbnail_id','877'),(4587,872,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(4589,878,'_edit_last','1'),(4590,878,'_edit_lock','1641193276:1'),(4591,878,'total_sales','0'),(4592,878,'_tax_status','taxable'),(4593,878,'_tax_class',''),(4594,878,'_manage_stock','no'),(4595,878,'_backorders','no'),(4596,878,'_sold_individually','no'),(4597,878,'_virtual','no'),(4598,878,'_downloadable','no'),(4599,878,'_download_limit','-1'),(4600,878,'_download_expiry','-1'),(4601,878,'_stock',NULL),(4602,878,'_stock_status','instock'),(4603,878,'_wc_average_rating','0'),(4604,878,'_wc_review_count','0'),(4605,878,'_product_attributes','a:1:{s:9:\"pa_weight\";a:6:{s:4:\"name\";s:9:\"pa_weight\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(4606,878,'_product_version','5.9.0'),(4607,879,'_variation_description',''),(4608,879,'total_sales','0'),(4609,879,'_tax_status','taxable'),(4610,879,'_tax_class','parent'),(4611,879,'_manage_stock','no'),(4612,879,'_backorders','no'),(4613,879,'_sold_individually','no'),(4614,879,'_virtual','no'),(4615,879,'_downloadable','no'),(4616,879,'_download_limit','-1'),(4617,879,'_download_expiry','-1'),(4618,879,'_stock',NULL),(4619,879,'_stock_status','instock'),(4620,879,'_wc_average_rating','0'),(4621,879,'_wc_review_count','0'),(4622,879,'attribute_pa_weight','100-gm'),(4623,879,'_product_version','5.9.0'),(4675,883,'_wp_attached_file','2021/12/WhatsApp-Image-2021-12-07-at-5.17.27-PM.jpeg'),(4676,883,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:52:\"2021/12/WhatsApp-Image-2021-12-07-at-5.17.27-PM.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.27-PM-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"WhatsApp-Image-2021-12-07-at-5.17.27-PM-1200x800.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.27-PM-280x280.jpeg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.27-PM-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"yith-woocompare-image\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.27-PM-220x154.jpeg\";s:5:\"width\";i:220;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.27-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.27-PM-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.27-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.27-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.27-PM-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.27-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4677,879,'_regular_price','55'),(4680,879,'_thumbnail_id','0'),(4681,879,'_price','55'),(4698,878,'_thumbnail_id','947'),(4699,878,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(4701,884,'_edit_last','1'),(4702,884,'_edit_lock','1641193359:1'),(4703,885,'_wp_attached_file','2021/12/WhatsApp-Image-2021-12-07-at-5.17.19-PM.jpeg'),(4704,885,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:52:\"2021/12/WhatsApp-Image-2021-12-07-at-5.17.19-PM.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.19-PM-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"WhatsApp-Image-2021-12-07-at-5.17.19-PM-1200x800.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.19-PM-280x280.jpeg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.19-PM-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"yith-woocompare-image\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.19-PM-220x154.jpeg\";s:5:\"width\";i:220;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.19-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.19-PM-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.19-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.19-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.19-PM-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.19-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4705,884,'total_sales','0'),(4706,884,'_tax_status','taxable'),(4707,884,'_tax_class',''),(4708,884,'_manage_stock','no'),(4709,884,'_backorders','no'),(4710,884,'_sold_individually','no'),(4711,884,'_virtual','no'),(4712,884,'_downloadable','no'),(4713,884,'_download_limit','-1'),(4714,884,'_download_expiry','-1'),(4715,884,'_stock',NULL),(4716,884,'_stock_status','instock'),(4717,884,'_wc_average_rating','0'),(4718,884,'_wc_review_count','0'),(4720,884,'_product_version','5.9.0'),(4721,886,'_variation_description',''),(4722,886,'total_sales','0'),(4723,886,'_tax_status','taxable'),(4724,886,'_tax_class','parent'),(4725,886,'_manage_stock','no'),(4726,886,'_backorders','no'),(4727,886,'_sold_individually','no'),(4728,886,'_virtual','no'),(4729,886,'_downloadable','no'),(4730,886,'_download_limit','-1'),(4731,886,'_download_expiry','-1'),(4732,886,'_stock',NULL),(4733,886,'_stock_status','instock'),(4734,886,'_wc_average_rating','0'),(4735,886,'_wc_review_count','0'),(4736,886,'attribute_pa_weight','50-sticks'),(4737,886,'_product_version','5.9.0'),(4789,886,'_regular_price','80'),(4792,886,'_thumbnail_id','0'),(4793,886,'_price','80'),(4810,884,'_thumbnail_id','948'),(4811,884,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(4813,891,'_wp_attached_file','2021/12/WhatsApp-Image-2021-12-07-at-5.17.24-PM.jpeg'),(4814,891,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:52:\"2021/12/WhatsApp-Image-2021-12-07-at-5.17.24-PM.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.24-PM-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"WhatsApp-Image-2021-12-07-at-5.17.24-PM-1200x800.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.24-PM-280x280.jpeg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.24-PM-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"yith-woocompare-image\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.24-PM-220x154.jpeg\";s:5:\"width\";i:220;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.24-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.24-PM-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.24-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.24-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.24-PM-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.24-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4815,892,'_edit_last','1'),(4816,892,'_edit_lock','1641193806:1'),(4817,892,'total_sales','0'),(4818,892,'_tax_status','taxable'),(4819,892,'_tax_class',''),(4820,892,'_manage_stock','no'),(4821,892,'_backorders','no'),(4822,892,'_sold_individually','no'),(4823,892,'_virtual','no'),(4824,892,'_downloadable','no'),(4825,892,'_download_limit','-1'),(4826,892,'_download_expiry','-1'),(4827,892,'_stock',NULL),(4828,892,'_stock_status','instock'),(4829,892,'_wc_average_rating','0'),(4830,892,'_wc_review_count','0'),(4831,892,'_product_attributes','a:1:{s:9:\"pa_weight\";a:6:{s:4:\"name\";s:9:\"pa_weight\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(4832,892,'_product_version','5.9.0'),(4833,893,'_variation_description',''),(4834,893,'total_sales','0'),(4835,893,'_tax_status','taxable'),(4836,893,'_tax_class','parent'),(4837,893,'_manage_stock','no'),(4838,893,'_backorders','no'),(4839,893,'_sold_individually','no'),(4840,893,'_virtual','no'),(4841,893,'_downloadable','no'),(4842,893,'_download_limit','-1'),(4843,893,'_download_expiry','-1'),(4844,893,'_stock',NULL),(4845,893,'_stock_status','instock'),(4846,893,'_wc_average_rating','0'),(4847,893,'_wc_review_count','0'),(4848,893,'attribute_pa_weight','100-gm'),(4849,893,'_product_version','5.9.0'),(4850,894,'_variation_description',''),(4851,894,'total_sales','0'),(4852,894,'_tax_status','taxable'),(4853,894,'_tax_class','parent'),(4854,894,'_manage_stock','no'),(4855,894,'_backorders','no'),(4856,894,'_sold_individually','no'),(4857,894,'_virtual','no'),(4858,894,'_downloadable','no'),(4859,894,'_download_limit','-1'),(4860,894,'_download_expiry','-1'),(4861,894,'_stock',NULL),(4862,894,'_stock_status','instock'),(4863,894,'_wc_average_rating','0'),(4864,894,'_wc_review_count','0'),(4865,894,'attribute_pa_weight','100-gm-flat'),(4866,894,'_product_version','5.9.0'),(4867,895,'_variation_description',''),(4868,895,'total_sales','0'),(4869,895,'_tax_status','taxable'),(4870,895,'_tax_class','parent'),(4871,895,'_manage_stock','no'),(4872,895,'_backorders','no'),(4873,895,'_sold_individually','no'),(4874,895,'_virtual','no'),(4875,895,'_downloadable','no'),(4876,895,'_download_limit','-1'),(4877,895,'_download_expiry','-1'),(4878,895,'_stock',NULL),(4879,895,'_stock_status','instock'),(4880,895,'_wc_average_rating','0'),(4881,895,'_wc_review_count','0'),(4882,895,'attribute_pa_weight','125-gm'),(4883,895,'_product_version','5.9.0'),(4884,896,'_variation_description',''),(4885,896,'total_sales','0'),(4886,896,'_tax_status','taxable'),(4887,896,'_tax_class','parent'),(4888,896,'_manage_stock','no'),(4889,896,'_backorders','no'),(4890,896,'_sold_individually','no'),(4891,896,'_virtual','no'),(4892,896,'_downloadable','no'),(4893,896,'_download_limit','-1'),(4894,896,'_download_expiry','-1'),(4895,896,'_stock',NULL),(4896,896,'_stock_status','instock'),(4897,896,'_wc_average_rating','0'),(4898,896,'_wc_review_count','0'),(4899,896,'attribute_pa_weight','13-gm-flat'),(4900,896,'_product_version','5.9.0'),(4901,893,'_regular_price','70'),(4904,893,'_thumbnail_id','0'),(4905,893,'_price','70'),(4906,894,'_regular_price','50'),(4909,894,'_thumbnail_id','0'),(4910,894,'_price','50'),(4911,895,'_regular_price','70'),(4914,895,'_thumbnail_id','0'),(4915,895,'_price','70'),(4916,896,'_regular_price','10'),(4919,896,'_thumbnail_id','0'),(4920,896,'_price','10'),(4922,892,'_thumbnail_id','885'),(4923,892,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(4932,901,'_variation_description',''),(4933,901,'total_sales','0'),(4934,901,'_tax_status','taxable'),(4935,901,'_tax_class','parent'),(4936,901,'_manage_stock','no'),(4937,901,'_backorders','no'),(4938,901,'_sold_individually','no'),(4939,901,'_virtual','no'),(4940,901,'_downloadable','no'),(4941,901,'_download_limit','-1'),(4942,901,'_download_expiry','-1'),(4943,901,'_stock',NULL),(4944,901,'_stock_status','instock'),(4945,901,'_wc_average_rating','0'),(4946,901,'_wc_review_count','0'),(4947,901,'attribute_pa_weight','100-gm'),(4948,901,'_product_version','5.9.0'),(4949,902,'_variation_description',''),(4950,902,'total_sales','0'),(4951,902,'_tax_status','taxable'),(4952,902,'_tax_class','parent'),(4953,902,'_manage_stock','no'),(4954,902,'_backorders','no'),(4955,902,'_sold_individually','no'),(4956,902,'_virtual','no'),(4957,902,'_downloadable','no'),(4958,902,'_download_limit','-1'),(4959,902,'_download_expiry','-1'),(4960,902,'_stock',NULL),(4961,902,'_stock_status','instock'),(4962,902,'_wc_average_rating','0'),(4963,902,'_wc_review_count','0'),(4964,902,'attribute_pa_weight','240-gm'),(4965,902,'_product_version','5.9.0'),(4966,903,'_variation_description',''),(4967,903,'total_sales','0'),(4968,903,'_tax_status','taxable'),(4969,903,'_tax_class','parent'),(4970,903,'_manage_stock','no'),(4971,903,'_backorders','no'),(4972,903,'_sold_individually','no'),(4973,903,'_virtual','no'),(4974,903,'_downloadable','no'),(4975,903,'_download_limit','-1'),(4976,903,'_download_expiry','-1'),(4977,903,'_stock',NULL),(4978,903,'_stock_status','instock'),(4979,903,'_wc_average_rating','0'),(4980,903,'_wc_review_count','0'),(4981,903,'attribute_pa_weight','35-gm'),(4982,903,'_product_version','5.9.0'),(4983,904,'_variation_description',''),(4984,904,'total_sales','0'),(4985,904,'_tax_status','taxable'),(4986,904,'_tax_class','parent'),(4987,904,'_manage_stock','no'),(4988,904,'_backorders','no'),(4989,904,'_sold_individually','no'),(4990,904,'_virtual','no'),(4991,904,'_downloadable','no'),(4992,904,'_download_limit','-1'),(4993,904,'_download_expiry','-1'),(4994,904,'_stock',NULL),(4995,904,'_stock_status','instock'),(4996,904,'_wc_average_rating','0'),(4997,904,'_wc_review_count','0'),(4998,904,'attribute_pa_weight','13-gm-flat'),(4999,904,'_product_version','5.9.0'),(5000,901,'_regular_price','55'),(5003,901,'_thumbnail_id','0'),(5004,901,'_price','55'),(5005,902,'_regular_price','125'),(5008,902,'_thumbnail_id','0'),(5009,902,'_price','125'),(5010,903,'_regular_price','25'),(5013,903,'_thumbnail_id','0'),(5014,903,'_price','25'),(5015,904,'_regular_price','10'),(5018,904,'_thumbnail_id','0'),(5019,904,'_price','10'),(5026,905,'_variation_description',''),(5027,905,'total_sales','0'),(5028,905,'_tax_status','taxable'),(5029,905,'_tax_class','parent'),(5030,905,'_manage_stock','no'),(5031,905,'_backorders','no'),(5032,905,'_sold_individually','no'),(5033,905,'_virtual','no'),(5034,905,'_downloadable','no'),(5035,905,'_download_limit','-1'),(5036,905,'_download_expiry','-1'),(5037,905,'_stock',NULL),(5038,905,'_stock_status','instock'),(5039,905,'_wc_average_rating','0'),(5040,905,'_wc_review_count','0'),(5041,905,'attribute_pa_weight','8-sticks-flat'),(5042,905,'_product_version','5.9.0'),(5060,907,'_variation_description',''),(5061,907,'total_sales','0'),(5062,907,'_tax_status','taxable'),(5063,907,'_tax_class','parent'),(5064,907,'_manage_stock','no'),(5065,907,'_backorders','no'),(5066,907,'_sold_individually','no'),(5067,907,'_virtual','no'),(5068,907,'_downloadable','no'),(5069,907,'_download_limit','-1'),(5070,907,'_download_expiry','-1'),(5071,907,'_stock',NULL),(5072,907,'_stock_status','instock'),(5073,907,'_wc_average_rating','0'),(5074,907,'_wc_review_count','0'),(5075,907,'attribute_pa_weight','50-sticks'),(5076,907,'_product_version','5.9.0'),(5094,905,'_regular_price','10'),(5097,905,'_thumbnail_id','0'),(5098,905,'_price','10'),(5104,907,'_regular_price','55'),(5107,907,'_thumbnail_id','0'),(5108,907,'_price','55'),(5121,873,'_regular_price','55'),(5123,873,'_thumbnail_id','0'),(5124,873,'_price','55'),(5125,874,'_regular_price','10'),(5127,874,'_thumbnail_id','0'),(5128,874,'_price','10'),(5129,875,'_regular_price','25'),(5131,875,'_thumbnail_id','0'),(5132,875,'_price','25'),(5139,515,'_wp_old_date','2021-12-10'),(5140,516,'_wp_old_date','2021-12-10'),(5141,517,'_wp_old_date','2021-12-10'),(5142,519,'_wp_old_date','2021-12-10'),(5143,523,'_wp_old_date','2021-12-10'),(5144,522,'_wp_old_date','2021-12-10'),(5145,909,'_menu_item_type','custom'),(5146,909,'_menu_item_menu_item_parent','517'),(5147,909,'_menu_item_object_id','909'),(5148,909,'_menu_item_object','custom'),(5149,909,'_menu_item_target',''),(5150,909,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(5151,909,'_menu_item_xfn',''),(5152,909,'_menu_item_url','https://demoweblinks.in/padmini/product-category/charms/'),(5154,910,'_menu_item_type','custom'),(5155,910,'_menu_item_menu_item_parent','517'),(5156,910,'_menu_item_object_id','910'),(5157,910,'_menu_item_object','custom'),(5158,910,'_menu_item_target',''),(5159,910,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(5160,910,'_menu_item_xfn',''),(5161,910,'_menu_item_url','https://demoweblinks.in/padmini/product-category/fragrance/'),(5163,909,'_menu_item_design','default'),(5164,909,'_menu_item_width',''),(5165,909,'_menu_item_height',''),(5166,909,'_menu_item_block',''),(5167,909,'_menu_item_behavior','hover'),(5168,909,'_menu_item_icon-type','media'),(5169,909,'_menu_item_icon-id',''),(5170,909,'_menu_item_icon-width',''),(5171,909,'_menu_item_icon-height',''),(5172,909,'_menu_item_icon-html',''),(5173,910,'_menu_item_design','default'),(5174,910,'_menu_item_width',''),(5175,910,'_menu_item_height',''),(5176,910,'_menu_item_block',''),(5177,910,'_menu_item_behavior','hover'),(5178,910,'_menu_item_icon-type','media'),(5179,910,'_menu_item_icon-id',''),(5180,910,'_menu_item_icon-width',''),(5181,910,'_menu_item_icon-height',''),(5182,910,'_menu_item_icon-html',''),(5183,911,'_wp_attached_file','2021/12/WhatsApp-Image-2021-11-29-at-5.10.59-PM.jpeg'),(5184,911,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:888;s:4:\"file\";s:52:\"2021/12/WhatsApp-Image-2021-11-29-at-5.10.59-PM.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.59-PM-577x400.jpeg\";s:5:\"width\";i:577;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"WhatsApp-Image-2021-11-29-at-5.10.59-PM-1153x800.jpeg\";s:5:\"width\";i:1153;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.59-PM-280x280.jpeg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.59-PM-768x533.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"yith-woocompare-image\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.59-PM-220x154.jpeg\";s:5:\"width\";i:220;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.59-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.59-PM-600x416.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.59-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.59-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.59-PM-600x416.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.10.59-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5185,912,'_wp_attached_file','2021/12/WhatsApp-Image-2021-11-29-at-5.10.54-PM-1.jpeg'),(5186,912,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:888;s:4:\"file\";s:54:\"2021/12/WhatsApp-Image-2021-11-29-at-5.10.54-PM-1.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.54-PM-1-577x400.jpeg\";s:5:\"width\";i:577;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:55:\"WhatsApp-Image-2021-11-29-at-5.10.54-PM-1-1153x800.jpeg\";s:5:\"width\";i:1153;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.54-PM-1-280x280.jpeg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.54-PM-1-768x533.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"yith-woocompare-image\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.54-PM-1-220x154.jpeg\";s:5:\"width\";i:220;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.54-PM-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.54-PM-1-600x416.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.54-PM-1-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.54-PM-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.54-PM-1-600x416.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.54-PM-1-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5462,892,'_wp_old_slug','sugandh__trashed'),(5463,893,'_wp_old_slug','sugandh-100gm__trashed'),(5464,894,'_wp_old_slug','sugandh-200-gm__trashed'),(5465,895,'_wp_old_slug','sugandh-25gm__trashed'),(5466,896,'_wp_old_slug','sugandh-500gm__trashed'),(5467,884,'_wp_old_slug','assam-oudh__trashed'),(5468,886,'_wp_old_slug','assam-oudh-100gm__trashed'),(5472,878,'_wp_old_slug','my-favourite__trashed'),(5473,879,'_wp_old_slug','my-favourite-100gm__trashed'),(5477,872,'_wp_old_slug','lyrics__trashed'),(5478,873,'_wp_old_slug','lyrics-100gm__trashed'),(5479,874,'_wp_old_slug','lyrics-200-gm__trashed'),(5480,875,'_wp_old_slug','lyrics-25gm__trashed'),(5482,866,'_wp_old_slug','padmini-incense__trashed'),(5483,868,'_wp_old_slug','padmini-incense-100gm__trashed'),(5484,869,'_wp_old_slug','padmini-incense-200-gm__trashed'),(5485,870,'_wp_old_slug','padmini-incense-25gm__trashed'),(5487,860,'_wp_old_slug','chandan__trashed'),(5488,861,'_wp_old_slug','chandan-100gm__trashed'),(5489,862,'_wp_old_slug','chandan-200-gm__trashed'),(5490,863,'_wp_old_slug','chandan-25gm__trashed'),(5491,864,'_wp_old_slug','chandan-500gm__trashed'),(5492,855,'_wp_old_slug','gold-statue__trashed'),(5496,856,'_wp_old_slug','gold-statue__trashed'),(5497,852,'_wp_old_slug','spiritual-guide__trashed'),(5498,905,'_wp_old_slug','spiritual-guide-100gm__trashed'),(5500,907,'_wp_old_slug','spiritual-guide-25gm__trashed'),(5502,850,'_wp_old_slug','brindavan__trashed'),(5503,904,'_wp_old_slug','brindavan-500gm__trashed'),(5504,903,'_wp_old_slug','brindavan-25gm__trashed'),(5505,902,'_wp_old_slug','brindavan-200-gm__trashed'),(5506,901,'_wp_old_slug','brindavan-100gm__trashed'),(5540,913,'_menu_item_type','custom'),(5541,913,'_menu_item_menu_item_parent','0'),(5542,913,'_menu_item_object_id','913'),(5543,913,'_menu_item_object','custom'),(5544,913,'_menu_item_target',''),(5545,913,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(5546,913,'_menu_item_xfn',''),(5547,913,'_menu_item_url','#'),(5548,913,'_menu_item_orphaned','1639651087'),(5549,914,'_menu_item_type','custom'),(5550,914,'_menu_item_menu_item_parent','517'),(5551,914,'_menu_item_object_id','914'),(5552,914,'_menu_item_object','custom'),(5553,914,'_menu_item_target',''),(5554,914,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(5555,914,'_menu_item_xfn',''),(5556,914,'_menu_item_url','https://demoweblinks.in/padmini/product-category/floral/'),(5558,915,'_menu_item_type','custom'),(5559,915,'_menu_item_menu_item_parent','517'),(5560,915,'_menu_item_object_id','915'),(5561,915,'_menu_item_object','custom'),(5562,915,'_menu_item_target',''),(5563,915,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(5564,915,'_menu_item_xfn',''),(5565,915,'_menu_item_url','https://demoweblinks.in/padmini/product-category/divine/'),(5567,916,'_menu_item_type','custom'),(5568,916,'_menu_item_menu_item_parent','517'),(5569,916,'_menu_item_object_id','916'),(5570,916,'_menu_item_object','custom'),(5571,916,'_menu_item_target',''),(5572,916,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(5573,916,'_menu_item_xfn',''),(5574,916,'_menu_item_url','https://demoweblinks.in/padmini/product-category/ultimo/'),(5576,914,'_menu_item_design','default'),(5577,914,'_menu_item_width',''),(5578,914,'_menu_item_height',''),(5579,914,'_menu_item_block',''),(5580,914,'_menu_item_behavior','hover'),(5581,914,'_menu_item_icon-type','media'),(5582,914,'_menu_item_icon-id',''),(5583,914,'_menu_item_icon-width',''),(5584,914,'_menu_item_icon-height',''),(5585,914,'_menu_item_icon-html',''),(5586,915,'_menu_item_design','default'),(5587,915,'_menu_item_width',''),(5588,915,'_menu_item_height',''),(5589,915,'_menu_item_block',''),(5590,915,'_menu_item_behavior','hover'),(5591,915,'_menu_item_icon-type','media'),(5592,915,'_menu_item_icon-id',''),(5593,915,'_menu_item_icon-width',''),(5594,915,'_menu_item_icon-height',''),(5595,915,'_menu_item_icon-html',''),(5596,916,'_menu_item_design','default'),(5597,916,'_menu_item_width',''),(5598,916,'_menu_item_height',''),(5599,916,'_menu_item_block',''),(5600,916,'_menu_item_behavior','hover'),(5601,916,'_menu_item_icon-type','media'),(5602,916,'_menu_item_icon-id',''),(5603,916,'_menu_item_icon-width',''),(5604,916,'_menu_item_icon-height',''),(5605,916,'_menu_item_icon-html',''),(5606,920,'_wp_attached_file','2021/12/agarbatti.gif'),(5607,920,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2021/12/agarbatti.gif\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"agarbatti-800x333.gif\";s:5:\"width\";i:800;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/gif\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"agarbatti-1400x583.gif\";s:5:\"width\";i:1400;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/gif\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"agarbatti-280x280.gif\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"agarbatti-768x320.gif\";s:5:\"width\";i:768;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/gif\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"agarbatti-1536x640.gif\";s:5:\"width\";i:1536;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"yith-woocompare-image\";a:4:{s:4:\"file\";s:21:\"agarbatti-220x154.gif\";s:5:\"width\";i:220;s:6:\"height\";i:154;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"agarbatti-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"agarbatti-600x250.gif\";s:5:\"width\";i:600;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/gif\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"agarbatti-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"agarbatti-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"agarbatti-600x250.gif\";s:5:\"width\";i:600;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"agarbatti-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5608,922,'_wp_attached_file','2021/12/Rotating_earth_large.gif'),(5609,922,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:32:\"2021/12/Rotating_earth_large.gif\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Rotating_earth_large-280x280.gif\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"yith-woocompare-image\";a:4:{s:4:\"file\";s:32:\"Rotating_earth_large-220x154.gif\";s:5:\"width\";i:220;s:6:\"height\";i:154;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"Rotating_earth_large-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"Rotating_earth_large-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"Rotating_earth_large-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"Rotating_earth_large-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5610,933,'_wp_attached_file','2021/12/BRINDAVAN-100-grams-scaled.jpg'),(5611,933,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:38:\"2021/12/BRINDAVAN-100-grams-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"BRINDAVAN-100-grams-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"BRINDAVAN-100-grams-1199x800.jpg\";s:5:\"width\";i:1199;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"BRINDAVAN-100-grams-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"BRINDAVAN-100-grams-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:38:\"BRINDAVAN-100-grams-scaled-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:38:\"BRINDAVAN-100-grams-scaled-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"BRINDAVAN-100-grams.jpg\";}'),(5612,934,'_wp_attached_file','2021/12/BRINDAVAN-100-grams-1-scaled.jpg'),(5613,934,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:40:\"2021/12/BRINDAVAN-100-grams-1-scaled.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"BRINDAVAN-100-grams-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"BRINDAVAN-100-grams-1-1199x800.jpg\";s:5:\"width\";i:1199;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"BRINDAVAN-100-grams-1-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"BRINDAVAN-100-grams-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"BRINDAVAN-100-grams-1-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"BRINDAVAN-100-grams-1.jpg\";}'),(5614,935,'_wp_attached_file','2021/12/SPIRITUAL-GUIDE-Rs-55-scaled.jpg'),(5615,935,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:40:\"2021/12/SPIRITUAL-GUIDE-Rs-55-scaled.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"SPIRITUAL-GUIDE-Rs-55-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"SPIRITUAL-GUIDE-Rs-55-1199x800.jpg\";s:5:\"width\";i:1199;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"SPIRITUAL-GUIDE-Rs-55-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"SPIRITUAL-GUIDE-Rs-55-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"SPIRITUAL-GUIDE-Rs-55-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:40:\"SPIRITUAL-GUIDE-Rs-55-scaled-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:40:\"SPIRITUAL-GUIDE-Rs-55-scaled-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"SPIRITUAL-GUIDE-Rs-55.jpg\";}'),(5616,936,'_wp_attached_file','2021/12/WhatsApp-Image-2021-12-16-at-5.57.57-PM.jpeg'),(5617,936,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:904;s:6:\"height\";i:1280;s:4:\"file\";s:52:\"2021/12/WhatsApp-Image-2021-12-16-at-5.57.57-PM.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-16-at-5.57.57-PM-283x400.jpeg\";s:5:\"width\";i:283;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-16-at-5.57.57-PM-565x800.jpeg\";s:5:\"width\";i:565;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-16-at-5.57.57-PM-280x280.jpeg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"WhatsApp-Image-2021-12-16-at-5.57.57-PM-768x1087.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1087;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"yith-woocompare-image\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-16-at-5.57.57-PM-220x154.jpeg\";s:5:\"width\";i:220;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-16-at-5.57.57-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-16-at-5.57.57-PM-600x850.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:850;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-16-at-5.57.57-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-16-at-5.57.57-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-16-at-5.57.57-PM-600x850.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:850;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-16-at-5.57.57-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5727,945,'_wp_attached_file','2021/12/chandan-225-scaled.jpg'),(5728,945,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:30:\"2021/12/chandan-225-scaled.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"chandan-225-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"chandan-225-1199x800.jpg\";s:5:\"width\";i:1199;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"chandan-225-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"chandan-225-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"chandan-225-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"chandan-225-scaled-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"chandan-225-scaled-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"chandan-225.jpg\";}'),(5729,946,'_wp_attached_file','2021/12/8-ST-Padmini-Incense-Rs-10-scaled.jpg'),(5730,946,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:45:\"2021/12/8-ST-Padmini-Incense-Rs-10-scaled.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"8-ST-Padmini-Incense-Rs-10-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"8-ST-Padmini-Incense-Rs-10-1199x800.jpg\";s:5:\"width\";i:1199;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"8-ST-Padmini-Incense-Rs-10-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"8-ST-Padmini-Incense-Rs-10-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:40:\"8-ST-Padmini-Incense-Rs-10-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:45:\"8-ST-Padmini-Incense-Rs-10-scaled-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:45:\"8-ST-Padmini-Incense-Rs-10-scaled-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:30:\"8-ST-Padmini-Incense-Rs-10.jpg\";}'),(5731,947,'_wp_attached_file','2021/12/My-Favourite-scaled.jpg'),(5732,947,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:31:\"2021/12/My-Favourite-scaled.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"My-Favourite-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"My-Favourite-1199x800.jpg\";s:5:\"width\";i:1199;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"My-Favourite-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"My-Favourite-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"My-Favourite-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"My-Favourite-scaled-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"My-Favourite-scaled-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"My-Favourite.jpg\";}'),(5733,948,'_wp_attached_file','2021/12/Assam-Oudh-scaled.jpg'),(5734,948,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:29:\"2021/12/Assam-Oudh-scaled.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Assam-Oudh-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Assam-Oudh-1199x800.jpg\";s:5:\"width\";i:1199;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Assam-Oudh-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"Assam-Oudh-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"Assam-Oudh-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"Assam-Oudh-scaled-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Assam-Oudh-scaled-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"Assam-Oudh.jpg\";}'),(6062,964,'_wp_attached_file','2021/12/WhatsApp-Image-2021-11-29-at-5.11.00-PM-1.jpeg'),(6063,964,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:888;s:4:\"file\";s:54:\"2021/12/WhatsApp-Image-2021-11-29-at-5.11.00-PM-1.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.11.00-PM-1-577x400.jpeg\";s:5:\"width\";i:577;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:55:\"WhatsApp-Image-2021-11-29-at-5.11.00-PM-1-1153x800.jpeg\";s:5:\"width\";i:1153;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.11.00-PM-1-280x280.jpeg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.11.00-PM-1-768x533.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"yith-woocompare-image\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.11.00-PM-1-220x154.jpeg\";s:5:\"width\";i:220;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.11.00-PM-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.11.00-PM-1-600x416.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.11.00-PM-1-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.11.00-PM-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.11.00-PM-1-600x416.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.11.00-PM-1-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6064,965,'_wp_attached_file','2021/12/WhatsApp-Image-2021-11-29-at-5.10.58-PM-1.jpeg'),(6065,965,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:888;s:4:\"file\";s:54:\"2021/12/WhatsApp-Image-2021-11-29-at-5.10.58-PM-1.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.58-PM-1-577x400.jpeg\";s:5:\"width\";i:577;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:55:\"WhatsApp-Image-2021-11-29-at-5.10.58-PM-1-1153x800.jpeg\";s:5:\"width\";i:1153;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.58-PM-1-280x280.jpeg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.58-PM-1-768x533.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"yith-woocompare-image\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.58-PM-1-220x154.jpeg\";s:5:\"width\";i:220;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.58-PM-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.58-PM-1-600x416.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.58-PM-1-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.58-PM-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.58-PM-1-600x416.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.58-PM-1-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6066,966,'_wp_attached_file','2021/12/WhatsApp-Image-2021-11-29-at-5.10.55-PM-1.jpeg'),(6067,966,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:888;s:4:\"file\";s:54:\"2021/12/WhatsApp-Image-2021-11-29-at-5.10.55-PM-1.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.55-PM-1-577x400.jpeg\";s:5:\"width\";i:577;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:55:\"WhatsApp-Image-2021-11-29-at-5.10.55-PM-1-1153x800.jpeg\";s:5:\"width\";i:1153;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.55-PM-1-280x280.jpeg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.55-PM-1-768x533.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"yith-woocompare-image\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.55-PM-1-220x154.jpeg\";s:5:\"width\";i:220;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.55-PM-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.55-PM-1-600x416.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.55-PM-1-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.55-PM-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.55-PM-1-600x416.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2021-11-29-at-5.10.55-PM-1-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6068,967,'_wp_attached_file','2021/12/WhatsApp-Image-2021-11-29-at-5.11.01-PM.jpeg'),(6069,967,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:888;s:4:\"file\";s:52:\"2021/12/WhatsApp-Image-2021-11-29-at-5.11.01-PM.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.11.01-PM-577x400.jpeg\";s:5:\"width\";i:577;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"WhatsApp-Image-2021-11-29-at-5.11.01-PM-1153x800.jpeg\";s:5:\"width\";i:1153;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.11.01-PM-280x280.jpeg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.11.01-PM-768x533.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"yith-woocompare-image\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.11.01-PM-220x154.jpeg\";s:5:\"width\";i:220;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.11.01-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.11.01-PM-600x416.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.11.01-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.11.01-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.11.01-PM-600x416.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-11-29-at-5.11.01-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6070,968,'_wp_attached_file','2021/12/logo-10.png'),(6071,968,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:85;s:4:\"file\";s:19:\"2021/12/logo-10.png\";s:5:\"sizes\";a:3:{s:21:\"yith-woocompare-image\";a:4:{s:4:\"file\";s:18:\"logo-10-220x85.png\";s:5:\"width\";i:220;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"logo-10-100x85.png\";s:5:\"width\";i:100;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"logo-10-100x85.png\";s:5:\"width\";i:100;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6129,860,'_product_attributes','a:1:{s:9:\"pa_weight\";a:6:{s:4:\"name\";s:9:\"pa_weight\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(6134,974,'_variation_description',''),(6135,974,'total_sales','0'),(6136,974,'_tax_status','taxable'),(6137,974,'_tax_class','parent'),(6138,974,'_manage_stock','no'),(6139,974,'_backorders','no'),(6140,974,'_sold_individually','no'),(6141,974,'_virtual','no'),(6142,974,'_downloadable','no'),(6143,974,'_download_limit','-1'),(6144,974,'_download_expiry','-1'),(6145,974,'_stock',NULL),(6146,974,'_stock_status','instock'),(6147,974,'_wc_average_rating','0'),(6148,974,'_wc_review_count','0'),(6149,974,'attribute_pa_weight','35-gm'),(6150,974,'_product_version','5.9.0'),(6155,974,'_regular_price','25'),(6156,974,'_price','25'),(6188,884,'_product_attributes','a:1:{s:9:\"pa_weight\";a:6:{s:4:\"name\";s:9:\"pa_weight\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(6198,975,'_edit_last','1'),(6199,975,'_edit_lock','1641194059:1'),(6200,975,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(6201,975,'total_sales','0'),(6202,975,'_tax_status','taxable'),(6203,975,'_tax_class',''),(6204,975,'_manage_stock','no'),(6205,975,'_backorders','no'),(6206,975,'_sold_individually','no'),(6207,975,'_virtual','no'),(6208,975,'_downloadable','no'),(6209,975,'_download_limit','-1'),(6210,975,'_download_expiry','-1'),(6211,975,'_stock',NULL),(6212,975,'_stock_status','instock'),(6213,975,'_wc_average_rating','0'),(6214,975,'_wc_review_count','0'),(6215,975,'_product_version','5.9.0'),(6216,975,'_thumbnail_id','851'),(6217,975,'_product_attributes','a:1:{s:9:\"pa_weight\";a:6:{s:4:\"name\";s:9:\"pa_weight\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(6218,976,'_variation_description',''),(6219,976,'total_sales','0'),(6220,976,'_tax_status','taxable'),(6221,976,'_tax_class','parent'),(6222,976,'_manage_stock','no'),(6223,976,'_backorders','no'),(6224,976,'_sold_individually','no'),(6225,976,'_virtual','no'),(6226,976,'_downloadable','no'),(6227,976,'_download_limit','-1'),(6228,976,'_download_expiry','-1'),(6229,976,'_stock',NULL),(6230,976,'_stock_status','instock'),(6231,976,'_wc_average_rating','0'),(6232,976,'_wc_review_count','0'),(6233,976,'attribute_pa_weight','100-gm'),(6234,976,'_product_version','5.9.0'),(6235,977,'_variation_description',''),(6236,977,'total_sales','0'),(6237,977,'_tax_status','taxable'),(6238,977,'_tax_class','parent'),(6239,977,'_manage_stock','no'),(6240,977,'_backorders','no'),(6241,977,'_sold_individually','no'),(6242,977,'_virtual','no'),(6243,977,'_downloadable','no'),(6244,977,'_download_limit','-1'),(6245,977,'_download_expiry','-1'),(6246,977,'_stock',NULL),(6247,977,'_stock_status','instock'),(6248,977,'_wc_average_rating','0'),(6249,977,'_wc_review_count','0'),(6250,977,'attribute_pa_weight','125-gm'),(6251,977,'_product_version','5.9.0'),(6252,978,'_variation_description',''),(6253,978,'total_sales','0'),(6254,978,'_tax_status','taxable'),(6255,978,'_tax_class','parent'),(6256,978,'_manage_stock','no'),(6257,978,'_backorders','no'),(6258,978,'_sold_individually','no'),(6259,978,'_virtual','no'),(6260,978,'_downloadable','no'),(6261,978,'_download_limit','-1'),(6262,978,'_download_expiry','-1'),(6263,978,'_stock',NULL),(6264,978,'_stock_status','instock'),(6265,978,'_wc_average_rating','0'),(6266,978,'_wc_review_count','0'),(6267,978,'attribute_pa_weight','240-gm'),(6268,978,'_product_version','5.9.0'),(6269,979,'_variation_description',''),(6270,979,'total_sales','0'),(6271,979,'_tax_status','taxable'),(6272,979,'_tax_class','parent'),(6273,979,'_manage_stock','no'),(6274,979,'_backorders','no'),(6275,979,'_sold_individually','no'),(6276,979,'_virtual','no'),(6277,979,'_downloadable','no'),(6278,979,'_download_limit','-1'),(6279,979,'_download_expiry','-1'),(6280,979,'_stock',NULL),(6281,979,'_stock_status','instock'),(6282,979,'_wc_average_rating','0'),(6283,979,'_wc_review_count','0'),(6284,979,'attribute_pa_weight','35-gm'),(6285,979,'_product_version','5.9.0'),(6286,980,'_variation_description',''),(6287,980,'total_sales','0'),(6288,980,'_tax_status','taxable'),(6289,980,'_tax_class','parent'),(6290,980,'_manage_stock','no'),(6291,980,'_backorders','no'),(6292,980,'_sold_individually','no'),(6293,980,'_virtual','no'),(6294,980,'_downloadable','no'),(6295,980,'_download_limit','-1'),(6296,980,'_download_expiry','-1'),(6297,980,'_stock',NULL),(6298,980,'_stock_status','instock'),(6299,980,'_wc_average_rating','0'),(6300,980,'_wc_review_count','0'),(6301,980,'attribute_pa_weight','6-sticks'),(6302,980,'_product_version','5.9.0'),(6303,981,'_variation_description',''),(6304,981,'total_sales','0'),(6305,981,'_tax_status','taxable'),(6306,981,'_tax_class','parent'),(6307,981,'_manage_stock','no'),(6308,981,'_backorders','no'),(6309,981,'_sold_individually','no'),(6310,981,'_virtual','no'),(6311,981,'_downloadable','no'),(6312,981,'_download_limit','-1'),(6313,981,'_download_expiry','-1'),(6314,981,'_stock',NULL),(6315,981,'_stock_status','instock'),(6316,981,'_wc_average_rating','0'),(6317,981,'_wc_review_count','0'),(6318,981,'attribute_pa_weight','hexa'),(6319,981,'_product_version','5.9.0'),(6320,977,'_regular_price','70'),(6321,977,'_thumbnail_id','0'),(6322,977,'_price','70'),(6323,981,'_regular_price','12'),(6324,981,'_thumbnail_id','0'),(6325,981,'_price','12'),(6328,982,'_variation_description',''),(6329,982,'total_sales','0'),(6330,982,'_tax_status','taxable'),(6331,982,'_tax_class','parent'),(6332,982,'_manage_stock','no'),(6333,982,'_backorders','no'),(6334,982,'_sold_individually','no'),(6335,982,'_virtual','no'),(6336,982,'_downloadable','no'),(6337,982,'_download_limit','-1'),(6338,982,'_download_expiry','-1'),(6339,982,'_stock',NULL),(6340,982,'_stock_status','instock'),(6341,982,'_wc_average_rating','0'),(6342,982,'_wc_review_count','0'),(6343,982,'attribute_pa_weight','13-gm-flat'),(6344,982,'_product_version','5.9.0'),(6347,976,'_regular_price','55'),(6348,976,'_thumbnail_id','0'),(6349,976,'_price','55'),(6350,978,'_regular_price','125'),(6351,978,'_thumbnail_id','0'),(6352,978,'_price','125'),(6353,979,'_regular_price','25'),(6354,979,'_thumbnail_id','0'),(6355,979,'_price','25'),(6356,980,'_regular_price','5'),(6357,980,'_thumbnail_id','0'),(6358,980,'_price','5'),(6359,982,'_regular_price','10'),(6360,982,'_price','10'),(6368,983,'_edit_last','1'),(6369,983,'_edit_lock','1641194375:1'),(6370,984,'_wp_attached_file','2022/01/WhatsApp-Image-2021-12-07-at-5.16.45-PM.jpeg'),(6371,984,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:52:\"2022/01/WhatsApp-Image-2021-12-07-at-5.16.45-PM.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.45-PM-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"WhatsApp-Image-2021-12-07-at-5.16.45-PM-1200x800.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.45-PM-280x280.jpeg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.45-PM-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"yith-woocompare-image\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.45-PM-220x154.jpeg\";s:5:\"width\";i:220;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.45-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.45-PM-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.45-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.45-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.45-PM-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.45-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6372,983,'total_sales','0'),(6373,983,'_tax_status','taxable'),(6374,983,'_tax_class',''),(6375,983,'_manage_stock','no'),(6376,983,'_backorders','no'),(6377,983,'_sold_individually','no'),(6378,983,'_virtual','no'),(6379,983,'_downloadable','no'),(6380,983,'_download_limit','-1'),(6381,983,'_download_expiry','-1'),(6382,983,'_stock',NULL),(6383,983,'_stock_status','instock'),(6384,983,'_wc_average_rating','0'),(6385,983,'_wc_review_count','0'),(6386,983,'_product_attributes','a:1:{s:9:\"pa_weight\";a:6:{s:4:\"name\";s:9:\"pa_weight\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(6387,983,'_product_version','5.9.0'),(6405,986,'_variation_description',''),(6406,986,'total_sales','0'),(6407,986,'_tax_status','taxable'),(6408,986,'_tax_class','parent'),(6409,986,'_manage_stock','no'),(6410,986,'_backorders','no'),(6411,986,'_sold_individually','no'),(6412,986,'_virtual','no'),(6413,986,'_downloadable','no'),(6414,986,'_download_limit','-1'),(6415,986,'_download_expiry','-1'),(6416,986,'_stock',NULL),(6417,986,'_stock_status','instock'),(6418,986,'_wc_average_rating','0'),(6419,986,'_wc_review_count','0'),(6420,986,'attribute_pa_weight','50-sticks'),(6421,986,'_product_version','5.9.0'),(6422,987,'_variation_description',''),(6423,987,'total_sales','0'),(6424,987,'_tax_status','taxable'),(6425,987,'_tax_class','parent'),(6426,987,'_manage_stock','no'),(6427,987,'_backorders','no'),(6428,987,'_sold_individually','no'),(6429,987,'_virtual','no'),(6430,987,'_downloadable','no'),(6431,987,'_download_limit','-1'),(6432,987,'_download_expiry','-1'),(6433,987,'_stock',NULL),(6434,987,'_stock_status','instock'),(6435,987,'_wc_average_rating','0'),(6436,987,'_wc_review_count','0'),(6437,987,'attribute_pa_weight','8-sticks-flat'),(6438,987,'_product_version','5.9.0'),(6442,986,'_regular_price','55'),(6443,986,'_thumbnail_id','0'),(6444,986,'_price','55'),(6445,987,'_regular_price','10'),(6446,987,'_thumbnail_id','0'),(6447,987,'_price','10'),(6454,983,'_thumbnail_id','984'),(6455,983,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(6516,988,'_edit_last','1'),(6517,988,'_edit_lock','1641268707:1'),(6518,988,'total_sales','0'),(6519,988,'_tax_status','taxable'),(6520,988,'_tax_class',''),(6521,988,'_manage_stock','no'),(6522,988,'_backorders','no'),(6523,988,'_sold_individually','no'),(6524,988,'_virtual','no'),(6525,988,'_downloadable','no'),(6526,988,'_download_limit','-1'),(6527,988,'_download_expiry','-1'),(6528,988,'_stock',NULL),(6529,988,'_stock_status','instock'),(6530,988,'_wc_average_rating','0'),(6531,988,'_wc_review_count','0'),(6532,988,'_product_attributes','a:1:{s:9:\"pa_weight\";a:6:{s:4:\"name\";s:9:\"pa_weight\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(6533,988,'_product_version','5.9.0'),(6534,989,'_variation_description',''),(6535,989,'total_sales','0'),(6536,989,'_tax_status','taxable'),(6537,989,'_tax_class','parent'),(6538,989,'_manage_stock','no'),(6539,989,'_backorders','no'),(6540,989,'_sold_individually','no'),(6541,989,'_virtual','no'),(6542,989,'_downloadable','no'),(6543,989,'_download_limit','-1'),(6544,989,'_download_expiry','-1'),(6545,989,'_stock',NULL),(6546,989,'_stock_status','instock'),(6547,989,'_wc_average_rating','0'),(6548,989,'_wc_review_count','0'),(6549,989,'attribute_pa_weight','35-gm'),(6550,989,'_product_version','5.9.0'),(6551,989,'_regular_price','25'),(6552,989,'_thumbnail_id','0'),(6553,989,'_price','25'),(6556,988,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(6558,990,'_edit_last','1'),(6559,990,'_edit_lock','1641194761:1'),(6560,991,'_wp_attached_file','2022/01/WhatsApp-Image-2021-12-07-at-5.16.42-PM.jpeg'),(6561,991,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:1024;s:4:\"file\";s:52:\"2022/01/WhatsApp-Image-2021-12-07-at-5.16.42-PM.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.42-PM-500x400.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"WhatsApp-Image-2021-12-07-at-5.16.42-PM-1000x800.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.42-PM-280x280.jpeg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.42-PM-768x614.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"yith-woocompare-image\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.42-PM-220x154.jpeg\";s:5:\"width\";i:220;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.42-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.42-PM-600x480.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.42-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.42-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.42-PM-600x480.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.16.42-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6562,990,'_thumbnail_id','991'),(6563,990,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(6564,990,'total_sales','0'),(6565,990,'_tax_status','taxable'),(6566,990,'_tax_class',''),(6567,990,'_manage_stock','no'),(6568,990,'_backorders','no'),(6569,990,'_sold_individually','no'),(6570,990,'_virtual','no'),(6571,990,'_downloadable','no'),(6572,990,'_download_limit','-1'),(6573,990,'_download_expiry','-1'),(6574,990,'_stock',NULL),(6575,990,'_stock_status','instock'),(6576,990,'_wc_average_rating','0'),(6577,990,'_wc_review_count','0'),(6578,990,'_product_version','5.9.0'),(6579,990,'_product_attributes','a:1:{s:9:\"pa_weight\";a:6:{s:4:\"name\";s:9:\"pa_weight\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(6580,992,'_variation_description',''),(6581,992,'total_sales','0'),(6582,992,'_tax_status','taxable'),(6583,992,'_tax_class','parent'),(6584,992,'_manage_stock','no'),(6585,992,'_backorders','no'),(6586,992,'_sold_individually','no'),(6587,992,'_virtual','no'),(6588,992,'_downloadable','no'),(6589,992,'_download_limit','-1'),(6590,992,'_download_expiry','-1'),(6591,992,'_stock',NULL),(6592,992,'_stock_status','instock'),(6593,992,'_wc_average_rating','0'),(6594,992,'_wc_review_count','0'),(6595,992,'attribute_pa_weight','150-gm'),(6596,992,'_product_version','5.9.0'),(6597,993,'_variation_description',''),(6598,993,'total_sales','0'),(6599,993,'_tax_status','taxable'),(6600,993,'_tax_class','parent'),(6601,993,'_manage_stock','no'),(6602,993,'_backorders','no'),(6603,993,'_sold_individually','no'),(6604,993,'_virtual','no'),(6605,993,'_downloadable','no'),(6606,993,'_download_limit','-1'),(6607,993,'_download_expiry','-1'),(6608,993,'_stock',NULL),(6609,993,'_stock_status','instock'),(6610,993,'_wc_average_rating','0'),(6611,993,'_wc_review_count','0'),(6612,993,'attribute_pa_weight','20-gm'),(6613,993,'_product_version','5.9.0'),(6614,994,'_variation_description',''),(6615,994,'total_sales','0'),(6616,994,'_tax_status','taxable'),(6617,994,'_tax_class','parent'),(6618,994,'_manage_stock','no'),(6619,994,'_backorders','no'),(6620,994,'_sold_individually','no'),(6621,994,'_virtual','no'),(6622,994,'_downloadable','no'),(6623,994,'_download_limit','-1'),(6624,994,'_download_expiry','-1'),(6625,994,'_stock',NULL),(6626,994,'_stock_status','instock'),(6627,994,'_wc_average_rating','0'),(6628,994,'_wc_review_count','0'),(6629,994,'attribute_pa_weight','35-gm'),(6630,994,'_product_version','5.9.0'),(6631,992,'_regular_price','70'),(6632,992,'_thumbnail_id','0'),(6633,992,'_price','70'),(6634,993,'_regular_price','13'),(6635,993,'_thumbnail_id','0'),(6636,993,'_price','13'),(6637,994,'_regular_price','25'),(6638,994,'_thumbnail_id','0'),(6639,994,'_price','25'),(6649,995,'_edit_last','1'),(6650,995,'_edit_lock','1641199806:1'),(6651,996,'_wp_attached_file','2022/01/WhatsApp-Image-2021-12-07-at-5.17.22-PM.jpeg'),(6652,996,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:1024;s:4:\"file\";s:52:\"2022/01/WhatsApp-Image-2021-12-07-at-5.17.22-PM.jpeg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.22-PM-500x400.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"WhatsApp-Image-2021-12-07-at-5.17.22-PM-1000x800.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.22-PM-280x280.jpeg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.22-PM-768x614.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"yith-woocompare-image\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.22-PM-220x154.jpeg\";s:5:\"width\";i:220;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.22-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.22-PM-600x480.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.22-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.22-PM-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.22-PM-600x480.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2021-12-07-at-5.17.22-PM-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6653,995,'total_sales','0'),(6654,995,'_tax_status','taxable'),(6655,995,'_tax_class',''),(6656,995,'_manage_stock','no'),(6657,995,'_backorders','no'),(6658,995,'_sold_individually','no'),(6659,995,'_virtual','no'),(6660,995,'_downloadable','no'),(6661,995,'_download_limit','-1'),(6662,995,'_download_expiry','-1'),(6663,995,'_stock',NULL),(6664,995,'_stock_status','instock'),(6665,995,'_wc_average_rating','0'),(6666,995,'_wc_review_count','0'),(6667,995,'_product_attributes','a:1:{s:9:\"pa_weight\";a:6:{s:4:\"name\";s:9:\"pa_weight\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(6668,995,'_product_version','5.9.0'),(6669,997,'_variation_description',''),(6670,997,'total_sales','0'),(6671,997,'_tax_status','taxable'),(6672,997,'_tax_class','parent'),(6673,997,'_manage_stock','no'),(6674,997,'_backorders','no'),(6675,997,'_sold_individually','no'),(6676,997,'_virtual','no'),(6677,997,'_downloadable','no'),(6678,997,'_download_limit','-1'),(6679,997,'_download_expiry','-1'),(6680,997,'_stock',NULL),(6681,997,'_stock_status','instock'),(6682,997,'_wc_average_rating','0'),(6683,997,'_wc_review_count','0'),(6684,997,'attribute_pa_weight','20-gm'),(6685,997,'_product_version','5.9.0'),(6686,998,'_variation_description',''),(6687,998,'total_sales','0'),(6688,998,'_tax_status','taxable'),(6689,998,'_tax_class','parent'),(6690,998,'_manage_stock','no'),(6691,998,'_backorders','no'),(6692,998,'_sold_individually','no'),(6693,998,'_virtual','no'),(6694,998,'_downloadable','no'),(6695,998,'_download_limit','-1'),(6696,998,'_download_expiry','-1'),(6697,998,'_stock',NULL),(6698,998,'_stock_status','instock'),(6699,998,'_wc_average_rating','0'),(6700,998,'_wc_review_count','0'),(6701,998,'attribute_pa_weight','40-gm'),(6702,998,'_product_version','5.9.0'),(6703,997,'_regular_price','13'),(6704,997,'_thumbnail_id','0'),(6705,997,'_price','13'),(6706,998,'_regular_price','25'),(6707,998,'_thumbnail_id','0'),(6708,998,'_price','25'),(6714,995,'_thumbnail_id','996'),(6716,995,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(6717,999,'_edit_last','1'),(6718,999,'_edit_lock','1641202796:1'),(6719,999,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(6720,999,'total_sales','0'),(6721,999,'_tax_status','taxable'),(6722,999,'_tax_class',''),(6723,999,'_manage_stock','no'),(6724,999,'_backorders','no'),(6725,999,'_sold_individually','no'),(6726,999,'_virtual','no'),(6727,999,'_downloadable','no'),(6728,999,'_download_limit','-1'),(6729,999,'_download_expiry','-1'),(6730,999,'_stock',NULL),(6731,999,'_stock_status','instock'),(6732,999,'_wc_average_rating','0'),(6733,999,'_wc_review_count','0'),(6734,999,'_product_version','5.9.0'),(6735,1000,'_edit_last','1'),(6736,1000,'_edit_lock','1641199975:1'),(6737,1000,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(6738,1000,'total_sales','0'),(6739,1000,'_tax_status','taxable'),(6740,1000,'_tax_class',''),(6741,1000,'_manage_stock','no'),(6742,1000,'_backorders','no'),(6743,1000,'_sold_individually','no'),(6744,1000,'_virtual','no'),(6745,1000,'_downloadable','no'),(6746,1000,'_download_limit','-1'),(6747,1000,'_download_expiry','-1'),(6748,1000,'_stock',NULL),(6749,1000,'_stock_status','instock'),(6750,1000,'_wc_average_rating','0'),(6751,1000,'_wc_review_count','0'),(6752,1000,'_product_version','5.9.0'),(6753,1001,'_wp_attached_file','2022/01/Pakeezah-scaled.jpg'),(6754,1001,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2022/01/Pakeezah-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"Pakeezah-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"Pakeezah-1199x800.jpg\";s:5:\"width\";i:1199;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Pakeezah-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"Pakeezah-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"Pakeezah-scaled-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"Pakeezah-scaled-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"Pakeezah.jpg\";}'),(6755,1002,'_wp_attached_file','2022/01/Pakeezah-1-scaled.jpg'),(6756,1002,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:29:\"2022/01/Pakeezah-1-scaled.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Pakeezah-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Pakeezah-1-1199x800.jpg\";s:5:\"width\";i:1199;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Pakeezah-1-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"Pakeezah-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"Pakeezah-1-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"Pakeezah-1.jpg\";}'),(6757,1000,'_thumbnail_id','1001'),(6758,1000,'_product_attributes','a:1:{s:9:\"pa_weight\";a:6:{s:4:\"name\";s:9:\"pa_weight\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(6759,1003,'_variation_description',''),(6760,1003,'total_sales','0'),(6761,1003,'_tax_status','taxable'),(6762,1003,'_tax_class','parent'),(6763,1003,'_manage_stock','no'),(6764,1003,'_backorders','no'),(6765,1003,'_sold_individually','no'),(6766,1003,'_virtual','no'),(6767,1003,'_downloadable','no'),(6768,1003,'_download_limit','-1'),(6769,1003,'_download_expiry','-1'),(6770,1003,'_stock',NULL),(6771,1003,'_stock_status','instock'),(6772,1003,'_wc_average_rating','0'),(6773,1003,'_wc_review_count','0'),(6774,1003,'attribute_pa_weight','10-sticks-tubes'),(6775,1003,'_product_version','5.9.0'),(6776,1004,'_variation_description',''),(6777,1004,'total_sales','0'),(6778,1004,'_tax_status','taxable'),(6779,1004,'_tax_class','parent'),(6780,1004,'_manage_stock','no'),(6781,1004,'_backorders','no'),(6782,1004,'_sold_individually','no'),(6783,1004,'_virtual','no'),(6784,1004,'_downloadable','no'),(6785,1004,'_download_limit','-1'),(6786,1004,'_download_expiry','-1'),(6787,1004,'_stock',NULL),(6788,1004,'_stock_status','instock'),(6789,1004,'_wc_average_rating','0'),(6790,1004,'_wc_review_count','0'),(6791,1004,'attribute_pa_weight','40-sticks'),(6792,1004,'_product_version','5.9.0'),(6793,1003,'_regular_price','50'),(6794,1003,'_thumbnail_id','0'),(6795,1003,'_price','50'),(6796,1004,'_regular_price','150'),(6797,1004,'_thumbnail_id','0'),(6798,1004,'_price','150'),(6801,1005,'_edit_last','1'),(6802,1005,'_edit_lock','1641200245:1'),(6803,1006,'_wp_attached_file','2022/01/Padmini-Intimate-scaled.jpg'),(6804,1006,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2048;s:4:\"file\";s:35:\"2022/01/Padmini-Intimate-scaled.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Padmini-Intimate-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"Padmini-Intimate-1000x800.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Padmini-Intimate-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Padmini-Intimate-768x614.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:30:\"Padmini-Intimate-1536x1229.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1229;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"Padmini-Intimate-scaled-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"Padmini-Intimate-scaled-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:20:\"Padmini-Intimate.jpg\";}'),(6805,1005,'_thumbnail_id','1006'),(6806,1005,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(6807,1005,'total_sales','0'),(6808,1005,'_tax_status','taxable'),(6809,1005,'_tax_class',''),(6810,1005,'_manage_stock','no'),(6811,1005,'_backorders','no'),(6812,1005,'_sold_individually','no'),(6813,1005,'_virtual','no'),(6814,1005,'_downloadable','no'),(6815,1005,'_download_limit','-1'),(6816,1005,'_download_expiry','-1'),(6817,1005,'_stock',NULL),(6818,1005,'_stock_status','instock'),(6819,1005,'_wc_average_rating','0'),(6820,1005,'_wc_review_count','0'),(6821,1005,'_product_version','5.9.0'),(6822,1005,'_product_attributes','a:1:{s:9:\"pa_weight\";a:6:{s:4:\"name\";s:9:\"pa_weight\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(6823,1007,'_variation_description',''),(6824,1007,'total_sales','0'),(6825,1007,'_tax_status','taxable'),(6826,1007,'_tax_class','parent'),(6827,1007,'_manage_stock','no'),(6828,1007,'_backorders','no'),(6829,1007,'_sold_individually','no'),(6830,1007,'_virtual','no'),(6831,1007,'_downloadable','no'),(6832,1007,'_download_limit','-1'),(6833,1007,'_download_expiry','-1'),(6834,1007,'_stock',NULL),(6835,1007,'_stock_status','instock'),(6836,1007,'_wc_average_rating','0'),(6837,1007,'_wc_review_count','0'),(6838,1007,'attribute_pa_weight','20-sticks'),(6839,1007,'_product_version','5.9.0'),(6840,1008,'_variation_description',''),(6841,1008,'total_sales','0'),(6842,1008,'_tax_status','taxable'),(6843,1008,'_tax_class','parent'),(6844,1008,'_manage_stock','no'),(6845,1008,'_backorders','no'),(6846,1008,'_sold_individually','no'),(6847,1008,'_virtual','no'),(6848,1008,'_downloadable','no'),(6849,1008,'_download_limit','-1'),(6850,1008,'_download_expiry','-1'),(6851,1008,'_stock',NULL),(6852,1008,'_stock_status','instock'),(6853,1008,'_wc_average_rating','0'),(6854,1008,'_wc_review_count','0'),(6855,1008,'attribute_pa_weight','40-sticks'),(6856,1008,'_product_version','5.9.0'),(6857,1007,'_regular_price','80'),(6858,1007,'_thumbnail_id','0'),(6859,1007,'_price','80'),(6860,1008,'_regular_price','150'),(6861,1008,'_thumbnail_id','0'),(6862,1008,'_price','150'),(6865,1009,'_edit_last','1'),(6866,1009,'_edit_lock','1641200375:1'),(6867,1010,'_wp_attached_file','2022/01/Rosa-Ultimo-scaled.jpg'),(6868,1010,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:30:\"2022/01/Rosa-Ultimo-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Rosa-Ultimo-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Rosa-Ultimo-1199x800.jpg\";s:5:\"width\";i:1199;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Rosa-Ultimo-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Rosa-Ultimo-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"Rosa-Ultimo-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"Rosa-Ultimo-scaled-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"Rosa-Ultimo.jpg\";}'),(6869,1009,'total_sales','0'),(6870,1009,'_tax_status','taxable'),(6871,1009,'_tax_class',''),(6872,1009,'_manage_stock','no'),(6873,1009,'_backorders','no'),(6874,1009,'_sold_individually','no'),(6875,1009,'_virtual','no'),(6876,1009,'_downloadable','no'),(6877,1009,'_download_limit','-1'),(6878,1009,'_download_expiry','-1'),(6879,1009,'_stock',NULL),(6880,1009,'_stock_status','instock'),(6881,1009,'_wc_average_rating','0'),(6882,1009,'_wc_review_count','0'),(6883,1009,'_product_version','5.9.0'),(6884,1009,'_thumbnail_id','1010'),(6885,1009,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(6886,1009,'_product_attributes','a:1:{s:9:\"pa_weight\";a:6:{s:4:\"name\";s:9:\"pa_weight\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(6909,1012,'_edit_last','1'),(6910,1012,'_edit_lock','1641268754:1'),(6911,1012,'total_sales','0'),(6912,1012,'_tax_status','taxable'),(6913,1012,'_tax_class',''),(6914,1012,'_manage_stock','no'),(6915,1012,'_backorders','no'),(6916,1012,'_sold_individually','no'),(6917,1012,'_virtual','no'),(6918,1012,'_downloadable','no'),(6919,1012,'_download_limit','-1'),(6920,1012,'_download_expiry','-1'),(6921,1012,'_stock',NULL),(6922,1012,'_stock_status','instock'),(6923,1012,'_wc_average_rating','0'),(6924,1012,'_wc_review_count','0'),(6925,1012,'_product_attributes','a:1:{s:9:\"pa_weight\";a:6:{s:4:\"name\";s:9:\"pa_weight\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(6926,1012,'_product_version','5.9.0'),(6927,1013,'_variation_description',''),(6928,1013,'total_sales','0'),(6929,1013,'_tax_status','taxable'),(6930,1013,'_tax_class','parent'),(6931,1013,'_manage_stock','no'),(6932,1013,'_backorders','no'),(6933,1013,'_sold_individually','no'),(6934,1013,'_virtual','no'),(6935,1013,'_downloadable','no'),(6936,1013,'_download_limit','-1'),(6937,1013,'_download_expiry','-1'),(6938,1013,'_stock',NULL),(6939,1013,'_stock_status','instock'),(6940,1013,'_wc_average_rating','0'),(6941,1013,'_wc_review_count','0'),(6942,1013,'attribute_pa_weight','100-sticks'),(6943,1013,'_product_version','5.9.0'),(6944,1013,'_regular_price','150'),(6945,1013,'_price','150'),(6948,1012,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(6949,1014,'_variation_description',''),(6950,1014,'total_sales','0'),(6951,1014,'_tax_status','taxable'),(6952,1014,'_tax_class','parent'),(6953,1014,'_manage_stock','no'),(6954,1014,'_backorders','no'),(6955,1014,'_sold_individually','no'),(6956,1014,'_virtual','no'),(6957,1014,'_downloadable','no'),(6958,1014,'_download_limit','-1'),(6959,1014,'_download_expiry','-1'),(6960,1014,'_stock',NULL),(6961,1014,'_stock_status','instock'),(6962,1014,'_wc_average_rating','0'),(6963,1014,'_wc_review_count','0'),(6964,1014,'attribute_pa_weight','100-sticks'),(6965,1014,'_product_version','5.9.0'),(6967,1014,'_regular_price','125'),(6968,1014,'_price','125'),(6973,1015,'_edit_last','1'),(6974,1015,'_edit_lock','1641200572:1'),(6975,1015,'total_sales','0'),(6976,1015,'_tax_status','taxable'),(6977,1015,'_tax_class',''),(6978,1015,'_manage_stock','no'),(6979,1015,'_backorders','no'),(6980,1015,'_sold_individually','no'),(6981,1015,'_virtual','no'),(6982,1015,'_downloadable','no'),(6983,1015,'_download_limit','-1'),(6984,1015,'_download_expiry','-1'),(6985,1015,'_stock',NULL),(6986,1015,'_stock_status','instock'),(6987,1015,'_wc_average_rating','0'),(6988,1015,'_wc_review_count','0'),(6989,1015,'_product_attributes','a:1:{s:9:\"pa_weight\";a:6:{s:4:\"name\";s:9:\"pa_weight\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(6990,1015,'_product_version','5.9.0'),(6991,1016,'_variation_description',''),(6992,1016,'total_sales','0'),(6993,1016,'_tax_status','taxable'),(6994,1016,'_tax_class','parent'),(6995,1016,'_manage_stock','no'),(6996,1016,'_backorders','no'),(6997,1016,'_sold_individually','no'),(6998,1016,'_virtual','no'),(6999,1016,'_downloadable','no'),(7000,1016,'_download_limit','-1'),(7001,1016,'_download_expiry','-1'),(7002,1016,'_stock',NULL),(7003,1016,'_stock_status','instock'),(7004,1016,'_wc_average_rating','0'),(7005,1016,'_wc_review_count','0'),(7006,1016,'attribute_pa_weight','100-sticks'),(7007,1016,'_product_version','5.9.0'),(7025,1016,'_regular_price','150'),(7026,1016,'_thumbnail_id','0'),(7027,1016,'_price','150'),(7033,1018,'_wp_attached_file','2022/01/Lavendar-Ultimo-02-scaled.jpg'),(7034,1018,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1593;s:4:\"file\";s:37:\"2022/01/Lavendar-Ultimo-02-scaled.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Lavendar-Ultimo-02-643x400.jpg\";s:5:\"width\";i:643;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Lavendar-Ultimo-02-1286x800.jpg\";s:5:\"width\";i:1286;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Lavendar-Ultimo-02-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Lavendar-Ultimo-02-768x478.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:478;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"Lavendar-Ultimo-02-1536x956.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:956;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"Lavendar-Ultimo-02-scaled-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:22:\"Lavendar-Ultimo-02.jpg\";}'),(7035,1015,'_thumbnail_id','1018'),(7036,1015,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(7037,1019,'_edit_last','1'),(7038,1019,'_edit_lock','1641200814:1'),(7039,1020,'_wp_attached_file','2022/01/Sandal-Ultimo-scaled.jpg'),(7040,1020,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:32:\"2022/01/Sandal-Ultimo-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Sandal-Ultimo-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Sandal-Ultimo-1199x800.jpg\";s:5:\"width\";i:1199;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Sandal-Ultimo-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Sandal-Ultimo-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"Sandal-Ultimo-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:27:\"Sandal-Ultimo-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"yith-woocompare-image\";a:4:{s:4:\"file\";s:25:\"Sandal-Ultimo-220x154.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"Sandal-Ultimo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"Sandal-Ultimo-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"Sandal-Ultimo-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"Sandal-Ultimo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"Sandal-Ultimo-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"Sandal-Ultimo-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:17:\"Sandal-Ultimo.jpg\";}'),(7041,1019,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(7042,1019,'total_sales','0'),(7043,1019,'_tax_status','taxable'),(7044,1019,'_tax_class',''),(7045,1019,'_manage_stock','no'),(7046,1019,'_backorders','no'),(7047,1019,'_sold_individually','no'),(7048,1019,'_virtual','no'),(7049,1019,'_downloadable','no'),(7050,1019,'_download_limit','-1'),(7051,1019,'_download_expiry','-1'),(7052,1019,'_stock',NULL),(7053,1019,'_stock_status','instock'),(7054,1019,'_wc_average_rating','0'),(7055,1019,'_wc_review_count','0'),(7056,1019,'_product_attributes','a:1:{s:9:\"pa_weight\";a:6:{s:4:\"name\";s:9:\"pa_weight\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(7057,1019,'_product_version','5.9.0'),(7058,1021,'_variation_description',''),(7059,1021,'total_sales','0'),(7060,1021,'_tax_status','taxable'),(7061,1021,'_tax_class','parent'),(7062,1021,'_manage_stock','no'),(7063,1021,'_backorders','no'),(7064,1021,'_sold_individually','no'),(7065,1021,'_virtual','no'),(7066,1021,'_downloadable','no'),(7067,1021,'_download_limit','-1'),(7068,1021,'_download_expiry','-1'),(7069,1021,'_stock',NULL),(7070,1021,'_stock_status','instock'),(7071,1021,'_wc_average_rating','0'),(7072,1021,'_wc_review_count','0'),(7073,1021,'attribute_pa_weight','100-sticks'),(7074,1021,'_product_version','5.9.0'),(7092,1021,'_regular_price','125'),(7093,1021,'_thumbnail_id','0'),(7094,1021,'_price','125'),(7100,1019,'_thumbnail_id','1020'),(7101,1023,'_edit_last','1'),(7102,1023,'_edit_lock','1641536431:1'),(7103,1023,'total_sales','0'),(7104,1023,'_tax_status','taxable'),(7105,1023,'_tax_class',''),(7106,1023,'_manage_stock','no'),(7107,1023,'_backorders','no'),(7108,1023,'_sold_individually','no'),(7109,1023,'_virtual','no'),(7110,1023,'_downloadable','no'),(7111,1023,'_download_limit','-1'),(7112,1023,'_download_expiry','-1'),(7113,1023,'_stock',NULL),(7114,1023,'_stock_status','instock'),(7115,1023,'_wc_average_rating','0'),(7116,1023,'_wc_review_count','0'),(7117,1023,'_product_attributes','a:1:{s:9:\"pa_weight\";a:6:{s:4:\"name\";s:9:\"pa_weight\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(7118,1023,'_product_version','5.9.0'),(7119,1024,'_variation_description',''),(7120,1024,'total_sales','0'),(7121,1024,'_tax_status','taxable'),(7122,1024,'_tax_class','parent'),(7123,1024,'_manage_stock','no'),(7124,1024,'_backorders','no'),(7125,1024,'_sold_individually','no'),(7126,1024,'_virtual','no'),(7127,1024,'_downloadable','no'),(7128,1024,'_download_limit','-1'),(7129,1024,'_download_expiry','-1'),(7130,1024,'_stock',NULL),(7131,1024,'_stock_status','instock'),(7132,1024,'_wc_average_rating','0'),(7133,1024,'_wc_review_count','0'),(7134,1024,'attribute_pa_weight','100-sticks'),(7135,1024,'_product_version','5.9.0'),(7136,1024,'_regular_price','150'),(7137,1024,'_thumbnail_id','0'),(7138,1024,'_price','150'),(7142,1023,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(7168,1026,'_variation_description',''),(7169,1026,'total_sales','0'),(7170,1026,'_tax_status','taxable'),(7171,1026,'_tax_class','parent'),(7172,1026,'_manage_stock','no'),(7173,1026,'_backorders','no'),(7174,1026,'_sold_individually','no'),(7175,1026,'_virtual','no'),(7176,1026,'_downloadable','no'),(7177,1026,'_download_limit','-1'),(7178,1026,'_download_expiry','-1'),(7179,1026,'_stock',NULL),(7180,1026,'_stock_status','instock'),(7181,1026,'_wc_average_rating','0'),(7182,1026,'_wc_review_count','0'),(7183,1026,'attribute_pa_weight','100-gm-bulk-package'),(7184,1026,'_product_version','5.9.0'),(7185,1027,'_variation_description',''),(7186,1027,'total_sales','0'),(7187,1027,'_tax_status','taxable'),(7188,1027,'_tax_class','parent'),(7189,1027,'_manage_stock','no'),(7190,1027,'_backorders','no'),(7191,1027,'_sold_individually','no'),(7192,1027,'_virtual','no'),(7193,1027,'_downloadable','no'),(7194,1027,'_download_limit','-1'),(7195,1027,'_download_expiry','-1'),(7196,1027,'_stock',NULL),(7197,1027,'_stock_status','instock'),(7198,1027,'_wc_average_rating','0'),(7199,1027,'_wc_review_count','0'),(7200,1027,'attribute_pa_weight','13-gm-flat-bluk-package'),(7201,1027,'_product_version','5.9.0'),(7202,1028,'_variation_description',''),(7203,1028,'total_sales','0'),(7204,1028,'_tax_status','taxable'),(7205,1028,'_tax_class','parent'),(7206,1028,'_manage_stock','no'),(7207,1028,'_backorders','no'),(7208,1028,'_sold_individually','no'),(7209,1028,'_virtual','no'),(7210,1028,'_downloadable','no'),(7211,1028,'_download_limit','-1'),(7212,1028,'_download_expiry','-1'),(7213,1028,'_stock',NULL),(7214,1028,'_stock_status','instock'),(7215,1028,'_wc_average_rating','0'),(7216,1028,'_wc_review_count','0'),(7217,1028,'attribute_pa_weight','240-gm-bulk-package'),(7218,1028,'_product_version','5.9.0'),(7219,1029,'_variation_description',''),(7220,1029,'total_sales','0'),(7221,1029,'_tax_status','taxable'),(7222,1029,'_tax_class','parent'),(7223,1029,'_manage_stock','no'),(7224,1029,'_backorders','no'),(7225,1029,'_sold_individually','no'),(7226,1029,'_virtual','no'),(7227,1029,'_downloadable','no'),(7228,1029,'_download_limit','-1'),(7229,1029,'_download_expiry','-1'),(7230,1029,'_stock',NULL),(7231,1029,'_stock_status','instock'),(7232,1029,'_wc_average_rating','0'),(7233,1029,'_wc_review_count','0'),(7234,1029,'attribute_pa_weight','35-gm-bulk-package'),(7235,1029,'_product_version','5.9.0'),(7236,1030,'_variation_description',''),(7237,1030,'total_sales','0'),(7238,1030,'_tax_status','taxable'),(7239,1030,'_tax_class','parent'),(7240,1030,'_manage_stock','no'),(7241,1030,'_backorders','no'),(7242,1030,'_sold_individually','no'),(7243,1030,'_virtual','no'),(7244,1030,'_downloadable','no'),(7245,1030,'_download_limit','-1'),(7246,1030,'_download_expiry','-1'),(7247,1030,'_stock',NULL),(7248,1030,'_stock_status','instock'),(7249,1030,'_wc_average_rating','0'),(7250,1030,'_wc_review_count','0'),(7251,1030,'attribute_pa_weight','hexa'),(7252,1030,'_product_version','5.9.0'),(7253,1031,'_variation_description',''),(7254,1031,'total_sales','0'),(7255,1031,'_tax_status','taxable'),(7256,1031,'_tax_class','parent'),(7257,1031,'_manage_stock','no'),(7258,1031,'_backorders','no'),(7259,1031,'_sold_individually','no'),(7260,1031,'_virtual','no'),(7261,1031,'_downloadable','no'),(7262,1031,'_download_limit','-1'),(7263,1031,'_download_expiry','-1'),(7264,1031,'_stock',NULL),(7265,1031,'_stock_status','instock'),(7266,1031,'_wc_average_rating','0'),(7267,1031,'_wc_review_count','0'),(7268,1031,'attribute_pa_weight','hexa-bulk-package'),(7269,1031,'_product_version','5.9.0'),(7274,1026,'_regular_price','660'),(7275,1026,'_thumbnail_id','0'),(7276,1026,'_price','660'),(7277,1027,'_regular_price','120'),(7278,1027,'_thumbnail_id','0'),(7279,1027,'_price','120'),(7280,1028,'_regular_price','1500'),(7281,1028,'_thumbnail_id','0'),(7282,1028,'_price','1500'),(7283,1029,'_regular_price','300'),(7284,1029,'_thumbnail_id','0'),(7285,1029,'_price','300'),(7286,1030,'_regular_price','12'),(7287,1030,'_thumbnail_id','0'),(7288,1030,'_price','12'),(7289,1031,'_regular_price','144'),(7290,1031,'_thumbnail_id','0'),(7291,1031,'_price','144'),(7312,850,'_price','10'),(7313,850,'_price','12'),(7314,850,'_price','25'),(7315,850,'_price','55'),(7316,850,'_price','120'),(7317,850,'_price','125'),(7318,850,'_price','144'),(7319,850,'_price','300'),(7320,850,'_price','660'),(7321,850,'_price','1500'),(7322,1032,'_variation_description',''),(7323,1032,'total_sales','0'),(7324,1032,'_tax_status','taxable'),(7325,1032,'_tax_class','parent'),(7326,1032,'_manage_stock','no'),(7327,1032,'_backorders','no'),(7328,1032,'_sold_individually','no'),(7329,1032,'_virtual','no'),(7330,1032,'_downloadable','no'),(7331,1032,'_download_limit','-1'),(7332,1032,'_download_expiry','-1'),(7333,1032,'_stock',NULL),(7334,1032,'_stock_status','instock'),(7335,1032,'_wc_average_rating','0'),(7336,1032,'_wc_review_count','0'),(7337,1032,'attribute_pa_weight','50-sticks-bulk-package'),(7338,1032,'_product_version','5.9.0'),(7339,1033,'_variation_description',''),(7340,1033,'total_sales','0'),(7341,1033,'_tax_status','taxable'),(7342,1033,'_tax_class','parent'),(7343,1033,'_manage_stock','no'),(7344,1033,'_backorders','no'),(7345,1033,'_sold_individually','no'),(7346,1033,'_virtual','no'),(7347,1033,'_downloadable','no'),(7348,1033,'_download_limit','-1'),(7349,1033,'_download_expiry','-1'),(7350,1033,'_stock',NULL),(7351,1033,'_stock_status','instock'),(7352,1033,'_wc_average_rating','0'),(7353,1033,'_wc_review_count','0'),(7354,1033,'attribute_pa_weight','8-sticks-flat-bulk-package'),(7355,1033,'_product_version','5.9.0'),(7358,1032,'_regular_price','660'),(7359,1032,'_thumbnail_id','0'),(7360,1032,'_price','660'),(7361,1033,'_regular_price','120'),(7362,1033,'_thumbnail_id','0'),(7363,1033,'_price','120'),(7368,852,'_price','10'),(7369,852,'_price','55'),(7370,852,'_price','120'),(7371,852,'_price','660'),(7372,1034,'_variation_description',''),(7373,1034,'total_sales','0'),(7374,1034,'_tax_status','taxable'),(7375,1034,'_tax_class','parent'),(7376,1034,'_manage_stock','no'),(7377,1034,'_backorders','no'),(7378,1034,'_sold_individually','no'),(7379,1034,'_virtual','no'),(7380,1034,'_downloadable','no'),(7381,1034,'_download_limit','-1'),(7382,1034,'_download_expiry','-1'),(7383,1034,'_stock',NULL),(7384,1034,'_stock_status','instock'),(7385,1034,'_wc_average_rating','0'),(7386,1034,'_wc_review_count','0'),(7387,1034,'attribute_pa_weight','100-sticks-bulk-package'),(7388,1034,'_product_version','5.9.0'),(7390,1034,'_regular_price','960'),(7391,1034,'_thumbnail_id','0'),(7392,1034,'_price','960'),(7397,855,'_price','80'),(7398,855,'_price','960'),(7399,1035,'_variation_description',''),(7400,1035,'total_sales','0'),(7401,1035,'_tax_status','taxable'),(7402,1035,'_tax_class','parent'),(7403,1035,'_manage_stock','no'),(7404,1035,'_backorders','no'),(7405,1035,'_sold_individually','no'),(7406,1035,'_virtual','no'),(7407,1035,'_downloadable','no'),(7408,1035,'_download_limit','-1'),(7409,1035,'_download_expiry','-1'),(7410,1035,'_stock',NULL),(7411,1035,'_stock_status','instock'),(7412,1035,'_wc_average_rating','0'),(7413,1035,'_wc_review_count','0'),(7414,1035,'attribute_pa_weight','100-gm-bulk-package'),(7415,1035,'_product_version','5.9.0'),(7416,1036,'_variation_description',''),(7417,1036,'total_sales','0'),(7418,1036,'_tax_status','taxable'),(7419,1036,'_tax_class','parent'),(7420,1036,'_manage_stock','no'),(7421,1036,'_backorders','no'),(7422,1036,'_sold_individually','no'),(7423,1036,'_virtual','no'),(7424,1036,'_downloadable','no'),(7425,1036,'_download_limit','-1'),(7426,1036,'_download_expiry','-1'),(7427,1036,'_stock',NULL),(7428,1036,'_stock_status','instock'),(7429,1036,'_wc_average_rating','0'),(7430,1036,'_wc_review_count','0'),(7431,1036,'attribute_pa_weight','125-gm-bulk-package'),(7432,1036,'_product_version','5.9.0'),(7433,1037,'_variation_description',''),(7434,1037,'total_sales','0'),(7435,1037,'_tax_status','taxable'),(7436,1037,'_tax_class','parent'),(7437,1037,'_manage_stock','no'),(7438,1037,'_backorders','no'),(7439,1037,'_sold_individually','no'),(7440,1037,'_virtual','no'),(7441,1037,'_downloadable','no'),(7442,1037,'_download_limit','-1'),(7443,1037,'_download_expiry','-1'),(7444,1037,'_stock',NULL),(7445,1037,'_stock_status','instock'),(7446,1037,'_wc_average_rating','0'),(7447,1037,'_wc_review_count','0'),(7448,1037,'attribute_pa_weight','13-gm-flat-bluk-package'),(7449,1037,'_product_version','5.9.0'),(7450,1038,'_variation_description',''),(7451,1038,'total_sales','0'),(7452,1038,'_tax_status','taxable'),(7453,1038,'_tax_class','parent'),(7454,1038,'_manage_stock','no'),(7455,1038,'_backorders','no'),(7456,1038,'_sold_individually','no'),(7457,1038,'_virtual','no'),(7458,1038,'_downloadable','no'),(7459,1038,'_download_limit','-1'),(7460,1038,'_download_expiry','-1'),(7461,1038,'_stock',NULL),(7462,1038,'_stock_status','instock'),(7463,1038,'_wc_average_rating','0'),(7464,1038,'_wc_review_count','0'),(7465,1038,'attribute_pa_weight','240-gm-bulk-package'),(7466,1038,'_product_version','5.9.0'),(7467,1039,'_variation_description',''),(7468,1039,'total_sales','0'),(7469,1039,'_tax_status','taxable'),(7470,1039,'_tax_class','parent'),(7471,1039,'_manage_stock','no'),(7472,1039,'_backorders','no'),(7473,1039,'_sold_individually','no'),(7474,1039,'_virtual','no'),(7475,1039,'_downloadable','no'),(7476,1039,'_download_limit','-1'),(7477,1039,'_download_expiry','-1'),(7478,1039,'_stock',NULL),(7479,1039,'_stock_status','instock'),(7480,1039,'_wc_average_rating','0'),(7481,1039,'_wc_review_count','0'),(7482,1039,'attribute_pa_weight','35-gm-bulk-package'),(7483,1039,'_product_version','5.9.0'),(7484,1040,'_variation_description',''),(7485,1040,'total_sales','0'),(7486,1040,'_tax_status','taxable'),(7487,1040,'_tax_class','parent'),(7488,1040,'_manage_stock','no'),(7489,1040,'_backorders','no'),(7490,1040,'_sold_individually','no'),(7491,1040,'_virtual','no'),(7492,1040,'_downloadable','no'),(7493,1040,'_download_limit','-1'),(7494,1040,'_download_expiry','-1'),(7495,1040,'_stock',NULL),(7496,1040,'_stock_status','instock'),(7497,1040,'_wc_average_rating','0'),(7498,1040,'_wc_review_count','0'),(7499,1040,'attribute_pa_weight','hexa'),(7500,1040,'_product_version','5.9.0'),(7501,1041,'_variation_description',''),(7502,1041,'total_sales','0'),(7503,1041,'_tax_status','taxable'),(7504,1041,'_tax_class','parent'),(7505,1041,'_manage_stock','no'),(7506,1041,'_backorders','no'),(7507,1041,'_sold_individually','no'),(7508,1041,'_virtual','no'),(7509,1041,'_downloadable','no'),(7510,1041,'_download_limit','-1'),(7511,1041,'_download_expiry','-1'),(7512,1041,'_stock',NULL),(7513,1041,'_stock_status','instock'),(7514,1041,'_wc_average_rating','0'),(7515,1041,'_wc_review_count','0'),(7516,1041,'attribute_pa_weight','hexa-bulk-package'),(7517,1041,'_product_version','5.9.0'),(7523,1035,'_regular_price','660'),(7524,1035,'_thumbnail_id','0'),(7525,1035,'_price','660'),(7526,1036,'_regular_price','840'),(7527,1036,'_thumbnail_id','0'),(7528,1036,'_price','840'),(7529,1037,'_regular_price','120'),(7530,1037,'_thumbnail_id','0'),(7531,1037,'_price','120'),(7532,1038,'_regular_price','1500'),(7533,1038,'_thumbnail_id','0'),(7534,1038,'_price','1500'),(7535,1039,'_regular_price','300'),(7536,1039,'_thumbnail_id','0'),(7537,1039,'_price','300'),(7538,1040,'_regular_price','123'),(7539,1040,'_thumbnail_id','0'),(7540,1040,'_price','123'),(7541,1041,'_regular_price','144'),(7542,1041,'_thumbnail_id','0'),(7543,1041,'_price','144'),(7604,860,'_price','10'),(7605,860,'_price','25'),(7606,860,'_price','55'),(7607,860,'_price','70'),(7608,860,'_price','120'),(7609,860,'_price','123'),(7610,860,'_price','125'),(7611,860,'_price','144'),(7612,860,'_price','300'),(7613,860,'_price','660'),(7614,860,'_price','840'),(7615,860,'_price','1500'),(7616,1042,'_variation_description',''),(7617,1042,'total_sales','0'),(7618,1042,'_tax_status','taxable'),(7619,1042,'_tax_class','parent'),(7620,1042,'_manage_stock','no'),(7621,1042,'_backorders','no'),(7622,1042,'_sold_individually','no'),(7623,1042,'_virtual','no'),(7624,1042,'_downloadable','no'),(7625,1042,'_download_limit','-1'),(7626,1042,'_download_expiry','-1'),(7627,1042,'_stock',NULL),(7628,1042,'_stock_status','instock'),(7629,1042,'_wc_average_rating','0'),(7630,1042,'_wc_review_count','0'),(7631,1042,'attribute_pa_weight','10-sticks-50-pou-bulk-package'),(7632,1042,'_product_version','5.9.0'),(7633,1043,'_variation_description',''),(7634,1043,'total_sales','0'),(7635,1043,'_tax_status','taxable'),(7636,1043,'_tax_class','parent'),(7637,1043,'_manage_stock','no'),(7638,1043,'_backorders','no'),(7639,1043,'_sold_individually','no'),(7640,1043,'_virtual','no'),(7641,1043,'_downloadable','no'),(7642,1043,'_download_limit','-1'),(7643,1043,'_download_expiry','-1'),(7644,1043,'_stock',NULL),(7645,1043,'_stock_status','instock'),(7646,1043,'_wc_average_rating','0'),(7647,1043,'_wc_review_count','0'),(7648,1043,'attribute_pa_weight','50-sticks-bulk-package'),(7649,1043,'_product_version','5.9.0'),(7650,1044,'_variation_description',''),(7651,1044,'total_sales','0'),(7652,1044,'_tax_status','taxable'),(7653,1044,'_tax_class','parent'),(7654,1044,'_manage_stock','no'),(7655,1044,'_backorders','no'),(7656,1044,'_sold_individually','no'),(7657,1044,'_virtual','no'),(7658,1044,'_downloadable','no'),(7659,1044,'_download_limit','-1'),(7660,1044,'_download_expiry','-1'),(7661,1044,'_stock',NULL),(7662,1044,'_stock_status','instock'),(7663,1044,'_wc_average_rating','0'),(7664,1044,'_wc_review_count','0'),(7665,1044,'attribute_pa_weight','8-sticks-flat-bulk-package'),(7666,1044,'_product_version','5.9.0'),(7667,1045,'_variation_description',''),(7668,1045,'total_sales','0'),(7669,1045,'_tax_status','taxable'),(7670,1045,'_tax_class','parent'),(7671,1045,'_manage_stock','no'),(7672,1045,'_backorders','no'),(7673,1045,'_sold_individually','no'),(7674,1045,'_virtual','no'),(7675,1045,'_downloadable','no'),(7676,1045,'_download_limit','-1'),(7677,1045,'_download_expiry','-1'),(7678,1045,'_stock',NULL),(7679,1045,'_stock_status','instock'),(7680,1045,'_wc_average_rating','0'),(7681,1045,'_wc_review_count','0'),(7682,1045,'attribute_pa_weight','hexa'),(7683,1045,'_product_version','5.9.0'),(7684,1046,'_variation_description',''),(7685,1046,'total_sales','0'),(7686,1046,'_tax_status','taxable'),(7687,1046,'_tax_class','parent'),(7688,1046,'_manage_stock','no'),(7689,1046,'_backorders','no'),(7690,1046,'_sold_individually','no'),(7691,1046,'_virtual','no'),(7692,1046,'_downloadable','no'),(7693,1046,'_download_limit','-1'),(7694,1046,'_download_expiry','-1'),(7695,1046,'_stock',NULL),(7696,1046,'_stock_status','instock'),(7697,1046,'_wc_average_rating','0'),(7698,1046,'_wc_review_count','0'),(7699,1046,'attribute_pa_weight','hexa-bulk-package'),(7700,1046,'_product_version','5.9.0'),(7704,1042,'_regular_price','400'),(7705,1042,'_thumbnail_id','0'),(7706,1042,'_price','400'),(7707,1043,'_regular_price','660'),(7708,1043,'_thumbnail_id','0'),(7709,1043,'_price','660'),(7710,1044,'_regular_price','120'),(7711,1044,'_thumbnail_id','0'),(7712,1044,'_price','120'),(7713,1045,'_regular_price','15'),(7714,1045,'_thumbnail_id','0'),(7715,1045,'_price','15'),(7716,1046,'_regular_price','180'),(7717,1046,'_thumbnail_id','0'),(7718,1046,'_price','180'),(7743,866,'_price','8'),(7744,866,'_price','10'),(7745,866,'_price','15'),(7746,866,'_price','55'),(7747,866,'_price','120'),(7748,866,'_price','180'),(7749,866,'_price','400'),(7750,866,'_price','660'),(7751,1047,'_variation_description',''),(7752,1047,'total_sales','0'),(7753,1047,'_tax_status','taxable'),(7754,1047,'_tax_class','parent'),(7755,1047,'_manage_stock','no'),(7756,1047,'_backorders','no'),(7757,1047,'_sold_individually','no'),(7758,1047,'_virtual','no'),(7759,1047,'_downloadable','no'),(7760,1047,'_download_limit','-1'),(7761,1047,'_download_expiry','-1'),(7762,1047,'_stock',NULL),(7763,1047,'_stock_status','instock'),(7764,1047,'_wc_average_rating','0'),(7765,1047,'_wc_review_count','0'),(7766,1047,'attribute_pa_weight','100-gm-bulk-package'),(7767,1047,'_product_version','5.9.0'),(7768,1048,'_variation_description',''),(7769,1048,'total_sales','0'),(7770,1048,'_tax_status','taxable'),(7771,1048,'_tax_class','parent'),(7772,1048,'_manage_stock','no'),(7773,1048,'_backorders','no'),(7774,1048,'_sold_individually','no'),(7775,1048,'_virtual','no'),(7776,1048,'_downloadable','no'),(7777,1048,'_download_limit','-1'),(7778,1048,'_download_expiry','-1'),(7779,1048,'_stock',NULL),(7780,1048,'_stock_status','instock'),(7781,1048,'_wc_average_rating','0'),(7782,1048,'_wc_review_count','0'),(7783,1048,'attribute_pa_weight','13-gm-flat-bluk-package'),(7784,1048,'_product_version','5.9.0'),(7785,1049,'_variation_description',''),(7786,1049,'total_sales','0'),(7787,1049,'_tax_status','taxable'),(7788,1049,'_tax_class','parent'),(7789,1049,'_manage_stock','no'),(7790,1049,'_backorders','no'),(7791,1049,'_sold_individually','no'),(7792,1049,'_virtual','no'),(7793,1049,'_downloadable','no'),(7794,1049,'_download_limit','-1'),(7795,1049,'_download_expiry','-1'),(7796,1049,'_stock',NULL),(7797,1049,'_stock_status','instock'),(7798,1049,'_wc_average_rating','0'),(7799,1049,'_wc_review_count','0'),(7800,1049,'attribute_pa_weight','35-gm-bulk-package'),(7801,1049,'_product_version','5.9.0'),(7802,1050,'_variation_description',''),(7803,1050,'total_sales','0'),(7804,1050,'_tax_status','taxable'),(7805,1050,'_tax_class','parent'),(7806,1050,'_manage_stock','no'),(7807,1050,'_backorders','no'),(7808,1050,'_sold_individually','no'),(7809,1050,'_virtual','no'),(7810,1050,'_downloadable','no'),(7811,1050,'_download_limit','-1'),(7812,1050,'_download_expiry','-1'),(7813,1050,'_stock',NULL),(7814,1050,'_stock_status','instock'),(7815,1050,'_wc_average_rating','0'),(7816,1050,'_wc_review_count','0'),(7817,1050,'attribute_pa_weight','hexa'),(7818,1050,'_product_version','5.9.0'),(7819,1051,'_variation_description',''),(7820,1051,'total_sales','0'),(7821,1051,'_tax_status','taxable'),(7822,1051,'_tax_class','parent'),(7823,1051,'_manage_stock','no'),(7824,1051,'_backorders','no'),(7825,1051,'_sold_individually','no'),(7826,1051,'_virtual','no'),(7827,1051,'_downloadable','no'),(7828,1051,'_download_limit','-1'),(7829,1051,'_download_expiry','-1'),(7830,1051,'_stock',NULL),(7831,1051,'_stock_status','instock'),(7832,1051,'_wc_average_rating','0'),(7833,1051,'_wc_review_count','0'),(7834,1051,'attribute_pa_weight','hexa-bulk-package'),(7835,1051,'_product_version','5.9.0'),(7839,1047,'_regular_price','660'),(7840,1047,'_thumbnail_id','0'),(7841,1047,'_price','660'),(7842,1048,'_regular_price','120'),(7843,1048,'_thumbnail_id','0'),(7844,1048,'_price','120'),(7845,1049,'_regular_price','300'),(7846,1049,'_thumbnail_id','0'),(7847,1049,'_price','300'),(7848,1050,'_regular_price','13'),(7849,1050,'_thumbnail_id','0'),(7850,1050,'_price','13'),(7851,1051,'_regular_price','156'),(7852,1051,'_thumbnail_id','0'),(7853,1051,'_price','156'),(7854,872,'_price','10'),(7855,872,'_price','13'),(7856,872,'_price','25'),(7857,872,'_price','55'),(7858,872,'_price','120'),(7859,872,'_price','156'),(7860,872,'_price','300'),(7861,872,'_price','660'),(7862,1052,'_variation_description',''),(7863,1052,'total_sales','0'),(7864,1052,'_tax_status','taxable'),(7865,1052,'_tax_class','parent'),(7866,1052,'_manage_stock','no'),(7867,1052,'_backorders','no'),(7868,1052,'_sold_individually','no'),(7869,1052,'_virtual','no'),(7870,1052,'_downloadable','no'),(7871,1052,'_download_limit','-1'),(7872,1052,'_download_expiry','-1'),(7873,1052,'_stock',NULL),(7874,1052,'_stock_status','instock'),(7875,1052,'_wc_average_rating','0'),(7876,1052,'_wc_review_count','0'),(7877,1052,'attribute_pa_weight','100-gm-bulk-package'),(7878,1052,'_product_version','5.9.0'),(7880,1052,'_regular_price','660'),(7881,1052,'_thumbnail_id','0'),(7882,1052,'_price','660'),(7887,878,'_price','55'),(7888,878,'_price','660'),(7889,1053,'_variation_description',''),(7890,1053,'total_sales','0'),(7891,1053,'_tax_status','taxable'),(7892,1053,'_tax_class','parent'),(7893,1053,'_manage_stock','no'),(7894,1053,'_backorders','no'),(7895,1053,'_sold_individually','no'),(7896,1053,'_virtual','no'),(7897,1053,'_downloadable','no'),(7898,1053,'_download_limit','-1'),(7899,1053,'_download_expiry','-1'),(7900,1053,'_stock',NULL),(7901,1053,'_stock_status','instock'),(7902,1053,'_wc_average_rating','0'),(7903,1053,'_wc_review_count','0'),(7904,1053,'attribute_pa_weight','50-sticks-bulk-package'),(7905,1053,'_product_version','5.9.0'),(7907,1053,'_regular_price','960'),(7908,1053,'_thumbnail_id','0'),(7909,1053,'_price','960'),(7916,884,'_price','80'),(7917,884,'_price','960'),(7918,1054,'_variation_description',''),(7919,1054,'total_sales','0'),(7920,1054,'_tax_status','taxable'),(7921,1054,'_tax_class','parent'),(7922,1054,'_manage_stock','no'),(7923,1054,'_backorders','no'),(7924,1054,'_sold_individually','no'),(7925,1054,'_virtual','no'),(7926,1054,'_downloadable','no'),(7927,1054,'_download_limit','-1'),(7928,1054,'_download_expiry','-1'),(7929,1054,'_stock',NULL),(7930,1054,'_stock_status','instock'),(7931,1054,'_wc_average_rating','0'),(7932,1054,'_wc_review_count','0'),(7933,1054,'attribute_pa_weight','100-gm-bulk-package'),(7934,1054,'_product_version','5.9.0'),(7935,1055,'_variation_description',''),(7936,1055,'total_sales','0'),(7937,1055,'_tax_status','taxable'),(7938,1055,'_tax_class','parent'),(7939,1055,'_manage_stock','no'),(7940,1055,'_backorders','no'),(7941,1055,'_sold_individually','no'),(7942,1055,'_virtual','no'),(7943,1055,'_downloadable','no'),(7944,1055,'_download_limit','-1'),(7945,1055,'_download_expiry','-1'),(7946,1055,'_stock',NULL),(7947,1055,'_stock_status','instock'),(7948,1055,'_wc_average_rating','0'),(7949,1055,'_wc_review_count','0'),(7950,1055,'attribute_pa_weight','100-gm-flat-bulk-package'),(7951,1055,'_product_version','5.9.0'),(7952,1056,'_variation_description',''),(7953,1056,'total_sales','0'),(7954,1056,'_tax_status','taxable'),(7955,1056,'_tax_class','parent'),(7956,1056,'_manage_stock','no'),(7957,1056,'_backorders','no'),(7958,1056,'_sold_individually','no'),(7959,1056,'_virtual','no'),(7960,1056,'_downloadable','no'),(7961,1056,'_download_limit','-1'),(7962,1056,'_download_expiry','-1'),(7963,1056,'_stock',NULL),(7964,1056,'_stock_status','instock'),(7965,1056,'_wc_average_rating','0'),(7966,1056,'_wc_review_count','0'),(7967,1056,'attribute_pa_weight','125-gm-bulk-package'),(7968,1056,'_product_version','5.9.0'),(7969,1057,'_variation_description',''),(7970,1057,'total_sales','0'),(7971,1057,'_tax_status','taxable'),(7972,1057,'_tax_class','parent'),(7973,1057,'_manage_stock','no'),(7974,1057,'_backorders','no'),(7975,1057,'_sold_individually','no'),(7976,1057,'_virtual','no'),(7977,1057,'_downloadable','no'),(7978,1057,'_download_limit','-1'),(7979,1057,'_download_expiry','-1'),(7980,1057,'_stock',NULL),(7981,1057,'_stock_status','instock'),(7982,1057,'_wc_average_rating','0'),(7983,1057,'_wc_review_count','0'),(7984,1057,'attribute_pa_weight','13-gm-flat-bluk-package'),(7985,1057,'_product_version','5.9.0'),(7989,1058,'_variation_description',''),(7990,1058,'total_sales','0'),(7991,1058,'_tax_status','taxable'),(7992,1058,'_tax_class','parent'),(7993,1058,'_manage_stock','no'),(7994,1058,'_backorders','no'),(7995,1058,'_sold_individually','no'),(7996,1058,'_virtual','no'),(7997,1058,'_downloadable','no'),(7998,1058,'_download_limit','-1'),(7999,1058,'_download_expiry','-1'),(8000,1058,'_stock',NULL),(8001,1058,'_stock_status','instock'),(8002,1058,'_wc_average_rating','0'),(8003,1058,'_wc_review_count','0'),(8004,1058,'attribute_pa_weight','hexa'),(8005,1058,'_product_version','5.9.0'),(8006,1059,'_variation_description',''),(8007,1059,'total_sales','0'),(8008,1059,'_tax_status','taxable'),(8009,1059,'_tax_class','parent'),(8010,1059,'_manage_stock','no'),(8011,1059,'_backorders','no'),(8012,1059,'_sold_individually','no'),(8013,1059,'_virtual','no'),(8014,1059,'_downloadable','no'),(8015,1059,'_download_limit','-1'),(8016,1059,'_download_expiry','-1'),(8017,1059,'_stock',NULL),(8018,1059,'_stock_status','instock'),(8019,1059,'_wc_average_rating','0'),(8020,1059,'_wc_review_count','0'),(8021,1059,'attribute_pa_weight','hexa-bulk-package'),(8022,1059,'_product_version','5.9.0'),(8026,1056,'_regular_price','840'),(8027,1056,'_thumbnail_id','0'),(8028,1056,'_price','840'),(8041,1060,'_variation_description',''),(8042,1060,'total_sales','0'),(8043,1060,'_tax_status','taxable'),(8044,1060,'_tax_class','parent'),(8045,1060,'_manage_stock','no'),(8046,1060,'_backorders','no'),(8047,1060,'_sold_individually','no'),(8048,1060,'_virtual','no'),(8049,1060,'_downloadable','no'),(8050,1060,'_download_limit','-1'),(8051,1060,'_download_expiry','-1'),(8052,1060,'_stock',NULL),(8053,1060,'_stock_status','instock'),(8054,1060,'_wc_average_rating','0'),(8055,1060,'_wc_review_count','0'),(8056,1060,'attribute_pa_weight','35-gm'),(8057,1060,'_product_version','5.9.0'),(8058,1061,'_variation_description',''),(8059,1061,'total_sales','0'),(8060,1061,'_tax_status','taxable'),(8061,1061,'_tax_class','parent'),(8062,1061,'_manage_stock','no'),(8063,1061,'_backorders','no'),(8064,1061,'_sold_individually','no'),(8065,1061,'_virtual','no'),(8066,1061,'_downloadable','no'),(8067,1061,'_download_limit','-1'),(8068,1061,'_download_expiry','-1'),(8069,1061,'_stock',NULL),(8070,1061,'_stock_status','instock'),(8071,1061,'_wc_average_rating','0'),(8072,1061,'_wc_review_count','0'),(8073,1061,'attribute_pa_weight','35-gm-bulk-package'),(8074,1061,'_product_version','5.9.0'),(8079,1060,'_regular_price','25'),(8080,1060,'_thumbnail_id','0'),(8081,1060,'_price','25'),(8082,1061,'_regular_price','300'),(8083,1061,'_thumbnail_id','0'),(8084,1061,'_price','300'),(8085,1058,'_regular_price','12'),(8086,1058,'_thumbnail_id','0'),(8087,1058,'_price','12'),(8088,1059,'_regular_price','144'),(8089,1059,'_thumbnail_id','0'),(8090,1059,'_price','144'),(8091,1054,'_regular_price','840'),(8092,1054,'_thumbnail_id','0'),(8093,1054,'_price','840'),(8094,1055,'_regular_price','660'),(8095,1055,'_thumbnail_id','0'),(8096,1055,'_price','660'),(8097,1057,'_regular_price','120'),(8098,1057,'_thumbnail_id','0'),(8099,1057,'_price','120'),(8140,892,'_price','10'),(8141,892,'_price','12'),(8142,892,'_price','25'),(8143,892,'_price','50'),(8144,892,'_price','70'),(8145,892,'_price','120'),(8146,892,'_price','144'),(8147,892,'_price','300'),(8148,892,'_price','660'),(8149,892,'_price','840'),(8150,1062,'_variation_description',''),(8151,1062,'total_sales','0'),(8152,1062,'_tax_status','taxable'),(8153,1062,'_tax_class','parent'),(8154,1062,'_manage_stock','no'),(8155,1062,'_backorders','no'),(8156,1062,'_sold_individually','no'),(8157,1062,'_virtual','no'),(8158,1062,'_downloadable','no'),(8159,1062,'_download_limit','-1'),(8160,1062,'_download_expiry','-1'),(8161,1062,'_stock',NULL),(8162,1062,'_stock_status','instock'),(8163,1062,'_wc_average_rating','0'),(8164,1062,'_wc_review_count','0'),(8165,1062,'attribute_pa_weight','100-gm-bulk-package'),(8166,1062,'_product_version','5.9.0'),(8167,1063,'_variation_description',''),(8168,1063,'total_sales','0'),(8169,1063,'_tax_status','taxable'),(8170,1063,'_tax_class','parent'),(8171,1063,'_manage_stock','no'),(8172,1063,'_backorders','no'),(8173,1063,'_sold_individually','no'),(8174,1063,'_virtual','no'),(8175,1063,'_downloadable','no'),(8176,1063,'_download_limit','-1'),(8177,1063,'_download_expiry','-1'),(8178,1063,'_stock',NULL),(8179,1063,'_stock_status','instock'),(8180,1063,'_wc_average_rating','0'),(8181,1063,'_wc_review_count','0'),(8182,1063,'attribute_pa_weight','125-gm-bulk-package'),(8183,1063,'_product_version','5.9.0'),(8184,1064,'_variation_description',''),(8185,1064,'total_sales','0'),(8186,1064,'_tax_status','taxable'),(8187,1064,'_tax_class','parent'),(8188,1064,'_manage_stock','no'),(8189,1064,'_backorders','no'),(8190,1064,'_sold_individually','no'),(8191,1064,'_virtual','no'),(8192,1064,'_downloadable','no'),(8193,1064,'_download_limit','-1'),(8194,1064,'_download_expiry','-1'),(8195,1064,'_stock',NULL),(8196,1064,'_stock_status','instock'),(8197,1064,'_wc_average_rating','0'),(8198,1064,'_wc_review_count','0'),(8199,1064,'attribute_pa_weight','13-gm-flat-bluk-package'),(8200,1064,'_product_version','5.9.0'),(8201,1065,'_variation_description',''),(8202,1065,'total_sales','0'),(8203,1065,'_tax_status','taxable'),(8204,1065,'_tax_class','parent'),(8205,1065,'_manage_stock','no'),(8206,1065,'_backorders','no'),(8207,1065,'_sold_individually','no'),(8208,1065,'_virtual','no'),(8209,1065,'_downloadable','no'),(8210,1065,'_download_limit','-1'),(8211,1065,'_download_expiry','-1'),(8212,1065,'_stock',NULL),(8213,1065,'_stock_status','instock'),(8214,1065,'_wc_average_rating','0'),(8215,1065,'_wc_review_count','0'),(8216,1065,'attribute_pa_weight','240-gm-bulk-package'),(8217,1065,'_product_version','5.9.0'),(8218,1066,'_variation_description',''),(8219,1066,'total_sales','0'),(8220,1066,'_tax_status','taxable'),(8221,1066,'_tax_class','parent'),(8222,1066,'_manage_stock','no'),(8223,1066,'_backorders','no'),(8224,1066,'_sold_individually','no'),(8225,1066,'_virtual','no'),(8226,1066,'_downloadable','no'),(8227,1066,'_download_limit','-1'),(8228,1066,'_download_expiry','-1'),(8229,1066,'_stock',NULL),(8230,1066,'_stock_status','instock'),(8231,1066,'_wc_average_rating','0'),(8232,1066,'_wc_review_count','0'),(8233,1066,'attribute_pa_weight','35-gm-bulk-package'),(8234,1066,'_product_version','5.9.0'),(8235,1067,'_variation_description',''),(8236,1067,'total_sales','0'),(8237,1067,'_tax_status','taxable'),(8238,1067,'_tax_class','parent'),(8239,1067,'_manage_stock','no'),(8240,1067,'_backorders','no'),(8241,1067,'_sold_individually','no'),(8242,1067,'_virtual','no'),(8243,1067,'_downloadable','no'),(8244,1067,'_download_limit','-1'),(8245,1067,'_download_expiry','-1'),(8246,1067,'_stock',NULL),(8247,1067,'_stock_status','instock'),(8248,1067,'_wc_average_rating','0'),(8249,1067,'_wc_review_count','0'),(8250,1067,'attribute_pa_weight','6-sticks-bulk-package'),(8251,1067,'_product_version','5.9.0'),(8252,1068,'_variation_description',''),(8253,1068,'total_sales','0'),(8254,1068,'_tax_status','taxable'),(8255,1068,'_tax_class','parent'),(8256,1068,'_manage_stock','no'),(8257,1068,'_backorders','no'),(8258,1068,'_sold_individually','no'),(8259,1068,'_virtual','no'),(8260,1068,'_downloadable','no'),(8261,1068,'_download_limit','-1'),(8262,1068,'_download_expiry','-1'),(8263,1068,'_stock',NULL),(8264,1068,'_stock_status','instock'),(8265,1068,'_wc_average_rating','0'),(8266,1068,'_wc_review_count','0'),(8267,1068,'attribute_pa_weight','hexa-bulk-package'),(8268,1068,'_product_version','5.9.0'),(8276,1062,'_regular_price','660'),(8277,1062,'_thumbnail_id','0'),(8278,1062,'_price','660'),(8279,1063,'_regular_price','840'),(8280,1063,'_thumbnail_id','0'),(8281,1063,'_price','840'),(8282,1064,'_regular_price','120'),(8283,1064,'_thumbnail_id','0'),(8284,1064,'_price','120'),(8285,1065,'_regular_price','1500'),(8286,1065,'_thumbnail_id','0'),(8287,1065,'_price','1500'),(8288,1066,'_regular_price','300'),(8289,1066,'_thumbnail_id','0'),(8290,1066,'_price','300'),(8291,1067,'_regular_price','60'),(8292,1067,'_thumbnail_id','0'),(8293,1067,'_price','60'),(8294,1068,'_regular_price','144'),(8295,1068,'_thumbnail_id','0'),(8296,1068,'_price','144'),(8325,975,'_price','5'),(8326,975,'_price','10'),(8327,975,'_price','12'),(8328,975,'_price','25'),(8329,975,'_price','55'),(8330,975,'_price','60'),(8331,975,'_price','70'),(8332,975,'_price','120'),(8333,975,'_price','125'),(8334,975,'_price','144'),(8335,975,'_price','300'),(8336,975,'_price','660'),(8337,975,'_price','840'),(8338,975,'_price','1500'),(8356,1070,'_variation_description',''),(8357,1070,'total_sales','0'),(8358,1070,'_tax_status','taxable'),(8359,1070,'_tax_class','parent'),(8360,1070,'_manage_stock','no'),(8361,1070,'_backorders','no'),(8362,1070,'_sold_individually','no'),(8363,1070,'_virtual','no'),(8364,1070,'_downloadable','no'),(8365,1070,'_download_limit','-1'),(8366,1070,'_download_expiry','-1'),(8367,1070,'_stock',NULL),(8368,1070,'_stock_status','instock'),(8369,1070,'_wc_average_rating','0'),(8370,1070,'_wc_review_count','0'),(8371,1070,'attribute_pa_weight','50-sticks-bulk-package'),(8372,1070,'_product_version','5.9.0'),(8373,1071,'_variation_description',''),(8374,1071,'total_sales','0'),(8375,1071,'_tax_status','taxable'),(8376,1071,'_tax_class','parent'),(8377,1071,'_manage_stock','no'),(8378,1071,'_backorders','no'),(8379,1071,'_sold_individually','no'),(8380,1071,'_virtual','no'),(8381,1071,'_downloadable','no'),(8382,1071,'_download_limit','-1'),(8383,1071,'_download_expiry','-1'),(8384,1071,'_stock',NULL),(8385,1071,'_stock_status','instock'),(8386,1071,'_wc_average_rating','0'),(8387,1071,'_wc_review_count','0'),(8388,1071,'attribute_pa_weight','8-sticks-flat-bulk-package'),(8389,1071,'_product_version','5.9.0'),(8390,1072,'_variation_description',''),(8391,1072,'total_sales','0'),(8392,1072,'_tax_status','taxable'),(8393,1072,'_tax_class','parent'),(8394,1072,'_manage_stock','no'),(8395,1072,'_backorders','no'),(8396,1072,'_sold_individually','no'),(8397,1072,'_virtual','no'),(8398,1072,'_downloadable','no'),(8399,1072,'_download_limit','-1'),(8400,1072,'_download_expiry','-1'),(8401,1072,'_stock',NULL),(8402,1072,'_stock_status','instock'),(8403,1072,'_wc_average_rating','0'),(8404,1072,'_wc_review_count','0'),(8405,1072,'attribute_pa_weight','hexa'),(8406,1072,'_product_version','5.9.0'),(8407,1073,'_variation_description',''),(8408,1073,'total_sales','0'),(8409,1073,'_tax_status','taxable'),(8410,1073,'_tax_class','parent'),(8411,1073,'_manage_stock','no'),(8412,1073,'_backorders','no'),(8413,1073,'_sold_individually','no'),(8414,1073,'_virtual','no'),(8415,1073,'_downloadable','no'),(8416,1073,'_download_limit','-1'),(8417,1073,'_download_expiry','-1'),(8418,1073,'_stock',NULL),(8419,1073,'_stock_status','instock'),(8420,1073,'_wc_average_rating','0'),(8421,1073,'_wc_review_count','0'),(8422,1073,'attribute_pa_weight','hexa-bulk-package'),(8423,1073,'_product_version','5.9.0'),(8431,1070,'_regular_price','660'),(8432,1070,'_thumbnail_id','0'),(8433,1070,'_price','660'),(8434,1071,'_regular_price','120'),(8435,1071,'_thumbnail_id','0'),(8436,1071,'_price','120'),(8437,1072,'_regular_price','15'),(8438,1072,'_thumbnail_id','0'),(8439,1072,'_price','15'),(8440,1073,'_regular_price','180'),(8441,1073,'_thumbnail_id','0'),(8442,1073,'_price','180'),(8461,983,'_price','10'),(8462,983,'_price','15'),(8463,983,'_price','55'),(8464,983,'_price','120'),(8465,983,'_price','180'),(8466,983,'_price','660'),(8467,1074,'_variation_description',''),(8468,1074,'total_sales','0'),(8469,1074,'_tax_status','taxable'),(8470,1074,'_tax_class','parent'),(8471,1074,'_manage_stock','no'),(8472,1074,'_backorders','no'),(8473,1074,'_sold_individually','no'),(8474,1074,'_virtual','no'),(8475,1074,'_downloadable','no'),(8476,1074,'_download_limit','-1'),(8477,1074,'_download_expiry','-1'),(8478,1074,'_stock',NULL),(8479,1074,'_stock_status','instock'),(8480,1074,'_wc_average_rating','0'),(8481,1074,'_wc_review_count','0'),(8482,1074,'attribute_pa_weight','150-gm'),(8483,1074,'_product_version','5.9.0'),(8484,1075,'_variation_description',''),(8485,1075,'total_sales','0'),(8486,1075,'_tax_status','taxable'),(8487,1075,'_tax_class','parent'),(8488,1075,'_manage_stock','no'),(8489,1075,'_backorders','no'),(8490,1075,'_sold_individually','no'),(8491,1075,'_virtual','no'),(8492,1075,'_downloadable','no'),(8493,1075,'_download_limit','-1'),(8494,1075,'_download_expiry','-1'),(8495,1075,'_stock',NULL),(8496,1075,'_stock_status','instock'),(8497,1075,'_wc_average_rating','0'),(8498,1075,'_wc_review_count','0'),(8499,1075,'attribute_pa_weight','150-gm-bulk-package'),(8500,1075,'_product_version','5.9.0'),(8501,1076,'_variation_description',''),(8502,1076,'total_sales','0'),(8503,1076,'_tax_status','taxable'),(8504,1076,'_tax_class','parent'),(8505,1076,'_manage_stock','no'),(8506,1076,'_backorders','no'),(8507,1076,'_sold_individually','no'),(8508,1076,'_virtual','no'),(8509,1076,'_downloadable','no'),(8510,1076,'_download_limit','-1'),(8511,1076,'_download_expiry','-1'),(8512,1076,'_stock',NULL),(8513,1076,'_stock_status','instock'),(8514,1076,'_wc_average_rating','0'),(8515,1076,'_wc_review_count','0'),(8516,1076,'attribute_pa_weight','20-gm'),(8517,1076,'_product_version','5.9.0'),(8518,1077,'_variation_description',''),(8519,1077,'total_sales','0'),(8520,1077,'_tax_status','taxable'),(8521,1077,'_tax_class','parent'),(8522,1077,'_manage_stock','no'),(8523,1077,'_backorders','no'),(8524,1077,'_sold_individually','no'),(8525,1077,'_virtual','no'),(8526,1077,'_downloadable','no'),(8527,1077,'_download_limit','-1'),(8528,1077,'_download_expiry','-1'),(8529,1077,'_stock',NULL),(8530,1077,'_stock_status','instock'),(8531,1077,'_wc_average_rating','0'),(8532,1077,'_wc_review_count','0'),(8533,1077,'attribute_pa_weight','20-gm-bulk-package'),(8534,1077,'_product_version','5.9.0'),(8535,1078,'_variation_description',''),(8536,1078,'total_sales','0'),(8537,1078,'_tax_status','taxable'),(8538,1078,'_tax_class','parent'),(8539,1078,'_manage_stock','no'),(8540,1078,'_backorders','no'),(8541,1078,'_sold_individually','no'),(8542,1078,'_virtual','no'),(8543,1078,'_downloadable','no'),(8544,1078,'_download_limit','-1'),(8545,1078,'_download_expiry','-1'),(8546,1078,'_stock',NULL),(8547,1078,'_stock_status','instock'),(8548,1078,'_wc_average_rating','0'),(8549,1078,'_wc_review_count','0'),(8550,1078,'attribute_pa_weight','35-gm-bulk-package'),(8551,1078,'_product_version','5.9.0'),(8553,1074,'_regular_price','70'),(8554,1074,'_thumbnail_id','0'),(8555,1074,'_price','70'),(8556,1075,'_regular_price','840'),(8557,1075,'_thumbnail_id','0'),(8558,1075,'_price','840'),(8559,1076,'_regular_price','13'),(8560,1076,'_thumbnail_id','0'),(8561,1076,'_price','13'),(8562,1077,'_regular_price','156'),(8563,1077,'_thumbnail_id','0'),(8564,1077,'_price','156'),(8565,1078,'_regular_price','300'),(8566,1078,'_thumbnail_id','0'),(8567,1078,'_price','300'),(8574,988,'_price','13'),(8575,988,'_price','25'),(8576,988,'_price','70'),(8577,988,'_price','156'),(8578,988,'_price','300'),(8579,988,'_price','840'),(8580,1079,'_variation_description',''),(8581,1079,'total_sales','0'),(8582,1079,'_tax_status','taxable'),(8583,1079,'_tax_class','parent'),(8584,1079,'_manage_stock','no'),(8585,1079,'_backorders','no'),(8586,1079,'_sold_individually','no'),(8587,1079,'_virtual','no'),(8588,1079,'_downloadable','no'),(8589,1079,'_download_limit','-1'),(8590,1079,'_download_expiry','-1'),(8591,1079,'_stock',NULL),(8592,1079,'_stock_status','instock'),(8593,1079,'_wc_average_rating','0'),(8594,1079,'_wc_review_count','0'),(8595,1079,'attribute_pa_weight','150-gm-bulk-package'),(8596,1079,'_product_version','5.9.0'),(8597,1080,'_variation_description',''),(8598,1080,'total_sales','0'),(8599,1080,'_tax_status','taxable'),(8600,1080,'_tax_class','parent'),(8601,1080,'_manage_stock','no'),(8602,1080,'_backorders','no'),(8603,1080,'_sold_individually','no'),(8604,1080,'_virtual','no'),(8605,1080,'_downloadable','no'),(8606,1080,'_download_limit','-1'),(8607,1080,'_download_expiry','-1'),(8608,1080,'_stock',NULL),(8609,1080,'_stock_status','instock'),(8610,1080,'_wc_average_rating','0'),(8611,1080,'_wc_review_count','0'),(8612,1080,'attribute_pa_weight','20-gm-bulk-package'),(8613,1080,'_product_version','5.9.0'),(8614,1081,'_variation_description',''),(8615,1081,'total_sales','0'),(8616,1081,'_tax_status','taxable'),(8617,1081,'_tax_class','parent'),(8618,1081,'_manage_stock','no'),(8619,1081,'_backorders','no'),(8620,1081,'_sold_individually','no'),(8621,1081,'_virtual','no'),(8622,1081,'_downloadable','no'),(8623,1081,'_download_limit','-1'),(8624,1081,'_download_expiry','-1'),(8625,1081,'_stock',NULL),(8626,1081,'_stock_status','instock'),(8627,1081,'_wc_average_rating','0'),(8628,1081,'_wc_review_count','0'),(8629,1081,'attribute_pa_weight','35-gm-bulk-package'),(8630,1081,'_product_version','5.9.0'),(8634,1079,'_regular_price','840'),(8635,1079,'_thumbnail_id','0'),(8636,1079,'_price','840'),(8637,1080,'_regular_price','156'),(8638,1080,'_thumbnail_id','0'),(8639,1080,'_price','156'),(8640,1081,'_regular_price','300'),(8641,1081,'_thumbnail_id','0'),(8642,1081,'_price','300'),(8649,990,'_price','13'),(8650,990,'_price','25'),(8651,990,'_price','70'),(8652,990,'_price','156'),(8653,990,'_price','300'),(8654,990,'_price','840'),(8655,1082,'_variation_description',''),(8656,1082,'total_sales','0'),(8657,1082,'_tax_status','taxable'),(8658,1082,'_tax_class','parent'),(8659,1082,'_manage_stock','no'),(8660,1082,'_backorders','no'),(8661,1082,'_sold_individually','no'),(8662,1082,'_virtual','no'),(8663,1082,'_downloadable','no'),(8664,1082,'_download_limit','-1'),(8665,1082,'_download_expiry','-1'),(8666,1082,'_stock',NULL),(8667,1082,'_stock_status','instock'),(8668,1082,'_wc_average_rating','0'),(8669,1082,'_wc_review_count','0'),(8670,1082,'attribute_pa_weight','150-gm'),(8671,1082,'_product_version','5.9.0'),(8672,1083,'_variation_description',''),(8673,1083,'total_sales','0'),(8674,1083,'_tax_status','taxable'),(8675,1083,'_tax_class','parent'),(8676,1083,'_manage_stock','no'),(8677,1083,'_backorders','no'),(8678,1083,'_sold_individually','no'),(8679,1083,'_virtual','no'),(8680,1083,'_downloadable','no'),(8681,1083,'_download_limit','-1'),(8682,1083,'_download_expiry','-1'),(8683,1083,'_stock',NULL),(8684,1083,'_stock_status','instock'),(8685,1083,'_wc_average_rating','0'),(8686,1083,'_wc_review_count','0'),(8687,1083,'attribute_pa_weight','150-gm-bulk-package'),(8688,1083,'_product_version','5.9.0'),(8689,1084,'_variation_description',''),(8690,1084,'total_sales','0'),(8691,1084,'_tax_status','taxable'),(8692,1084,'_tax_class','parent'),(8693,1084,'_manage_stock','no'),(8694,1084,'_backorders','no'),(8695,1084,'_sold_individually','no'),(8696,1084,'_virtual','no'),(8697,1084,'_downloadable','no'),(8698,1084,'_download_limit','-1'),(8699,1084,'_download_expiry','-1'),(8700,1084,'_stock',NULL),(8701,1084,'_stock_status','instock'),(8702,1084,'_wc_average_rating','0'),(8703,1084,'_wc_review_count','0'),(8704,1084,'attribute_pa_weight','20-gm-bulk-package'),(8705,1084,'_product_version','5.9.0'),(8706,1085,'_variation_description',''),(8707,1085,'total_sales','0'),(8708,1085,'_tax_status','taxable'),(8709,1085,'_tax_class','parent'),(8710,1085,'_manage_stock','no'),(8711,1085,'_backorders','no'),(8712,1085,'_sold_individually','no'),(8713,1085,'_virtual','no'),(8714,1085,'_downloadable','no'),(8715,1085,'_download_limit','-1'),(8716,1085,'_download_expiry','-1'),(8717,1085,'_stock',NULL),(8718,1085,'_stock_status','instock'),(8719,1085,'_wc_average_rating','0'),(8720,1085,'_wc_review_count','0'),(8721,1085,'attribute_pa_weight','40-gm-bulk-package'),(8722,1085,'_product_version','5.9.0'),(8725,1082,'_regular_price','70'),(8726,1082,'_thumbnail_id','0'),(8727,1082,'_price','70'),(8728,1083,'_regular_price','840'),(8729,1083,'_thumbnail_id','0'),(8730,1083,'_price','840'),(8731,1084,'_regular_price','156'),(8732,1084,'_thumbnail_id','0'),(8733,1084,'_price','156'),(8734,1085,'_regular_price','300'),(8735,1085,'_thumbnail_id','0'),(8736,1085,'_price','300'),(8743,995,'_price','13'),(8744,995,'_price','25'),(8745,995,'_price','70'),(8746,995,'_price','156'),(8747,995,'_price','300'),(8748,995,'_price','840'),(8749,1086,'_variation_description',''),(8750,1086,'total_sales','0'),(8751,1086,'_tax_status','taxable'),(8752,1086,'_tax_class','parent'),(8753,1086,'_manage_stock','no'),(8754,1086,'_backorders','no'),(8755,1086,'_sold_individually','no'),(8756,1086,'_virtual','no'),(8757,1086,'_downloadable','no'),(8758,1086,'_download_limit','-1'),(8759,1086,'_download_expiry','-1'),(8760,1086,'_stock',NULL),(8761,1086,'_stock_status','instock'),(8762,1086,'_wc_average_rating','0'),(8763,1086,'_wc_review_count','0'),(8764,1086,'attribute_pa_weight','10-sticks-tubes-bulk-package'),(8765,1086,'_product_version','5.9.0'),(8766,1087,'_variation_description',''),(8767,1087,'total_sales','0'),(8768,1087,'_tax_status','taxable'),(8769,1087,'_tax_class','parent'),(8770,1087,'_manage_stock','no'),(8771,1087,'_backorders','no'),(8772,1087,'_sold_individually','no'),(8773,1087,'_virtual','no'),(8774,1087,'_downloadable','no'),(8775,1087,'_download_limit','-1'),(8776,1087,'_download_expiry','-1'),(8777,1087,'_stock',NULL),(8778,1087,'_stock_status','instock'),(8779,1087,'_wc_average_rating','0'),(8780,1087,'_wc_review_count','0'),(8781,1087,'attribute_pa_weight','40-sticks-bulk-package'),(8782,1087,'_product_version','5.9.0'),(8785,1086,'_regular_price','600'),(8786,1086,'_thumbnail_id','0'),(8787,1086,'_price','600'),(8788,1087,'_regular_price','1800'),(8789,1087,'_thumbnail_id','0'),(8790,1087,'_price','1800'),(8791,1000,'_price','50'),(8792,1000,'_price','150'),(8793,1000,'_price','600'),(8794,1000,'_price','1800'),(8795,1088,'_variation_description',''),(8796,1088,'total_sales','0'),(8797,1088,'_tax_status','taxable'),(8798,1088,'_tax_class','parent'),(8799,1088,'_manage_stock','no'),(8800,1088,'_backorders','no'),(8801,1088,'_sold_individually','no'),(8802,1088,'_virtual','no'),(8803,1088,'_downloadable','no'),(8804,1088,'_download_limit','-1'),(8805,1088,'_download_expiry','-1'),(8806,1088,'_stock',NULL),(8807,1088,'_stock_status','instock'),(8808,1088,'_wc_average_rating','0'),(8809,1088,'_wc_review_count','0'),(8810,1088,'attribute_pa_weight','20-sticks-bulk-package'),(8811,1088,'_product_version','5.9.0'),(8812,1089,'_variation_description',''),(8813,1089,'total_sales','0'),(8814,1089,'_tax_status','taxable'),(8815,1089,'_tax_class','parent'),(8816,1089,'_manage_stock','no'),(8817,1089,'_backorders','no'),(8818,1089,'_sold_individually','no'),(8819,1089,'_virtual','no'),(8820,1089,'_downloadable','no'),(8821,1089,'_download_limit','-1'),(8822,1089,'_download_expiry','-1'),(8823,1089,'_stock',NULL),(8824,1089,'_stock_status','instock'),(8825,1089,'_wc_average_rating','0'),(8826,1089,'_wc_review_count','0'),(8827,1089,'attribute_pa_weight','40-sticks-bulk-package'),(8828,1089,'_product_version','5.9.0'),(8831,1088,'_regular_price','960'),(8832,1088,'_thumbnail_id','0'),(8833,1088,'_price','960'),(8834,1089,'_regular_price','1800'),(8835,1089,'_thumbnail_id','0'),(8836,1089,'_price','1800'),(8837,1005,'_price','80'),(8838,1005,'_price','150'),(8839,1005,'_price','960'),(8840,1005,'_price','1800'),(8842,1090,'_variation_description',''),(8843,1090,'total_sales','0'),(8844,1090,'_tax_status','taxable'),(8845,1090,'_tax_class','parent'),(8846,1090,'_manage_stock','no'),(8847,1090,'_backorders','no'),(8848,1090,'_sold_individually','no'),(8849,1090,'_virtual','no'),(8850,1090,'_downloadable','no'),(8851,1090,'_download_limit','-1'),(8852,1090,'_download_expiry','-1'),(8853,1090,'_stock',NULL),(8854,1090,'_stock_status','instock'),(8855,1090,'_wc_average_rating','0'),(8856,1090,'_wc_review_count','0'),(8857,1090,'attribute_pa_weight','100-sticks-bulk-package'),(8858,1090,'_product_version','5.9.0'),(8860,1090,'_regular_price','1500'),(8861,1090,'_thumbnail_id','0'),(8862,1090,'_price','1500'),(8863,1009,'_price','125'),(8864,1009,'_price','1500'),(8865,1091,'_variation_description',''),(8866,1091,'total_sales','0'),(8867,1091,'_tax_status','taxable'),(8868,1091,'_tax_class','parent'),(8869,1091,'_manage_stock','no'),(8870,1091,'_backorders','no'),(8871,1091,'_sold_individually','no'),(8872,1091,'_virtual','no'),(8873,1091,'_downloadable','no'),(8874,1091,'_download_limit','-1'),(8875,1091,'_download_expiry','-1'),(8876,1091,'_stock',NULL),(8877,1091,'_stock_status','instock'),(8878,1091,'_wc_average_rating','0'),(8879,1091,'_wc_review_count','0'),(8880,1091,'attribute_pa_weight','100-sticks-bulk-package'),(8881,1091,'_product_version','5.9.0'),(8883,1091,'_regular_price','1800'),(8884,1091,'_thumbnail_id','0'),(8885,1091,'_price','1800'),(8886,1012,'_price','150'),(8887,1012,'_price','1800'),(8889,1092,'_variation_description',''),(8890,1092,'total_sales','0'),(8891,1092,'_tax_status','taxable'),(8892,1092,'_tax_class','parent'),(8893,1092,'_manage_stock','no'),(8894,1092,'_backorders','no'),(8895,1092,'_sold_individually','no'),(8896,1092,'_virtual','no'),(8897,1092,'_downloadable','no'),(8898,1092,'_download_limit','-1'),(8899,1092,'_download_expiry','-1'),(8900,1092,'_stock',NULL),(8901,1092,'_stock_status','instock'),(8902,1092,'_wc_average_rating','0'),(8903,1092,'_wc_review_count','0'),(8904,1092,'attribute_pa_weight','100-sticks-bulk-package'),(8905,1092,'_product_version','5.9.0'),(8907,1092,'_regular_price','1800'),(8908,1092,'_thumbnail_id','0'),(8909,1092,'_price','1800'),(8910,1015,'_price','150'),(8911,1015,'_price','1800'),(8913,1093,'_variation_description',''),(8914,1093,'total_sales','0'),(8915,1093,'_tax_status','taxable'),(8916,1093,'_tax_class','parent'),(8917,1093,'_manage_stock','no'),(8918,1093,'_backorders','no'),(8919,1093,'_sold_individually','no'),(8920,1093,'_virtual','no'),(8921,1093,'_downloadable','no'),(8922,1093,'_download_limit','-1'),(8923,1093,'_download_expiry','-1'),(8924,1093,'_stock',NULL),(8925,1093,'_stock_status','instock'),(8926,1093,'_wc_average_rating','0'),(8927,1093,'_wc_review_count','0'),(8928,1093,'attribute_pa_weight','100-sticks-bulk-package'),(8929,1093,'_product_version','5.9.0'),(8931,1093,'_regular_price','1500'),(8932,1093,'_thumbnail_id','0'),(8933,1093,'_price','1500'),(8936,1094,'_variation_description',''),(8937,1094,'total_sales','0'),(8938,1094,'_tax_status','taxable'),(8939,1094,'_tax_class','parent'),(8940,1094,'_manage_stock','no'),(8941,1094,'_backorders','no'),(8942,1094,'_sold_individually','no'),(8943,1094,'_virtual','no'),(8944,1094,'_downloadable','no'),(8945,1094,'_download_limit','-1'),(8946,1094,'_download_expiry','-1'),(8947,1094,'_stock',NULL),(8948,1094,'_stock_status','instock'),(8949,1094,'_wc_average_rating','0'),(8950,1094,'_wc_review_count','0'),(8951,1094,'attribute_pa_weight','100-sticks-bulk-package'),(8952,1094,'_product_version','5.9.0'),(8954,1094,'_regular_price','1800'),(8955,1094,'_thumbnail_id','0'),(8956,1094,'_price','1800'),(8957,1023,'_price','150'),(8958,1023,'_price','1800'),(8959,1019,'_price','125'),(8960,1019,'_price','1500'),(8961,515,'_wp_old_date','2021-12-16'),(8962,516,'_wp_old_date','2021-12-16'),(8963,517,'_wp_old_date','2021-12-16'),(8964,909,'_wp_old_date','2021-12-16'),(8965,910,'_wp_old_date','2021-12-16'),(8966,914,'_wp_old_date','2021-12-16'),(8967,519,'_wp_old_date','2021-12-16'),(8968,915,'_wp_old_date','2021-12-16'),(8969,916,'_wp_old_date','2021-12-16'),(8970,523,'_wp_old_date','2021-12-16'),(8971,522,'_wp_old_date','2021-12-16'),(8972,999,'_product_attributes','a:1:{s:9:\"pa_weight\";a:6:{s:4:\"name\";s:9:\"pa_weight\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:0;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(8973,1095,'_variation_description',''),(8974,1095,'total_sales','0'),(8975,1095,'_tax_status','taxable'),(8976,1095,'_tax_class','parent'),(8977,1095,'_manage_stock','no'),(8978,1095,'_backorders','no'),(8979,1095,'_sold_individually','no'),(8980,1095,'_virtual','no'),(8981,1095,'_downloadable','no'),(8982,1095,'_download_limit','-1'),(8983,1095,'_download_expiry','-1'),(8984,1095,'_stock',NULL),(8985,1095,'_stock_status','instock'),(8986,1095,'_wc_average_rating','0'),(8987,1095,'_wc_review_count','0'),(8988,1095,'attribute_pa_weight','10-sticks-copper'),(8989,1095,'_product_version','5.9.0'),(8990,1096,'_variation_description',''),(8991,1096,'total_sales','0'),(8992,1096,'_tax_status','taxable'),(8993,1096,'_tax_class','parent'),(8994,1096,'_manage_stock','no'),(8995,1096,'_backorders','no'),(8996,1096,'_sold_individually','no'),(8997,1096,'_virtual','no'),(8998,1096,'_downloadable','no'),(8999,1096,'_download_limit','-1'),(9000,1096,'_download_expiry','-1'),(9001,1096,'_stock',NULL),(9002,1096,'_stock_status','instock'),(9003,1096,'_wc_average_rating','0'),(9004,1096,'_wc_review_count','0'),(9005,1096,'attribute_pa_weight','10-sticks-copper-bulk-package'),(9006,1096,'_product_version','5.9.0'),(9007,1097,'_variation_description',''),(9008,1097,'total_sales','0'),(9009,1097,'_tax_status','taxable'),(9010,1097,'_tax_class','parent'),(9011,1097,'_manage_stock','no'),(9012,1097,'_backorders','no'),(9013,1097,'_sold_individually','no'),(9014,1097,'_virtual','no'),(9015,1097,'_downloadable','no'),(9016,1097,'_download_limit','-1'),(9017,1097,'_download_expiry','-1'),(9018,1097,'_stock',NULL),(9019,1097,'_stock_status','instock'),(9020,1097,'_wc_average_rating','0'),(9021,1097,'_wc_review_count','0'),(9022,1097,'attribute_pa_weight','20-sticks'),(9023,1097,'_product_version','5.9.0'),(9024,1098,'_variation_description',''),(9025,1098,'total_sales','0'),(9026,1098,'_tax_status','taxable'),(9027,1098,'_tax_class','parent'),(9028,1098,'_manage_stock','no'),(9029,1098,'_backorders','no'),(9030,1098,'_sold_individually','no'),(9031,1098,'_virtual','no'),(9032,1098,'_downloadable','no'),(9033,1098,'_download_limit','-1'),(9034,1098,'_download_expiry','-1'),(9035,1098,'_stock',NULL),(9036,1098,'_stock_status','instock'),(9037,1098,'_wc_average_rating','0'),(9038,1098,'_wc_review_count','0'),(9039,1098,'attribute_pa_weight','20-sticks-bulk-package'),(9040,1098,'_product_version','5.9.0'),(9041,1095,'_regular_price','40'),(9042,1095,'_thumbnail_id','0'),(9043,1095,'_price','40'),(9044,1096,'_regular_price','480'),(9045,1096,'_thumbnail_id','0'),(9046,1096,'_price','480'),(9047,1097,'_regular_price','80'),(9048,1097,'_thumbnail_id','0'),(9049,1097,'_price','80'),(9050,1098,'_regular_price','960'),(9051,1098,'_thumbnail_id','0'),(9052,1098,'_price','960'),(9053,999,'_price','40'),(9054,999,'_price','80'),(9055,999,'_price','480'),(9056,999,'_price','960'),(9059,1101,'_wp_attached_file','2022/01/Pure-Jasmine-scaled.jpg'),(9060,1101,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2048;s:4:\"file\";s:31:\"2022/01/Pure-Jasmine-scaled.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Pure-Jasmine-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Pure-Jasmine-1000x800.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Pure-Jasmine-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Pure-Jasmine-768x614.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"Pure-Jasmine-1536x1229.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1229;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"Pure-Jasmine.jpg\";}'),(9061,1102,'_wp_attached_file','2022/01/Pure-Jasmine-1-scaled.jpg'),(9062,988,'_thumbnail_id','1101'),(9063,1102,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2048;s:4:\"file\";s:33:\"2022/01/Pure-Jasmine-1-scaled.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Pure-Jasmine-1-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Pure-Jasmine-1-1000x800.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Pure-Jasmine-1-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Pure-Jasmine-1-768x614.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"Pure-Jasmine-1-1536x1229.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1229;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:18:\"Pure-Jasmine-1.jpg\";}'),(9064,1104,'_wp_attached_file','2022/01/padmini-logo.png'),(9065,1104,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1585;s:6:\"height\";i:2806;s:4:\"file\";s:24:\"2022/01/padmini-logo.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"padmini-logo-226x400.png\";s:5:\"width\";i:226;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"padmini-logo-452x800.png\";s:5:\"width\";i:452;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"padmini-logo-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"padmini-logo-768x1360.png\";s:5:\"width\";i:768;s:6:\"height\";i:1360;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"padmini-logo-868x1536.png\";s:5:\"width\";i:868;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:26:\"padmini-logo-1157x2048.png\";s:5:\"width\";i:1157;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"yith-woocompare-image\";a:4:{s:4:\"file\";s:24:\"padmini-logo-220x154.png\";s:5:\"width\";i:220;s:6:\"height\";i:154;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"padmini-logo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"padmini-logo-600x1062.png\";s:5:\"width\";i:600;s:6:\"height\";i:1062;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"padmini-logo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"padmini-logo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"padmini-logo-600x1062.png\";s:5:\"width\";i:600;s:6:\"height\";i:1062;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"padmini-logo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9067,1107,'_order_key','wc_order_f0mbScXPaBxZm'),(9068,1107,'_customer_user','1'),(9069,1107,'_payment_method','bacs'),(9070,1107,'_payment_method_title','Direct bank transfer'),(9071,1107,'_customer_ip_address','111.92.73.39'),(9072,1107,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36'),(9073,1107,'_created_via','checkout'),(9074,1107,'_cart_hash','3ffc2587b19f1e3c8e77ec686392ba30'),(9075,1107,'_billing_first_name','sonu'),(9076,1107,'_billing_email','sonuvalakam@gmail.com'),(9077,1107,'_order_currency','INR'),(9078,1107,'_cart_discount','0'),(9079,1107,'_cart_discount_tax','0'),(9080,1107,'_order_shipping','0'),(9081,1107,'_order_shipping_tax','0'),(9082,1107,'_order_tax','0'),(9083,1107,'_order_total','8.00'),(9084,1107,'_order_version','5.9.0'),(9085,1107,'_prices_include_tax','no'),(9086,1107,'_billing_address_index','sonu         sonuvalakam@gmail.com '),(9087,1107,'_shipping_address_index','         '),(9088,1107,'is_vat_exempt','no'),(9089,1107,'GST Number','356435634563456'),(9090,1107,'_recorded_sales','yes'),(9091,1107,'_recorded_coupon_usage_counts','yes'),(9092,1107,'_order_stock_reduced','yes'),(9093,1107,'_new_order_email_sent','true'),(9094,1107,'_woocs_order_rate','1'),(9095,1107,'_woocs_order_base_currency','INR'),(9096,1107,'_woocs_order_currency_changed_mannualy','0'),(9097,1107,'_edit_lock','1642081946:1'),(9098,1107,'_edit_last','1'),(9099,1107,'_date_completed','1642082019'),(9100,1107,'_date_paid','1642082019'),(9101,1107,'_paid_date','2022-01-13 13:53:39'),(9102,1107,'_completed_date','2022-01-13 13:53:39'),(9103,1107,'_download_permissions_granted','yes'),(9111,99,'_oembed_97120786a5d618011442f73be26e093f','<iframe title=\"Most beautiful drone videos ever filmed 2015  â€“ Our planet is amazing\" width=\"1020\" height=\"574\" src=\"https://www.youtube.com/embed/AoPiLg8DZ3A?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(9112,99,'_oembed_time_97120786a5d618011442f73be26e093f','1648820395'),(9113,1114,'_wp_attached_file','2022/04/WhatsApp-Video-2022-04-01-at-10.52.47-AM.mp4'),(9114,1114,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:4887199;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:28;s:16:\"length_formatted\";s:4:\"0:28\";s:5:\"width\";i:848;s:6:\"height\";i:480;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:-2082844800;}');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_posts`
--

DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=1118 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_posts`
--

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (2,1,'2021-11-30 11:28:52','2021-11-30 11:28:52','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://demoweblinks.in/padmini/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2021-11-30 11:28:52','2021-11-30 11:28:52','',0,'http://demoweblinks.in/padmini/?page_id=2',0,'page','',0),(3,1,'2021-11-30 11:28:52','2021-11-30 11:28:52','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: http://demoweblinks.in/padmini.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2021-11-30 11:28:52','2021-11-30 11:28:52','',0,'http://demoweblinks.in/padmini/?page_id=3',0,'page','',0),(6,1,'2021-11-30 11:54:16','2021-11-30 11:54:16','<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]\n[_site_title] \"[your-subject]\"\n[_site_title] <sonuvalakam@gmail.com>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[_site_admin_email]\nReply-To: [your-email]\n\n0\n0\n\n[_site_title] \"[your-subject]\"\n[_site_title] <sonuvalakam@gmail.com>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[your-email]\nReply-To: [_site_admin_email]\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2021-11-30 11:54:16','2021-11-30 11:54:16','',0,'http://demoweblinks.in/padmini/?post_type=wpcf7_contact_form&p=6',0,'wpcf7_contact_form','',0),(7,1,'2021-11-30 11:56:48','2021-11-30 11:56:48','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2021-11-30 11:56:48','2021-11-30 11:56:48','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/11/woocommerce-placeholder.png',0,'attachment','image/png',0),(8,1,'2021-11-30 11:56:50','2021-11-30 11:56:50','','Shop','','publish','closed','closed','','shop','','','2021-12-06 05:48:20','2021-12-06 05:48:20','',0,'http://demoweblinks.in/padmini/shop/',0,'page','',0),(9,1,'2021-11-30 11:56:50','2021-11-30 11:56:50','<!-- wp:shortcode -->[woocommerce_cart]<!-- /wp:shortcode -->','Cart','','publish','closed','closed','','cart','','','2021-11-30 11:56:50','2021-11-30 11:56:50','',0,'http://demoweblinks.in/padmini/cart/',0,'page','',0),(10,1,'2021-11-30 11:56:51','2021-11-30 11:56:51','<!-- wp:shortcode -->[woocommerce_checkout]<!-- /wp:shortcode -->','Checkout','','publish','closed','closed','','checkout','','','2021-11-30 11:56:51','2021-11-30 11:56:51','',0,'http://demoweblinks.in/padmini/checkout/',0,'page','',0),(11,1,'2021-11-30 11:56:51','2021-11-30 11:56:51','<!-- wp:shortcode -->[woocommerce_my_account]<!-- /wp:shortcode -->','My account','','publish','closed','closed','','my-account','','','2021-11-30 11:56:51','2021-11-30 11:56:51','',0,'http://demoweblinks.in/padmini/my-account/',0,'page','',0),(12,1,'2021-11-30 11:56:51','0000-00-00 00:00:00','<!-- wp:paragraph -->\n<p><b>This is a sample page.</b></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h3>Overview</h3>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our refund and returns policy lasts 30 days. If 30 days have passed since your purchase, we canâ€™t offer you a full refund or exchange.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To be eligible for a return, your item must be unused and in the same condition that you received it. It must also be in the original packaging.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Several types of goods are exempt from being returned. Perishable goods such as food, flowers, newspapers or magazines cannot be returned. We also do not accept products that are intimate or sanitary goods, hazardous materials, or flammable liquids or gases.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additional non-returnable items:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul>\n<li>Gift cards</li>\n<li>Downloadable software products</li>\n<li>Some health and personal care items</li>\n</ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>To complete your return, we require a receipt or proof of purchase.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Please do not send your purchase back to the manufacturer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There are certain situations where only partial refunds are granted:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul>\n<li>Book with obvious signs of use</li>\n<li>CD, DVD, VHS tape, software, video game, cassette tape, or vinyl record that has been opened.</li>\n<li>Any item not in its original condition, is damaged or missing parts for reasons not due to our error.</li>\n<li>Any item that is returned more than 30 days after delivery</li>\n</ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<h2>Refunds</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Once your return is received and inspected, we will send you an email to notify you that we have received your returned item. We will also notify you of the approval or rejection of your refund.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are approved, then your refund will be processed, and a credit will automatically be applied to your credit card or original method of payment, within a certain amount of days.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<b>Late or missing refunds</b>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you havenâ€™t received a refund yet, first check your bank account again.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then contact your credit card company, it may take some time before your refund is officially posted.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Next contact your bank. There is often some processing time before a refund is posted.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If youâ€™ve done all of this and you still have not received your refund yet, please contact us at {email address}.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<b>Sale items</b>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Only regular priced items may be refunded. Sale items cannot be refunded.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h2>Exchanges</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We only replace items if they are defective or damaged. If you need to exchange it for the same item, send us an email at {email address} and send your item to: {physical address}.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h2>Gifts</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If the item was marked as a gift when purchased and shipped directly to you, youâ€™ll receive a gift credit for the value of your return. Once the returned item is received, a gift certificate will be mailed to you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If the item wasnâ€™t marked as a gift when purchased, or the gift giver had the order shipped to themselves to give to you later, we will send a refund to the gift giver and they will find out about your return.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h2>Shipping returns</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To return your product, you should mail your product to: {physical address}.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You will be responsible for paying for your own shipping costs for returning your item. Shipping costs are non-refundable. If you receive a refund, the cost of return shipping will be deducted from your refund.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Depending on where you live, the time it may take for your exchanged product to reach you may vary.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are returning more expensive items, you may consider using a trackable shipping service or purchasing shipping insurance. We donâ€™t guarantee that we will receive your returned item.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h2>Need help?</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Contact us at {email} for questions related to refunds and returns.</p>\n<!-- /wp:paragraph -->','Refund and Returns Policy','','draft','closed','closed','','refund_returns','','','2021-11-30 11:56:51','0000-00-00 00:00:00','',0,'http://demoweblinks.in/padmini/?page_id=12',0,'page','',0),(13,1,'2016-08-29 14:03:10','2016-08-29 14:03:10','<div class=\"form-flat\">\r\n[text* your-name placeholder \"Your Name (required)\"]\r\n\r\n[email* your-email placeholder \"Your Email (required)\"] </p>\r\n\r\n[textarea your-message placeholder \"Your Message (required)\"] </p>\r\n\r\n[submit class:button primary \"Submit\"]\r\n</div>\nFlatsome \"[your-subject]\"\n[your-name] <wordpress@flatsome.dev>\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Flatsome (http://flatsome.dev)\nemail@mail.com\nReply-To: [your-email]\n\n\n\n\nFlatsome \"[your-subject]\"\nFlatsome <wordpress@flatsome.dev>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Flatsome (http://flatsome.dev)\n[your-email]\nReply-To: email@mail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact Form Flat','','publish','closed','closed','','contact-form-outline','','','2016-08-29 14:03:10','2016-08-29 14:03:10','',0,'http://flatsome.dev/?post_type=wpcf7_contact_form&amp;p=8979',0,'wpcf7_contact_form','',0),(14,1,'2016-08-25 13:56:17','2016-08-25 13:56:17','<div class=\"form-flat\">\r\n	[email* your-email placeholder \"Your Email (required)\"]\r\n\r\n	[submit class:button primary \"Sign Up\"]\r\n</div>\nNew signup!\nFlatsome Theme <mail@flatsome.dev>\nNew signup: [your-email]\n[your-email]\n\n\n\n\n\nFlatsome \"[your-subject]\"\nFlatsome <wordpress@flatsome.dev>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Flatsome (http://flatsome.dev)\n[your-email]\nReply-To: email@mail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Newsletter Vertical','','publish','closed','closed','','newsletter-horizontal','','','2016-08-25 13:56:17','2016-08-25 13:56:17','',0,'http://flatsome.dev/?post_type=wpcf7_contact_form&amp;p=8787',0,'wpcf7_contact_form','',0),(15,1,'2016-04-04 11:38:11','2016-04-04 11:38:11','<div class=\"flex-row form-flat medium-flex-wrap\">\r\n<div class=\"flex-col flex-grow\">\r\n	[email* your-email placeholder \"Email ID\"]\r\n</div>\r\n<div class=\"flex-col ml-half\">\r\n	[submit class:button-newsletter secondary \"Submit\"]\r\n</div>\r\n</div>\n1\n\n[your-name] <[your-email]>\nsonus90@outlook.com\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Newsletter Horizontal','','publish','closed','closed','','contact-form','','','2021-12-03 04:56:53','2021-12-03 04:56:53','',0,'http://flatsome.dev/?post_type=wpcf7_contact_form&#038;p=7042',0,'wpcf7_contact_form','',0),(16,1,'2016-04-04 11:33:38','2016-04-04 11:33:38','<label>Your Name (required)</label>\r\n[text* your-name]\r\n\r\n<label>Your Email (required)</label>\r\n[email*  your-email] </p>\r\n\r\n<label>Your Message (required)</label>\r\n[textarea your-message] </p>\r\n\r\n[submit class:button primary \"Submit\"]\nNew Message!\nmail@flatsome.dev\nMessage:\r\n[your-message]\nemail@mail.com\n\n\n1\n\n\nFlatsome \"[your-subject]\"\nFlatsome <wordpress@flatsome.dev>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Flatsome (http://flatsome.dev)\n[your-email]\nReply-To: email@mail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact form','','publish','closed','closed','','contact-form-1-2','','','2016-04-04 11:33:38','2016-04-04 11:33:38','',0,'http://flatsome.dev/?post_type=wpcf7_contact_form&amp;p=7041',0,'wpcf7_contact_form','',0),(17,1,'2016-08-09 13:43:25','2016-08-09 13:43:25','','Dummy Image 1','','inherit','open','closed','','dummy-image-1','','','2016-08-09 13:43:25','2016-08-09 13:43:25','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2016/08/dummy-1.jpg',0,'attachment','image/jpeg',0),(18,1,'2016-08-09 13:43:25','2016-08-09 13:43:25','','Dummy Image 2','','inherit','open','closed','','dummy-image-2','','','2016-08-09 13:43:25','2016-08-09 13:43:25','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2016/08/dummy-2.jpg',0,'attachment','image/jpeg',0),(19,1,'2016-08-09 13:43:25','2016-08-09 13:43:25','','Product Dummy Image','','inherit','open','closed','','prod-dummy-image-1','','','2016-08-09 13:43:25','2016-08-09 13:43:25','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2016/08/dummy-prod-1.jpg',0,'attachment','image/jpeg',0),(20,1,'2015-11-19 10:26:13','2015-11-19 10:26:13','<!-- wp:html -->\n<p class=\"lead\">Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!</p>\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.\n<blockquote>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</blockquote>\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.\n<!-- /wp:html -->','Welcome to Flatsome','','publish','open','open','','welcome-to-flatsome','','','2021-12-03 09:49:44','2021-12-03 09:49:44','',0,'http://flatsome.dev/?p=1',0,'post','',0),(21,1,'2015-10-13 21:13:41','2015-10-13 21:13:41','<!-- wp:html -->\nLorem ipsum dolor sit amet, consectetur adipiscing elit. In sed vulputate massa. Fusce ante magna, iaculis ut purus ut, facilisis ultrices nibh. Quisque commodo nunc eget tortor dapibus, et tristique magna convallis. Phasellus egestas nunc eu venenatis vehicula. Phasellus et magna nulla. Proin ante nunc, mollis a lectus ac, volutpat placerat ante. Vestibulum sit amet magna sit amet nunc faucibus mollis. Aliquam vel lacinia purus, id tristique ipsum. Quisque vitae nibh ut libero vulputate ornare quis in risus. Nam sodales justo orci, a bibendum risus tincidunt id. Etiam hendrerit, metus in volutpat tempus, neque libero viverra lorem, ac tristique orci augue eu metus. Aenean elementum nisi vitae justo adipiscing gravida sit amet et risus. Suspendisse dapibus elementum quam, vel semper mi tempus ac.\n\n[gallery columns=\"4\" link=\"file\" size=\"large\" ids=\"\"]\n<!-- /wp:html -->','Just another post with A Gallery','','publish','open','open','','velkommen-til-bloggen-min','','','2021-12-03 09:50:32','2021-12-03 09:50:32','',0,'http://demoweblinks.in:8888/flatsome-next/?p=5',0,'post','',0),(22,1,'2015-10-13 19:28:03','2015-10-13 19:28:03','<!-- wp:html -->\nLorem ipsum dolor sit amet, consectetur adipiscing elit. In sed vulputate massa. Fusce ante magna, iaculis ut purus ut, facilisis ultrices nibh. Quisque commodo nunc eget tortor dapibus, et tristique magna convallis. Phasellus egestas nunc eu venenatis vehicula. Phasellus et magna nulla. Proin ante nunc, mollis a lectus ac, volutpat placerat ante. Vestibulum sit amet magna sit amet nunc faucibus mollis. Aliquam vel lacinia purus, id tristique ipsum. Quisque vitae nibh ut libero vulputate ornare quis in risus. Nam sodales justo orci, a bibendum risus tincidunt id. Etiam hendrerit, metus in volutpat tempus, neque libero viverra lorem, ac tristique orci augue eu metus. Aenean elementum nisi vitae justo adipiscing gravida sit amet et risus. Suspendisse dapibus elementum quam, vel semper mi tempus ac.\n\n[gallery columns=\"4\" link=\"file\" size=\"large\" ids=\"\"]\n<!-- /wp:html -->','A Simple Blog Post','','publish','open','open','','a-simple-blog-post','','','2021-12-03 09:52:39','2021-12-03 09:52:39','',0,'http://demoweblinks.in:8888/flatsome-next/?p=1',0,'post','',0),(23,1,'2014-01-01 16:47:44','2014-01-01 16:47:44','Lorem ipsum dolor sit amet, consectetur adipiscing elit. In sed vulputate massa. Fusce ante magna, iaculis ut purus ut, facilisis ultrices nibh. Quisque commodo nunc eget tortor dapibus, et tristique magna convallis. Phasellus egestas nunc eu venenatis vehicula. Phasellus et magna nulla. Proin ante nunc, mollis a lectus ac, volutpat placerat ante. Vestibulum sit amet magna sit amet nunc faucibus mollis. Aliquam vel lacinia purus, id tristique ipsum. Quisque vitae nibh ut libero vulputate ornare quis in risus. Nam sodales justo orci, a bibendum risus tincidunt id. Etiam hendrerit, metus in volutpat tempus.\r\n\r\nNeque libero viverra lorem, ac tristique orci augue eu metus. Aenean elementum nisi vitae justo adipiscing gravida sit amet et risus. Suspendisse dapibus elementum quam, vel semper mi tempus ac.','A Video Blog Post','','publish','open','open','','a-video-blog-post','','','2014-01-01 16:47:44','2014-01-01 16:47:44','',0,'http://demoweblinks.in:8888/test/?p=483',0,'post','',0),(24,1,'2013-12-30 16:50:40','2013-12-30 16:50:40','Lorem ipsum dolor sit amet, consectetur adipiscing elit. In sed vulputate massa. Fusce ante magna, iaculis ut purus ut, facilisis ultrices nibh. Quisque commodo nunc eget tortor dapibus, et tristique magna convallis. Phasellus egestas nunc eu venenatis vehicula. Phasellus et magna nulla. Proin ante nunc, mollis a lectus ac, volutpat placerat ante. Vestibulum sit amet magna sit amet nunc faucibus mollis. Aliquam vel lacinia purus, id tristique ipsum. Quisque vitae nibh ut libero vulputate ornare quis in risus. Nam sodales justo orci, a bibendum risus tincidunt id. Etiam hendrerit, metus in volutpat tempus, neque libero viverra lorem, ac tristique orci augue eu metus. Aenean elementum nisi vitae justo adipiscing gravida sit amet et risus. Suspendisse dapibus elementum quam, vel semper mi tempus ac.\r\n\r\n[gallery link=\"file\" columns=\"4\" ids=\"\"]\r\n\r\nNam at nisi risus. Proin pretium, dolor vel venenatis suscipit, dui nunc tincidunt lectus, ac placerat felis dui in justo. Aliquam orci velit, facilisis in facilisis non, scelerisque in massa. Integer scelerisque odio nec eros sodales laoreet. Sed sed odio tellus. In tristique felis ac facilisis tempor. Nunc non enim in dolor congue pulvinar sed sed nisi. Mauris viverra convallis feugiat. Nam at mauris laoreet, dictum leo at, tristique mi. Aenean pellentesque justo vel diam elementum iaculis. Nam lobortis cursus vestibulum. Nulla feugiat mauris felis, auctor pretium dui euismod in.\r\n\r\nVestibulum et enim vitae lectus malesuada aliquam vitae non mi. Suspendisse tellus eros, ultricies nec lorem feugiat, pharetra auctor dui. Suspendisse placerat neque leo, nec commodo eros ultrices vel. Fusce elit libero, aliquam quis libero non, consectetur accumsan est. Proin tempus mauris id cursus posuere. Sed et rutrum felis, vel aliquet ante. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque neque tellus, condimentum non eros non, consectetur auctor lacus. Curabitur malesuada odio eget elit egestas porttitor.','Just a cool blog post with Images','','publish','open','open','','just-a-cool-blog-post-with-images','','','2013-12-30 16:50:40','2013-12-30 16:50:40','',0,'http://demoweblinks.in:8888/test/?p=485',0,'post','',0),(25,1,'2013-12-16 20:32:19','2013-12-16 20:32:19','Lorem ipsum dolor sit amet, consectetur adipiscing elit. In sed vulputate massa. Fusce ante magna, iaculis ut purus ut, facilisis ultrices nibh. Quisque commodo nunc eget tortor dapibus, et tristique magna convallis. Phasellus egestas nunc eu venenatis vehicula. Phasellus et magna nulla. Proin ante nunc, mollis a lectus ac, volutpat placerat ante. Vestibulum sit amet magna sit amet nunc faucibus mollis. Aliquam vel lacinia purus, id tristique ipsum. Quisque vitae nibh ut libero vulputate ornare quis in risus. Nam sodales justo orci, a bibendum risus tincidunt id. Etiam hendrerit, metus in volutpat tempus, neque libero viverra lorem, ac tristique orci augue eu metus. Aenean elementum nisi vitae justo adipiscing gravida sit amet et risus. Suspendisse dapibus elementum quam, vel semper mi tempus ac.\n\n[gallery link=\"file\" columns=\"4\" ids=\"\"]\n\nNam at nisi risus. Proin pretium, dolor vel venenatis suscipit, dui nunc tincidunt lectus, ac placerat felis dui in justo. Aliquam orci velit, facilisis in facilisis non, scelerisque in massa. Integer scelerisque odio nec eros sodales laoreet. Sed sed odio tellus. In tristique felis ac facilisis tempor. Nunc non enim in dolor congue pulvinar sed sed nisi. Mauris viverra convallis feugiat. Nam at mauris laoreet, dictum leo at, tristique mi. Aenean pellentesque justo vel diam elementum iaculis. Nam lobortis cursus vestibulum. Nulla feugiat mauris felis, auctor pretium dui euismod in.\n\nVestibulum et enim vitae lectus malesuada aliquam vitae non mi. Suspendisse tellus eros, ultricies nec lorem feugiat, pharetra auctor dui. Suspendisse placerat neque leo, nec commodo eros ultrices vel. Fusce elit libero, aliquam quis libero non, consectetur accumsan est. Proin tempus mauris id cursus posuere. Sed et rutrum felis, vel aliquet ante. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque neque tellus, condimentum non eros non, consectetur auctor lacus. Curabitur malesuada odio eget elit egestas porttitor.','Another post with A Gallery','','publish','open','open','','just-a-cool-blog-post-with-a-gallery-2','','','2013-12-16 20:32:19','2013-12-16 20:32:19','',0,'http://demoweblinks.in:8888/test/?p=2009',0,'post','',0),(26,1,'2013-08-29 14:15:41','2013-08-29 14:15:41','Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. \r\n \r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.','New Client Landed','','publish','open','open','','new-client-landed','','','2013-08-29 14:15:41','2013-08-29 14:15:41','',0,'http://flatsome.dev/?p=8984',0,'post','',0),(27,1,'2013-08-11 16:35:51','2013-08-11 16:35:51','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam sed eleifend risus, sit amet porttitor massa. Ut vulputate felis at mauris ultrices sodales. Phasellus in leo ornare, vulputate purus eget, iaculis tellus. Donec sed laoreet orci. Praesent faucibus feugiat velit a iaculis. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Morbi turpis mauris, consequat laoreet metus non, dictum fringilla sem. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla ornare malesuada ultricies. Nulla luctus velit diam, at lacinia odio aliquam nec. In adipiscing, arcu elementum dictum eleifend, mi velit sodales nisi, a semper tellus magna sed justo. Ut mauris velit, tristique id nulla eget, euismod consequat lacus. Vestibulum varius dapibus lacus et vestibulum.\r\n<blockquote>Ut eu imperdiet arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras interdum porttitor quam at tempus. Sed quis rutrum lorem.</blockquote>\r\nUt eu imperdiet arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras interdum porttitor quam at tempus. Sed quis rutrum lorem. Mauris vitae dui ut neque pulvinar mattis. Mauris sed tincidunt nisi. Ut porta quis lorem at consectetur. Mauris elementum vulputate metus, ut cursus felis dictum non. Sed in nulla metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Phasellus at nunc eget ligula tristique scelerisque in et urna.\r\n\r\nPellentesque imperdiet, nunc id scelerisque scelerisque, nisi arcu hendrerit leo, vel volutpat arcu mi in risus. Vestibulum iaculis molestie venenatis. Donec faucibus elit quis enim porta, id fringilla lectus feugiat. Sed et diam fermentum, elementum elit et, placerat nisi. Sed vehicula nibh sed tellus elementum condimentum. Fusce laoreet lorem ipsum, vitae aliquam arcu gravida gravida. Nunc eget tristique sem, eu ornare ligula.\r\n\r\nPellentesque facilisis lobortis volutpat. Etiam non suscipit velit, vitae ornare eros. In hac habitasse platea dictumst. Phasellus eu auctor metus, et porta justo. Vivamus suscipit fermentum ante, eu dignissim orci. Proin faucibus quis orci a dictum. Nulla ac nibh neque. Curabitur eu justo massa.','An Amazing responsive and Retina ready theme.','','publish','open','open','','welcome-to-flatsome-an-amazing-responsive-and-retina-ready-theme','','','2013-08-11 16:35:51','2013-08-11 16:35:51','',0,'http://demoweblinks.in:8888/test/?p=474',0,'post','',0),(28,1,'2016-09-19 08:54:13','2016-09-19 08:54:13','<p>test</p>\r\n[ux_banner height=\"100%\" bg_overlay=\"rgba(0, 0, 0, 0.2)\"]\r\n\r\n[text_box style=\"circle\" width=\"40\" width__sm=\"60\" padding=\"30px 30px 30px 30px\" rotate=\"17\" position_x=\"90\" bg=\"rgba(0, 0, 0, 0.86)\" depth=\"3\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Main Headline</strong></h2>\r\n<h3>Smaller Headline</h3>\r\n<p>Lorem ipsum dolor sit amet, conse.</p>\r\n[button text=\"Secondary\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]','test','','publish','closed','closed','','test','','','2016-09-19 08:54:13','2016-09-19 08:54:13','',0,'http://flatsome.dev/?page_id=9969',0,'page','',0),(29,1,'2016-09-05 20:12:31','2016-09-05 20:12:31','','Left Sidebar','','publish','closed','closed','','left-sidebar','','','2021-11-30 12:13:29','2021-11-30 12:13:29','',52,'http://flatsome.dev/?page_id=9847',0,'page','',0),(30,1,'2016-08-31 09:25:18','2016-08-31 09:25:18','[section bg_color=\"rgb(246, 246, 246)\"]\n\n[title style=\"center\" text=\"Flip book element\"]\n\n[ux_product_flip]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\" style=\"text-align: center;\">Create a Flip Book for any product category. You can also select custom posts.</p>\n\n[/col]\n\n[/row]\n\n[/section]','Flip Book','','publish','closed','closed','','flip-book','','','2021-11-30 12:13:29','2021-11-30 12:13:29','',98,'http://flatsome.dev/?page_id=9165',99,'page','',0),(31,1,'2016-08-09 14:23:35','2016-08-09 14:23:35','[ux_slider infinitive=\"false\" parallax=\"2\" hide_nav=\"true\" nav_size=\"normal\" nav_style=\"simple\" bullets=\"false\"]\r\n\r\n[ux_banner height=\"100%\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"30% 57%\"]\r\n\r\n[text_box width=\"45\" width__sm=\"78\" scale__sm=\"125\" position_x=\"5\" position_y=\"80\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Welcome to our Fashion shop</strong></span></h2>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Click me!\" color=\"white\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"62% 18%\"]\r\n\r\n[text_box width=\"45\" width__sm=\"78\" scale__sm=\"125\" position_x=\"5\" position_y=\"80\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Welcome to our Fashion shop</strong></h2>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Click me!\" color=\"white\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"74% 14%\"]\r\n\r\n[text_box width=\"45\" width__sm=\"78\" scale__sm=\"125\" position_x=\"5\" position_y=\"80\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Welcome to our Fashion shop</strong></h2>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Click me!\" color=\"white\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]','Slider Cover','','publish','closed','closed','','slider-cover','','','2021-11-30 12:13:29','2021-11-30 12:13:29','',69,'http://flatsome.dev/?page_id=8550',12,'page','',0),(32,1,'2016-08-09 14:21:14','2016-08-09 14:21:14','[ux_banner height=\"100%\" bg=\"18\"]\r\n\r\n[text_box]\r\n\r\n[ux_image id=\"17\" width=\"24\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Flatsome 3.0</strong></h3>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\r\n[ux_countdown bg_color=\"rgba(0, 0, 0, 0.2)\" month=\"12\" day=\"24\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]','Maintenance','','publish','closed','closed','','maintenance','','','2021-11-30 12:13:29','2021-11-30 12:13:29','',52,'http://flatsome.dev/?page_id=8545',0,'page','',0),(33,1,'2016-08-09 14:09:04','2016-08-09 14:09:04','[ux_banner height=\"100%\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" video_mp4=\"/wp-content/uploads/2016/02/348462762.mp4\"]\n\n[text_box width=\"53\" width__sm=\"87\" scale__sm=\"125\" margin=\"30px 0px 30px 0px\"]\n\n<h3 class=\"alt-font\">A Fancy top Title</h3>\n<h1 class=\"uppercase\"><strong>Welcome to COOL Our Shop</strong></h1>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Shop now\" color=\"white\" link=\"shop\"]\n\n\n[/text_box]\n\n[/ux_banner]','Video Cover','','publish','closed','closed','','video-cover','','','2021-11-30 12:13:29','2021-11-30 12:13:29','',69,'http://flatsome.dev/?page_id=8538',15,'page','',0),(34,1,'2016-08-04 11:15:19','2016-08-04 11:15:19','[ux_banner height=\"300px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.2)\" parallax=\"2\"]\n\n[text_box width=\"68\" width__sm=\"60\"]\n\n<h3 class=\"uppercase\"><strong>Our Stores</strong></h3>\n[divider]\n\n[share]\n\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\">About our stores. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[tabgroup type=\"vertical\"]\n\n[tab title=\"New York\"]\n\n[map lat=\"40.7902\" saturation=\"-58\"]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n[tab title=\"London\"]\n\n[map]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n[tab title=\"Oslo\"]\n\n[map]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n[tab title=\"Stockholm\"]\n\n[map]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n[tab title=\"Add as many as you want\"]\n\n[map]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]','Our Stores','','publish','closed','closed','','our-stores','','','2021-11-30 12:13:29','2021-11-30 12:13:29','',52,'http://flatsome.dev/?page_id=8412',0,'page','',0),(35,1,'2016-07-05 14:49:02','2016-07-05 14:49:02','[section bg=\"18\" bg_color=\"rgb(246, 246, 246)\" parallax=\"3\" padding=\"19px\" border=\"1px 0px 1px 0px\"]\r\n\r\n[ux_banner_grid]\r\n\r\n[col_grid span=\"6\" span__sm=\"12\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"large\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"65% 16%\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"50\" scale=\"99\" position_x=\"10\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<p class=\"lead alt-font\"><span style=\"font-size: 190%;\">Add any text here...</span></p>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\r\n[divider align=\"left\"]\r\n\r\n[button text=\"Browse\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"7\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" bg_pos=\"58% 24%\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"76\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"5\" height=\"1-2\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"67\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"5\" height=\"1-2\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[title style=\"bold-center\" text=\"Featured Products\" margin_top=\"22px\" size=\"undefined\"]\r\n\r\n[ux_products show=\"featured\"]\r\n\r\n[title style=\"bold-center\" text=\"Featured Categories\" size=\"undefined\"]\r\n\r\n[ux_product_categories]\r\n\r\n[gap height=\"36px\"]\r\n\r\n[ux_banner height=\"366px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" bg_pos=\"60% 0%\" parallax=\"1\"]\r\n\r\n[text_box width=\"37\" width__sm=\"78\" position_x=\"10\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Signup for Newsletter</strong></h3>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonumm.</p>\r\n[gap height=\"18px\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Latest news\" size=\"undefined\"]\r\n\r\n[blog_posts columns=\"3\" badge_style=\"square\" image_height=\"200px\"]\r\n\r\n[title style=\"bold-center\" text=\"Follow on instagram\" icon=\"icon-instagram\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" type=\"slider\" width=\"full-width\" columns=\"6\"]','Grid Style 3','','publish','closed','closed','','grid-style-3','','','2021-11-30 12:13:29','2021-11-30 12:13:29','',69,'http://flatsome.dev/?page_id=8220',8,'page','',0),(36,1,'2016-07-04 20:02:46','2016-07-04 20:02:46','[ux_slider slide_width=\"100%\" bullets=\"false\"]\r\n\r\n[ux_banner height=\"100%\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"70% 17%\"]\r\n\r\n[text_box width=\"56\" width__sm=\"85\" width__md=\"52\" animate=\"fadeInLeft\" position_x=\"5\" position_x__sm=\"10\" position_y__sm=\"90\" text_depth=\"1\"]\r\n\r\n<h1><span style=\"font-size: 80%;\"><strong>WordPress & WooCommerce Expert</strong></span></h1>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>\r\n[button text=\"My Work\" color=\"white\" style=\"outline\" radius=\"99\" link=\"Portfolio\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"62% 50%\"]\r\n\r\n[text_box width=\"63\" width__sm=\"85\" width__md=\"52\" animate=\"fadeInLeft\" position_x__sm=\"10\" position_x__md=\"5\" position_y=\"25\" position_y__sm=\"90\" text_depth=\"1\"]\r\n\r\n<h2><strong>A small but focused Web Studio</strong></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Learn more\" color=\"white\" style=\"outline\" radius=\"99\" icon=\"icon-angle-right\" icon_reveal=\"true\" link=\"About\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"62% 50%\"]\r\n\r\n[text_box width=\"80\" width__sm=\"85\" width__md=\"52\" animate=\"fadeInLeft\" position_x__sm=\"10\" position_x__md=\"5\" position_y__sm=\"90\" text_depth=\"1\"]\r\n\r\n<h2><strong>Services</strong></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[row]\r\n\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n[button text=\"Contact Now\" color=\"white\" style=\"outline\" radius=\"99\" icon=\"icon-angle-right\" icon_reveal=\"true\" link=\"Contact\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]','Freelancer','','publish','closed','closed','','freelancer','','','2021-11-30 12:13:29','2021-11-30 12:13:29','',70,'http://flatsome.dev/?page_id=8194',2,'page','',0),(37,1,'2016-07-04 10:31:29','2016-07-04 10:31:29','[ux_slider]\r\n\r\n[ux_banner height=\"600px\" bg_overlay=\"rgba(246, 208, 45, 0.94)\" border=\"2px 2px 2px 2px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_radius=\"undefined\"]\r\n\r\n[text_box style=\"circle\" width=\"15\" width__sm=\"29\" rotate=\"1\" animate=\"fadeInRight\" position_x=\"95\" position_x__sm=\"95\" position_y=\"5\" position_y__sm=\"5\" border=\"2px 2px 2px 2px\" border_margin=\"5px 5px 5px 5px\" border_style=\"dashed\" border_radius=\"100\" border_color=\"rgba(255, 255, 255, 0.19)\"]\r\n\r\n<h3>Up to<br /><span style=\"font-size: 160%;\"><strong>50<span style=\"font-size: 75%;\">%</span><br /></strong></span>off</h3>\r\n\r\n[/text_box]\r\n[text_box width=\"57\" width__sm=\"84\" scale__sm=\"111\" animate=\"flipInY\"]\r\n\r\n<h1 class=\"uppercase\"><span style=\"font-size: 400%;\" data-line-height=\"xs\"><strong>Sale</strong></span></h1>\r\n<h2 class=\"lead\">Summer Sale has Started</h2>\r\n[ux_countdown style=\"text\" size=\"114\" color=\"light\"]\r\n\r\n[gap height=\"23px\"]\r\n\r\n[button text=\"Shop men\" color=\"white\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\"]\r\n\r\n[button text=\"Shop All\" color=\"white\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"600px\" bg=\"18\" bg_pos=\"84% 0%\" border=\"2px 2px 2px 2px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_radius=\"undefined\"]\r\n\r\n[text_box style=\"circle\" width=\"15\" width__sm=\"29\" rotate=\"1\" animate=\"fadeInRight\" position_x=\"100\" position_x__sm=\"95\" position_y=\"15\" position_y__sm=\"5\" border=\"2px 2px 2px 2px\" border_margin=\"5px 5px 5px 5px\" border_style=\"dashed\" border_radius=\"100\" border_color=\"rgba(255, 255, 255, 0.19)\"]\r\n\r\n<h3>Up to<br /><span style=\"font-size: 160%;\"><strong>50<span style=\"font-size: 75%;\">%</span><br /></strong></span>off</h3>\r\n\r\n[/text_box]\r\n[text_box width=\"50\"]\r\n\r\n<h2 class=\"uppercase\">Shop Fashion Clothes today</h2>\r\n<h3 class=\"thin-font\">Add any text here..</h3>\r\n[button text=\"Shop now\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n[row depth=\"1\" depth_hover=\"5\"]\r\n\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"50% 12%\" border=\"1px 1px 1px 1px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_color=\"rgba(0, 0, 0, 0.16)\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>About us</strong></h2>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"60% 18%\" border=\"1px 1px 1px 1px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_color=\"rgba(0, 0, 0, 0.16)\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>OUR BLOG</strong></h2>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"51% 35%\" border=\"1px 1px 1px 1px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_color=\"rgba(0, 0, 0, 0.16)\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>NEWSLETTER</strong></h2>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"bold-center\" text=\"Latest products on sale\" size=\"undefined\"]\r\n\r\n[ux_products depth=\"1\" depth_hover=\"4\" orderby=\"sales\" show=\"onsale\"]\r\n\r\n[title style=\"bold-center\" text=\"Browse our Categories\" size=\"undefined\"]\r\n\r\n[ux_product_categories depth=\"1\" depth_hover=\"4\"]\r\n\r\n[title style=\"bold-center\" text=\"Follow us on Instagram\" icon=\"instagram\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" depth=\"1\"]\r\n\r\n[gap height=\"58px\"]\r\n\r\n[ux_banner height=\"407px\" bg=\"18\" bg_color=\"rgb(18, 18, 18)\" bg_overlay=\"rgba(0, 0, 0, 0.36)\" bg_pos=\"79% 0%\" parallax=\"1\" border=\"2px 0px 2px 0px\" border_margin=\"10px 0px 10px 0px\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(255, 255, 255, 0.22)\"]\r\n\r\n[text_box width=\"47\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Don\'t miss a sale</strong></h2>\r\n<h3 class=\"thin-font\">Sign up for our Newsletter</h3>\r\n[gap height=\"32px\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Latest News\" size=\"undefined\"]\r\n\r\n[blog_posts columns=\"3\" depth=\"1\" depth_hover=\"4\" image_height=\"181px\"]','Big Sale','','publish','closed','closed','','big-sale','','','2021-11-30 12:13:29','2021-11-30 12:13:29','',69,'http://flatsome.dev/?page_id=8111',4,'page','',0),(38,1,'2016-06-29 08:39:48','2016-06-29 08:39:48','[title text=\"Add responsive Video Embeds\" size=\"undefined\"]\n\n<p class=\"lead\">Add Responsive video embed to your site by using the Page Builder.</p>\n<h3>YOUTUBE</h3>\n[ux_video height=\"46%\"]\n\n<h3>VIMEO</h3>\n[ux_video url=\"https://vimeo.com/180255453\" height=\"54%\"]','Video','','publish','closed','closed','','video','','','2021-11-30 12:13:29','2021-11-30 12:13:29','',98,'http://flatsome.dev/?page_id=7921',10,'page','',0),(39,1,'2016-06-15 22:08:43','2016-06-15 22:08:43','[ux_banner height=\"450px\" bg=\"18\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>Video Button</strong></h3>\n<p class=\"lead\">Add a video button that opens Youtube and Viemo videos anywhere.</p>\n[video_button size=\"118\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span=\"4\" span__sm=\"12\" depth=\"2\" depth_hover=\"4\"]\n\n[ux_banner height=\"450px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.52)\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>Video Button</strong></h3>\n<p class=\"lead\">Add a video button that opens Youtube and Viemo videos anywhere.</p>\n[video_button]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" depth=\"2\" depth_hover=\"4\"]\n\n[ux_banner height=\"450px\" bg=\"18\"]\n\n[text_box position_x=\"10\" position_y=\"10\" text_align=\"left\" text_color=\"dark\"]\n\n<h3 class=\"uppercase\"><strong>Change Size</strong></h3>\n<p class=\"lead\">You can change the size to anything</p>\n[video_button size=\"202\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" depth=\"2\" depth_hover=\"4\"]\n\n[ux_banner height=\"450px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.45)\" hover=\"overlay-add\"]\n\n[text_box hover=\"zoom-in\"]\n\n<h3 class=\"uppercase\"><strong>Show on Hover</strong></h3>\n<p class=\"lead\">Select between various hover effects</p>\n[video_button]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]','Video Button','','publish','closed','closed','','video-button','','','2021-11-30 12:13:29','2021-11-30 12:13:29','',98,'http://flatsome.dev/?page_id=7858',12,'page','',0),(40,1,'2016-06-02 12:48:15','2016-06-02 12:48:15','[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.71)\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>GALLERY ELEMENT</strong></h3>\r\n<p class=\"lead\">Create Galleries by using Image IDsÂ and drag and drop. You can easily create galleries from theÂ Page Builder.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Simple GAllery Row with lightbox\"]\r\n\r\n[ux_gallery ids=\"8896,8895,8894,8893,8892,8898,8899,8900\" style=\"shade\" grid_height=\"undefined\" slider_nav_style=\"undefined\" slider_nav_color=\"light\" slider_nav_position=\"outside\" col_spacing=\"undefined\" depth=\"1\" depth_hover=\"undefined\" image_height=\"81%\" image_width=\"undefined\" image_size=\"undefined\" image_overlay=\"undefined\" image_hover=\"zoom\" image_hover_alt=\"undefined\" text_pos=\"undefined\" text_align=\"undefined\" text_size=\"undefined\" text_bg=\"undefined\" text_color=\"undefined\"]\r\n\r\n[title style=\"center\" text=\"Full Width Gallery\"]\r\n\r\n[ux_gallery ids=\"8896,8895,8894,8893,8892,8898,8899,8900\" style=\"shade\" grid_height=\"undefined\" slider_nav_style=\"undefined\" slider_nav_color=\"light\" slider_nav_position=\"outside\" width=\"full-width\" col_spacing=\"collapse\" depth=\"1\" depth_hover=\"undefined\" image_height=\"81%\" image_width=\"undefined\" image_size=\"undefined\" image_overlay=\"undefined\" image_hover=\"zoom\" image_hover_alt=\"undefined\" text_pos=\"undefined\" text_align=\"undefined\" text_size=\"undefined\" text_bg=\"undefined\" text_color=\"undefined\"]\r\n\r\n[title style=\"center\" text=\"Gallery width Small gap\"]\r\n\r\n[ux_gallery ids=\"8896,8895,8894,8893,8892,8898,8899,8900\" style=\"shade\" grid_height=\"undefined\" slider_nav_style=\"undefined\" slider_nav_color=\"light\" slider_nav_position=\"outside\" col_spacing=\"xsmall\" depth=\"1\" depth_hover=\"undefined\" image_height=\"81%\" image_width=\"undefined\" image_size=\"undefined\" image_overlay=\"undefined\" image_hover=\"zoom\" image_hover_alt=\"undefined\" text_pos=\"undefined\" text_align=\"undefined\" text_size=\"undefined\" text_bg=\"undefined\" text_color=\"undefined\"]\r\n\r\n[title style=\"center\" text=\"Slider Gallery\" margin_top=\"21px\"]\r\n\r\n[ux_gallery ids=\"8896,8895,8894,8893,8892,8898,8899,8900\" type=\"slider\" grid_height=\"undefined\" slider_nav_style=\"undefined\" slider_nav_color=\"undefined\" slider_nav_position=\"undefined\" col_spacing=\"undefined\" depth=\"1\" depth_hover=\"undefined\" image_height=\"undefined\" image_width=\"undefined\" image_size=\"undefined\" image_overlay=\"undefined\" image_hover=\"undefined\" image_hover_alt=\"undefined\" text_pos=\"undefined\" text_align=\"undefined\" text_size=\"undefined\" text_hover=\"undefined\" text_bg=\"undefined\" text_color=\"undefined\" text_padding=\"undefined\"]','Galleries','','publish','closed','closed','','galleries','','','2021-11-30 12:13:30','2021-11-30 12:13:30','',98,'http://flatsome.dev/?page_id=7640',11,'page','',0),(41,1,'2016-05-31 07:16:46','2016-05-31 07:16:46','[ux_slider nav_style=\"simple\" nav_color=\"dark\"]\n\n[ux_banner height=\"62%\" slide_effect=\"zoom-out-fast\" bg=\"18\" bg_color=\"rgb(27, 15, 15)\" bg_pos=\"42% 29%\"]\n\n[ux_hotspot type=\"product\" prod_id=\"416\" icon=\"search\" size=\"large\" position_x=\"15\" position_y=\"25\" position_y__sm=\"35\"]\n\n[ux_hotspot text=\"Add a custom text here\" link=\"#customlink\" size=\"large\" animate=\"flipInY\" position_x=\"10\" position_y=\"85\"]\n\n[text_box text_color=\"dark\" width=\"36\" width__sm=\"32\" scale__sm=\"58\" position_x=\"90\"]\n\n<h2 class=\"uppercase\">Banner with hotspots</h2>\n<p class=\"thin-font lead\">Add Hotspots anywhere by using the drag and drop Page Builder.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"62%\" slide_effect=\"zoom-out-fast\" bg=\"18\" bg_color=\"rgba(0, 0, 0, 0.25)\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"42% 29%\"]\n\n[ux_hotspot type=\"product\" prod_id=\"416\" size=\"large\" position_x=\"80\" position_y=\"30\" position_y__sm=\"35\"]\n\n[ux_hotspot text=\"Add a custom text here\" link=\"#customlink\" size=\"large\" animate=\"flipInY\" position_y=\"35\"]\n\n[text_box text_color=\"dark\" width=\"36\" width__sm=\"32\" scale__sm=\"58\" position_x=\"10\"]\n\n<h2 class=\"uppercase\">Create LookbooksÂ </h2>\n<p class=\"thin-font lead\">Create beautiful lookbooks by combining the banner, hotspot and slider element.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]','Hotspot','','publish','closed','closed','','hotspot','','','2021-11-30 12:13:30','2021-11-30 12:13:30','',98,'http://flatsome.dev/?page_id=7562',99,'page','',0),(42,1,'2016-04-26 12:34:20','2016-04-26 12:34:20','[section bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.62)\"]\r\n\r\n[ux_banner_grid height=\"666\" depth=\"1\"]\r\n\r\n[col_grid span=\"8\" span__sm=\"13\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_pos=\"32% 58%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"65\" width__sm=\"90\" scale=\"102\" animate=\"fadeInLeft\" position_x=\"10\" text_align=\"left\"]\r\n\r\n<h6 class=\"uppercase\">Featured Vendor</h6>\r\n<h2><strong>This Week Featured Vendor</strong></h2>\r\n<p class=\"lead\">Change this to anything.Â Consectetuer adipiscing elit.</p>\r\n[button text=\"Go To Shop\" style=\"outline\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"74\"]\r\n\r\n<h2><strong>This is a simple banner</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"15\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" bg_pos=\"66% 22%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"80\" width__sm=\"60\" animate=\"fadeInLeft\" position_y=\"85\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<h6 class=\"uppercase\">Featured Vendor</h6>\r\n<h2><strong>WooÂ Vendor Shop</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" hover=\"zoom\"]\r\n\r\n[text_box width=\"80\" position_x=\"10\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h2><strong>This is a simple banner</strong></h2>\r\n<p class=\"lead\">Change this text to anything</p>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"15\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.09)\" hover=\"zoom\"]\r\n\r\n[text_box width=\"79\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h2><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[section bg_color=\"rgb(246, 246, 246)\" border=\"1px 0px 0px 0px\" border_color=\"rgba(0, 0, 0, 0.05)\"]\r\n\r\n[row]\r\n\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[featured_box img=\"17\" img_width=\"42\" pos=\"left\" icon_border=\"2\" margin=\"px px px px\"]\r\n\r\n<h3>Find Something You love</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscin.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[featured_box img=\"17\" img_width=\"42\" pos=\"left\" icon_border=\"2\" margin=\"px px px px\"]\r\n\r\n<h3>Find Something You love</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscin.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[featured_box img=\"17\" img_width=\"42\" pos=\"left\" icon_border=\"2\" margin=\"px px px px\"]\r\n\r\n<h3>Find Something You love</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscin.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Shop By Category\" size=\"undefined\"]\r\n\r\n[ux_product_categories style=\"normal\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"5\" depth=\"1\" image_height=\"230px\" text_bg=\"rgb(255, 255, 255)\"]\r\n\r\n[title style=\"center\" text=\"Latest  Collections\" size=\"undefined\"]\r\n\r\n[ux_products style=\"vertical\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"2\" depth=\"1\" orderby=\"date\" image_width=\"42\" text_size=\"large\" text_bg=\"rgb(255, 255, 255)\"]\r\n\r\n\r\n[/section]\r\n[ux_banner height=\"318px\" bg=\"18\" bg_color=\"rgb(80, 80, 80)\" bg_overlay=\"rgba(0, 0, 0, 0.49)\" bg_pos=\"22% 29%\"]\r\n\r\n[text_box width=\"40\" width__sm=\"60\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Become a Vendor</strong></h3>\r\n<p class=\"lead\">Want to sell on Flatsome Vendor? We\'re looking for shop to join us.</p>\r\n[button text=\"Learn More\" color=\"white\" style=\"outline\" radius=\"99\"]\r\n\r\n[button text=\"Apply Now\" color=\"white\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[section bg_color=\"rgb(244, 244, 244)\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[title style=\"bold-center\" text=\"How it Works\" size=\"undefined\"]\r\n\r\n[row_inner]\r\n\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Apply to be a Vendor</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Upload your products</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Sell and make money</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n[gap height=\"36px\"]\r\n\r\n[title style=\"bold-center\" text=\"Latest Reviews\" size=\"undefined\"]\r\n\r\n[ux_slider nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\"]\r\n\r\n[row_inner]\r\n\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n[row_inner]\r\n\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n\r\n[/ux_slider]\r\n[title style=\"bold-center\" text=\"From The Blog\" size=\"undefined\"]\r\n\r\n[blog_posts slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"3\" depth=\"1\" image_height=\"180px\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]','Vendor Shop','','publish','closed','closed','','vendor-shop','','','2021-11-30 12:13:30','2021-11-30 12:13:30','',69,'http://flatsome.dev/?page_id=7316',14,'page','',0),(43,1,'2016-04-18 13:07:29','2016-04-18 13:07:29','[message_box bg_color=\"rgb(69, 69, 69)\" padding=\"7\"]\r\n\r\n[row style=\"collapse\" width=\"full-width\"]\r\n\r\n[col span=\"7\" span__sm=\"12\" align=\"center\"]\r\n\r\n<p><strong>BIG SUMMER SALE HAS STARTED. UP TO 70% OFF Â Â </strong>Make sure you</p>\r\n\r\n[/col]\r\n[col span=\"5\" span__sm=\"12\" align=\"center\"]\r\n\r\n[ux_countdown style=\"text\" size=\"94\" color=\"light\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/message_box]\r\n[ux_slider]\r\n\r\n[ux_banner height=\"706px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.35)\" bg_pos=\"40% 54%\"]\r\n\r\n[text_box width=\"69\" width__sm=\"80\"]\r\n\r\n<p class=\"alt-font\"><span style=\"font-size: 200%;\">It has finally started</span></p>\r\n<h1><span style=\"font-size: 130%;\"><strong>BIG SUMMER SALE</strong></span></h1>\r\n[ux_countdown size=\"307\" color=\"light\" bg_color=\"rgba(255, 255, 255, 0.86)\"]\r\n\r\n[button text=\"Shop Men\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop all\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n[row h_align=\"center\"]\r\n\r\n[col span=\"8\" span__sm=\"12\" align=\"center\"]\r\n\r\n<h1 class=\"uppercase\">Welcome to our Shop</h1>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"bold-center\" text=\"Browse products\" size=\"undefined\"]\r\n\r\n[ux_product_categories style=\"overlay\" type=\"grid\" grid=\"8\" grid_height=\"300px\" depth=\"1\" depth_hover=\"4\" number=\"7\" text_pos=\"middle\" text_size=\"large\"]\r\n\r\n[gap height=\"54px\"]\r\n\r\n[ux_banner height=\"387px\" bg=\"18\" bg_pos=\"49% 7%\"]\r\n\r\n[text_box width=\"40\" width__sm=\"76\" position_x=\"5\" position_x__sm=\"50\" position_y__sm=\"50\"]\r\n\r\n<h2 class=\"uppercase\"><strong>never miss a sale again</strong></h2>\r\n<p class=\"lead\">Sign up for our Newsletter</p>\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Latest news\" size=\"undefined\"]\r\n\r\n[blog_posts depth=\"1\" depth_hover=\"4\" image_height=\"68%\"]','Sale Countdown','','publish','closed','closed','','sale-countdown','','','2021-11-30 12:13:30','2021-11-30 12:13:30','',69,'http://flatsome.dev/?page_id=7224',10,'page','',0),(44,1,'2016-04-04 10:53:41','2016-04-04 10:53:41','[ux_banner height=\"100%\" bg=\"18\" bg_color=\"#FFF\"]\r\n\r\n[text_box text_color=\"dark\" width=\"61\" width__sm=\"85\" animate=\"fadeInUp\"]\r\n\r\n<h2><span style=\"font-size: 170%;\"><strong>Go Explore</strong></span></h2>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[divider]\r\n\r\n[search]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[section label=\"Simple Light\" bg_color=\"rgb(245, 245, 245)\" padding=\"27px\" border=\"1px 0px 0px 0px\" border_color=\"rgb(235, 235, 235)\"]\r\n\r\n[row]\r\n\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[featured_box margin=\"px px px px\"]\r\n\r\n<h3>Explore Things</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<h3>Book Events</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<h3>Find a hotel</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[title style=\"center\" text=\"Thing to do\" margin_top=\"25px\" size=\"undefined\"]\r\n\r\n[ux_products style=\"shade\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" cat=\"114\"]\r\n\r\n[title style=\"center\" text=\"Go Explore\" margin_top=\"25px\" size=\"undefined\"]\r\n\r\n[ux_banner_grid]\r\n\r\n[col_grid span=\"3\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover=\"glow\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"70\" width__sm=\"100\" scale=\"187\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Find a Beach</strong></h3>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"40\" width__sm=\"100\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Explore THe CITY</strong></h3>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover=\"glow\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"40\" width__sm=\"100\"]\r\n\r\n<h3 class=\"uppercase\"><strong>EXPLORE OUTDOORS</strong></h3>\r\n<p>Â </p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover=\"glow\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"40\" width__sm=\"100\"]\r\n\r\n<h3 class=\"uppercase\"><strong>TAILORED SUITES</strong></h3>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover=\"glow\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"40\" width__sm=\"97\"]\r\n\r\n<h3 class=\"uppercase\"><strong>ENJOY A DRINK</strong></h3>\r\n<p>Â </p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n[gap]\r\n\r\n[ux_banner height=\"400px\" bg=\"18\" bg_overlay=\"rgba(255, 255, 255, 0.49)\" bg_pos=\"26% 17%\"]\r\n\r\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"60\"]\r\n\r\n<h3 class=\"uppercase\"><strong>List your Company</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Apply Now\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Latest From Blog\" margin_top=\"25px\" size=\"undefined\"]\r\n\r\n[blog_posts style=\"overlay\" show_date=\"text\" excerpt=\"false\" comments=\"false\" image_height=\"293px\" image_hover=\"zoom\" text_align=\"left\"]\r\n\r\n[title style=\"center\" text=\"Follow on Instagram\" icon=\"icon-instagram\" margin_top=\"25px\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed type=\"slider\" width=\"full-width\" columns=\"6\"]','Explore','','publish','closed','closed','','explore','','','2021-11-30 12:13:30','2021-11-30 12:13:30','',70,'http://flatsome.dev/?page_id=7037',4,'page','',0),(45,1,'2016-03-31 15:07:47','2016-03-31 15:07:47','[ux_banner height=\"261px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.09)\" bg_pos=\"54% 100%\" parallax=\"3\"]\n\n[text_box parallax=\"-4\" text_depth=\"1\"]\n\n<h3 class=\"uppercase\"><strong>Create Powerful Forms</strong></h3>\n<p class=\"lead\">Create Powerful forms with the integrated Contact Form 7 Plugin.</p>\n\n[/text_box]\n\n[/ux_banner]\n[section bg_color=\"rgb(255, 255, 255)\" mask=\"arrow\" padding=\"45px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Simple Contact Form\" size=\"undefined\"]\n\n(insert contact form here)\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Newsletter signup\" size=\"undefined\"]\n\n(insert contact form here)\n\n[title text=\"Newsletter signup 2\" size=\"undefined\"]\n\n(insert contact form here)\n\n[title text=\"Newsletter signup 2\" size=\"undefined\"]\n\n(insert contact form here)\n\n<p class=\"lead\">These forms are included as Contact Form 7 Presets.</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Simple Center\" bg_color=\"rgb(0, 0, 0)\" dark=\"true\" mask=\"arrow\" padding=\"60px\" height=\"300px\" border_color=\"rgb(235, 235, 235)\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Contact Form Flat\"]\n\n(insert contact form here)\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Newsletter signup\" size=\"undefined\"]\n\n(insert contact form here)\n\n[title text=\"Newsletter signup 2\" size=\"undefined\"]\n\n(insert contact form here)\n\n[title text=\"Newsletter signup 2\" size=\"undefined\"]\n\n(insert contact form here)\n\n<p class=\"lead\">These forms are included as Contact Form 7 Presets.</p>\n\n[/col]\n\n[/row]\n\n[/section]','Forms','','publish','closed','closed','','forms','','','2021-11-30 12:13:30','2021-11-30 12:13:30','',98,'http://flatsome.dev/?page_id=7025',99,'page','',0),(46,1,'2016-03-31 14:53:43','2016-03-31 14:53:43','[ux_banner height=\"377px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.61)\" bg_pos=\"60% 22%\" parallax=\"3\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>PRICE TABLE ELEMENT</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[gap]\r\n\r\n[title text=\"3 Column price table with text on left\"]\r\n\r\n[gap]\r\n\r\n[row]\r\n\r\n[col span=\"3\" padding=\"0 20px 0 0\"]\r\n\r\n<h3>Pricing</h3>\r\n[divider]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.reLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy. Add any text here</p>\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Silver\" description=\"Enter description here...\" price=\"29$\" color=\"dark\" bg_color=\"rgb(122, 44, 205)\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tooltip. Add extra info here.\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" color=\"white\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Gold\" description=\"Enter description here...\" price=\"49$\" color=\"dark\" bg_color=\"rgba(0, 0, 0, 0.99)\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tooltip. Add extra info here.\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Platinium\" description=\"Enter description here...\" price=\"129$\" color=\"dark\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" enabled=\"false\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Disabled\" enabled=\"false\"]\r\n\r\n[button text=\"Click me!\" color=\"white\" style=\"underline\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[section bg=\"#f1f1f1\" bg_color=\"rgb(243, 243, 243)\" margin=\"-1px\"]\r\n\r\n[title text=\"3 Column price table inside a background\"]\r\n\r\n[gap]\r\n\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Silver\" description=\"Enter description here...\" price=\"29$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tooltip. Add extra info here.\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" style=\"outline\" radius=\"10\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Gold\" description=\"Enter description here...\" price=\"49$\" featured=\"true\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tooltip. Add extra info here.\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" style=\"shade\" size=\"larger\" radius=\"10\" depth=\"4\" depth_hover=\"5\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Platinium\" description=\"Enter description here...\" price=\"129$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\" padding=\"0 0 0 20px\"]\r\n\r\n<h3>Pricing</h3>\r\n[divider]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.reLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy. Add any text here</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[row style=\"collapse\"]\r\n\r\n[col]\r\n\r\n[title style=\"center\" text=\"4 Column collapsed\"]\r\n\r\n[gap]\r\n\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\" featured=\"true\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[gap]\r\n\r\n[section bg=\"18\" bg_color=\"rgb(40, 40, 40)\" bg_overlay=\"rgba(255, 255, 255, 0.5)\" parallax=\"3\" padding=\"49px\"]\r\n\r\n[row style=\"small\" depth=\"2\"]\r\n\r\n[col span=\"3\" animate=\"fadeInUp\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\" animate=\"fadeInUp\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\" featured=\"true\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\" animate=\"fadeInUp\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\" animate=\"fadeInUp\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]','Price table','','publish','closed','closed','','price-table','','','2021-11-30 12:13:30','2021-11-30 12:13:30','',98,'http://flatsome.dev/?page_id=7020',99,'page','',0),(47,1,'2016-03-31 14:45:02','2016-03-31 14:45:02','[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.44)\" bg_pos=\"32% 28%\" parallax=\"3\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>SEARCH ELEMENT</strong></h3>\n<p class=\"lead\">Insert a Product Search box anywhere</p>\n[search style=\"flat\" size=\"xlarge\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Default style\"]\n\n[search]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Flat style\"]\n\n[search style=\"flat\"]\n\n\n[/col]\n\n[/row]\n[ux_banner height=\"500px\" bg=\"18\" bg_pos=\"58% 16%\"]\n\n[text_box width=\"37\" position_x=\"0\" text_align=\"left\"]\n\n<h3 class=\"uppercase\"><strong>Search box inside a banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[gap height=\"25px\"]\n\n[search size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]','Search box','','publish','closed','closed','','search-box','','','2021-11-30 12:13:30','2021-11-30 12:13:30','',98,'http://flatsome.dev/?page_id=7017',99,'page','',0),(48,1,'2016-03-31 14:42:25','2016-03-31 14:42:25','[ux_banner height=\"405px\" bg=\"18\" bg_overlay=\"rgba(255, 255, 255, 0.94)\" bg_pos=\"53% 30%\"]\r\n\r\n[text_box text_color=\"dark\"]\r\n\r\n[ux_image id=\"17\" width=\"23\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Instagram element</strong></h3>\r\n<p class=\"lead\">Add beautiful instagram images anywhere on your site</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Simple Grid\" icon=\"icon-instagram\"]\r\n\r\n[ux_instagram_feed username=\"stylechild_no\" col_spacing=\"small\"]\r\n\r\n[title style=\"center\" text=\"full width slider\" icon=\"icon-instagram\" margin_top=\"43px\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" type=\"slider\" slider_nav_color=\"light\" width=\"full-width\" columns=\"6\"]\r\n\r\n[title style=\"center\" text=\"Simple slider\" icon=\"icon-instagram\" margin_top=\"32px\"]\r\n\r\n[ux_instagram_feed username=\"stylechild_no\" type=\"slider\" slider_nav_position=\"outside\" col_spacing=\"small\"]\r\n\r\n[title style=\"center\" text=\"full width slider Black and white\" icon=\"icon-instagram\" margin_top=\"43px\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" image_hover=\"color\" type=\"slider\" slider_nav_color=\"light\" width=\"full-width\" columns=\"6\"]','Instagram feed','','publish','closed','closed','','instagram-feed','','','2021-11-30 12:13:30','2021-11-30 12:13:30','',98,'http://flatsome.dev/?page_id=7014',99,'page','',0),(49,1,'2016-03-31 14:37:54','2016-03-31 14:37:54','[ux_banner height=\"338px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.41)\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>Accordion element</strong></h3>\r\n<p class=\"lead\">Create beautiful accordion sections. You can add any element to the accordion panels.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Simple accordion\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[accordion]\r\n\r\n[accordion-item title=\"Accordion Title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n[accordion-item title=\"Accordion Item 1 Title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n[accordion-item title=\"Accordion Item 2 Title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n[accordion-item title=\"Add any element to accordion\"]\r\n\r\n[blog_posts style=\"normal\" columns=\"3\" image_height=\"56.25%\"]\r\n\r\n[button text=\"Click me!\" style=\"outline\"]\r\n\r\n\r\n[/accordion-item]\r\n\r\n[/accordion]\r\n\r\n[/col]\r\n\r\n[/row]','Accordion','','publish','closed','closed','','accordion','','','2021-11-30 12:13:30','2021-11-30 12:13:30','',98,'http://flatsome.dev/?page_id=7011',99,'page','',0),(50,1,'2016-03-31 14:32:39','2016-03-31 14:32:39','[ux_banner height=\"375px\" bg=\"18\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.36)\"]\r\n\r\n[text_box width=\"51\"]\r\n\r\n<h3 class=\"uppercase\"><strong>LOGO ELEMENT</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Normal logos\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\"]\r\n\r\n[logo img=\"17\"]\r\n\r\n[logo img=\"17\"]\r\n\r\n[logo img=\"17\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Logos in a Dashed Grid\" margin_top=\"19px\"]\r\n\r\n[row col_style=\"dashed\" v_align=\"middle\"]\r\n\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"17\" hover=\"overlay-add\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Logos in a Slider\" margin_top=\"57px\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n\r\n[/ux_slider]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Logos in a Full width slider\" margin_top=\"57px\"]\r\n\r\n[ux_slider bg_color=\"rgb(247, 247, 247)\" infinitive=\"false\" freescroll=\"true\" hide_nav=\"true\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n\r\n[/ux_slider]','Logo','','publish','closed','closed','','logo','','','2021-11-30 12:13:30','2021-11-30 12:13:30','',98,'http://flatsome.dev/?page_id=7008',99,'page','',0),(51,1,'2016-03-31 14:08:59','2016-03-31 14:08:59','[ux_banner height=\"364px\" bg=\"18\" bg_overlay=\"rgba(255, 255, 255, 0.87)\" bg_pos=\"80% 19%\" parallax=\"2\"]\n\n[text_box text_color=\"dark\"]\n\n<h3 class=\"uppercase\"><strong>Portfolio Element</strong></h3>\n<p>Showcase work or other elements</p>\n[divider width=\"67px\" height=\"5px\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"Simple with Filtering\" size=\"undefined\"]\n\n[ux_portfolio style=\"overlay\" filter=\"true\" orderby=\"name\" type=\"masonry\" grid=\"3\" image_hover=\"overlay-add-50\" image_hover_alt=\"zoom\" text_pos=\"middle\" text_size=\"large\" text_hover=\"slide\"]\n\n[title style=\"center\" text=\"Ouline Filter style\" size=\"undefined\"]\n\n[ux_portfolio style=\"overlay\" filter=\"true\" filter_nav=\"outline\" orderby=\"name\" type=\"masonry\" grid=\"3\" image_hover=\"overlay-add-50\" image_hover_alt=\"blur\" text_pos=\"middle\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\" style=\"text-align: center;\">You can choose between many differnt filter navigation style and align them to left or right.</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Slider Style\" size=\"undefined\"]\n\n[ux_portfolio style=\"shade\" filter_nav=\"outline\" orderby=\"name\" grid=\"3\" columns=\"5\" image_hover=\"zoom\" image_hover_alt=\"grayscale\"]\n\n[title style=\"center\" text=\"Grid Style\" size=\"undefined\"]\n\n[ux_portfolio style=\"overlay\" filter=\"true\" filter_nav=\"outline\" number=\"4\" offset=\"4\" orderby=\"name\" type=\"grid\" grid=\"3\" image_hover=\"overlay-add-50\" image_hover_alt=\"zoom\" text_align=\"left\" text_size=\"large\" text_hover=\"bounce\"]\n\n[title style=\"center\" text=\"Collapsed Full width Grid\" size=\"undefined\"]\n\n[ux_portfolio style=\"overlay\" filter=\"true\" filter_nav=\"outline\" number=\"4\" orderby=\"name\" type=\"grid\" grid=\"3\" width=\"full-width\" col_spacing=\"collapse\" image_hover=\"overlay-add-50\" image_hover_alt=\"zoom\" text_align=\"left\" text_size=\"large\" text_hover=\"bounce\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\" style=\"text-align: center;\">ChooseÂ between 14 differnt premade grid layouts.</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Open in a ligtbox\"]\n\n[ux_portfolio lightbox=\"true\"]','Portfolio','','publish','closed','closed','','portfolio','','','2021-11-30 12:13:34','2021-11-30 12:13:34','',52,'http://flatsome.dev/?page_id=7002',19,'page','',0),(52,1,'2016-03-31 14:08:39','2016-03-31 14:08:39','[ux_banner height=\"496px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"52% 2%\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>Pages Element</strong></h3>\r\n<p class=\"lead\">Display a list of sub pages of a selected page in a beautiful way. Very useful if you need to link to sub pages from a parent page.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Default Style\"]\r\n\r\n[ux_pages parent=\"3021\" depth=\"1\" text_align=\"center\" text_padding=\"10px 10px 10px 10px\"]','Pages','','publish','closed','closed','','pages','','','2021-11-30 12:13:31','2021-11-30 12:13:31','',98,'http://flatsome.dev/?page_id=6999',18,'page','',0),(53,1,'2016-03-31 13:59:10','2016-03-31 13:59:10','[scroll_to title=\"Welcome Banner\" link=\"welcome\"]\n\n[ux_banner height=\"100%\" bg=\"18\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" parallax=\"2\"]\n\n[text_box width=\"63\" width__sm=\"60\" position_y=\"20\"]\n\n<h1 class=\"lead\"><strong>Scroll To</strong>Â Element</h1>\n<p class=\"lead\">Create Scroll To elements to navigate the site with small bullets on the side. You can also disable the bullet and use it for <strong>One Page Navigation</strong></p>\n\n[/text_box]\n\n[/ux_banner]\n[scroll_to title=\"Another banner\" link=\"another_banner\"]\n\n[ux_banner height=\"100%\" bg=\"18\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" parallax=\"2\"]\n\n[text_box width=\"50\" width__sm=\"60\" animate=\"fadeInRight\" position_x=\"0\" position_y=\"40\" text_align=\"left\"]\n\n<h1 class=\"lead\"><strong>Another Banner</strong></h1>\n<p class=\"lead\">Create Scroll To elements to navigate the site with small bullets on the side. You can also disable the bullet and use it for <strong>One Page Navigation</strong></p>\n\n[/text_box]\n\n[/ux_banner]\n[scroll_to title=\"Another Scroll To banner\" link=\"another_banner_2\"]\n\n[ux_banner height=\"100%\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.1)\"]\n\n[text_box width=\"52\" width__sm=\"60\" animate=\"fadeInUp\" parallax=\"3\"]\n\n<h2><span style=\"font-size: 200%;\">Another Banner</span></h2>\n\n[/text_box]\n\n[/ux_banner]\n[scroll_to title=\"Signup for Newsletter\" link=\"newsletter\"]\n\n[ux_banner height=\"100%\" bg=\"18\" bg_color=\"rgb(43, 7, 7)\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" parallax=\"4\"]\n\n[text_box width=\"74\" width__sm=\"84\" scale=\"120\" scale__sm=\"101\" parallax=\"2\"]\n\n<h3 class=\"uppercase\"><strong>Signup for Newsletter</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n(insert contact form here)\n\n\n[/text_box]\n\n[/ux_banner]','Scroll To','','publish','closed','closed','','scroll-to','','','2021-11-30 12:13:31','2021-11-30 12:13:31','',98,'http://flatsome.dev/?page_id=6996',17,'page','',0),(54,1,'2016-03-31 13:48:41','2016-03-31 13:48:41','[ux_banner height=\"444px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.27)\"]\n\n[text_box]\n\n<h1 class=\"uppercase\"><strong>COUNT DOWN ELEMENT</strong></h1>\n<p class=\"lead\">AddÂ beautiful count downs anywhere on the site.</p>\n[ux_countdown size=\"300\" bg_color=\"rgba(0, 0, 0, 0.09)\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span=\"4\"]\n\n[title style=\"center\" text=\"Primary Color\"]\n\n[ux_countdown size=\"198\" color=\"primary\" day=\"30\" time=\"24:00\"]\n\n\n[/col]\n[col span=\"4\"]\n\n[title style=\"center\" text=\"Dark Color\"]\n\n[ux_countdown day=\"30\" time=\"24:00\"]\n\n\n[/col]\n[col span=\"4\"]\n\n[title style=\"center\" text=\"Light Color\"]\n\n[ux_countdown size=\"200%\" color=\"light\" day=\"30\" time=\"24:00\"]\n\n\n[/col]\n\n[/row]\n[row]\n\n[col]\n\n[ux_banner height=\"600px\" bg=\"18\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"60\" animate=\"fadeIn\" position_x=\"10\"]\n\n<h3 class=\"uppercase\">A Countdown Inside A Banner</h3>\n[ux_countdown day=\"30\" time=\"24:00\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[gap]\n\n\n[/col]\n[col span=\"6\" align=\"center\"]\n\n[title style=\"center\" text=\"Countdown as text\"]\n\n[ux_countdown style=\"text\" size=\"91\" day=\"30\" time=\"24:00\"]\n\n\n[/col]\n[col span=\"6\"]\n\n[title style=\"center\" text=\"Countdown as Clock\"]\n\n[ux_countdown color=\"primary\" day=\"30\" time=\"24:00\"]\n\n\n[/col]\n\n[/row]','Countdown','','publish','closed','closed','','countdown','','','2021-11-30 12:13:31','2021-11-30 12:13:31','',98,'http://flatsome.dev/?page_id=6990',28,'page','',0),(55,1,'2016-02-18 15:10:52','2016-02-18 15:10:52','[ux_slider]\n\n[ux_banner height=\"637px\" bg=\"18\" bg_size=\"original\" bg_pos=\"62% 60%\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"18\" bg_pos=\"62% 68%\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" pos=\"center\" title=\"Company Feature 1\" icon_border=\"2\" margin=\"0px 0px 0px 0px\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" pos=\"center\" title=\"Company Feature 2\" icon_border=\"2\" margin=\"0px 0px 0px 0px\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" pos=\"center\" title=\"Company Feature 3\" icon_border=\"2\" margin=\"0px 0px 0px 0px\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"17\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with image left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"17\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" slider_nav_style=\"circle\" columns=\"2\" depth=\"1\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\" icon_pos=\"left\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]','Corporate','','publish','closed','closed','','simple-corporate','','','2021-11-30 12:13:32','2021-11-30 12:13:32','',70,'http://flatsome.dev/?page_id=4041',1,'page','',0),(56,1,'2016-02-17 13:38:32','2016-02-17 13:38:32','[ux_slider bg_color=\"rgb(0, 0, 0)\"]\r\n\r\n[ux_banner height=\"100%\" slide_effect=\"zoom-in\" bg=\"18\" bg_size=\"original\" bg_color=\"rgb(35, 35, 35)\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"44% 34%\"]\r\n\r\n[text_box width=\"58\" width__sm=\"100\" animate=\"fadeInUp\" parallax=\"2\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 160%;\">Nothing is Impossible</span></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\r\n[button text=\"Shop Men\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" slide_effect=\"zoom-in\" bg=\"18\" bg_size=\"original\" bg_color=\"rgb(35, 35, 35)\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"44% 34%\"]\r\n\r\n[text_box width=\"58\" width__sm=\"100\" animate=\"fadeInLeft\" parallax=\"2\" position_x=\"0\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 160%;\">CHANGE THIS TO ANYTHING</span></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\r\n[button text=\"Shop Men\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" slide_effect=\"zoom-in\" bg=\"18\" bg_size=\"original\" bg_color=\"rgb(35, 35, 35)\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"44% 34%\"]\r\n\r\n[text_box width=\"58\" width__sm=\"100\" animate=\"fadeInLeft\" parallax=\"3\" position_x=\"0\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 160%;\">CHANGE THIS TO ANYTHING</span></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\r\n[button text=\"Shop Men\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n[section bg_color=\"rgb(27, 27, 27)\" dark=\"true\" padding=\"60px\"]\r\n\r\n[row]\r\n\r\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"17\" img_width=\"42\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(143, 143, 143)\" margin=\"px px px px\"]\r\n\r\n<h4>Free Shipping all products above 99$</h4>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"17\" img_width=\"42\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(143, 143, 143)\" margin=\"px px px px\"]\r\n\r\n<h4>New products added everyday</h4>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"17\" img_width=\"42\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(143, 143, 143)\" margin=\"px px px px\"]\r\n\r\n<h4>Free Shipping all products above 99$</h4>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Featured Products\" size=\"undefined\"]\r\n\r\n[ux_products slider_nav_style=\"circle\"]\r\n\r\n[title style=\"center\" text=\"Browse\" size=\"undefined\"]\r\n\r\n[ux_product_categories style=\"overlay\" columns=\"5\" image_height=\"113%\" image_overlay=\"rgba(0, 0, 0, 0.16)\" text_pos=\"middle\"]\r\n\r\n[title style=\"center\" text=\"Latest News\" size=\"undefined\"]\r\n\r\n[blog_posts style=\"overlay\" depth=\"1\" title_style=\"uppercase\" badge_style=\"square\" image_height=\"300px\"]\r\n\r\n\r\n[/section]\r\n[ux_banner height=\"420px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" parallax=\"3\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>Signup for newsletter</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_instagram_feed username=\"surfer_magazine\" type=\"slider\" width=\"full-width\" columns=\"8\"]','Sport Shop','','publish','closed','closed','','sport-shop','','','2021-11-30 12:13:32','2021-11-30 12:13:32','',69,'http://flatsome.dev/?page_id=4025',13,'page','',0),(57,1,'2016-02-17 10:15:15','2016-02-17 10:15:15','[section bg_color=\"rgb(237, 239, 241)\" effect=\"snow\" border=\"1px 0px 1px 0px\" border_color=\"rgba(0, 0, 0, 0.13)\"]\r\n\r\n[ux_banner_grid height=\"617\" depth=\"1\"]\r\n\r\n[col_grid span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner bg=\"18\" bg_pos=\"64% 30%\" border_color=\"rgba(0, 0, 0, 0.05)\"]\r\n\r\n[text_box width=\"70\" position_y=\"80\"]\r\n\r\n<h2 class=\"alt-font\">A Cute Title</h2>\r\n<h2 class=\"uppercase\"><strong><span style=\"font-size: 140%;\">This is a simple headline</span></strong></h2>\r\n<p class=\"lead\"><span style=\"font-size: 130%;\">A Small text</span></p>\r\n[button text=\"Click me!\" style=\"outline\" size=\"xlarge\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\"]\r\n\r\n[ux_banner bg=\"18\" bg_pos=\"51% 56%\" border_color=\"rgba(0, 0, 0, 0.08)\"]\r\n\r\n[text_box width=\"70\" width__sm=\"60\" position_y=\"10\"]\r\n\r\n<h2 class=\"uppercase\"><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"5\" span__sm=\"14\" height=\"1-3\"]\r\n\r\n[ux_banner bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(255, 255, 255, 0.15)\" bg_pos=\"51% 30%\" border_color=\"rgba(0, 0, 0, 0.08)\"]\r\n\r\n[text_box width=\"42\" position_x=\"10\" position_y=\"80\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<h2 class=\"uppercase\"><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"5\" span__sm=\"12\" height=\"2-3\"]\r\n\r\n[ux_banner bg=\"18\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"71% 19%\" border_color=\"rgba(0, 0, 0, 0.07)\"]\r\n\r\n[text_box width=\"70\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>SALE ENDS SOON</strong></h2>\r\n[ux_countdown size=\"268\" bg_color=\"rgba(0, 0, 0, 0.1)\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[section bg_color=\"rgb(255, 255, 255)\"]\r\n\r\n[row col_style=\"divided\"]\r\n\r\n[col span=\"4\" span__sm=\"12\" align=\"center\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"17\" img_width=\"51\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\r\n\r\n<h3>Free Shipping on orders above 99$</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"17\" img_width=\"51\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\r\n\r\n<h3>Give a Gift to a Friend</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed dia.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"17\" img_width=\"51\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\r\n\r\n<h3>Loved by our Customers</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[title style=\"bold-center\" text=\"Shop Now\" margin_top=\"10px\" size=\"undefined\"]\r\n\r\n[ux_product_categories style=\"overlay\" columns=\"5\" depth=\"1\" show_count=\"0\" image_overlay=\"rgba(0, 0, 0, 0.08)\" image_hover=\"zoom\" text_pos=\"middle\" text_size=\"small\"]\r\n\r\n[row]\r\n\r\n[col span=\"3\" span__sm=\"12\"]\r\n\r\n\r\n[/col]\r\n[col span=\"5\" span__sm=\"12\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"bold-center\" text=\"Weekly Featured Products\" margin_top=\"10px\" size=\"undefined\"]\r\n\r\n[ux_products style=\"normal\" columns=\"5\" depth=\"1\" show=\"featured\"]\r\n\r\n[title style=\"bold-center\" text=\"Follow us on Instagram\" margin_top=\"10px\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed username=\"stylechild_no\" type=\"slider\" width=\"full-width\" columns=\"8\"]','Cute Shop','','publish','closed','closed','','cute-shop','','','2021-11-30 12:13:32','2021-11-30 12:13:32','',69,'http://flatsome.dev/?page_id=4008',2,'page','',0),(58,1,'2016-02-15 20:47:32','2016-02-15 20:47:32','[ux_banner height=\"562px\" height__sm=\"368px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" parallax=\"2\"]\n\n[text_box width=\"68\" width__sm=\"81\"]\n\n<h2 class=\"uppercase\">Powerful Theme needs powerul images</h2>\n<p class=\"lead\">Responsive Images you can insert anywhere. You can also them into a slider.</p>\n\n[/text_box]\n\n[/ux_banner]\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"center\"]\n\n<h1 class=\"lead\">Beautiful Images with Beautiful Captions</h1>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"17\" image_size=\"large\" lightbox=\"true\" caption=\"true\" image_overlay=\"rgba(0, 0, 0, 0.16)\" image_hover=\"zoom-long\" animate=\"fadeInUp\"]\n\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Image Overlay Styles\"]\n\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"17\" image_hover=\"glow\"]\n\n<p>Glow</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"17\" image_hover=\"color\" animate=\"fadeInLeft\"]\n\n<p>Add Color</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"17\" image_hover=\"grayscale\" animate=\"fadeInLeft\"]\n\n<p>Grayscale</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"17\" image_hover=\"fade-in\" animate=\"fadeInLeft\"]\n\n<p>Fade In</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"17\" image_hover=\"zoom-fade\" animate=\"fadeInLeft\"]\n\n<p>ZoomÂ Fade</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"17\" image_overlay=\"rgba(0, 0, 0, 0.37)\" image_hover=\"overlay-add\" animate=\"fadeInLeft\"]\n\n<p>Add Overlay</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"17\" image_overlay=\"rgba(0, 0, 0, 0.37)\" image_hover=\"overlay-remove\" animate=\"fadeInLeft\"]\n\n<p>Remove Overlay</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"17\" image_hover=\"blur\" animate=\"fadeInLeft\"]\n\n<p>Blur</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Image with video\"]\n\n[ux_image id=\"17\" animate=\"fadeInLeft\" link=\"https://www.youtube.com/watch?v=_j5KR28qtsI\"]\n\n<p class=\"lead\">Add a <strong>Youtube or Vimeo</strong> link to Image link tag to automatically get a play icon and a Video Lightbox on Images.</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Image drop shadow\"]\n\n[ux_image id=\"17\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n<p class=\"lead\">Add cool drop shadows to your images to make them pop outÂ on hover.</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Add Images to any sliders\" size=\"undefined\"]\n\n[ux_slider style=\"container\" slide_width=\"700px\" bg_color=\"rgb(0, 0, 0)\"]\n\n[ux_image id=\"17\" height=\"75%\" image_hover=\"overlay-remove\" depth_hover=\"2\"]\n\n[ux_image id=\"17\" height=\"75%\" image_hover=\"overlay-remove\" depth=\"3\"]\n\n[ux_image id=\"17\" height=\"75%\" image_hover=\"overlay-remove\"]\n\n[ux_image id=\"17\" height=\"75%\" link=\"https://www.youtube.com/watch?v=_j5KR28qtsI\"]\n\n\n[/ux_slider]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Image with reverse parallax\"]\n\n[ux_image id=\"17\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" parallax=\"-1\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Image with PArallax\"]\n\n[ux_image id=\"17\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" parallax=\"1\" animate=\"fadeInLeft\"]\n\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Images with lightbox\" size=\"undefined\"]\n\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"17\" height=\"75%\" lightbox=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"17\" height=\"75%\" lightbox=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"17\" height=\"75%\" lightbox=\"true\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"17\" height=\"75%\" lightbox=\"true\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span__sm=\"12\" align=\"center\"]\n\n[title style=\"center\" text=\"Images with Caption\" size=\"undefined\"]\n\n[row_inner]\n\n[col_inner span=\"4\" span__sm=\"12\"]\n\n[ux_image id=\"17\" height=\"75%\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n[ux_image id=\"17\" height=\"75%\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n[ux_image id=\"17\" height=\"75%\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]','Images','','publish','closed','closed','','images','','','2021-11-30 12:13:32','2021-11-30 12:13:32','',98,'http://flatsome.dev/?page_id=3983',9,'page','',0),(59,1,'2016-02-15 20:46:37','2016-02-15 20:46:37','[ux_banner height=\"446px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.61)\" bg_pos=\"58% 26%\"]\n\n[text_box width=\"100\" width__sm=\"75\" parallax=\"-1\"]\n\n<h6>Flatsome Grid System</h6>\n<h1>Responsive Rows and Columns</h1>\n<p class=\"lead\">Create Amazing layouts by using FlatsomeÂ Row and Column System powered by<strong> Flexbox</strong></p>\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"Simple 4-column row\"]\n\n[row padding=\"30px\"]\n\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(255, 0, 211, 0.96)\" color=\"light\" depth_hover=\"5\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Vertical Centered Row\"]\n\n[row v_align=\"middle\" padding=\"30px\"]\n\n[col span=\"6\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Bottom Align Row\"]\n\n[row v_align=\"bottom\" padding=\"30px\"]\n\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Equal aligned row\"]\n\n[row v_align=\"equal\" padding=\"30px\"]\n\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Rows With Drop shadow\"]\n\n[row padding=\"30px\" depth=\"2\" depth_hover=\"3\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n<p><strong>You can set Column Depth for All columns or per column.</strong></p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Divided row\"]\n\n[row style=\"large\" col_style=\"divided\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Dashed Lined Row\" margin_top=\"23px\" size=\"undefined\"]\n\n[row col_style=\"dashed\" padding=\"30px\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Solid Lined Row\" margin_top=\"25px\" size=\"undefined\"]\n\n[row col_style=\"solid\" padding=\"30px\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Custom Background on a Column\" margin_top=\"28px\" size=\"undefined\"]\n\n[row padding=\"30px\"]\n\n[col span=\"5\" span__sm=\"6\" padding=\"30px 30px 30px 30px\" bg_color=\"rgb(38, 65, 116)\" color=\"light\" depth=\"2\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Full Width Row with Backgrounds\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"equal\" padding=\"30px\"]\n\n[col span=\"4\" span__sm=\"12\" bg_color=\"rgb(0, 0, 0)\" color=\"light\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummyLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_color=\"rgb(153, 120, 222)\" color=\"light\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummyLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_color=\"rgb(120, 154, 222)\" color=\"light\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummyLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Nested Rows\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"8\" span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n[section bg_color=\"rgb(231, 231, 231)\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" padding=\"30px 30px 30px 30px\" bg_color=\"rgb(255, 255, 255)\" depth=\"3\" depth_hover=\"5\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(0, 0, 0)\"]\n\n[row style=\"small\" v_align=\"middle\"]\n\n[col span=\"4\" span__sm=\"12\" padding=\"20px\" bg_color=\"rgb(255, 255, 255)\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" color=\"light\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" color=\"light\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(231, 231, 231)\"]\n\n[row col_style=\"solid\"]\n\n[col span=\"4\" span__sm=\"6\" parallax=\"1\"]\n\n<h3>Parallax Column</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\" parallax=\"2\"]\n\n<h3>Parallax Column</h3>\n<p><span style=\"color: #555555; font-size: 14.4px; line-height: 1.5;\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</span></p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" parallax=\"3\"]\n\n<h3>Parallax Column</h3>\n<p><span style=\"color: #555555; font-size: 14.4px; line-height: 1.5;\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</span></p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row h_align=\"center\"]\n\n[col span=\"7\" span__sm=\"10\" align=\"center\"]\n\n<h3>A Centered Columns Row</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Animated Columns\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\n\n<h3>Fade In Up</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInDown\"]\n\n<h3>Fade InÂ Down</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInLeft\"]\n\n<h3>Fade In Left</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInRight\"]\n\n<h3>Fade In Right</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceIn\"]\n\n<h3>Bounce In</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceInUp\"]\n\n<h3>Bounce In Up</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceInDown\"]\n\n<h3>Bounce InÂ Down</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceInLeft\"]\n\n<h3>Bounce In Left</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceInRight\"]\n\n<h3>Bounce InÂ Right</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\" span__sm=\"12\" animate=\"flipInY\"]\n\n<h3>Flip In Y</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\" animate=\"flipInX\"]\n\n<h3>Flip In X</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\" animate=\"blurIn\"]\n\n<h3>Blur In</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]','Rows / Columns','','publish','closed','closed','','rows-columns','','','2021-11-30 12:13:32','2021-11-30 12:13:32','',98,'http://flatsome.dev/?page_id=3981',2,'page','',0),(60,1,'2016-02-15 14:01:19','2016-02-15 14:01:19','[ux_banner height=\"400px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.66)\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>Text Elements</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[section bg_color=\"rgb(255, 255, 255)\"]\n\n[title style=\"center\" text=\"Typography\"]\n\n[row]\n\n[col span=\"3\"]\n\n<h1>Headline h1</h1>\n<h2>Headline h2</h2>\n<h3>Headline h3</h3>\n<h4>Headline h4</h4>\n<h5>Headline h5</h5>\n<h6>Headline h6</h6>\n\n[/col]\n[col span=\"3\"]\n\n<h1 class=\"uppercase\">headlineÂ h1</h1>\n<h2 class=\"uppercase\">headlineÂ h2</h2>\n<h3 class=\"uppercase\">headlineÂ h3</h3>\n<h4 class=\"uppercase\">headlineÂ H4</h4>\n<h5 class=\"uppercase\">headlineÂ H5</h5>\n<h6 class=\"uppercase\">headlineÂ H6</h6>\n\n[/col]\n[col span=\"3\"]\n\n<h3 class=\"uppercase\" data-text-color=\"primary\">primary color</h3>\n<h3 class=\"uppercase\" data-text-color=\"secondary\">secondary color</h3>\n<h3 class=\"uppercase\" data-text-color=\"alert\">alert color</h3>\n<h3 class=\"uppercase\" data-text-color=\"success\">SUCCESS COLOR</h3>\n<h3 class=\"uppercase\">DEFAULTÂ COLOR</h3>\n\n[/col]\n[col span=\"3\"]\n\n<p><a href=\"#\">Default link<br />\n<strong>Bold link</strong></a><br />\n<strong>Bold text<br />\n</strong><em>Italic text<br />\n</em><del>Strikethrough<br />\n</del><span style=\"text-decoration: underline;\">Underline</span></p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\"]\n\n<p class=\"lead\"><strong>Lead paragraph</strong>.Â dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"4\"]\n\n<p><strong>BoldÂ Text.</strong>Â sit amet, consectetuer <em>italic textÂ Â </em>elit, sed diam nonummy nibh euismod tincidunt ut laoreet <span style=\"text-decoration: underline;\">underline text</span>Â magna aliquam erat volutpat. <del>Strike throught</del>.Â ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea. <a href=\"#\">A simple link.</a></p>\n\n[/col]\n[col span=\"4\"]\n\n<p>Normal Paragraph.Â sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequa</p>\n\n[/col]\n[col span=\"3\"]\n\n<h2 class=\"lead\">Default font</h2>\n<p class=\"lead\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"3\"]\n\n<h2 class=\"lead alt-font\"><b>Alternative Font</b>.</h2>\n<p class=\"lead alt-font\">Dolor sit amet, consectetuer <strong>adipiscing</strong> elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"3\"]\n\n<h2 class=\"lead\">ThinÂ text</h2>\n<p class=\"lead\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"3\"]\n\n<h2 class=\"lead uppercase\">UPPERCASE</h2>\n<p class=\"lead uppercase\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"6\"]\n\n<h2 class=\"lead\">This is aÂ <span class=\"fancy-underline\">Fancy Text Underline</span></h2>\n<p class=\"lead\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"6\"]\n\n<h2 class=\"lead\">This a count up number <span class=\"count-up\"><strong>5000</strong></span></h2>\n<p class=\"lead\">Count up number can be added anywhere.</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h6>Flatsome Tip</h6>\n<h2>You can findÂ many text options in the \"Format\" dropdown in text editor.</h2>\n<p class=\"lead\">You see the changes live if you use the Page Builder</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"17\" depth=\"3\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgb(34, 34, 34)\" dark=\"true\" padding=\"60px\"]\n\n[title style=\"center\" text=\"Typography on Dark background\"]\n\n[row]\n\n[col span=\"3\"]\n\n<h1>Headline h1</h1>\n<h2>Headline h2</h2>\n<h3>Headline h3</h3>\n<h4>Headline h4</h4>\n<h5>Headline h5</h5>\n<h6>Headline h6</h6>\n\n[/col]\n[col span=\"3\"]\n\n<h1 class=\"uppercase\">headlineÂ h1</h1>\n<h2 class=\"uppercase\">headlineÂ h2</h2>\n<h3 class=\"uppercase\">headlineÂ h3</h3>\n<h4 class=\"uppercase\">headlineÂ H4</h4>\n<h5 class=\"uppercase\">headlineÂ H5</h5>\n<h6 class=\"uppercase\">headlineÂ H6</h6>\n\n[/col]\n[col span=\"3\"]\n\n<h3 class=\"uppercase\" data-text-color=\"primary\">primary color</h3>\n<h3 class=\"uppercase\" data-text-color=\"secondary\">secondary color</h3>\n<h3 class=\"uppercase\" data-text-color=\"alert\">alert color</h3>\n<h3 class=\"uppercase\" data-text-color=\"success\">SUCCESS COLOR</h3>\n<h3 class=\"uppercase\">DEFAULTÂ COLOR</h3>\n\n[/col]\n[col span=\"3\"]\n\n<p><a href=\"#\">Default link<br />\n<strong>Bold link</strong></a><br />\n<strong>Bold text<br />\n</strong><em>Italic text<br />\n</em><del>Strikethrough<br />\n</del><span style=\"text-decoration: underline;\">Underline</span></p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\"]\n\n<p class=\"lead\"><strong>Lead paragraph</strong>.Â dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"4\"]\n\n<p><strong>BoldÂ Text.</strong>Â sit amet, consectetuer <em>italic textÂ Â </em>elit, sed diam nonummy nibh euismod tincidunt ut laoreet <span style=\"text-decoration: underline;\">underline text</span>Â magna aliquam erat volutpat. <del>Strike throught</del>.Â ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea. <a href=\"#\">A simple link.</a></p>\n\n[/col]\n[col span=\"4\"]\n\n<p>Normal Paragraph.Â sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequa</p>\n\n[/col]\n[col span=\"7\"]\n\n<h2 class=\"lead\">This is a<span class=\"fancy-underline\">Â Fancy Text Underline</span></h2>\n<p class=\"lead\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"5\"]\n\n<h2 class=\"lead\">This a count up number <span class=\"count-up\"><strong>5000</strong></span></h2>\n<p class=\"lead\">Count up number can be added anywhere.</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section padding=\"60px\"]\n\n[title style=\"center\" text=\"Quote\"]\n\n[row]\n\n[col]\n\n<blockquote>\n<p class=\"lead\"><strong>Quote</strong>.Â dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n</blockquote>\n<p class=\"lead\">Normal Paragraph.Â sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequa. Horizontal Line:</p>\n[title style=\"center\" text=\"Lists\"]\n\n\n[/col]\n[col span=\"2\"]\n\n<ul>\n<li>Simple List</li>\n<li>List item 1</li>\n<li>List Item 2</li>\n<li>List item 3</li>\n<li>List Item 4</li>\n<li>List Item 5</li>\n</ul>\n\n[/col]\n[col span=\"2\"]\n\n<ol>\n<li>Numbered List</li>\n<li>List item 1</li>\n<li>List Item 2</li>\n<li>List item 3</li>\n<li>List Item 4</li>\n<li>List Item 5</li>\n</ol>\n\n[/col]\n[col span=\"2\"]\n\n<ul>\n<li class=\"bullet-checkmark\">Checkmark list</li>\n<li class=\"bullet-checkmark\">List Item 2</li>\n<li class=\"bullet-checkmark\">List item 3</li>\n<li class=\"bullet-checkmark\">List Item 4</li>\n<li class=\"bullet-checkmark\">List Item 5</li>\n</ul>\n\n[/col]\n[col span=\"2\"]\n\n<ul>\n<li class=\"bullet-star\">Star list</li>\n<li class=\"bullet-star\">List Item 2</li>\n<li class=\"bullet-star\">List item 3</li>\n<li class=\"bullet-star\">List Item 4</li>\n<li class=\"bullet-star\">List Item 5</li>\n</ul>\n\n[/col]\n[col span=\"2\"]\n\n<ul>\n<li class=\"bullet-arrow\">Arrow List</li>\n<li class=\"bullet-arrow\">List Item 2</li>\n<li class=\"bullet-arrow\">List item 3</li>\n<li class=\"bullet-arrow\">List Item 4</li>\n<li class=\"bullet-arrow\">List Item 5</li>\n</ul>\n\n[/col]\n\n[/row]\n\n[/section]','Typography','','publish','closed','closed','','typography','','','2021-11-30 12:13:32','2021-11-30 12:13:32','',98,'http://flatsome.dev/?page_id=3971',5,'page','',0),(61,1,'2016-01-13 13:24:12','2016-01-13 13:24:12','[ux_slider]\n\n[ux_banner height=\"700px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.25)\"]\n\n[text_box width=\"51\" animate=\"fadeInLeft\" text_depth=\"1\"]\n\n<h2>Create Amazing Banners with Drag and Drop</h2>\n[divider]\n\n[button text=\"A button\" color=\"success\" depth=\"3\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"700px\" bg=\"18\"]\n\n[text_box width=\"46\" animate=\"fadeInRight\" parallax=\"1\" position_x=\"5\"]\n\n<h2>Lorem ipsum dolor sit amet</h2>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"Buy now\" color=\"white\"]\n\n[button text=\"Learn more\" color=\"white\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row v_align=\"middle\"]\n\n[col span=\"7\"]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_pos=\"44% 39%\"]\n\n[text_box width=\"63\" width__sm=\"78\" padding=\"39px\" position_x=\"5\" position_x__sm=\"50\" text_color=\"dark\" bg=\"rgba(255, 255, 255, 0.85)\" depth=\"2\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"Simple Link\" style=\"link\" icon=\"icon-play\"]\n\n[button text=\"Simple Button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"center\"]\n\n<h2 class=\"lead uppercase\">Drag And Drop Banner System</h2>\n<p class=\"lead\"><span style=\"font-size: 115%;\">Flatsome <strong>Banners</strong> isÂ the heartÂ of Flatsome. Our Banner System let you create beautiful <strong>responsive</strong> banners with drag and drop.</span></p>\n<p class=\"lead\">Â </p>\n[ux_image id=\"17\"]\n\n\n[/col]\n[col span=\"14\"]\n\n[ux_banner height=\"56.25%\" height__sm=\"50%\" bg=\"18\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"glow\"]\n\n[text_box width=\"36\" position_x=\"90\"]\n\n<h3>Small Title</h3>\n<p class=\"lead\">You can place a text box wherever you want on a Banner</p>\n[button text=\"Click me!\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"center\"]\n\n<h2>Banner Focus Point<b>â„¢</b></h2>\n<p class=\"lead\">Set a focus point on the banner and the image will adjust to mobile a tablet screens. Perfect for resposnive Websites.</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"17\" image_size=\"original\"]\n\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Banner Hover effects\"]\n\n[row]\n\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"glow\"]\n\n[text_box width=\"36\"]\n\n<h3>Glow</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"zoom\"]\n\n[text_box width=\"36\"]\n\n<h3>Zoom</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"zoom-fade\"]\n\n[text_box width=\"36\"]\n\n<h3>Zoom Fade</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"blur\"]\n\n[text_box width=\"36\"]\n\n<h3>Blur</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"fade-in\"]\n\n[text_box width=\"36\"]\n\n<h3>Fade In</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"fade-out\"]\n\n[text_box width=\"36\"]\n\n<h3>Fade Out</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"color\"]\n\n[text_box width=\"36\"]\n\n<h3>Add Color</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"grayscale\"]\n\n[text_box width=\"36\"]\n\n<h3>Grayscale</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"overlay-add\"]\n\n[text_box width=\"51\"]\n\n<h3>Add Overlay</h3>\n<p><span style=\"font-size: 140%;\">Overlay can be any color</span></p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\" style=\"text-align: center;\">You can also<strong> combine</strong> hover effects to create amazing hover effects</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"200px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"overlay-add\" border=\"3px 3px 3px 3px\" border_margin=\"10px 10px 10px 10px\" border_hover=\"zoom\"]\n\n[text_box width=\"51\"]\n\n<h3><strong>Add animated borders</strong></h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"200px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"overlay-add\"]\n\n[text_box width=\"51\"]\n\n<h3>Add Overlay</h3>\n<p><span style=\"font-size: 140%;\">Overlay can be any color</span></p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[ux_banner height=\"500px\" bg=\"18\" parallax=\"2\"]\n\n[text_box width=\"41\"]\n\n<h2 class=\"uppercase\">BACKGROUND VIDEO</h2>\n\n[/text_box]\n\n[/ux_banner]','Banners','','publish','closed','closed','','banner','','','2021-11-30 12:13:32','2021-11-30 12:13:32','',98,'http://flatsome.dev/?page_id=3648',4,'page','',0),(62,1,'2016-01-12 17:26:06','2016-01-12 17:26:06','[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.42)\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>IMAGE BOX ELEMENT</strong></h3>\r\n<p class=\"lead\">Create amazing image boxes with unlimited style options.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[section]\r\n\r\n[row]\r\n\r\n[col span=\"4\"]\r\n\r\n[ux_image_box img=\"17\"]\r\n\r\n<h4>Simple Style</h4>\r\n<p>Some smaller text</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"bounce\" img=\"17\"]\r\n\r\n<h4>BounceÂ Style</h4>\r\n<p>Add anything here</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"badge\" img=\"17\"]\r\n\r\n<h4>BadgeÂ Style</h4>\r\n<p>You can add shortcodes here</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"overlay\" img=\"17\"]\r\n\r\n<h2>Overlay Style</h2>\r\n<p class=\"lead\">Add anyÂ elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"label\" img=\"17\"]\r\n\r\n<h4>LabelÂ Style</h4>\r\n<p>Add anyÂ elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"shade\" img=\"17\"]\r\n\r\n<h4>Shade Style</h4>\r\n<p class=\"lead\">Add anyÂ elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"push\" img=\"17\" image_height=\"90%\" text_hover=\"bounce\"]\r\n\r\n<h2>Push Style</h2>\r\n<p>Add anyÂ elements here..</p>\r\n[divider]\r\n\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"8\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n[ux_image_box style=\"vertical\" img=\"17\" image_width=\"48\"]\r\n\r\n<h2>Vertical Style Boxed</h2>\r\n<p class=\"lead\">Add anyÂ elements here..</p>\r\n[button text=\"A button\" style=\"secondary alt-button\" radius=\"10\"]\r\n\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[section]\r\n\r\n[row]\r\n\r\n[col align=\"center\"]\r\n\r\n<h2>Create any kind of Image box by using the options in the Page Builder.</h2>\r\n<p class=\"lead\">We have created many examples here. Mix and Match effects to create your perfect Image Box</p>\r\n\r\n[/col]\r\n[col span=\"4\" depth=\"1\"]\r\n\r\n[ux_image_box img=\"17\" image_height=\"100%\"]\r\n\r\n<h4>Simple Centered Style</h4>\r\n<p>Some smaller text</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"bounce\" img=\"17\" image_height=\"100%\" depth=\"1\" text_bg=\"rgb(66, 66, 66)\" text_color=\"dark\"]\r\n\r\n<h4>BounceÂ Style</h4>\r\n<p>Add anything here</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"overlay\" img=\"17\" image_height=\"125%\" image_hover=\"blur\" text_pos=\"middle\" text_size=\"small\" text_hover=\"zoom-in\"]\r\n\r\n<h2>Overlay Style With Blur and Zoom</h2>\r\n<p>Add anyÂ elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"overlay\" img=\"17\" image_height=\"100%\"]\r\n\r\n<h4>Circle with Blur In Effect</h4>\r\n<p>Add anyÂ elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"shade\" img=\"17\" image_height=\"116%\"]\r\n\r\n<h4>Simple Shade Â Style</h4>\r\n<p class=\"lead\">A beautiful box.</p>\r\n[button text=\"Quick View\" style=\"white\"]\r\n\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"shade\" img=\"17\" image_height=\"100%\" image_radius=\"100\" image_hover=\"zoom\" text_pos=\"middle\" text_hover=\"bounce\"]\r\n\r\n<h3 class=\"uppercase\">Circle Image</h3>\r\n<p class=\"lead\">Create this by adding radius 100% to the image.</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]','Image Box','','publish','closed','closed','','image-box','','','2021-11-30 12:13:32','2021-11-30 12:13:32','',98,'http://flatsome.dev/?page_id=3569',15,'page','',0),(63,1,'2015-11-20 13:46:21','2015-11-20 13:46:21','[ux_banner height=\"540px\" bg=\"18\" bg_size=\"original\" bg_overlay__sm=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"35% 23%\" parallax=\"3\"]\r\n\r\n[text_box width=\"41\" width__sm=\"80\" animate=\"fadeInLeft\" position_x=\"95\" position_x__sm=\"50\" position_y__sm=\"50\"]\r\n\r\n<h3 class=\"alt-font\">Fancy Top Title</h3>\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Shop Now\" color=\"white\" radius=\"99\" link=\"shop\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"540px\" bg=\"18\" bg_color=\"rgb(113, 117, 186)\" bg_pos=\"60% 16%\" parallax=\"3\"]\r\n\r\n[text_box width=\"41\" width__sm=\"82\" position_x=\"10\" position_x__sm=\"50\" position_y__sm=\"50\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Create amazing Parallax effects</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Shop Now\" color=\"white\" radius=\"99\" link=\"shop\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row style=\"collapse\" width=\"full-width\"]\r\n\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"470px\" bg=\"18\" bg_color=\"rgb(164, 113, 186)\" parallax=\"1\"]\r\n\r\n[text_box width=\"58\" width__sm=\"85\" parallax=\"2\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Shop Now\" radius=\"99\" link=\"shop\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"470px\" bg=\"18\" bg_color=\"rgb(218, 218, 218)\" parallax=\"1\"]\r\n\r\n[text_box width=\"34\" width__sm=\"74\" position_x=\"10\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n<h2><strong>299$</strong></h2>\r\n[button text=\"Shop Now\" radius=\"99\" link=\"shop\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(0, 185, 179, 0.91)\"]\r\n\r\n[text_box width__sm=\"79\" parallax=\"2\"]\r\n\r\n<h3 class=\"uppercase\"><strong>SUMMER SALE END SOON</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[ux_countdown bg_color=\"rgba(0, 0, 0, 0.06)\"]\r\n\r\n[button text=\"Shop Now\" color=\"white\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\r\n\r\n[col span=\"6\" span__sm=\"14\"]\r\n\r\n[ux_banner height=\"94%\" bg=\"18\" bg_pos=\"20% 60%\" parallax=\"2\"]\r\n\r\n[text_box width=\"31\" width__sm=\"61\" scale__sm=\"64\" position_x=\"90\" position_y=\"90\" text_align=\"right\" text_color=\"dark\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Add Hotspots to BAnners</strong></h3>\r\n<p class=\"lead\">Hotspots can be added to banners and dragged around. You can have Hotspots that goes to a Product Lightbox or just a simple Tooltip.</p>\r\n\r\n[/text_box]\r\n[ux_hotspot type=\"product\" prod_id=\"416\" text=\"Add product hotspots on banners\" bg_color=\"rgb(47, 166, 162)\" position_x=\"55\" position_y=\"25\"]\r\n\r\n[ux_hotspot text=\"Cool Camera :)\" size=\"large\" bg_color=\"#4DB7B3\" position_x=\"10\" position_y=\"80\"]\r\n\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"17\" padding=\"0px 10% 0px 10%\"]\r\n\r\n[title style=\"center\" text=\"Add a Title here\" size=\"undefined\"]\r\n\r\n[ux_products style=\"overlay\" slider_nav_style=\"circle\" slider_nav_position=\"outside\" columns=\"2\" columns__sm=\"2\" animate=\"fadeInLeft\" image_height=\"166%\" image_size=\"medium\" image_hover=\"overlay-add\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[ux_banner height=\"450px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.63)\" parallax=\"3\"]\r\n\r\n[text_box width__sm=\"93\" parallax=\"2\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Join Our Newsletter</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row style=\"collapse\" width=\"full-width\" v_align=\"equal\"]\r\n\r\n[col span=\"6\" span__sm=\"17\" padding=\"10% 10% 0px 10%\" bg_color=\"rgb(240, 240, 240)\"]\r\n\r\n[title style=\"center\" text=\"Featured\" size=\"undefined\"]\r\n\r\n[ux_products style=\"overlay\" slider_nav_style=\"circle\" slider_nav_position=\"outside\" columns=\"2\" columns__sm=\"2\" animate=\"fadeInLeft\" show=\"featured\" image_height=\"166%\" image_size=\"medium\" image_hover=\"overlay-add\"]\r\n\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"15\"]\r\n\r\n[ux_banner height=\"99%\" bg=\"18\" bg_pos=\"56% 22%\" parallax=\"2\"]\r\n\r\n[text_box width=\"37\" position_x=\"10\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n<h2><strong>29$</strong></h2>\r\n\r\n[/text_box]\r\n[ux_hotspot position_x=\"55\" position_y=\"15\"]\r\n\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[ux_instagram_feed username=\"topshop\" type=\"slider\" slider_nav_style=\"simple\" slider_nav_color=\"light\" width=\"full-width\" columns=\"7\"]','Parallax Shop','','publish','closed','closed','','parallax-shop','','','2021-11-30 12:13:33','2021-11-30 12:13:33','',69,'http://flatsome.dev/?page_id=3288',3,'page','',0),(64,1,'2015-11-20 12:36:31','2015-11-20 12:36:31','','Size Chart','','publish','closed','closed','','size-chart','','','2021-11-30 12:13:33','2021-11-30 12:13:33','',52,'http://flatsome.dev/?page_id=3282',0,'page','',0),(65,1,'2015-11-20 08:27:14','2015-11-20 08:27:14','[section bg_color=\"rgb(241, 241, 241)\" padding=\"8px\" margin=\"15px\"]\r\n\r\n[row style=\"collapse\" col_style=\"dashed\"]\r\n\r\n[col span=\"4\" span__sm=\"12\" padding=\"0px 15px 0px 15px\" align=\"center\"]\r\n\r\n[featured_box img=\"17\" img_width=\"20\" pos=\"left\" margin=\"px px px px\"]\r\n\r\n<p><span style=\"font-size: 90%;\"><strong>Free Delivery</strong> World Wide* <a href=\"#\">Learn more</a></span></p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" padding=\"0px 15px 0px 15px\"]\r\n\r\n[featured_box img=\"17\" img_width=\"20\" pos=\"left\" margin=\"px px px px\"]\r\n\r\n<p><span style=\"font-size: 90%;\">Loved by our Customers. <strong>5000+</strong> Reviews</span></p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" padding=\"0px 15px 0px 15px\"]\r\n\r\n[featured_box img=\"17\" img_width=\"20\" pos=\"left\" margin=\"px px px px\"]\r\n\r\n<p><span style=\"font-size: 90%;\"><strong>Free Returns</strong> and <strong>Free Shipping</strong></span></p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[ux_banner_grid]\r\n\r\n[col_grid span=\"9\" span__sm=\"12\"]\r\n\r\n[ux_slider]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width__sm=\"80\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"64% 34%\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width=\"54\" width__sm=\"80\" position_x=\"85\" text_align=\"right\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width__sm=\"80\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"87\"]\r\n\r\n<h3 class=\"alt-font\">Don\'t Miss</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>Sale ends soon</strong></span></h2>\r\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.17)\"]\r\n\r\n[button text=\"Browse Now\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"18\" bg_size=\"thumbnail\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"87\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>SUMMER SALE</strong></span></h2>\r\n[button text=\"Browse Now\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n[title text=\"Our BestSellers\" size=\"undefined\" link_text=\"Browse All\" link=\"#\"]\r\n\r\n[ux_products columns=\"5\" cat=\"73\" products=\"6\" orderby=\"sales\" image_height=\"106%\" text_bg=\"rgb(255, 255, 255)\" text_padding=\"20px 20px 20px 20px\"]\r\n\r\n[title text=\"Latest on Sale\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\r\n\r\n[ux_products columns=\"5\" orderby=\"sales\" show=\"onsale\" image_height=\"106%\" text_bg=\"rgb(255, 255, 255)\"]\r\n\r\n[title text=\"Weekly Featured Products\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\r\n\r\n[ux_products columns=\"5\" cat=\"73\" products=\"6\" image_height=\"106%\" text_bg=\"rgb(255, 255, 255)\"]\r\n\r\n[gap height=\"50px\"]\r\n\r\n[ux_banner height=\"399px\" bg=\"18\" bg_size=\"large\" bg_overlay=\"rgba(0, 0, 0, 0.08)\" bg_pos=\"53% 43%\" parallax=\"3\"]\r\n\r\n[text_box width=\"58\" width__sm=\"80\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Sale Ends Soon</strong></h2>\r\n<h4 class=\"lead uppercase\">Up to <strong>50% off</strong> selected products</h4>\r\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.23)\"]\r\n\r\n[button text=\"Browse now\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[gap height=\"44px\"]\r\n\r\n[ux_product_categories style=\"bounce\" image_height=\"107%\"]','Mega Shop','','publish','closed','closed','','mega-shop','','','2021-11-30 12:13:33','2021-11-30 12:13:33','',69,'http://flatsome.dev/?page_id=3257',9,'page','',0),(66,1,'2015-11-17 20:28:02','2015-11-17 20:28:02','Coming soon...','Booking','','publish','closed','closed','','booking','','','2021-11-30 12:13:33','2021-11-30 12:13:33','',70,'http://demoweblinks.in:8888/flatsome-next/?page_id=3055',5,'page','',0),(67,1,'2015-11-17 20:27:42','2015-11-17 20:27:42','Coming soon...','Lifestyle','','publish','closed','closed','','lifestyle','','','2021-11-30 12:13:33','2021-11-30 12:13:33','',70,'http://demoweblinks.in:8888/flatsome-next/?page_id=3053',10,'page','',0),(68,1,'2015-11-17 20:25:08','2015-11-17 20:25:08','<!-- wp:html -->\n[ux_banner height=\"100%\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" bg_pos=\"49% 43%\" parallax=\"4\" link=\"Portfolio\"]\n\n[text_box width=\"59\" width__sm=\"100\" scale__sm=\"131\" animate=\"fadeInUp\" parallax=\"-3\" text_depth=\"1\"]\n\n<h1 class=\"uppercase\"><strong>WE\'re a creative Agency</strong></h1>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner_grid spacing=\"collapse\" height=\"885\" width=\"full-width\"]\n\n[col_grid span=\"6\" height=\"2-3\"]\n\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.2)\" bg_pos=\"53% 69%\" hover=\"zoom\" link=\"Portfolio\"]\n\n[text_box width=\"37\" animate=\"fadeInRight\" position_x=\"10\" position_y=\"80\" text_align=\"left\"]\n\n[video_button size=\"130\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p class=\"lead\">A Website for Acme Company</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" height=\"1-2\"]\n\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.19)\" bg_pos=\"53% 69%\" hover=\"zoom\" link=\"Portfolio\"]\n\n[text_box width=\"30\" animate=\"fadeInLeft\" position_x=\"90\" text_align=\"right\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p class=\"lead\">A Website for Acme Company</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"3\" height=\"1-2\"]\n\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.21)\" hover=\"zoom\" link=\"Portfolio\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p class=\"lead\">A Website for Acme Company</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"3\" height=\"1-2\"]\n\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.47)\" bg_pos=\"34% 46%\" hover=\"zoom\" link=\"Portfolio\"]\n\n[text_box hover=\"fade-out\" position_y=\"95\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p class=\"lead\">A Website for Acme Company</p>\n\n[/text_box]\n[text_box hover=\"zoom-in\"]\n\n[video_button size=\"178\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" height=\"1-3\"]\n\n[ux_banner height=\"500px\" bg=\"18\" hover=\"zoom\"]\n\n[text_box text_color=\"dark\" width=\"39\" position_x=\"10\" position_y=\"70\" text_align=\"left\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p class=\"lead\">A Website for Acme Company</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[row]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[button text=\"Browse Portfolio\" style=\"outline\" size=\"larger\" radius=\"99\" icon=\"icon-angle-right\" icon_reveal=\"true\" link=\"Portfolio\"]\n\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Our Clients\"]\n\n[row col_style=\"dashed\" v_align=\"middle\"]\n\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo hover=\"color\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo hover=\"color\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo hover=\"color\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo hover=\"color\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo hover=\"color\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo hover=\"color\"]\n\n\n[/col]\n\n[/row]\n[gap]\n\n[section label=\"Media Right\" bg_color=\"rgb(207, 207, 207)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" h_align=\"center\"]\n\n[col span=\"9\" span__sm=\"12\" align=\"center\"]\n\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\">Contact Us</span></h2>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n[accordion auto_open=\"true\"]\n\n[accordion-item title=\"How long does it takes to we get back to you\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/accordion-item]\n[accordion-item]\n\n\n[/accordion-item]\n[accordion-item title=\"Add anything here\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/accordion-item]\n[accordion-item title=\"Research\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/accordion-item]\n\n[/accordion]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n(insert contact form here)\n\n\n[/col]\n\n[/row]\n\n[/section]\n[title style=\"center\" text=\"LAtest NEws\" margin_top=\"22px\" size=\"undefined\"]\n\n[blog_posts style=\"push\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"3\" badge_style=\"circle\" image_height=\"180px\"]\n<!-- /wp:html -->','Agency','','publish','closed','closed','','agency','','','2021-12-10 09:56:21','2021-12-10 09:56:21','',70,'http://demoweblinks.in:8888/flatsome-next/?page_id=3049',3,'page','',0),(69,1,'2015-11-17 20:15:56','2015-11-17 20:15:56','[section bg_color=\"#fafafa\"]\r\n\r\n[block id=\"17\"]\r\n\r\n\r\n[/section]','Demos','','publish','closed','closed','','demos','','','2015-11-17 20:15:56','2015-11-17 20:15:56','',0,'http://demoweblinks.in:8888/flatsome-next/?page_id=3031',0,'page','',0),(70,1,'2015-11-17 19:45:39','2015-11-17 19:45:39','Business demos','Business Demos','','publish','closed','closed','','business-demos','','','2015-11-17 19:45:39','2015-11-17 19:45:39','',69,'http://demoweblinks.in:8888/flatsome-next/?page_id=3025',0,'page','',0),(72,1,'2014-02-10 14:07:58','2014-02-10 14:07:58','[section label=\"Top Section\" bg=\"18\" bg_color=\"rgb(41, 41, 41)\" bg_overlay=\"rgba(0, 0, 0, 0.19)\" bg_pos=\"65% 40%\" parallax=\"3\" dark=\"true\" padding=\"0px\" height=\"424px\"]\n\n[row]\n\n[col span__sm=\"12\" padding=\"5% 6% 0px 10%\" align=\"center\"]\n\n<h1 class=\"uppercase\"><strong>Section Element</strong></h1>\n<p class=\"lead\">Sections are used for creating full width backgrounds with content inside it. You can haveÂ Parallax Effects and Background Videos.</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(233, 233, 233)\" padding=\"50px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n<h3>A Simple section with a two column row inside</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(41, 41, 41)\" bg_overlay=\"rgb(36, 36, 36)\" dark=\"true\" padding=\"60px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n<h3>A Dark section with a row inside</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Background Video\" bg_color=\"rgb(41, 41, 41)\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" dark=\"true\" padding=\"128px\" video_mp4=\"http://flatsome.dev/wp-content/uploads/2016/02/348462762.mp4\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n<h2>A section with aÂ background video</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"18\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.51)\" dark=\"true\" padding=\"60px\" height=\"50vh\"]\n\n[row style=\"collapse\" h_align=\"center\"]\n\n[col span=\"6\" align=\"center\"]\n\n<h2>A section canÂ have a background image or a background color</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(243, 243, 243)\" padding=\"61px\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"6\"]\n\n<h2>A SectionÂ with a Image on the right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\"]\n\n[ux_image id=\"17\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Parallax Video\" bg_color=\"rgb(41, 41, 41)\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" parallax=\"4\" dark=\"true\" padding=\"128px\" video_mp4=\"http://flatsome.dev/wp-content/uploads/2016/02/348462762.mp4\"]\n\n[row h_align=\"center\"]\n\n[col span=\"4\" span__sm=\"9\" align=\"center\"]\n\n<h2>A Parallax Background Video</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" sticky=\"true\" padding=\"61px\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"17\" depth=\"4\" depth_hover=\"5\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<h2>A sticky section with images left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"Click me!\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(50, 50, 50)\" dark=\"true\" sticky=\"true\" padding=\"61px\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n<h2>A sticky section with imagesÂ right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"Click me!\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"17\" depth=\"4\" depth_hover=\"5\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"18\" bg_color=\"rgb(243, 243, 243)\" bg_overlay=\"rgba(255, 255, 255, 0.9)\" padding=\"61px\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n<h2>AÂ Section with ImageÂ and a background</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"17\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" padding=\"61px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"17\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10%\" align=\"center\" max_width=\"520px\"]\n\n<h2>AÂ Section with a large image left.</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"61px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" h_align=\"right\"]\n\n[col span=\"6\" padding=\"10%\" align=\"center\" max_width=\"520px\"]\n\n<h2>AÂ Section with a large image right.</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\"]\n\n[ux_image id=\"17\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"18\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.51)\" parallax=\"1\" dark=\"true\" padding=\"97px\" height=\"300px\"]\n\n[title text=\"Section With a parallax background\"]\n\n[row h_align=\"center\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[row h_align=\"center\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"18\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(255, 255, 255, 0.89)\" bg_pos=\"25% 0%\" parallax=\"1\" padding=\"60px\" height=\"300px\"]\n\n[row style=\"collapse\" width=\"full-width\" h_align=\"center\"]\n\n[col span=\"6\" padding=\"0 10%\" align=\"center\"]\n\n<h2>A product slider inside a section</h2>\n[button text=\"Click me now\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(63, 63, 63)\" dark=\"true\" mask=\"arrow\" height=\"365px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"10\"]\n\n<h3>Section With A Arrow Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(160, 160, 160)\" dark=\"true\" mask=\"angled\" height=\"365px\"]\n\n[row]\n\n[col span=\"5\" span__sm=\"10\"]\n\n<h3>Section with an Angled Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(77, 77, 77)\" dark=\"true\" mask=\"angled-right\" height=\"365px\"]\n\n[row]\n\n[col span=\"5\" span__sm=\"10\"]\n\n<h3>Section with an Angled Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"18\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(117, 117, 117, 0.44)\" dark=\"true\" mask=\"angled-right\" height=\"365px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"9\"]\n\n<h3>Section with Angled Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(77, 77, 77)\" dark=\"true\" mask=\"arrow-large\" height=\"365px\"]\n\n[row]\n\n[col]\n\n<h3>Section with a Large Arrow Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]','Sections','','publish','closed','closed','','sections','','','2021-11-30 12:13:33','2021-11-30 12:13:33','',98,'http://demoweblinks.in:8888/test/?page_id=2585',1,'page','',0),(73,1,'2014-02-08 21:03:57','2014-02-08 21:03:57','[section bg_color=\"rgb(237, 239, 241)\" border=\"1px 0px 1px 0px\" border_color=\"rgba(0, 0, 0, 0.13)\"]\r\n\r\n[title style=\"center\" text=\"Banner Grid Element\" size=\"120\"]\r\n\r\n[ux_banner_grid height=\"600\" depth=\"1\"]\r\n\r\n[col_grid span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner bg=\"18\" bg_pos=\"64% 30%\" border_color=\"rgba(0, 0, 0, 0.05)\"]\r\n\r\n[text_box width=\"70\"]\r\n\r\n<h2 class=\"alt-font\">A Cute Title</h2>\r\n<h2 class=\"uppercase\"><strong><span style=\"font-size: 140%;\">This is a simple headline</span></strong></h2>\r\n<p class=\"lead\"><span style=\"font-size: 130%;\">A Small text</span></p>\r\n[button text=\"Click me!\" style=\"outline\" size=\"xlarge\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\"]\r\n\r\n[ux_banner bg=\"18\" bg_pos=\"51% 56%\" border_color=\"rgba(0, 0, 0, 0.08)\"]\r\n\r\n[text_box width=\"69\" width__sm=\"60\" position_y=\"5\"]\r\n\r\n<h2 class=\"uppercase\"><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"5\" span__sm=\"14\" height=\"1-3\"]\r\n\r\n[ux_banner bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(255, 255, 255, 0.15)\" bg_pos=\"51% 30%\" border_color=\"rgba(0, 0, 0, 0.08)\"]\r\n\r\n[text_box text_color=\"dark\" width=\"42\" position_x=\"10\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"5\" span__sm=\"12\" height=\"2-3\"]\r\n\r\n[ux_banner bg=\"18\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"71% 19%\" border_color=\"rgba(0, 0, 0, 0.07)\"]\r\n\r\n[text_box width=\"70\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>SALE ENDS SOON</strong></h2>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[row v_align=\"middle\"]\r\n\r\n[col span=\"5\" span__sm=\"12\"]\r\n\r\n<h2 class=\"uppercase\">DRAG AND DROP EDITING</h2>\r\n<p class=\"lead\">Creating amazing Banner Grids is incredible easy with the new <strong>UX Builder</strong></p>\r\n\r\n[/col]\r\n[col span=\"7\" span__sm=\"12\"]\r\n\r\n[ux_image id=\"17\" depth=\"3\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[section bg=\"18\" bg_color=\"rgb(28, 28, 28)\" bg_overlay=\"rgba(0, 0, 0, 0.72)\" parallax=\"2\" dark=\"true\"]\r\n\r\n[title style=\"center\" text=\"Banner Grid With A Background\" size=\"undefined\"]\r\n\r\n[ux_banner_grid height=\"666\" depth=\"1\"]\r\n\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_pos=\"32% 58%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"65\" width__sm=\"90\" scale=\"102\" animate=\"fadeInLeft\" position_x=\"10\" text_align=\"left\"]\r\n\r\n<h6 class=\"uppercase\">Featured Vendor</h6>\r\n<h2><strong>This Week Featured Vendor</strong></h2>\r\n<p class=\"lead\">Change this to anything.Â Consectetuer adipiscing elit.</p>\r\n[button text=\"Go To Shop\" style=\"outline\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"74\"]\r\n\r\n<h2><strong>This is a simple banner</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"15\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" bg_pos=\"66% 22%\" hover=\"zoom\"]\r\n\r\n[text_box text_color=\"dark\" width=\"80\" width__sm=\"60\" animate=\"fadeInLeft\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h6 class=\"uppercase\">Featured Vendor</h6>\r\n<h2><strong>WooÂ Vendor Shop</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" hover=\"zoom\"]\r\n\r\n[text_box width=\"80\" position_x=\"10\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h2><strong>This is a simple banner</strong></h2>\r\n<p class=\"lead\">Change this text to anything</p>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"8\" span__sm=\"15\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.09)\" bg_pos=\"61% 30%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"79\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h2><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[title style=\"center\" text=\"Use Banner Grids to Create Portfolio Grids\" margin_top=\"31px\" size=\"undefined\"]\r\n\r\n[ux_banner_grid spacing=\"collapse\" height=\"885\" width=\"full-width\"]\r\n\r\n[col_grid span=\"6\" span__sm=\"13\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.2)\" bg_pos=\"53% 69%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"37\" animate=\"fadeInRight\" position_x=\"10\" position_y=\"80\" text_align=\"left\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" span__sm=\"15\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.19)\" bg_pos=\"53% 69%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"30\" animate=\"fadeInLeft\" position_x=\"90\" text_align=\"right\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"14\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.21)\" hover=\"zoom\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"14\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.15)\" bg_pos=\"34% 46%\" hover=\"zoom\"]\r\n\r\n[text_box hover=\"fade-out\" position_y=\"95\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n[text_box hover=\"zoom-in\"]\r\n\r\n[video_button size=\"178\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" span__sm=\"15\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" hover=\"zoom\"]\r\n\r\n[text_box text_color=\"dark\" width=\"39\" position_x=\"5\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n[title style=\"center\" text=\"Add Slider to Banner Grids\" margin_top=\"28px\" size=\"undefined\"]\r\n\r\n[ux_banner_grid]\r\n\r\n[col_grid span=\"9\" span__sm=\"12\"]\r\n\r\n[ux_slider]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width__sm=\"80\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"64% 34%\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width=\"54\" width__sm=\"80\" position_x=\"85\" text_align=\"right\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width__sm=\"80\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"87\"]\r\n\r\n<h3 class=\"alt-font\">Don\'t Miss</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>Sale ends soon</strong></span></h2>\r\n[button text=\"Browse Now\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"18\" bg_size=\"thumbnail\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"87\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>SUMMER SALE</strong></span></h2>\r\n[button text=\"Browse Now\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]','Banner Grids','','publish','closed','closed','','banner-grid','','','2021-11-30 12:13:33','2021-11-30 12:13:33','',98,'http://demoweblinks.in:8888/test/?page_id=2560',13,'page','',0),(74,1,'2013-12-30 15:48:22','2013-12-30 15:48:22','[gap height=\"32px\"]\r\n\r\n[ux_banner_grid]\r\n\r\n[col_grid span=\"6\" span__sm=\"12\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"65% 16%\" hover=\"overlay-add\"]\r\n\r\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"80\" scale=\"99\" position_x=\"10\" position_y=\"90\" text_align=\"left\"]\r\n\r\n<p class=\"lead alt-font\"><span style=\"font-size: 190%;\">Add any text here...</span></p>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\r\n[divider align=\"left\"]\r\n\r\n[button text=\"Browse\" style=\"outline\" size=\"larger\"]\r\n\r\n[button text=\"Shop now\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" bg_pos=\"58% 24%\"]\r\n\r\n[text_box width=\"80\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any CONTENT here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" height=\"1-2\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\"]\r\n\r\n[text_box width=\"80\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"13\" height=\"1-2\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" hover=\"glow\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n[title style=\"center\" text=\"Featured Products\" margin_top=\"22px\" size=\"undefined\"]\r\n\r\n[ux_products show=\"featured\"]\r\n\r\n[title style=\"center\" text=\"Featured Categories\" size=\"undefined\"]\r\n\r\n[ux_product_categories]\r\n\r\n[gap height=\"36px\"]\r\n\r\n[ux_banner height=\"366px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" bg_pos=\"60% 0%\" parallax=\"1\"]\r\n\r\n[text_box width=\"49\" width__sm=\"78\" position_x=\"10\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Signup for Newsletter</strong></h3>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonumm.</p>\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Latest news\" size=\"undefined\"]\r\n\r\n[blog_posts badge_style=\"square\" image_height=\"75%\" image_hover=\"zoom\"]\r\n\r\n[title style=\"bold-center\" text=\"Follow on instagram\" icon=\"icon-instagram\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" type=\"slider\" width=\"full-width\" columns=\"6\"]','Grid Style 1','','publish','closed','closed','','grid-style-1','','','2013-12-30 15:48:22','2013-12-30 15:48:22','',69,'http://demoweblinks.in:8888/test/?page_id=2138',6,'page','',0),(75,1,'2013-12-20 14:31:52','2013-12-20 14:31:52','[ux_banner height=\"444px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.3)\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>LIGHTBOXÂ SHORTCODE</strong></h3>\r\n<p class=\"lead\">Open any content in a lightbox</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[button text=\"Lightbox button\" link=\"#test\"]\r\n\r\n<p><a href=\"#test\">Lightbox link</a></p>\r\n<p>[lightbox id=\"test\" width=\"600px\" padding=\"20px\"]<br />Add lightbox content here...<br />\r\n[/lightbox]\r\n</p>\r\n<pre>[button text=\"Lightbox button\" link=\"<b>#test</b>\"][lightbox id=\"<b>test</b>\" width=\"600px\" padding=\"20px\"]Add lightbox content here...[/lightbox]</pre>\r\n\r\n[/col]\r\n\r\n[/row]','Lightbox','','publish','closed','closed','','lightbox','','','2021-11-30 12:13:33','2021-11-30 12:13:33','',98,'http://demoweblinks.in:8888/test/?page_id=2058',16,'page','',0),(76,1,'2013-12-16 09:57:42','2013-12-16 09:57:42','[ux_slider]\r\n\r\n[ux_banner height=\"100%\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.31)\" bg_pos=\"68% 27%\"]\r\n\r\n[text_box width=\"52\" width__sm=\"80\" animate=\"bounceIn\" parallax=\"-1\" position_x__sm=\"50\" position_y__sm=\"50\"]\r\n\r\n<p class=\"alt-font\"><span style=\"font-size: 160%;\">Now Online!</span></p>\r\n<h2 class=\"uppercase\"><strong><span style=\"font-size: 200%;\" data-line-height=\"xs\">BIG SalE</span></strong></h2>\r\n<h3 class=\"lead uppercase\">up to <strong>70%</strong> off</h3>\r\n[button text=\"Shop Now\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"68% 11%\"]\r\n\r\n[text_box width=\"52\" width__sm=\"77\" animate=\"fadeInUp\" parallax=\"-1\" position_x=\"10\" position_x__sm=\"5\" position_y__sm=\"50\" text_align=\"left\"]\r\n\r\n<p class=\"alt-font\"><span style=\"font-size: 160%;\">New Trends 2016</span></p>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 150%;\"><strong><span data-line-height=\"xs\">CELEBRATE SUMMER<br /></span></strong></span></h2>\r\n[button text=\"Shop Now\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n[row style=\"collapse\" width=\"full-width\"]\r\n\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"250px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.12)\" bg_pos=\"42% 18%\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"75\"]\r\n\r\n<h4 class=\"uppercase\">Summer 2017</h4>\r\n<h2 class=\"uppercase\"><strong>NEW Summer Trends</strong></h2>\r\n[button text=\"Shop now\" color=\"white\" style=\"outline\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"250px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.2)\" bg_pos=\"50% 57%\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"70\" position_x=\"10\" text_align=\"left\"]\r\n\r\n<h4 class=\"uppercase\">Summer 2017</h4>\r\n<h2 class=\"uppercase\"><strong>NEW Summer Trends</strong></h2>\r\n[button text=\"Shop now\" color=\"white\" style=\"outline\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"250px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"31% 0%\" hover=\"zoom-fade\"]\r\n\r\n[text_box text_color=\"dark\" width=\"70\" position_x=\"90\" text_align=\"right\"]\r\n\r\n<h4 class=\"uppercase\">Summer 2017</h4>\r\n<h2 class=\"uppercase\"><strong>NEW Summer Trends</strong></h2>\r\n[button text=\"Shop now\" color=\"white\" style=\"outline\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row h_align=\"center\"]\r\n\r\n[col span=\"7\" span__sm=\"12\" padding=\"40px 0px 0px 0px\" align=\"center\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 160%;\">Welcome to our Shop</span></h2>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"About us\" style=\"outline\" size=\"small\" radius=\"99\" link=\"about-us\"]\r\n\r\n[button text=\"Shop now\" size=\"small\" radius=\"99\" icon_pos=\"left\" link=\"shop\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Browse products\" size=\"undefined\"]\r\n\r\n[ux_product_categories style=\"overlay\" type=\"grid\" grid_height=\"400px\" number=\"4\" image_hover=\"zoom\" image_hover_alt=\"glow\" text_pos=\"middle\" text_size=\"large\"]\r\n\r\n[title style=\"center\" text=\"Browse products\" size=\"undefined\"]\r\n\r\n[ux_products cat=\"81\"]\r\n\r\n[ux_banner height=\"426px\" bg=\"18\" bg_pos=\"72% 78%\" parallax=\"3\"]\r\n\r\n[text_box width=\"61\" width__sm=\"79\" scale__sm=\"158\" animate=\"fadeInRight\" position_x__sm=\"50\" border_style=\"dashed\" border_radius=\"0\" border_color=\"rgba(255, 255, 255, 0.27)\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Signup for newsletter</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row]\r\n\r\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"17\" pos=\"center\" title=\"Shop Feature 1\" icon_border=\"1\" margin=\"px px px px\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"17\" pos=\"center\" title=\"Shop Feature 2\" icon_border=\"1\" margin=\"px px px px\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"17\" pos=\"center\" title=\"Shop Feature 3\" icon_border=\"1\" margin=\"px px px px\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Latest news\" margin_top=\"30px\" size=\"undefined\"]\r\n\r\n[blog_posts style=\"vertical\" slider_nav_style=\"circle\" slider_nav_position=\"outside\" columns=\"2\" title_style=\"uppercase\" badge_style=\"circle-inside\" image_height=\"100%\" image_width=\"53\" image_radius=\"100\"]\r\n\r\n[title style=\"center\" text=\"Follow Us on Instagram\" icon=\"icon-instagram\" margin_top=\"30px\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" type=\"slider\" slider_nav_style=\"circle\" slider_nav_color=\"light\" width=\"full-width\" columns=\"6\"]','Fullscreen Fashion','','publish','closed','closed','','fullscreen-fashion','','','2013-12-16 09:57:42','2013-12-16 09:57:42','',69,'http://demoweblinks.in:8888/test/?page_id=2000',5,'page','',0),(77,1,'2013-09-07 23:21:13','2013-09-07 23:21:13','[woocommerce_order_tracking]','Track your order','','publish','closed','closed','','track-order','','','2013-09-07 23:21:13','2013-09-07 23:21:13','',0,'http://demoweblinks.in:8888/test/?page_id=790',0,'page','',0),(78,1,'2013-08-19 19:35:32','2013-08-19 19:35:32','[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(255, 255, 255, 0.61)\" bg_pos=\"41% 71%\" parallax=\"3\"]\r\n\r\n[text_box parallax=\"2\" text_color=\"dark\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Message Box Element</strong></h2>\r\n<p class=\"lead\">Create beautiful Call to Action areas.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[title style=\"center\" text=\"Message Box Element\"]\r\n\r\n[message_box padding=\"27\"]\r\n\r\n[row_inner v_align=\"middle\" h_align=\"center\"]\r\n\r\n[col_inner span=\"9\" span__sm=\"12\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col_inner]\r\n[col_inner span=\"2\" span__sm=\"12\" align=\"center\"]\r\n\r\n[button text=\"Click me\" color=\"white\" style=\"outline\" radius=\"99\"]\r\n\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n\r\n[/message_box]\r\n[title style=\"center\" text=\"Use to Create Call to Actions areas\" margin_top=\"23px\"]\r\n\r\n[message_box bg=\"18\" bg_color=\"rgba(0, 0, 0, 0.62)\" padding=\"27\"]\r\n\r\n[row_inner v_align=\"middle\" h_align=\"center\"]\r\n\r\n[col_inner span=\"8\" span__sm=\"12\"]\r\n\r\n<h2 class=\"uppercase\">Use Message Boxes to create Call to action messages</h2>\r\n\r\n[/col_inner]\r\n[col_inner span=\"3\" span__sm=\"12\" align=\"center\"]\r\n\r\n[button text=\"Click me now\" color=\"white\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n\r\n[/message_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Full Width Message box\" margin_top=\"23px\"]\r\n\r\n[message_box bg=\"18\" bg_color=\"rgba(0, 0, 0, 0.75)\" padding=\"27\"]\r\n\r\n[row v_align=\"middle\" h_align=\"center\"]\r\n\r\n[col span=\"6\" span__sm=\"15\"]\r\n\r\n<h3 class=\"uppercase\">Signup for Newsletter and get <span class=\"fancy-underline\">50% off</span> your next purchase</h3>\r\n\r\n[/col]\r\n[col span=\"5\" span__sm=\"17\" align=\"right\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/message_box]','Message box','','publish','closed','closed','','message-box','','','2021-11-30 12:13:34','2021-11-30 12:13:34','',98,'http://demoweblinks.in:8888/test/?page_id=670',21,'page','',0),(79,1,'2013-08-18 15:48:20','2013-08-18 15:48:20','[ux_banner height=\"360px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"56% 97%\" parallax=\"2\"]\n\n[text_box width=\"63\" width__sm=\"60%\" text_depth=\"1\"]\n\n<h3 class=\"uppercase\"><strong>Categories Element</strong></h3>\n<p class=\"lead\">Create beautiful overview of your Shop categories. There is almost unlimited variations, but here areÂ some examples.</p>\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col]\n\n[title style=\"center\" text=\"Simple\"]\n\n[ux_product_categories style=\"normal\"]\n\n[title style=\"center\" text=\"Badge style\"]\n\n[ux_product_categories]\n\n[title style=\"center\" text=\"Overlay Style\"]\n\n[ux_product_categories style=\"overlay\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" image_overlay=\"rgba(0, 0, 0, 0.19)\" image_hover=\"overlay-remove-50\" image_hover_alt=\"zoom\"]\n\n[title style=\"center\" text=\"Grid style\"]\n\n[ux_product_categories style=\"overlay\" type=\"grid\" grid=\"3\" columns=\"3\" animate=\"fadeInLeft\" number=\"4\" orderby=\"name\" image_size=\"large\" image_overlay=\"rgba(38, 38, 38, 0.16)\" text_pos=\"middle\" text_size=\"large\"]\n\n[title style=\"center\" text=\"Circle Style\"]\n\n[ux_product_categories style=\"overlay\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" image_height=\"100%\" image_radius=\"100\" image_overlay=\"rgba(0, 0, 0, 0.19)\" image_hover=\"overlay-remove-50\" image_hover_alt=\"zoom\" text_pos=\"middle\" text_size=\"large\" text_hover=\"bounce\"]\n\n\n[/col]\n\n[/row]\n[section bg_color=\"rgb(51, 51, 51)\" dark=\"true\"]\n\n[title style=\"center\" text=\"Be creative! Mix and match settings\"]\n\n[ux_product_categories style=\"overlay\" type=\"grid\" grid=\"13\" col_spacing=\"small\" columns=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\" number=\"5\" orderby=\"name\" image_size=\"large\" image_overlay=\"rgba(38, 38, 38, 0.16)\" image_hover=\"color\" image_hover_alt=\"zoom-long\" text_pos=\"middle\" text_size=\"large\"]\n\n\n[/section]','Product Categories','','publish','closed','closed','','product-categories','','','2021-11-30 12:13:34','2021-11-30 12:13:34','',98,'http://demoweblinks.in:8888/test/?page_id=654',22,'page','',0),(80,1,'2013-08-18 15:41:31','2013-08-18 15:41:31','[ux_banner height=\"451px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.45)\"]\r\n\r\n[text_box width=\"66\" parallax=\"-4\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Product Element</strong></h2>\r\n<p class=\"lead\">List products anywhere in a beautiful style. Choose between Slider, Rows, Grid and Masonry Style. Select products from a custom category or sort by sales, featured items or latest. You can also select custom products.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Simple Sale Slider\"]\r\n\r\n[ux_products orderby=\"sales\" show=\"onsale\"]\r\n\r\n[title style=\"bold-center\" text=\"Featured Products Slider\" icon=\"icon-star\"]\r\n\r\n[ux_products  show=\"featured\"]\r\n\r\n[title style=\"bold-center\" text=\"Best Selling Products\" icon=\"icon-heart\"]\r\n\r\n[ux_products orderby=\"sales\"]\r\n\r\n[title style=\"bold-center\" text=\"Lookbook style\"]\r\n\r\n[ux_products style=\"shade\" slider_nav_style=\"circle\" col_spacing=\"normal\" depth=\"1\" depth_hover=\"5\" cat=\"tops\" image_height=\"200%\" image_size=\"medium\" image_hover=\"overlay-add\" image_hover_alt=\"zoom-long\" text_size=\"large\" text_hover=\"hover-slide\"]\r\n\r\n[title style=\"bold-center\" text=\"Lookbook style 2\"]\r\n\r\n[ux_products style=\"overlay\" slider_nav_style=\"circle\" width=\"full-width\" col_spacing=\"collapse\" columns=\"6\" cat=\"80\" orderby=\"rand\" image_height=\"200%\" image_size=\"medium\" image_overlay=\"rgba(0, 0, 0, 0.58)\" image_hover=\"overlay-add\" image_hover_alt=\"zoom-long\" text_pos=\"middle\" text_size=\"large\" text_hover=\"zoom-in\"]\r\n\r\n[title style=\"bold-center\" text=\"Grid Style\" margin_top=\"16px\"]\r\n\r\n[ux_products style=\"shade\" type=\"grid\" grid_height=\"650px\" products=\"4\" orderby=\"sales\" show=\"featured\" image_overlay=\"rgba(0, 0, 0, 0.19)\" image_hover=\"zoom\" image_hover_alt=\"glow\" text_align=\"left\" text_size=\"large\"]\r\n\r\n[title style=\"bold-center\" text=\"Masonery Style\"]\r\n\r\n[ux_products type=\"masonry\" depth=\"1\" depth_hover=\"5\" text_align=\"left\"]\r\n\r\n[title style=\"bold-center\" text=\"Mix and match styles\"]\r\n\r\n[ux_products style=\"overlay\" image_height=\"169%\" image_size=\"medium\" image_overlay=\"rgba(0, 0, 0, 0.67)\" image_hover=\"color\" image_hover_alt=\"overlay-remove-50\" text_size=\"large\"]','Products','','publish','closed','closed','','products','','','2021-11-30 12:13:34','2021-11-30 12:13:34','',98,'http://demoweblinks.in:8888/test/?page_id=650',23,'page','',0),(81,1,'2013-08-18 15:12:19','2013-08-18 15:12:19','[ux_banner height=\"329px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.28)\" parallax=\"2\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>Share & Follow Icons</strong></h3>\r\n<p>Beautiful Share and Follow Icons that you can insert anywhere with the Page Builder.</p>\r\n[follow facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[section bg_color=\"rgb(255, 255, 255)\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[title text=\"Share icons\"]\r\n\r\n[share]\r\n\r\n[title text=\"Follow icons\"]\r\n\r\n[follow facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title text=\"Follow icons Fill\"]\r\n\r\n[follow style=\"fill\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title text=\"Follow icons small\"]\r\n\r\n[follow style=\"small\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title style=\"center\" text=\"Follow icons Larger\" size=\"undefined\"]\r\n\r\n[follow align=\"center\" scale=\"134\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title style=\"center\" text=\"Follow Icons Larger Fill\" size=\"undefined\"]\r\n\r\n[follow style=\"fill\" align=\"center\" scale=\"128\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title style=\"center\" text=\"Follow Icons Large\" size=\"undefined\"]\r\n\r\n[follow style=\"small\" align=\"center\" scale=\"177\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[section bg_color=\"rgb(48, 48, 48)\" dark=\"true\"]\r\n\r\n[title style=\"center\" text=\"Follow icons dark\" size=\"undefined\"]\r\n\r\n[follow align=\"center\" scale=\"134\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[follow style=\"small\" align=\"center\" scale=\"177\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[gap height=\"11px\"]\r\n\r\n[follow style=\"fill\" align=\"center\" scale=\"128\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n\r\n[/section]','Share / follow icons','','publish','closed','closed','','sharefollow-icons','','','2021-11-30 12:13:34','2021-11-30 12:13:34','',98,'http://demoweblinks.in:8888/test/?page_id=644',24,'page','',0),(82,1,'2013-08-18 15:09:39','2013-08-18 15:09:39','[ux_banner height=\"395px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.1)\"]\n\n[text_box width__sm=\"86\" scale__sm=\"138\"]\n\n<h3 class=\"uppercase\"><strong>TEAM MEMBER ELEMENT</strong></h3>\n<p class=\"lead\">Use this for presenting your team member or staff</p>\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"Default Style\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"17\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" pinterest=\"#\" linkedin=\"#\" snapchat=\"9152\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Color Icon style\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"17\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" icon_style=\"fill\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" icon_style=\"fill\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" pinterest=\"#\" linkedin=\"#\" snapchat=\"9152\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" name=\"Mark Jance\" title=\"CTO / Developer\" icon_style=\"fill\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" name=\"Nina Lacy\" title=\"Support Ninja\" icon_style=\"fill\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Bounce Style\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"bounce\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"bounce\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" pinterest=\"#\" linkedin=\"#\" snapchat=\"9152\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"bounce\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"bounce\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Push Style\"]\n\n[row]\n\n[col span=\"4\"]\n\n[team_member img=\"17\" style=\"push\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" text_hover=\"bounce\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\"]\n\n[team_member img=\"17\" style=\"push\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" text_hover=\"bounce\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\"]\n\n[team_member img=\"17\" style=\"push\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" text_hover=\"bounce\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Overlay Style\"]\n\n[row]\n\n[col span=\"4\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" pinterest=\"#\" linkedin=\"#\" snapchat=\"9152\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Overlay Circle\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_height=\"100%\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" linkedin=\"#\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Overlay Grayscale\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_height=\"100%\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" linkedin=\"#\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[section bg=\"18\" bg_color=\"rgb(40, 40, 40)\" bg_overlay=\"rgba(0, 0, 0, 0.84)\" dark=\"true\"]\n\n[title style=\"center\" text=\"Mix and match styles\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" icon_style=\"small\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_height=\"100%\" image_radius=\"100\" image_hover=\"color\" image_hover_alt=\"zoom\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" icon_style=\"fill\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" linkedin=\"#\" image_radius=\"9\" image_hover=\"glow\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_hover=\"zoom\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Nina Lacy\" title=\"Support Ninja\" icon_style=\"fill\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]','Team Member','','publish','closed','closed','','team-member','','','2021-11-30 12:13:34','2021-11-30 12:13:34','',98,'http://demoweblinks.in:8888/test/?page_id=642',26,'page','',0),(83,1,'2013-08-18 14:46:20','2013-08-18 14:46:20','[ux_banner height=\"500px\" bg=\"18\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.12)\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>ICON BOX ELEMENT</strong></h3>\n<p class=\"lead\">Create simple icon boxes with this element. Upload any SVG icon or image. You can find beautiful SVG icons here:Â </p>\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"Top Align\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"17\" pos=\"center\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"17\" pos=\"center\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"17\" pos=\"center\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Top Align with border\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"17\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"17\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"17\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Left Align\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"17\" img_width=\"35\" pos=\"left\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"17\" img_width=\"35\" pos=\"left\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"17\" img_width=\"35\" pos=\"left\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"17\" img_width=\"35\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(140, 188, 25)\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"17\" img_width=\"35\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(25, 130, 188)\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"17\" img_width=\"35\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(188, 69, 25)\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]','Icon Box','','publish','closed','closed','','icon-box','','','2021-11-30 12:13:34','2021-11-30 12:13:34','',98,'http://demoweblinks.in:8888/test/?page_id=637',14,'page','',0),(84,1,'2013-08-18 14:39:33','2013-08-18 14:39:33','[ux_banner height=\"500px\" bg=\"18\" parallax=\"2\"]\r\n\r\n[text_box parallax=\"-2\"]\r\n\r\n<h1>SectionÂ Titles</h1>\r\n<p class=\"lead\">Split content with beautiful Section Titles</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row]\r\n\r\n[col]\r\n\r\n[title text=\"This is a normal title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title text=\"This is a title with a link\" link_text=\"Click here to view products\" link=\"http://\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"center\" text=\"This is a centered title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"center\" text=\"This is a centered title with Icon\" icon=\"icon-star\" size=\"undefined\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title text=\"This is a title with a link and icon\" icon=\"icon-star-o\" size=\"undefined\" link_text=\"Click here to view products\" link=\"http://\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"bold-center\" text=\"This is a bold title\" size=\"171\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"bold\" text=\"This is a bold title with link\" link_text=\"Click here\" link=\"http://\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"bold-center\" text=\"This is a bold centered title\" size=\"undefined\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n','Titles / Dividers','','publish','closed','closed','','titles-dividers','','','2021-11-30 12:13:34','2021-11-30 12:13:34','',98,'http://demoweblinks.in:8888/test/?page_id=636',7,'page','',0),(85,1,'2013-08-18 12:30:42','2013-08-18 12:30:42','[gap]\r\n\r\n[ux_banner_grid height=\"575\"]\r\n\r\n[col_grid span=\"9\" span__sm=\"12\" depth=\"1\"]\r\n\r\n[ux_slider]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"large\" bg_color=\"rgb(2, 2, 2)\" bg_pos=\"56% 29%\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"50\" width__sm=\"78\" scale=\"99\"]\r\n\r\n<p class=\"lead alt-font\"><span style=\"font-size: 190%;\">Add any text here...</span></p>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\r\n[divider align=\"left\"]\r\n\r\n[button text=\"Browse\" color=\"white\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"large\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"65% 16%\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"50\" scale=\"99\" position_x=\"10\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<p class=\"lead alt-font\"><span style=\"font-size: 190%;\">Add any text here...</span></p>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\r\n[divider align=\"left\"]\r\n\r\n[button text=\"Browse\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" height=\"1-2\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"67\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"13\" height=\"1-2\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n[title style=\"bold-center\" text=\"Featured Products\" margin_top=\"22px\" size=\"undefined\"]\r\n\r\n[ux_products show=\"featured\"]\r\n\r\n[title style=\"bold-center\" text=\"Featured Categories\" size=\"undefined\"]\r\n\r\n[ux_product_categories]\r\n\r\n[gap height=\"36px\"]\r\n\r\n[ux_banner height=\"366px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" bg_pos=\"60% 0%\" parallax=\"1\"]\r\n\r\n[text_box width=\"37\" width__sm=\"78\" position_x=\"10\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Signup for Newsletter</strong></h3>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonumm.</p>\r\n[gap height=\"18px\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Latest news\" size=\"undefined\"]\r\n\r\n[blog_posts columns=\"3\" badge_style=\"square\" image_height=\"200px\"]\r\n\r\n[title style=\"bold-center\" text=\"Follow on instagram\" icon=\"icon-instagram\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" type=\"slider\" slider_nav_style=\"circle\" width=\"full-width\" columns=\"6\"]','Grid Style 2','','publish','closed','closed','','grid-style-2','','','2013-08-18 12:30:42','2013-08-18 12:30:42','',69,'http://demoweblinks.in:8888/test/?page_id=624',7,'page','',0),(86,1,'2013-08-11 20:13:42','2013-08-11 20:13:42','<p class=\"lead\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at nibh elementum imperdiet. Duis sagittis ipsum. Praesent mauris. Fusce nec tellus sed augue semper porta. Mauris massa. Vestibulum lacinia arcu eget nulla.</p>\r\n[block id=\"faq-accordian\"]','FAQ','','publish','closed','closed','','faq','','','2021-11-30 12:13:34','2021-11-30 12:13:34','',52,'http://demoweblinks.in:8888/test/?page_id=545',0,'page','',0),(87,1,'2013-08-11 19:57:03','2013-08-11 19:57:03','[ux_banner height=\"398px\" bg=\"18\" bg_pos=\"66% 25%\" parallax=\"2\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>Testemonial element</strong></h3>\n<p class=\"lead\">Tell your customers how happy your clients are</p>\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"With image left\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>This is a FANTASTIC Theme. Do you think that in the next version you could try and have it Multilanguage. Because I have nothing bad to say about this theme. Thank a million!</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"With image on Top\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9150\" image_width=\"121\" pos=\"center\" name=\"MIRORIM\"]\n\n<p>Excellent work. Very good theme, No need support, works perfectly. Congratulations !! <br />Waiting for version 3.0. Very excited.</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Boxed\"]\n\n[row v_align=\"equal\" padding=\"30px 30px 30px 30px\" depth=\"2\" depth_hover=\"5\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9150\" image_width=\"121\" pos=\"center\" name=\"MIRORIM\"]\n\n<p>Excellent work. Very good theme, No need support, works perfectly. Congratulations !! <br />Waiting for version 3.0. Very excited.</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Boxed Vertical\"]\n\n[row v_align=\"equal\" padding=\"30px 30px 30px 30px\" depth=\"2\" depth_hover=\"5\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Testemonials in a row slider\"]\n\n[ux_slider hide_nav=\"true\" nav_color=\"dark\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9150\" image_width=\"121\" pos=\"center\" name=\"MIRORIM\"]\n\n<p>Excellent work. Very good theme, No need support, works perfectly. Congratulations !! <br />Waiting for version 3.0. Very excited.</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9150\" image_width=\"121\" pos=\"center\" name=\"MIRORIM\"]\n\n<p>Excellent work. Very good theme, No need support, works perfectly. Congratulations !! <br />Waiting for version 3.0. Very excited.</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n\n[/ux_slider]\n[title style=\"center\" text=\"Testemonials in a slider\"]\n\n[ux_slider]\n\n[ux_banner height=\"378px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"78\" width__sm=\"100\"]\n\n[testimonial image=\"9147\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"78\" width__sm=\"100\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]','Testimonials','','publish','closed','closed','','testemonials','','','2021-11-30 12:13:34','2021-11-30 12:13:34','',98,'http://demoweblinks.in:8888/test/?page_id=539',27,'page','',0),(88,1,'2013-08-11 19:54:47','2013-08-11 19:54:47','[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.49)\"]\r\n\r\n[text_box width=\"76\"]\r\n\r\n<h1>Buttons</h1>\r\n<p class=\"lead\">Create beautiful Call to Action buttons with the amazing Button Element</p>\r\n[button text=\"Primary Button\" style=\"shade\" link=\"test?asdf&asdf=asdf&asdf&\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Unlimited Variations</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Primary Color\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\" radius=\"12\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\" icon=\"icon-heart\"]\r\n\r\n[button text=\"Success Color\" color=\"success\"]\r\n\r\n[button text=\"White Color\" color=\"white\"]\r\n\r\n[button text=\"Primary Color\" style=\"outline\"]\r\n\r\n[button text=\"Success Color\" color=\"success\" style=\"outline\" radius=\"99\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\" style=\"outline\" radius=\"6\" icon=\"icon-heart\" icon_reveal=\"true\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\" style=\"outline\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[section bg_color=\"rgb(44, 44, 44)\" dark=\"true\"]\r\n\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Buttons on Dark background</h3>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Primary Color\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\"]\r\n\r\n[button text=\"Success Color\" color=\"success\"]\r\n\r\n[button text=\"White Color\" color=\"white\"]\r\n\r\n[button text=\"Primary Color\" style=\"outline\"]\r\n\r\n[button text=\"Success Color\" color=\"success\" style=\"outline\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\" style=\"outline\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\" style=\"outline\"]\r\n\r\n[button text=\"White outline\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>ButtonÂ Styles</h3>\r\n<p>Select between many different button styles.</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Simple link\" style=\"link\"]\r\n\r\n[button text=\"Underline\" style=\"underline\"]\r\n\r\n[button text=\"Outline\" style=\"outline\" depth=\"2\" depth_hover=\"2\"]\r\n\r\n[button text=\"Normal\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n[button text=\"Gloss\" style=\"gloss\" radius=\"99\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n[button text=\"Shade\" style=\"shade\" radius=\"7\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n[button text=\"Bevel\" style=\"bevel\" radius=\"12\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Button withÂ icon</h3>\r\n<p>Choose between many included Flatsome Icons.</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Icon Button\" style=\"bevel\" radius=\"8\" icon=\"icon-twitter\" icon_pos=\"left\"]\r\n\r\n[button text=\"Icon Left\" style=\"outline\" radius=\"6\" icon=\"icon-instagram\"]\r\n\r\n[button text=\"Reveal Left\" style=\"outline\" icon=\"icon-play\" icon_pos=\"left\" icon_reveal=\"true\"]\r\n\r\n[button text=\"Reveal Right\" icon=\"icon-angle-right\" icon_reveal=\"true\"]\r\n\r\n[button text=\"Large Button\" style=\"bevel\" size=\"xlarge\" radius=\"8\" icon=\"icon-twitter\" icon_pos=\"left\"]\r\n\r\n[button text=\"Large Reveal\" style=\"bevel\" size=\"xlarge\" radius=\"8\" icon=\"icon-checkmark\" icon_pos=\"left\" icon_reveal=\"true\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Simple Button Styles</h3>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Primary Color\" style=\"link\" icon=\"icon-play\" icon_reveal=\"true\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\" style=\"link\"]\r\n\r\n[button text=\"Success Color\" color=\"success\" style=\"link\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\" style=\"link\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Button Radius</h3>\r\n<p>Add custom radius to buttons</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Normal Button\" size=\"large\"]\r\n\r\n[button text=\"Round Button\" size=\"large\" radius=\"10\"]\r\n\r\n[button text=\"Circle Button\" size=\"large\" radius=\"99\"]\r\n\r\n[button text=\"Normal Button\" style=\"outline\" size=\"large\"]\r\n\r\n[button text=\"Round Button\" style=\"outline\" size=\"large\" radius=\"10\"]\r\n\r\n[button text=\"Circle Button\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>ButtonÂ Shadow</h3>\r\n<p>Add drop shadow to buttons to make them stand out more.</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Large Shadow\" style=\"bevel\" size=\"large\" depth=\"5\" depth_hover=\"4\"]\r\n\r\n[button text=\"Medium Shadow\" style=\"bevel\" size=\"large\" depth=\"3\" depth_hover=\"4\"]\r\n\r\n[button text=\"Small Shadow\" style=\"bevel\" size=\"large\" depth=\"1\" depth_hover=\"2\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>ButtonÂ Sizes</h3>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"x Small\" size=\"xsmall\"]\r\n\r\n[button text=\"Smaller\" size=\"smaller\"]\r\n\r\n[button text=\"Small\" size=\"small\"]\r\n\r\n[button text=\"Normal\"]\r\n\r\n[button text=\"Large\" size=\"large\"]\r\n\r\n[button text=\"Larger\" size=\"larger\"]\r\n\r\n[button text=\"X LARGE\" size=\"xlarge\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Smart Links</h3>\r\n<p>Add simple text to button links to link to various WordPress and WooCommerce pages.</p>\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n<p>\'<strong>shop</strong>\' : Goes to Shop page</p>\r\n<p>\'<strong>account\'</strong> Goes to My Account Page</p>\r\n<p>\'<strong>checkout\'</strong> Goes to Checkout page</p>\r\n<p>\'<strong>blog\'</strong> Goes to blog page</p>\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<p>\'<strong>home</strong>\' Goes to homepage</p>\r\n<p><strong>\'wishlist</strong>\' Goes to wishlist page</p>\r\n<p>\'<strong>Page Title</strong>\' Goes to page by Title.</p>\r\n\r\n[/col]\r\n\r\n[/row]','Buttons','','publish','closed','closed','','buttons','','','2021-11-30 12:13:35','2021-11-30 12:13:35','',98,'http://demoweblinks.in:8888/test/?page_id=538',6,'page','',0),(89,1,'2013-08-11 19:22:53','2013-08-11 19:22:53','[map height=\"400px\"]\n\n<h3>Sesam Street 323b, 4010, Norway</h3>\n<p>We\'re open Monday â€“ Friday, 8 a.m. â€“ 7:30 p.m. EST</p>\n\n[/map]\n[row]\n\n[col span=\"6\"]\n\n[title text=\"Frequently Asked Questions\"]\n\n<p class=\"lead\">Please read our FAQ before sending us a message.</p>\n[accordion]\n\n[accordion-item title=\"What are the delivery charges for orders from the Online Shop?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante.</p>\n\n[/accordion-item]\n[accordion-item title=\"Which payment methods are accepted in the Online Shop?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante.</p>\n\n[/accordion-item]\n[accordion-item title=\"How long will delivery take?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante. </p>\n\n[/accordion-item]\n[accordion-item title=\"How secure is shopping in the Online Shop? Is my data protected?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante.</p>\n\n[/accordion-item]\n[accordion-item title=\"What exactly happens after ordering?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante. </p>\n\n[/accordion-item]\n[accordion-item title=\"Do I receive an invoice for my order?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante. </p>\n\n[/accordion-item]\n\n[/accordion]\n\n[/col]\n[col span=\"6\"]\n\n[title text=\"Send us an email\"]\n\n(insert contact form here)\n\n<p>This is form is just for demo purpose. No inquiries will be answered.</p>\n\n[/col]\n\n[/row]\n<p>Â </p>','Contact','','publish','closed','closed','','contact','','','2021-11-30 12:13:35','2021-11-30 12:13:35','',52,'http://demoweblinks.in:8888/test/?page_id=532',0,'page','',0),(90,1,'2013-08-11 19:17:44','2013-08-11 19:17:44','Take a look here on how to setup your blog page: http://docs.uxthemes.com/article/243-how-to-setup-your-blog-page','Blog','','publish','closed','closed','','blog','','','2013-08-11 19:17:44','2013-08-11 19:17:44','',0,'http://demoweblinks.in:8888/test/?page_id=530',0,'page','',0),(91,1,'2013-08-11 19:06:15','2013-08-11 19:06:15','<!-- wp:flatsome/uxbuilder -->\n[ux_banner height=\"507px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.49)\"]\n\n[text_box width=\"95\" scale=\"80\" position_x=\"50\" position_y=\"80\"]\n\n<h1 class=\"lead\">About Padmini</h1>\n<p class=\"lead\">Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text font_size=\"0.8\"]\n\n<p class=\"lead text-center\"><strong> Padmini</strong>  Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited ..</p>\n\n[/ux_text]\n[divider align=\"center\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"17\" name=\"Troy Gray\" title=\"CEO / Founder\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"17\" name=\"Richy Lace\" title=\"Marketing Director\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"17\" name=\"Jane Gray\" title=\"Public Relations\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"17\" name=\"July Wood\" title=\"Customer Support\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n<!-- /wp:flatsome/uxbuilder -->','About','','publish','closed','closed','','about','','','2021-12-10 09:42:47','2021-12-10 09:42:47','',52,'http://demoweblinks.in:8888/test/?page_id=520',0,'page','',0),(92,1,'2013-08-11 18:47:13','2013-08-11 18:47:13','[map lat=\"40.79022\" long=\"-73.95981\" content_bg=\"rgb(255, 255, 255)\" content_width__sm=\"100\" position_x=\"50\" position_x__sm=\"0\" position_y=\"50\" saturation=\"-100\"]\r\n\r\n<h3 class=\"uppercase\"><strong>GOOGLE MAP ELEMENT</strong></h3>\r\n<p class=\"lead\">Add highly customisable Google Maps to any page.</p>\r\n\r\n[/map]\r\n[title style=\"center\" text=\"Examples\" margin_top=\"14px\"]\r\n\r\n[row]\r\n\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[map]\r\n\r\n<p>Enter street adress here. Or any other information you want.</p>\r\n\r\n[/map]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[map controls=\"true\"]\r\n\r\n<p><strong>Map With Tools</strong></p>\r\n\r\n[/map]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[map content_width__sm=\"89\" color=\"#6d5854\"]\r\n\r\n<p>Use any color Â for your map</p>\r\n\r\n[/map]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[map content_width__sm=\"86\" position_x=\"5\" position_y=\"5\" saturation=\"-100\"]\r\n\r\n<p>Enter street adress here. Or any other information you want.</p>\r\n\r\n[/map]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[map height=\"589px\" height__sm=\"747px\" lat=\"40.79022\" long=\"-73.95981\" content_bg=\"rgba(255, 255, 255, 0.85)\" content_width__sm=\"100\" position_x__sm=\"100\" position_y=\"10\" position_y__sm=\"100\" saturation=\"44\"]\r\n\r\n[title text=\"A map with a Form\" icon=\"icon-envelop\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/map]','Map','','publish','closed','closed','','map','','','2021-11-30 12:13:35','2021-11-30 12:13:35','',98,'http://demoweblinks.in:8888/test/?page_id=514',20,'page','',0),(93,1,'2013-08-11 18:04:55','2013-08-11 18:04:55','[ux_slider bg_color=\"rgb(79, 79, 79)\" hide_nav=\"true\" nav_size=\"normal\"]\r\n\r\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"60% 16%\" parallax=\"2\"]\r\n\r\n[text_box width__sm=\"69\" scale__sm=\"105\" animate=\"blurIn\"]\r\n\r\n<h3 class=\"alt-font\" data-animate=\"fadeInRight\">A nice title on Top</h3>\r\n[divider]\r\n\r\n<h2 class=\"uppercase\">Introducing This Spring Fashion News</h2>\r\n[divider]\r\n\r\n[button text=\"Shop Women\"]\r\n\r\n[button text=\"Shop Men\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"60% 16%\" parallax=\"2\"]\r\n\r\n[text_box width__sm=\"69\" scale__sm=\"105\" animate=\"blurIn\"]\r\n\r\n<h3 class=\"alt-font\" data-animate=\"fadeInRight\">A nice title on Top</h3>\r\n<h2 class=\"uppercase\">Introducing This Spring Fashion News</h2>\r\n[divider]\r\n\r\n[button text=\"Shop Women\"]\r\n\r\n[button text=\"Shop Men\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" parallax=\"2\"]\r\n\r\n[text_box animate=\"blurIn\"]\r\n\r\n<h3 class=\"alt-font\" data-animate=\"fadeInRight\">A nice title on Top</h3>\r\n<h2 class=\"uppercase\">Add anything Here in the Page Builder</h2>\r\n[divider]\r\n\r\n[button text=\"Shop Women\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n[title style=\"center\" text=\"Featured Products\" size=\"100\"]\r\n\r\n[ux_products show=\"featured\" image_height=\"112%\"]\r\n\r\n[title style=\"center\" text=\"Browse Categories\" size=\"100\"]\r\n\r\n[ux_product_categories style=\"overlay\" slider_nav_style=\"circle\" animate=\"fadeInLeft\" image_height=\"87%\" image_hover=\"zoom\" image_hover_alt=\"glow\" text_pos=\"middle\"]\r\n\r\n[title style=\"center\" text=\"Latest blog posts\" size=\"100\"]\r\n\r\n[blog_posts style=\"bounce\" col_spacing=\"small\" title_size=\"larger\" title_style=\"uppercase\" badge_style=\"circle\" excerpt=\"false\" image_height=\"235px\" image_overlay=\"rgba(0, 0, 0, 0.15)\" image_hover=\"zoom\" image_hover_alt=\"glow\" text_size=\"small\"]','Simple Slider','','publish','closed','closed','','simple-slider','','','2013-08-11 18:04:55','2013-08-11 18:04:55','',69,'http://demoweblinks.in:8888/test/?page_id=501',11,'page','',0),(94,1,'2013-08-11 16:31:20','2013-08-11 16:31:20','[yith_wcwl_wishlist]','Wishlist','','publish','closed','closed','','wishlist','','','2013-08-11 16:31:20','2013-08-11 16:31:20','',11,'http://demoweblinks.in:8888/test/?page_id=473',0,'page','',0),(95,1,'2013-08-11 15:41:20','2013-08-11 15:41:20','[ux_slider hide_nav=\"true\" bullets=\"false\"]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(19, 6, 6, 0.36)\" bg_pos=\"53% 5%\"]\n\n[text_box width=\"61\" width__sm=\"80\" scale=\"136\" scale__sm=\"154\" position_y=\"75\"]\n\n<h3 class=\"uppercase\"><strong>SLIDER ELEMENT</strong></h3>\n<p class=\"lead\">Create amazing Sliders with our Slider element.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_pos=\"22% 46%\"]\n\n[text_box width=\"40\" width__sm=\"80\" position_y=\"70\"]\n\n<h3>This is a Full Width Slider</h3>\n<p class=\"lead\">Add Any Content or Shortcode here</p>\n[button text=\"Click me\" style=\"outline\" radius=\"10\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" slide_effect=\"zoom-in\" bg=\"18\" bg_pos=\"49% 42%\"]\n\n[text_box animate=\"bounceIn\"]\n\n<h3>Add Animations and Slide Effects</h3>\n<p class=\"lead\">Add Any Content or Shortcode here</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row v_align=\"middle\" h_align=\"center\"]\n\n[col span=\"5\" span__sm=\"12\" align=\"center\"]\n\n<h3 class=\"uppercase\"><strong>Drag and Drop Editing</strong></h3>\n<p class=\"lead\">Use the UX Builder to Create amazing homepage sliders and ladingpages.</p>\n\n[/col]\n[col span=\"7\" span__sm=\"12\" align=\"center\"]\n\n[ux_image id=\"17\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n[title style=\"center\" size=\"undefined\"]\n\n[ux_slider style=\"container\" bg_color=\"rgb(0, 0, 0)\"]\n\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Focused Slider Style\" size=\"undefined\"]\n\n[ux_slider style=\"focus\" bg_color=\"rgb(82, 82, 82)\"]\n\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Shadow Slide Style\" size=\"undefined\"]\n\n[ux_slider style=\"shadow\" bg_color=\"rgb(238, 238, 238)\"]\n\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Free Scroll Shadow Slider\" size=\"undefined\"]\n\n[ux_slider style=\"shadow\" slide_width=\"500px\" bg_color=\"rgb(238, 238, 238)\" freescroll=\"true\"]\n\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"51% 19%\"]\n\n[text_box width=\"76\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"53% 13%\"]\n\n[text_box width=\"70\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"66\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"56% 11%\"]\n\n[text_box width=\"70\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"47% 9%\"]\n\n[text_box width=\"72\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Dark arrows\" size=\"undefined\"]\n\n[ux_slider]\n\n[ux_banner height=\"200px\" bg_color=\"rgb(222, 222, 222)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\" bg_color=\"rgb(238, 238, 238)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"light arrows\"]\n\n[ux_slider]\n\n[ux_banner height=\"200px\" bg_color=\"rgb(46, 46, 46)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\" bg_color=\"rgb(54, 54, 54)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"always visible arrows\"]\n\n[ux_slider hide_nav=\"true\"]\n\n[ux_banner height=\"200px\" bg_color=\"rgb(229, 191, 191)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\" bg_color=\"rgb(171, 204, 196)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Simple arrows\"]\n\n[ux_slider hide_nav=\"true\" nav_style=\"simple\"]\n\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col]\n\n[title style=\"center\" text=\"Nav outside\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\"]\n\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col]\n\n[title style=\"center\" text=\"Nav Circle outside\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" nav_color=\"dark\" bullets=\"false\"]\n\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]','Sliders','','publish','closed','closed','','sliders','','','2021-11-30 12:13:35','2021-11-30 12:13:35','',98,'http://demoweblinks.in:8888/test/?page_id=464',3,'page','',0),(96,1,'2013-08-11 15:26:47','2013-08-11 15:26:47','[section bg=\"18\" bg_color=\"rgb(50, 50, 50)\" bg_overlay=\"rgba(0, 0, 0, 0.63)\" dark=\"true\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"3\"]\n\n<h1 class=\"uppercase\">Amazing Blog Posts Element</h1>\n<p class=\"lead\">Display your Blog posts in many different ways.</p>\n<ul>\n<li class=\"bullet-checkmark\">UnlimitedÂ Styles and Options</li>\n<li class=\"bullet-checkmark\">Select Custom Posts</li>\n<li class=\"bullet-checkmark\">Slider / Row / Grid and Masonry Style</li>\n</ul>\n\n[/col]\n[col span=\"9\"]\n\n[blog_posts style=\"shade\" type=\"slider-full\" grid=\"2\" slider_nav_style=\"circle\" columns=\"1\" title_size=\"larger\" show_date=\"text\" excerpt=\"false\" show_category=\"label\" comments=\"false\" image_size=\"large\" image_overlay=\"rgba(0, 0, 0, 0.09)\" image_hover=\"overlay-remove\" text_size=\"large\" text_hover=\"bounce\" text_padding=\"10% 0px 10% 0px\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[title style=\"center\" text=\"Default Style\" size=\"undefined\"]\n\n[blog_posts style=\"normal\" columns=\"3\" image_height=\"56.25%\"]\n\n[title style=\"center\" text=\"Bounce Style\" size=\"undefined\"]\n\n[blog_posts style=\"bounce\" badge_style=\"square\" image_height=\"75%\"]\n\n[title style=\"center\" text=\"Push Style\" margin_top=\"17px\" size=\"undefined\"]\n\n[blog_posts style=\"push\" columns=\"3\" badge_style=\"circle-inside\" image_height=\"75%\"]\n\n\n[/section]\n[section bg_color=\"rgb(62, 62, 62)\" dark=\"true\"]\n\n[title style=\"center\" text=\"Blog posts inside a dark section\" size=\"undefined\"]\n\n[blog_posts style=\"normal\" slider_nav_style=\"simple\" slider_nav_color=\"light\" slider_nav_position=\"outside\" columns=\"3\" image_height=\"56.25%\"]\n\n\n[/section]\n[title style=\"center\" text=\"Vertical Slide Style\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts style=\"vertical\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"2\" depth=\"2\" image_height=\"89%\" image_width=\"43\"]\n\n[title style=\"center\" text=\"Animated Blog posts in grid\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts type=\"row\" animate=\"fadeInUp\" image_height=\"180px\"]\n\n[title style=\"center\" text=\"Overlay Style\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts style=\"overlay\" depth=\"1\" title_style=\"uppercase\" show_date=\"text\" image_height=\"144%\" image_overlay=\"rgba(0, 0, 0, 0.17)\" image_hover=\"zoom\"]\n\n[title style=\"center\" text=\"Overlay Grayscale\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts style=\"overlay\" depth=\"1\" animate=\"fadeInLeft\" title_style=\"uppercase\" show_date=\"text\" image_height=\"144%\" image_overlay=\"rgba(0, 0, 0, 0.56)\" image_hover=\"color\" image_hover_alt=\"overlay-remove-50\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>Select between many differentÂ Hover Styles</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Read More button\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts type=\"row\" depth=\"2\" readmore=\"Read More\" image_height=\"180px\"]\n\n[title style=\"center\" text=\"Blog post in A Grid\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts style=\"shade\" type=\"grid\" columns=\"3\" depth=\"1\" posts=\"4\" title_size=\"larger\" title_style=\"uppercase\" readmore=\"Read More\" badge_style=\"circle-inside\" image_height=\"180px\"]\n\n[title style=\"center\" text=\"Blog post in A Masonery Grid\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts type=\"masonry\" columns=\"3\" depth=\"2\" image_height=\"180px\"]','Blog Posts','','publish','closed','closed','','blog-posts','','','2021-11-30 12:13:35','2021-11-30 12:13:35','',98,'http://demoweblinks.in:8888/test/?page_id=456',8,'page','',0),(97,1,'2013-08-11 15:20:04','2013-08-11 15:20:04','[section bg_color=\"rgb(246, 246, 246)\"]\n\n[row]\n\n[col span=\"4\"]\n\n<h1>Tabs Element</h1>\n<p>Ad flannel sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Â </p>\n\n[/col]\n[col span=\"8\"]\n\n[tabgroup style=\"tabs\"]\n\n[tab title=\"Tab 3 Title\"]\n\n<p> lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 1 Title\"]\n\n<p>Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr.</p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed..</p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]\n\n[/section]\n[row]\n\n[col span=\"6\"]\n\n[tabgroup title=\"Line Tabs\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n[col span=\"6\"]\n\n[tabgroup title=\"Line Tabs Bottom\" style=\"line-bottom\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\"]\n\n[tabgroup title=\"Tabs Pills Centered\" style=\"pills\" align=\"center\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr.</p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Flannel sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n[col span=\"6\"]\n\n[tabgroup title=\"Outline Tabs Centered\" style=\"outline\" align=\"center\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]\n[row]\n\n[col]\n\n[tabgroup title=\"Line Grow Tabs Center\" style=\"line-grow\" align=\"center\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n[col]\n\n[tabgroup title=\"Vertical Tabs\" type=\"vertical\"]\n\n[tab title=\"Top tab\"]\n\n<p>Flannel sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee yr.</p>\n\n[/tab]\n[tab title=\"This is tab\"]\n\n<p>Laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"this is another tab\"]\n\n<p>Lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie.Â </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n[col span__sm=\"12\"]\n\n[tabgroup style=\"outline\" type=\"vertical\"]\n\n[tab title=\"Tab title 1\"]\n\n<p>Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab title 2\"]\n\n<p>Lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab title 3\"]\n\n<p>Church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]','Tabs','','publish','closed','closed','','tabs','','','2021-11-30 12:13:35','2021-11-30 12:13:35','',98,'http://demoweblinks.in:8888/test/?page_id=453',25,'page','',0),(98,1,'2013-08-09 22:37:13','2013-08-09 22:37:13','[block id=\"elements-overview\"]','Elements','','publish','closed','closed','','elements','','','2013-08-09 22:37:13','2013-08-09 22:37:13','',0,'http://demoweblinks.in:8888/test/?page_id=288',0,'page','',0),(99,1,'2013-08-06 20:13:19','2013-08-06 20:13:19','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"100%\" height__sm=\"100%\" bg=\"920\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"54% 84%\" video_mp4=\"http://demoweblinks.in/padmini/wp-content/uploads/2022/04/WhatsApp-Video-2022-04-01-at-10.52.47-AM.mp4\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"100%\" height__sm=\"500px\" bg=\"920\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"16% 50%\" video_visibility=\"hidden\" visibility=\"hidden\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\" visibility=\"hidden\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\" visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\" visibility=\"hidden\"]\n\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_product_categories style=\"normal\" image_hover=\"zoom\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"49% 47%\" dark=\"true\" padding__sm=\"0px\" height=\"300px\" height__sm=\"140px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','publish','closed','closed','','classic-shop','','','2022-04-01 13:41:31','2022-04-01 13:41:31','',69,'http://demoweblinks.in:8888/test/?page_id=17',1,'page','',0),(100,1,'2021-11-30 12:00:54','2021-11-30 12:00:54','','Left Sidebar','','inherit','closed','closed','','29-revision-v1','','','2021-11-30 12:00:54','2021-11-30 12:00:54','',29,'http://demoweblinks.in/padmini/?p=100',0,'revision','',0),(101,1,'2021-11-30 12:00:55','2021-11-30 12:00:55','[section bg_color=\"rgb(246, 246, 246)\"]\n\n[title style=\"center\" text=\"Flip book element\"]\n\n[ux_product_flip]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\" style=\"text-align: center;\">Create a Flip Book for any product category. You can also select custom posts.</p>\n\n[/col]\n\n[/row]\n\n[/section]','Flip Book','','inherit','closed','closed','','30-revision-v1','','','2021-11-30 12:00:55','2021-11-30 12:00:55','',30,'http://demoweblinks.in/padmini/?p=101',0,'revision','',0),(102,1,'2021-11-30 12:00:55','2021-11-30 12:00:55','[ux_slider infinitive=\"false\" parallax=\"2\" hide_nav=\"true\" nav_size=\"normal\" nav_style=\"simple\" bullets=\"false\"]\r\n\r\n[ux_banner height=\"100%\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"30% 57%\"]\r\n\r\n[text_box width=\"45\" width__sm=\"78\" scale__sm=\"125\" position_x=\"5\" position_y=\"80\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Welcome to our Fashion shop</strong></span></h2>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Click me!\" color=\"white\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"62% 18%\"]\r\n\r\n[text_box width=\"45\" width__sm=\"78\" scale__sm=\"125\" position_x=\"5\" position_y=\"80\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Welcome to our Fashion shop</strong></h2>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Click me!\" color=\"white\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"74% 14%\"]\r\n\r\n[text_box width=\"45\" width__sm=\"78\" scale__sm=\"125\" position_x=\"5\" position_y=\"80\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Welcome to our Fashion shop</strong></h2>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Click me!\" color=\"white\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]','Slider Cover','','inherit','closed','closed','','31-revision-v1','','','2021-11-30 12:00:55','2021-11-30 12:00:55','',31,'http://demoweblinks.in/padmini/?p=102',0,'revision','',0),(103,1,'2021-11-30 12:00:56','2021-11-30 12:00:56','[ux_banner height=\"100%\" bg=\"18\"]\r\n\r\n[text_box]\r\n\r\n[ux_image id=\"17\" width=\"24\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Flatsome 3.0</strong></h3>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\r\n[ux_countdown bg_color=\"rgba(0, 0, 0, 0.2)\" month=\"12\" day=\"24\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]','Maintenance','','inherit','closed','closed','','32-revision-v1','','','2021-11-30 12:00:56','2021-11-30 12:00:56','',32,'http://demoweblinks.in/padmini/?p=103',0,'revision','',0),(104,1,'2021-11-30 12:00:56','2021-11-30 12:00:56','[ux_banner height=\"100%\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" video_mp4=\"/wp-content/uploads/2016/02/348462762.mp4\"]\n\n[text_box width=\"53\" width__sm=\"87\" scale__sm=\"125\" margin=\"30px 0px 30px 0px\"]\n\n<h3 class=\"alt-font\">A Fancy top Title</h3>\n<h1 class=\"uppercase\"><strong>Welcome to COOL Our Shop</strong></h1>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Shop now\" color=\"white\" link=\"shop\"]\n\n\n[/text_box]\n\n[/ux_banner]','Video Cover','','inherit','closed','closed','','33-revision-v1','','','2021-11-30 12:00:56','2021-11-30 12:00:56','',33,'http://demoweblinks.in/padmini/?p=104',0,'revision','',0),(105,1,'2021-11-30 12:00:57','2021-11-30 12:00:57','[ux_banner height=\"300px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.2)\" parallax=\"2\"]\n\n[text_box width=\"68\" width__sm=\"60\"]\n\n<h3 class=\"uppercase\"><strong>Our Stores</strong></h3>\n[divider]\n\n[share]\n\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\">About our stores. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[tabgroup type=\"vertical\"]\n\n[tab title=\"New York\"]\n\n[map lat=\"40.7902\" saturation=\"-58\"]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n[tab title=\"London\"]\n\n[map]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n[tab title=\"Oslo\"]\n\n[map]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n[tab title=\"Stockholm\"]\n\n[map]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n[tab title=\"Add as many as you want\"]\n\n[map]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]','Our Stores','','inherit','closed','closed','','34-revision-v1','','','2021-11-30 12:00:57','2021-11-30 12:00:57','',34,'http://demoweblinks.in/padmini/?p=105',0,'revision','',0),(106,1,'2021-11-30 12:00:57','2021-11-30 12:00:57','[section bg=\"18\" bg_color=\"rgb(246, 246, 246)\" parallax=\"3\" padding=\"19px\" border=\"1px 0px 1px 0px\"]\r\n\r\n[ux_banner_grid]\r\n\r\n[col_grid span=\"6\" span__sm=\"12\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"large\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"65% 16%\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"50\" scale=\"99\" position_x=\"10\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<p class=\"lead alt-font\"><span style=\"font-size: 190%;\">Add any text here...</span></p>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\r\n[divider align=\"left\"]\r\n\r\n[button text=\"Browse\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"7\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" bg_pos=\"58% 24%\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"76\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"5\" height=\"1-2\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"67\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"5\" height=\"1-2\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[title style=\"bold-center\" text=\"Featured Products\" margin_top=\"22px\" size=\"undefined\"]\r\n\r\n[ux_products show=\"featured\"]\r\n\r\n[title style=\"bold-center\" text=\"Featured Categories\" size=\"undefined\"]\r\n\r\n[ux_product_categories]\r\n\r\n[gap height=\"36px\"]\r\n\r\n[ux_banner height=\"366px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" bg_pos=\"60% 0%\" parallax=\"1\"]\r\n\r\n[text_box width=\"37\" width__sm=\"78\" position_x=\"10\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Signup for Newsletter</strong></h3>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonumm.</p>\r\n[gap height=\"18px\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Latest news\" size=\"undefined\"]\r\n\r\n[blog_posts columns=\"3\" badge_style=\"square\" image_height=\"200px\"]\r\n\r\n[title style=\"bold-center\" text=\"Follow on instagram\" icon=\"icon-instagram\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" type=\"slider\" width=\"full-width\" columns=\"6\"]','Grid Style 3','','inherit','closed','closed','','35-revision-v1','','','2021-11-30 12:00:57','2021-11-30 12:00:57','',35,'http://demoweblinks.in/padmini/?p=106',0,'revision','',0),(107,1,'2021-11-30 12:00:58','2021-11-30 12:00:58','[ux_slider slide_width=\"100%\" bullets=\"false\"]\r\n\r\n[ux_banner height=\"100%\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"70% 17%\"]\r\n\r\n[text_box width=\"56\" width__sm=\"85\" width__md=\"52\" animate=\"fadeInLeft\" position_x=\"5\" position_x__sm=\"10\" position_y__sm=\"90\" text_depth=\"1\"]\r\n\r\n<h1><span style=\"font-size: 80%;\"><strong>WordPress & WooCommerce Expert</strong></span></h1>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>\r\n[button text=\"My Work\" color=\"white\" style=\"outline\" radius=\"99\" link=\"Portfolio\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"62% 50%\"]\r\n\r\n[text_box width=\"63\" width__sm=\"85\" width__md=\"52\" animate=\"fadeInLeft\" position_x__sm=\"10\" position_x__md=\"5\" position_y=\"25\" position_y__sm=\"90\" text_depth=\"1\"]\r\n\r\n<h2><strong>A small but focused Web Studio</strong></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Learn more\" color=\"white\" style=\"outline\" radius=\"99\" icon=\"icon-angle-right\" icon_reveal=\"true\" link=\"About\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"62% 50%\"]\r\n\r\n[text_box width=\"80\" width__sm=\"85\" width__md=\"52\" animate=\"fadeInLeft\" position_x__sm=\"10\" position_x__md=\"5\" position_y__sm=\"90\" text_depth=\"1\"]\r\n\r\n<h2><strong>Services</strong></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[row]\r\n\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n[button text=\"Contact Now\" color=\"white\" style=\"outline\" radius=\"99\" icon=\"icon-angle-right\" icon_reveal=\"true\" link=\"Contact\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]','Freelancer','','inherit','closed','closed','','36-revision-v1','','','2021-11-30 12:00:58','2021-11-30 12:00:58','',36,'http://demoweblinks.in/padmini/?p=107',0,'revision','',0),(108,1,'2021-11-30 12:00:58','2021-11-30 12:00:58','[ux_slider]\r\n\r\n[ux_banner height=\"600px\" bg_overlay=\"rgba(246, 208, 45, 0.94)\" border=\"2px 2px 2px 2px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_radius=\"undefined\"]\r\n\r\n[text_box style=\"circle\" width=\"15\" width__sm=\"29\" rotate=\"1\" animate=\"fadeInRight\" position_x=\"95\" position_x__sm=\"95\" position_y=\"5\" position_y__sm=\"5\" border=\"2px 2px 2px 2px\" border_margin=\"5px 5px 5px 5px\" border_style=\"dashed\" border_radius=\"100\" border_color=\"rgba(255, 255, 255, 0.19)\"]\r\n\r\n<h3>Up to<br /><span style=\"font-size: 160%;\"><strong>50<span style=\"font-size: 75%;\">%</span><br /></strong></span>off</h3>\r\n\r\n[/text_box]\r\n[text_box width=\"57\" width__sm=\"84\" scale__sm=\"111\" animate=\"flipInY\"]\r\n\r\n<h1 class=\"uppercase\"><span style=\"font-size: 400%;\" data-line-height=\"xs\"><strong>Sale</strong></span></h1>\r\n<h2 class=\"lead\">Summer Sale has Started</h2>\r\n[ux_countdown style=\"text\" size=\"114\" color=\"light\"]\r\n\r\n[gap height=\"23px\"]\r\n\r\n[button text=\"Shop men\" color=\"white\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\"]\r\n\r\n[button text=\"Shop All\" color=\"white\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"600px\" bg=\"18\" bg_pos=\"84% 0%\" border=\"2px 2px 2px 2px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_radius=\"undefined\"]\r\n\r\n[text_box style=\"circle\" width=\"15\" width__sm=\"29\" rotate=\"1\" animate=\"fadeInRight\" position_x=\"100\" position_x__sm=\"95\" position_y=\"15\" position_y__sm=\"5\" border=\"2px 2px 2px 2px\" border_margin=\"5px 5px 5px 5px\" border_style=\"dashed\" border_radius=\"100\" border_color=\"rgba(255, 255, 255, 0.19)\"]\r\n\r\n<h3>Up to<br /><span style=\"font-size: 160%;\"><strong>50<span style=\"font-size: 75%;\">%</span><br /></strong></span>off</h3>\r\n\r\n[/text_box]\r\n[text_box width=\"50\"]\r\n\r\n<h2 class=\"uppercase\">Shop Fashion Clothes today</h2>\r\n<h3 class=\"thin-font\">Add any text here..</h3>\r\n[button text=\"Shop now\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n[row depth=\"1\" depth_hover=\"5\"]\r\n\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"50% 12%\" border=\"1px 1px 1px 1px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_color=\"rgba(0, 0, 0, 0.16)\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>About us</strong></h2>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"60% 18%\" border=\"1px 1px 1px 1px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_color=\"rgba(0, 0, 0, 0.16)\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>OUR BLOG</strong></h2>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"51% 35%\" border=\"1px 1px 1px 1px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_color=\"rgba(0, 0, 0, 0.16)\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>NEWSLETTER</strong></h2>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"bold-center\" text=\"Latest products on sale\" size=\"undefined\"]\r\n\r\n[ux_products depth=\"1\" depth_hover=\"4\" orderby=\"sales\" show=\"onsale\"]\r\n\r\n[title style=\"bold-center\" text=\"Browse our Categories\" size=\"undefined\"]\r\n\r\n[ux_product_categories depth=\"1\" depth_hover=\"4\"]\r\n\r\n[title style=\"bold-center\" text=\"Follow us on Instagram\" icon=\"instagram\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" depth=\"1\"]\r\n\r\n[gap height=\"58px\"]\r\n\r\n[ux_banner height=\"407px\" bg=\"18\" bg_color=\"rgb(18, 18, 18)\" bg_overlay=\"rgba(0, 0, 0, 0.36)\" bg_pos=\"79% 0%\" parallax=\"1\" border=\"2px 0px 2px 0px\" border_margin=\"10px 0px 10px 0px\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(255, 255, 255, 0.22)\"]\r\n\r\n[text_box width=\"47\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Don\'t miss a sale</strong></h2>\r\n<h3 class=\"thin-font\">Sign up for our Newsletter</h3>\r\n[gap height=\"32px\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Latest News\" size=\"undefined\"]\r\n\r\n[blog_posts columns=\"3\" depth=\"1\" depth_hover=\"4\" image_height=\"181px\"]','Big Sale','','inherit','closed','closed','','37-revision-v1','','','2021-11-30 12:00:58','2021-11-30 12:00:58','',37,'http://demoweblinks.in/padmini/?p=108',0,'revision','',0),(109,1,'2021-11-30 12:00:59','2021-11-30 12:00:59','[title text=\"Add responsive Video Embeds\" size=\"undefined\"]\n\n<p class=\"lead\">Add Responsive video embed to your site by using the Page Builder.</p>\n<h3>YOUTUBE</h3>\n[ux_video height=\"46%\"]\n\n<h3>VIMEO</h3>\n[ux_video url=\"https://vimeo.com/180255453\" height=\"54%\"]','Video','','inherit','closed','closed','','38-revision-v1','','','2021-11-30 12:00:59','2021-11-30 12:00:59','',38,'http://demoweblinks.in/padmini/?p=109',0,'revision','',0),(110,1,'2021-11-30 12:00:59','2021-11-30 12:00:59','[ux_banner height=\"450px\" bg=\"18\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>Video Button</strong></h3>\n<p class=\"lead\">Add a video button that opens Youtube and Viemo videos anywhere.</p>\n[video_button size=\"118\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span=\"4\" span__sm=\"12\" depth=\"2\" depth_hover=\"4\"]\n\n[ux_banner height=\"450px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.52)\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>Video Button</strong></h3>\n<p class=\"lead\">Add a video button that opens Youtube and Viemo videos anywhere.</p>\n[video_button]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" depth=\"2\" depth_hover=\"4\"]\n\n[ux_banner height=\"450px\" bg=\"18\"]\n\n[text_box position_x=\"10\" position_y=\"10\" text_align=\"left\" text_color=\"dark\"]\n\n<h3 class=\"uppercase\"><strong>Change Size</strong></h3>\n<p class=\"lead\">You can change the size to anything</p>\n[video_button size=\"202\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" depth=\"2\" depth_hover=\"4\"]\n\n[ux_banner height=\"450px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.45)\" hover=\"overlay-add\"]\n\n[text_box hover=\"zoom-in\"]\n\n<h3 class=\"uppercase\"><strong>Show on Hover</strong></h3>\n<p class=\"lead\">Select between various hover effects</p>\n[video_button]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]','Video Button','','inherit','closed','closed','','39-revision-v1','','','2021-11-30 12:00:59','2021-11-30 12:00:59','',39,'http://demoweblinks.in/padmini/?p=110',0,'revision','',0),(111,1,'2021-11-30 12:01:00','2021-11-30 12:01:00','[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.71)\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>GALLERY ELEMENT</strong></h3>\r\n<p class=\"lead\">Create Galleries by using Image IDsÂ and drag and drop. You can easily create galleries from theÂ Page Builder.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Simple GAllery Row with lightbox\"]\r\n\r\n[ux_gallery ids=\"8896,8895,8894,8893,8892,8898,8899,8900\" style=\"shade\" grid_height=\"undefined\" slider_nav_style=\"undefined\" slider_nav_color=\"light\" slider_nav_position=\"outside\" col_spacing=\"undefined\" depth=\"1\" depth_hover=\"undefined\" image_height=\"81%\" image_width=\"undefined\" image_size=\"undefined\" image_overlay=\"undefined\" image_hover=\"zoom\" image_hover_alt=\"undefined\" text_pos=\"undefined\" text_align=\"undefined\" text_size=\"undefined\" text_bg=\"undefined\" text_color=\"undefined\"]\r\n\r\n[title style=\"center\" text=\"Full Width Gallery\"]\r\n\r\n[ux_gallery ids=\"8896,8895,8894,8893,8892,8898,8899,8900\" style=\"shade\" grid_height=\"undefined\" slider_nav_style=\"undefined\" slider_nav_color=\"light\" slider_nav_position=\"outside\" width=\"full-width\" col_spacing=\"collapse\" depth=\"1\" depth_hover=\"undefined\" image_height=\"81%\" image_width=\"undefined\" image_size=\"undefined\" image_overlay=\"undefined\" image_hover=\"zoom\" image_hover_alt=\"undefined\" text_pos=\"undefined\" text_align=\"undefined\" text_size=\"undefined\" text_bg=\"undefined\" text_color=\"undefined\"]\r\n\r\n[title style=\"center\" text=\"Gallery width Small gap\"]\r\n\r\n[ux_gallery ids=\"8896,8895,8894,8893,8892,8898,8899,8900\" style=\"shade\" grid_height=\"undefined\" slider_nav_style=\"undefined\" slider_nav_color=\"light\" slider_nav_position=\"outside\" col_spacing=\"xsmall\" depth=\"1\" depth_hover=\"undefined\" image_height=\"81%\" image_width=\"undefined\" image_size=\"undefined\" image_overlay=\"undefined\" image_hover=\"zoom\" image_hover_alt=\"undefined\" text_pos=\"undefined\" text_align=\"undefined\" text_size=\"undefined\" text_bg=\"undefined\" text_color=\"undefined\"]\r\n\r\n[title style=\"center\" text=\"Slider Gallery\" margin_top=\"21px\"]\r\n\r\n[ux_gallery ids=\"8896,8895,8894,8893,8892,8898,8899,8900\" type=\"slider\" grid_height=\"undefined\" slider_nav_style=\"undefined\" slider_nav_color=\"undefined\" slider_nav_position=\"undefined\" col_spacing=\"undefined\" depth=\"1\" depth_hover=\"undefined\" image_height=\"undefined\" image_width=\"undefined\" image_size=\"undefined\" image_overlay=\"undefined\" image_hover=\"undefined\" image_hover_alt=\"undefined\" text_pos=\"undefined\" text_align=\"undefined\" text_size=\"undefined\" text_hover=\"undefined\" text_bg=\"undefined\" text_color=\"undefined\" text_padding=\"undefined\"]','Galleries','','inherit','closed','closed','','40-revision-v1','','','2021-11-30 12:01:00','2021-11-30 12:01:00','',40,'http://demoweblinks.in/padmini/?p=111',0,'revision','',0),(112,1,'2021-11-30 12:01:00','2021-11-30 12:01:00','[ux_slider nav_style=\"simple\" nav_color=\"dark\"]\n\n[ux_banner height=\"62%\" slide_effect=\"zoom-out-fast\" bg=\"18\" bg_color=\"rgb(27, 15, 15)\" bg_pos=\"42% 29%\"]\n\n[ux_hotspot type=\"product\" prod_id=\"416\" icon=\"search\" size=\"large\" position_x=\"15\" position_y=\"25\" position_y__sm=\"35\"]\n\n[ux_hotspot text=\"Add a custom text here\" link=\"#customlink\" size=\"large\" animate=\"flipInY\" position_x=\"10\" position_y=\"85\"]\n\n[text_box text_color=\"dark\" width=\"36\" width__sm=\"32\" scale__sm=\"58\" position_x=\"90\"]\n\n<h2 class=\"uppercase\">Banner with hotspots</h2>\n<p class=\"thin-font lead\">Add Hotspots anywhere by using the drag and drop Page Builder.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"62%\" slide_effect=\"zoom-out-fast\" bg=\"18\" bg_color=\"rgba(0, 0, 0, 0.25)\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"42% 29%\"]\n\n[ux_hotspot type=\"product\" prod_id=\"416\" size=\"large\" position_x=\"80\" position_y=\"30\" position_y__sm=\"35\"]\n\n[ux_hotspot text=\"Add a custom text here\" link=\"#customlink\" size=\"large\" animate=\"flipInY\" position_y=\"35\"]\n\n[text_box text_color=\"dark\" width=\"36\" width__sm=\"32\" scale__sm=\"58\" position_x=\"10\"]\n\n<h2 class=\"uppercase\">Create LookbooksÂ </h2>\n<p class=\"thin-font lead\">Create beautiful lookbooks by combining the banner, hotspot and slider element.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]','Hotspot','','inherit','closed','closed','','41-revision-v1','','','2021-11-30 12:01:00','2021-11-30 12:01:00','',41,'http://demoweblinks.in/padmini/?p=112',0,'revision','',0),(113,1,'2021-11-30 12:01:01','2021-11-30 12:01:01','[section bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.62)\"]\r\n\r\n[ux_banner_grid height=\"666\" depth=\"1\"]\r\n\r\n[col_grid span=\"8\" span__sm=\"13\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_pos=\"32% 58%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"65\" width__sm=\"90\" scale=\"102\" animate=\"fadeInLeft\" position_x=\"10\" text_align=\"left\"]\r\n\r\n<h6 class=\"uppercase\">Featured Vendor</h6>\r\n<h2><strong>This Week Featured Vendor</strong></h2>\r\n<p class=\"lead\">Change this to anything.Â Consectetuer adipiscing elit.</p>\r\n[button text=\"Go To Shop\" style=\"outline\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"74\"]\r\n\r\n<h2><strong>This is a simple banner</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"15\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" bg_pos=\"66% 22%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"80\" width__sm=\"60\" animate=\"fadeInLeft\" position_y=\"85\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<h6 class=\"uppercase\">Featured Vendor</h6>\r\n<h2><strong>WooÂ Vendor Shop</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" hover=\"zoom\"]\r\n\r\n[text_box width=\"80\" position_x=\"10\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h2><strong>This is a simple banner</strong></h2>\r\n<p class=\"lead\">Change this text to anything</p>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"15\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.09)\" hover=\"zoom\"]\r\n\r\n[text_box width=\"79\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h2><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[section bg_color=\"rgb(246, 246, 246)\" border=\"1px 0px 0px 0px\" border_color=\"rgba(0, 0, 0, 0.05)\"]\r\n\r\n[row]\r\n\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[featured_box img=\"17\" img_width=\"42\" pos=\"left\" icon_border=\"2\" margin=\"px px px px\"]\r\n\r\n<h3>Find Something You love</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscin.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[featured_box img=\"17\" img_width=\"42\" pos=\"left\" icon_border=\"2\" margin=\"px px px px\"]\r\n\r\n<h3>Find Something You love</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscin.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[featured_box img=\"17\" img_width=\"42\" pos=\"left\" icon_border=\"2\" margin=\"px px px px\"]\r\n\r\n<h3>Find Something You love</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscin.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Shop By Category\" size=\"undefined\"]\r\n\r\n[ux_product_categories style=\"normal\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"5\" depth=\"1\" image_height=\"230px\" text_bg=\"rgb(255, 255, 255)\"]\r\n\r\n[title style=\"center\" text=\"Latest  Collections\" size=\"undefined\"]\r\n\r\n[ux_products style=\"vertical\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"2\" depth=\"1\" orderby=\"date\" image_width=\"42\" text_size=\"large\" text_bg=\"rgb(255, 255, 255)\"]\r\n\r\n\r\n[/section]\r\n[ux_banner height=\"318px\" bg=\"18\" bg_color=\"rgb(80, 80, 80)\" bg_overlay=\"rgba(0, 0, 0, 0.49)\" bg_pos=\"22% 29%\"]\r\n\r\n[text_box width=\"40\" width__sm=\"60\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Become a Vendor</strong></h3>\r\n<p class=\"lead\">Want to sell on Flatsome Vendor? We\'re looking for shop to join us.</p>\r\n[button text=\"Learn More\" color=\"white\" style=\"outline\" radius=\"99\"]\r\n\r\n[button text=\"Apply Now\" color=\"white\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[section bg_color=\"rgb(244, 244, 244)\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[title style=\"bold-center\" text=\"How it Works\" size=\"undefined\"]\r\n\r\n[row_inner]\r\n\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Apply to be a Vendor</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Upload your products</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Sell and make money</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n[gap height=\"36px\"]\r\n\r\n[title style=\"bold-center\" text=\"Latest Reviews\" size=\"undefined\"]\r\n\r\n[ux_slider nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\"]\r\n\r\n[row_inner]\r\n\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n[row_inner]\r\n\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n\r\n[/ux_slider]\r\n[title style=\"bold-center\" text=\"From The Blog\" size=\"undefined\"]\r\n\r\n[blog_posts slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"3\" depth=\"1\" image_height=\"180px\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]','Vendor Shop','','inherit','closed','closed','','42-revision-v1','','','2021-11-30 12:01:01','2021-11-30 12:01:01','',42,'http://demoweblinks.in/padmini/?p=113',0,'revision','',0),(114,1,'2021-11-30 12:01:01','2021-11-30 12:01:01','[message_box bg_color=\"rgb(69, 69, 69)\" padding=\"7\"]\r\n\r\n[row style=\"collapse\" width=\"full-width\"]\r\n\r\n[col span=\"7\" span__sm=\"12\" align=\"center\"]\r\n\r\n<p><strong>BIG SUMMER SALE HAS STARTED. UP TO 70% OFF Â Â </strong>Make sure you</p>\r\n\r\n[/col]\r\n[col span=\"5\" span__sm=\"12\" align=\"center\"]\r\n\r\n[ux_countdown style=\"text\" size=\"94\" color=\"light\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/message_box]\r\n[ux_slider]\r\n\r\n[ux_banner height=\"706px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.35)\" bg_pos=\"40% 54%\"]\r\n\r\n[text_box width=\"69\" width__sm=\"80\"]\r\n\r\n<p class=\"alt-font\"><span style=\"font-size: 200%;\">It has finally started</span></p>\r\n<h1><span style=\"font-size: 130%;\"><strong>BIG SUMMER SALE</strong></span></h1>\r\n[ux_countdown size=\"307\" color=\"light\" bg_color=\"rgba(255, 255, 255, 0.86)\"]\r\n\r\n[button text=\"Shop Men\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop all\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n[row h_align=\"center\"]\r\n\r\n[col span=\"8\" span__sm=\"12\" align=\"center\"]\r\n\r\n<h1 class=\"uppercase\">Welcome to our Shop</h1>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"bold-center\" text=\"Browse products\" size=\"undefined\"]\r\n\r\n[ux_product_categories style=\"overlay\" type=\"grid\" grid=\"8\" grid_height=\"300px\" depth=\"1\" depth_hover=\"4\" number=\"7\" text_pos=\"middle\" text_size=\"large\"]\r\n\r\n[gap height=\"54px\"]\r\n\r\n[ux_banner height=\"387px\" bg=\"18\" bg_pos=\"49% 7%\"]\r\n\r\n[text_box width=\"40\" width__sm=\"76\" position_x=\"5\" position_x__sm=\"50\" position_y__sm=\"50\"]\r\n\r\n<h2 class=\"uppercase\"><strong>never miss a sale again</strong></h2>\r\n<p class=\"lead\">Sign up for our Newsletter</p>\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Latest news\" size=\"undefined\"]\r\n\r\n[blog_posts depth=\"1\" depth_hover=\"4\" image_height=\"68%\"]','Sale Countdown','','inherit','closed','closed','','43-revision-v1','','','2021-11-30 12:01:01','2021-11-30 12:01:01','',43,'http://demoweblinks.in/padmini/?p=114',0,'revision','',0),(115,1,'2021-11-30 12:01:02','2021-11-30 12:01:02','[ux_banner height=\"100%\" bg=\"18\" bg_color=\"#FFF\"]\r\n\r\n[text_box text_color=\"dark\" width=\"61\" width__sm=\"85\" animate=\"fadeInUp\"]\r\n\r\n<h2><span style=\"font-size: 170%;\"><strong>Go Explore</strong></span></h2>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[divider]\r\n\r\n[search]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[section label=\"Simple Light\" bg_color=\"rgb(245, 245, 245)\" padding=\"27px\" border=\"1px 0px 0px 0px\" border_color=\"rgb(235, 235, 235)\"]\r\n\r\n[row]\r\n\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[featured_box margin=\"px px px px\"]\r\n\r\n<h3>Explore Things</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<h3>Book Events</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<h3>Find a hotel</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[title style=\"center\" text=\"Thing to do\" margin_top=\"25px\" size=\"undefined\"]\r\n\r\n[ux_products style=\"shade\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" cat=\"114\"]\r\n\r\n[title style=\"center\" text=\"Go Explore\" margin_top=\"25px\" size=\"undefined\"]\r\n\r\n[ux_banner_grid]\r\n\r\n[col_grid span=\"3\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover=\"glow\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"70\" width__sm=\"100\" scale=\"187\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Find a Beach</strong></h3>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"40\" width__sm=\"100\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Explore THe CITY</strong></h3>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover=\"glow\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"40\" width__sm=\"100\"]\r\n\r\n<h3 class=\"uppercase\"><strong>EXPLORE OUTDOORS</strong></h3>\r\n<p>Â </p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover=\"glow\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"40\" width__sm=\"100\"]\r\n\r\n<h3 class=\"uppercase\"><strong>TAILORED SUITES</strong></h3>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover=\"glow\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"40\" width__sm=\"97\"]\r\n\r\n<h3 class=\"uppercase\"><strong>ENJOY A DRINK</strong></h3>\r\n<p>Â </p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n[gap]\r\n\r\n[ux_banner height=\"400px\" bg=\"18\" bg_overlay=\"rgba(255, 255, 255, 0.49)\" bg_pos=\"26% 17%\"]\r\n\r\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"60\"]\r\n\r\n<h3 class=\"uppercase\"><strong>List your Company</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Apply Now\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Latest From Blog\" margin_top=\"25px\" size=\"undefined\"]\r\n\r\n[blog_posts style=\"overlay\" show_date=\"text\" excerpt=\"false\" comments=\"false\" image_height=\"293px\" image_hover=\"zoom\" text_align=\"left\"]\r\n\r\n[title style=\"center\" text=\"Follow on Instagram\" icon=\"icon-instagram\" margin_top=\"25px\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed type=\"slider\" width=\"full-width\" columns=\"6\"]','Explore','','inherit','closed','closed','','44-revision-v1','','','2021-11-30 12:01:02','2021-11-30 12:01:02','',44,'http://demoweblinks.in/padmini/?p=115',0,'revision','',0),(116,1,'2021-11-30 12:01:02','2021-11-30 12:01:02','[ux_banner height=\"261px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.09)\" bg_pos=\"54% 100%\" parallax=\"3\"]\n\n[text_box parallax=\"-4\" text_depth=\"1\"]\n\n<h3 class=\"uppercase\"><strong>Create Powerful Forms</strong></h3>\n<p class=\"lead\">Create Powerful forms with the integrated Contact Form 7 Plugin.</p>\n\n[/text_box]\n\n[/ux_banner]\n[section bg_color=\"rgb(255, 255, 255)\" mask=\"arrow\" padding=\"45px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Simple Contact Form\" size=\"undefined\"]\n\n(insert contact form here)\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Newsletter signup\" size=\"undefined\"]\n\n(insert contact form here)\n\n[title text=\"Newsletter signup 2\" size=\"undefined\"]\n\n(insert contact form here)\n\n[title text=\"Newsletter signup 2\" size=\"undefined\"]\n\n(insert contact form here)\n\n<p class=\"lead\">These forms are included as Contact Form 7 Presets.</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Simple Center\" bg_color=\"rgb(0, 0, 0)\" dark=\"true\" mask=\"arrow\" padding=\"60px\" height=\"300px\" border_color=\"rgb(235, 235, 235)\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Contact Form Flat\"]\n\n(insert contact form here)\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Newsletter signup\" size=\"undefined\"]\n\n(insert contact form here)\n\n[title text=\"Newsletter signup 2\" size=\"undefined\"]\n\n(insert contact form here)\n\n[title text=\"Newsletter signup 2\" size=\"undefined\"]\n\n(insert contact form here)\n\n<p class=\"lead\">These forms are included as Contact Form 7 Presets.</p>\n\n[/col]\n\n[/row]\n\n[/section]','Forms','','inherit','closed','closed','','45-revision-v1','','','2021-11-30 12:01:02','2021-11-30 12:01:02','',45,'http://demoweblinks.in/padmini/?p=116',0,'revision','',0),(117,1,'2021-11-30 12:01:03','2021-11-30 12:01:03','[ux_banner height=\"377px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.61)\" bg_pos=\"60% 22%\" parallax=\"3\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>PRICE TABLE ELEMENT</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[gap]\r\n\r\n[title text=\"3 Column price table with text on left\"]\r\n\r\n[gap]\r\n\r\n[row]\r\n\r\n[col span=\"3\" padding=\"0 20px 0 0\"]\r\n\r\n<h3>Pricing</h3>\r\n[divider]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.reLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy. Add any text here</p>\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Silver\" description=\"Enter description here...\" price=\"29$\" color=\"dark\" bg_color=\"rgb(122, 44, 205)\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tooltip. Add extra info here.\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" color=\"white\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Gold\" description=\"Enter description here...\" price=\"49$\" color=\"dark\" bg_color=\"rgba(0, 0, 0, 0.99)\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tooltip. Add extra info here.\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Platinium\" description=\"Enter description here...\" price=\"129$\" color=\"dark\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" enabled=\"false\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Disabled\" enabled=\"false\"]\r\n\r\n[button text=\"Click me!\" color=\"white\" style=\"underline\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[section bg=\"#f1f1f1\" bg_color=\"rgb(243, 243, 243)\" margin=\"-1px\"]\r\n\r\n[title text=\"3 Column price table inside a background\"]\r\n\r\n[gap]\r\n\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Silver\" description=\"Enter description here...\" price=\"29$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tooltip. Add extra info here.\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" style=\"outline\" radius=\"10\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Gold\" description=\"Enter description here...\" price=\"49$\" featured=\"true\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tooltip. Add extra info here.\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" style=\"shade\" size=\"larger\" radius=\"10\" depth=\"4\" depth_hover=\"5\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Platinium\" description=\"Enter description here...\" price=\"129$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\" padding=\"0 0 0 20px\"]\r\n\r\n<h3>Pricing</h3>\r\n[divider]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.reLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy. Add any text here</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[row style=\"collapse\"]\r\n\r\n[col]\r\n\r\n[title style=\"center\" text=\"4 Column collapsed\"]\r\n\r\n[gap]\r\n\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\" featured=\"true\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[gap]\r\n\r\n[section bg=\"18\" bg_color=\"rgb(40, 40, 40)\" bg_overlay=\"rgba(255, 255, 255, 0.5)\" parallax=\"3\" padding=\"49px\"]\r\n\r\n[row style=\"small\" depth=\"2\"]\r\n\r\n[col span=\"3\" animate=\"fadeInUp\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\" animate=\"fadeInUp\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\" featured=\"true\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\" animate=\"fadeInUp\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\" animate=\"fadeInUp\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]','Price table','','inherit','closed','closed','','46-revision-v1','','','2021-11-30 12:01:03','2021-11-30 12:01:03','',46,'http://demoweblinks.in/padmini/?p=117',0,'revision','',0),(118,1,'2021-11-30 12:01:03','2021-11-30 12:01:03','[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.44)\" bg_pos=\"32% 28%\" parallax=\"3\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>SEARCH ELEMENT</strong></h3>\n<p class=\"lead\">Insert a Product Search box anywhere</p>\n[search style=\"flat\" size=\"xlarge\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Default style\"]\n\n[search]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Flat style\"]\n\n[search style=\"flat\"]\n\n\n[/col]\n\n[/row]\n[ux_banner height=\"500px\" bg=\"18\" bg_pos=\"58% 16%\"]\n\n[text_box width=\"37\" position_x=\"0\" text_align=\"left\"]\n\n<h3 class=\"uppercase\"><strong>Search box inside a banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[gap height=\"25px\"]\n\n[search size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]','Search box','','inherit','closed','closed','','47-revision-v1','','','2021-11-30 12:01:03','2021-11-30 12:01:03','',47,'http://demoweblinks.in/padmini/?p=118',0,'revision','',0),(119,1,'2021-11-30 12:01:04','2021-11-30 12:01:04','[ux_banner height=\"405px\" bg=\"18\" bg_overlay=\"rgba(255, 255, 255, 0.94)\" bg_pos=\"53% 30%\"]\r\n\r\n[text_box text_color=\"dark\"]\r\n\r\n[ux_image id=\"17\" width=\"23\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Instagram element</strong></h3>\r\n<p class=\"lead\">Add beautiful instagram images anywhere on your site</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Simple Grid\" icon=\"icon-instagram\"]\r\n\r\n[ux_instagram_feed username=\"stylechild_no\" col_spacing=\"small\"]\r\n\r\n[title style=\"center\" text=\"full width slider\" icon=\"icon-instagram\" margin_top=\"43px\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" type=\"slider\" slider_nav_color=\"light\" width=\"full-width\" columns=\"6\"]\r\n\r\n[title style=\"center\" text=\"Simple slider\" icon=\"icon-instagram\" margin_top=\"32px\"]\r\n\r\n[ux_instagram_feed username=\"stylechild_no\" type=\"slider\" slider_nav_position=\"outside\" col_spacing=\"small\"]\r\n\r\n[title style=\"center\" text=\"full width slider Black and white\" icon=\"icon-instagram\" margin_top=\"43px\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" image_hover=\"color\" type=\"slider\" slider_nav_color=\"light\" width=\"full-width\" columns=\"6\"]','Instagram feed','','inherit','closed','closed','','48-revision-v1','','','2021-11-30 12:01:04','2021-11-30 12:01:04','',48,'http://demoweblinks.in/padmini/?p=119',0,'revision','',0),(120,1,'2021-11-30 12:01:05','2021-11-30 12:01:05','[ux_banner height=\"338px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.41)\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>Accordion element</strong></h3>\r\n<p class=\"lead\">Create beautiful accordion sections. You can add any element to the accordion panels.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Simple accordion\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[accordion]\r\n\r\n[accordion-item title=\"Accordion Title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n[accordion-item title=\"Accordion Item 1 Title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n[accordion-item title=\"Accordion Item 2 Title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n[accordion-item title=\"Add any element to accordion\"]\r\n\r\n[blog_posts style=\"normal\" columns=\"3\" image_height=\"56.25%\"]\r\n\r\n[button text=\"Click me!\" style=\"outline\"]\r\n\r\n\r\n[/accordion-item]\r\n\r\n[/accordion]\r\n\r\n[/col]\r\n\r\n[/row]','Accordion','','inherit','closed','closed','','49-revision-v1','','','2021-11-30 12:01:05','2021-11-30 12:01:05','',49,'http://demoweblinks.in/padmini/?p=120',0,'revision','',0),(121,1,'2021-11-30 12:01:05','2021-11-30 12:01:05','[ux_banner height=\"375px\" bg=\"18\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.36)\"]\r\n\r\n[text_box width=\"51\"]\r\n\r\n<h3 class=\"uppercase\"><strong>LOGO ELEMENT</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Normal logos\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\"]\r\n\r\n[logo img=\"17\"]\r\n\r\n[logo img=\"17\"]\r\n\r\n[logo img=\"17\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Logos in a Dashed Grid\" margin_top=\"19px\"]\r\n\r\n[row col_style=\"dashed\" v_align=\"middle\"]\r\n\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"17\" hover=\"overlay-add\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Logos in a Slider\" margin_top=\"57px\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n\r\n[/ux_slider]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Logos in a Full width slider\" margin_top=\"57px\"]\r\n\r\n[ux_slider bg_color=\"rgb(247, 247, 247)\" infinitive=\"false\" freescroll=\"true\" hide_nav=\"true\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n[logo img=\"17\" hover=\"color\"]\r\n\r\n\r\n[/ux_slider]','Logo','','inherit','closed','closed','','50-revision-v1','','','2021-11-30 12:01:05','2021-11-30 12:01:05','',50,'http://demoweblinks.in/padmini/?p=121',0,'revision','',0),(122,1,'2021-11-30 12:01:05','2021-11-30 12:01:05','[ux_banner height=\"364px\" bg=\"18\" bg_overlay=\"rgba(255, 255, 255, 0.87)\" bg_pos=\"80% 19%\" parallax=\"2\"]\n\n[text_box text_color=\"dark\"]\n\n<h3 class=\"uppercase\"><strong>Portfolio Element</strong></h3>\n<p>Showcase work or other elements</p>\n[divider width=\"67px\" height=\"5px\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"Simple with Filtering\" size=\"undefined\"]\n\n[ux_portfolio style=\"overlay\" filter=\"true\" orderby=\"name\" type=\"masonry\" grid=\"3\" image_hover=\"overlay-add-50\" image_hover_alt=\"zoom\" text_pos=\"middle\" text_size=\"large\" text_hover=\"slide\"]\n\n[title style=\"center\" text=\"Ouline Filter style\" size=\"undefined\"]\n\n[ux_portfolio style=\"overlay\" filter=\"true\" filter_nav=\"outline\" orderby=\"name\" type=\"masonry\" grid=\"3\" image_hover=\"overlay-add-50\" image_hover_alt=\"blur\" text_pos=\"middle\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\" style=\"text-align: center;\">You can choose between many differnt filter navigation style and align them to left or right.</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Slider Style\" size=\"undefined\"]\n\n[ux_portfolio style=\"shade\" filter_nav=\"outline\" orderby=\"name\" grid=\"3\" columns=\"5\" image_hover=\"zoom\" image_hover_alt=\"grayscale\"]\n\n[title style=\"center\" text=\"Grid Style\" size=\"undefined\"]\n\n[ux_portfolio style=\"overlay\" filter=\"true\" filter_nav=\"outline\" number=\"4\" offset=\"4\" orderby=\"name\" type=\"grid\" grid=\"3\" image_hover=\"overlay-add-50\" image_hover_alt=\"zoom\" text_align=\"left\" text_size=\"large\" text_hover=\"bounce\"]\n\n[title style=\"center\" text=\"Collapsed Full width Grid\" size=\"undefined\"]\n\n[ux_portfolio style=\"overlay\" filter=\"true\" filter_nav=\"outline\" number=\"4\" orderby=\"name\" type=\"grid\" grid=\"3\" width=\"full-width\" col_spacing=\"collapse\" image_hover=\"overlay-add-50\" image_hover_alt=\"zoom\" text_align=\"left\" text_size=\"large\" text_hover=\"bounce\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\" style=\"text-align: center;\">ChooseÂ between 14 differnt premade grid layouts.</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Open in a ligtbox\"]\n\n[ux_portfolio lightbox=\"true\"]','Portfolio','','inherit','closed','closed','','51-revision-v1','','','2021-11-30 12:01:05','2021-11-30 12:01:05','',51,'http://demoweblinks.in/padmini/?p=122',0,'revision','',0),(123,1,'2021-11-30 12:01:05','2021-11-30 12:01:05','[ux_banner height=\"496px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"52% 2%\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>Pages Element</strong></h3>\r\n<p class=\"lead\">Display a list of sub pages of a selected page in a beautiful way. Very useful if you need to link to sub pages from a parent page.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Default Style\"]\r\n\r\n[ux_pages parent=\"3021\" depth=\"1\" text_align=\"center\" text_padding=\"10px 10px 10px 10px\"]','Pages','','inherit','closed','closed','','52-revision-v1','','','2021-11-30 12:01:05','2021-11-30 12:01:05','',52,'http://demoweblinks.in/padmini/?p=123',0,'revision','',0),(124,1,'2021-11-30 12:01:06','2021-11-30 12:01:06','[scroll_to title=\"Welcome Banner\" link=\"welcome\"]\n\n[ux_banner height=\"100%\" bg=\"18\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" parallax=\"2\"]\n\n[text_box width=\"63\" width__sm=\"60\" position_y=\"20\"]\n\n<h1 class=\"lead\"><strong>Scroll To</strong>Â Element</h1>\n<p class=\"lead\">Create Scroll To elements to navigate the site with small bullets on the side. You can also disable the bullet and use it for <strong>One Page Navigation</strong></p>\n\n[/text_box]\n\n[/ux_banner]\n[scroll_to title=\"Another banner\" link=\"another_banner\"]\n\n[ux_banner height=\"100%\" bg=\"18\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" parallax=\"2\"]\n\n[text_box width=\"50\" width__sm=\"60\" animate=\"fadeInRight\" position_x=\"0\" position_y=\"40\" text_align=\"left\"]\n\n<h1 class=\"lead\"><strong>Another Banner</strong></h1>\n<p class=\"lead\">Create Scroll To elements to navigate the site with small bullets on the side. You can also disable the bullet and use it for <strong>One Page Navigation</strong></p>\n\n[/text_box]\n\n[/ux_banner]\n[scroll_to title=\"Another Scroll To banner\" link=\"another_banner_2\"]\n\n[ux_banner height=\"100%\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.1)\"]\n\n[text_box width=\"52\" width__sm=\"60\" animate=\"fadeInUp\" parallax=\"3\"]\n\n<h2><span style=\"font-size: 200%;\">Another Banner</span></h2>\n\n[/text_box]\n\n[/ux_banner]\n[scroll_to title=\"Signup for Newsletter\" link=\"newsletter\"]\n\n[ux_banner height=\"100%\" bg=\"18\" bg_color=\"rgb(43, 7, 7)\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" parallax=\"4\"]\n\n[text_box width=\"74\" width__sm=\"84\" scale=\"120\" scale__sm=\"101\" parallax=\"2\"]\n\n<h3 class=\"uppercase\"><strong>Signup for Newsletter</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n(insert contact form here)\n\n\n[/text_box]\n\n[/ux_banner]','Scroll To','','inherit','closed','closed','','53-revision-v1','','','2021-11-30 12:01:06','2021-11-30 12:01:06','',53,'http://demoweblinks.in/padmini/?p=124',0,'revision','',0),(125,1,'2021-11-30 12:01:06','2021-11-30 12:01:06','[ux_banner height=\"444px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.27)\"]\n\n[text_box]\n\n<h1 class=\"uppercase\"><strong>COUNT DOWN ELEMENT</strong></h1>\n<p class=\"lead\">AddÂ beautiful count downs anywhere on the site.</p>\n[ux_countdown size=\"300\" bg_color=\"rgba(0, 0, 0, 0.09)\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span=\"4\"]\n\n[title style=\"center\" text=\"Primary Color\"]\n\n[ux_countdown size=\"198\" color=\"primary\" day=\"30\" time=\"24:00\"]\n\n\n[/col]\n[col span=\"4\"]\n\n[title style=\"center\" text=\"Dark Color\"]\n\n[ux_countdown day=\"30\" time=\"24:00\"]\n\n\n[/col]\n[col span=\"4\"]\n\n[title style=\"center\" text=\"Light Color\"]\n\n[ux_countdown size=\"200%\" color=\"light\" day=\"30\" time=\"24:00\"]\n\n\n[/col]\n\n[/row]\n[row]\n\n[col]\n\n[ux_banner height=\"600px\" bg=\"18\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"60\" animate=\"fadeIn\" position_x=\"10\"]\n\n<h3 class=\"uppercase\">A Countdown Inside A Banner</h3>\n[ux_countdown day=\"30\" time=\"24:00\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[gap]\n\n\n[/col]\n[col span=\"6\" align=\"center\"]\n\n[title style=\"center\" text=\"Countdown as text\"]\n\n[ux_countdown style=\"text\" size=\"91\" day=\"30\" time=\"24:00\"]\n\n\n[/col]\n[col span=\"6\"]\n\n[title style=\"center\" text=\"Countdown as Clock\"]\n\n[ux_countdown color=\"primary\" day=\"30\" time=\"24:00\"]\n\n\n[/col]\n\n[/row]','Countdown','','inherit','closed','closed','','54-revision-v1','','','2021-11-30 12:01:06','2021-11-30 12:01:06','',54,'http://demoweblinks.in/padmini/?p=125',0,'revision','',0),(126,1,'2021-11-30 12:01:07','2021-11-30 12:01:07','[ux_slider]\n\n[ux_banner height=\"637px\" bg=\"18\" bg_size=\"original\" bg_pos=\"62% 60%\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"18\" bg_pos=\"62% 68%\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" pos=\"center\" title=\"Company Feature 1\" icon_border=\"2\" margin=\"0px 0px 0px 0px\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" pos=\"center\" title=\"Company Feature 2\" icon_border=\"2\" margin=\"0px 0px 0px 0px\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" pos=\"center\" title=\"Company Feature 3\" icon_border=\"2\" margin=\"0px 0px 0px 0px\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"17\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with image left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"17\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" slider_nav_style=\"circle\" columns=\"2\" depth=\"1\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\" icon_pos=\"left\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]','Corporate','','inherit','closed','closed','','55-revision-v1','','','2021-11-30 12:01:07','2021-11-30 12:01:07','',55,'http://demoweblinks.in/padmini/?p=126',0,'revision','',0),(127,1,'2021-11-30 12:01:07','2021-11-30 12:01:07','[ux_slider bg_color=\"rgb(0, 0, 0)\"]\r\n\r\n[ux_banner height=\"100%\" slide_effect=\"zoom-in\" bg=\"18\" bg_size=\"original\" bg_color=\"rgb(35, 35, 35)\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"44% 34%\"]\r\n\r\n[text_box width=\"58\" width__sm=\"100\" animate=\"fadeInUp\" parallax=\"2\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 160%;\">Nothing is Impossible</span></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\r\n[button text=\"Shop Men\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" slide_effect=\"zoom-in\" bg=\"18\" bg_size=\"original\" bg_color=\"rgb(35, 35, 35)\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"44% 34%\"]\r\n\r\n[text_box width=\"58\" width__sm=\"100\" animate=\"fadeInLeft\" parallax=\"2\" position_x=\"0\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 160%;\">CHANGE THIS TO ANYTHING</span></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\r\n[button text=\"Shop Men\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" slide_effect=\"zoom-in\" bg=\"18\" bg_size=\"original\" bg_color=\"rgb(35, 35, 35)\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"44% 34%\"]\r\n\r\n[text_box width=\"58\" width__sm=\"100\" animate=\"fadeInLeft\" parallax=\"3\" position_x=\"0\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 160%;\">CHANGE THIS TO ANYTHING</span></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\r\n[button text=\"Shop Men\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n[section bg_color=\"rgb(27, 27, 27)\" dark=\"true\" padding=\"60px\"]\r\n\r\n[row]\r\n\r\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"17\" img_width=\"42\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(143, 143, 143)\" margin=\"px px px px\"]\r\n\r\n<h4>Free Shipping all products above 99$</h4>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"17\" img_width=\"42\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(143, 143, 143)\" margin=\"px px px px\"]\r\n\r\n<h4>New products added everyday</h4>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"17\" img_width=\"42\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(143, 143, 143)\" margin=\"px px px px\"]\r\n\r\n<h4>Free Shipping all products above 99$</h4>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Featured Products\" size=\"undefined\"]\r\n\r\n[ux_products slider_nav_style=\"circle\"]\r\n\r\n[title style=\"center\" text=\"Browse\" size=\"undefined\"]\r\n\r\n[ux_product_categories style=\"overlay\" columns=\"5\" image_height=\"113%\" image_overlay=\"rgba(0, 0, 0, 0.16)\" text_pos=\"middle\"]\r\n\r\n[title style=\"center\" text=\"Latest News\" size=\"undefined\"]\r\n\r\n[blog_posts style=\"overlay\" depth=\"1\" title_style=\"uppercase\" badge_style=\"square\" image_height=\"300px\"]\r\n\r\n\r\n[/section]\r\n[ux_banner height=\"420px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" parallax=\"3\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>Signup for newsletter</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_instagram_feed username=\"surfer_magazine\" type=\"slider\" width=\"full-width\" columns=\"8\"]','Sport Shop','','inherit','closed','closed','','56-revision-v1','','','2021-11-30 12:01:07','2021-11-30 12:01:07','',56,'http://demoweblinks.in/padmini/?p=127',0,'revision','',0),(128,1,'2021-11-30 12:01:07','2021-11-30 12:01:07','[section bg_color=\"rgb(237, 239, 241)\" effect=\"snow\" border=\"1px 0px 1px 0px\" border_color=\"rgba(0, 0, 0, 0.13)\"]\r\n\r\n[ux_banner_grid height=\"617\" depth=\"1\"]\r\n\r\n[col_grid span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner bg=\"18\" bg_pos=\"64% 30%\" border_color=\"rgba(0, 0, 0, 0.05)\"]\r\n\r\n[text_box width=\"70\" position_y=\"80\"]\r\n\r\n<h2 class=\"alt-font\">A Cute Title</h2>\r\n<h2 class=\"uppercase\"><strong><span style=\"font-size: 140%;\">This is a simple headline</span></strong></h2>\r\n<p class=\"lead\"><span style=\"font-size: 130%;\">A Small text</span></p>\r\n[button text=\"Click me!\" style=\"outline\" size=\"xlarge\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\"]\r\n\r\n[ux_banner bg=\"18\" bg_pos=\"51% 56%\" border_color=\"rgba(0, 0, 0, 0.08)\"]\r\n\r\n[text_box width=\"70\" width__sm=\"60\" position_y=\"10\"]\r\n\r\n<h2 class=\"uppercase\"><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"5\" span__sm=\"14\" height=\"1-3\"]\r\n\r\n[ux_banner bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(255, 255, 255, 0.15)\" bg_pos=\"51% 30%\" border_color=\"rgba(0, 0, 0, 0.08)\"]\r\n\r\n[text_box width=\"42\" position_x=\"10\" position_y=\"80\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<h2 class=\"uppercase\"><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"5\" span__sm=\"12\" height=\"2-3\"]\r\n\r\n[ux_banner bg=\"18\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"71% 19%\" border_color=\"rgba(0, 0, 0, 0.07)\"]\r\n\r\n[text_box width=\"70\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>SALE ENDS SOON</strong></h2>\r\n[ux_countdown size=\"268\" bg_color=\"rgba(0, 0, 0, 0.1)\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[section bg_color=\"rgb(255, 255, 255)\"]\r\n\r\n[row col_style=\"divided\"]\r\n\r\n[col span=\"4\" span__sm=\"12\" align=\"center\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"17\" img_width=\"51\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\r\n\r\n<h3>Free Shipping on orders above 99$</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"17\" img_width=\"51\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\r\n\r\n<h3>Give a Gift to a Friend</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed dia.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"17\" img_width=\"51\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\r\n\r\n<h3>Loved by our Customers</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[title style=\"bold-center\" text=\"Shop Now\" margin_top=\"10px\" size=\"undefined\"]\r\n\r\n[ux_product_categories style=\"overlay\" columns=\"5\" depth=\"1\" show_count=\"0\" image_overlay=\"rgba(0, 0, 0, 0.08)\" image_hover=\"zoom\" text_pos=\"middle\" text_size=\"small\"]\r\n\r\n[row]\r\n\r\n[col span=\"3\" span__sm=\"12\"]\r\n\r\n\r\n[/col]\r\n[col span=\"5\" span__sm=\"12\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"bold-center\" text=\"Weekly Featured Products\" margin_top=\"10px\" size=\"undefined\"]\r\n\r\n[ux_products style=\"normal\" columns=\"5\" depth=\"1\" show=\"featured\"]\r\n\r\n[title style=\"bold-center\" text=\"Follow us on Instagram\" margin_top=\"10px\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed username=\"stylechild_no\" type=\"slider\" width=\"full-width\" columns=\"8\"]','Cute Shop','','inherit','closed','closed','','57-revision-v1','','','2021-11-30 12:01:07','2021-11-30 12:01:07','',57,'http://demoweblinks.in/padmini/?p=128',0,'revision','',0),(129,1,'2021-11-30 12:01:08','2021-11-30 12:01:08','[ux_banner height=\"562px\" height__sm=\"368px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" parallax=\"2\"]\n\n[text_box width=\"68\" width__sm=\"81\"]\n\n<h2 class=\"uppercase\">Powerful Theme needs powerul images</h2>\n<p class=\"lead\">Responsive Images you can insert anywhere. You can also them into a slider.</p>\n\n[/text_box]\n\n[/ux_banner]\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"center\"]\n\n<h1 class=\"lead\">Beautiful Images with Beautiful Captions</h1>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"17\" image_size=\"large\" lightbox=\"true\" caption=\"true\" image_overlay=\"rgba(0, 0, 0, 0.16)\" image_hover=\"zoom-long\" animate=\"fadeInUp\"]\n\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Image Overlay Styles\"]\n\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"17\" image_hover=\"glow\"]\n\n<p>Glow</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"17\" image_hover=\"color\" animate=\"fadeInLeft\"]\n\n<p>Add Color</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"17\" image_hover=\"grayscale\" animate=\"fadeInLeft\"]\n\n<p>Grayscale</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"17\" image_hover=\"fade-in\" animate=\"fadeInLeft\"]\n\n<p>Fade In</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"17\" image_hover=\"zoom-fade\" animate=\"fadeInLeft\"]\n\n<p>ZoomÂ Fade</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"17\" image_overlay=\"rgba(0, 0, 0, 0.37)\" image_hover=\"overlay-add\" animate=\"fadeInLeft\"]\n\n<p>Add Overlay</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"17\" image_overlay=\"rgba(0, 0, 0, 0.37)\" image_hover=\"overlay-remove\" animate=\"fadeInLeft\"]\n\n<p>Remove Overlay</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"17\" image_hover=\"blur\" animate=\"fadeInLeft\"]\n\n<p>Blur</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Image with video\"]\n\n[ux_image id=\"17\" animate=\"fadeInLeft\" link=\"https://www.youtube.com/watch?v=_j5KR28qtsI\"]\n\n<p class=\"lead\">Add a <strong>Youtube or Vimeo</strong> link to Image link tag to automatically get a play icon and a Video Lightbox on Images.</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Image drop shadow\"]\n\n[ux_image id=\"17\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n<p class=\"lead\">Add cool drop shadows to your images to make them pop outÂ on hover.</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Add Images to any sliders\" size=\"undefined\"]\n\n[ux_slider style=\"container\" slide_width=\"700px\" bg_color=\"rgb(0, 0, 0)\"]\n\n[ux_image id=\"17\" height=\"75%\" image_hover=\"overlay-remove\" depth_hover=\"2\"]\n\n[ux_image id=\"17\" height=\"75%\" image_hover=\"overlay-remove\" depth=\"3\"]\n\n[ux_image id=\"17\" height=\"75%\" image_hover=\"overlay-remove\"]\n\n[ux_image id=\"17\" height=\"75%\" link=\"https://www.youtube.com/watch?v=_j5KR28qtsI\"]\n\n\n[/ux_slider]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Image with reverse parallax\"]\n\n[ux_image id=\"17\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" parallax=\"-1\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Image with PArallax\"]\n\n[ux_image id=\"17\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" parallax=\"1\" animate=\"fadeInLeft\"]\n\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Images with lightbox\" size=\"undefined\"]\n\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"17\" height=\"75%\" lightbox=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"17\" height=\"75%\" lightbox=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"17\" height=\"75%\" lightbox=\"true\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"17\" height=\"75%\" lightbox=\"true\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span__sm=\"12\" align=\"center\"]\n\n[title style=\"center\" text=\"Images with Caption\" size=\"undefined\"]\n\n[row_inner]\n\n[col_inner span=\"4\" span__sm=\"12\"]\n\n[ux_image id=\"17\" height=\"75%\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n[ux_image id=\"17\" height=\"75%\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n[ux_image id=\"17\" height=\"75%\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]','Images','','inherit','closed','closed','','58-revision-v1','','','2021-11-30 12:01:08','2021-11-30 12:01:08','',58,'http://demoweblinks.in/padmini/?p=129',0,'revision','',0),(130,1,'2021-11-30 12:01:08','2021-11-30 12:01:08','[ux_banner height=\"446px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.61)\" bg_pos=\"58% 26%\"]\n\n[text_box width=\"100\" width__sm=\"75\" parallax=\"-1\"]\n\n<h6>Flatsome Grid System</h6>\n<h1>Responsive Rows and Columns</h1>\n<p class=\"lead\">Create Amazing layouts by using FlatsomeÂ Row and Column System powered by<strong> Flexbox</strong></p>\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"Simple 4-column row\"]\n\n[row padding=\"30px\"]\n\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(255, 0, 211, 0.96)\" color=\"light\" depth_hover=\"5\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Vertical Centered Row\"]\n\n[row v_align=\"middle\" padding=\"30px\"]\n\n[col span=\"6\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Bottom Align Row\"]\n\n[row v_align=\"bottom\" padding=\"30px\"]\n\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Equal aligned row\"]\n\n[row v_align=\"equal\" padding=\"30px\"]\n\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Rows With Drop shadow\"]\n\n[row padding=\"30px\" depth=\"2\" depth_hover=\"3\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n<p><strong>You can set Column Depth for All columns or per column.</strong></p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Divided row\"]\n\n[row style=\"large\" col_style=\"divided\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Dashed Lined Row\" margin_top=\"23px\" size=\"undefined\"]\n\n[row col_style=\"dashed\" padding=\"30px\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Solid Lined Row\" margin_top=\"25px\" size=\"undefined\"]\n\n[row col_style=\"solid\" padding=\"30px\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Custom Background on a Column\" margin_top=\"28px\" size=\"undefined\"]\n\n[row padding=\"30px\"]\n\n[col span=\"5\" span__sm=\"6\" padding=\"30px 30px 30px 30px\" bg_color=\"rgb(38, 65, 116)\" color=\"light\" depth=\"2\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Full Width Row with Backgrounds\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"equal\" padding=\"30px\"]\n\n[col span=\"4\" span__sm=\"12\" bg_color=\"rgb(0, 0, 0)\" color=\"light\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummyLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_color=\"rgb(153, 120, 222)\" color=\"light\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummyLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_color=\"rgb(120, 154, 222)\" color=\"light\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummyLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Nested Rows\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"8\" span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n[section bg_color=\"rgb(231, 231, 231)\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" padding=\"30px 30px 30px 30px\" bg_color=\"rgb(255, 255, 255)\" depth=\"3\" depth_hover=\"5\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(0, 0, 0)\"]\n\n[row style=\"small\" v_align=\"middle\"]\n\n[col span=\"4\" span__sm=\"12\" padding=\"20px\" bg_color=\"rgb(255, 255, 255)\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" color=\"light\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" color=\"light\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(231, 231, 231)\"]\n\n[row col_style=\"solid\"]\n\n[col span=\"4\" span__sm=\"6\" parallax=\"1\"]\n\n<h3>Parallax Column</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\" parallax=\"2\"]\n\n<h3>Parallax Column</h3>\n<p><span style=\"color: #555555; font-size: 14.4px; line-height: 1.5;\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</span></p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" parallax=\"3\"]\n\n<h3>Parallax Column</h3>\n<p><span style=\"color: #555555; font-size: 14.4px; line-height: 1.5;\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</span></p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row h_align=\"center\"]\n\n[col span=\"7\" span__sm=\"10\" align=\"center\"]\n\n<h3>A Centered Columns Row</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Animated Columns\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\n\n<h3>Fade In Up</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInDown\"]\n\n<h3>Fade InÂ Down</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInLeft\"]\n\n<h3>Fade In Left</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInRight\"]\n\n<h3>Fade In Right</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceIn\"]\n\n<h3>Bounce In</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceInUp\"]\n\n<h3>Bounce In Up</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceInDown\"]\n\n<h3>Bounce InÂ Down</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceInLeft\"]\n\n<h3>Bounce In Left</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceInRight\"]\n\n<h3>Bounce InÂ Right</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\" span__sm=\"12\" animate=\"flipInY\"]\n\n<h3>Flip In Y</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\" animate=\"flipInX\"]\n\n<h3>Flip In X</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\" animate=\"blurIn\"]\n\n<h3>Blur In</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]','Rows / Columns','','inherit','closed','closed','','59-revision-v1','','','2021-11-30 12:01:08','2021-11-30 12:01:08','',59,'http://demoweblinks.in/padmini/?p=130',0,'revision','',0),(131,1,'2021-11-30 12:01:08','2021-11-30 12:01:08','[ux_banner height=\"400px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.66)\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>Text Elements</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[section bg_color=\"rgb(255, 255, 255)\"]\n\n[title style=\"center\" text=\"Typography\"]\n\n[row]\n\n[col span=\"3\"]\n\n<h1>Headline h1</h1>\n<h2>Headline h2</h2>\n<h3>Headline h3</h3>\n<h4>Headline h4</h4>\n<h5>Headline h5</h5>\n<h6>Headline h6</h6>\n\n[/col]\n[col span=\"3\"]\n\n<h1 class=\"uppercase\">headlineÂ h1</h1>\n<h2 class=\"uppercase\">headlineÂ h2</h2>\n<h3 class=\"uppercase\">headlineÂ h3</h3>\n<h4 class=\"uppercase\">headlineÂ H4</h4>\n<h5 class=\"uppercase\">headlineÂ H5</h5>\n<h6 class=\"uppercase\">headlineÂ H6</h6>\n\n[/col]\n[col span=\"3\"]\n\n<h3 class=\"uppercase\" data-text-color=\"primary\">primary color</h3>\n<h3 class=\"uppercase\" data-text-color=\"secondary\">secondary color</h3>\n<h3 class=\"uppercase\" data-text-color=\"alert\">alert color</h3>\n<h3 class=\"uppercase\" data-text-color=\"success\">SUCCESS COLOR</h3>\n<h3 class=\"uppercase\">DEFAULTÂ COLOR</h3>\n\n[/col]\n[col span=\"3\"]\n\n<p><a href=\"#\">Default link<br />\n<strong>Bold link</strong></a><br />\n<strong>Bold text<br />\n</strong><em>Italic text<br />\n</em><del>Strikethrough<br />\n</del><span style=\"text-decoration: underline;\">Underline</span></p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\"]\n\n<p class=\"lead\"><strong>Lead paragraph</strong>.Â dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"4\"]\n\n<p><strong>BoldÂ Text.</strong>Â sit amet, consectetuer <em>italic textÂ Â </em>elit, sed diam nonummy nibh euismod tincidunt ut laoreet <span style=\"text-decoration: underline;\">underline text</span>Â magna aliquam erat volutpat. <del>Strike throught</del>.Â ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea. <a href=\"#\">A simple link.</a></p>\n\n[/col]\n[col span=\"4\"]\n\n<p>Normal Paragraph.Â sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequa</p>\n\n[/col]\n[col span=\"3\"]\n\n<h2 class=\"lead\">Default font</h2>\n<p class=\"lead\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"3\"]\n\n<h2 class=\"lead alt-font\"><b>Alternative Font</b>.</h2>\n<p class=\"lead alt-font\">Dolor sit amet, consectetuer <strong>adipiscing</strong> elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"3\"]\n\n<h2 class=\"lead\">ThinÂ text</h2>\n<p class=\"lead\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"3\"]\n\n<h2 class=\"lead uppercase\">UPPERCASE</h2>\n<p class=\"lead uppercase\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"6\"]\n\n<h2 class=\"lead\">This is aÂ <span class=\"fancy-underline\">Fancy Text Underline</span></h2>\n<p class=\"lead\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"6\"]\n\n<h2 class=\"lead\">This a count up number <span class=\"count-up\"><strong>5000</strong></span></h2>\n<p class=\"lead\">Count up number can be added anywhere.</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h6>Flatsome Tip</h6>\n<h2>You can findÂ many text options in the \"Format\" dropdown in text editor.</h2>\n<p class=\"lead\">You see the changes live if you use the Page Builder</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"17\" depth=\"3\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgb(34, 34, 34)\" dark=\"true\" padding=\"60px\"]\n\n[title style=\"center\" text=\"Typography on Dark background\"]\n\n[row]\n\n[col span=\"3\"]\n\n<h1>Headline h1</h1>\n<h2>Headline h2</h2>\n<h3>Headline h3</h3>\n<h4>Headline h4</h4>\n<h5>Headline h5</h5>\n<h6>Headline h6</h6>\n\n[/col]\n[col span=\"3\"]\n\n<h1 class=\"uppercase\">headlineÂ h1</h1>\n<h2 class=\"uppercase\">headlineÂ h2</h2>\n<h3 class=\"uppercase\">headlineÂ h3</h3>\n<h4 class=\"uppercase\">headlineÂ H4</h4>\n<h5 class=\"uppercase\">headlineÂ H5</h5>\n<h6 class=\"uppercase\">headlineÂ H6</h6>\n\n[/col]\n[col span=\"3\"]\n\n<h3 class=\"uppercase\" data-text-color=\"primary\">primary color</h3>\n<h3 class=\"uppercase\" data-text-color=\"secondary\">secondary color</h3>\n<h3 class=\"uppercase\" data-text-color=\"alert\">alert color</h3>\n<h3 class=\"uppercase\" data-text-color=\"success\">SUCCESS COLOR</h3>\n<h3 class=\"uppercase\">DEFAULTÂ COLOR</h3>\n\n[/col]\n[col span=\"3\"]\n\n<p><a href=\"#\">Default link<br />\n<strong>Bold link</strong></a><br />\n<strong>Bold text<br />\n</strong><em>Italic text<br />\n</em><del>Strikethrough<br />\n</del><span style=\"text-decoration: underline;\">Underline</span></p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\"]\n\n<p class=\"lead\"><strong>Lead paragraph</strong>.Â dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"4\"]\n\n<p><strong>BoldÂ Text.</strong>Â sit amet, consectetuer <em>italic textÂ Â </em>elit, sed diam nonummy nibh euismod tincidunt ut laoreet <span style=\"text-decoration: underline;\">underline text</span>Â magna aliquam erat volutpat. <del>Strike throught</del>.Â ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea. <a href=\"#\">A simple link.</a></p>\n\n[/col]\n[col span=\"4\"]\n\n<p>Normal Paragraph.Â sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequa</p>\n\n[/col]\n[col span=\"7\"]\n\n<h2 class=\"lead\">This is a<span class=\"fancy-underline\">Â Fancy Text Underline</span></h2>\n<p class=\"lead\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"5\"]\n\n<h2 class=\"lead\">This a count up number <span class=\"count-up\"><strong>5000</strong></span></h2>\n<p class=\"lead\">Count up number can be added anywhere.</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section padding=\"60px\"]\n\n[title style=\"center\" text=\"Quote\"]\n\n[row]\n\n[col]\n\n<blockquote>\n<p class=\"lead\"><strong>Quote</strong>.Â dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n</blockquote>\n<p class=\"lead\">Normal Paragraph.Â sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequa. Horizontal Line:</p>\n[title style=\"center\" text=\"Lists\"]\n\n\n[/col]\n[col span=\"2\"]\n\n<ul>\n<li>Simple List</li>\n<li>List item 1</li>\n<li>List Item 2</li>\n<li>List item 3</li>\n<li>List Item 4</li>\n<li>List Item 5</li>\n</ul>\n\n[/col]\n[col span=\"2\"]\n\n<ol>\n<li>Numbered List</li>\n<li>List item 1</li>\n<li>List Item 2</li>\n<li>List item 3</li>\n<li>List Item 4</li>\n<li>List Item 5</li>\n</ol>\n\n[/col]\n[col span=\"2\"]\n\n<ul>\n<li class=\"bullet-checkmark\">Checkmark list</li>\n<li class=\"bullet-checkmark\">List Item 2</li>\n<li class=\"bullet-checkmark\">List item 3</li>\n<li class=\"bullet-checkmark\">List Item 4</li>\n<li class=\"bullet-checkmark\">List Item 5</li>\n</ul>\n\n[/col]\n[col span=\"2\"]\n\n<ul>\n<li class=\"bullet-star\">Star list</li>\n<li class=\"bullet-star\">List Item 2</li>\n<li class=\"bullet-star\">List item 3</li>\n<li class=\"bullet-star\">List Item 4</li>\n<li class=\"bullet-star\">List Item 5</li>\n</ul>\n\n[/col]\n[col span=\"2\"]\n\n<ul>\n<li class=\"bullet-arrow\">Arrow List</li>\n<li class=\"bullet-arrow\">List Item 2</li>\n<li class=\"bullet-arrow\">List item 3</li>\n<li class=\"bullet-arrow\">List Item 4</li>\n<li class=\"bullet-arrow\">List Item 5</li>\n</ul>\n\n[/col]\n\n[/row]\n\n[/section]','Typography','','inherit','closed','closed','','60-revision-v1','','','2021-11-30 12:01:08','2021-11-30 12:01:08','',60,'http://demoweblinks.in/padmini/?p=131',0,'revision','',0),(132,1,'2021-11-30 12:01:09','2021-11-30 12:01:09','[ux_slider]\n\n[ux_banner height=\"700px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.25)\"]\n\n[text_box width=\"51\" animate=\"fadeInLeft\" text_depth=\"1\"]\n\n<h2>Create Amazing Banners with Drag and Drop</h2>\n[divider]\n\n[button text=\"A button\" color=\"success\" depth=\"3\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"700px\" bg=\"18\"]\n\n[text_box width=\"46\" animate=\"fadeInRight\" parallax=\"1\" position_x=\"5\"]\n\n<h2>Lorem ipsum dolor sit amet</h2>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"Buy now\" color=\"white\"]\n\n[button text=\"Learn more\" color=\"white\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row v_align=\"middle\"]\n\n[col span=\"7\"]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_pos=\"44% 39%\"]\n\n[text_box width=\"63\" width__sm=\"78\" padding=\"39px\" position_x=\"5\" position_x__sm=\"50\" text_color=\"dark\" bg=\"rgba(255, 255, 255, 0.85)\" depth=\"2\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"Simple Link\" style=\"link\" icon=\"icon-play\"]\n\n[button text=\"Simple Button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"center\"]\n\n<h2 class=\"lead uppercase\">Drag And Drop Banner System</h2>\n<p class=\"lead\"><span style=\"font-size: 115%;\">Flatsome <strong>Banners</strong> isÂ the heartÂ of Flatsome. Our Banner System let you create beautiful <strong>responsive</strong> banners with drag and drop.</span></p>\n<p class=\"lead\">Â </p>\n[ux_image id=\"17\"]\n\n\n[/col]\n[col span=\"14\"]\n\n[ux_banner height=\"56.25%\" height__sm=\"50%\" bg=\"18\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"glow\"]\n\n[text_box width=\"36\" position_x=\"90\"]\n\n<h3>Small Title</h3>\n<p class=\"lead\">You can place a text box wherever you want on a Banner</p>\n[button text=\"Click me!\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"center\"]\n\n<h2>Banner Focus Point<b>â„¢</b></h2>\n<p class=\"lead\">Set a focus point on the banner and the image will adjust to mobile a tablet screens. Perfect for resposnive Websites.</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"17\" image_size=\"original\"]\n\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Banner Hover effects\"]\n\n[row]\n\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"glow\"]\n\n[text_box width=\"36\"]\n\n<h3>Glow</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"zoom\"]\n\n[text_box width=\"36\"]\n\n<h3>Zoom</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"zoom-fade\"]\n\n[text_box width=\"36\"]\n\n<h3>Zoom Fade</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"blur\"]\n\n[text_box width=\"36\"]\n\n<h3>Blur</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"fade-in\"]\n\n[text_box width=\"36\"]\n\n<h3>Fade In</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"fade-out\"]\n\n[text_box width=\"36\"]\n\n<h3>Fade Out</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"color\"]\n\n[text_box width=\"36\"]\n\n<h3>Add Color</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"grayscale\"]\n\n[text_box width=\"36\"]\n\n<h3>Grayscale</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"overlay-add\"]\n\n[text_box width=\"51\"]\n\n<h3>Add Overlay</h3>\n<p><span style=\"font-size: 140%;\">Overlay can be any color</span></p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\" style=\"text-align: center;\">You can also<strong> combine</strong> hover effects to create amazing hover effects</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"200px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"overlay-add\" border=\"3px 3px 3px 3px\" border_margin=\"10px 10px 10px 10px\" border_hover=\"zoom\"]\n\n[text_box width=\"51\"]\n\n<h3><strong>Add animated borders</strong></h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"200px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"overlay-add\"]\n\n[text_box width=\"51\"]\n\n<h3>Add Overlay</h3>\n<p><span style=\"font-size: 140%;\">Overlay can be any color</span></p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[ux_banner height=\"500px\" bg=\"18\" parallax=\"2\"]\n\n[text_box width=\"41\"]\n\n<h2 class=\"uppercase\">BACKGROUND VIDEO</h2>\n\n[/text_box]\n\n[/ux_banner]','Banners','','inherit','closed','closed','','61-revision-v1','','','2021-11-30 12:01:09','2021-11-30 12:01:09','',61,'http://demoweblinks.in/padmini/?p=132',0,'revision','',0),(133,1,'2021-11-30 12:01:09','2021-11-30 12:01:09','[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.42)\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>IMAGE BOX ELEMENT</strong></h3>\r\n<p class=\"lead\">Create amazing image boxes with unlimited style options.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[section]\r\n\r\n[row]\r\n\r\n[col span=\"4\"]\r\n\r\n[ux_image_box img=\"17\"]\r\n\r\n<h4>Simple Style</h4>\r\n<p>Some smaller text</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"bounce\" img=\"17\"]\r\n\r\n<h4>BounceÂ Style</h4>\r\n<p>Add anything here</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"badge\" img=\"17\"]\r\n\r\n<h4>BadgeÂ Style</h4>\r\n<p>You can add shortcodes here</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"overlay\" img=\"17\"]\r\n\r\n<h2>Overlay Style</h2>\r\n<p class=\"lead\">Add anyÂ elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"label\" img=\"17\"]\r\n\r\n<h4>LabelÂ Style</h4>\r\n<p>Add anyÂ elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"shade\" img=\"17\"]\r\n\r\n<h4>Shade Style</h4>\r\n<p class=\"lead\">Add anyÂ elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"push\" img=\"17\" image_height=\"90%\" text_hover=\"bounce\"]\r\n\r\n<h2>Push Style</h2>\r\n<p>Add anyÂ elements here..</p>\r\n[divider]\r\n\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"8\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n[ux_image_box style=\"vertical\" img=\"17\" image_width=\"48\"]\r\n\r\n<h2>Vertical Style Boxed</h2>\r\n<p class=\"lead\">Add anyÂ elements here..</p>\r\n[button text=\"A button\" style=\"secondary alt-button\" radius=\"10\"]\r\n\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[section]\r\n\r\n[row]\r\n\r\n[col align=\"center\"]\r\n\r\n<h2>Create any kind of Image box by using the options in the Page Builder.</h2>\r\n<p class=\"lead\">We have created many examples here. Mix and Match effects to create your perfect Image Box</p>\r\n\r\n[/col]\r\n[col span=\"4\" depth=\"1\"]\r\n\r\n[ux_image_box img=\"17\" image_height=\"100%\"]\r\n\r\n<h4>Simple Centered Style</h4>\r\n<p>Some smaller text</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"bounce\" img=\"17\" image_height=\"100%\" depth=\"1\" text_bg=\"rgb(66, 66, 66)\" text_color=\"dark\"]\r\n\r\n<h4>BounceÂ Style</h4>\r\n<p>Add anything here</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"overlay\" img=\"17\" image_height=\"125%\" image_hover=\"blur\" text_pos=\"middle\" text_size=\"small\" text_hover=\"zoom-in\"]\r\n\r\n<h2>Overlay Style With Blur and Zoom</h2>\r\n<p>Add anyÂ elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"overlay\" img=\"17\" image_height=\"100%\"]\r\n\r\n<h4>Circle with Blur In Effect</h4>\r\n<p>Add anyÂ elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"shade\" img=\"17\" image_height=\"116%\"]\r\n\r\n<h4>Simple Shade Â Style</h4>\r\n<p class=\"lead\">A beautiful box.</p>\r\n[button text=\"Quick View\" style=\"white\"]\r\n\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"shade\" img=\"17\" image_height=\"100%\" image_radius=\"100\" image_hover=\"zoom\" text_pos=\"middle\" text_hover=\"bounce\"]\r\n\r\n<h3 class=\"uppercase\">Circle Image</h3>\r\n<p class=\"lead\">Create this by adding radius 100% to the image.</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]','Image Box','','inherit','closed','closed','','62-revision-v1','','','2021-11-30 12:01:09','2021-11-30 12:01:09','',62,'http://demoweblinks.in/padmini/?p=133',0,'revision','',0),(134,1,'2021-11-30 12:01:10','2021-11-30 12:01:10','[ux_banner height=\"540px\" bg=\"18\" bg_size=\"original\" bg_overlay__sm=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"35% 23%\" parallax=\"3\"]\r\n\r\n[text_box width=\"41\" width__sm=\"80\" animate=\"fadeInLeft\" position_x=\"95\" position_x__sm=\"50\" position_y__sm=\"50\"]\r\n\r\n<h3 class=\"alt-font\">Fancy Top Title</h3>\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Shop Now\" color=\"white\" radius=\"99\" link=\"shop\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"540px\" bg=\"18\" bg_color=\"rgb(113, 117, 186)\" bg_pos=\"60% 16%\" parallax=\"3\"]\r\n\r\n[text_box width=\"41\" width__sm=\"82\" position_x=\"10\" position_x__sm=\"50\" position_y__sm=\"50\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Create amazing Parallax effects</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Shop Now\" color=\"white\" radius=\"99\" link=\"shop\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row style=\"collapse\" width=\"full-width\"]\r\n\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"470px\" bg=\"18\" bg_color=\"rgb(164, 113, 186)\" parallax=\"1\"]\r\n\r\n[text_box width=\"58\" width__sm=\"85\" parallax=\"2\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Shop Now\" radius=\"99\" link=\"shop\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"470px\" bg=\"18\" bg_color=\"rgb(218, 218, 218)\" parallax=\"1\"]\r\n\r\n[text_box width=\"34\" width__sm=\"74\" position_x=\"10\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n<h2><strong>299$</strong></h2>\r\n[button text=\"Shop Now\" radius=\"99\" link=\"shop\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(0, 185, 179, 0.91)\"]\r\n\r\n[text_box width__sm=\"79\" parallax=\"2\"]\r\n\r\n<h3 class=\"uppercase\"><strong>SUMMER SALE END SOON</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[ux_countdown bg_color=\"rgba(0, 0, 0, 0.06)\"]\r\n\r\n[button text=\"Shop Now\" color=\"white\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\r\n\r\n[col span=\"6\" span__sm=\"14\"]\r\n\r\n[ux_banner height=\"94%\" bg=\"18\" bg_pos=\"20% 60%\" parallax=\"2\"]\r\n\r\n[text_box width=\"31\" width__sm=\"61\" scale__sm=\"64\" position_x=\"90\" position_y=\"90\" text_align=\"right\" text_color=\"dark\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Add Hotspots to BAnners</strong></h3>\r\n<p class=\"lead\">Hotspots can be added to banners and dragged around. You can have Hotspots that goes to a Product Lightbox or just a simple Tooltip.</p>\r\n\r\n[/text_box]\r\n[ux_hotspot type=\"product\" prod_id=\"416\" text=\"Add product hotspots on banners\" bg_color=\"rgb(47, 166, 162)\" position_x=\"55\" position_y=\"25\"]\r\n\r\n[ux_hotspot text=\"Cool Camera :)\" size=\"large\" bg_color=\"#4DB7B3\" position_x=\"10\" position_y=\"80\"]\r\n\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"17\" padding=\"0px 10% 0px 10%\"]\r\n\r\n[title style=\"center\" text=\"Add a Title here\" size=\"undefined\"]\r\n\r\n[ux_products style=\"overlay\" slider_nav_style=\"circle\" slider_nav_position=\"outside\" columns=\"2\" columns__sm=\"2\" animate=\"fadeInLeft\" image_height=\"166%\" image_size=\"medium\" image_hover=\"overlay-add\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[ux_banner height=\"450px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.63)\" parallax=\"3\"]\r\n\r\n[text_box width__sm=\"93\" parallax=\"2\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Join Our Newsletter</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row style=\"collapse\" width=\"full-width\" v_align=\"equal\"]\r\n\r\n[col span=\"6\" span__sm=\"17\" padding=\"10% 10% 0px 10%\" bg_color=\"rgb(240, 240, 240)\"]\r\n\r\n[title style=\"center\" text=\"Featured\" size=\"undefined\"]\r\n\r\n[ux_products style=\"overlay\" slider_nav_style=\"circle\" slider_nav_position=\"outside\" columns=\"2\" columns__sm=\"2\" animate=\"fadeInLeft\" show=\"featured\" image_height=\"166%\" image_size=\"medium\" image_hover=\"overlay-add\"]\r\n\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"15\"]\r\n\r\n[ux_banner height=\"99%\" bg=\"18\" bg_pos=\"56% 22%\" parallax=\"2\"]\r\n\r\n[text_box width=\"37\" position_x=\"10\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n<h2><strong>29$</strong></h2>\r\n\r\n[/text_box]\r\n[ux_hotspot position_x=\"55\" position_y=\"15\"]\r\n\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[ux_instagram_feed username=\"topshop\" type=\"slider\" slider_nav_style=\"simple\" slider_nav_color=\"light\" width=\"full-width\" columns=\"7\"]','Parallax Shop','','inherit','closed','closed','','63-revision-v1','','','2021-11-30 12:01:10','2021-11-30 12:01:10','',63,'http://demoweblinks.in/padmini/?p=134',0,'revision','',0),(135,1,'2021-11-30 12:01:10','2021-11-30 12:01:10','','Size Chart','','inherit','closed','closed','','64-revision-v1','','','2021-11-30 12:01:10','2021-11-30 12:01:10','',64,'http://demoweblinks.in/padmini/?p=135',0,'revision','',0),(136,1,'2021-11-30 12:01:10','2021-11-30 12:01:10','[section bg_color=\"rgb(241, 241, 241)\" padding=\"8px\" margin=\"15px\"]\r\n\r\n[row style=\"collapse\" col_style=\"dashed\"]\r\n\r\n[col span=\"4\" span__sm=\"12\" padding=\"0px 15px 0px 15px\" align=\"center\"]\r\n\r\n[featured_box img=\"17\" img_width=\"20\" pos=\"left\" margin=\"px px px px\"]\r\n\r\n<p><span style=\"font-size: 90%;\"><strong>Free Delivery</strong> World Wide* <a href=\"#\">Learn more</a></span></p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" padding=\"0px 15px 0px 15px\"]\r\n\r\n[featured_box img=\"17\" img_width=\"20\" pos=\"left\" margin=\"px px px px\"]\r\n\r\n<p><span style=\"font-size: 90%;\">Loved by our Customers. <strong>5000+</strong> Reviews</span></p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" padding=\"0px 15px 0px 15px\"]\r\n\r\n[featured_box img=\"17\" img_width=\"20\" pos=\"left\" margin=\"px px px px\"]\r\n\r\n<p><span style=\"font-size: 90%;\"><strong>Free Returns</strong> and <strong>Free Shipping</strong></span></p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[ux_banner_grid]\r\n\r\n[col_grid span=\"9\" span__sm=\"12\"]\r\n\r\n[ux_slider]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width__sm=\"80\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"64% 34%\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width=\"54\" width__sm=\"80\" position_x=\"85\" text_align=\"right\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width__sm=\"80\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"87\"]\r\n\r\n<h3 class=\"alt-font\">Don\'t Miss</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>Sale ends soon</strong></span></h2>\r\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.17)\"]\r\n\r\n[button text=\"Browse Now\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"18\" bg_size=\"thumbnail\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"87\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>SUMMER SALE</strong></span></h2>\r\n[button text=\"Browse Now\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n[title text=\"Our BestSellers\" size=\"undefined\" link_text=\"Browse All\" link=\"#\"]\r\n\r\n[ux_products columns=\"5\" cat=\"73\" products=\"6\" orderby=\"sales\" image_height=\"106%\" text_bg=\"rgb(255, 255, 255)\" text_padding=\"20px 20px 20px 20px\"]\r\n\r\n[title text=\"Latest on Sale\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\r\n\r\n[ux_products columns=\"5\" orderby=\"sales\" show=\"onsale\" image_height=\"106%\" text_bg=\"rgb(255, 255, 255)\"]\r\n\r\n[title text=\"Weekly Featured Products\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\r\n\r\n[ux_products columns=\"5\" cat=\"73\" products=\"6\" image_height=\"106%\" text_bg=\"rgb(255, 255, 255)\"]\r\n\r\n[gap height=\"50px\"]\r\n\r\n[ux_banner height=\"399px\" bg=\"18\" bg_size=\"large\" bg_overlay=\"rgba(0, 0, 0, 0.08)\" bg_pos=\"53% 43%\" parallax=\"3\"]\r\n\r\n[text_box width=\"58\" width__sm=\"80\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Sale Ends Soon</strong></h2>\r\n<h4 class=\"lead uppercase\">Up to <strong>50% off</strong> selected products</h4>\r\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.23)\"]\r\n\r\n[button text=\"Browse now\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[gap height=\"44px\"]\r\n\r\n[ux_product_categories style=\"bounce\" image_height=\"107%\"]','Mega Shop','','inherit','closed','closed','','65-revision-v1','','','2021-11-30 12:01:10','2021-11-30 12:01:10','',65,'http://demoweblinks.in/padmini/?p=136',0,'revision','',0),(137,1,'2021-11-30 12:01:10','2021-11-30 12:01:10','Coming soon...','Booking','','inherit','closed','closed','','66-revision-v1','','','2021-11-30 12:01:10','2021-11-30 12:01:10','',66,'http://demoweblinks.in/padmini/?p=137',0,'revision','',0),(138,1,'2021-11-30 12:01:11','2021-11-30 12:01:11','Coming soon...','Lifestyle','','inherit','closed','closed','','67-revision-v1','','','2021-11-30 12:01:11','2021-11-30 12:01:11','',67,'http://demoweblinks.in/padmini/?p=138',0,'revision','',0),(139,1,'2021-11-30 12:01:11','2021-11-30 12:01:11','[ux_banner height=\"100%\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" bg_pos=\"49% 43%\" parallax=\"4\" link=\"Portfolio\"]\r\n\r\n[text_box width=\"59\" width__sm=\"100\" scale__sm=\"131\" animate=\"fadeInUp\" parallax=\"-3\" text_depth=\"1\"]\r\n\r\n<h1 class=\"uppercase\"><strong>WE\'re a creative Agency</strong></h1>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner_grid spacing=\"collapse\" height=\"885\" width=\"full-width\"]\r\n\r\n[col_grid span=\"6\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.2)\" bg_pos=\"53% 69%\" hover=\"zoom\" link=\"Portfolio\"]\r\n\r\n[text_box width=\"37\" animate=\"fadeInRight\" position_x=\"10\" position_y=\"80\" text_align=\"left\"]\r\n\r\n[video_button size=\"130\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.19)\" bg_pos=\"53% 69%\" hover=\"zoom\" link=\"Portfolio\"]\r\n\r\n[text_box width=\"30\" animate=\"fadeInLeft\" position_x=\"90\" text_align=\"right\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.21)\" hover=\"zoom\" link=\"Portfolio\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.47)\" bg_pos=\"34% 46%\" hover=\"zoom\" link=\"Portfolio\"]\r\n\r\n[text_box hover=\"fade-out\" position_y=\"95\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n[text_box hover=\"zoom-in\"]\r\n\r\n[video_button size=\"178\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" hover=\"zoom\"]\r\n\r\n[text_box text_color=\"dark\" width=\"39\" position_x=\"10\" position_y=\"70\" text_align=\"left\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n[row]\r\n\r\n[col span__sm=\"12\" align=\"center\"]\r\n\r\n[button text=\"Browse Portfolio\" style=\"outline\" size=\"larger\" radius=\"99\" icon=\"icon-angle-right\" icon_reveal=\"true\" link=\"Portfolio\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Our Clients\"]\r\n\r\n[row col_style=\"dashed\" v_align=\"middle\"]\r\n\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[gap]\r\n\r\n[section label=\"Media Right\" bg_color=\"rgb(207, 207, 207)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\r\n\r\n[row style=\"large\" h_align=\"center\"]\r\n\r\n[col span=\"9\" span__sm=\"12\" align=\"center\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\">Contact Us</span></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\r\n\r\n[accordion auto_open=\"true\"]\r\n\r\n[accordion-item title=\"How long does it takes to we get back to you\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n[accordion-item]\r\n\r\n\r\n[/accordion-item]\r\n[accordion-item title=\"Add anything here\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n[accordion-item title=\"Research\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n\r\n[/accordion]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[title style=\"center\" text=\"LAtest NEws\" margin_top=\"22px\" size=\"undefined\"]\r\n\r\n[blog_posts style=\"push\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"3\" badge_style=\"circle\" image_height=\"180px\"]','Agency','','inherit','closed','closed','','68-revision-v1','','','2021-11-30 12:01:11','2021-11-30 12:01:11','',68,'http://demoweblinks.in/padmini/?p=139',0,'revision','',0),(140,1,'2021-11-30 12:01:11','2021-11-30 12:01:11','[section label=\"Top Section\" bg=\"18\" bg_color=\"rgb(41, 41, 41)\" bg_overlay=\"rgba(0, 0, 0, 0.19)\" bg_pos=\"65% 40%\" parallax=\"3\" dark=\"true\" padding=\"0px\" height=\"424px\"]\n\n[row]\n\n[col span__sm=\"12\" padding=\"5% 6% 0px 10%\" align=\"center\"]\n\n<h1 class=\"uppercase\"><strong>Section Element</strong></h1>\n<p class=\"lead\">Sections are used for creating full width backgrounds with content inside it. You can haveÂ Parallax Effects and Background Videos.</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(233, 233, 233)\" padding=\"50px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n<h3>A Simple section with a two column row inside</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(41, 41, 41)\" bg_overlay=\"rgb(36, 36, 36)\" dark=\"true\" padding=\"60px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n<h3>A Dark section with a row inside</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Background Video\" bg_color=\"rgb(41, 41, 41)\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" dark=\"true\" padding=\"128px\" video_mp4=\"http://flatsome.dev/wp-content/uploads/2016/02/348462762.mp4\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n<h2>A section with aÂ background video</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"18\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.51)\" dark=\"true\" padding=\"60px\" height=\"50vh\"]\n\n[row style=\"collapse\" h_align=\"center\"]\n\n[col span=\"6\" align=\"center\"]\n\n<h2>A section canÂ have a background image or a background color</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(243, 243, 243)\" padding=\"61px\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"6\"]\n\n<h2>A SectionÂ with a Image on the right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\"]\n\n[ux_image id=\"17\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Parallax Video\" bg_color=\"rgb(41, 41, 41)\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" parallax=\"4\" dark=\"true\" padding=\"128px\" video_mp4=\"http://flatsome.dev/wp-content/uploads/2016/02/348462762.mp4\"]\n\n[row h_align=\"center\"]\n\n[col span=\"4\" span__sm=\"9\" align=\"center\"]\n\n<h2>A Parallax Background Video</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" sticky=\"true\" padding=\"61px\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"17\" depth=\"4\" depth_hover=\"5\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<h2>A sticky section with images left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"Click me!\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(50, 50, 50)\" dark=\"true\" sticky=\"true\" padding=\"61px\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n<h2>A sticky section with imagesÂ right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"Click me!\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"17\" depth=\"4\" depth_hover=\"5\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"18\" bg_color=\"rgb(243, 243, 243)\" bg_overlay=\"rgba(255, 255, 255, 0.9)\" padding=\"61px\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n<h2>AÂ Section with ImageÂ and a background</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"17\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" padding=\"61px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"17\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10%\" align=\"center\" max_width=\"520px\"]\n\n<h2>AÂ Section with a large image left.</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"61px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" h_align=\"right\"]\n\n[col span=\"6\" padding=\"10%\" align=\"center\" max_width=\"520px\"]\n\n<h2>AÂ Section with a large image right.</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\"]\n\n[ux_image id=\"17\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"18\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.51)\" parallax=\"1\" dark=\"true\" padding=\"97px\" height=\"300px\"]\n\n[title text=\"Section With a parallax background\"]\n\n[row h_align=\"center\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[row h_align=\"center\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"18\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(255, 255, 255, 0.89)\" bg_pos=\"25% 0%\" parallax=\"1\" padding=\"60px\" height=\"300px\"]\n\n[row style=\"collapse\" width=\"full-width\" h_align=\"center\"]\n\n[col span=\"6\" padding=\"0 10%\" align=\"center\"]\n\n<h2>A product slider inside a section</h2>\n[button text=\"Click me now\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(63, 63, 63)\" dark=\"true\" mask=\"arrow\" height=\"365px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"10\"]\n\n<h3>Section With A Arrow Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(160, 160, 160)\" dark=\"true\" mask=\"angled\" height=\"365px\"]\n\n[row]\n\n[col span=\"5\" span__sm=\"10\"]\n\n<h3>Section with an Angled Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(77, 77, 77)\" dark=\"true\" mask=\"angled-right\" height=\"365px\"]\n\n[row]\n\n[col span=\"5\" span__sm=\"10\"]\n\n<h3>Section with an Angled Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"18\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(117, 117, 117, 0.44)\" dark=\"true\" mask=\"angled-right\" height=\"365px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"9\"]\n\n<h3>Section with Angled Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(77, 77, 77)\" dark=\"true\" mask=\"arrow-large\" height=\"365px\"]\n\n[row]\n\n[col]\n\n<h3>Section with a Large Arrow Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]','Sections','','inherit','closed','closed','','72-revision-v1','','','2021-11-30 12:01:11','2021-11-30 12:01:11','',72,'http://demoweblinks.in/padmini/?p=140',0,'revision','',0),(141,1,'2021-11-30 12:01:12','2021-11-30 12:01:12','[section bg_color=\"rgb(237, 239, 241)\" border=\"1px 0px 1px 0px\" border_color=\"rgba(0, 0, 0, 0.13)\"]\r\n\r\n[title style=\"center\" text=\"Banner Grid Element\" size=\"120\"]\r\n\r\n[ux_banner_grid height=\"600\" depth=\"1\"]\r\n\r\n[col_grid span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner bg=\"18\" bg_pos=\"64% 30%\" border_color=\"rgba(0, 0, 0, 0.05)\"]\r\n\r\n[text_box width=\"70\"]\r\n\r\n<h2 class=\"alt-font\">A Cute Title</h2>\r\n<h2 class=\"uppercase\"><strong><span style=\"font-size: 140%;\">This is a simple headline</span></strong></h2>\r\n<p class=\"lead\"><span style=\"font-size: 130%;\">A Small text</span></p>\r\n[button text=\"Click me!\" style=\"outline\" size=\"xlarge\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\"]\r\n\r\n[ux_banner bg=\"18\" bg_pos=\"51% 56%\" border_color=\"rgba(0, 0, 0, 0.08)\"]\r\n\r\n[text_box width=\"69\" width__sm=\"60\" position_y=\"5\"]\r\n\r\n<h2 class=\"uppercase\"><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"5\" span__sm=\"14\" height=\"1-3\"]\r\n\r\n[ux_banner bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(255, 255, 255, 0.15)\" bg_pos=\"51% 30%\" border_color=\"rgba(0, 0, 0, 0.08)\"]\r\n\r\n[text_box text_color=\"dark\" width=\"42\" position_x=\"10\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"5\" span__sm=\"12\" height=\"2-3\"]\r\n\r\n[ux_banner bg=\"18\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"71% 19%\" border_color=\"rgba(0, 0, 0, 0.07)\"]\r\n\r\n[text_box width=\"70\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>SALE ENDS SOON</strong></h2>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[row v_align=\"middle\"]\r\n\r\n[col span=\"5\" span__sm=\"12\"]\r\n\r\n<h2 class=\"uppercase\">DRAG AND DROP EDITING</h2>\r\n<p class=\"lead\">Creating amazing Banner Grids is incredible easy with the new <strong>UX Builder</strong></p>\r\n\r\n[/col]\r\n[col span=\"7\" span__sm=\"12\"]\r\n\r\n[ux_image id=\"17\" depth=\"3\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[section bg=\"18\" bg_color=\"rgb(28, 28, 28)\" bg_overlay=\"rgba(0, 0, 0, 0.72)\" parallax=\"2\" dark=\"true\"]\r\n\r\n[title style=\"center\" text=\"Banner Grid With A Background\" size=\"undefined\"]\r\n\r\n[ux_banner_grid height=\"666\" depth=\"1\"]\r\n\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_pos=\"32% 58%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"65\" width__sm=\"90\" scale=\"102\" animate=\"fadeInLeft\" position_x=\"10\" text_align=\"left\"]\r\n\r\n<h6 class=\"uppercase\">Featured Vendor</h6>\r\n<h2><strong>This Week Featured Vendor</strong></h2>\r\n<p class=\"lead\">Change this to anything.Â Consectetuer adipiscing elit.</p>\r\n[button text=\"Go To Shop\" style=\"outline\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"74\"]\r\n\r\n<h2><strong>This is a simple banner</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"15\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" bg_pos=\"66% 22%\" hover=\"zoom\"]\r\n\r\n[text_box text_color=\"dark\" width=\"80\" width__sm=\"60\" animate=\"fadeInLeft\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h6 class=\"uppercase\">Featured Vendor</h6>\r\n<h2><strong>WooÂ Vendor Shop</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" hover=\"zoom\"]\r\n\r\n[text_box width=\"80\" position_x=\"10\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h2><strong>This is a simple banner</strong></h2>\r\n<p class=\"lead\">Change this text to anything</p>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"8\" span__sm=\"15\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.09)\" bg_pos=\"61% 30%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"79\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h2><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[title style=\"center\" text=\"Use Banner Grids to Create Portfolio Grids\" margin_top=\"31px\" size=\"undefined\"]\r\n\r\n[ux_banner_grid spacing=\"collapse\" height=\"885\" width=\"full-width\"]\r\n\r\n[col_grid span=\"6\" span__sm=\"13\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.2)\" bg_pos=\"53% 69%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"37\" animate=\"fadeInRight\" position_x=\"10\" position_y=\"80\" text_align=\"left\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" span__sm=\"15\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.19)\" bg_pos=\"53% 69%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"30\" animate=\"fadeInLeft\" position_x=\"90\" text_align=\"right\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"14\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.21)\" hover=\"zoom\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"14\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.15)\" bg_pos=\"34% 46%\" hover=\"zoom\"]\r\n\r\n[text_box hover=\"fade-out\" position_y=\"95\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n[text_box hover=\"zoom-in\"]\r\n\r\n[video_button size=\"178\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" span__sm=\"15\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" hover=\"zoom\"]\r\n\r\n[text_box text_color=\"dark\" width=\"39\" position_x=\"5\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n[title style=\"center\" text=\"Add Slider to Banner Grids\" margin_top=\"28px\" size=\"undefined\"]\r\n\r\n[ux_banner_grid]\r\n\r\n[col_grid span=\"9\" span__sm=\"12\"]\r\n\r\n[ux_slider]\r\n\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width__sm=\"80\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"64% 34%\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width=\"54\" width__sm=\"80\" position_x=\"85\" text_align=\"right\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width__sm=\"80\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"87\"]\r\n\r\n<h3 class=\"alt-font\">Don\'t Miss</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>Sale ends soon</strong></span></h2>\r\n[button text=\"Browse Now\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"18\" bg_size=\"thumbnail\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"87\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>SUMMER SALE</strong></span></h2>\r\n[button text=\"Browse Now\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]','Banner Grids','','inherit','closed','closed','','73-revision-v1','','','2021-11-30 12:01:12','2021-11-30 12:01:12','',73,'http://demoweblinks.in/padmini/?p=141',0,'revision','',0),(142,1,'2021-11-30 12:01:12','2021-11-30 12:01:12','[ux_banner height=\"444px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.3)\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>LIGHTBOXÂ SHORTCODE</strong></h3>\r\n<p class=\"lead\">Open any content in a lightbox</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[button text=\"Lightbox button\" link=\"#test\"]\r\n\r\n<p><a href=\"#test\">Lightbox link</a></p>\r\n<p>[lightbox id=\"test\" width=\"600px\" padding=\"20px\"]<br />Add lightbox content here...<br />\r\n[/lightbox]\r\n</p>\r\n<pre>[button text=\"Lightbox button\" link=\"<b>#test</b>\"][lightbox id=\"<b>test</b>\" width=\"600px\" padding=\"20px\"]Add lightbox content here...[/lightbox]</pre>\r\n\r\n[/col]\r\n\r\n[/row]','Lightbox','','inherit','closed','closed','','75-revision-v1','','','2021-11-30 12:01:12','2021-11-30 12:01:12','',75,'http://demoweblinks.in/padmini/?p=142',0,'revision','',0),(143,1,'2021-11-30 12:01:12','2021-11-30 12:01:12','[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(255, 255, 255, 0.61)\" bg_pos=\"41% 71%\" parallax=\"3\"]\r\n\r\n[text_box parallax=\"2\" text_color=\"dark\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Message Box Element</strong></h2>\r\n<p class=\"lead\">Create beautiful Call to Action areas.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[title style=\"center\" text=\"Message Box Element\"]\r\n\r\n[message_box padding=\"27\"]\r\n\r\n[row_inner v_align=\"middle\" h_align=\"center\"]\r\n\r\n[col_inner span=\"9\" span__sm=\"12\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col_inner]\r\n[col_inner span=\"2\" span__sm=\"12\" align=\"center\"]\r\n\r\n[button text=\"Click me\" color=\"white\" style=\"outline\" radius=\"99\"]\r\n\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n\r\n[/message_box]\r\n[title style=\"center\" text=\"Use to Create Call to Actions areas\" margin_top=\"23px\"]\r\n\r\n[message_box bg=\"18\" bg_color=\"rgba(0, 0, 0, 0.62)\" padding=\"27\"]\r\n\r\n[row_inner v_align=\"middle\" h_align=\"center\"]\r\n\r\n[col_inner span=\"8\" span__sm=\"12\"]\r\n\r\n<h2 class=\"uppercase\">Use Message Boxes to create Call to action messages</h2>\r\n\r\n[/col_inner]\r\n[col_inner span=\"3\" span__sm=\"12\" align=\"center\"]\r\n\r\n[button text=\"Click me now\" color=\"white\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n\r\n[/message_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Full Width Message box\" margin_top=\"23px\"]\r\n\r\n[message_box bg=\"18\" bg_color=\"rgba(0, 0, 0, 0.75)\" padding=\"27\"]\r\n\r\n[row v_align=\"middle\" h_align=\"center\"]\r\n\r\n[col span=\"6\" span__sm=\"15\"]\r\n\r\n<h3 class=\"uppercase\">Signup for Newsletter and get <span class=\"fancy-underline\">50% off</span> your next purchase</h3>\r\n\r\n[/col]\r\n[col span=\"5\" span__sm=\"17\" align=\"right\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/message_box]','Message box','','inherit','closed','closed','','78-revision-v1','','','2021-11-30 12:01:12','2021-11-30 12:01:12','',78,'http://demoweblinks.in/padmini/?p=143',0,'revision','',0),(144,1,'2021-11-30 12:01:13','2021-11-30 12:01:13','[ux_banner height=\"360px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"56% 97%\" parallax=\"2\"]\n\n[text_box width=\"63\" width__sm=\"60%\" text_depth=\"1\"]\n\n<h3 class=\"uppercase\"><strong>Categories Element</strong></h3>\n<p class=\"lead\">Create beautiful overview of your Shop categories. There is almost unlimited variations, but here areÂ some examples.</p>\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col]\n\n[title style=\"center\" text=\"Simple\"]\n\n[ux_product_categories style=\"normal\"]\n\n[title style=\"center\" text=\"Badge style\"]\n\n[ux_product_categories]\n\n[title style=\"center\" text=\"Overlay Style\"]\n\n[ux_product_categories style=\"overlay\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" image_overlay=\"rgba(0, 0, 0, 0.19)\" image_hover=\"overlay-remove-50\" image_hover_alt=\"zoom\"]\n\n[title style=\"center\" text=\"Grid style\"]\n\n[ux_product_categories style=\"overlay\" type=\"grid\" grid=\"3\" columns=\"3\" animate=\"fadeInLeft\" number=\"4\" orderby=\"name\" image_size=\"large\" image_overlay=\"rgba(38, 38, 38, 0.16)\" text_pos=\"middle\" text_size=\"large\"]\n\n[title style=\"center\" text=\"Circle Style\"]\n\n[ux_product_categories style=\"overlay\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" image_height=\"100%\" image_radius=\"100\" image_overlay=\"rgba(0, 0, 0, 0.19)\" image_hover=\"overlay-remove-50\" image_hover_alt=\"zoom\" text_pos=\"middle\" text_size=\"large\" text_hover=\"bounce\"]\n\n\n[/col]\n\n[/row]\n[section bg_color=\"rgb(51, 51, 51)\" dark=\"true\"]\n\n[title style=\"center\" text=\"Be creative! Mix and match settings\"]\n\n[ux_product_categories style=\"overlay\" type=\"grid\" grid=\"13\" col_spacing=\"small\" columns=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\" number=\"5\" orderby=\"name\" image_size=\"large\" image_overlay=\"rgba(38, 38, 38, 0.16)\" image_hover=\"color\" image_hover_alt=\"zoom-long\" text_pos=\"middle\" text_size=\"large\"]\n\n\n[/section]','Product Categories','','inherit','closed','closed','','79-revision-v1','','','2021-11-30 12:01:13','2021-11-30 12:01:13','',79,'http://demoweblinks.in/padmini/?p=144',0,'revision','',0),(145,1,'2021-11-30 12:01:13','2021-11-30 12:01:13','[ux_banner height=\"451px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.45)\"]\r\n\r\n[text_box width=\"66\" parallax=\"-4\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Product Element</strong></h2>\r\n<p class=\"lead\">List products anywhere in a beautiful style. Choose between Slider, Rows, Grid and Masonry Style. Select products from a custom category or sort by sales, featured items or latest. You can also select custom products.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Simple Sale Slider\"]\r\n\r\n[ux_products orderby=\"sales\" show=\"onsale\"]\r\n\r\n[title style=\"bold-center\" text=\"Featured Products Slider\" icon=\"icon-star\"]\r\n\r\n[ux_products  show=\"featured\"]\r\n\r\n[title style=\"bold-center\" text=\"Best Selling Products\" icon=\"icon-heart\"]\r\n\r\n[ux_products orderby=\"sales\"]\r\n\r\n[title style=\"bold-center\" text=\"Lookbook style\"]\r\n\r\n[ux_products style=\"shade\" slider_nav_style=\"circle\" col_spacing=\"normal\" depth=\"1\" depth_hover=\"5\" cat=\"tops\" image_height=\"200%\" image_size=\"medium\" image_hover=\"overlay-add\" image_hover_alt=\"zoom-long\" text_size=\"large\" text_hover=\"hover-slide\"]\r\n\r\n[title style=\"bold-center\" text=\"Lookbook style 2\"]\r\n\r\n[ux_products style=\"overlay\" slider_nav_style=\"circle\" width=\"full-width\" col_spacing=\"collapse\" columns=\"6\" cat=\"80\" orderby=\"rand\" image_height=\"200%\" image_size=\"medium\" image_overlay=\"rgba(0, 0, 0, 0.58)\" image_hover=\"overlay-add\" image_hover_alt=\"zoom-long\" text_pos=\"middle\" text_size=\"large\" text_hover=\"zoom-in\"]\r\n\r\n[title style=\"bold-center\" text=\"Grid Style\" margin_top=\"16px\"]\r\n\r\n[ux_products style=\"shade\" type=\"grid\" grid_height=\"650px\" products=\"4\" orderby=\"sales\" show=\"featured\" image_overlay=\"rgba(0, 0, 0, 0.19)\" image_hover=\"zoom\" image_hover_alt=\"glow\" text_align=\"left\" text_size=\"large\"]\r\n\r\n[title style=\"bold-center\" text=\"Masonery Style\"]\r\n\r\n[ux_products type=\"masonry\" depth=\"1\" depth_hover=\"5\" text_align=\"left\"]\r\n\r\n[title style=\"bold-center\" text=\"Mix and match styles\"]\r\n\r\n[ux_products style=\"overlay\" image_height=\"169%\" image_size=\"medium\" image_overlay=\"rgba(0, 0, 0, 0.67)\" image_hover=\"color\" image_hover_alt=\"overlay-remove-50\" text_size=\"large\"]','Products','','inherit','closed','closed','','80-revision-v1','','','2021-11-30 12:01:13','2021-11-30 12:01:13','',80,'http://demoweblinks.in/padmini/?p=145',0,'revision','',0),(146,1,'2021-11-30 12:01:13','2021-11-30 12:01:13','[ux_banner height=\"329px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.28)\" parallax=\"2\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>Share & Follow Icons</strong></h3>\r\n<p>Beautiful Share and Follow Icons that you can insert anywhere with the Page Builder.</p>\r\n[follow facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[section bg_color=\"rgb(255, 255, 255)\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[title text=\"Share icons\"]\r\n\r\n[share]\r\n\r\n[title text=\"Follow icons\"]\r\n\r\n[follow facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title text=\"Follow icons Fill\"]\r\n\r\n[follow style=\"fill\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title text=\"Follow icons small\"]\r\n\r\n[follow style=\"small\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title style=\"center\" text=\"Follow icons Larger\" size=\"undefined\"]\r\n\r\n[follow align=\"center\" scale=\"134\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title style=\"center\" text=\"Follow Icons Larger Fill\" size=\"undefined\"]\r\n\r\n[follow style=\"fill\" align=\"center\" scale=\"128\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title style=\"center\" text=\"Follow Icons Large\" size=\"undefined\"]\r\n\r\n[follow style=\"small\" align=\"center\" scale=\"177\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[section bg_color=\"rgb(48, 48, 48)\" dark=\"true\"]\r\n\r\n[title style=\"center\" text=\"Follow icons dark\" size=\"undefined\"]\r\n\r\n[follow align=\"center\" scale=\"134\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[follow style=\"small\" align=\"center\" scale=\"177\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[gap height=\"11px\"]\r\n\r\n[follow style=\"fill\" align=\"center\" scale=\"128\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n\r\n[/section]','Share / follow icons','','inherit','closed','closed','','81-revision-v1','','','2021-11-30 12:01:13','2021-11-30 12:01:13','',81,'http://demoweblinks.in/padmini/?p=146',0,'revision','',0),(147,1,'2021-11-30 12:01:13','2021-11-30 12:01:13','[ux_banner height=\"395px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.1)\"]\n\n[text_box width__sm=\"86\" scale__sm=\"138\"]\n\n<h3 class=\"uppercase\"><strong>TEAM MEMBER ELEMENT</strong></h3>\n<p class=\"lead\">Use this for presenting your team member or staff</p>\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"Default Style\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"17\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" pinterest=\"#\" linkedin=\"#\" snapchat=\"9152\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Color Icon style\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"17\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" icon_style=\"fill\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" icon_style=\"fill\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" pinterest=\"#\" linkedin=\"#\" snapchat=\"9152\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" name=\"Mark Jance\" title=\"CTO / Developer\" icon_style=\"fill\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" name=\"Nina Lacy\" title=\"Support Ninja\" icon_style=\"fill\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Bounce Style\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"bounce\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"bounce\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" pinterest=\"#\" linkedin=\"#\" snapchat=\"9152\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"bounce\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"bounce\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Push Style\"]\n\n[row]\n\n[col span=\"4\"]\n\n[team_member img=\"17\" style=\"push\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" text_hover=\"bounce\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\"]\n\n[team_member img=\"17\" style=\"push\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" text_hover=\"bounce\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\"]\n\n[team_member img=\"17\" style=\"push\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" text_hover=\"bounce\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Overlay Style\"]\n\n[row]\n\n[col span=\"4\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" pinterest=\"#\" linkedin=\"#\" snapchat=\"9152\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Overlay Circle\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_height=\"100%\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" linkedin=\"#\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Overlay Grayscale\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_height=\"100%\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" linkedin=\"#\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[section bg=\"18\" bg_color=\"rgb(40, 40, 40)\" bg_overlay=\"rgba(0, 0, 0, 0.84)\" dark=\"true\"]\n\n[title style=\"center\" text=\"Mix and match styles\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" icon_style=\"small\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_height=\"100%\" image_radius=\"100\" image_hover=\"color\" image_hover_alt=\"zoom\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" icon_style=\"fill\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" linkedin=\"#\" image_radius=\"9\" image_hover=\"glow\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_hover=\"zoom\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"17\" style=\"overlay\" name=\"Nina Lacy\" title=\"Support Ninja\" icon_style=\"fill\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]','Team Member','','inherit','closed','closed','','82-revision-v1','','','2021-11-30 12:01:13','2021-11-30 12:01:13','',82,'http://demoweblinks.in/padmini/?p=147',0,'revision','',0),(148,1,'2021-11-30 12:01:14','2021-11-30 12:01:14','[ux_banner height=\"500px\" bg=\"18\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.12)\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>ICON BOX ELEMENT</strong></h3>\n<p class=\"lead\">Create simple icon boxes with this element. Upload any SVG icon or image. You can find beautiful SVG icons here:Â </p>\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"Top Align\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"17\" pos=\"center\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"17\" pos=\"center\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"17\" pos=\"center\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Top Align with border\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"17\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"17\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"17\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Left Align\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"17\" img_width=\"35\" pos=\"left\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"17\" img_width=\"35\" pos=\"left\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"17\" img_width=\"35\" pos=\"left\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"17\" img_width=\"35\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(140, 188, 25)\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"17\" img_width=\"35\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(25, 130, 188)\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"17\" img_width=\"35\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(188, 69, 25)\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]','Icon Box','','inherit','closed','closed','','83-revision-v1','','','2021-11-30 12:01:14','2021-11-30 12:01:14','',83,'http://demoweblinks.in/padmini/?p=148',0,'revision','',0),(149,1,'2021-11-30 12:01:14','2021-11-30 12:01:14','[ux_banner height=\"500px\" bg=\"18\" parallax=\"2\"]\r\n\r\n[text_box parallax=\"-2\"]\r\n\r\n<h1>SectionÂ Titles</h1>\r\n<p class=\"lead\">Split content with beautiful Section Titles</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row]\r\n\r\n[col]\r\n\r\n[title text=\"This is a normal title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title text=\"This is a title with a link\" link_text=\"Click here to view products\" link=\"http://\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"center\" text=\"This is a centered title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"center\" text=\"This is a centered title with Icon\" icon=\"icon-star\" size=\"undefined\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title text=\"This is a title with a link and icon\" icon=\"icon-star-o\" size=\"undefined\" link_text=\"Click here to view products\" link=\"http://\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"bold-center\" text=\"This is a bold title\" size=\"171\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"bold\" text=\"This is a bold title with link\" link_text=\"Click here\" link=\"http://\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"bold-center\" text=\"This is a bold centered title\" size=\"undefined\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n','Titles / Dividers','','inherit','closed','closed','','84-revision-v1','','','2021-11-30 12:01:14','2021-11-30 12:01:14','',84,'http://demoweblinks.in/padmini/?p=149',0,'revision','',0),(150,1,'2021-11-30 12:01:14','2021-11-30 12:01:14','<p class=\"lead\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at nibh elementum imperdiet. Duis sagittis ipsum. Praesent mauris. Fusce nec tellus sed augue semper porta. Mauris massa. Vestibulum lacinia arcu eget nulla.</p>\r\n[block id=\"faq-accordian\"]','FAQ','','inherit','closed','closed','','86-revision-v1','','','2021-11-30 12:01:14','2021-11-30 12:01:14','',86,'http://demoweblinks.in/padmini/?p=150',0,'revision','',0),(151,1,'2021-11-30 12:01:14','2021-11-30 12:01:14','[ux_banner height=\"398px\" bg=\"18\" bg_pos=\"66% 25%\" parallax=\"2\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>Testemonial element</strong></h3>\n<p class=\"lead\">Tell your customers how happy your clients are</p>\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"With image left\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>This is a FANTASTIC Theme. Do you think that in the next version you could try and have it Multilanguage. Because I have nothing bad to say about this theme. Thank a million!</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"With image on Top\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9150\" image_width=\"121\" pos=\"center\" name=\"MIRORIM\"]\n\n<p>Excellent work. Very good theme, No need support, works perfectly. Congratulations !! <br />Waiting for version 3.0. Very excited.</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Boxed\"]\n\n[row v_align=\"equal\" padding=\"30px 30px 30px 30px\" depth=\"2\" depth_hover=\"5\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9150\" image_width=\"121\" pos=\"center\" name=\"MIRORIM\"]\n\n<p>Excellent work. Very good theme, No need support, works perfectly. Congratulations !! <br />Waiting for version 3.0. Very excited.</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Boxed Vertical\"]\n\n[row v_align=\"equal\" padding=\"30px 30px 30px 30px\" depth=\"2\" depth_hover=\"5\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Testemonials in a row slider\"]\n\n[ux_slider hide_nav=\"true\" nav_color=\"dark\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9150\" image_width=\"121\" pos=\"center\" name=\"MIRORIM\"]\n\n<p>Excellent work. Very good theme, No need support, works perfectly. Congratulations !! <br />Waiting for version 3.0. Very excited.</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9150\" image_width=\"121\" pos=\"center\" name=\"MIRORIM\"]\n\n<p>Excellent work. Very good theme, No need support, works perfectly. Congratulations !! <br />Waiting for version 3.0. Very excited.</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n\n[/ux_slider]\n[title style=\"center\" text=\"Testemonials in a slider\"]\n\n[ux_slider]\n\n[ux_banner height=\"378px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"78\" width__sm=\"100\"]\n\n[testimonial image=\"9147\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"78\" width__sm=\"100\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]','Testimonials','','inherit','closed','closed','','87-revision-v1','','','2021-11-30 12:01:14','2021-11-30 12:01:14','',87,'http://demoweblinks.in/padmini/?p=151',0,'revision','',0),(152,1,'2021-11-30 12:01:15','2021-11-30 12:01:15','[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.49)\"]\r\n\r\n[text_box width=\"76\"]\r\n\r\n<h1>Buttons</h1>\r\n<p class=\"lead\">Create beautiful Call to Action buttons with the amazing Button Element</p>\r\n[button text=\"Primary Button\" style=\"shade\" link=\"test?asdf&asdf=asdf&asdf&\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Unlimited Variations</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Primary Color\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\" radius=\"12\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\" icon=\"icon-heart\"]\r\n\r\n[button text=\"Success Color\" color=\"success\"]\r\n\r\n[button text=\"White Color\" color=\"white\"]\r\n\r\n[button text=\"Primary Color\" style=\"outline\"]\r\n\r\n[button text=\"Success Color\" color=\"success\" style=\"outline\" radius=\"99\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\" style=\"outline\" radius=\"6\" icon=\"icon-heart\" icon_reveal=\"true\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\" style=\"outline\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[section bg_color=\"rgb(44, 44, 44)\" dark=\"true\"]\r\n\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Buttons on Dark background</h3>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Primary Color\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\"]\r\n\r\n[button text=\"Success Color\" color=\"success\"]\r\n\r\n[button text=\"White Color\" color=\"white\"]\r\n\r\n[button text=\"Primary Color\" style=\"outline\"]\r\n\r\n[button text=\"Success Color\" color=\"success\" style=\"outline\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\" style=\"outline\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\" style=\"outline\"]\r\n\r\n[button text=\"White outline\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>ButtonÂ Styles</h3>\r\n<p>Select between many different button styles.</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Simple link\" style=\"link\"]\r\n\r\n[button text=\"Underline\" style=\"underline\"]\r\n\r\n[button text=\"Outline\" style=\"outline\" depth=\"2\" depth_hover=\"2\"]\r\n\r\n[button text=\"Normal\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n[button text=\"Gloss\" style=\"gloss\" radius=\"99\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n[button text=\"Shade\" style=\"shade\" radius=\"7\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n[button text=\"Bevel\" style=\"bevel\" radius=\"12\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Button withÂ icon</h3>\r\n<p>Choose between many included Flatsome Icons.</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Icon Button\" style=\"bevel\" radius=\"8\" icon=\"icon-twitter\" icon_pos=\"left\"]\r\n\r\n[button text=\"Icon Left\" style=\"outline\" radius=\"6\" icon=\"icon-instagram\"]\r\n\r\n[button text=\"Reveal Left\" style=\"outline\" icon=\"icon-play\" icon_pos=\"left\" icon_reveal=\"true\"]\r\n\r\n[button text=\"Reveal Right\" icon=\"icon-angle-right\" icon_reveal=\"true\"]\r\n\r\n[button text=\"Large Button\" style=\"bevel\" size=\"xlarge\" radius=\"8\" icon=\"icon-twitter\" icon_pos=\"left\"]\r\n\r\n[button text=\"Large Reveal\" style=\"bevel\" size=\"xlarge\" radius=\"8\" icon=\"icon-checkmark\" icon_pos=\"left\" icon_reveal=\"true\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Simple Button Styles</h3>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Primary Color\" style=\"link\" icon=\"icon-play\" icon_reveal=\"true\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\" style=\"link\"]\r\n\r\n[button text=\"Success Color\" color=\"success\" style=\"link\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\" style=\"link\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Button Radius</h3>\r\n<p>Add custom radius to buttons</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Normal Button\" size=\"large\"]\r\n\r\n[button text=\"Round Button\" size=\"large\" radius=\"10\"]\r\n\r\n[button text=\"Circle Button\" size=\"large\" radius=\"99\"]\r\n\r\n[button text=\"Normal Button\" style=\"outline\" size=\"large\"]\r\n\r\n[button text=\"Round Button\" style=\"outline\" size=\"large\" radius=\"10\"]\r\n\r\n[button text=\"Circle Button\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>ButtonÂ Shadow</h3>\r\n<p>Add drop shadow to buttons to make them stand out more.</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Large Shadow\" style=\"bevel\" size=\"large\" depth=\"5\" depth_hover=\"4\"]\r\n\r\n[button text=\"Medium Shadow\" style=\"bevel\" size=\"large\" depth=\"3\" depth_hover=\"4\"]\r\n\r\n[button text=\"Small Shadow\" style=\"bevel\" size=\"large\" depth=\"1\" depth_hover=\"2\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>ButtonÂ Sizes</h3>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"x Small\" size=\"xsmall\"]\r\n\r\n[button text=\"Smaller\" size=\"smaller\"]\r\n\r\n[button text=\"Small\" size=\"small\"]\r\n\r\n[button text=\"Normal\"]\r\n\r\n[button text=\"Large\" size=\"large\"]\r\n\r\n[button text=\"Larger\" size=\"larger\"]\r\n\r\n[button text=\"X LARGE\" size=\"xlarge\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Smart Links</h3>\r\n<p>Add simple text to button links to link to various WordPress and WooCommerce pages.</p>\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n<p>\'<strong>shop</strong>\' : Goes to Shop page</p>\r\n<p>\'<strong>account\'</strong> Goes to My Account Page</p>\r\n<p>\'<strong>checkout\'</strong> Goes to Checkout page</p>\r\n<p>\'<strong>blog\'</strong> Goes to blog page</p>\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<p>\'<strong>home</strong>\' Goes to homepage</p>\r\n<p><strong>\'wishlist</strong>\' Goes to wishlist page</p>\r\n<p>\'<strong>Page Title</strong>\' Goes to page by Title.</p>\r\n\r\n[/col]\r\n\r\n[/row]','Buttons','','inherit','closed','closed','','88-revision-v1','','','2021-11-30 12:01:15','2021-11-30 12:01:15','',88,'http://demoweblinks.in/padmini/?p=152',0,'revision','',0),(153,1,'2021-11-30 12:01:15','2021-11-30 12:01:15','[map height=\"400px\"]\n\n<h3>Sesam Street 323b, 4010, Norway</h3>\n<p>We\'re open Monday â€“ Friday, 8 a.m. â€“ 7:30 p.m. EST</p>\n\n[/map]\n[row]\n\n[col span=\"6\"]\n\n[title text=\"Frequently Asked Questions\"]\n\n<p class=\"lead\">Please read our FAQ before sending us a message.</p>\n[accordion]\n\n[accordion-item title=\"What are the delivery charges for orders from the Online Shop?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante.</p>\n\n[/accordion-item]\n[accordion-item title=\"Which payment methods are accepted in the Online Shop?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante.</p>\n\n[/accordion-item]\n[accordion-item title=\"How long will delivery take?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante. </p>\n\n[/accordion-item]\n[accordion-item title=\"How secure is shopping in the Online Shop? Is my data protected?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante.</p>\n\n[/accordion-item]\n[accordion-item title=\"What exactly happens after ordering?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante. </p>\n\n[/accordion-item]\n[accordion-item title=\"Do I receive an invoice for my order?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante. </p>\n\n[/accordion-item]\n\n[/accordion]\n\n[/col]\n[col span=\"6\"]\n\n[title text=\"Send us an email\"]\n\n(insert contact form here)\n\n<p>This is form is just for demo purpose. No inquiries will be answered.</p>\n\n[/col]\n\n[/row]\n<p>Â </p>','Contact','','inherit','closed','closed','','89-revision-v1','','','2021-11-30 12:01:15','2021-11-30 12:01:15','',89,'http://demoweblinks.in/padmini/?p=153',0,'revision','',0),(154,1,'2021-11-30 12:01:15','2021-11-30 12:01:15','[ux_banner height=\"507px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.49)\" parallax=\"3\"]\n\n[text_box position_y=\"80\"]\n\n<h1 class=\"lead\">About Us</h1>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead text-center\"><strong>Lorem ipsum</strong> dolor sit amet, consectetur adipiscing elit. Morbi fermentum justo vitae convallis varius. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis.</p>\n[divider align=\"center\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"17\" name=\"Troy Gray\" title=\"CEO / Founder\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"17\" name=\"Richy Lace\" title=\"Marketing Director\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"17\" name=\"Jane Gray\" title=\"Public Relations\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"17\" name=\"July Wood\" title=\"Customer Support\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]','About','','inherit','closed','closed','','91-revision-v1','','','2021-11-30 12:01:15','2021-11-30 12:01:15','',91,'http://demoweblinks.in/padmini/?p=154',0,'revision','',0),(155,1,'2021-11-30 12:01:16','2021-11-30 12:01:16','[map lat=\"40.79022\" long=\"-73.95981\" content_bg=\"rgb(255, 255, 255)\" content_width__sm=\"100\" position_x=\"50\" position_x__sm=\"0\" position_y=\"50\" saturation=\"-100\"]\r\n\r\n<h3 class=\"uppercase\"><strong>GOOGLE MAP ELEMENT</strong></h3>\r\n<p class=\"lead\">Add highly customisable Google Maps to any page.</p>\r\n\r\n[/map]\r\n[title style=\"center\" text=\"Examples\" margin_top=\"14px\"]\r\n\r\n[row]\r\n\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[map]\r\n\r\n<p>Enter street adress here. Or any other information you want.</p>\r\n\r\n[/map]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[map controls=\"true\"]\r\n\r\n<p><strong>Map With Tools</strong></p>\r\n\r\n[/map]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[map content_width__sm=\"89\" color=\"#6d5854\"]\r\n\r\n<p>Use any color Â for your map</p>\r\n\r\n[/map]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[map content_width__sm=\"86\" position_x=\"5\" position_y=\"5\" saturation=\"-100\"]\r\n\r\n<p>Enter street adress here. Or any other information you want.</p>\r\n\r\n[/map]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[map height=\"589px\" height__sm=\"747px\" lat=\"40.79022\" long=\"-73.95981\" content_bg=\"rgba(255, 255, 255, 0.85)\" content_width__sm=\"100\" position_x__sm=\"100\" position_y=\"10\" position_y__sm=\"100\" saturation=\"44\"]\r\n\r\n[title text=\"A map with a Form\" icon=\"icon-envelop\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/map]','Map','','inherit','closed','closed','','92-revision-v1','','','2021-11-30 12:01:16','2021-11-30 12:01:16','',92,'http://demoweblinks.in/padmini/?p=155',0,'revision','',0),(156,1,'2021-11-30 12:01:16','2021-11-30 12:01:16','[ux_slider hide_nav=\"true\" bullets=\"false\"]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(19, 6, 6, 0.36)\" bg_pos=\"53% 5%\"]\n\n[text_box width=\"61\" width__sm=\"80\" scale=\"136\" scale__sm=\"154\" position_y=\"75\"]\n\n<h3 class=\"uppercase\"><strong>SLIDER ELEMENT</strong></h3>\n<p class=\"lead\">Create amazing Sliders with our Slider element.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_pos=\"22% 46%\"]\n\n[text_box width=\"40\" width__sm=\"80\" position_y=\"70\"]\n\n<h3>This is a Full Width Slider</h3>\n<p class=\"lead\">Add Any Content or Shortcode here</p>\n[button text=\"Click me\" style=\"outline\" radius=\"10\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" slide_effect=\"zoom-in\" bg=\"18\" bg_pos=\"49% 42%\"]\n\n[text_box animate=\"bounceIn\"]\n\n<h3>Add Animations and Slide Effects</h3>\n<p class=\"lead\">Add Any Content or Shortcode here</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row v_align=\"middle\" h_align=\"center\"]\n\n[col span=\"5\" span__sm=\"12\" align=\"center\"]\n\n<h3 class=\"uppercase\"><strong>Drag and Drop Editing</strong></h3>\n<p class=\"lead\">Use the UX Builder to Create amazing homepage sliders and ladingpages.</p>\n\n[/col]\n[col span=\"7\" span__sm=\"12\" align=\"center\"]\n\n[ux_image id=\"17\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n[title style=\"center\" size=\"undefined\"]\n\n[ux_slider style=\"container\" bg_color=\"rgb(0, 0, 0)\"]\n\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Focused Slider Style\" size=\"undefined\"]\n\n[ux_slider style=\"focus\" bg_color=\"rgb(82, 82, 82)\"]\n\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Shadow Slide Style\" size=\"undefined\"]\n\n[ux_slider style=\"shadow\" bg_color=\"rgb(238, 238, 238)\"]\n\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Free Scroll Shadow Slider\" size=\"undefined\"]\n\n[ux_slider style=\"shadow\" slide_width=\"500px\" bg_color=\"rgb(238, 238, 238)\" freescroll=\"true\"]\n\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"51% 19%\"]\n\n[text_box width=\"76\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"53% 13%\"]\n\n[text_box width=\"70\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"66\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"56% 11%\"]\n\n[text_box width=\"70\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"47% 9%\"]\n\n[text_box width=\"72\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Dark arrows\" size=\"undefined\"]\n\n[ux_slider]\n\n[ux_banner height=\"200px\" bg_color=\"rgb(222, 222, 222)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\" bg_color=\"rgb(238, 238, 238)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"light arrows\"]\n\n[ux_slider]\n\n[ux_banner height=\"200px\" bg_color=\"rgb(46, 46, 46)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\" bg_color=\"rgb(54, 54, 54)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"always visible arrows\"]\n\n[ux_slider hide_nav=\"true\"]\n\n[ux_banner height=\"200px\" bg_color=\"rgb(229, 191, 191)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\" bg_color=\"rgb(171, 204, 196)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Simple arrows\"]\n\n[ux_slider hide_nav=\"true\" nav_style=\"simple\"]\n\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col]\n\n[title style=\"center\" text=\"Nav outside\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\"]\n\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col]\n\n[title style=\"center\" text=\"Nav Circle outside\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" nav_color=\"dark\" bullets=\"false\"]\n\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]','Sliders','','inherit','closed','closed','','95-revision-v1','','','2021-11-30 12:01:16','2021-11-30 12:01:16','',95,'http://demoweblinks.in/padmini/?p=156',0,'revision','',0),(157,1,'2021-11-30 12:01:17','2021-11-30 12:01:17','[section bg=\"18\" bg_color=\"rgb(50, 50, 50)\" bg_overlay=\"rgba(0, 0, 0, 0.63)\" dark=\"true\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"3\"]\n\n<h1 class=\"uppercase\">Amazing Blog Posts Element</h1>\n<p class=\"lead\">Display your Blog posts in many different ways.</p>\n<ul>\n<li class=\"bullet-checkmark\">UnlimitedÂ Styles and Options</li>\n<li class=\"bullet-checkmark\">Select Custom Posts</li>\n<li class=\"bullet-checkmark\">Slider / Row / Grid and Masonry Style</li>\n</ul>\n\n[/col]\n[col span=\"9\"]\n\n[blog_posts style=\"shade\" type=\"slider-full\" grid=\"2\" slider_nav_style=\"circle\" columns=\"1\" title_size=\"larger\" show_date=\"text\" excerpt=\"false\" show_category=\"label\" comments=\"false\" image_size=\"large\" image_overlay=\"rgba(0, 0, 0, 0.09)\" image_hover=\"overlay-remove\" text_size=\"large\" text_hover=\"bounce\" text_padding=\"10% 0px 10% 0px\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[title style=\"center\" text=\"Default Style\" size=\"undefined\"]\n\n[blog_posts style=\"normal\" columns=\"3\" image_height=\"56.25%\"]\n\n[title style=\"center\" text=\"Bounce Style\" size=\"undefined\"]\n\n[blog_posts style=\"bounce\" badge_style=\"square\" image_height=\"75%\"]\n\n[title style=\"center\" text=\"Push Style\" margin_top=\"17px\" size=\"undefined\"]\n\n[blog_posts style=\"push\" columns=\"3\" badge_style=\"circle-inside\" image_height=\"75%\"]\n\n\n[/section]\n[section bg_color=\"rgb(62, 62, 62)\" dark=\"true\"]\n\n[title style=\"center\" text=\"Blog posts inside a dark section\" size=\"undefined\"]\n\n[blog_posts style=\"normal\" slider_nav_style=\"simple\" slider_nav_color=\"light\" slider_nav_position=\"outside\" columns=\"3\" image_height=\"56.25%\"]\n\n\n[/section]\n[title style=\"center\" text=\"Vertical Slide Style\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts style=\"vertical\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"2\" depth=\"2\" image_height=\"89%\" image_width=\"43\"]\n\n[title style=\"center\" text=\"Animated Blog posts in grid\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts type=\"row\" animate=\"fadeInUp\" image_height=\"180px\"]\n\n[title style=\"center\" text=\"Overlay Style\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts style=\"overlay\" depth=\"1\" title_style=\"uppercase\" show_date=\"text\" image_height=\"144%\" image_overlay=\"rgba(0, 0, 0, 0.17)\" image_hover=\"zoom\"]\n\n[title style=\"center\" text=\"Overlay Grayscale\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts style=\"overlay\" depth=\"1\" animate=\"fadeInLeft\" title_style=\"uppercase\" show_date=\"text\" image_height=\"144%\" image_overlay=\"rgba(0, 0, 0, 0.56)\" image_hover=\"color\" image_hover_alt=\"overlay-remove-50\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>Select between many differentÂ Hover Styles</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Read More button\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts type=\"row\" depth=\"2\" readmore=\"Read More\" image_height=\"180px\"]\n\n[title style=\"center\" text=\"Blog post in A Grid\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts style=\"shade\" type=\"grid\" columns=\"3\" depth=\"1\" posts=\"4\" title_size=\"larger\" title_style=\"uppercase\" readmore=\"Read More\" badge_style=\"circle-inside\" image_height=\"180px\"]\n\n[title style=\"center\" text=\"Blog post in A Masonery Grid\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts type=\"masonry\" columns=\"3\" depth=\"2\" image_height=\"180px\"]','Blog Posts','','inherit','closed','closed','','96-revision-v1','','','2021-11-30 12:01:17','2021-11-30 12:01:17','',96,'http://demoweblinks.in/padmini/?p=157',0,'revision','',0),(158,1,'2021-11-30 12:01:17','2021-11-30 12:01:17','[section bg_color=\"rgb(246, 246, 246)\"]\n\n[row]\n\n[col span=\"4\"]\n\n<h1>Tabs Element</h1>\n<p>Ad flannel sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Â </p>\n\n[/col]\n[col span=\"8\"]\n\n[tabgroup style=\"tabs\"]\n\n[tab title=\"Tab 3 Title\"]\n\n<p> lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 1 Title\"]\n\n<p>Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr.</p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed..</p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]\n\n[/section]\n[row]\n\n[col span=\"6\"]\n\n[tabgroup title=\"Line Tabs\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n[col span=\"6\"]\n\n[tabgroup title=\"Line Tabs Bottom\" style=\"line-bottom\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\"]\n\n[tabgroup title=\"Tabs Pills Centered\" style=\"pills\" align=\"center\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr.</p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Flannel sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n[col span=\"6\"]\n\n[tabgroup title=\"Outline Tabs Centered\" style=\"outline\" align=\"center\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]\n[row]\n\n[col]\n\n[tabgroup title=\"Line Grow Tabs Center\" style=\"line-grow\" align=\"center\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n[col]\n\n[tabgroup title=\"Vertical Tabs\" type=\"vertical\"]\n\n[tab title=\"Top tab\"]\n\n<p>Flannel sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee yr.</p>\n\n[/tab]\n[tab title=\"This is tab\"]\n\n<p>Laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"this is another tab\"]\n\n<p>Lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie.Â </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n[col span__sm=\"12\"]\n\n[tabgroup style=\"outline\" type=\"vertical\"]\n\n[tab title=\"Tab title 1\"]\n\n<p>Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab title 2\"]\n\n<p>Lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab title 3\"]\n\n<p>Church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]','Tabs','','inherit','closed','closed','','97-revision-v1','','','2021-11-30 12:01:17','2021-11-30 12:01:17','',97,'http://demoweblinks.in/padmini/?p=158',0,'revision','',0),(159,1,'2016-09-04 15:57:34','2016-09-04 15:57:34','[section bg_color=\"#fff\" class=\"flatsome-features\"]\r\n\r\n[title style=\"center\" text=\"Flatsome Main Features\"]\r\n\r\n[ux_pages style=\"default\" parent=\"2862\" col_spacing=\"small\" image_radius=\"3\" image_overlay=\"rgba(255, 255, 255, 0)\" image_hover=\"zoom\" text_align=\"center\"]\r\n\r\n\r\n[/section]\r\n[section bg_overlay=\"rgb(229, 235, 237)\" border=\"1px 0px 1px 0px\"]\r\n\r\n[row style=\"collapse\" h_align=\"center\"]\r\n\r\n[col span=\"7\" span__sm=\"12\" align=\"center\" animate=\"flipInX\"]\r\n\r\n[button text=\"Buy Flatsome Now\" link=\"http://bit.ly/buy-flatsome\" size=\"large\" radius=\"6\" icon=\"icon-shopping-basket\" icon_reveal=\"true\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]','Features Overview','','publish','closed','closed','','features-overview','','','2016-09-04 15:57:34','2016-09-04 15:57:34','',0,'http://flatsome.dev/?post_type=blocks&amp;p=9654',0,'blocks','',0),(160,1,'2016-09-03 16:24:28','2016-09-03 16:24:28','[row style=\"small\" h_align=\"center\" class=\"flatsome-demos\"]\r\n\r\n[col span=\"9\" span__sm=\"12\" align=\"center\"]\r\n<h2>Flatsome Theme Demos</h2>\r\n<p class=\"lead\">Flatsome includes many pre-made homepages and settings you can add with a single click. TheseÂ are just examples. You can mix and match headers, pages, colors and fonts using the Theme Option Panel.</p>\r\n[/col]\r\n\r\n[/row]\r\n\r\n[title style=\"center\" text=\"Shop Demos\"]\r\n\r\n[ux_pages style=\"default\" parent=\"3021\" col_spacing=\"small\" columns=\"3\" depth=\"1\" depth_hover=\"4\" image_size=\"medium\" image_overlay=\"rgba(0, 0, 0, 0)\" text_align=\"center\" text_bg=\"rgba(255, 255, 255, 0.63)\" text_padding=\"5px 5px 5px 5px\"]\r\n\r\n[title style=\"center\" text=\"Business Demos\"]\r\n\r\n[ux_pages style=\"default\" parent=\"3025\" col_spacing=\"small\" columns=\"3\" depth=\"1\" depth_hover=\"4\" image_size=\"medium\" image_overlay=\"rgba(0, 0, 0, 0)\" text_align=\"center\" text_bg=\"rgba(255, 255, 255, 0.76)\" text_padding=\"5px 5px 5px 5px\"]','Demos','','publish','closed','closed','','demos','','','2016-09-03 16:24:28','2016-09-03 16:24:28','',0,'http://flatsome.dev/?post_type=blocks&amp;p=9439',0,'blocks','',0),(161,1,'2016-08-25 13:42:06','2016-08-25 13:42:06','[ux_text font_size=\"0.875\"]\n\n</p>\n<p>Subscibe to Newsletter</p>\n<p>\n[/ux_text]\n[contact-form-7 id=\"15\"]\n\n[gap height=\"50px\"]\n\n[ux_text font_size=\"0.875\"]\n\n<div style=\"display: flex;\n  \"></p>\n<p ><i class=\"icon-phone top-header-icon\" aria-hidden=\"true\"></i> Â   <a class=\"top-header-icon\" href=\"tel:+4733378901\">+91 990000000</a></p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p><i class=\"icon-envelop top-header-icon\" aria-hidden=\"true\"></i>   Â      <a class=\"top-header-icon\" href=\"mailto:contactus@padminiproduct.com\">contactus@padminiproduct.com</a></p>\n</div>\n[/ux_text]','Footer - Newsletter Signup','','publish','closed','closed','','footer-newsletter-signup','','','2021-12-10 07:05:48','2021-12-10 07:05:48','',0,'http://flatsome.dev/?post_type=blocks&#038;p=8783',0,'blocks','',0),(162,1,'2016-08-25 13:41:28','2016-08-25 13:41:28','[ux_text visibility=\"hidden\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[logo img=\"617\" class=\"footer-logo\"]\n\n[follow align=\"left\" facebook=\"#\" instagram=\"#\" linkedin=\"#\" class=\"footer-social\"]','Footer - About us','','publish','closed','closed','','footer-about-us','','','2021-12-07 10:00:54','2021-12-07 10:00:54','',0,'http://flatsome.dev/?post_type=blocks&#038;p=8781',0,'blocks','',0),(163,1,'2016-08-18 11:43:28','2016-08-18 11:43:28','[ux_slider]\n\n[ux_banner height=\"200px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.35)\" bg_pos=\"69% 3%\"]\n\n[text_box]\n\n<h3>SALE ENDS SOON</h3>\n[ux_countdown]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.35)\" bg_pos=\"67% 29%\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>Category top banner</strong></h3>\n<p class=\"lead\">This is a Block and can be edited live in with the Page Builder</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]','Shop - Category Slider','','publish','closed','closed','','shop-category-slider','','','2016-08-18 11:43:28','2016-08-18 11:43:28','',0,'http://flatsome.dev/?post_type=blocks&amp;p=8635',0,'blocks','',0),(164,1,'2016-08-18 10:42:40','2016-08-18 10:42:40','[ux_banner height=\"319px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.1)\" parallax=\"3\"]\n\n[text_box]\n\n<h1 class=\"uppercase\"><strong>Shop</strong></h1>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismotest. Change or remove this banner easely.</p>\n\n[/text_box]\n\n[/ux_banner]','Shop - Header','','publish','closed','closed','','shop-header','','','2016-08-18 10:42:40','2016-08-18 10:42:40','',0,'http://flatsome.dev/?post_type=blocks&amp;p=8593',0,'blocks','',0),(165,1,'2016-08-18 07:04:50','2016-08-18 07:04:50','[ux_banner height=\"400px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.12)\" bg_pos=\"66% 24%\" parallax=\"2\"]\r\n\r\n[text_box parallax=\"-1\" text_depth=\"1\"]\r\n\r\n<h1 class=\"uppercase\"><strong>our Blog</strong></h1>\r\n<p class=\"lead\">Change This header to anything by using the UX Builder. You can also remove it. It\'s only visible on the blog homepage.</p>\r\n[share]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]','Blog Header','','publish','closed','closed','','blog-header','','','2016-08-18 07:04:50','2016-08-18 07:04:50','',0,'http://flatsome.dev/?post_type=blocks&amp;p=8587',0,'blocks','',0),(166,1,'2016-01-25 11:39:27','2016-01-25 11:39:27','[section bg_color=\"rgb(250, 250, 250)\" border=\"2px 0px 1px 0px\"]\r\n\r\n[row h_align=\"center\"]\r\n\r\n[col span=\"9\" span__sm=\"12\" align=\"center\"]\r\n<h1 class=\"lead uppercase\">Flatsome Elements</h1>\r\n<p class=\"lead\">Flatsome is more than a theme. It\'s a framework for creating amazing Websites. Here is a collection of our highly customisable elements.</p>\r\n[/col]\r\n[col]\r\n\r\n[ux_pages style=\"default\" parent=\"elements\" col_spacing=\"small\" columns=\"8\" depth=\"1\" depth_hover=\"1\" image_height=\"68%\" image_hover=\"zoom\" text_bg=\"rgb(250, 250, 250)\" text_padding=\"1px 1px 3px 10px\"]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]','Elements Overview','','publish','closed','closed','','elements-overview','','','2016-01-25 11:39:27','2016-01-25 11:39:27','',0,'http://flatsome.dev/?post_type=blocks&amp;p=3764',0,'blocks','',0),(224,1,'2016-08-28 09:39:54','2016-08-28 09:39:54','','Lookbook Summer','Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.','publish','open','closed','','lookbook-summer','','','2016-08-28 09:39:54','2016-08-28 09:39:54','',0,'http://flatsome.dev/?post_type=featured_item&amp;p=8922',0,'featured_item','',0),(225,1,'2016-08-28 09:38:06','2016-08-28 09:38:06','','Another Print Package','Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. ','publish','open','closed','','another-print-package','','','2016-08-28 09:38:06','2016-08-28 09:38:06','',0,'http://flatsome.dev/?post_type=featured_item&amp;p=8919',0,'featured_item','',0),(226,1,'2016-08-28 09:36:46','2016-08-28 09:36:46','[ux_slider margin=\"13px\"]\n\n[ux_image id=\"17\"]\n\n[ux_image id=\"17\"]\n\n[ux_image id=\"17\"]\n\n\n[/ux_slider]\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>','FL3 Print Package','Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.','publish','open','closed','','fl3-print-package','','','2016-08-28 09:36:46','2016-08-28 09:36:46','',0,'http://flatsome.dev/?post_type=featured_item&amp;p=8917',0,'featured_item','',0),(227,1,'2016-08-28 09:35:26','2016-08-28 09:35:26','','Awesome Pencil Poster','Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat','publish','open','closed','','awesome-pencil-poster','','','2016-08-28 09:35:26','2016-08-28 09:35:26','',0,'http://flatsome.dev/?post_type=featured_item&amp;p=8915',0,'featured_item','',0),(228,1,'2016-08-28 09:29:58','2016-08-28 09:29:58','','Portfolio typography','Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.','publish','open','closed','','portfolio-typography','','','2016-08-28 09:29:58','2016-08-28 09:29:58','',0,'http://flatsome.dev/?post_type=featured_item&amp;p=8913',0,'featured_item','',0),(229,1,'2016-08-28 09:25:23','2016-08-28 09:25:23','Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.','Flatsome Poster Print','','publish','open','closed','','flatsome-poster-print','','','2016-08-28 09:25:23','2016-08-28 09:25:23','',0,'http://flatsome.dev/?post_type=featured_item&amp;p=8909',0,'featured_item','',0),(230,1,'2016-08-28 09:22:57','2016-08-28 09:22:57','','Magazine','Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat','publish','open','closed','','magazine','','','2016-08-28 09:22:57','2016-08-28 09:22:57','',0,'http://flatsome.dev/?post_type=featured_item&amp;p=8890',0,'featured_item','',0),(231,1,'2016-08-28 08:57:59','2016-08-28 08:57:59','','Flat T-Shirt Company','Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.','publish','open','closed','','flat-t-shirt-company','','','2016-08-28 08:57:59','2016-08-28 08:57:59','',0,'http://flatsome.dev/?post_type=featured_item&amp;p=8887',0,'featured_item','',0),(233,1,'2015-11-25 12:33:37','2015-11-25 12:33:37',' ','','','publish','closed','closed','','3320','','','2015-11-25 12:33:37','2015-11-25 12:33:37','',0,'http://flatsome.dev/?p=3320',49,'nav_menu_item','',0),(234,1,'2015-11-19 10:44:52','2015-11-19 10:44:52',' ','','','publish','closed','closed','','3219','','','2015-11-19 10:44:52','2015-11-19 10:44:52','',0,'http://flatsome.dev/2015/11/19/3219/',1,'nav_menu_item','',0),(235,1,'2015-11-19 10:44:52','2015-11-19 10:44:52',' ','','','publish','closed','closed','','3216','','','2015-11-19 10:44:52','2015-11-19 10:44:52','',69,'http://flatsome.dev/2015/11/19/3216/',19,'nav_menu_item','',0),(237,1,'2015-11-19 10:44:52','2015-11-19 10:44:52',' ','','','publish','closed','closed','','3210','','','2015-11-19 10:44:52','2015-11-19 10:44:52','',0,'http://flatsome.dev/2015/11/19/3210/',58,'nav_menu_item','',0),(238,1,'2016-08-09 14:24:23','2016-08-09 14:24:23',' ','','','publish','closed','closed','','8552','','','2016-08-09 14:24:23','2016-08-09 14:24:23','',71,'http://flatsome.dev/?p=8552',7,'nav_menu_item','',0),(239,1,'2016-08-09 14:22:09','2016-08-09 14:22:09',' ','','','publish','closed','closed','','8548','','','2016-08-09 14:22:09','2016-08-09 14:22:09','',71,'http://flatsome.dev/?p=8548',6,'nav_menu_item','',0),(240,1,'2016-08-04 11:10:25','2016-08-04 11:10:25',' ','','','publish','closed','closed','','8406','','','2016-08-04 11:10:25','2016-08-04 11:10:25','',71,'http://flatsome.dev/?p=8406',10,'nav_menu_item','',0),(241,1,'2016-07-04 20:03:30','2016-07-04 20:03:30',' ','','','publish','closed','closed','','8196','','','2016-07-04 20:03:30','2016-07-04 20:03:30','',70,'http://flatsome.dev/?p=8196',22,'nav_menu_item','',0),(242,1,'2016-04-04 11:20:49','2016-04-04 11:20:49',' ','','','publish','closed','closed','','7040','','','2016-04-04 11:20:49','2016-04-04 11:20:49','',70,'http://flatsome.dev/?p=7040',23,'nav_menu_item','',0),(243,1,'2016-02-18 15:14:15','2016-02-18 15:14:15',' ','','','publish','closed','closed','','4046','','','2016-02-18 15:14:15','2016-02-18 15:14:15','',70,'http://flatsome.dev/?p=4046',21,'nav_menu_item','',0),(245,1,'2015-11-20 08:29:53','2015-11-20 08:29:53',' ','','','publish','closed','closed','','3259','','','2015-11-20 08:29:53','2015-11-20 08:29:53','',71,'http://flatsome.dev/?p=3259',12,'nav_menu_item','',0),(246,1,'2015-11-19 10:44:53','2015-11-19 10:44:53',' ','','','publish','closed','closed','','3224','','','2015-11-19 10:44:53','2015-11-19 10:44:53','',70,'http://flatsome.dev/2015/11/19/3224/',20,'nav_menu_item','',0),(247,1,'2015-11-19 10:44:53','2015-11-19 10:44:53',' ','','','publish','closed','closed','','3222','','','2015-11-19 10:44:53','2015-11-19 10:44:53','',70,'http://flatsome.dev/2015/11/19/3222/',24,'nav_menu_item','',0),(248,1,'2015-11-19 10:44:52','2015-11-19 10:44:52',' ','','','publish','closed','closed','','3218','','','2015-11-19 10:44:52','2015-11-19 10:44:52','',71,'http://flatsome.dev/2015/11/19/3218/',3,'nav_menu_item','',0),(249,1,'2015-11-19 10:44:52','2015-11-19 10:44:52',' ','','','publish','closed','closed','','3204','','','2015-11-19 10:44:52','2015-11-19 10:44:52','',0,'http://flatsome.dev/2015/11/19/3204/',51,'nav_menu_item','',0),(250,1,'2015-11-19 10:44:52','2015-11-19 10:44:52',' ','','','publish','closed','closed','','3203','','','2015-11-19 10:44:52','2015-11-19 10:44:52','',0,'http://flatsome.dev/2015/11/19/3203/',57,'nav_menu_item','',0),(251,1,'2015-11-19 10:44:52','2015-11-19 10:44:52',' ','','','publish','closed','closed','','3202','','','2015-11-19 10:44:52','2015-11-19 10:44:52','',71,'http://flatsome.dev/2015/11/19/3202/',4,'nav_menu_item','',0),(252,1,'2015-11-19 10:44:52','2015-11-19 10:44:52',' ','','','publish','closed','closed','','3201','','','2015-11-19 10:44:52','2015-11-19 10:44:52','',71,'http://flatsome.dev/2015/11/19/3201/',8,'nav_menu_item','',0),(253,1,'2015-11-19 10:44:52','2015-11-19 10:44:52',' ','','','publish','closed','closed','','3200','','','2015-11-19 10:44:52','2015-11-19 10:44:52','',71,'http://flatsome.dev/2015/11/19/3200/',5,'nav_menu_item','',0),(254,1,'2015-11-19 10:44:52','2015-11-19 10:44:52',' ','','','publish','closed','closed','','3197','','','2015-11-19 10:44:52','2015-11-19 10:44:52','',71,'http://flatsome.dev/2015/11/19/3197/',9,'nav_menu_item','',0),(255,1,'2021-12-10 10:00:21','2015-11-19 10:44:50',' ','','','publish','closed','closed','','3167','','','2021-12-10 10:00:21','2021-12-10 10:00:21','',52,'http://flatsome.dev/2015/11/19/3167/',2,'nav_menu_item','',0),(256,1,'2021-12-10 10:00:21','2015-11-19 10:44:48',' ','','','publish','closed','closed','','3121','','','2021-12-10 10:00:21','2021-12-10 10:00:21','',0,'http://flatsome.dev/2015/11/19/3121/',4,'nav_menu_item','',0),(258,1,'2016-08-09 14:22:09','2016-08-09 14:22:09',' ','','','publish','closed','closed','','8547','','','2016-08-09 14:22:09','2016-08-09 14:22:09','',52,'http://flatsome.dev/?p=8547',56,'nav_menu_item','',0),(259,1,'2016-08-04 11:17:30','2016-08-04 11:17:30',' ','','','publish','closed','closed','','8416','','','2016-08-04 11:17:30','2016-08-04 11:17:30','',52,'http://flatsome.dev/?p=8416',55,'nav_menu_item','',0),(260,1,'2016-07-04 10:47:55','2016-07-04 10:47:55',' ','','','publish','closed','closed','','8113','','','2016-07-04 10:47:55','2016-07-04 10:47:55','',71,'http://flatsome.dev/?p=8113',17,'nav_menu_item','',0),(261,1,'2016-04-26 12:34:59','2016-04-26 12:34:59',' ','','','publish','closed','closed','','7318','','','2016-04-26 12:34:59','2016-04-26 12:34:59','',71,'http://flatsome.dev/?p=7318',15,'nav_menu_item','',0),(262,1,'2016-04-18 13:08:41','2016-04-18 13:08:41',' ','','','publish','closed','closed','','7226','','','2016-04-18 13:08:41','2016-04-18 13:08:41','',71,'http://flatsome.dev/?p=7226',18,'nav_menu_item','',0),(263,1,'2016-02-17 13:39:07','2016-02-17 13:39:07',' ','','','publish','closed','closed','','4027','','','2016-02-17 13:39:07','2016-02-17 13:39:07','',71,'http://flatsome.dev/?p=4027',14,'nav_menu_item','',0),(264,1,'2016-02-17 10:15:47','2016-02-17 10:15:47',' ','','','publish','closed','closed','','4010','','','2016-02-17 10:15:47','2016-02-17 10:15:47','',71,'http://flatsome.dev/?p=4010',13,'nav_menu_item','',0),(265,1,'2015-11-20 13:46:54','2015-11-20 13:46:54',' ','','','publish','closed','closed','','3290','','','2015-11-20 13:46:54','2015-11-20 13:46:54','',71,'http://flatsome.dev/?p=3290',16,'nav_menu_item','',0),(266,1,'2015-11-19 10:44:52','2015-11-19 10:44:52',' ','','','publish','closed','closed','','3209','','','2015-11-19 10:44:52','2015-11-19 10:44:52','',52,'http://flatsome.dev/2015/11/19/3209/',52,'nav_menu_item','',0),(267,1,'2015-11-19 10:44:52','2015-11-19 10:44:52',' ','','','publish','closed','closed','','3206','','','2015-11-19 10:44:52','2015-11-19 10:44:52','',52,'http://flatsome.dev/2015/11/19/3206/',54,'nav_menu_item','',0),(268,1,'2015-11-19 10:44:52','2015-11-19 10:44:52',' ','','','publish','closed','closed','','3205','','','2015-11-19 10:44:52','2015-11-19 10:44:52','',52,'http://flatsome.dev/2015/11/19/3205/',53,'nav_menu_item','',0),(303,1,'2021-11-30 13:22:32','2021-11-30 13:22:32','','Top blog','','publish','closed','closed','','top-blog','','','2021-11-30 13:22:32','2021-11-30 13:22:32','',0,'http://demoweblinks.in/padmini/?post_type=blocks&#038;p=303',0,'blocks','',0),(304,1,'2021-11-30 13:22:32','2021-11-30 13:22:32','','Top blog','','inherit','closed','closed','','303-revision-v1','','','2021-11-30 13:22:32','2021-11-30 13:22:32','',303,'http://demoweblinks.in/padmini/?p=304',0,'revision','',0),(306,1,'2021-11-30 13:25:12','2021-11-30 13:25:12','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:14px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n/* \n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 70%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 30%;\n	text-align:end;\n\n} */\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n	position: relative;\n  top: 10px;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n/*  	text-align:justify; */\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n	position: relative;\n  top: 0px;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n	\n/* 	text-align:end; */\n 	font: bold 10px Arial, Helvetica, sans-serif; \n\n}\n}\n\n@media screen and (max-width: 850px) {\n	.custom-cartbutton {\n  display: inline;\n  width: 100%;\n	\n/* 	text-align:end; */\n 	font: bold 7px Arial, Helvetica, sans-serif; \n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n\n.front-product .product-small .box{\n	    padding: 0px;\n   border-top-left-radius: 0px;\n  border-top-right-radius: 0px;\n  border-bottom-left-radius: 0px;\n  border-bottom-right-radius: 0px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 0px;\n    -moz-border-radius-topright: 0px;\n    -moz-border-radius-bottomleft: 0px;\n    -moz-border-radius-bottomright: 0px;\n    \n -webkit-box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n -moz-box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n   \n    border-collapse: collapse; \n}\n\n\n\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}\n\n.badge-container{\n	display:none;\n}\n\n	@media screen and (max-width: 483px){\n		.top-header-icon{\n			font-size: 12px!important;}\n		\n}\n\n	@media screen and (max-width: 378px){\n		.top-header-icon{\n			font-size: 9px!important;}\n		\n}\n','padmini','','publish','closed','closed','','padmini','','','2021-12-16 10:12:00','2021-12-16 10:12:00','',0,'http://demoweblinks.in/padmini/2021/11/30/padmini/',0,'custom_css','',0),(307,1,'2021-11-30 13:25:12','2021-11-30 13:25:12','.top-header-icon{\n	font-size:20px;\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-11-30 13:25:12','2021-11-30 13:25:12','',306,'http://demoweblinks.in/padmini/?p=307',0,'revision','',0),(309,1,'2021-11-30 13:26:17','2021-11-30 13:26:17','.top-header-icon{\n	font-size:20px!important;\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-11-30 13:26:17','2021-11-30 13:26:17','',306,'http://demoweblinks.in/padmini/?p=309',0,'revision','',0),(311,1,'2021-11-30 13:27:53','2021-11-30 13:27:53','.top-header-icon{\n	font-size:20px!important;\n	vertical-align:baseline!important;\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-11-30 13:27:53','2021-11-30 13:27:53','',306,'http://demoweblinks.in/padmini/?p=311',0,'revision','',0),(313,1,'2021-11-30 13:28:01','2021-11-30 13:28:01','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-11-30 13:28:01','2021-11-30 13:28:01','',306,'http://demoweblinks.in/padmini/?p=313',0,'revision','',0),(327,1,'2021-12-02 04:40:18','2021-12-02 04:40:18','<!-- wp:html -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\"]\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" &nbsp;bg_pos=\"72% 6%\"]\n\n[text_box width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" text_color=\"dark\"]\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\"]\n\n[text_box width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" text_align=\"left\" text_color=\"dark\"]\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y__sm=\"50\"]\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[button text=\"Browse Products\"]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box]\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box]\n<h2><strong><span class=\"uppercase\">Join our\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box]\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"Best Selling Products\" size=\"undefined\"]\n\n[ux_products products=\"8\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\"]\n\n[ux_product_categories number=\"20\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\" margin=\"0px 0px 0px 0px\"]\n\nGet Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\" margin=\"0px 0px 0px 0px\"]\n\nGet Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\" margin=\"0px 0px 0px 0px\"]\n\nWe pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[ux_slider timer=\"2000\"]\n\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"78\"]\n\n[testimonial image_width=\"128\" name=\"Lucy Anderson\" company=\"Facebook\" stars=\"3\"]\n\nPBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\"]\n\n[testimonial image_width=\"117\" name=\"Rebecca Smith\" company=\"Twitter\" stars=\"3\"]\n\nPBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\"]\n\n[testimonial image_width=\"131\" name=\"Jenny Brooks\" company=\"LinkedIn\"]\n\nPBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Latest News\" size=\"undefined\"]\n\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n<!-- /wp:html -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 04:40:18','2021-12-02 04:40:18','',99,'http://demoweblinks.in/padmini/?p=327',0,'revision','',0),(330,1,'2021-12-02 04:53:01','2021-12-02 04:53:01','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"Best Selling Products\" size=\"undefined\"]\n\n[ux_products orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\"]\n\n[ux_product_categories number=\"20\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[ux_slider timer=\"2000\"]\n\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"78\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"128\" name=\"Lucy Anderson\" company=\"Facebook\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"117\" name=\"Rebecca Smith\" company=\"Twitter\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"131\" name=\"Jenny Brooks\" company=\"LinkedIn\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Latest News\" size=\"undefined\"]\n\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 04:53:01','2021-12-02 04:53:01','',99,'http://demoweblinks.in/padmini/?p=330',0,'revision','',0),(331,1,'2021-12-02 04:54:10','2021-12-02 04:54:10','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"Best Selling Products\" size=\"undefined\"]\n\n[ux_products orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\"]\n\n[ux_product_categories number=\"20\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[ux_slider timer=\"2000\"]\n\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"78\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"128\" name=\"Lucy Anderson\" company=\"Facebook\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"117\" name=\"Rebecca Smith\" company=\"Twitter\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"131\" name=\"Jenny Brooks\" company=\"LinkedIn\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Latest News\" size=\"undefined\"]\n\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 04:54:10','2021-12-02 04:54:10','',99,'http://demoweblinks.in/padmini/?p=331',0,'revision','',0),(332,1,'2021-12-02 04:54:27','2021-12-02 04:54:27','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"Best Selling Products\" size=\"undefined\"]\n\n[ux_products orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\"]\n\n[ux_product_categories number=\"20\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[ux_slider timer=\"2000\"]\n\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"78\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"128\" name=\"Lucy Anderson\" company=\"Facebook\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"117\" name=\"Rebecca Smith\" company=\"Twitter\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"131\" name=\"Jenny Brooks\" company=\"LinkedIn\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Latest News\" size=\"undefined\"]\n\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 04:54:27','2021-12-02 04:54:27','',99,'http://demoweblinks.in/padmini/?p=332',0,'revision','',0),(333,1,'2021-12-02 04:59:06','2021-12-02 04:59:06','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"Best Selling Products\" size=\"undefined\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"true\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\"]\n\n[ux_product_categories number=\"20\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[ux_slider timer=\"2000\"]\n\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"78\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"128\" name=\"Lucy Anderson\" company=\"Facebook\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"117\" name=\"Rebecca Smith\" company=\"Twitter\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"131\" name=\"Jenny Brooks\" company=\"LinkedIn\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Latest News\" size=\"undefined\"]\n\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 04:59:06','2021-12-02 04:59:06','',99,'http://demoweblinks.in/padmini/?p=333',0,'revision','',0),(334,1,'2021-12-02 05:01:29','2021-12-02 05:01:29','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"Best Selling Products\" size=\"undefined\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\"]\n\n[ux_product_categories number=\"20\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[ux_slider timer=\"2000\"]\n\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"78\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"128\" name=\"Lucy Anderson\" company=\"Facebook\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"117\" name=\"Rebecca Smith\" company=\"Twitter\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"131\" name=\"Jenny Brooks\" company=\"LinkedIn\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Latest News\" size=\"undefined\"]\n\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 05:01:29','2021-12-02 05:01:29','',99,'http://demoweblinks.in/padmini/?p=334',0,'revision','',0),(335,1,'2021-12-02 05:13:42','2021-12-02 05:13:42','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"Best Selling Products\" size=\"undefined\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\"]\n\n[ux_product_categories number=\"20\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[ux_slider timer=\"2000\"]\n\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"78\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"128\" name=\"Lucy Anderson\" company=\"Facebook\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"117\" name=\"Rebecca Smith\" company=\"Twitter\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"131\" name=\"Jenny Brooks\" company=\"LinkedIn\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Latest News\" size=\"undefined\"]\n\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 05:13:42','2021-12-02 05:13:42','',99,'http://demoweblinks.in/padmini/?p=335',0,'revision','',0),(336,1,'2021-12-02 05:13:56','2021-12-02 05:13:56','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"Best Selling Products\" size=\"undefined\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\"]\n\n[ux_product_categories number=\"20\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[ux_slider timer=\"2000\"]\n\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"78\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"128\" name=\"Lucy Anderson\" company=\"Facebook\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"117\" name=\"Rebecca Smith\" company=\"Twitter\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"131\" name=\"Jenny Brooks\" company=\"LinkedIn\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Latest News\" size=\"undefined\"]\n\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 05:13:56','2021-12-02 05:13:56','',99,'http://demoweblinks.in/padmini/?p=336',0,'revision','',0),(337,1,'2021-12-02 05:41:08','2021-12-02 05:41:08','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"Best Selling Products\" size=\"undefined\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\"]\n\n[ux_product_categories number=\"20\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[ux_slider timer=\"2000\"]\n\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"78\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"128\" name=\"Lucy Anderson\" company=\"Facebook\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"117\" name=\"Rebecca Smith\" company=\"Twitter\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"131\" name=\"Jenny Brooks\" company=\"LinkedIn\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Latest News\" size=\"undefined\"]\n\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 05:41:08','2021-12-02 05:41:08','',99,'http://demoweblinks.in/padmini/?p=337',0,'revision','',0),(338,1,'2021-12-02 05:41:56','2021-12-02 05:41:56','<!-- wp:flatsome/uxbuilder -->\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"Best Selling Products\" size=\"undefined\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[ux_slider timer=\"2000\"]\n\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"78\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"128\" name=\"Lucy Anderson\" company=\"Facebook\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"117\" name=\"Rebecca Smith\" company=\"Twitter\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"131\" name=\"Jenny Brooks\" company=\"LinkedIn\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Latest News\" size=\"undefined\"]\n\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 05:41:56','2021-12-02 05:41:56','',99,'http://demoweblinks.in/padmini/?p=338',0,'revision','',0),(339,1,'2021-12-02 05:42:31','2021-12-02 05:42:31','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"Best Selling Products\" size=\"undefined\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[ux_slider timer=\"2000\"]\n\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"78\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"128\" name=\"Lucy Anderson\" company=\"Facebook\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"117\" name=\"Rebecca Smith\" company=\"Twitter\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"131\" name=\"Jenny Brooks\" company=\"LinkedIn\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Latest News\" size=\"undefined\"]\n\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 05:42:31','2021-12-02 05:42:31','',99,'http://demoweblinks.in/padmini/?p=339',0,'revision','',0),(340,1,'2021-12-02 05:44:10','2021-12-02 05:44:10','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h4\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[ux_slider timer=\"2000\"]\n\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"78\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"128\" name=\"Lucy Anderson\" company=\"Facebook\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"117\" name=\"Rebecca Smith\" company=\"Twitter\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"131\" name=\"Jenny Brooks\" company=\"LinkedIn\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Latest News\" size=\"undefined\"]\n\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 05:44:10','2021-12-02 05:44:10','',99,'http://demoweblinks.in/padmini/?p=340',0,'revision','',0),(341,1,'2021-12-02 05:44:51','2021-12-02 05:44:51','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h4\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[ux_slider timer=\"2000\"]\n\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"78\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"128\" name=\"Lucy Anderson\" company=\"Facebook\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"117\" name=\"Rebecca Smith\" company=\"Twitter\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"131\" name=\"Jenny Brooks\" company=\"LinkedIn\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Latest News\" size=\"undefined\"]\n\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 05:44:51','2021-12-02 05:44:51','',99,'http://demoweblinks.in/padmini/?p=341',0,'revision','',0),(342,1,'2021-12-02 05:54:27','2021-12-02 05:54:27','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>About Padmini</h2>\n\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h4\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[ux_slider timer=\"2000\"]\n\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"78\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"128\" name=\"Lucy Anderson\" company=\"Facebook\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"117\" name=\"Rebecca Smith\" company=\"Twitter\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"131\" name=\"Jenny Brooks\" company=\"LinkedIn\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Latest News\" size=\"undefined\"]\n\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 05:54:27','2021-12-02 05:54:27','',99,'http://demoweblinks.in/padmini/?p=342',0,'revision','',0),(343,1,'2021-12-02 06:34:35','2021-12-02 06:34:35','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>About Padmini</h2>\n\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h4\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[ux_slider timer=\"2000\"]\n\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"78\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"128\" name=\"Lucy Anderson\" company=\"Facebook\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"117\" name=\"Rebecca Smith\" company=\"Twitter\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"131\" name=\"Jenny Brooks\" company=\"LinkedIn\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Blogs\" tag_name=\"h4\"]\n\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n\n[/ux_text]\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 06:34:35','2021-12-02 06:34:35','',99,'http://demoweblinks.in/padmini/?p=343',0,'revision','',0),(344,1,'2021-12-02 06:45:56','2021-12-02 06:45:56','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h4\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[ux_slider timer=\"2000\"]\n\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"78\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"128\" name=\"Lucy Anderson\" company=\"Facebook\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"117\" name=\"Rebecca Smith\" company=\"Twitter\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"131\" name=\"Jenny Brooks\" company=\"LinkedIn\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_text text_align=\"center\"]\n\n<h2>Blogs</h2>\n\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 06:45:56','2021-12-02 06:45:56','',99,'http://demoweblinks.in/padmini/?p=344',0,'revision','',0),(345,1,'2021-12-02 07:05:23','2021-12-02 07:05:23','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h4\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[ux_slider timer=\"2000\"]\n\n[ux_banner height=\"500px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"100\" padding=\"50px 35px 50px 35px\" position_x=\"50\" position_y=\"50\" bg=\"rgb(255, 255, 255)\"]\n\n[testimonial image=\"19\" image_width=\"127\" name=\"Lucy Anderson\" stars=\"0\" class=\"testimonial\"]\n\n[ux_text text_align=\"left\" text_color=\"rgb(5, 4, 4)\"]\n\n<p class=\"test-double-cots\">\"</p>\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/ux_text]\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"117\" name=\"Rebecca Smith\" company=\"Twitter\" stars=\"3\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"300px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"80\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image_width=\"131\" name=\"Jenny Brooks\" company=\"LinkedIn\"]\n\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_text text_align=\"center\"]\n\n<h2>Blogs</h2>\n\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 07:05:23','2021-12-02 07:05:23','',99,'http://demoweblinks.in/padmini/?p=345',0,'revision','',0),(346,1,'2021-12-02 07:05:52','2021-12-02 07:05:52','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h4\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[ux_slider timer=\"2000\"]\n\n[ux_banner height=\"500px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"100\" padding=\"50px 35px 50px 35px\" position_x=\"50\" position_y=\"50\" bg=\"rgb(255, 255, 255)\"]\n\n[testimonial image=\"19\" image_width=\"127\" name=\"Lucy Anderson\" stars=\"0\" class=\"testimonial\"]\n\n[ux_text text_align=\"left\" text_color=\"rgb(5, 4, 4)\"]\n\n<p class=\"test-double-cots\">\"</p>\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/ux_text]\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"18\" parallax=\"1\"]\n\n[text_box width=\"100\" padding=\"50px 35px 50px 35px\" position_x=\"50\" position_y=\"50\" bg=\"rgb(255, 255, 255)\"]\n\n[testimonial image=\"19\" image_width=\"127\" name=\"Lucy Anderson\" stars=\"0\" class=\"testimonial\"]\n\n[ux_text text_align=\"left\" text_color=\"rgb(5, 4, 4)\"]\n\n<p class=\"test-double-cots\">\"</p>\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/ux_text]\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_text text_align=\"center\"]\n\n<h2>Blogs</h2>\n\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 07:05:52','2021-12-02 07:05:52','',99,'http://demoweblinks.in/padmini/?p=346',0,'revision','',0),(348,1,'2021-12-02 07:11:57','2021-12-02 07:11:57','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h4\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[ux_slider timer=\"2000\"]\n\n[ux_banner height=\"500px\" bg=\"18\" parallax=\"1\"]\n\n[text_box text_color=\"dark\" width=\"100\" padding=\"50px 35px 50px 35px\" position_x=\"50\" position_y=\"50\" bg=\"rgb(255, 255, 255)\"]\n\n[testimonial image=\"19\" image_width=\"127\" name=\"Lucy Anderson\" stars=\"0\" class=\"testimonial\"]\n\n[ux_text text_align=\"left\" text_color=\"rgb(5, 4, 4)\"]\n\n<p class=\"test-double-cots\">\"</p>\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/ux_text]\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"18\" parallax=\"1\"]\n\n[text_box text_color=\"dark\" width=\"100\" padding=\"50px 35px 50px 35px\" position_x=\"50\" position_y=\"50\" bg=\"rgb(255, 255, 255)\"]\n\n[testimonial image=\"19\" image_width=\"127\" name=\"Lucy Anderson\" stars=\"0\" class=\"testimonial\"]\n\n[ux_text text_align=\"left\" text_color=\"rgb(5, 4, 4)\"]\n\n<p class=\"test-double-cots\">\"</p>\n<p>PBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.</p>\n\n[/ux_text]\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_text text_align=\"center\"]\n\n<h2>Blogs</h2>\n\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 07:11:57','2021-12-02 07:11:57','',99,'http://demoweblinks.in/padmini/?p=348',0,'revision','',0),(352,1,'2021-12-02 07:32:50','2021-12-02 07:32:50','','artem-beliaikin-j5almO1E8rU-unsplash-small','','inherit','open','closed','','artem-beliaikin-j5almo1e8ru-unsplash-small','','','2021-12-02 07:32:50','2021-12-02 07:32:50','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/artem-beliaikin-j5almO1E8rU-unsplash-small.jpg',0,'attachment','image/jpeg',0),(353,1,'2021-12-02 07:32:58','2021-12-02 07:32:58','','ivana-cajina-dnL6ZIpht2s-unsplash-small','','inherit','open','closed','','ivana-cajina-dnl6zipht2s-unsplash-small','','','2021-12-02 07:32:58','2021-12-02 07:32:58','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/ivana-cajina-dnL6ZIpht2s-unsplash-small.jpg',0,'attachment','image/jpeg',0),(354,1,'2021-12-02 07:33:05','2021-12-02 07:33:05','','marius-ciocirlan-vMV6r4VRhJ8-unsplash-small','','inherit','open','closed','','marius-ciocirlan-vmv6r4vrhj8-unsplash-small','','','2021-12-02 07:33:05','2021-12-02 07:33:05','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/marius-ciocirlan-vMV6r4VRhJ8-unsplash-small.jpg',0,'attachment','image/jpeg',0),(355,1,'2021-12-02 09:50:16','2021-12-02 09:50:16','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h4\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<h2>Testimonials</h2>\n<p>See what people are saying</p>\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300%;\">\"</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<p><span style=\"font-size: 80%;\">Graphic Designer, Apple</span></p>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\" class=\"circle\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300%;\">\"</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<p><span style=\"font-size: 80%;\">Customer Service, Google</span></p>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\" class=\"circle\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300%;\">\"</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<p><span style=\"font-size: 80%;\">Developer, Uber </span></p>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_text text_align=\"center\"]\n\n<h2>Blogs</h2>\n\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 09:50:16','2021-12-02 09:50:16','',99,'http://demoweblinks.in/padmini/?p=355',0,'revision','',0),(356,1,'2021-12-02 09:51:54','2021-12-02 09:51:54','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h4\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<h2>Testimonials</h2>\n<p>See what people are saying</p>\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<p><span style=\"font-size: 80%;\">Graphic Designer, Apple</span></p>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\" class=\"circle\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300%;\">\"</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<p><span style=\"font-size: 80%;\">Customer Service, Google</span></p>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\" class=\"circle\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300%;\">\"</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<p><span style=\"font-size: 80%;\">Developer, Uber </span></p>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_text text_align=\"center\"]\n\n<h2>Blogs</h2>\n\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 09:51:54','2021-12-02 09:51:54','',99,'http://demoweblinks.in/padmini/?p=356',0,'revision','',0),(357,1,'2021-12-02 09:52:26','2021-12-02 09:52:26','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h4\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<h2>Testimonials</h2>\n<p>See what people are saying</p>\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\" class=\"circle\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300%;\">\"</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<p><span style=\"font-size: 80%;\">Customer Service, Google</span></p>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\" class=\"circle\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300%;\">\"</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<p><span style=\"font-size: 80%;\">Developer, Uber </span></p>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_text text_align=\"center\"]\n\n<h2>Blogs</h2>\n\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 09:52:26','2021-12-02 09:52:26','',99,'http://demoweblinks.in/padmini/?p=357',0,'revision','',0),(358,1,'2021-12-02 09:57:18','2021-12-02 09:57:18','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h4\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<h2>Testimonials</h2>\n<p>See what people are saying</p>\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\" class=\"circle\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300%;\">\"</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<p><span style=\"font-size: 80%;\">Customer Service, Google</span></p>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\" class=\"circle\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300%;\">\"</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<p><span style=\"font-size: 80%;\">Developer, Uber </span></p>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_text text_align=\"center\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 09:57:18','2021-12-02 09:57:18','',99,'http://demoweblinks.in/padmini/?p=358',0,'revision','',0),(359,1,'2021-12-02 09:59:41','2021-12-02 09:59:41','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h4\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<h2>Testimonials</h2>\n<p>See what people are saying</p>\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\" class=\"circle\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\" class=\"circle\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_text text_align=\"center\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 09:59:41','2021-12-02 09:59:41','',99,'http://demoweblinks.in/padmini/?p=359',0,'revision','',0),(360,1,'2021-12-02 10:09:52','2021-12-02 10:09:52','','bruno-nascimento-9XTyIiFceKM-unsplash','','inherit','open','closed','','bruno-nascimento-9xtyiifcekm-unsplash','','','2021-12-02 10:09:52','2021-12-02 10:09:52','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/bruno-nascimento-9XTyIiFceKM-unsplash.jpg',0,'attachment','image/jpeg',0),(361,1,'2021-12-02 10:12:37','2021-12-02 10:12:37','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h4\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n<h6>Up to 50% off</h6>\n[ux_text font_size=\"1.75\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Shop collection\" color=\"white\" padding=\"5px 30px 6px 30px\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<h2>Testimonials</h2>\n<p>See what people are saying</p>\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\" class=\"circle\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\" class=\"circle\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 10:12:37','2021-12-02 10:12:37','',99,'http://demoweblinks.in/padmini/?p=361',0,'revision','',0),(362,1,'2021-12-02 10:15:07','2021-12-02 10:15:07','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h4\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n<h6>Up to 50% off</h6>\n[ux_text font_size=\"1.75\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Shop collection\" color=\"white\" padding=\"5px 30px 6px 30px\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<h2>Testimonials</h2>\n<p>See what people are saying</p>\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 10:15:07','2021-12-02 10:15:07','',99,'http://demoweblinks.in/padmini/?p=362',0,'revision','',0),(363,1,'2021-12-02 10:20:37','2021-12-02 10:20:37','','landingpage-clean-studio-logo-6-flatsome-theme-uxbuilder','','inherit','open','closed','','landingpage-clean-studio-logo-6-flatsome-theme-uxbuilder','','','2021-12-02 10:20:37','2021-12-02 10:20:37','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/landingpage-clean-studio-logo-6-flatsome-theme-uxbuilder.png',0,'attachment','image/png',0),(364,1,'2021-12-02 10:20:43','2021-12-02 10:20:43','','landingpage-clean-studio-logo-5-flatsome-theme-uxbuilder','','inherit','open','closed','','landingpage-clean-studio-logo-5-flatsome-theme-uxbuilder','','','2021-12-02 10:20:43','2021-12-02 10:20:43','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/landingpage-clean-studio-logo-5-flatsome-theme-uxbuilder.png',0,'attachment','image/png',0),(365,1,'2021-12-02 10:20:48','2021-12-02 10:20:48','','landingpage-clean-studio-logo-4-flatsome-theme-uxbuilder','','inherit','open','closed','','landingpage-clean-studio-logo-4-flatsome-theme-uxbuilder','','','2021-12-02 10:20:48','2021-12-02 10:20:48','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/landingpage-clean-studio-logo-4-flatsome-theme-uxbuilder.png',0,'attachment','image/png',0),(366,1,'2021-12-02 10:20:54','2021-12-02 10:20:54','','landingpage-clean-studio-logo-3-flatsome-theme-uxbuilder','','inherit','open','closed','','landingpage-clean-studio-logo-3-flatsome-theme-uxbuilder','','','2021-12-02 10:20:54','2021-12-02 10:20:54','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/landingpage-clean-studio-logo-3-flatsome-theme-uxbuilder.png',0,'attachment','image/png',0),(367,1,'2021-12-02 10:21:00','2021-12-02 10:21:00','','landingpage-clean-studio-logo-2-flatsome-theme-uxbuilder','','inherit','open','closed','','landingpage-clean-studio-logo-2-flatsome-theme-uxbuilder','','','2021-12-02 10:21:00','2021-12-02 10:21:00','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/landingpage-clean-studio-logo-2-flatsome-theme-uxbuilder.png',0,'attachment','image/png',0),(368,1,'2021-12-02 10:21:05','2021-12-02 10:21:05','','landingpage-clean-studio-logo-1-flatsome-theme-uxbuilder','','inherit','open','closed','','landingpage-clean-studio-logo-1-flatsome-theme-uxbuilder','','','2021-12-02 10:21:05','2021-12-02 10:21:05','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/landingpage-clean-studio-logo-1-flatsome-theme-uxbuilder.png',0,'attachment','image/png',0),(369,1,'2021-12-02 10:21:10','2021-12-02 10:21:10','','ruslan-bardash-4kTbAMRAHtQ-unsplash-edited','','inherit','open','closed','','ruslan-bardash-4ktbamrahtq-unsplash-edited','','','2021-12-02 10:21:10','2021-12-02 10:21:10','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/ruslan-bardash-4kTbAMRAHtQ-unsplash-edited.jpg',0,'attachment','image/jpeg',0),(370,1,'2021-12-02 10:21:17','2021-12-02 10:21:17','','viktor-talashuk-Sjk38bu7VXg-unsplash-edited','','inherit','open','closed','','viktor-talashuk-sjk38bu7vxg-unsplash-edited','','','2021-12-02 10:21:17','2021-12-02 10:21:17','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/viktor-talashuk-Sjk38bu7VXg-unsplash-edited.jpg',0,'attachment','image/jpeg',0),(371,1,'2021-12-02 10:21:26','2021-12-02 10:21:26','','thought-catalog-FACFpJVoMJs-unsplash-edited','','inherit','open','closed','','thought-catalog-facfpjvomjs-unsplash-edited','','','2021-12-02 10:21:26','2021-12-02 10:21:26','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/thought-catalog-FACFpJVoMJs-unsplash-edited.jpg',0,'attachment','image/jpeg',0),(372,1,'2021-12-02 10:21:34','2021-12-02 10:21:34','','icons8-team-BzAEmJc2-2w-unsplash-edited','','inherit','open','closed','','icons8-team-bzaemjc2-2w-unsplash-edited','','','2021-12-02 10:21:34','2021-12-02 10:21:34','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/icons8-team-BzAEmJc2-2w-unsplash-edited.jpg',0,'attachment','image/jpeg',0),(373,1,'2021-12-02 10:21:44','2021-12-02 10:21:44','','mae-mu-vbAEHCrvXZ0-unsplash-edited','','inherit','open','closed','','mae-mu-vbaehcrvxz0-unsplash-edited','','','2021-12-02 10:21:44','2021-12-02 10:21:44','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/mae-mu-vbAEHCrvXZ0-unsplash-edited.jpg',0,'attachment','image/jpeg',0),(374,1,'2021-12-02 10:21:55','2021-12-02 10:21:55','','apostolos-vamvouras-mKi4QEJXRCs-unsplash-edited-1','','inherit','open','closed','','apostolos-vamvouras-mki4qejxrcs-unsplash-edited-1','','','2021-12-02 10:21:55','2021-12-02 10:21:55','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/apostolos-vamvouras-mKi4QEJXRCs-unsplash-edited-1.jpg',0,'attachment','image/jpeg',0),(375,1,'2021-12-02 10:22:05','2021-12-02 10:22:05','','malvestida-magazine-DMl5gG0yWWY-unsplash-edited','','inherit','open','closed','','malvestida-magazine-dml5gg0ywwy-unsplash-edited','','','2021-12-02 10:22:05','2021-12-02 10:22:05','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/malvestida-magazine-DMl5gG0yWWY-unsplash-edited.jpg',0,'attachment','image/jpeg',0),(376,1,'2021-12-02 10:22:15','2021-12-02 10:22:15','','malvestida-magazine-FfbVFLAVscw-unsplash-edited','','inherit','open','closed','','malvestida-magazine-ffbvflavscw-unsplash-edited','','','2021-12-02 10:22:15','2021-12-02 10:22:15','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/malvestida-magazine-FfbVFLAVscw-unsplash-edited.jpg',0,'attachment','image/jpeg',0),(377,1,'2021-12-02 10:22:24','2021-12-02 10:22:24','','alex-gruber-qfgm_F0VxQ0-unsplash-edited','','inherit','open','closed','','alex-gruber-qfgm_f0vxq0-unsplash-edited','','','2021-12-02 10:22:24','2021-12-02 10:22:24','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/alex-gruber-qfgm_F0VxQ0-unsplash-edited.jpg',0,'attachment','image/jpeg',0),(378,1,'2021-12-02 10:24:20','2021-12-02 10:24:20','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h4\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n<h6>Up to 50% off</h6>\n[ux_text font_size=\"1.75\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Shop collection\" color=\"white\" padding=\"5px 30px 6px 30px\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<h2>Testimonials</h2>\n<p>See what people are saying</p>\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"10px 10px 10px 10px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"363\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 10:24:20','2021-12-02 10:24:20','',99,'http://demoweblinks.in/padmini/?p=378',0,'revision','',0),(379,1,'2021-12-02 10:27:02','2021-12-02 10:27:02','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h4\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n<h6>Up to 50% off</h6>\n[ux_text font_size=\"1.75\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Shop collection\" color=\"white\" padding=\"5px 30px 6px 30px\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<h2>Testimonials</h2>\n<p>See what people are saying</p>\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8221;</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">\"</san></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"10px 10px 10px 10px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"363\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 10:27:02','2021-12-02 10:27:02','',99,'http://demoweblinks.in/padmini/?p=379',0,'revision','',0),(380,1,'2021-12-02 10:28:15','2021-12-02 10:28:15','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h4\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n<h6>Up to 50% off</h6>\n[ux_text font_size=\"1.75\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Shop collection\" color=\"white\" padding=\"5px 30px 6px 30px\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<h2>Testimonials</h2>\n<p>See what people are saying</p>\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8221;</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8221;</san></h2>\n\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8221;</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"10px 10px 10px 10px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"363\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 10:28:15','2021-12-02 10:28:15','',99,'http://demoweblinks.in/padmini/?p=380',0,'revision','',0),(381,1,'2021-12-02 10:30:35','2021-12-02 10:30:35','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h4\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n<h6>Up to 50% off</h6>\n[ux_text font_size=\"1.75\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Shop collection\" color=\"white\" padding=\"5px 30px 6px 30px\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<h2>Testimonials</h2>\n<p>See what people are saying</p>\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8221;</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8221;</san></h2>\n\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\npadding-left: 150px;\">&#8221;</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"10px 10px 10px 10px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"363\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 10:30:35','2021-12-02 10:30:35','',99,'http://demoweblinks.in/padmini/?p=381',0,'revision','',0),(382,1,'2021-12-02 10:32:06','2021-12-02 10:32:06','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h4\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n<h6>Up to 50% off</h6>\n[ux_text font_size=\"1.75\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Shop collection\" color=\"white\" padding=\"5px 30px 6px 30px\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<h2>Testimonials</h2>\n<p>See what people are saying</p>\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"10px 10px 10px 10px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"363\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 10:32:06','2021-12-02 10:32:06','',99,'http://demoweblinks.in/padmini/?p=382',0,'revision','',0),(383,1,'2021-12-02 10:33:53','2021-12-02 10:33:53','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h4\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<h2>Testimonials</h2>\n<p>See what people are saying</p>\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"10px 10px 10px 10px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"363\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 10:33:53','2021-12-02 10:33:53','',99,'http://demoweblinks.in/padmini/?p=383',0,'revision','',0),(384,1,'2021-12-02 10:34:27','2021-12-02 10:34:27','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h4\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<h2>Testimonials</h2>\n<p>See what people are saying</p>\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"10px 10px 10px 10px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"363\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 10:34:27','2021-12-02 10:34:27','',99,'http://demoweblinks.in/padmini/?p=384',0,'revision','',0),(385,1,'2021-12-02 10:34:46','2021-12-02 10:34:46','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h4\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<h2>Testimonials</h2>\n<p>See what people are saying</p>\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"10px 10px 10px 10px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"363\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 10:34:46','2021-12-02 10:34:46','',99,'http://demoweblinks.in/padmini/?p=385',0,'revision','',0),(386,1,'2021-12-02 10:44:27','2021-12-02 10:44:27','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>A title</h4>\n<p>Image Box text</p>\n[button text=\"Explore Now\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h4\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<h2>Testimonials</h2>\n<p>See what people are saying</p>\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"10px 10px 10px 10px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"363\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 10:44:27','2021-12-02 10:44:27','',99,'http://demoweblinks.in/padmini/?p=386',0,'revision','',0),(387,1,'2021-12-02 10:46:33','2021-12-02 10:46:33','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n\n[button text=\"Explore Now\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h4\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<h2>Testimonials</h2>\n<p>See what people are saying</p>\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"10px 10px 10px 10px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"363\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 10:46:33','2021-12-02 10:46:33','',99,'http://demoweblinks.in/padmini/?p=387',0,'revision','',0),(388,1,'2021-12-02 10:50:09','2021-12-02 10:50:09','','WhatsApp Image 2021-11-29 at 5.10.53 PM','','inherit','open','closed','','whatsapp-image-2021-11-29-at-5-10-53-pm','','','2021-12-02 10:50:09','2021-12-02 10:50:09','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg',0,'attachment','image/jpeg',0),(389,1,'2021-12-02 10:51:33','2021-12-02 10:51:33','','WhatsApp Image 2021-11-29 at 5.11.00 PM','','inherit','open','closed','','whatsapp-image-2021-11-29-at-5-11-00-pm','','','2021-12-02 10:51:33','2021-12-02 10:51:33','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.11.00-PM.jpeg',0,'attachment','image/jpeg',0),(390,1,'2021-12-02 10:52:07','2021-12-02 10:52:07','','WhatsApp Image 2021-11-29 at 5.10.54 PM','','inherit','open','closed','','whatsapp-image-2021-11-29-at-5-10-54-pm','','','2021-12-02 10:52:07','2021-12-02 10:52:07','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.54-PM.jpeg',0,'attachment','image/jpeg',0),(391,1,'2021-12-02 10:52:51','2021-12-02 10:52:51','','WhatsApp Image 2021-11-29 at 5.10.55 PM','','inherit','open','closed','','whatsapp-image-2021-11-29-at-5-10-55-pm','','','2021-12-02 10:52:51','2021-12-02 10:52:51','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.55-PM.jpeg',0,'attachment','image/jpeg',0),(392,1,'2021-12-02 10:55:35','2021-12-02 10:55:35','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h4\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<h2>Testimonials</h2>\n<p>See what people are saying</p>\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"10px 10px 10px 10px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"363\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 10:55:35','2021-12-02 10:55:35','',99,'http://demoweblinks.in/padmini/?p=392',0,'revision','',0),(393,1,'2021-12-02 11:00:23','2021-12-02 11:00:23','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h4\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<h2>Testimonials</h2>\n<p>See what people are saying</p>\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"10px 10px 10px 10px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"363\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 11:00:23','2021-12-02 11:00:23','',99,'http://demoweblinks.in/padmini/?p=393',0,'revision','',0),(395,1,'2021-12-02 11:04:29','2021-12-02 11:04:29','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin: 0;\n  position: absolute;\n  top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-02 11:04:29','2021-12-02 11:04:29','',306,'http://demoweblinks.in/padmini/?p=395',0,'revision','',0),(397,1,'2021-12-02 11:05:00','2021-12-02 11:05:00','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n  \n  top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-02 11:05:00','2021-12-02 11:05:00','',306,'http://demoweblinks.in/padmini/?p=397',0,'revision','',0),(399,1,'2021-12-02 11:05:08','2021-12-02 11:05:08','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-02 11:05:08','2021-12-02 11:05:08','',306,'http://demoweblinks.in/padmini/?p=399',0,'revision','',0),(400,1,'2021-12-02 11:06:32','2021-12-02 11:06:32','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h4\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<h2>Testimonials</h2>\n<p>See what people are saying</p>\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"10px 10px 10px 10px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"363\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 11:06:32','2021-12-02 11:06:32','',99,'http://demoweblinks.in/padmini/?p=400',0,'revision','',0),(401,1,'2021-12-02 11:10:22','2021-12-02 11:10:22','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2 >About Padmini</h2>\n\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"10px 10px 10px 10px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"363\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 11:10:22','2021-12-02 11:10:22','',99,'http://demoweblinks.in/padmini/?p=401',0,'revision','',0),(403,1,'2021-12-02 12:18:56','2021-12-02 12:18:56','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.home-product-tile h32{\n	text-transform:capitalize;\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-02 12:18:56','2021-12-02 12:18:56','',306,'http://demoweblinks.in/padmini/?p=403',0,'revision','',0),(405,1,'2021-12-02 12:19:10','2021-12-02 12:19:10','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.home-product-tile h32{\n	text-transform:capitalize!important;\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-02 12:19:10','2021-12-02 12:19:10','',306,'http://demoweblinks.in/padmini/?p=405',0,'revision','',0),(407,1,'2021-12-02 12:19:34','2021-12-02 12:19:34','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.home-product-tile h2{\n	text-transform:capitalize!important;\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-02 12:19:34','2021-12-02 12:19:34','',306,'http://demoweblinks.in/padmini/?p=407',0,'revision','',0),(409,1,'2021-12-02 12:19:54','2021-12-02 12:19:54','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.home-product-tile>h2>.section-title-center span{\n	text-transform:capitalize!important;\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-02 12:19:54','2021-12-02 12:19:54','',306,'http://demoweblinks.in/padmini/?p=409',0,'revision','',0),(411,1,'2021-12-02 12:21:51','2021-12-02 12:21:51','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-02 12:21:51','2021-12-02 12:21:51','',306,'http://demoweblinks.in/padmini/?p=411',0,'revision','',0),(412,1,'2021-12-02 12:36:06','2021-12-02 12:36:06','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br>\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"10px 10px 10px 10px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"363\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 12:36:06','2021-12-02 12:36:06','',99,'http://demoweblinks.in/padmini/?p=412',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (413,1,'2021-12-02 12:37:06','2021-12-02 12:37:06','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2 >About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"10px 10px 10px 10px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"363\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 12:37:06','2021-12-02 12:37:06','',99,'http://demoweblinks.in/padmini/?p=413',0,'revision','',0),(414,1,'2021-12-02 12:40:10','2021-12-02 12:40:10','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2 >About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"70%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"10px 10px 10px 10px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"363\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 12:40:10','2021-12-02 12:40:10','',99,'http://demoweblinks.in/padmini/?p=414',0,'revision','',0),(416,1,'2021-12-02 12:42:32','2021-12-02 12:42:32','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2 >About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"10px 10px 10px 10px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"363\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 12:42:32','2021-12-02 12:42:32','',99,'http://demoweblinks.in/padmini/?p=416',0,'revision','',0),(417,1,'2021-12-02 12:45:17','2021-12-02 12:45:17','[ux_text visibility=\"hidden\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[follow facebook=\"#\" instagram=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\"]','Footer - About us','','inherit','closed','closed','','162-revision-v1','','','2021-12-02 12:45:17','2021-12-02 12:45:17','',162,'http://demoweblinks.in/padmini/?p=417',0,'revision','',0),(418,1,'2021-12-02 12:47:35','2021-12-02 12:47:35','[ux_text visibility=\"hidden\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[logo]\n\n[follow facebook=\"#\" instagram=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\"]','Footer - About us','','inherit','closed','closed','','162-revision-v1','','','2021-12-02 12:47:35','2021-12-02 12:47:35','',162,'http://demoweblinks.in/padmini/?p=418',0,'revision','',0),(419,1,'2021-12-02 12:49:04','2021-12-02 12:49:04','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2 >About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"10px 10px 10px 10px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"363\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 12:49:04','2021-12-02 12:49:04','',99,'http://demoweblinks.in/padmini/?p=419',0,'revision','',0),(420,1,'2021-12-02 12:49:31','2021-12-02 12:49:31','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2 >About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"10px 10px 10px 10px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"363\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 12:49:31','2021-12-02 12:49:31','',99,'http://demoweblinks.in/padmini/?p=420',0,'revision','',0),(421,1,'2021-12-02 12:52:01','2021-12-02 12:52:01','[ux_text visibility=\"hidden\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[logo]\n\n[follow facebook=\"#\" instagram=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\"]','Footer - About us','','inherit','closed','closed','','162-autosave-v1','','','2021-12-02 12:52:01','2021-12-02 12:52:01','',162,'http://demoweblinks.in/padmini/?p=421',0,'revision','',0),(422,1,'2021-12-02 12:52:35','2021-12-02 12:52:35','[ux_text visibility=\"hidden\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[logo class=\"footer-logo\"]\n\n[follow facebook=\"#\" instagram=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\"]','Footer - About us','','inherit','closed','closed','','162-revision-v1','','','2021-12-02 12:52:35','2021-12-02 12:52:35','',162,'http://demoweblinks.in/padmini/?p=422',0,'revision','',0),(423,1,'2021-12-02 12:53:23','2021-12-02 12:53:23','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2 >About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"10px 10px 10px 10px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"363\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 12:53:23','2021-12-02 12:53:23','',99,'http://demoweblinks.in/padmini/?p=423',0,'revision','',0),(424,1,'2021-12-02 12:54:20','2021-12-02 12:54:20','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2 >About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;\n\">&#8220;</san></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">&#8221;</san></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"10px 10px 10px 10px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"363\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-02 12:54:20','2021-12-02 12:54:20','',99,'http://demoweblinks.in/padmini/?p=424',0,'revision','',0),(425,1,'2021-12-02 12:56:13','2021-12-02 12:56:13','[ux_text visibility=\"hidden\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[logo class=\"footer-logo\"]\n\n[follow align=\"center\" facebook=\"#\" instagram=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\"]','Footer - About us','','inherit','closed','closed','','162-revision-v1','','','2021-12-02 12:56:13','2021-12-02 12:56:13','',162,'http://demoweblinks.in/padmini/?p=425',0,'revision','',0),(426,1,'2021-12-02 12:57:09','2021-12-02 12:57:09','[ux_text visibility=\"hidden\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[logo class=\"footer-logo\"]\n\n[follow facebook=\"#\" instagram=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\"]','Footer - About us','','inherit','closed','closed','','162-revision-v1','','','2021-12-02 12:57:09','2021-12-02 12:57:09','',162,'http://demoweblinks.in/padmini/?p=426',0,'revision','',0),(427,1,'2021-12-02 12:57:35','2021-12-02 12:57:35','[ux_text visibility=\"hidden\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[logo class=\"footer-logo\"]\n\n[follow align=\"left\" facebook=\"#\" instagram=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\"]','Footer - About us','','inherit','closed','closed','','162-revision-v1','','','2021-12-02 12:57:35','2021-12-02 12:57:35','',162,'http://demoweblinks.in/padmini/?p=427',0,'revision','',0),(428,1,'2021-12-02 12:59:18','2021-12-02 12:59:18','[ux_text visibility=\"hidden\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[logo class=\"footer-logo\"]\n\n[follow align=\"center\" facebook=\"#\" instagram=\"#\" linkedin=\"#\"]','Footer - About us','','inherit','closed','closed','','162-revision-v1','','','2021-12-02 12:59:18','2021-12-02 12:59:18','',162,'http://demoweblinks.in/padmini/?p=428',0,'revision','',0),(429,1,'2021-12-02 13:01:16','2021-12-02 13:01:16','</p>\n<p>Subscibe to Newsletter</p>\n<p>(insert contact form here)</p>','Footer - Newsletter Signup','','inherit','closed','closed','','161-revision-v1','','','2021-12-02 13:01:16','2021-12-02 13:01:16','',161,'http://demoweblinks.in/padmini/?p=429',0,'revision','',0),(430,1,'2021-12-02 13:06:24','2021-12-02 13:06:24','</p>\n<p>Subscibe to Newsletter</p>\n<p>([contact-form-7 id=\"15\" title=\"Newsletter Horizontal\"])</p>','Footer - Newsletter Signup','','inherit','closed','closed','','161-revision-v1','','','2021-12-02 13:06:24','2021-12-02 13:06:24','',161,'http://demoweblinks.in/padmini/?p=430',0,'revision','',0),(431,1,'2021-12-02 13:06:51','2021-12-02 13:06:51','</p>\n<p>Subscibe to Newsletter</p>\n<p>[contact-form-7 id=\"15\" title=\"Newsletter Horizontal\"]</p>','Footer - Newsletter Signup','','inherit','closed','closed','','161-revision-v1','','','2021-12-02 13:06:51','2021-12-02 13:06:51','',161,'http://demoweblinks.in/padmini/?p=431',0,'revision','',0),(433,1,'2021-12-02 13:16:21','2021-12-02 13:16:21','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			flex-basis:20%!important;\n	}\n		div#nav_menu-2 {\n			flex-basis:20%!important;\n}\n		div#block_widget-3 {\n			flex-basis:35%!important;\n}\n}\n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-02 13:16:21','2021-12-02 13:16:21','',306,'http://demoweblinks.in/padmini/?p=433',0,'revision','',0),(435,1,'2021-12-02 13:17:02','2021-12-02 13:17:02','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:20%;\n			flex-basis:20%!important;\n	}\n		div#nav_menu-2 {\n			max-width:20%;\n			flex-basis:20%!important;\n}\n		div#block_widget-3 {\n			max-width:35%;\n			flex-basis:35%!important;\n}\n}\n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-02 13:17:02','2021-12-02 13:17:02','',306,'http://demoweblinks.in/padmini/?p=435',0,'revision','',0),(437,1,'2021-12-02 13:19:30','2021-12-02 13:19:30','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:20%;\n			flex-basis:20%!important;\n	}\n		div#nav_menu-2 {\n			max-width:20%;\n			flex-basis:20%!important;\n}\n		div#block_widget-3 {\n			max-width:35%;\n			flex-basis:35%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-02 13:19:30','2021-12-02 13:19:30','',306,'http://demoweblinks.in/padmini/?p=437',0,'revision','',0),(438,1,'2021-12-03 03:56:45','2021-12-03 03:56:45','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br>\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"10px 10px 10px 10px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"363\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-03 03:56:45','2021-12-03 03:56:45','',99,'http://demoweblinks.in/padmini/?p=438',0,'revision','',0),(439,1,'2021-12-03 04:00:42','2021-12-03 04:00:42','</p>\n<p>Subscibe to Newsletter</p>\n<p>\n[contact-form-7 id=\"15\"]\n\n[section]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n<p ><i class=\"icon-phone top-header-icon\" aria-hidden=\"true\"></i> Â   <a class=\"top-header-icon\" href=\"tel:+4733378901\">+91 990000000</a></p>\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<p><i class=\"icon-envelop top-header-icon\" aria-hidden=\"true\"></i>   Â      <a class=\"top-header-icon\" href=\"mailto:contactus@padminiproduct.com\">contactus@padminiproduct.com</a></p>\n\n\n[/col]\n\n[/row]\n\n[/section]','Footer - Newsletter Signup','','inherit','closed','closed','','161-revision-v1','','','2021-12-03 04:00:42','2021-12-03 04:00:42','',161,'http://demoweblinks.in/padmini/?p=439',0,'revision','',0),(441,1,'2021-12-03 04:03:14','2021-12-03 04:03:14','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:17%;\n			flex-basis:17%!important;\n	}\n		div#nav_menu-2 {\n			max-width:18%;\n			flex-basis:18%!important;\n}\n		div#block_widget-3 {\n			max-width:40%;\n			flex-basis:40%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-03 04:03:14','2021-12-03 04:03:14','',306,'http://demoweblinks.in/padmini/?p=441',0,'revision','',0),(442,1,'2021-12-03 04:16:47','2021-12-03 04:16:47','</p>\n<p>Subscibe to Newsletter</p>\n<p>\n[contact-form-7 id=\"15\"]\n\n<div style=\"display: flex;\n  \"></p>\n<p ><i class=\"icon-phone top-header-icon\" aria-hidden=\"true\"></i> Â   <a class=\"top-header-icon\" href=\"tel:+4733378901\">+91 990000000</a></p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p><i class=\"icon-envelop top-header-icon\" aria-hidden=\"true\"></i>   Â      <a class=\"top-header-icon\" href=\"mailto:contactus@padminiproduct.com\">contactus@padminiproduct.com</a></p>\n</div>\n\n[section]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n<p ><i class=\"icon-phone top-header-icon\" aria-hidden=\"true\"></i> Â   <a class=\"top-header-icon\" href=\"tel:+4733378901\">+91 990000000</a></p>\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<p><i class=\"icon-envelop top-header-icon\" aria-hidden=\"true\"></i>   Â      <a class=\"top-header-icon\" href=\"mailto:contactus@padminiproduct.com\">contactus@padminiproduct.com</a></p>\n\n\n[/col]\n\n[/row]\n\n[/section]','Footer - Newsletter Signup','','inherit','closed','closed','','161-revision-v1','','','2021-12-03 04:16:47','2021-12-03 04:16:47','',161,'http://demoweblinks.in/padmini/?p=442',0,'revision','',0),(443,1,'2021-12-03 04:17:22','2021-12-03 04:17:22','</p>\n<p>Subscibe to Newsletter</p>\n<p>\n[contact-form-7 id=\"15\"]\n\n<div style=\"display: flex;\n  \"></p>\n<p ><i class=\"icon-phone top-header-icon\" aria-hidden=\"true\"></i> Â   <a class=\"top-header-icon\" href=\"tel:+4733378901\">+91 990000000</a></p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p><i class=\"icon-envelop top-header-icon\" aria-hidden=\"true\"></i>   Â      <a class=\"top-header-icon\" href=\"mailto:contactus@padminiproduct.com\">contactus@padminiproduct.com</a></p>\n</div>\n\n[gap height=\"50px\"]','Footer - Newsletter Signup','','inherit','closed','closed','','161-revision-v1','','','2021-12-03 04:17:22','2021-12-03 04:17:22','',161,'http://demoweblinks.in/padmini/?p=443',0,'revision','',0),(444,1,'2021-12-03 04:17:26','2021-12-03 04:17:26','</p>\n<p>Subscibe to Newsletter</p>\n<p>\n[contact-form-7 id=\"15\"]\n\n[gap height=\"50px\"]\n\n<div style=\"display: flex;\n  \"></p>\n<p ><i class=\"icon-phone top-header-icon\" aria-hidden=\"true\"></i> Â   <a class=\"top-header-icon\" href=\"tel:+4733378901\">+91 990000000</a></p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p><i class=\"icon-envelop top-header-icon\" aria-hidden=\"true\"></i>   Â      <a class=\"top-header-icon\" href=\"mailto:contactus@padminiproduct.com\">contactus@padminiproduct.com</a></p>\n</div>','Footer - Newsletter Signup','','inherit','closed','closed','','161-revision-v1','','','2021-12-03 04:17:26','2021-12-03 04:17:26','',161,'http://demoweblinks.in/padmini/?p=444',0,'revision','',0),(445,1,'2021-12-03 04:18:04','2021-12-03 04:18:04','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"10px 10px 10px 10px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"363\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-03 04:18:04','2021-12-03 04:18:04','',99,'http://demoweblinks.in/padmini/?p=445',0,'revision','',0),(446,1,'2021-12-03 04:21:53','2021-12-03 04:21:53','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"10px 10px 10px 10px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"1\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"1\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"1\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"1\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"1\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"1\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"1\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"363\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"1\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"363\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[row]\n\n[col span=\"1\" span__sm=\"6\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-03 04:21:53','2021-12-03 04:21:53','',99,'http://demoweblinks.in/padmini/?p=446',0,'revision','',0),(447,1,'2021-12-03 04:23:46','2021-12-03 04:23:46','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"10px 10px 10px 10px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"1\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"1\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"1\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"363\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"1\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"363\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-03 04:23:46','2021-12-03 04:23:46','',99,'http://demoweblinks.in/padmini/?p=447',0,'revision','',0),(448,1,'2021-12-03 04:50:28','2021-12-03 04:50:28','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"10px 10px 10px 10px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-03 04:50:28','2021-12-03 04:50:28','',99,'http://demoweblinks.in/padmini/?p=448',0,'revision','',0),(450,1,'2021-12-03 04:57:52','2021-12-03 04:57:52','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:17%;\n			flex-basis:17%!important;\n	}\n		div#nav_menu-2 {\n			max-width:18%;\n			flex-basis:18%!important;\n}\n		div#block_widget-3 {\n			max-width:40%;\n			flex-basis:40%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921;\n}\n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-03 04:57:52','2021-12-03 04:57:52','',306,'http://demoweblinks.in/padmini/?p=450',0,'revision','',0),(452,1,'2021-12-03 04:58:09','2021-12-03 04:58:09','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:17%;\n			flex-basis:17%!important;\n	}\n		div#nav_menu-2 {\n			max-width:18%;\n			flex-basis:18%!important;\n}\n		div#block_widget-3 {\n			max-width:40%;\n			flex-basis:40%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-03 04:58:09','2021-12-03 04:58:09','',306,'http://demoweblinks.in/padmini/?p=452',0,'revision','',0),(453,1,'2021-12-03 05:01:09','2021-12-03 05:01:09','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-03 05:01:09','2021-12-03 05:01:09','',99,'http://demoweblinks.in/padmini/?p=453',0,'revision','',0),(454,1,'2021-12-03 06:14:05','2021-12-03 06:14:05','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br>\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-03 06:14:05','2021-12-03 06:14:05','',99,'http://demoweblinks.in/padmini/?p=454',0,'revision','',0),(455,1,'2021-12-03 06:16:32','2021-12-03 06:16:32','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-03 06:16:32','2021-12-03 06:16:32','',99,'http://demoweblinks.in/padmini/?p=455',0,'revision','',0),(456,1,'2021-12-03 06:36:51','2021-12-03 06:36:51','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_cat=\"0\" show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_product_categories]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-03 06:36:51','2021-12-03 06:36:51','',99,'http://demoweblinks.in/padmini/?p=456',0,'revision','',0),(457,1,'2021-12-03 07:58:33','2021-12-03 07:58:33','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"0\" orderby=\"sales\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-03 07:58:33','2021-12-03 07:58:33','',99,'http://demoweblinks.in/padmini/?p=457',0,'revision','',0),(458,1,'2021-12-03 08:04:55','2021-12-03 08:04:55','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products equalize_box=\"true\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-03 08:04:55','2021-12-03 08:04:55','',99,'http://demoweblinks.in/padmini/?p=458',0,'revision','',0),(460,1,'2021-12-03 08:20:46','2021-12-03 08:20:46','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_add_to_cart=\"0\" equalize_box=\"true\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-03 08:20:46','2021-12-03 08:20:46','',99,'http://demoweblinks.in/padmini/?p=460',0,'revision','',0),(461,1,'2021-12-03 08:23:47','2021-12-03 08:23:47','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products equalize_box=\"true\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-03 08:23:47','2021-12-03 08:23:47','',99,'http://demoweblinks.in/padmini/?p=461',0,'revision','',0),(466,1,'2021-12-03 09:27:20','2021-12-03 09:27:20','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:17%;\n			flex-basis:17%!important;\n	}\n		div#nav_menu-2 {\n			max-width:18%;\n			flex-basis:18%!important;\n}\n		div#block_widget-3 {\n			max-width:40%;\n			flex-basis:40%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n}\n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-03 09:27:20','2021-12-03 09:27:20','',306,'http://demoweblinks.in/padmini/?p=466',0,'revision','',0),(468,1,'2021-12-03 09:27:46','2021-12-03 09:27:46','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:17%;\n			flex-basis:17%!important;\n	}\n		div#nav_menu-2 {\n			max-width:18%;\n			flex-basis:18%!important;\n}\n		div#block_widget-3 {\n			max-width:40%;\n			flex-basis:40%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n    padding: 0px 50px 0px 50px;\n}\n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-03 09:27:46','2021-12-03 09:27:46','',306,'http://demoweblinks.in/padmini/?p=468',0,'revision','',0),(471,1,'2021-12-03 09:35:11','2021-12-03 09:35:11','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:17%;\n			flex-basis:17%!important;\n	}\n		div#nav_menu-2 {\n			max-width:18%;\n			flex-basis:18%!important;\n}\n		div#block_widget-3 {\n			max-width:40%;\n			flex-basis:40%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n    padding: 0px 50px 0px 50px;\n}\n\n.hb-right {\n    text-align: left;\n    \n}\n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-03 09:35:11','2021-12-03 09:35:11','',306,'http://demoweblinks.in/padmini/?p=471',0,'revision','',0),(473,1,'2021-12-03 09:36:39','2021-12-03 09:36:39','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:17%;\n			flex-basis:17%!important;\n	}\n		div#nav_menu-2 {\n			max-width:18%;\n			flex-basis:18%!important;\n}\n		div#block_widget-3 {\n			max-width:40%;\n			flex-basis:40%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n    padding: 0px 50px 0px 50px;\n}\n\n\n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-03 09:36:39','2021-12-03 09:36:39','',306,'http://demoweblinks.in/padmini/?p=473',0,'revision','',0),(478,1,'2021-12-03 09:41:33','2021-12-03 09:41:33','<!-- wp:html /-->','Shop','','inherit','closed','closed','','8-revision-v1','','','2021-12-03 09:41:33','2021-12-03 09:41:33','',8,'http://demoweblinks.in/padmini/?p=478',0,'revision','',0),(479,1,'2021-12-03 09:43:07','2021-12-03 09:43:07','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br>\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products equalize_box=\"true\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-03 09:43:07','2021-12-03 09:43:07','',99,'http://demoweblinks.in/padmini/?p=479',0,'revision','',0),(480,1,'2021-12-03 09:45:27','2021-12-03 09:45:27','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products equalize_box=\"true\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-03 09:45:27','2021-12-03 09:45:27','',99,'http://demoweblinks.in/padmini/?p=480',0,'revision','',0),(481,1,'2021-12-03 09:49:44','2021-12-03 09:49:44','<!-- wp:html -->\n<p class=\"lead\">Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!</p>\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.\n<blockquote>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</blockquote>\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.\n<!-- /wp:html -->','Welcome to Flatsome','','inherit','closed','closed','','20-revision-v1','','','2021-12-03 09:49:44','2021-12-03 09:49:44','',20,'http://demoweblinks.in/padmini/?p=481',0,'revision','',0),(482,1,'2021-12-03 09:50:32','2021-12-03 09:50:32','<!-- wp:html -->\nLorem ipsum dolor sit amet, consectetur adipiscing elit. In sed vulputate massa. Fusce ante magna, iaculis ut purus ut, facilisis ultrices nibh. Quisque commodo nunc eget tortor dapibus, et tristique magna convallis. Phasellus egestas nunc eu venenatis vehicula. Phasellus et magna nulla. Proin ante nunc, mollis a lectus ac, volutpat placerat ante. Vestibulum sit amet magna sit amet nunc faucibus mollis. Aliquam vel lacinia purus, id tristique ipsum. Quisque vitae nibh ut libero vulputate ornare quis in risus. Nam sodales justo orci, a bibendum risus tincidunt id. Etiam hendrerit, metus in volutpat tempus, neque libero viverra lorem, ac tristique orci augue eu metus. Aenean elementum nisi vitae justo adipiscing gravida sit amet et risus. Suspendisse dapibus elementum quam, vel semper mi tempus ac.\n\n[gallery columns=\"4\" link=\"file\" size=\"large\" ids=\"\"]\n<!-- /wp:html -->','Just another post with A Gallery','','inherit','closed','closed','','21-revision-v1','','','2021-12-03 09:50:32','2021-12-03 09:50:32','',21,'http://demoweblinks.in/padmini/?p=482',0,'revision','',0),(483,1,'2021-12-03 09:51:03','2021-12-03 09:51:03','<!-- wp:html -->\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus\n\nTypi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus\n<!-- /wp:html -->','A Simple Blog Post','','inherit','closed','closed','','22-revision-v1','','','2021-12-03 09:51:03','2021-12-03 09:51:03','',22,'http://demoweblinks.in/padmini/?p=483',0,'revision','',0),(484,1,'2021-12-03 09:51:28','2021-12-03 09:51:28','<!-- wp:html -->\nLorem ipsum dolor sit amet, adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus\n\nTypi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus\n<!-- /wp:html -->','A Simple Blog Post','','inherit','closed','closed','','22-revision-v1','','','2021-12-03 09:51:28','2021-12-03 09:51:28','',22,'http://demoweblinks.in/padmini/?p=484',0,'revision','',0),(485,1,'2021-12-03 09:51:47','2021-12-03 09:51:47','<!-- wp:html -->\nLorem ipsum dolor sit amet, adipiscing elit, sed diam nonummy nibh euismod tincidunt ut  dolore magna aliquam erat volutpat.Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus\n\nTypi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus\n<!-- /wp:html -->','A Simple Blog Post','','inherit','closed','closed','','22-revision-v1','','','2021-12-03 09:51:47','2021-12-03 09:51:47','',22,'http://demoweblinks.in/padmini/?p=485',0,'revision','',0),(486,1,'2021-12-03 09:52:39','2021-12-03 09:52:39','<!-- wp:html -->\nLorem ipsum dolor sit amet, consectetur adipiscing elit. In sed vulputate massa. Fusce ante magna, iaculis ut purus ut, facilisis ultrices nibh. Quisque commodo nunc eget tortor dapibus, et tristique magna convallis. Phasellus egestas nunc eu venenatis vehicula. Phasellus et magna nulla. Proin ante nunc, mollis a lectus ac, volutpat placerat ante. Vestibulum sit amet magna sit amet nunc faucibus mollis. Aliquam vel lacinia purus, id tristique ipsum. Quisque vitae nibh ut libero vulputate ornare quis in risus. Nam sodales justo orci, a bibendum risus tincidunt id. Etiam hendrerit, metus in volutpat tempus, neque libero viverra lorem, ac tristique orci augue eu metus. Aenean elementum nisi vitae justo adipiscing gravida sit amet et risus. Suspendisse dapibus elementum quam, vel semper mi tempus ac.\n\n[gallery columns=\"4\" link=\"file\" size=\"large\" ids=\"\"]\n<!-- /wp:html -->','A Simple Blog Post','','inherit','closed','closed','','22-revision-v1','','','2021-12-03 09:52:39','2021-12-03 09:52:39','',22,'http://demoweblinks.in/padmini/?p=486',0,'revision','',0),(488,1,'2021-12-03 09:55:00','2021-12-03 09:55:00','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:17%;\n			flex-basis:17%!important;\n	}\n		div#nav_menu-2 {\n			max-width:18%;\n			flex-basis:18%!important;\n}\n		div#block_widget-3 {\n			max-width:40%;\n			flex-basis:40%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n    padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-03 09:55:00','2021-12-03 09:55:00','',306,'http://demoweblinks.in/padmini/?p=488',0,'revision','',0),(490,1,'2021-12-03 12:00:09','2021-12-03 12:00:09','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:17%;\n			flex-basis:17%!important;\n	}\n		div#nav_menu-2 {\n			max-width:18%;\n			flex-basis:18%!important;\n}\n		div#block_widget-3 {\n			max-width:40%;\n			flex-basis:40%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n    padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n	@media screen and (max-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n    padding: 0px 25px 0px 25px;\n}\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-03 12:00:09','2021-12-03 12:00:09','',306,'http://demoweblinks.in/padmini/?p=490',0,'revision','',0),(492,1,'2021-12-03 12:00:48','2021-12-03 12:00:48','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:17%;\n			flex-basis:17%!important;\n	}\n		div#nav_menu-2 {\n			max-width:18%;\n			flex-basis:18%!important;\n}\n		div#block_widget-3 {\n			max-width:40%;\n			flex-basis:40%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n    padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n    padding: 0px 25px 0px 25px;\n}\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-03 12:00:48','2021-12-03 12:00:48','',306,'http://demoweblinks.in/padmini/?p=492',0,'revision','',0),(494,1,'2021-12-03 12:01:09','2021-12-03 12:01:09','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:17%;\n			flex-basis:17%!important;\n	}\n		div#nav_menu-2 {\n			max-width:18%;\n			flex-basis:18%!important;\n}\n		div#block_widget-3 {\n			max-width:40%;\n			flex-basis:40%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n    padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n			margin-left:20px;\n    padding: 0px 25px 0px 25px;\n}\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-03 12:01:09','2021-12-03 12:01:09','',306,'http://demoweblinks.in/padmini/?p=494',0,'revision','',0),(497,1,'2021-12-03 12:23:29','2021-12-03 12:23:29','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:17%;\n			flex-basis:17%!important;\n	}\n		div#nav_menu-2 {\n			max-width:18%;\n			flex-basis:18%!important;\n}\n		div#block_widget-3 {\n			max-width:40%;\n			flex-basis:40%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n    padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n			margin-left:20px;\n    padding: 0px 25px 0px 25px;\n}\n}\n\n.swd-button {\n    background: #11c3ff linear-gradient(to bottom, transparent, #009bcf);\n    border: 1px solid white;\n    border-radius: 5px;\n    color: white;\n    display: inline-block;\n    font: bold 12px Arial, Helvetica, sans-serif;\n    padding: 10px 15px;\n    text-decoration: none;\n    text-transform: uppercase;\n}\n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-03 12:23:29','2021-12-03 12:23:29','',306,'http://demoweblinks.in/padmini/?p=497',0,'revision','',0),(499,1,'2021-12-03 12:25:11','2021-12-03 12:25:11','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:17%;\n			flex-basis:17%!important;\n	}\n		div#nav_menu-2 {\n			max-width:18%;\n			flex-basis:18%!important;\n}\n		div#block_widget-3 {\n			max-width:40%;\n			flex-basis:40%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n    padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n			margin-left:20px;\n    padding: 0px 25px 0px 25px;\n}\n}\n\n.swd-button {\n    background: #11c3ff linear-gradient(to bottom, transparent, #009bcf);\n  \n    display: inline-block;\n    font: bold 12px Arial, Helvetica, sans-serif;\n   \n}\n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-03 12:25:11','2021-12-03 12:25:11','',306,'http://demoweblinks.in/padmini/?p=499',0,'revision','',0),(501,1,'2021-12-03 12:25:24','2021-12-03 12:25:24','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:17%;\n			flex-basis:17%!important;\n	}\n		div#nav_menu-2 {\n			max-width:18%;\n			flex-basis:18%!important;\n}\n		div#block_widget-3 {\n			max-width:40%;\n			flex-basis:40%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n    padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n			margin-left:20px;\n    padding: 0px 25px 0px 25px;\n}\n}\n\n.swd-button {\n\n  \n    display: inline-block;\n    font: bold 12px Arial, Helvetica, sans-serif;\n   \n}\n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-03 12:25:24','2021-12-03 12:25:24','',306,'http://demoweblinks.in/padmini/?p=501',0,'revision','',0),(503,1,'2021-12-03 12:29:25','2021-12-03 12:29:25','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:17%;\n			flex-basis:17%!important;\n	}\n		div#nav_menu-2 {\n			max-width:18%;\n			flex-basis:18%!important;\n}\n		div#block_widget-3 {\n			max-width:40%;\n			flex-basis:40%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n    padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n}\n\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n			margin-left:20px;\n    padding: 0px 25px 0px 25px;\n}\n}\n\n.swd-button {\n\n  \n    display: inline-block;\n    font: bold 12px Arial, Helvetica, sans-serif;\n   \n}\n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-03 12:29:25','2021-12-03 12:29:25','',306,'http://demoweblinks.in/padmini/?p=503',0,'revision','',0),(505,1,'2021-12-03 12:30:07','2021-12-03 12:30:07','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:17%;\n			flex-basis:17%!important;\n	}\n		div#nav_menu-2 {\n			max-width:18%;\n			flex-basis:18%!important;\n}\n		div#block_widget-3 {\n			max-width:40%;\n			flex-basis:40%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n    padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n			margin-left:20px;\n    padding: 0px 25px 0px 25px;\n}\n}\n\n.swd-button {\n\n  \n    display: inline-block;\n    font: bold 12px Arial, Helvetica, sans-serif;\n   \n}\n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-03 12:30:07','2021-12-03 12:30:07','',306,'http://demoweblinks.in/padmini/?p=505',0,'revision','',0),(507,1,'2021-12-03 12:30:45','2021-12-03 12:30:45','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:17%;\n			flex-basis:17%!important;\n	}\n		div#nav_menu-2 {\n			max-width:18%;\n			flex-basis:18%!important;\n}\n		div#block_widget-3 {\n			max-width:40%;\n			flex-basis:40%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n    padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n			margin-left:20px;\n    padding: 0px 25px 0px 25px;\n}\n}\n\n.swd-button {\n\n  \n    display: inline-block;\n    font: bold 12px Arial, Helvetica, sans-serif;\n   \n}\n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-03 12:30:45','2021-12-03 12:30:45','',306,'http://demoweblinks.in/padmini/?p=507',0,'revision','',0),(508,1,'2021-12-03 12:55:51','2021-12-03 12:55:51','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br>\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products equalize_box=\"true\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-03 12:55:51','2021-12-03 12:55:51','',99,'http://demoweblinks.in/padmini/?p=508',0,'revision','',0),(509,1,'2021-12-03 13:01:45','2021-12-03 13:01:45','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-03 13:01:45','2021-12-03 13:01:45','',99,'http://demoweblinks.in/padmini/?p=509',0,'revision','',0),(511,1,'2021-12-06 04:11:10','2021-12-06 04:11:10','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br>\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n[button text=\"Check out\" color=\"white\" radius=\"99\" class=\"button-checkout\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-06 04:11:10','2021-12-06 04:11:10','',99,'http://demoweblinks.in/padmini/?p=511',0,'revision','',0),(513,1,'2021-12-06 05:06:39','2021-12-06 05:06:39','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"300px\" bg_overlay=\"rgba(246, 208, 45, 0.94)\" border=\"2px 2px 2px 2px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\"]\n\n[text_box style=\"circle\" width=\"15\" width__sm=\"29\" rotate=\"1\" animate=\"fadeInRight\" position_x=\"95\" position_x__sm=\"95\" position_y=\"5\" position_y__sm=\"5\" border=\"2px 2px 2px 2px\" border_margin=\"5px 5px 5px 5px\" border_style=\"dashed\" border_radius=\"100\" border_color=\"rgba(255, 255, 255, 0.19)\"]\n\n<h3>Up to<br /><span style=\"font-size: 160%;\"><strong>50<span style=\"font-size: 75%;\">%</span><br /></strong></span>off</h3>\n\n[/text_box]\n[text_box width=\"57\" width__sm=\"84\" scale__sm=\"111\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h1 class=\"uppercase\"><span style=\"font-size: 400%;\" data-line-height=\"xs\"><strong>Sale</strong></span></h1>\n<h2 class=\"lead\">Summer Sale has Started</h2>\n[ux_countdown style=\"text\" size=\"114\" color=\"light\"]\n\n[gap height=\"23px\"]\n\n[button text=\"Shop men\" color=\"white\"]\n\n[button text=\"Shop Women\" color=\"white\"]\n\n[button text=\"Shop All\" color=\"white\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n<!-- /wp:flatsome/uxbuilder -->','Shop','','inherit','closed','closed','','8-revision-v1','','','2021-12-06 05:06:39','2021-12-06 05:06:39','',8,'http://demoweblinks.in/padmini/?p=513',0,'revision','',0),(514,1,'2021-12-06 05:10:54','2021-12-06 05:10:54','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"300px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.471)\" border=\"2px 2px 2px 2px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\"]\n\n[text_box width=\"80\" width__sm=\"84\" scale=\"79\" scale__sm=\"111\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\" data-line-height=\"xs\"><strong>Dhoops</strong></span></h1>\n<p class=\"lead\">Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited </p>\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n<!-- /wp:flatsome/uxbuilder -->','Shop','','inherit','closed','closed','','8-revision-v1','','','2021-12-06 05:10:54','2021-12-06 05:10:54','',8,'http://demoweblinks.in/padmini/?p=514',0,'revision','',0),(515,1,'2022-01-03 09:14:34','2021-12-06 05:13:47','','Home','','publish','closed','closed','','home','','','2022-01-03 09:14:34','2022-01-03 09:14:34','',71,'http://demoweblinks.in/padmini/?p=515',1,'nav_menu_item','',0),(516,1,'2022-01-03 09:14:34','2021-12-06 05:14:59','','About','','publish','closed','closed','','about','','','2022-01-03 09:14:34','2022-01-03 09:14:34','',0,'http://demoweblinks.in/padmini/?p=516',2,'nav_menu_item','',0),(517,1,'2022-01-03 09:14:34','2021-12-06 05:15:01','','Agarbatti','','publish','closed','closed','','agarbatti','','','2022-01-03 09:14:34','2022-01-03 09:14:34','',0,'http://demoweblinks.in/padmini/?p=517',3,'nav_menu_item','',0),(519,1,'2022-01-03 09:14:34','2021-12-06 05:15:03','','Dhoops','','publish','closed','closed','','dhoops','','','2022-01-03 09:14:34','2022-01-03 09:14:34','',0,'http://demoweblinks.in/padmini/?p=519',7,'nav_menu_item','',0),(522,1,'2022-01-03 09:14:34','2021-12-06 05:15:43','','Contact','','publish','closed','closed','','contact','','','2022-01-03 09:14:34','2022-01-03 09:14:34','',0,'http://demoweblinks.in/padmini/?p=522',11,'nav_menu_item','',0),(523,1,'2022-01-03 09:14:34','2021-12-06 05:16:43','','Bulk/Custom','','publish','closed','closed','','bulk-custom','','','2022-01-03 09:14:34','2022-01-03 09:14:34','',0,'http://demoweblinks.in/padmini/?p=523',10,'nav_menu_item','',0),(524,1,'2021-12-06 05:22:31','2021-12-06 05:22:31','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"300px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.471)\" border=\"2px 2px 2px 2px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\"]\n\n[text_box width=\"80\" width__sm=\"84\" scale=\"79\" scale__sm=\"111\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\" data-line-height=\"xs\"><strong>Dhoops</strong></span></h1>\n<p class=\"lead\">Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited </p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section]\n\n[ux_products type=\"grid\" grid=\"3\" show_quick_view=\"0\" products=\"-1\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_products_list]\n\n<p>[woocommerce_products]</p>\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Shop','','inherit','closed','closed','','8-revision-v1','','','2021-12-06 05:22:31','2021-12-06 05:22:31','',8,'http://demoweblinks.in/padmini/?p=524',0,'revision','',0),(525,1,'2021-12-06 05:23:02','2021-12-06 05:23:02','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"300px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.471)\" border=\"2px 2px 2px 2px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\"]\n\n[text_box width=\"80\" width__sm=\"84\" scale=\"79\" scale__sm=\"111\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\" data-line-height=\"xs\"><strong>Dhoops</strong></span></h1>\n<p class=\"lead\">Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited </p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_products type=\"grid\" grid=\"3\" show_quick_view=\"0\" products=\"-1\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Shop','','inherit','closed','closed','','8-revision-v1','','','2021-12-06 05:23:02','2021-12-06 05:23:02','',8,'http://demoweblinks.in/padmini/?p=525',0,'revision','',0),(526,1,'2021-12-06 05:26:28','2021-12-06 05:26:28','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"300px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.471)\" border=\"2px 2px 2px 2px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\"]\n\n[text_box width=\"80\" width__sm=\"84\" scale=\"79\" scale__sm=\"111\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\" data-line-height=\"xs\"><strong>Dhoops</strong></span></h1>\n<p class=\"lead\">Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited </p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_products type=\"row\" show_quick_view=\"0\" equalize_box=\"true\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Shop','','inherit','closed','closed','','8-revision-v1','','','2021-12-06 05:26:28','2021-12-06 05:26:28','',8,'http://demoweblinks.in/padmini/?p=526',0,'revision','',0),(527,1,'2021-12-06 05:27:26','2021-12-06 05:27:26','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"300px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.471)\" border=\"2px 2px 2px 2px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\"]\n\n[text_box width=\"80\" width__sm=\"84\" scale=\"79\" scale__sm=\"111\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\" data-line-height=\"xs\"><strong>Dhoops</strong></span></h1>\n<p class=\"lead\">Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited </p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_products type=\"row\" show_quick_view=\"0\" equalize_box=\"true\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[products per_page=\"10\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Shop','','inherit','closed','closed','','8-revision-v1','','','2021-12-06 05:27:26','2021-12-06 05:27:26','',8,'http://demoweblinks.in/padmini/?p=527',0,'revision','',0),(529,1,'2021-12-06 05:48:20','2021-12-06 05:48:20','','Shop','','inherit','closed','closed','','8-revision-v1','','','2021-12-06 05:48:20','2021-12-06 05:48:20','',8,'http://demoweblinks.in/padmini/?p=529',0,'revision','',0),(533,1,'2021-12-06 09:33:17','2021-12-06 09:33:17','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:17%;\n			flex-basis:17%!important;\n	}\n		div#nav_menu-2 {\n			max-width:18%;\n			flex-basis:18%!important;\n}\n		div#block_widget-3 {\n			max-width:40%;\n			flex-basis:40%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n    padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n			margin-left:20px;\n    padding: 0px 25px 0px 25px;\n}\n}\n\n.swd-button {\n    display: inline-block;\n    font: bold 12px Arial, Helvetica, sans-serif;\n   \n}\n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-06 09:33:17','2021-12-06 09:33:17','',306,'https://demoweblinks.in/padmini/?p=533',0,'revision','',0),(539,1,'2021-12-06 09:45:28','2021-12-06 09:45:28','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n    padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n			margin-left:20px;\n    padding: 0px 25px 0px 25px;\n}\n}\n\n.swd-button {\n    display: inline-block;\n    font: bold 12px Arial, Helvetica, sans-serif;\n   \n}\n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-06 09:45:28','2021-12-06 09:45:28','',306,'https://demoweblinks.in/padmini/?p=539',0,'revision','',0),(540,1,'2021-12-06 09:48:40','2021-12-06 09:48:40','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-06 09:48:40','2021-12-06 09:48:40','',99,'https://demoweblinks.in/padmini/?p=540',0,'revision','',0),(547,1,'2021-12-06 12:15:34','2021-12-06 12:15:34','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n    padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n			margin-left:20px;\n    padding: 0px 25px 0px 25px;\n}\n}\n\n.swd-button {\n    display: inline-block;\n    font: bold 12px Arial, Helvetica, sans-serif;\n   \n}\n\n/* SHOP BANNER */\n.banner {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://illusion.scene360.com/wp-content/uploads/2015/01/wes-anderson-12.jpg);\n  background-repeat: no-repeat;\n  background-size: cover;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0 0;\n}\n\n.banner p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n\n \n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-06 12:15:34','2021-12-06 12:15:34','',306,'https://demoweblinks.in/padmini/?p=547',0,'revision','',0),(549,1,'2021-12-06 12:17:30','2021-12-06 12:17:30','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n    padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n			margin-left:20px;\n    padding: 0px 25px 0px 25px;\n}\n}\n\n.swd-button {\n    display: inline-block;\n    font: bold 12px Arial, Helvetica, sans-serif;\n   \n}\n\n/* SHOP BANNER */\n.banner {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0 0;\n}\n\n.banner p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n\n \n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-06 12:17:30','2021-12-06 12:17:30','',306,'https://demoweblinks.in/padmini/?p=549',0,'revision','',0),(551,1,'2021-12-06 12:19:29','2021-12-06 12:19:29','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n    padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n			margin-left:20px;\n    padding: 0px 25px 0px 25px;\n}\n}\n\n.swd-button {\n    display: inline-block;\n    font: bold 12px Arial, Helvetica, sans-serif;\n   \n}\n\n/* SHOP BANNER */\n.banner {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0 0;\n}\n\n.banner p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-06 12:19:29','2021-12-06 12:19:29','',306,'https://demoweblinks.in/padmini/?p=551',0,'revision','',0),(553,1,'2021-12-06 12:20:23','2021-12-06 12:20:23','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n    padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n			margin-left:20px;\n    padding: 0px 25px 0px 25px;\n}\n}\n\n.swd-button {\n    display: inline-block;\n    font: bold 12px Arial, Helvetica, sans-serif;\n   \n}\n\n/* SHOP BANNER */\n.banner {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-06 12:20:23','2021-12-06 12:20:23','',306,'https://demoweblinks.in/padmini/?p=553',0,'revision','',0),(555,1,'2021-12-06 12:23:22','2021-12-06 12:23:22','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n    padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n			margin-left:20px;\n    padding: 0px 25px 0px 25px;\n}\n}\n\n.swd-button {\n    display: inline-block;\n    font: bold 12px Arial, Helvetica, sans-serif;\n   \n}\n\n/* SHOP BANNER */\n.banner {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-06 12:23:22','2021-12-06 12:23:22','',306,'https://demoweblinks.in/padmini/?p=555',0,'revision','',0),(557,1,'2021-12-06 12:41:27','2021-12-06 12:41:27','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n    padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n/* 	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n			margin-left:20px;\n    padding: 0px 25px 0px 25px;\n}\n} */\n\n/* .swd-button {\n    display: inline-block;\n    font: bold 12px Arial, Helvetica, sans-serif;\n   \n} */\n\n/* SHOP BANNER */\n.banner {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-06 12:41:27','2021-12-06 12:41:27','',306,'https://demoweblinks.in/padmini/?p=557',0,'revision','',0),(561,1,'2021-12-06 12:43:41','2021-12-06 12:43:41','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n/*      padding: 0px 50px 0px 50px;  */\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n/* 	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n			margin-left:20px;\n    padding: 0px 25px 0px 25px;\n}\n} */\n\n/* .swd-button {\n    display: inline-block;\n    font: bold 12px Arial, Helvetica, sans-serif;\n   \n} */\n\n/* SHOP BANNER */\n.banner {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-06 12:43:41','2021-12-06 12:43:41','',306,'https://demoweblinks.in/padmini/?p=561',0,'revision','',0),(563,1,'2021-12-06 13:09:42','2021-12-06 13:09:42','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n    padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n			margin-left:20px;\n    padding: 0px 25px 0px 25px;\n}\n}\n\n.swd-button {\n    display: inline-block;\n    font: bold 12px Arial, Helvetica, sans-serif;\n   \n}\n\n/* SHOP BANNER */\n.banner {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-06 13:09:42','2021-12-06 13:09:42','',306,'https://demoweblinks.in/padmini/?p=563',0,'revision','',0),(566,1,'2021-12-06 13:34:41','2021-12-06 13:34:41','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n    padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n			margin-left:20px;\n    padding: 0px 25px 0px 25px;\n}\n}\n\n.swd-button {\n    display: inline-block;\n    font: bold 12px Arial, Helvetica, sans-serif;\n   \n}\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner-list p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-06 13:34:41','2021-12-06 13:34:41','',306,'https://demoweblinks.in/padmini/?p=566',0,'revision','',0),(567,1,'2021-12-07 04:05:46','2021-12-07 04:05:46','[ux_text visibility=\"hidden\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[logo class=\"footer-logo\"]\n\n[follow align=\"left\" facebook=\"#\" instagram=\"#\" linkedin=\"#\"]','Footer - About us','','inherit','closed','closed','','162-revision-v1','','','2021-12-07 04:05:46','2021-12-07 04:05:46','',162,'https://demoweblinks.in/padmini/?p=567',0,'revision','',0),(570,1,'2021-12-07 04:09:45','2021-12-07 04:09:45','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n    padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n			margin-left:20px;\n    padding: 0px 25px 0px 25px;\n}\n}\n\n.swd-button {\n    display: inline-block;\n    font: bold 12px Arial, Helvetica, sans-serif;\n   \n}\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner-list p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-logo .ux-logo-link{\n	padding:0px;\n}\n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 04:09:45','2021-12-07 04:09:45','',306,'https://demoweblinks.in/padmini/?p=570',0,'revision','',0),(571,1,'2021-12-07 04:12:52','2021-12-07 04:12:52','[ux_text visibility=\"hidden\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[logo class=\"footer-logo\"]\n\n[follow align=\"left\" facebook=\"#\" instagram=\"#\" linkedin=\"#\" class=\"footer-social\"]','Footer - About us','','inherit','closed','closed','','162-revision-v1','','','2021-12-07 04:12:52','2021-12-07 04:12:52','',162,'https://demoweblinks.in/padmini/?p=571',0,'revision','',0),(573,1,'2021-12-07 04:15:26','2021-12-07 04:15:26','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n    padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n			margin-left:20px;\n    padding: 0px 25px 0px 25px;\n}\n}\n\n.swd-button {\n    display: inline-block;\n    font: bold 12px Arial, Helvetica, sans-serif;\n   \n}\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner-list p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 04:15:26','2021-12-07 04:15:26','',306,'https://demoweblinks.in/padmini/?p=573',0,'revision','',0),(575,1,'2021-12-07 05:55:24','2021-12-07 05:55:24','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner-list p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 05:55:24','2021-12-07 05:55:24','',306,'https://demoweblinks.in/padmini/?p=575',0,'revision','',0),(577,1,'2021-12-07 06:08:48','2021-12-07 06:08:48','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner-list p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n	@media screen and (min-width: 850px){\n		.custom-title {\n  display: inline-block;\n  \n \n\n}\n.custom-weight {\n  display: inline-block;\n  \n	\n\n}\n\n.custom-price {\n  display: inline-block;\n  \n  \n\n}\n.custom-cartbutton {\n  display: inline-block;\n  \n	\n	\n\n}\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 06:08:48','2021-12-07 06:08:48','',306,'https://demoweblinks.in/padmini/?p=577',0,'revision','',0),(579,1,'2021-12-07 06:10:00','2021-12-07 06:10:00','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner-list p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n	@media screen and (min-width: 850px){\n		.custom-title {\n  display: inline-block;\n}\n.custom-weight {\n  display: inline-block;\n\n}\n.custom-price {\n  display: inline-block;\n \n}\n.custom-cartbutton {\n  display: inline-block;\n\n}\n}\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 06:10:00','2021-12-07 06:10:00','',306,'https://demoweblinks.in/padmini/?p=579',0,'revision','',0),(581,1,'2021-12-07 06:10:43','2021-12-07 06:10:43','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner-list p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n	@media screen and (max-width: 850px){\n		.custom-title {\n  display: inline-block;\n}\n.custom-weight {\n  display: inline-block;\n\n}\n.custom-price {\n  display: inline-block;\n \n}\n.custom-cartbutton {\n  display: inline-block;\n\n}\n}\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 06:10:43','2021-12-07 06:10:43','',306,'https://demoweblinks.in/padmini/?p=581',0,'revision','',0),(583,1,'2021-12-07 06:11:08','2021-12-07 06:11:08','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner-list p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n	@media screen and (min-width: 850px){\n		.custom-title {\n  display: inline-block;\n}\n.custom-weight {\n  display: inline-block;\n\n}\n.custom-price {\n  display: inline-block;\n \n}\n.custom-cartbutton {\n  display: inline-block;\n\n}\n}\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 06:11:08','2021-12-07 06:11:08','',306,'https://demoweblinks.in/padmini/?p=583',0,'revision','',0),(585,1,'2021-12-07 06:12:07','2021-12-07 06:12:07','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner-list p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n	@media screen and (min-width: 850px){\n.custom-title {\n  display: inline-block;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 100%;\n/* 	text-align:end; */\n\n}\n\n.custom-price {\n  display: inline-block;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 06:12:07','2021-12-07 06:12:07','',306,'https://demoweblinks.in/padmini/?p=585',0,'revision','',0),(587,1,'2021-12-07 06:12:33','2021-12-07 06:12:33','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner-list p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n	@media screen and (min-width: 850px){\n.custom-title {\n  display: inline-block;\n/*   text-align:left; */\n  width: 100%!important;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 100%;\n/* 	text-align:end; */\n\n}\n\n.custom-price {\n  display: inline-block;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 100%!important;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 06:12:33','2021-12-07 06:12:33','',306,'https://demoweblinks.in/padmini/?p=587',0,'revision','',0),(589,1,'2021-12-07 06:13:13','2021-12-07 06:13:13','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner-list p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 06:13:13','2021-12-07 06:13:13','',306,'https://demoweblinks.in/padmini/?p=589',0,'revision','',0),(591,1,'2021-12-07 06:13:46','2021-12-07 06:13:46','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		.custom-title {\n  display: inline-block;\n/*   text-align:left; */\n  width: 100%!important;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 100%;\n/* 	text-align:end; */\n\n}\n\n.custom-price {\n  display: inline-block;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 100%!important;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner-list p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 06:13:46','2021-12-07 06:13:46','',306,'https://demoweblinks.in/padmini/?p=591',0,'revision','',0),(593,1,'2021-12-07 06:13:58','2021-12-07 06:13:58','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner-list p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 06:13:58','2021-12-07 06:13:58','',306,'https://demoweblinks.in/padmini/?p=593',0,'revision','',0),(595,1,'2021-12-07 06:16:37','2021-12-07 06:16:37','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner-list p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline-block;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 100%;\n/* 	text-align:end; */\n\n}\n\n.custom-price {\n  display: inline-block;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 06:16:37','2021-12-07 06:16:37','',306,'https://demoweblinks.in/padmini/?p=595',0,'revision','',0),(597,1,'2021-12-07 06:17:38','2021-12-07 06:17:38','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner-list p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 06:17:38','2021-12-07 06:17:38','',306,'https://demoweblinks.in/padmini/?p=597',0,'revision','',0),(599,1,'2021-12-07 06:19:36','2021-12-07 06:19:36','.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner-list p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 06:19:36','2021-12-07 06:19:36','',306,'https://demoweblinks.in/padmini/?p=599',0,'revision','',0),(601,1,'2021-12-07 09:35:24','2021-12-07 09:35:24','','logo (8)','','inherit','open','closed','','logo-8','','','2021-12-07 09:35:24','2021-12-07 09:35:24','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/logo-8.png',0,'attachment','image/png',0),(603,1,'2021-12-07 09:39:20','2021-12-07 09:39:20','','logo (9)','','inherit','open','closed','','logo-9','','','2021-12-07 09:39:20','2021-12-07 09:39:20','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/logo-9.png',0,'attachment','image/png',0),(605,1,'2021-12-07 09:40:26','2021-12-07 09:40:26','http://demoweblinks.in/padmini/wp-content/uploads/2021/12/cropped-logo-9.png','cropped-logo-9.png','','inherit','open','closed','','cropped-logo-9-png','','','2021-12-07 09:40:26','2021-12-07 09:40:26','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/cropped-logo-9.png',0,'attachment','image/png',0),(607,1,'2021-12-07 09:41:37','2021-12-07 09:41:37','#logo img{\n	height:45px;\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner-list p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 09:41:37','2021-12-07 09:41:37','',306,'https://demoweblinks.in/padmini/?p=607',0,'revision','',0),(609,1,'2021-12-07 09:47:55','2021-12-07 09:47:55','#logo img{\n	height:45px;\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner-list p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\nbody{font-family:  \"Custom Font Name\",  sans-serif}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 09:47:55','2021-12-07 09:47:55','',306,'https://demoweblinks.in/padmini/?p=609',0,'revision','',0),(610,1,'2021-12-07 09:48:59','2021-12-07 09:48:59','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"389\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br>\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-07 09:48:59','2021-12-07 09:48:59','',99,'https://demoweblinks.in/padmini/?p=610',0,'revision','',0),(611,1,'2021-12-07 09:49:30','2021-12-07 09:49:30','','ban1 (3)','','inherit','open','closed','','ban1-3','','','2021-12-07 09:49:30','2021-12-07 09:49:30','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/ban1-3.png',0,'attachment','image/png',0),(612,1,'2021-12-07 09:49:51','2021-12-07 09:49:51','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"611\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-07 09:49:51','2021-12-07 09:49:51','',99,'https://demoweblinks.in/padmini/?p=612',0,'revision','',0),(613,1,'2021-12-07 09:51:43','2021-12-07 09:51:43','','banwriting','','inherit','open','closed','','banwriting','','','2021-12-07 09:51:43','2021-12-07 09:51:43','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/banwriting.png',0,'attachment','image/png',0),(614,1,'2021-12-07 09:54:18','2021-12-07 09:54:18','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"611\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-07 09:54:18','2021-12-07 09:54:18','',99,'https://demoweblinks.in/padmini/?p=614',0,'revision','',0),(615,1,'2021-12-07 09:54:52','2021-12-07 09:54:52','','ban1 (4)','','inherit','open','closed','','ban1-4','','','2021-12-07 09:54:52','2021-12-07 09:54:52','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/ban1-4.png',0,'attachment','image/png',0),(616,1,'2021-12-07 09:55:16','2021-12-07 09:55:16','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-07 09:55:16','2021-12-07 09:55:16','',99,'https://demoweblinks.in/padmini/?p=616',0,'revision','',0),(617,1,'2021-12-07 10:00:30','2021-12-07 10:00:30','','logo footer','','inherit','open','closed','','logo-footer','','','2021-12-07 10:00:30','2021-12-07 10:00:30','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/logo-footer.png',0,'attachment','image/png',0),(618,1,'2021-12-07 10:00:54','2021-12-07 10:00:54','[ux_text visibility=\"hidden\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[/ux_text]\n[logo img=\"617\" class=\"footer-logo\"]\n\n[follow align=\"left\" facebook=\"#\" instagram=\"#\" linkedin=\"#\" class=\"footer-social\"]','Footer - About us','','inherit','closed','closed','','162-revision-v1','','','2021-12-07 10:00:54','2021-12-07 10:00:54','',162,'https://demoweblinks.in/padmini/?p=618',0,'revision','',0),(619,1,'2021-12-07 10:02:34','2021-12-07 10:02:34','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"33\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"95\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-07 10:02:34','2021-12-07 10:02:34','',99,'https://demoweblinks.in/padmini/?p=619',0,'revision','',0),(623,1,'2021-12-07 10:06:50','2021-12-07 10:06:50','#logo img{\n	height:45px;\n}\n\n.nav>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner-list p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\nbody{font-family:  \"Custom Font Name\",  sans-serif}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 10:06:50','2021-12-07 10:06:50','',306,'https://demoweblinks.in/padmini/?p=623',0,'revision','',0),(624,1,'2021-12-07 10:07:54','2021-12-07 10:07:54','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"32\" width__sm=\"100\" scale=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-07 10:07:54','2021-12-07 10:07:54','',99,'https://demoweblinks.in/padmini/?p=624',0,'revision','',0),(626,1,'2021-12-07 10:13:45','2021-12-07 10:13:45','#logo img{\n	height:45px;\n}\n\n.nav>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner-list p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 10:13:45','2021-12-07 10:13:45','',306,'https://demoweblinks.in/padmini/?p=626',0,'revision','',0),(627,1,'2021-12-07 10:14:40','2021-12-07 10:14:40','','cont','','inherit','open','closed','','cont','','','2021-12-07 10:14:40','2021-12-07 10:14:40','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/cont.png',0,'attachment','image/png',0),(630,1,'2021-12-07 10:19:04','2021-12-07 10:19:04','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"32\" width__sm=\"100\" scale=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"360\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-07 10:19:04','2021-12-07 10:19:04','',99,'https://demoweblinks.in/padmini/?p=630',0,'revision','',0),(632,1,'2021-12-07 10:24:00','2021-12-07 10:24:00','#logo img{\n	height:45px;\n}\n\n.nav>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:16%;\n			flex-basis:16%!important;\n	}\n		div#nav_menu-2 {\n			max-width:16%;\n			flex-basis:16%!important;\n}\n		div#block_widget-3 {\n			max-width:43%;\n			flex-basis:43%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner-list p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 10:24:00','2021-12-07 10:24:00','',306,'https://demoweblinks.in/padmini/?p=632',0,'revision','',0),(634,1,'2021-12-07 10:26:04','2021-12-07 10:26:04','#logo img{\n	height:45px;\n}\n\n.nav>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner-list p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 10:26:04','2021-12-07 10:26:04','',306,'https://demoweblinks.in/padmini/?p=634',0,'revision','',0),(635,1,'2021-12-07 10:28:04','2021-12-07 10:28:04','','sale','','inherit','open','closed','','sale','','','2021-12-07 10:28:04','2021-12-07 10:28:04','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/sale.png',0,'attachment','image/png',0),(636,1,'2021-12-07 10:29:29','2021-12-07 10:29:29','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"32\" width__sm=\"100\" scale=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-07 10:29:29','2021-12-07 10:29:29','',99,'https://demoweblinks.in/padmini/?p=636',0,'revision','',0),(637,1,'2021-12-07 10:30:36','2021-12-07 10:30:36','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"32\" width__sm=\"100\" scale=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"32\" width__sm=\"100\" scale=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-07 10:30:36','2021-12-07 10:30:36','',99,'https://demoweblinks.in/padmini/?p=637',0,'revision','',0),(638,1,'2021-12-07 10:33:32','2021-12-07 10:33:32','','abv footer','','inherit','open','closed','','abv-footer','','','2021-12-07 10:33:32','2021-12-07 10:33:32','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/abv-footer.png',0,'attachment','image/png',0),(639,1,'2021-12-07 10:35:19','2021-12-07 10:35:19','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"32\" width__sm=\"100\" scale=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"32\" width__sm=\"100\" scale=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-07 10:35:19','2021-12-07 10:35:19','',99,'https://demoweblinks.in/padmini/?p=639',0,'revision','',0),(642,1,'2021-12-07 10:37:39','2021-12-07 10:37:39','#logo img{\n	height:45px;\n}\n\n\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner-list p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 10:37:39','2021-12-07 10:37:39','',306,'https://demoweblinks.in/padmini/?p=642',0,'revision','',0),(644,1,'2021-12-07 10:39:20','2021-12-07 10:39:20','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 6em 0 8em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n}\n\n.banner-list p {\n    color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 2em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 10:39:20','2021-12-07 10:39:20','',306,'https://demoweblinks.in/padmini/?p=644',0,'revision','',0),(646,1,'2021-12-07 10:45:45','2021-12-07 10:45:45','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 1em;\n    font-weight: bold;\n    margin: 1em 0 0 0;\n    line-height: 1em;\n    letter-spacing: 2px;\n  padding: 0 0 2em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 10:45:45','2021-12-07 10:45:45','',306,'https://demoweblinks.in/padmini/?p=646',0,'revision','',0),(648,1,'2021-12-07 10:47:09','2021-12-07 10:47:09','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 3em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.5em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 10:47:09','2021-12-07 10:47:09','',306,'https://demoweblinks.in/padmini/?p=648',0,'revision','',0),(650,1,'2021-12-07 10:48:46','2021-12-07 10:48:46','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 10:48:46','2021-12-07 10:48:46','',306,'https://demoweblinks.in/padmini/?p=650',0,'revision','',0),(652,1,'2021-12-07 10:49:38','2021-12-07 10:49:38','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n  box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5);\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 10:49:38','2021-12-07 10:49:38','',306,'https://demoweblinks.in/padmini/?p=652',0,'revision','',0),(654,1,'2021-12-07 10:51:26','2021-12-07 10:51:26','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.53-PM.jpeg);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 10:51:26','2021-12-07 10:51:26','',306,'https://demoweblinks.in/padmini/?p=654',0,'revision','',0),(655,1,'2021-12-07 10:52:50','2021-12-07 10:52:50','','shop doop','','inherit','open','closed','','shop-doop','','','2021-12-07 10:52:50','2021-12-07 10:52:50','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop.png',0,'attachment','image/png',0),(656,1,'2021-12-07 10:53:13','2021-12-07 10:53:13','','shop doop','','inherit','open','closed','','shop-doop-2','','','2021-12-07 10:53:13','2021-12-07 10:53:13','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png',0,'attachment','image/png',0),(658,1,'2021-12-07 10:53:58','2021-12-07 10:53:58','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 10:53:58','2021-12-07 10:53:58','',306,'https://demoweblinks.in/padmini/?p=658',0,'revision','',0),(662,1,'2021-12-07 11:10:00','2021-12-07 11:10:00','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form{\n	background:#ef8921;\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 11:10:00','2021-12-07 11:10:00','',306,'https://demoweblinks.in/padmini/?p=662',0,'revision','',0),(664,1,'2021-12-07 11:10:32','2021-12-07 11:10:32','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 11:10:32','2021-12-07 11:10:32','',306,'https://demoweblinks.in/padmini/?p=664',0,'revision','',0),(666,1,'2021-12-07 11:11:08','2021-12-07 11:11:08','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 11:11:08','2021-12-07 11:11:08','',306,'https://demoweblinks.in/padmini/?p=666',0,'revision','',0),(673,1,'2021-12-07 11:20:23','2021-12-07 11:20:23','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-07 11:20:23','2021-12-07 11:20:23','',306,'https://demoweblinks.in/padmini/?p=673',0,'revision','',0),(676,1,'2021-12-08 04:05:53','2021-12-08 04:05:53','','Compare','','publish','closed','closed','','compare','','','2021-12-08 04:05:53','2021-12-08 04:05:53','',0,'https://demoweblinks.in/padmini/compare/',0,'page','',0),(679,1,'2021-12-08 06:00:34','2021-12-08 06:00:34','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n.product-small{\n	    padding: 8px;\n     border-radius: 10px; \n    \n-moz-border-radius: 10px;\n    \n    box-shadow: 1px 1px 5px 1px rgb(69 69 69 / 50%);\n   \n    border-collapse: collapse;\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-08 06:00:34','2021-12-08 06:00:34','',306,'https://demoweblinks.in/padmini/?p=679',0,'revision','',0),(681,1,'2021-12-08 06:01:39','2021-12-08 06:01:39','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n.product-small{\n	    padding: 8px;\n     border-top-left-radius: 30px;\n  border-top-right-radius: 5px;\n  border-bottom-left-radius: 5px;\n  border-bottom-right-radius: 30px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 30px;\n    -moz-border-radius-topright: 5px;\n    -moz-border-radius-bottomleft: 5px;\n    -moz-border-radius-bottomright: 30px; \n    \n-moz-border-radius: 10px;\n    \n    box-shadow: 1px 1px 5px 1px rgb(69 69 69 / 50%);\n   \n    border-collapse: collapse;\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-08 06:01:39','2021-12-08 06:01:39','',306,'https://demoweblinks.in/padmini/?p=681',0,'revision','',0),(683,1,'2021-12-08 06:02:04','2021-12-08 06:02:04','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n.product-small{\n	    padding: 8px;\n   border-top-left-radius: 30px;\n  border-top-right-radius: 5px;\n  border-bottom-left-radius: 5px;\n  border-bottom-right-radius: 30px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 30px;\n    -moz-border-radius-topright: 5px;\n    -moz-border-radius-bottomleft: 5px;\n    -moz-border-radius-bottomright: 30px;\n    \n    box-shadow: 1px 1px 5px 1px rgb(69 69 69 / 50%);\n   \n    border-collapse: collapse;\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-08 06:02:04','2021-12-08 06:02:04','',306,'https://demoweblinks.in/padmini/?p=683',0,'revision','',0),(685,1,'2021-12-08 06:02:28','2021-12-08 06:02:28','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 30px;\n  border-top-right-radius: 5px;\n  border-bottom-left-radius: 5px;\n  border-bottom-right-radius: 30px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 30px;\n    -moz-border-radius-topright: 5px;\n    -moz-border-radius-bottomleft: 5px;\n    -moz-border-radius-bottomright: 30px;\n    \n    box-shadow: 1px 1px 5px 1px rgb(69 69 69 / 50%);\n   \n    border-collapse: collapse;\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-08 06:02:28','2021-12-08 06:02:28','',306,'https://demoweblinks.in/padmini/?p=685',0,'revision','',0),(687,1,'2021-12-08 06:03:08','2021-12-08 06:03:08','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    box-shadow: 1px 1px 5px 1px rgb(69 69 69 / 50%);\n   \n    border-collapse: collapse;\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-08 06:03:08','2021-12-08 06:03:08','',306,'https://demoweblinks.in/padmini/?p=687',0,'revision','',0),(690,1,'2021-12-08 06:06:46','2021-12-08 06:06:46','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n.product-small .box{\n	    padding: 8px;\n	border-radius:50px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n/*     box-shadow: 1px 1px 5px 1px rgb(69 69 69 / 50%);\n   \n    border-collapse: collapse; */\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-08 06:06:46','2021-12-08 06:06:46','',306,'https://demoweblinks.in/padmini/?p=690',0,'revision','',0),(692,1,'2021-12-08 06:07:56','2021-12-08 06:07:56','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n/*     box-shadow: 1px 1px 5px 1px rgb(69 69 69 / 50%);\n   \n    border-collapse: collapse; */\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-08 06:07:56','2021-12-08 06:07:56','',306,'https://demoweblinks.in/padmini/?p=692',0,'revision','',0),(695,1,'2021-12-08 06:08:53','2021-12-08 06:08:53','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n     box-shadow: 1px 1px 5px 1px rgb(69 69 69 / 50%);\n   \n    border-collapse: collapse; \n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-08 06:08:53','2021-12-08 06:08:53','',306,'https://demoweblinks.in/padmini/?p=695',0,'revision','',0),(697,1,'2021-12-08 07:52:33','2021-12-08 07:52:33','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-08 07:52:33','2021-12-08 07:52:33','',306,'https://demoweblinks.in/padmini/?p=697',0,'revision','',0),(702,1,'2021-12-09 08:31:53','2021-12-09 08:31:53','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n}\na.compare {\n    display: inline-block;\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 08:31:53','2021-12-09 08:31:53','',306,'https://demoweblinks.in/padmini/?p=702',0,'revision','',0),(704,1,'2021-12-09 08:33:14','2021-12-09 08:33:14','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 08:33:14','2021-12-09 08:33:14','',306,'https://demoweblinks.in/padmini/?p=704',0,'revision','',0),(706,1,'2021-12-09 08:40:47','2021-12-09 08:40:47','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	background: #ebeaea;\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 08:40:47','2021-12-09 08:40:47','',306,'https://demoweblinks.in/padmini/?p=706',0,'revision','',0),(708,1,'2021-12-09 08:41:30','2021-12-09 08:41:30','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 08:41:30','2021-12-09 08:41:30','',306,'https://demoweblinks.in/padmini/?p=708',0,'revision','',0),(710,1,'2021-12-09 08:42:29','2021-12-09 08:42:29','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	color:#d30601;\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 08:42:29','2021-12-09 08:42:29','',306,'https://demoweblinks.in/padmini/?p=710',0,'revision','',0),(712,1,'2021-12-09 08:43:01','2021-12-09 08:43:01','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	color:#ef8921;\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 08:43:01','2021-12-09 08:43:01','',306,'https://demoweblinks.in/padmini/?p=712',0,'revision','',0),(714,1,'2021-12-09 08:43:43','2021-12-09 08:43:43','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	color:#ef8921;\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 08:43:43','2021-12-09 08:43:43','',306,'https://demoweblinks.in/padmini/?p=714',0,'revision','',0),(716,1,'2021-12-09 08:43:47','2021-12-09 08:43:47','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 08:43:47','2021-12-09 08:43:47','',306,'https://demoweblinks.in/padmini/?p=716',0,'revision','',0),(718,1,'2021-12-09 08:44:19','2021-12-09 08:44:19','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 08:44:19','2021-12-09 08:44:19','',306,'https://demoweblinks.in/padmini/?p=718',0,'revision','',0),(720,1,'2021-12-09 09:23:53','2021-12-09 09:23:53','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 09:23:53','2021-12-09 09:23:53','',306,'https://demoweblinks.in/padmini/?p=720',0,'revision','',0),(722,1,'2021-12-09 09:24:01','2021-12-09 09:24:01','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 09:24:01','2021-12-09 09:24:01','',306,'https://demoweblinks.in/padmini/?p=722',0,'revision','',0),(725,1,'2021-12-09 09:44:15','2021-12-09 09:44:15','','Order &ndash; December 9, 2021 @ 09:44 AM','','wc-processing','open','closed','wc_order_47vK0u33ha6OL','order-dec-09-2021-0944-am','','','2021-12-09 09:44:15','2021-12-09 09:44:15','',0,'https://demoweblinks.in/padmini/?post_type=shop_order&#038;p=725',0,'shop_order','',1),(726,1,'2021-12-09 09:45:31','2021-12-09 09:45:31','','Order &ndash; December 9, 2021 @ 09:45 AM','','wc-processing','open','closed','wc_order_yDfZZY1Vz2cZ3','order-dec-09-2021-0945-am','','','2021-12-09 09:45:31','2021-12-09 09:45:31','',0,'https://demoweblinks.in/padmini/?post_type=shop_order&#038;p=726',0,'shop_order','',1),(727,1,'2021-12-09 09:51:10','2021-12-09 09:51:10','','Order &ndash; December 9, 2021 @ 09:51 AM','','wc-processing','open','closed','wc_order_q7z9Q3vcv2sgL','order-dec-09-2021-0951-am','','','2021-12-09 09:51:10','2021-12-09 09:51:10','',0,'https://demoweblinks.in/padmini/?post_type=shop_order&#038;p=727',0,'shop_order','',1),(728,1,'2021-12-09 09:54:17','2021-12-09 09:54:17','','Order &ndash; December 9, 2021 @ 09:54 AM','','wc-processing','open','closed','wc_order_BkCrXp8ulozzz','order-dec-09-2021-0954-am','','','2021-12-09 09:54:17','2021-12-09 09:54:17','',0,'https://demoweblinks.in/padmini/?post_type=shop_order&#038;p=728',0,'shop_order','',1),(731,1,'2021-12-09 12:17:28','2021-12-09 12:17:28','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}\n\n.badge-container{\n	display:none;\n}\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 12:17:28','2021-12-09 12:17:28','',306,'https://demoweblinks.in/padmini/?p=731',0,'revision','',0),(735,1,'2021-12-09 12:27:31','2021-12-09 12:27:31','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 70%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 30%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	top:-10px;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}\n\n.badge-container{\n	display:none;\n}\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 12:27:31','2021-12-09 12:27:31','',306,'https://demoweblinks.in/padmini/?p=735',0,'revision','',0),(737,1,'2021-12-09 12:28:07','2021-12-09 12:28:07','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 70%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 30%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	top:-10px;\n	position:relative;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}\n\n.badge-container{\n	display:none;\n}\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 12:28:07','2021-12-09 12:28:07','',306,'https://demoweblinks.in/padmini/?p=737',0,'revision','',0),(739,1,'2021-12-09 12:29:51','2021-12-09 12:29:51','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}\n\n.badge-container{\n	display:none;\n}\n}','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 12:29:51','2021-12-09 12:29:51','',306,'https://demoweblinks.in/padmini/?p=739',0,'revision','',0),(741,1,'2021-12-09 12:30:11','2021-12-09 12:30:11','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}\n\n.badge-container{\n	display:none;\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 12:30:11','2021-12-09 12:30:11','',306,'https://demoweblinks.in/padmini/?p=741',0,'revision','',0),(743,1,'2021-12-09 12:31:33','2021-12-09 12:31:33','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n\n\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}\n\n.badge-container{\n	display:none;\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 12:31:33','2021-12-09 12:31:33','',306,'https://demoweblinks.in/padmini/?p=743',0,'revision','',0),(745,1,'2021-12-09 12:31:53','2021-12-09 12:31:53','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}\n\n.badge-container{\n	display:none;\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 12:31:53','2021-12-09 12:31:53','',306,'https://demoweblinks.in/padmini/?p=745',0,'revision','',0),(747,1,'2021-12-09 12:32:18','2021-12-09 12:32:18','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}\n\n.badge-container{\n	display:none;\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 12:32:18','2021-12-09 12:32:18','',306,'https://demoweblinks.in/padmini/?p=747',0,'revision','',0),(748,1,'2021-12-09 12:32:49','2021-12-09 12:32:49','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"32\" width__sm=\"100\" scale=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"32\" width__sm=\"100\" scale=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br>\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-09 12:32:49','2021-12-09 12:32:49','',99,'https://demoweblinks.in/padmini/?p=748',0,'revision','',0),(749,1,'2021-12-09 12:33:34','2021-12-09 12:33:34','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"32\" width__sm=\"100\" scale=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"32\" width__sm=\"100\" scale=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products columns=\"3\" show_quick_view=\"0\" equalize_box=\"true\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-09 12:33:34','2021-12-09 12:33:34','',99,'https://demoweblinks.in/padmini/?p=749',0,'revision','',0),(750,1,'2021-12-09 12:34:39','2021-12-09 12:34:39','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"32\" width__sm=\"100\" scale=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"32\" width__sm=\"100\" scale=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-09 12:34:39','2021-12-09 12:34:39','',99,'https://demoweblinks.in/padmini/?p=750',0,'revision','',0),(751,1,'2021-12-09 12:35:04','2021-12-09 12:35:04','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"32\" width__sm=\"100\" scale=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"32\" width__sm=\"100\" scale=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-09 12:35:04','2021-12-09 12:35:04','',99,'https://demoweblinks.in/padmini/?p=751',0,'revision','',0),(753,1,'2021-12-09 12:39:48','2021-12-09 12:39:48','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n\n.front-product .product-small .box{\n	    padding: 0px;\n   border-top-left-radius: 0px;\n  border-top-right-radius: 0px;\n  border-bottom-left-radius: 0px;\n  border-bottom-right-radius: 0px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 0px;\n    -moz-border-radius-topright: 0px;\n    -moz-border-radius-bottomleft: 0px;\n    -moz-border-radius-bottomright: 0px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n\n\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}\n\n.badge-container{\n	display:none;\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 12:39:48','2021-12-09 12:39:48','',306,'https://demoweblinks.in/padmini/?p=753',0,'revision','',0),(755,1,'2021-12-09 12:40:57','2021-12-09 12:40:57','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 70%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 30%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n\n.front-product .product-small .box{\n	    padding: 0px;\n   border-top-left-radius: 0px;\n  border-top-right-radius: 0px;\n  border-bottom-left-radius: 0px;\n  border-bottom-right-radius: 0px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 0px;\n    -moz-border-radius-topright: 0px;\n    -moz-border-radius-bottomleft: 0px;\n    -moz-border-radius-bottomright: 0px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n\n\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}\n\n.badge-container{\n	display:none;\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 12:40:57','2021-12-09 12:40:57','',306,'https://demoweblinks.in/padmini/?p=755',0,'revision','',0),(757,1,'2021-12-09 12:42:00','2021-12-09 12:42:00','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 70%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 30%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n	position: relative;\n  top: 12px;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n\n.front-product .product-small .box{\n	    padding: 0px;\n   border-top-left-radius: 0px;\n  border-top-right-radius: 0px;\n  border-bottom-left-radius: 0px;\n  border-bottom-right-radius: 0px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 0px;\n    -moz-border-radius-topright: 0px;\n    -moz-border-radius-bottomleft: 0px;\n    -moz-border-radius-bottomright: 0px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n\n\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}\n\n.badge-container{\n	display:none;\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 12:42:00','2021-12-09 12:42:00','',306,'https://demoweblinks.in/padmini/?p=757',0,'revision','',0),(759,1,'2021-12-09 12:42:48','2021-12-09 12:42:48','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 70%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 30%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n	position: relative;\n  top: 10px;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n\n.front-product .product-small .box{\n	    padding: 0px;\n   border-top-left-radius: 0px;\n  border-top-right-radius: 0px;\n  border-bottom-left-radius: 0px;\n  border-bottom-right-radius: 0px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 0px;\n    -moz-border-radius-topright: 0px;\n    -moz-border-radius-bottomleft: 0px;\n    -moz-border-radius-bottomright: 0px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n\n\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}\n\n.badge-container{\n	display:none;\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 12:42:48','2021-12-09 12:42:48','',306,'https://demoweblinks.in/padmini/?p=759',0,'revision','',0),(763,1,'2021-12-09 12:44:09','2021-12-09 12:44:09','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 70%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 30%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n	position: relative;\n  top: 10px;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n\n.front-product .product-small .box{\n	    padding: 0px;\n   border-top-left-radius: 0px;\n  border-top-right-radius: 0px;\n  border-bottom-left-radius: 0px;\n  border-bottom-right-radius: 0px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 0px;\n    -moz-border-radius-topright: 0px;\n    -moz-border-radius-bottomleft: 0px;\n    -moz-border-radius-bottomright: 0px;\n    \n \n   \n   \n}\n\n\n\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}\n\n.badge-container{\n	display:none;\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 12:44:09','2021-12-09 12:44:09','',306,'https://demoweblinks.in/padmini/?p=763',0,'revision','',0),(765,1,'2021-12-09 12:44:28','2021-12-09 12:44:28','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 70%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 30%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n	position: relative;\n  top: 10px;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n\n.front-product .product-small .box{\n	    padding: 0px;\n   border-top-left-radius: 0px;\n  border-top-right-radius: 0px;\n  border-bottom-left-radius: 0px;\n  border-bottom-right-radius: 0px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 0px;\n    -moz-border-radius-topright: 0px;\n    -moz-border-radius-bottomleft: 0px;\n    -moz-border-radius-bottomright: 0px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n\n\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}\n\n.badge-container{\n	display:none;\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 12:44:28','2021-12-09 12:44:28','',306,'https://demoweblinks.in/padmini/?p=765',0,'revision','',0),(767,1,'2021-12-09 12:45:32','2021-12-09 12:45:32','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 70%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 30%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n	position: relative;\n  top: 10px;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n\n.front-product .product-small .box{\n	    padding: 0px;\n   border-top-left-radius: 0px;\n  border-top-right-radius: 0px;\n  border-bottom-left-radius: 0px;\n  border-bottom-right-radius: 0px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 0px;\n    -moz-border-radius-topright: 0px;\n    -moz-border-radius-bottomleft: 0px;\n    -moz-border-radius-bottomright: 0px;\n    \n -webkit-box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n -moz-box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n   \n    border-collapse: collapse; \n}\n\n\n\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}\n\n.badge-container{\n	display:none;\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 12:45:32','2021-12-09 12:45:32','',306,'https://demoweblinks.in/padmini/?p=767',0,'revision','',0),(769,1,'2021-12-09 12:48:18','2021-12-09 12:48:18','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 70%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 30%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n	position: relative;\n  top: 10px;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n	margin-top: 15px;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n\n.front-product .product-small .box{\n	    padding: 0px;\n   border-top-left-radius: 0px;\n  border-top-right-radius: 0px;\n  border-bottom-left-radius: 0px;\n  border-bottom-right-radius: 0px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 0px;\n    -moz-border-radius-topright: 0px;\n    -moz-border-radius-bottomleft: 0px;\n    -moz-border-radius-bottomright: 0px;\n    \n -webkit-box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n -moz-box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n   \n    border-collapse: collapse; \n}\n\n\n\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}\n\n.badge-container{\n	display:none;\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 12:48:18','2021-12-09 12:48:18','',306,'https://demoweblinks.in/padmini/?p=769',0,'revision','',0),(771,1,'2021-12-09 12:50:40','2021-12-09 12:50:40','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 70%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 30%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n	position: relative;\n  top: 10px;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n	position: relative;\n    top: 10px;\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n\n.front-product .product-small .box{\n	    padding: 0px;\n   border-top-left-radius: 0px;\n  border-top-right-radius: 0px;\n  border-bottom-left-radius: 0px;\n  border-bottom-right-radius: 0px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 0px;\n    -moz-border-radius-topright: 0px;\n    -moz-border-radius-bottomleft: 0px;\n    -moz-border-radius-bottomright: 0px;\n    \n -webkit-box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n -moz-box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n   \n    border-collapse: collapse; \n}\n\n\n\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}\n\n.badge-container{\n	display:none;\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 12:50:40','2021-12-09 12:50:40','',306,'https://demoweblinks.in/padmini/?p=771',0,'revision','',0),(773,1,'2021-12-09 12:52:36','2021-12-09 12:52:36','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 70%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 30%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n	position: relative;\n  top: 10px;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n	position: relative;\n  top: 0px;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n	\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n\n.front-product .product-small .box{\n	    padding: 0px;\n   border-top-left-radius: 0px;\n  border-top-right-radius: 0px;\n  border-bottom-left-radius: 0px;\n  border-bottom-right-radius: 0px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 0px;\n    -moz-border-radius-topright: 0px;\n    -moz-border-radius-bottomleft: 0px;\n    -moz-border-radius-bottomright: 0px;\n    \n -webkit-box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n -moz-box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n   \n    border-collapse: collapse; \n}\n\n\n\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}\n\n.badge-container{\n	display:none;\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-09 12:52:36','2021-12-09 12:52:36','',306,'https://demoweblinks.in/padmini/?p=773',0,'revision','',0),(775,1,'2021-12-09 12:59:00','2021-12-09 12:59:00','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" height__sm=\"300px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"89\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"32\" width__sm=\"100\" scale=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-09 12:59:00','2021-12-09 12:59:00','',99,'https://demoweblinks.in/padmini/?p=775',0,'revision','',0),(776,1,'2021-12-09 12:59:51','2021-12-09 12:59:51','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" height__sm=\"400px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"89\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"32\" width__sm=\"100\" scale=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-09 12:59:51','2021-12-09 12:59:51','',99,'https://demoweblinks.in/padmini/?p=776',0,'revision','',0),(777,1,'2021-12-09 13:00:11','2021-12-09 13:00:11','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" height__sm=\"600px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"89\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"32\" width__sm=\"100\" scale=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-09 13:00:11','2021-12-09 13:00:11','',99,'https://demoweblinks.in/padmini/?p=777',0,'revision','',0),(778,1,'2021-12-09 13:00:54','2021-12-09 13:00:54','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"89\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"32\" width__sm=\"100\" scale=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"57% 69%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-09 13:00:54','2021-12-09 13:00:54','',99,'https://demoweblinks.in/padmini/?p=778',0,'revision','',0),(779,1,'2021-12-09 13:35:40','2021-12-09 13:35:40','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" height__sm=\"300px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"89\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"32\" width__sm=\"100\" scale=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-09 13:35:40','2021-12-09 13:35:40','',99,'https://demoweblinks.in/padmini/?p=779',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (780,1,'2021-12-09 13:36:50','2021-12-09 13:36:50','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" height__sm=\"300px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"89\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"32\" width__sm=\"100\" scale=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-09 13:36:50','2021-12-09 13:36:50','',99,'https://demoweblinks.in/padmini/?p=780',0,'revision','',0),(781,1,'2021-12-10 03:59:18','2021-12-10 03:59:18','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" height__sm=\"300px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"89\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"32\" width__sm=\"100\" scale=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br>\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-10 03:59:18','2021-12-10 03:59:18','',99,'https://demoweblinks.in/padmini/?p=781',0,'revision','',0),(782,1,'2021-12-10 04:03:24','2021-12-10 04:03:24','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"89\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"32\" width__sm=\"100\" scale=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-10 04:03:24','2021-12-10 04:03:24','',99,'https://demoweblinks.in/padmini/?p=782',0,'revision','',0),(783,1,'2021-12-10 04:04:11','2021-12-10 04:04:11','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\n\n[text_box width=\"32\" width__sm=\"100\" scale=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image id=\"613\" width=\"86\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-10 04:04:11','2021-12-10 04:04:11','',99,'https://demoweblinks.in/padmini/?p=783',0,'revision','',0),(784,1,'2021-12-10 04:04:49','2021-12-10 04:04:49','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-10 04:04:49','2021-12-10 04:04:49','',99,'https://demoweblinks.in/padmini/?p=784',0,'revision','',0),(790,1,'2021-12-10 06:45:34','2021-12-10 06:45:34','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 70%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 30%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n	position: relative;\n  top: 10px;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n	position: relative;\n  top: 0px;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n	\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n\n.front-product .product-small .box{\n	    padding: 0px;\n   border-top-left-radius: 0px;\n  border-top-right-radius: 0px;\n  border-bottom-left-radius: 0px;\n  border-bottom-right-radius: 0px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 0px;\n    -moz-border-radius-topright: 0px;\n    -moz-border-radius-bottomleft: 0px;\n    -moz-border-radius-bottomright: 0px;\n    \n -webkit-box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n -moz-box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n   \n    border-collapse: collapse; \n}\n\n\n\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}\n\n.badge-container{\n	display:none;\n}\n\n	@media screen and (min-width: 483px){\n		.top-header-icon{\n			font-size: 12px!important;}\n		\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-10 06:45:34','2021-12-10 06:45:34','',306,'https://demoweblinks.in/padmini/?p=790',0,'revision','',0),(792,1,'2021-12-10 06:46:11','2021-12-10 06:46:11','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 70%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 30%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n	position: relative;\n  top: 10px;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n	position: relative;\n  top: 0px;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n	\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n\n.front-product .product-small .box{\n	    padding: 0px;\n   border-top-left-radius: 0px;\n  border-top-right-radius: 0px;\n  border-bottom-left-radius: 0px;\n  border-bottom-right-radius: 0px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 0px;\n    -moz-border-radius-topright: 0px;\n    -moz-border-radius-bottomleft: 0px;\n    -moz-border-radius-bottomright: 0px;\n    \n -webkit-box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n -moz-box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n   \n    border-collapse: collapse; \n}\n\n\n\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}\n\n.badge-container{\n	display:none;\n}\n\n	@media screen and (max-width: 483px){\n		.top-header-icon{\n			font-size: 12px!important;}\n		\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-10 06:46:11','2021-12-10 06:46:11','',306,'https://demoweblinks.in/padmini/?p=792',0,'revision','',0),(794,1,'2021-12-10 06:47:19','2021-12-10 06:47:19','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 70%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 30%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n	position: relative;\n  top: 10px;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n	position: relative;\n  top: 0px;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n	\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n\n.front-product .product-small .box{\n	    padding: 0px;\n   border-top-left-radius: 0px;\n  border-top-right-radius: 0px;\n  border-bottom-left-radius: 0px;\n  border-bottom-right-radius: 0px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 0px;\n    -moz-border-radius-topright: 0px;\n    -moz-border-radius-bottomleft: 0px;\n    -moz-border-radius-bottomright: 0px;\n    \n -webkit-box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n -moz-box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n   \n    border-collapse: collapse; \n}\n\n\n\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}\n\n.badge-container{\n	display:none;\n}\n\n	@media screen and (max-width: 483px){\n		.top-header-icon{\n			font-size: 12px!important;}\n		\n}\n\n	@media screen and (max-width: 378px){\n		.top-header-icon{\n			font-size: 10px!important;}\n		\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-10 06:47:19','2021-12-10 06:47:19','',306,'https://demoweblinks.in/padmini/?p=794',0,'revision','',0),(796,1,'2021-12-10 06:47:31','2021-12-10 06:47:31','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:16px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 70%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 30%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n	position: relative;\n  top: 10px;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n	position: relative;\n  top: 0px;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n	\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n\n.front-product .product-small .box{\n	    padding: 0px;\n   border-top-left-radius: 0px;\n  border-top-right-radius: 0px;\n  border-bottom-left-radius: 0px;\n  border-bottom-right-radius: 0px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 0px;\n    -moz-border-radius-topright: 0px;\n    -moz-border-radius-bottomleft: 0px;\n    -moz-border-radius-bottomright: 0px;\n    \n -webkit-box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n -moz-box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n   \n    border-collapse: collapse; \n}\n\n\n\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}\n\n.badge-container{\n	display:none;\n}\n\n	@media screen and (max-width: 483px){\n		.top-header-icon{\n			font-size: 12px!important;}\n		\n}\n\n	@media screen and (max-width: 378px){\n		.top-header-icon{\n			font-size: 9px!important;}\n		\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-10 06:47:31','2021-12-10 06:47:31','',306,'https://demoweblinks.in/padmini/?p=796',0,'revision','',0),(798,1,'2021-12-10 06:50:13','2021-12-10 06:50:13','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:14px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 70%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 30%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n	position: relative;\n  top: 10px;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n	position: relative;\n  top: 0px;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n	\n/* 	text-align:end; */\n/* 	font: bold 10px Arial, Helvetica, sans-serif; */\n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n\n.front-product .product-small .box{\n	    padding: 0px;\n   border-top-left-radius: 0px;\n  border-top-right-radius: 0px;\n  border-bottom-left-radius: 0px;\n  border-bottom-right-radius: 0px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 0px;\n    -moz-border-radius-topright: 0px;\n    -moz-border-radius-bottomleft: 0px;\n    -moz-border-radius-bottomright: 0px;\n    \n -webkit-box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n -moz-box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n   \n    border-collapse: collapse; \n}\n\n\n\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}\n\n.badge-container{\n	display:none;\n}\n\n	@media screen and (max-width: 483px){\n		.top-header-icon{\n			font-size: 12px!important;}\n		\n}\n\n	@media screen and (max-width: 378px){\n		.top-header-icon{\n			font-size: 9px!important;}\n		\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-10 06:50:13','2021-12-10 06:50:13','',306,'https://demoweblinks.in/padmini/?p=798',0,'revision','',0),(805,1,'2021-12-10 07:05:03','2021-12-10 07:05:03','[ux_text font_size=\"0.875\" text_align=\"center\"]\n\n</p>\n<p>Subscibe to Newsletter</p>\n<p>\n[/ux_text]\n[contact-form-7 id=\"15\"]\n\n[gap height=\"50px\"]\n\n<div style=\"display: flex;\n  \"></p>\n<p ><i class=\"icon-phone top-header-icon\" aria-hidden=\"true\"></i> Â   <a class=\"top-header-icon\" href=\"tel:+4733378901\">+91 990000000</a></p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p><i class=\"icon-envelop top-header-icon\" aria-hidden=\"true\"></i>   Â      <a class=\"top-header-icon\" href=\"mailto:contactus@padminiproduct.com\">contactus@padminiproduct.com</a></p>\n</div>','Footer - Newsletter Signup','','inherit','closed','closed','','161-revision-v1','','','2021-12-10 07:05:03','2021-12-10 07:05:03','',161,'https://demoweblinks.in/padmini/?p=805',0,'revision','',0),(806,1,'2021-12-10 07:05:48','2021-12-10 07:05:48','[ux_text font_size=\"0.875\"]\n\n</p>\n<p>Subscibe to Newsletter</p>\n<p>\n[/ux_text]\n[contact-form-7 id=\"15\"]\n\n[gap height=\"50px\"]\n\n[ux_text font_size=\"0.875\"]\n\n<div style=\"display: flex;\n  \"></p>\n<p ><i class=\"icon-phone top-header-icon\" aria-hidden=\"true\"></i> Â   <a class=\"top-header-icon\" href=\"tel:+4733378901\">+91 990000000</a></p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p><i class=\"icon-envelop top-header-icon\" aria-hidden=\"true\"></i>   Â      <a class=\"top-header-icon\" href=\"mailto:contactus@padminiproduct.com\">contactus@padminiproduct.com</a></p>\n</div>\n[/ux_text]','Footer - Newsletter Signup','','inherit','closed','closed','','161-revision-v1','','','2021-12-10 07:05:48','2021-12-10 07:05:48','',161,'https://demoweblinks.in/padmini/?p=806',0,'revision','',0),(821,1,'2021-12-10 07:58:53','2021-12-10 07:58:53','[text* Name class:form-control placeholder \"Enter Customer Name\"]\r\n[email* Email class:form-control placeholder \"Enter Email address\"]\r\n[number* number class:form-control placeholder \"Enter Mobile Number\"]\r\n[textarea address class:form-control placeholder \"Address\"]\r\n[select* Type class:form-control \" Select Category to Purchase \"  \"Charms\" \"Dhoops\" \"Fragrance Fabulos \" \"Floral Collection\" \"Pure Jasmine\" \"Divine Collections\" \"Ultimo Colections \" \"others\"]\r\n[text* Total class:form-control placeholder \"Enter total Qantity\"] \r\n[text* Location class:form-control placeholder \"Enter Place\"]\r\n[text* Gst class:form-control placeholder \"Enter Gst Number\"]\r\n[textarea note class:form-control placeholder \"Your Comments\"]\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n[submit class:button-primary \"Submit\"]\n1\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@demoweblinks.in>\n[_site_admin_email]\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [your-email]\n\n\n\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@demoweblinks.in>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [_site_admin_email]\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','bulk order','','publish','closed','closed','','bulk-order','','','2021-12-10 09:51:50','2021-12-10 09:51:50','',0,'https://demoweblinks.in/padmini/?post_type=wpcf7_contact_form&#038;p=821',0,'wpcf7_contact_form','',0),(822,1,'2021-12-10 08:00:19','2021-12-10 08:00:19','<!-- wp:flatsome/uxbuilder -->\n[ux_banner height=\"300px\" bg=\"615\" bg_size=\"original\" bg_pos=\"53% 38%\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"uppercase\"><strong>Bulk/custom</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n\n[/text_box]\n\n[/ux_banner]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>\n[contact-form-7 id=\"821\"]\n\n</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Bulk/Custom','','publish','closed','closed','','bulk-custom','','','2021-12-10 09:56:33','2021-12-10 09:56:33','',0,'https://demoweblinks.in/padmini/?page_id=822',0,'page','',0),(823,1,'2021-12-10 08:00:19','2021-12-10 08:00:19','<!-- wp:html /-->','Bulk/Custom','','inherit','closed','closed','','822-revision-v1','','','2021-12-10 08:00:19','2021-12-10 08:00:19','',822,'https://demoweblinks.in/padmini/?p=823',0,'revision','',0),(824,1,'2021-12-10 08:01:38','2021-12-10 08:01:38','<!-- wp:flatsome/uxbuilder -->\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>[contact-form-7 id=\"821\" title=\"bulk order\"]</p>\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Bulk/Custom','','inherit','closed','closed','','822-revision-v1','','','2021-12-10 08:01:38','2021-12-10 08:01:38','',822,'https://demoweblinks.in/padmini/?p=824',0,'revision','',0),(826,1,'2021-12-10 09:36:43','2021-12-10 09:36:43','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"49% 47%\" dark=\"true\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-10 09:36:43','2021-12-10 09:36:43','',99,'https://demoweblinks.in/padmini/?p=826',0,'revision','',0),(827,1,'2021-12-10 09:38:26','2021-12-10 09:38:26','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"49% 47%\" dark=\"true\" padding__sm=\"0px\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-10 09:38:26','2021-12-10 09:38:26','',99,'https://demoweblinks.in/padmini/?p=827',0,'revision','',0),(828,1,'2021-12-10 09:40:37','2021-12-10 09:40:37','<!-- wp:html -->\n[ux_banner height=\"507px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.49)\" parallax=\"3\"]\n\n[text_box position_y=\"80\"]\n\n<h1 class=\"lead\">About Us</h1>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead text-center\"><strong>Lorem ipsum</strong> dolor sit amet, consectetur adipiscing elit. Morbi fermentum justo vitae convallis varius. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis.</p>\n[divider align=\"center\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"17\" name=\"Troy Gray\" title=\"CEO / Founder\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"17\" name=\"Richy Lace\" title=\"Marketing Director\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"17\" name=\"Jane Gray\" title=\"Public Relations\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"17\" name=\"July Wood\" title=\"Customer Support\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n<!-- /wp:html -->','About','','inherit','closed','closed','','91-revision-v1','','','2021-12-10 09:40:37','2021-12-10 09:40:37','',91,'https://demoweblinks.in/padmini/?p=828',0,'revision','',0),(829,1,'2021-12-10 09:42:47','2021-12-10 09:42:47','<!-- wp:flatsome/uxbuilder -->\n[ux_banner height=\"507px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.49)\"]\n\n[text_box width=\"95\" scale=\"80\" position_x=\"50\" position_y=\"80\"]\n\n<h1 class=\"lead\">About Padmini</h1>\n<p class=\"lead\">Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_text font_size=\"0.8\"]\n\n<p class=\"lead text-center\"><strong> Padmini</strong>  Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited ..</p>\n\n[/ux_text]\n[divider align=\"center\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"17\" name=\"Troy Gray\" title=\"CEO / Founder\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"17\" name=\"Richy Lace\" title=\"Marketing Director\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"17\" name=\"Jane Gray\" title=\"Public Relations\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"17\" name=\"July Wood\" title=\"Customer Support\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n<!-- /wp:flatsome/uxbuilder -->','About','','inherit','closed','closed','','91-revision-v1','','','2021-12-10 09:42:47','2021-12-10 09:42:47','',91,'https://demoweblinks.in/padmini/?p=829',0,'revision','',0),(830,1,'2021-12-10 09:45:08','2021-12-10 09:45:08','<!-- wp:flatsome/uxbuilder -->\n[ux_banner height=\"300px\" bg=\"615\" bg_size=\"original\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>\n[contact-form-7 id=\"821\"]\n\n</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Bulk/Custom','','inherit','closed','closed','','822-revision-v1','','','2021-12-10 09:45:08','2021-12-10 09:45:08','',822,'https://demoweblinks.in/padmini/?p=830',0,'revision','',0),(831,1,'2021-12-10 09:45:57','2021-12-10 09:45:57','<!-- wp:flatsome/uxbuilder -->\n[ux_banner height=\"300px\" bg=\"615\" bg_size=\"original\" bg_pos=\"53% 38%\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>\n[contact-form-7 id=\"821\"]\n\n</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Bulk/Custom','','inherit','closed','closed','','822-revision-v1','','','2021-12-10 09:45:57','2021-12-10 09:45:57','',822,'https://demoweblinks.in/padmini/?p=831',0,'revision','',0),(832,1,'2021-12-10 09:47:18','2021-12-10 09:47:18','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br>\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"49% 47%\" dark=\"true\" padding__sm=\"0px\" height=\"300px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-10 09:47:18','2021-12-10 09:47:18','',99,'https://demoweblinks.in/padmini/?p=832',0,'revision','',0),(833,1,'2021-12-10 09:53:42','2021-12-10 09:53:42','<!-- wp:html -->\n[ux_banner height=\"100%\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" bg_pos=\"49% 43%\" parallax=\"4\" link=\"Portfolio\"]\n\n[text_box width=\"59\" width__sm=\"100\" scale__sm=\"131\" animate=\"fadeInUp\" parallax=\"-3\" text_depth=\"1\"]\n\n<h1 class=\"uppercase\"><strong>WE\'re a creative Agency</strong></h1>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner_grid spacing=\"collapse\" height=\"885\" width=\"full-width\"]\n\n[col_grid span=\"6\" height=\"2-3\"]\n\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.2)\" bg_pos=\"53% 69%\" hover=\"zoom\" link=\"Portfolio\"]\n\n[text_box width=\"37\" animate=\"fadeInRight\" position_x=\"10\" position_y=\"80\" text_align=\"left\"]\n\n[video_button size=\"130\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p class=\"lead\">A Website for Acme Company</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" height=\"1-2\"]\n\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.19)\" bg_pos=\"53% 69%\" hover=\"zoom\" link=\"Portfolio\"]\n\n[text_box width=\"30\" animate=\"fadeInLeft\" position_x=\"90\" text_align=\"right\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p class=\"lead\">A Website for Acme Company</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"3\" height=\"1-2\"]\n\n[ux_banner height=\"500px\" bg=\"18\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.21)\" hover=\"zoom\" link=\"Portfolio\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p class=\"lead\">A Website for Acme Company</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"3\" height=\"1-2\"]\n\n[ux_banner height=\"500px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.47)\" bg_pos=\"34% 46%\" hover=\"zoom\" link=\"Portfolio\"]\n\n[text_box hover=\"fade-out\" position_y=\"95\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p class=\"lead\">A Website for Acme Company</p>\n\n[/text_box]\n[text_box hover=\"zoom-in\"]\n\n[video_button size=\"178\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" height=\"1-3\"]\n\n[ux_banner height=\"500px\" bg=\"18\" hover=\"zoom\"]\n\n[text_box text_color=\"dark\" width=\"39\" position_x=\"10\" position_y=\"70\" text_align=\"left\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p class=\"lead\">A Website for Acme Company</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[row]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[button text=\"Browse Portfolio\" style=\"outline\" size=\"larger\" radius=\"99\" icon=\"icon-angle-right\" icon_reveal=\"true\" link=\"Portfolio\"]\n\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Our Clients\"]\n\n[row col_style=\"dashed\" v_align=\"middle\"]\n\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo hover=\"color\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo hover=\"color\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo hover=\"color\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo hover=\"color\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo hover=\"color\"]\n\n\n[/col]\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\n\n[logo hover=\"color\"]\n\n\n[/col]\n\n[/row]\n[gap]\n\n[section label=\"Media Right\" bg_color=\"rgb(207, 207, 207)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" h_align=\"center\"]\n\n[col span=\"9\" span__sm=\"12\" align=\"center\"]\n\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\">Contact Us</span></h2>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n[accordion auto_open=\"true\"]\n\n[accordion-item title=\"How long does it takes to we get back to you\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/accordion-item]\n[accordion-item]\n\n\n[/accordion-item]\n[accordion-item title=\"Add anything here\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/accordion-item]\n[accordion-item title=\"Research\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/accordion-item]\n\n[/accordion]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n(insert contact form here)\n\n\n[/col]\n\n[/row]\n\n[/section]\n[title style=\"center\" text=\"LAtest NEws\" margin_top=\"22px\" size=\"undefined\"]\n\n[blog_posts style=\"push\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"3\" badge_style=\"circle\" image_height=\"180px\"]\n<!-- /wp:html -->','Agency','','inherit','closed','closed','','68-revision-v1','','','2021-12-10 09:53:42','2021-12-10 09:53:42','',68,'https://demoweblinks.in/padmini/?p=833',0,'revision','',0),(834,1,'2021-12-10 09:56:33','2021-12-10 09:56:33','<!-- wp:flatsome/uxbuilder -->\n[ux_banner height=\"300px\" bg=\"615\" bg_size=\"original\" bg_pos=\"53% 38%\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"uppercase\"><strong>Bulk/custom</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n\n[/text_box]\n\n[/ux_banner]\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>\n[contact-form-7 id=\"821\"]\n\n</p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Bulk/Custom','','inherit','closed','closed','','822-revision-v1','','','2021-12-10 09:56:33','2021-12-10 09:56:33','',822,'https://demoweblinks.in/padmini/?p=834',0,'revision','',0),(835,1,'2021-12-10 10:00:21','2021-12-10 10:00:21','','Products','','publish','closed','closed','','products','','','2021-12-10 10:00:21','2021-12-10 10:00:21','',0,'https://demoweblinks.in/padmini/?p=835',3,'nav_menu_item','',0),(836,1,'2021-12-10 10:00:21','2021-12-10 10:00:21','','Home','','publish','closed','closed','','home-2','','','2021-12-10 10:00:21','2021-12-10 10:00:21','',71,'https://demoweblinks.in/padmini/?p=836',1,'nav_menu_item','',0),(837,1,'2021-12-10 10:00:21','2021-12-10 10:00:21','','News & Media','','publish','closed','closed','','news-media','','','2021-12-10 10:00:21','2021-12-10 10:00:21','',0,'https://demoweblinks.in/padmini/?p=837',5,'nav_menu_item','',0),(838,1,'2021-12-10 10:02:10','2021-12-10 10:02:10','','Terms & Conditions','','publish','closed','closed','','terms-conditions','','','2021-12-10 10:02:10','2021-12-10 10:02:10','',0,'https://demoweblinks.in/padmini/?p=838',1,'nav_menu_item','',0),(839,1,'2021-12-10 10:02:10','2021-12-10 10:02:10','','Return Policy','','publish','closed','closed','','return-policy','','','2021-12-10 10:02:10','2021-12-10 10:02:10','',0,'https://demoweblinks.in/padmini/?p=839',2,'nav_menu_item','',0),(840,1,'2021-12-10 10:02:10','2021-12-10 10:02:10','','Shipping Policy','','publish','closed','closed','','shipping-policy','','','2021-12-10 10:02:10','2021-12-10 10:02:10','',0,'https://demoweblinks.in/padmini/?p=840',3,'nav_menu_item','',0),(841,1,'2021-12-10 10:02:10','2021-12-10 10:02:10','','Faqs','','publish','closed','closed','','faqs','','','2021-12-10 10:02:10','2021-12-10 10:02:10','',0,'https://demoweblinks.in/padmini/?p=841',4,'nav_menu_item','',0),(842,1,'2021-12-10 10:02:10','2021-12-10 10:02:10',' ','','','publish','closed','closed','','842','','','2021-12-10 10:02:10','2021-12-10 10:02:10','',52,'https://demoweblinks.in/padmini/?p=842',5,'nav_menu_item','',0),(843,1,'2021-12-10 13:07:39','2021-12-10 13:07:39','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"49% 47%\" dark=\"true\" padding__sm=\"0px\" height=\"300px\" height__sm=\"140px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-10 13:07:39','2021-12-10 13:07:39','',99,'https://demoweblinks.in/padmini/?p=843',0,'revision','',0),(844,1,'2021-12-10 13:11:30','2021-12-10 13:11:30','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:14px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 70%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 30%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n	position: relative;\n  top: 10px;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n	position: relative;\n  top: 0px;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n	\n/* 	text-align:end; */\n 	font: bold 9px Arial, Helvetica, sans-serif; \n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n\n.front-product .product-small .box{\n	    padding: 0px;\n   border-top-left-radius: 0px;\n  border-top-right-radius: 0px;\n  border-bottom-left-radius: 0px;\n  border-bottom-right-radius: 0px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 0px;\n    -moz-border-radius-topright: 0px;\n    -moz-border-radius-bottomleft: 0px;\n    -moz-border-radius-bottomright: 0px;\n    \n -webkit-box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n -moz-box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n   \n    border-collapse: collapse; \n}\n\n\n\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}\n\n.badge-container{\n	display:none;\n}\n\n	@media screen and (max-width: 483px){\n		.top-header-icon{\n			font-size: 12px!important;}\n		\n}\n\n	@media screen and (max-width: 378px){\n		.top-header-icon{\n			font-size: 9px!important;}\n		\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-10 13:11:30','2021-12-10 13:11:30','',306,'https://demoweblinks.in/padmini/?p=844',0,'revision','',0),(846,1,'2021-12-10 13:12:12','2021-12-10 13:12:12','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:14px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 70%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 30%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n	position: relative;\n  top: 10px;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n	position: relative;\n  top: 0px;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n	\n/* 	text-align:end; */\n 	font: bold 7px Arial, Helvetica, sans-serif; \n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n\n.front-product .product-small .box{\n	    padding: 0px;\n   border-top-left-radius: 0px;\n  border-top-right-radius: 0px;\n  border-bottom-left-radius: 0px;\n  border-bottom-right-radius: 0px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 0px;\n    -moz-border-radius-topright: 0px;\n    -moz-border-radius-bottomleft: 0px;\n    -moz-border-radius-bottomright: 0px;\n    \n -webkit-box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n -moz-box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n   \n    border-collapse: collapse; \n}\n\n\n\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}\n\n.badge-container{\n	display:none;\n}\n\n	@media screen and (max-width: 483px){\n		.top-header-icon{\n			font-size: 12px!important;}\n		\n}\n\n	@media screen and (max-width: 378px){\n		.top-header-icon{\n			font-size: 9px!important;}\n		\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-10 13:12:12','2021-12-10 13:12:12','',306,'https://demoweblinks.in/padmini/?p=846',0,'revision','',0),(848,1,'2021-12-10 13:14:42','2021-12-10 13:14:42','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:14px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n\n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 70%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 30%;\n	text-align:end;\n\n}\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n	position: relative;\n  top: 10px;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n 	text-align:justify;\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n	position: relative;\n  top: 0px;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n	\n/* 	text-align:end; */\n 	font: bold 10px Arial, Helvetica, sans-serif; \n\n}\n}\n\n@media screen and (max-width: 850px) {\n	.custom-cartbutton {\n  display: inline;\n  width: 100%;\n	\n/* 	text-align:end; */\n 	font: bold 7px Arial, Helvetica, sans-serif; \n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n\n.front-product .product-small .box{\n	    padding: 0px;\n   border-top-left-radius: 0px;\n  border-top-right-radius: 0px;\n  border-bottom-left-radius: 0px;\n  border-bottom-right-radius: 0px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 0px;\n    -moz-border-radius-topright: 0px;\n    -moz-border-radius-bottomleft: 0px;\n    -moz-border-radius-bottomright: 0px;\n    \n -webkit-box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n -moz-box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n   \n    border-collapse: collapse; \n}\n\n\n\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}\n\n.badge-container{\n	display:none;\n}\n\n	@media screen and (max-width: 483px){\n		.top-header-icon{\n			font-size: 12px!important;}\n		\n}\n\n	@media screen and (max-width: 378px){\n		.top-header-icon{\n			font-size: 9px!important;}\n		\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-10 13:14:42','2021-12-10 13:14:42','',306,'https://demoweblinks.in/padmini/?p=848',0,'revision','',0),(850,1,'2021-12-16 09:26:43','2021-12-16 09:26:43','','Brindavan','Padmini Brindavan sandal incense sticks are Organic sticks that are hand made from Pure Natural Sandals . NO Chemicals, petrochemicals, charcoal, dyes, alcohol, pesticides or cheap llers and Hand Rolled. Each Incense stick is carefully hand-rolled with special care by our expertise . Brindavan can be used as natural air puriers, and also can be used as Aromatherapy, Medication, Home Fragrance and Meditation. It acts like a better mosquito repellant as well.\r\n<table>\r\n<tbody>\r\n\r\n\r\n<tr>\r\n<td>Expiry</td>\r\n<td>(Shelf Life)18 months from date of manufacturing</td>\r\n</tr>\r\n<tr>\r\n<td>Non-Toxic</td>\r\n<td>NO Chemicals, petrochemicals, charcoal, Pesticides</td>\r\n</tr>\r\n<tr>\r\n<td>Fragrances</td>\r\n<td>Sandal</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n','publish','open','closed','','brindavan','','','2022-01-03 06:33:24','2022-01-03 06:33:24','',0,'https://demoweblinks.in/padmini/?post_type=product&#038;p=850',0,'product','',0),(851,1,'2021-12-16 09:30:23','2021-12-16 09:30:23','','WhatsApp Image 2021-12-07 at 5.16.28 PM','','inherit','open','closed','','whatsapp-image-2021-12-07-at-5-16-28-pm','','','2021-12-16 09:30:23','2021-12-16 09:30:23','',850,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-12-07-at-5.16.28-PM.jpeg',0,'attachment','image/jpeg',0),(852,1,'2021-12-16 09:34:51','2021-12-16 09:34:51','','Spiritual Guide','An Iconic Fragrance from Padmini with a touch of Musk and Sandalwood with a refreshing Floral Fragrance which takes you to a haven of harmony and bliss.\r\n<table>\r\n<tbody>\r\n\r\n\r\n<tr>\r\n<td>Expiry</td>\r\n<td>(Shelf Life)18 months from date of manufacturing</td>\r\n</tr>\r\n<tr>\r\n<td>Non-Toxic</td>\r\n<td>NO Chemicals, petrochemicals, charcoal, Pesticides</td>\r\n</tr>\r\n<tr>\r\n<td>Fragrances</td>\r\n<td>Woody, Sandal, Musky, Floral</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n','publish','open','closed','','spiritual-guide','','','2022-01-03 06:38:31','2022-01-03 06:38:31','',0,'https://demoweblinks.in/padmini/?post_type=product&#038;p=852',0,'product','',0),(853,1,'2021-12-16 09:34:39','2021-12-16 09:34:39','','WhatsApp Image 2021-12-07 at 5.16.49 PM','','inherit','open','closed','','whatsapp-image-2021-12-07-at-5-16-49-pm','','','2021-12-16 09:34:39','2021-12-16 09:34:39','',852,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-12-07-at-5.16.49-PM.jpeg',0,'attachment','image/jpeg',0),(855,1,'2021-12-16 09:38:22','2021-12-16 09:38:22','','Gold Statue','An Iconic Fragrance from Padmini with a touch of Herbal, Floral and woody . Its soft scent of Herbs relaxes the mind and calms you down. A sumptuous woody fragrance that eases tensed muscles and calms down the mind. It is a natural air purier that also uplifts the mood and helps in relieving stress.\r\n<table>\r\n<tbody>\r\n\r\n\r\n<tr>\r\n<td>Expiry</td>\r\n<td>(Shelf Life)18 months from date of manufacturing</td>\r\n</tr>\r\n<tr>\r\n<td>Non-Toxic</td>\r\n<td>NO Chemicals, petrochemicals, charcoal, Pesticides</td>\r\n</tr>\r\n<tr>\r\n<td>Fragrances</td>\r\n<td>Herbal, Floral, Woody</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n','publish','open','closed','','gold-statue','','','2022-01-03 06:49:56','2022-01-03 06:49:56','',0,'https://demoweblinks.in/padmini/?post_type=product&#038;p=855',0,'product','',0),(856,1,'2021-12-16 09:39:07','2021-12-16 09:39:07','','Gold Statue - 100 Sticks','Weight: 100 Sticks','publish','closed','closed','','gold-statue','','','2022-01-01 01:17:12','2022-01-01 01:17:12','',855,'https://demoweblinks.in/padmini/?post_type=product_variation&#038;p=856',2,'product_variation','',0),(860,1,'2021-12-16 09:46:57','2021-12-16 09:46:57','','Chandan','Padmini Chandan incense sticks are Organic Sandal sticks that are made from Pure Natural Sandals. Its natural aroma is Ideal for creating a calming atmosphere at home, oce, perfect for Pooja, Hawan, Puja, Therapy, Meditation, Gifting & Yoga.\r\n<table>\r\n<tbody>\r\n\r\n\r\n<tr>\r\n<td>Expiry</td>\r\n<td>(Shelf Life)18 months from date of manufacturing</td>\r\n</tr>\r\n<tr>\r\n<td>Non-Toxic</td>\r\n<td>NO Chemicals, petrochemicals, charcoal, Pesticides</td>\r\n</tr>\r\n<tr>\r\n<td>Fragrances</td>\r\n<td>Sandal Wood</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n','publish','open','closed','','chandan','','','2022-01-03 06:54:55','2022-01-03 06:54:55','',0,'https://demoweblinks.in/padmini/?post_type=product&#038;p=860',0,'product','',0),(861,1,'2021-12-16 09:47:26','2021-12-16 09:47:26','','Chandan - 100 gm','Weight: 100 gm','publish','closed','closed','','chandan-100gm','','','2022-01-01 01:24:01','2022-01-01 01:24:01','',860,'https://demoweblinks.in/padmini/?post_type=product_variation&#038;p=861',9,'product_variation','',0),(862,1,'2021-12-16 09:47:26','2021-12-16 09:47:26','','Chandan - 125 gm','Weight: 125 gm','publish','closed','closed','','chandan-200-gm','','','2022-01-01 01:24:01','2022-01-01 01:24:01','',860,'https://demoweblinks.in/padmini/?post_type=product_variation&#038;p=862',10,'product_variation','',0),(863,1,'2021-12-16 09:47:26','2021-12-16 09:47:26','','Chandan - 13 gm Flat','Weight: 13 gm Flat','publish','closed','closed','','chandan-25gm','','','2022-01-01 01:24:01','2022-01-01 01:24:01','',860,'https://demoweblinks.in/padmini/?post_type=product_variation&#038;p=863',11,'product_variation','',0),(864,1,'2021-12-16 09:47:26','2021-12-16 09:47:26','','Chandan - 240 gm','Weight: 240 gm','publish','closed','closed','','chandan-500gm','','','2022-01-01 01:24:01','2022-01-01 01:24:01','',860,'https://demoweblinks.in/padmini/?post_type=product_variation&#038;p=864',12,'product_variation','',0),(866,1,'2021-12-16 09:57:28','2021-12-16 09:57:28','','Padmini Incense','Padmini Incense Spicy, amber and Musk Fragrance when used helps in self awakening & encourages pure thoughts in our mind. It can be used for performing puja, hom-Havan or can used as\r\nhome fragrance.\r\n\r\n<table>\r\n<tbody>\r\n\r\n\r\n<tr>\r\n<td>Expiry</td>\r\n<td>(Shelf Life)18 months from date of manufacturing</td>\r\n</tr>\r\n<tr>\r\n<td>Non-Toxic</td>\r\n<td>NO Chemicals, petrochemicals, charcoal, Pesticides</td>\r\n</tr>\r\n<tr>\r\n<td>Fragrances</td>\r\n<td>Spicy, Amber, Musk</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n','publish','open','closed','','padmini-incense','','','2022-01-03 06:58:44','2022-01-03 06:58:44','',0,'https://demoweblinks.in/padmini/?post_type=product&#038;p=866',0,'product','',0),(868,1,'2021-12-16 09:56:33','2021-12-16 09:56:33','','Padmini Incense - 8 Sticks Flat','Weight: 8 Sticks Flat','publish','closed','closed','','padmini-incense-100gm','','','2022-01-01 01:30:45','2022-01-01 01:30:45','',866,'https://demoweblinks.in/padmini/?post_type=product_variation&#038;p=868',6,'product_variation','',0),(869,1,'2021-12-16 09:56:33','2021-12-16 09:56:33','','Padmini Incense - 10 Sticks 50 POU','Weight: 10 Sticks 50 POU','publish','closed','closed','','padmini-incense-200-gm','','','2022-01-01 01:31:42','2022-01-01 01:31:42','',866,'https://demoweblinks.in/padmini/?post_type=product_variation&#038;p=869',7,'product_variation','',0),(870,1,'2021-12-16 09:56:33','2021-12-16 09:56:33','','Padmini Incense - 50 Sticks','Weight: 50 Sticks','publish','closed','closed','','padmini-incense-25gm','','','2022-01-01 01:31:42','2022-01-01 01:31:42','',866,'https://demoweblinks.in/padmini/?post_type=product_variation&#038;p=870',8,'product_variation','',0),(872,1,'2021-12-16 10:00:05','2021-12-16 10:00:05','','Lyrics','An Iconic Fragrance from Padmini with a touch of Fresh and woody . Its soft scent relaxes the mind and calms you down. A sumptuous woody fragrance that eases tensed muscles and calms down the mind. It is a natural air purier that also uplifts the mood and helps in relieving stress.\r\n<table>\r\n<tbody>\r\n\r\n\r\n<tr>\r\n<td>Expiry</td>\r\n<td>(Shelf Life)18 months from date of manufacturing</td>\r\n</tr>\r\n<tr>\r\n<td>Non-Toxic</td>\r\n<td>NO Chemicals, petrochemicals, charcoal, Pesticides</td>\r\n</tr>\r\n<tr>\r\n<td>Fragrances</td>\r\n<td>Fresh, Woody</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n','publish','open','closed','','lyrics','','','2022-01-03 07:01:59','2022-01-03 07:01:59','',0,'https://demoweblinks.in/padmini/?post_type=product&#038;p=872',0,'product','',0),(873,1,'2021-12-16 09:58:47','2021-12-16 09:58:47','','Lyrics - 100 gm','Weight: 100 gm','publish','closed','closed','','lyrics-100gm','','','2022-01-01 02:31:56','2022-01-01 02:31:56','',872,'https://demoweblinks.in/padmini/?post_type=product_variation&#038;p=873',6,'product_variation','',0),(874,1,'2021-12-16 09:58:47','2021-12-16 09:58:47','','Lyrics - 13 gm Flat','Weight: 13 gm Flat','publish','closed','closed','','lyrics-200-gm','','','2022-01-01 02:31:56','2022-01-01 02:31:56','',872,'https://demoweblinks.in/padmini/?post_type=product_variation&#038;p=874',7,'product_variation','',0),(875,1,'2021-12-16 09:58:47','2021-12-16 09:58:47','','Lyrics - 35 gm','Weight: 35 gm','publish','closed','closed','','lyrics-25gm','','','2022-01-01 02:31:56','2022-01-01 02:31:56','',872,'https://demoweblinks.in/padmini/?post_type=product_variation&#038;p=875',8,'product_variation','',0),(877,1,'2021-12-16 09:59:34','2021-12-16 09:59:34','','WhatsApp Image 2021-12-07 at 5.17.23 PM','','inherit','open','closed','','whatsapp-image-2021-12-07-at-5-17-23-pm','','','2021-12-16 09:59:34','2021-12-16 09:59:34','',872,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-12-07-at-5.17.23-PM.jpeg',0,'attachment','image/jpeg',0),(878,1,'2021-12-16 10:03:07','2021-12-16 10:03:07','','My Favourite','Padmini Brindavan sandal incense sticks are Organic sticks that are hand made from Pure Natural Sandals . NO Chemicals, petrochemicals, charcoal, dyes, alcohol, pesticides or cheap llers and Hand Rolled. Each Incense stick is carefully hand-rolled with special care by our expertise . Brindavan can be used as natural air puriers, and also can be used as Aromatherapy, Medication, Home Fragrance and Meditation. It acts like a better mosquito repellant as well.\r\n<table>\r\n<tbody>\r\n\r\n\r\n<tr>\r\n<td>Expiry</td>\r\n<td>(Shelf Life)18 months from date of manufacturing</td>\r\n</tr>\r\n<tr>\r\n<td>Non-Toxic</td>\r\n<td>NO Chemicals, petrochemicals, charcoal, Pesticides</td>\r\n</tr>\r\n<tr>\r\n<td>Fragrances</td>\r\n<td>Floral, Musky</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n','publish','open','closed','','my-favourite','','','2022-01-03 07:03:33','2022-01-03 07:03:33','',0,'https://demoweblinks.in/padmini/?post_type=product&#038;p=878',0,'product','',0),(879,1,'2021-12-16 10:01:41','2021-12-16 10:01:41','','My Favourite - 100 gm','Weight: 100 gm','publish','closed','closed','','my-favourite-100gm','','','2022-01-01 02:34:48','2022-01-01 02:34:48','',878,'https://demoweblinks.in/padmini/?post_type=product_variation&#038;p=879',2,'product_variation','',0),(883,1,'2021-12-16 10:02:59','2021-12-16 10:02:59','','WhatsApp Image 2021-12-07 at 5.17.27 PM','','inherit','open','closed','','whatsapp-image-2021-12-07-at-5-17-27-pm','','','2021-12-16 10:02:59','2021-12-16 10:02:59','',878,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-12-07-at-5.17.27-PM.jpeg',0,'attachment','image/jpeg',0),(884,1,'2021-12-16 10:06:06','2021-12-16 10:06:06','','Assam Oudh','Assam OUDH Agarbatti Long Lasting & Environment Friendly: Each stick burns over 60 mins, providing right aroma for Meditation, Yoga, Spiritual Healing, Prayers, Ritual, Nirvana, Aromatherapy Energy Cleansing, Relaxation, Yoga, Reiki or Meditation practice. A blissful gift for everyone. Re-divines you with a feeling of Positivity, well-being, inner peace\r\n<table>\r\n<tbody>\r\n\r\n\r\n<tr>\r\n<td>Expiry</td>\r\n<td>(Shelf Life)18 months from date of manufacturing</td>\r\n</tr>\r\n<tr>\r\n<td>Non-Toxic</td>\r\n<td>NO Chemicals, petrochemicals, charcoal, Pesticides</td>\r\n</tr>\r\n<tr>\r\n<td>Fragrances</td>\r\n<td>Fresh, Woody</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n','publish','open','closed','','assam-oudh','','','2022-01-03 07:04:57','2022-01-03 07:04:57','',0,'https://demoweblinks.in/padmini/?post_type=product&#038;p=884',0,'product','',0),(885,1,'2021-12-16 10:04:56','2021-12-16 10:04:56','','WhatsApp Image 2021-12-07 at 5.17.19 PM','','inherit','open','closed','','whatsapp-image-2021-12-07-at-5-17-19-pm','','','2021-12-16 10:04:56','2021-12-16 10:04:56','',884,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-12-07-at-5.17.19-PM.jpeg',0,'attachment','image/jpeg',0),(886,1,'2021-12-16 10:05:25','2021-12-16 10:05:25','','Assam Oudh - 50 Sticks','Weight: 50 Sticks','publish','closed','closed','','assam-oudh-100gm','','','2022-01-01 02:47:42','2022-01-01 02:47:42','',884,'https://demoweblinks.in/padmini/?post_type=product_variation&#038;p=886',2,'product_variation','',0),(891,1,'2021-12-16 10:07:11','2021-12-16 10:07:11','','WhatsApp Image 2021-12-07 at 5.17.24 PM','','inherit','open','closed','','whatsapp-image-2021-12-07-at-5-17-24-pm','','','2021-12-16 10:07:11','2021-12-16 10:07:11','',884,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-12-07-at-5.17.24-PM.jpeg',0,'attachment','image/jpeg',0),(892,1,'2021-12-16 10:09:24','2021-12-16 10:09:24','','Sugandh','An Iconic Fragrance from Padmini with a touch of Fresh and woody . Its soft scent relaxes the mind and calms you down. A sumptuous woody fragrance that eases tensed muscles and calms down the mind. It is a natural air purier that also uplifts the mood and helps in relieving stress.\r\n<table>\r\n<tbody>\r\n\r\n\r\n<tr>\r\n<td>Expiry</td>\r\n<td>(Shelf Life)18 months from date of manufacturing</td>\r\n</tr>\r\n<tr>\r\n<td>Non-Toxic</td>\r\n<td>NO Chemicals, petrochemicals, charcoal, Pesticides</td>\r\n</tr>\r\n<tr>\r\n<td>Fragrances</td>\r\n<td>Fresh, Woody</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n','publish','open','closed','','sugandh','','','2022-01-03 07:12:23','2022-01-03 07:12:23','',0,'https://demoweblinks.in/padmini/?post_type=product&#038;p=892',0,'product','',0),(893,1,'2021-12-16 10:08:49','2021-12-16 10:08:49','','Sugandh - 100 gm','Weight: 100 gm','publish','closed','closed','','sugandh-100gm','','','2022-01-01 02:43:27','2022-01-01 02:43:27','',892,'https://demoweblinks.in/padmini/?post_type=product_variation&#038;p=893',9,'product_variation','',0),(894,1,'2021-12-16 10:08:49','2021-12-16 10:08:49','','Sugandh - 100 gm Flat','Weight: 100 gm Flat','publish','closed','closed','','sugandh-200-gm','','','2022-01-01 02:43:27','2022-01-01 02:43:27','',892,'https://demoweblinks.in/padmini/?post_type=product_variation&#038;p=894',10,'product_variation','',0),(895,1,'2021-12-16 10:08:49','2021-12-16 10:08:49','','Sugandh - 125 gm','Weight: 125 gm','publish','closed','closed','','sugandh-25gm','','','2022-01-01 02:43:27','2022-01-01 02:43:27','',892,'https://demoweblinks.in/padmini/?post_type=product_variation&#038;p=895',11,'product_variation','',0),(896,1,'2021-12-16 10:08:49','2021-12-16 10:08:49','','Sugandh - 13 gm Flat','Weight: 13 gm Flat','publish','closed','closed','','sugandh-500gm','','','2022-01-01 02:43:27','2022-01-01 02:43:27','',892,'https://demoweblinks.in/padmini/?post_type=product_variation&#038;p=896',12,'product_variation','',0),(898,1,'2021-12-16 10:12:00','2021-12-16 10:12:00','#logo img{\n	height:45px;\n}\n\n.header-nav-main>li>a:hover{\n	color:#d30601!important\n}\n\n.top-header-icon{\n	font-size:14px!important;\n	vertical-align:baseline!important;\n}\n\n.home-button{\n	margin-top: 25px;\n   top: 50%;\n  left: 50%;\n  -ms-transform: translate(-50%, -50%);\n  transform: translate(-50%, -50%);\n}\n\n.section-title-center span{\ntext-transform:capitalize!important;\n}\n\n\n	@media screen and (min-width: 850px){\n		div#nav_menu-3 {\n			max-width:15%;\n			flex-basis:15%!important;\n	}\n		div#nav_menu-2 {\n			max-width:15%;\n			flex-basis:15%!important;\n}\n		div#block_widget-3 {\n			max-width:45%;\n			flex-basis:45%!important;\n}\n}\n\n.absolute-footer.dark{\n	display:none;\n}\n\n.button-newsletter{\n	background:#ef8921!important;\n}\n\n.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n   // padding: 0px 50px 0px 50px;\n}\n\n\n.slider-nav-push.slider-nav-reveal .flickity-prev-next-button svg{\n	background:#ef8921;\n}\n\n.flickity-prev-next-button{\n	padding:25px;\n	color:white;\n}\n.flickity-prev-next-button:hover{\n	\n	color:white;\n}\n	@media screen and (min-width: 850px){\n		.button{\n	background-color: #ef8921;\n	border-radius: 99px;\n		//	margin-left:20px;\n    //padding: 0px 25px 0px 25px;\n}\n		\n		\n		\n		\n		\n}\n\n\n\n/* SHOP BANNER */\n.banner-list {\n    padding: 2em 0 2em 0;\n    text-align: center;\n  width: 100%;\n  background-image: url(http://demoweblinks.in/padmini/wp-content/uploads/2021/12/shop-doop-1.png);\n  background-repeat: no-repeat;\n  background-size: cover;\n	background-position: center;\n/*   box-shadow: inset 0 0 0 2000px rgba(239,137,33,0.5); */\n}\n\n\n.banner-list h2 {\n    margin: 0;\n    font-size: 4em;\n    color: #FFFFFF;\n    text-align: center;\n    font-weight: 300;\n    text-transform: uppercase;\n    letter-spacing: 0.1em;\n    padding: 0.5em 0 0.5em 0;\n	font-family: \"Poppins\", sans-serif;\n\n\n}\n\n.banner-list p {\n	font-family: \"Poppins\", sans-serif;\n color: #FFFFFF;\n    font-size: 14px;\n/*     font-weight: bold; */\n    margin: 1em 0 0 0;\n    line-height: 1.5em;\n/*     letter-spacing: 2px; */\n  padding: 0 0 1em 0;\n}\n.banner-list p {\n    width: 70%;\n    margin: 0 auto;\n}\n \n.footer-social {\n	margin:15px;\n}\n\n\n\n\n\n/* \n.custom-title {\n  display: inline-block;\n  text-align:left;\n  width: 70%;\n\n}\n.custom-weight {\n  display: inline-block;\n  width: 30%;\n	text-align:end;\n\n} */\n\n.custom-price {\n  display: inline-block;\n  text-align:left;\n  width: 50%;\n	position: relative;\n  top: 10px;\n\n}\n.custom-cartbutton {\n  display: inline-block;\n  width: 50%;\n	text-align:end;\n	\n	font: bold 10px Arial, Helvetica, sans-serif;\n\n}\n\n\n@media screen and (max-width: 850px) {\n  \n.custom-title {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n\n}\n.custom-weight {\n  display: inline;\n  width: 100%;\n/*  	text-align:justify; */\n\n}\n\n.custom-price {\n  display: inline;\n/*   text-align:left; */\n  width: 100%;\n	position: relative;\n  top: 0px;\n\n}\n.custom-cartbutton {\n  display: inline;\n  width: 100%;\n	\n/* 	text-align:end; */\n 	font: bold 10px Arial, Helvetica, sans-serif; \n\n}\n}\n\n@media screen and (max-width: 850px) {\n	.custom-cartbutton {\n  display: inline;\n  width: 100%;\n	\n/* 	text-align:end; */\n 	font: bold 7px Arial, Helvetica, sans-serif; \n\n}\n}\n.white{\n	color:#ef8921!important;\n}\n.is-form ,input[type=button].is-form{\n	background:#ef8921!important;\n	color:#fff;\n}\n\n.product-title{\n	color:#d30601;\n}\n\n\n.front-product .product-small .box{\n	    padding: 0px;\n   border-top-left-radius: 0px;\n  border-top-right-radius: 0px;\n  border-bottom-left-radius: 0px;\n  border-bottom-right-radius: 0px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 0px;\n    -moz-border-radius-topright: 0px;\n    -moz-border-radius-bottomleft: 0px;\n    -moz-border-radius-bottomright: 0px;\n    \n -webkit-box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n -moz-box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n box-shadow: rgb(0 0 0 / 0%) 0 0 0px;\n   \n    border-collapse: collapse; \n}\n\n\n\n\n.product-small .box{\n	    padding: 8px;\n   border-top-left-radius: 10px;\n  border-top-right-radius: 10px;\n  border-bottom-left-radius: 10px;\n  border-bottom-right-radius: 10px;\n    /* for Mozila version less than 3.6  */\n    -moz-border-radius-topleft: 10px;\n    -moz-border-radius-topright: 10px;\n    -moz-border-radius-bottomleft: 10px;\n    -moz-border-radius-bottomright: 10px;\n    \n    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;\n -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n box-shadow: rgba(0,0,0,0.8) 0 0 10px;\n   \n    border-collapse: collapse; \n}\n\n/*  whistlist and compare style*/\n.yith-wcwl-add-to-wishlist{\n	display:inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	\n	background: #ebeaea;\n}\na.compare {\n    display: inline-block;\n	padding:10px;\n	margin-bottom: 10px;\n	background: #ebeaea;\n	color: #ef8921;\n}\n\n.yith-wcwl-add-to-wishlist a span{\n	color:#ef8921;\n}\n/*  end*/\n.button i{\n	top:0px;\n}\n\n.badge-container{\n	display:none;\n}\n\n	@media screen and (max-width: 483px){\n		.top-header-icon{\n			font-size: 12px!important;}\n		\n}\n\n	@media screen and (max-width: 378px){\n		.top-header-icon{\n			font-size: 9px!important;}\n		\n}\n','padmini','','inherit','closed','closed','','306-revision-v1','','','2021-12-16 10:12:00','2021-12-16 10:12:00','',306,'https://demoweblinks.in/padmini/?p=898',0,'revision','',0),(901,1,'2021-12-16 10:18:13','2021-12-16 10:18:13','','Brindavan - 100 gm','Weight: 100 gm','publish','closed','closed','','brindavan-100gm','','','2021-12-31 13:22:27','2021-12-31 13:22:27','',850,'https://demoweblinks.in/padmini/?post_type=product_variation&#038;p=901',9,'product_variation','',0),(902,1,'2021-12-16 10:18:13','2021-12-16 10:18:13','','Brindavan - 240 gm','Weight: 240 gm','publish','closed','closed','','brindavan-200-gm','','','2021-12-31 13:22:27','2021-12-31 13:22:27','',850,'https://demoweblinks.in/padmini/?post_type=product_variation&#038;p=902',10,'product_variation','',0),(903,1,'2021-12-16 10:18:14','2021-12-16 10:18:14','','Brindavan - 35 gm','Weight: 35 gm','publish','closed','closed','','brindavan-25gm','','','2021-12-31 13:22:27','2021-12-31 13:22:27','',850,'https://demoweblinks.in/padmini/?post_type=product_variation&#038;p=903',8,'product_variation','',0),(904,1,'2021-12-16 10:18:14','2021-12-16 10:18:14','','Brindavan - 13 gm Flat','Weight: 13 gm Flat','publish','closed','closed','','brindavan-500gm','','','2021-12-31 13:22:27','2021-12-31 13:22:27','',850,'https://demoweblinks.in/padmini/?post_type=product_variation&#038;p=904',7,'product_variation','',0),(905,1,'2021-12-16 10:19:51','2021-12-16 10:19:51','','Spiritual Guide - 8 Sticks Flat','Weight: 8 Sticks Flat','publish','closed','closed','','spiritual-guide-100gm','','','2022-01-01 01:11:28','2022-01-01 01:11:28','',852,'https://demoweblinks.in/padmini/?post_type=product_variation&#038;p=905',3,'product_variation','',0),(907,1,'2021-12-16 10:19:51','2021-12-16 10:19:51','','Spiritual Guide - 50 Sticks','Weight: 50 Sticks','publish','closed','closed','','spiritual-guide-25gm','','','2022-01-01 01:11:48','2022-01-01 01:11:48','',852,'https://demoweblinks.in/padmini/?post_type=product_variation&#038;p=907',4,'product_variation','',0),(909,1,'2022-01-03 09:14:34','2021-12-16 10:29:27','','Charms','','publish','closed','closed','','charms','','','2022-01-03 09:14:34','2022-01-03 09:14:34','',0,'https://demoweblinks.in/padmini/?p=909',4,'nav_menu_item','',0),(910,1,'2022-01-03 09:14:34','2021-12-16 10:29:27','','Fragrance','','publish','closed','closed','','fragrance','','','2022-01-03 09:14:34','2022-01-03 09:14:34','',0,'https://demoweblinks.in/padmini/?p=910',5,'nav_menu_item','',0),(911,1,'2021-12-16 10:31:32','2021-12-16 10:31:32','','WhatsApp Image 2021-11-29 at 5.10.59 PM','','inherit','open','closed','','whatsapp-image-2021-11-29-at-5-10-59-pm','','','2021-12-16 10:31:32','2021-12-16 10:31:32','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.59-PM.jpeg',0,'attachment','image/jpeg',0),(912,1,'2021-12-16 10:32:21','2021-12-16 10:32:21','','WhatsApp Image 2021-11-29 at 5.10.54 PM (1)','','inherit','open','closed','','whatsapp-image-2021-11-29-at-5-10-54-pm-1','','','2021-12-16 10:32:21','2021-12-16 10:32:21','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.54-PM-1.jpeg',0,'attachment','image/jpeg',0),(913,1,'2021-12-16 10:38:07','0000-00-00 00:00:00','','Dhoops','','draft','closed','closed','','','','','2021-12-16 10:38:07','0000-00-00 00:00:00','',0,'https://demoweblinks.in/padmini/?p=913',1,'nav_menu_item','',0),(914,1,'2022-01-03 09:14:34','2021-12-16 10:39:10','','Floral','','publish','closed','closed','','floral','','','2022-01-03 09:14:34','2022-01-03 09:14:34','',0,'https://demoweblinks.in/padmini/?p=914',6,'nav_menu_item','',0),(915,1,'2022-01-03 09:14:34','2021-12-16 10:39:10','','Divine','','publish','closed','closed','','divine','','','2022-01-03 09:14:34','2022-01-03 09:14:34','',0,'https://demoweblinks.in/padmini/?p=915',8,'nav_menu_item','',0),(916,1,'2022-01-03 09:14:34','2021-12-16 10:39:10','','Ultimo','','publish','closed','closed','','ultimo','','','2022-01-03 09:14:34','2022-01-03 09:14:34','',0,'https://demoweblinks.in/padmini/?p=916',9,'nav_menu_item','',0),(917,1,'2021-12-16 10:41:33','2021-12-16 10:41:33','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br>\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"49% 47%\" dark=\"true\" padding__sm=\"0px\" height=\"300px\" height__sm=\"140px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-16 10:41:33','2021-12-16 10:41:33','',99,'https://demoweblinks.in/padmini/?p=917',0,'revision','',0),(918,1,'2021-12-16 10:46:27','2021-12-16 10:46:27','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\" visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_product_categories style=\"normal\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"49% 47%\" dark=\"true\" padding__sm=\"0px\" height=\"300px\" height__sm=\"140px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-16 10:46:27','2021-12-16 10:46:27','',99,'https://demoweblinks.in/padmini/?p=918',0,'revision','',0),(919,1,'2021-12-16 12:00:32','2021-12-16 12:00:32','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br>\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\" visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_product_categories style=\"normal\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"49% 47%\" dark=\"true\" padding__sm=\"0px\" height=\"300px\" height__sm=\"140px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-16 12:00:32','2021-12-16 12:00:32','',99,'https://demoweblinks.in/padmini/?p=919',0,'revision','',0),(920,1,'2021-12-16 12:01:41','2021-12-16 12:01:41','','agarbatti','','inherit','open','closed','','agarbatti-2','','','2021-12-16 12:01:41','2021-12-16 12:01:41','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/agarbatti.gif',0,'attachment','image/gif',0),(921,1,'2021-12-16 12:02:06','2021-12-16 12:02:06','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"920\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\" visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_product_categories style=\"normal\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"49% 47%\" dark=\"true\" padding__sm=\"0px\" height=\"300px\" height__sm=\"140px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-16 12:02:06','2021-12-16 12:02:06','',99,'https://demoweblinks.in/padmini/?p=921',0,'revision','',0),(922,1,'2021-12-16 12:06:04','2021-12-16 12:06:04','','Rotating_earth_(large)','','inherit','open','closed','','rotating_earth_large','','','2021-12-16 12:06:04','2021-12-16 12:06:04','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/Rotating_earth_large.gif',0,'attachment','image/gif',0),(923,1,'2021-12-16 12:06:18','2021-12-16 12:06:18','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"922\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\" visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_product_categories style=\"normal\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"49% 47%\" dark=\"true\" padding__sm=\"0px\" height=\"300px\" height__sm=\"140px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-16 12:06:18','2021-12-16 12:06:18','',99,'https://demoweblinks.in/padmini/?p=923',0,'revision','',0),(924,1,'2021-12-16 12:07:47','2021-12-16 12:07:47','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"49% 47%\" dark=\"true\" padding__sm=\"0px\" height=\"300px\" height__sm=\"140px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-16 12:07:47','2021-12-16 12:07:47','',99,'https://demoweblinks.in/padmini/?p=924',0,'revision','',0),(925,1,'2021-12-16 12:08:25','2021-12-16 12:08:25','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"100%\" height__sm=\"500px\" bg=\"615\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"49% 47%\" dark=\"true\" padding__sm=\"0px\" height=\"300px\" height__sm=\"140px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-16 12:08:25','2021-12-16 12:08:25','',99,'https://demoweblinks.in/padmini/?p=925',0,'revision','',0),(926,1,'2021-12-16 12:09:35','2021-12-16 12:09:35','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"100%\" height__sm=\"500px\" bg=\"920\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"49% 47%\" dark=\"true\" padding__sm=\"0px\" height=\"300px\" height__sm=\"140px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-16 12:09:35','2021-12-16 12:09:35','',99,'https://demoweblinks.in/padmini/?p=926',0,'revision','',0),(927,1,'2021-12-16 12:10:13','2021-12-16 12:10:13','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"100%\" height__sm=\"500px\" bg=\"920\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"100%\" height__sm=\"500px\" bg=\"920\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\" visibility=\"hidden\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"49% 47%\" dark=\"true\" padding__sm=\"0px\" height=\"300px\" height__sm=\"140px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-16 12:10:13','2021-12-16 12:10:13','',99,'https://demoweblinks.in/padmini/?p=927',0,'revision','',0),(928,1,'2021-12-16 12:12:50','2021-12-16 12:12:50','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"100%\" height__sm=\"100%\" bg=\"920\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"54% 84%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"100%\" height__sm=\"500px\" bg=\"920\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\" visibility=\"hidden\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"49% 47%\" dark=\"true\" padding__sm=\"0px\" height=\"300px\" height__sm=\"140px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-16 12:12:50','2021-12-16 12:12:50','',99,'https://demoweblinks.in/padmini/?p=928',0,'revision','',0),(929,1,'2021-12-16 12:13:46','2021-12-16 12:13:46','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"100%\" height__sm=\"100%\" bg=\"920\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"54% 84%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"100%\" height__sm=\"500px\" bg=\"920\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"16% 50%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\" visibility=\"hidden\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"49% 47%\" dark=\"true\" padding__sm=\"0px\" height=\"300px\" height__sm=\"140px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-16 12:13:46','2021-12-16 12:13:46','',99,'https://demoweblinks.in/padmini/?p=929',0,'revision','',0),(930,1,'2021-12-16 12:17:14','2021-12-16 12:17:14','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"100%\" height__sm=\"100%\" bg=\"920\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"54% 84%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"100%\" height__sm=\"500px\" bg=\"920\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"16% 50%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\" visibility=\"hidden\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\"]\n\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"49% 47%\" dark=\"true\" padding__sm=\"0px\" height=\"300px\" height__sm=\"140px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_product_categories style=\"normal\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-16 12:17:14','2021-12-16 12:17:14','',99,'https://demoweblinks.in/padmini/?p=930',0,'revision','',0),(931,1,'2021-12-16 12:17:39','2021-12-16 12:17:39','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"100%\" height__sm=\"100%\" bg=\"920\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"54% 84%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"100%\" height__sm=\"500px\" bg=\"920\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"16% 50%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\" visibility=\"hidden\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\" visibility=\"hidden\"]\n\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_product_categories style=\"normal\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"49% 47%\" dark=\"true\" padding__sm=\"0px\" height=\"300px\" height__sm=\"140px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-16 12:17:39','2021-12-16 12:17:39','',99,'https://demoweblinks.in/padmini/?p=931',0,'revision','',0),(933,1,'2021-12-16 12:19:45','2021-12-16 12:19:45','','BRINDAVAN 100 grams','','inherit','open','closed','','brindavan-100-grams','','','2021-12-16 12:19:45','2021-12-16 12:19:45','',850,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/BRINDAVAN-100-grams.jpg',0,'attachment','image/jpeg',0),(934,1,'2021-12-16 12:20:43','2021-12-16 12:20:43','','BRINDAVAN 100 grams','','inherit','open','closed','','brindavan-100-grams-2','','','2021-12-16 12:20:43','2021-12-16 12:20:43','',850,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/BRINDAVAN-100-grams-1.jpg',0,'attachment','image/jpeg',0),(935,1,'2021-12-16 12:22:21','2021-12-16 12:22:21','','SPIRITUAL GUIDE Rs 55','','inherit','open','closed','','spiritual-guide-rs-55','','','2021-12-16 12:22:21','2021-12-16 12:22:21','',852,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/SPIRITUAL-GUIDE-Rs-55.jpg',0,'attachment','image/jpeg',0),(936,1,'2021-12-16 12:28:10','2021-12-16 12:28:10','','WhatsApp Image 2021-12-16 at 5.57.57 PM','','inherit','open','closed','','whatsapp-image-2021-12-16-at-5-57-57-pm','','','2021-12-16 12:28:10','2021-12-16 12:28:10','',855,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-12-16-at-5.57.57-PM.jpeg',0,'attachment','image/jpeg',0),(937,1,'2021-12-16 12:29:09','2021-12-16 12:29:09','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"100%\" height__sm=\"100%\" bg=\"920\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"54% 84%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"100%\" height__sm=\"500px\" bg=\"920\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"16% 50%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\" visibility=\"hidden\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br>\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\" visibility=\"hidden\"]\n\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_product_categories style=\"normal\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"49% 47%\" dark=\"true\" padding__sm=\"0px\" height=\"300px\" height__sm=\"140px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-16 12:29:09','2021-12-16 12:29:09','',99,'https://demoweblinks.in/padmini/?p=937',0,'revision','',0),(938,1,'2021-12-16 12:30:52','2021-12-16 12:30:52','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"100%\" height__sm=\"100%\" bg=\"920\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"54% 84%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"100%\" height__sm=\"500px\" bg=\"920\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"16% 50%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\" visibility=\"hidden\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\" visibility=\"hidden\"]\n\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_product_categories style=\"normal\" image_hover=\"zoom\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"49% 47%\" dark=\"true\" padding__sm=\"0px\" height=\"300px\" height__sm=\"140px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-16 12:30:52','2021-12-16 12:30:52','',99,'https://demoweblinks.in/padmini/?p=938',0,'revision','',0),(939,1,'2021-12-16 12:31:22','2021-12-16 12:31:22','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"100%\" height__sm=\"100%\" bg=\"920\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"54% 84%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"100%\" height__sm=\"500px\" bg=\"920\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"16% 50%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\" visibility=\"hidden\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\" visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\" visibility=\"hidden\"]\n\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_product_categories style=\"normal\" image_hover=\"zoom\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"49% 47%\" dark=\"true\" padding__sm=\"0px\" height=\"300px\" height__sm=\"140px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2021-12-16 12:31:22','2021-12-16 12:31:22','',99,'https://demoweblinks.in/padmini/?p=939',0,'revision','',0),(945,1,'2021-12-17 02:01:59','2021-12-17 02:01:59','','chandan-225','','inherit','open','closed','','chandan-225','','','2021-12-17 02:01:59','2021-12-17 02:01:59','',860,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/chandan-225.jpg',0,'attachment','image/jpeg',0),(946,1,'2021-12-17 02:03:24','2021-12-17 02:03:24','','8 ST Padmini Incense Rs 10','','inherit','open','closed','','8-st-padmini-incense-rs-10','','','2021-12-17 02:03:24','2021-12-17 02:03:24','',866,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/8-ST-Padmini-Incense-Rs-10.jpg',0,'attachment','image/jpeg',0),(947,1,'2021-12-17 02:04:48','2021-12-17 02:04:48','','My Favourite','','inherit','open','closed','','my-favourite-2','','','2021-12-17 02:04:48','2021-12-17 02:04:48','',878,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/My-Favourite.jpg',0,'attachment','image/jpeg',0),(948,1,'2021-12-17 02:05:58','2021-12-17 02:05:58','','Assam Oudh','','inherit','open','closed','','assam-oudh-2','','','2021-12-17 02:05:58','2021-12-17 02:05:58','',884,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/Assam-Oudh.jpg',0,'attachment','image/jpeg',0),(964,1,'2021-12-17 02:14:37','2021-12-17 02:14:37','','WhatsApp Image 2021-11-29 at 5.11.00 PM (1)','','inherit','open','closed','','whatsapp-image-2021-11-29-at-5-11-00-pm-1','','','2021-12-17 02:14:37','2021-12-17 02:14:37','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.11.00-PM-1.jpeg',0,'attachment','image/jpeg',0),(965,1,'2021-12-17 02:15:15','2021-12-17 02:15:15','','WhatsApp Image 2021-11-29 at 5.10.58 PM (1)','','inherit','open','closed','','whatsapp-image-2021-11-29-at-5-10-58-pm-1','','','2021-12-17 02:15:15','2021-12-17 02:15:15','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.58-PM-1.jpeg',0,'attachment','image/jpeg',0),(966,1,'2021-12-17 02:15:58','2021-12-17 02:15:58','','WhatsApp Image 2021-11-29 at 5.10.55 PM (1)','','inherit','open','closed','','whatsapp-image-2021-11-29-at-5-10-55-pm-1','','','2021-12-17 02:15:58','2021-12-17 02:15:58','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.10.55-PM-1.jpeg',0,'attachment','image/jpeg',0),(967,1,'2021-12-17 02:16:37','2021-12-17 02:16:37','','WhatsApp Image 2021-11-29 at 5.11.01 PM','','inherit','open','closed','','whatsapp-image-2021-11-29-at-5-11-01-pm','','','2021-12-17 02:16:37','2021-12-17 02:16:37','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/WhatsApp-Image-2021-11-29-at-5.11.01-PM.jpeg',0,'attachment','image/jpeg',0),(968,1,'2021-12-17 04:05:51','2021-12-17 04:05:51','','logo (10)','','inherit','open','closed','','logo-10','','','2021-12-17 04:05:51','2021-12-17 04:05:51','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2021/12/logo-10.png',0,'attachment','image/png',0),(973,1,'2022-01-01 01:13:48','2022-01-01 01:13:48','','Gold Statue','An Iconic Fragrance from Padmini with a touch of Herbal, Floral and woody . Its soft scent of Herbs relaxes the mind and calms you down. A sumptuous woody fragrance that eases tensed muscles and calms down the mind. It is a natural air purier that also uplifts the mood and helps in relieving stress.\n<table>\n<tbody>\n\n\n<tr>\n<td>Expiry</td>\n<td>(Shelf Life)18 months from date of manufacturing</td>\n</tr>\n<tr>\n<td>Non-Toxic</td>\n<td>NO Chemicals, petrochemicals, charcoal, Pesticides</td>\n</tr>\n<tr>\n<td>Fragrances</td>\n<td>Sandal</td>\n</tr>\n</tbody>\n</table>\n','inherit','closed','closed','','855-autosave-v1','','','2022-01-01 01:13:48','2022-01-01 01:13:48','',855,'http://demoweblinks.in/padmini/?p=973',0,'revision','',0),(974,1,'2022-01-01 01:24:26','2022-01-01 01:24:26','','Chandan - 35 gm','Weight: 35 gm','publish','closed','closed','','chandan','','','2022-01-01 01:24:52','2022-01-01 01:24:52','',860,'http://demoweblinks.in/padmini/?post_type=product_variation&#038;p=974',1,'product_variation','',0),(975,1,'2022-01-01 02:51:44','2022-01-01 02:51:44','','Gulistan','Padmini Gulistan Incense Sticks with a refreshing Rose fragrance. Perfect for pujas, aroma therapy and meditation\r\n<table>\r\n<tbody>\r\n\r\n\r\n<tr>\r\n<td>Expiry</td>\r\n<td>(Shelf Life)18 months from date of manufacturing</td>\r\n</tr>\r\n\r\n<tr>\r\n<td>Fragrances</td>\r\n<td>Floral</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n','publish','open','closed','','gulistan','','','2022-01-03 07:16:34','2022-01-03 07:16:34','',0,'http://demoweblinks.in/padmini/?post_type=product&#038;p=975',0,'product','',0),(976,1,'2022-01-01 02:56:30','2022-01-01 02:56:30','','Gulistan - 100 gm','Weight: 100 gm','publish','closed','closed','','gulistan-100-gm','','','2022-01-01 02:59:22','2022-01-01 02:59:22','',975,'http://demoweblinks.in/padmini/?post_type=product_variation&#038;p=976',9,'product_variation','',0),(977,1,'2022-01-01 02:56:30','2022-01-01 02:56:30','','Gulistan - 125 gm','Weight: 125 gm','publish','closed','closed','','gulistan-125-gm','','','2022-01-01 02:57:25','2022-01-01 02:57:25','',975,'http://demoweblinks.in/padmini/?post_type=product_variation&p=977',10,'product_variation','',0),(978,1,'2022-01-01 02:56:30','2022-01-01 02:56:30','','Gulistan - 240 gm','Weight: 240 gm','publish','closed','closed','','gulistan-240-gm','','','2022-01-01 02:59:22','2022-01-01 02:59:22','',975,'http://demoweblinks.in/padmini/?post_type=product_variation&#038;p=978',11,'product_variation','',0),(979,1,'2022-01-01 02:56:30','2022-01-01 02:56:30','','Gulistan - 35 gm','Weight: 35 gm','publish','closed','closed','','gulistan-35-gm','','','2022-01-01 02:59:22','2022-01-01 02:59:22','',975,'http://demoweblinks.in/padmini/?post_type=product_variation&#038;p=979',12,'product_variation','',0),(980,1,'2022-01-01 02:56:30','2022-01-01 02:56:30','','Gulistan - 6 Sticks','Weight: 6 Sticks','publish','closed','closed','','gulistan-6-sticks','','','2022-01-01 02:59:22','2022-01-01 02:59:22','',975,'http://demoweblinks.in/padmini/?post_type=product_variation&#038;p=980',13,'product_variation','',0),(981,1,'2022-01-01 02:56:30','2022-01-01 02:56:30','','Gulistan - Hexa','Weight: Hexa','publish','closed','closed','','gulistan-hexa','','','2022-01-01 02:57:25','2022-01-01 02:57:25','',975,'http://demoweblinks.in/padmini/?post_type=product_variation&p=981',14,'product_variation','',0),(982,1,'2022-01-01 02:57:55','2022-01-01 02:57:55','','Gulistan - 13 gm Flat','Weight: 13 gm Flat','publish','closed','closed','','gulistan','','','2022-01-01 02:59:22','2022-01-01 02:59:22','',975,'http://demoweblinks.in/padmini/?post_type=product_variation&#038;p=982',1,'product_variation','',0),(983,1,'2022-01-01 03:05:18','2022-01-01 03:05:18','','Lavender','Get long Lasting Lavender Fragrance aroma from Padmini Agarbattis which brings you the most soothing and refreshing fragrance sticks that are ideal for home, poojas and meditation.\r\n<table>\r\n<tbody>\r\n\r\n\r\n<tr>\r\n<td>Expiry</td>\r\n<td>(Shelf Life)18 months from date of manufacturing</td>\r\n</tr>\r\n\r\n<tr>\r\n<td>Fragrances</td>\r\n<td>Floral, Sweet, Herbacious</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n','publish','open','closed','','lavender','','','2022-01-03 07:21:51','2022-01-03 07:21:51','',0,'http://demoweblinks.in/padmini/?post_type=product&#038;p=983',0,'product','',0),(984,1,'2022-01-01 03:02:25','2022-01-01 03:02:25','','WhatsApp Image 2021-12-07 at 5.16.45 PM','','inherit','open','closed','','whatsapp-image-2021-12-07-at-5-16-45-pm','','','2022-01-01 03:02:25','2022-01-01 03:02:25','',983,'http://demoweblinks.in/padmini/wp-content/uploads/2022/01/WhatsApp-Image-2021-12-07-at-5.16.45-PM.jpeg',0,'attachment','image/jpeg',0),(986,1,'2022-01-01 03:04:34','2022-01-01 03:04:34','','Lavender - 50 Sticks','Weight: 50 Sticks','publish','closed','closed','','lavender-50-sticks','','','2022-01-01 03:05:17','2022-01-01 03:05:17','',983,'http://demoweblinks.in/padmini/?post_type=product_variation&p=986',2,'product_variation','',0),(987,1,'2022-01-01 03:04:34','2022-01-01 03:04:34','','Lavender - 8 Sticks Flat','Weight: 8 Sticks Flat','publish','closed','closed','','lavender-8-sticks-flat','','','2022-01-01 03:05:17','2022-01-01 03:05:17','',983,'http://demoweblinks.in/padmini/?post_type=product_variation&p=987',6,'product_variation','',0),(988,1,'2022-01-01 03:10:47','2022-01-01 03:10:47','','Pure Jasmine','Pure Jasmine is a fragrance as pure and fresh as nature that ease o stress and creates a cosy atmosphere. The fragrance has a distinct vibration that helps you with mood enhancement.\r\n\r\n<table>\r\n<tbody>\r\n\r\n\r\n<tr>\r\n<td>Expiry</td>\r\n<td>(Shelf Life)18 months from date of manufacturing</td>\r\n</tr>\r\n\r\n<tr>\r\n<td>Fragrances</td>\r\n<td>Floral</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n','publish','open','closed','','pure-jasmine','','','2022-01-04 04:00:44','2022-01-04 04:00:44','',0,'http://demoweblinks.in/padmini/?post_type=product&#038;p=988',0,'product','',0),(989,1,'2022-01-01 03:10:27','2022-01-01 03:10:27','','Pure Jasmine - 35 gm','Weight: 35 gm','publish','closed','closed','','pure-jasmine-35-gm','','','2022-01-01 03:10:47','2022-01-01 03:10:47','',988,'http://demoweblinks.in/padmini/?post_type=product_variation&p=989',6,'product_variation','',0),(990,1,'2022-01-01 03:14:43','2022-01-01 03:14:43','','Ganjam Kewda','With a tangy, refreshing fragrance, Padmini Agarbattis Ganjam Kewda helps clear away mental cobwebs and creative blocks. Excellent for home use, poojas and aromatheraphy\r\n<table>\r\n<tbody>\r\n\r\n\r\n<tr>\r\n<td>Expiry</td>\r\n<td>(Shelf Life)18 months from date of manufacturing</td>\r\n</tr>\r\n\r\n<tr>\r\n<td>Fragrances</td>\r\n<td>Floral</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n','publish','open','closed','','ganjam-kewda','','','2022-01-03 07:28:09','2022-01-03 07:28:09','',0,'http://demoweblinks.in/padmini/?post_type=product&#038;p=990',0,'product','',0),(991,1,'2022-01-01 03:14:09','2022-01-01 03:14:09','','WhatsApp Image 2021-12-07 at 5.16.42 PM','','inherit','open','closed','','whatsapp-image-2021-12-07-at-5-16-42-pm','','','2022-01-01 03:14:09','2022-01-01 03:14:09','',990,'http://demoweblinks.in/padmini/wp-content/uploads/2022/01/WhatsApp-Image-2021-12-07-at-5.16.42-PM.jpeg',0,'attachment','image/jpeg',0),(992,1,'2022-01-01 03:16:43','2022-01-01 03:16:43','','Ganjam Kewda - 150 gm','Weight: 150 gm','publish','closed','closed','','ganjam-kewda-150-gm','','','2022-01-01 03:17:36','2022-01-01 03:17:36','',990,'http://demoweblinks.in/padmini/?post_type=product_variation&p=992',4,'product_variation','',0),(993,1,'2022-01-01 03:16:43','2022-01-01 03:16:43','','Ganjam Kewda - 20 gm','Weight: 20 gm','publish','closed','closed','','ganjam-kewda-20-gm','','','2022-01-01 03:17:36','2022-01-01 03:17:36','',990,'http://demoweblinks.in/padmini/?post_type=product_variation&p=993',5,'product_variation','',0),(994,1,'2022-01-01 03:16:43','2022-01-01 03:16:43','','Ganjam Kewda - 35 gm','Weight: 35 gm','publish','closed','closed','','ganjam-kewda-35-gm','','','2022-01-01 03:17:36','2022-01-01 03:17:36','',990,'http://demoweblinks.in/padmini/?post_type=product_variation&p=994',6,'product_variation','',0),(995,1,'2022-01-01 03:22:04','2022-01-01 03:22:04','','Pure Champa','Get long Lasting Champa Fragrance aroma which brings you the most soothing and refreshing fragrance sticks\r\nthat are ideal for your home, poojas and workplace. Its earthy fragrance upifts your mood within a few seconds, and create an amazing atmosphere all around.\r\n<table>\r\n<tbody>\r\n\r\n\r\n<tr>\r\n<td>Expiry</td>\r\n<td>(Shelf Life)18 months from date of manufacturing</td>\r\n</tr>\r\n\r\n<tr>\r\n<td>Fragrances</td>\r\n<td>Floral</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n','publish','open','closed','','pure-champa','','','2022-01-03 08:52:22','2022-01-03 08:52:22','',0,'http://demoweblinks.in/padmini/?post_type=product&#038;p=995',0,'product','',0),(996,1,'2022-01-01 03:19:31','2022-01-01 03:19:31','','WhatsApp Image 2021-12-07 at 5.17.22 PM','','inherit','open','closed','','whatsapp-image-2021-12-07-at-5-17-22-pm','','','2022-01-01 03:19:31','2022-01-01 03:19:31','',995,'http://demoweblinks.in/padmini/wp-content/uploads/2022/01/WhatsApp-Image-2021-12-07-at-5.17.22-PM.jpeg',0,'attachment','image/jpeg',0),(997,1,'2022-01-01 03:21:16','2022-01-01 03:21:16','','Pure Champa - 20 gm','Weight: 20 gm','publish','closed','closed','','pure-champa-20-gm','','','2022-01-01 03:22:04','2022-01-01 03:22:04','',995,'http://demoweblinks.in/padmini/?post_type=product_variation&p=997',5,'product_variation','',0),(998,1,'2022-01-01 03:21:16','2022-01-01 03:21:16','','Pure Champa - 40 gm','Weight: 40 gm','publish','closed','closed','','pure-champa-40-gm','','','2022-01-01 03:22:04','2022-01-01 03:22:04','',995,'http://demoweblinks.in/padmini/?post_type=product_variation&p=998',6,'product_variation','',0),(999,1,'2022-01-01 05:04:09','2022-01-01 05:04:09','','Tapaz','Tapaz Create A Long-Lasting, Soothing Environment For Meditation, Yoga, and Relaxation\r\n<table>\r\n<tbody>\r\n\r\n\r\n<tr>\r\n<td>Expiry</td>\r\n<td>(Shelf Life)18 months from date of manufacturing</td>\r\n</tr>\r\n\r\n<tr>\r\n<td>Fragrances</td>\r\n<td>Floral, Sweet, Amber</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n','publish','open','closed','','tapaz','','','2022-01-03 09:40:51','2022-01-03 09:40:51','',0,'http://demoweblinks.in/padmini/?post_type=product&#038;p=999',0,'product','',0),(1000,1,'2022-01-03 03:58:06','2022-01-03 03:58:06','','Pakeezah','Spiritual Long Lasting Fragrance- Pakeezah impart a spiritual and lingering fragrance which not only puries the ambiance but also for creating a calming atmosphere at home, oce, perfect for Pooja, Hawan, Puja, Therapy, Meditation, & Yoga.\r\n<table>\r\n<tbody>\r\n\r\n\r\n<tr>\r\n<td>Expiry</td>\r\n<td>(Shelf Life)18 months from date of manufacturing</td>\r\n</tr>\r\n\r\n<tr>\r\n<td>Fragrances</td>\r\n<td>Floral, Sweet, Amber</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n','publish','open','closed','','pakeezah','','','2022-01-03 08:54:50','2022-01-03 08:54:50','',0,'http://demoweblinks.in/padmini/?post_type=product&#038;p=1000',0,'product','',0),(1001,1,'2022-01-03 03:59:35','2022-01-03 03:59:35','','Pakeezah','','inherit','open','closed','','pakeezah-2','','','2022-01-03 03:59:35','2022-01-03 03:59:35','',1000,'http://demoweblinks.in/padmini/wp-content/uploads/2022/01/Pakeezah.jpg',0,'attachment','image/jpeg',0),(1002,1,'2022-01-03 04:04:28','2022-01-03 04:04:28','','Pakeezah','','inherit','open','closed','','pakeezah-3','','','2022-01-03 04:04:28','2022-01-03 04:04:28','',1000,'http://demoweblinks.in/padmini/wp-content/uploads/2022/01/Pakeezah-1.jpg',0,'attachment','image/jpeg',0),(1003,1,'2022-01-03 04:08:32','2022-01-03 04:08:32','','Pakeezah - 10 Sticks Tubes','Weight: 10 Sticks Tubes','publish','closed','closed','','pakeezah-10-sticks-tubes','','','2022-01-03 04:08:55','2022-01-03 04:08:55','',1000,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1003',3,'product_variation','',0),(1004,1,'2022-01-03 04:08:32','2022-01-03 04:08:32','','Pakeezah - 40 Sticks','Weight: 40 Sticks','publish','closed','closed','','pakeezah-40-sticks','','','2022-01-03 04:08:55','2022-01-03 04:08:55','',1000,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1004',4,'product_variation','',0),(1005,1,'2022-01-03 04:13:19','2022-01-03 04:13:19','','Kasturi','A beautiful blend of Floral and Woody spreads a peaceful, calm & positive atmosphere all around house. Incense sticks are ideal to enhance the religious mood & ambience, deepen your meditation, provide aromatherapy & help keep the mind calm.\r\n<table>\r\n<tbody>\r\n\r\n\r\n<tr>\r\n<td>Expiry</td>\r\n<td>(Shelf Life)18 months from date of manufacturing</td>\r\n</tr>\r\n\r\n<tr>\r\n<td>Fragrances</td>\r\n<td> Floral, Woody</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n','publish','open','closed','','kasturi','','','2022-01-03 08:59:42','2022-01-03 08:59:42','',0,'http://demoweblinks.in/padmini/?post_type=product&#038;p=1005',0,'product','',0),(1006,1,'2022-01-03 04:11:10','2022-01-03 04:11:10','','Padmini Intimate','','inherit','open','closed','','padmini-intimate','','','2022-01-03 04:11:10','2022-01-03 04:11:10','',1005,'http://demoweblinks.in/padmini/wp-content/uploads/2022/01/Padmini-Intimate.jpg',0,'attachment','image/jpeg',0),(1007,1,'2022-01-03 04:13:58','2022-01-03 04:13:58','','Kasturi - 20 Sticks','Weight: 20 Sticks','publish','closed','closed','','kasturi-20-sticks','','','2022-01-03 04:14:18','2022-01-03 04:14:18','',1005,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1007',3,'product_variation','',0),(1008,1,'2022-01-03 04:13:58','2022-01-03 04:13:58','','Kasturi - 40 Sticks','Weight: 40 Sticks','publish','closed','closed','','kasturi-40-sticks','','','2022-01-03 04:14:18','2022-01-03 04:14:18','',1005,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1008',4,'product_variation','',0),(1009,1,'2022-01-03 04:30:27','2022-01-03 04:30:27','','Rosa ultimo','Padmini Gulistan Incense Sticks with a refreshing Rose fragrance. Perfect for pujas, aroma therapy and meditation\r\n<table>\r\n<tbody>\r\n\r\n\r\n<tr>\r\n<td>Expiry</td>\r\n<td>(Shelf Life)18 months from date of manufacturing</td>\r\n</tr>\r\n\r\n<tr>\r\n<td>Fragrances</td>\r\n<td> Floral, Sweet</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n','publish','open','closed','','rosa-ultimo','','','2022-01-03 09:01:52','2022-01-03 09:01:52','',0,'http://demoweblinks.in/padmini/?post_type=product&#038;p=1009',0,'product','',0),(1010,1,'2022-01-03 04:29:06','2022-01-03 04:29:06','','Rosa Ultimo','','inherit','open','closed','','rosa-ultimo','','','2022-01-03 04:29:06','2022-01-03 04:29:06','',1009,'http://demoweblinks.in/padmini/wp-content/uploads/2022/01/Rosa-Ultimo.jpg',0,'attachment','image/jpeg',0),(1012,1,'2022-01-03 04:36:12','2022-01-03 04:36:12','','Jasmine ultimo','Jasmine Ultimo is a fragrance as pure and fresh as nature that ease o stress and creates a cosy atmosphere. The fragrance has a distinct vibration that helps you with mood enhancement.\r\n<table>\r\n<tbody>\r\n\r\n\r\n<tr>\r\n<td>Expiry</td>\r\n<td>(Shelf Life)18 months from date of manufacturing</td>\r\n</tr>\r\n\r\n<tr>\r\n<td>Fragrances</td>\r\n<td>Exotic, Floral</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n','publish','open','closed','','jasmine-ultimo','','','2022-01-03 09:03:27','2022-01-03 09:03:27','',0,'http://demoweblinks.in/padmini/?post_type=product&#038;p=1012',0,'product','',0),(1013,1,'2022-01-03 04:35:59','2022-01-03 04:35:59','','Jasmine ultimo - 100 Sticks','Weight: 100 Sticks','publish','closed','closed','','jasmine-ultimo','','','2022-01-03 04:36:11','2022-01-03 04:36:11','',1012,'http://demoweblinks.in/padmini/?post_type=product_variation&#038;p=1013',1,'product_variation','',0),(1014,1,'2022-01-03 04:36:45','2022-01-03 04:36:45','','Rosa ultimo - 100 Sticks','Weight: 100 Sticks','publish','closed','closed','','rosa-ultimo','','','2022-01-03 04:36:55','2022-01-03 04:36:55','',1009,'http://demoweblinks.in/padmini/?post_type=product_variation&#038;p=1014',1,'product_variation','',0),(1015,1,'2022-01-03 04:41:42','2022-01-03 04:41:42','','Lavender ultimo','Get long Lasting Lavender Fragrance aroma from Padmini Agarbattis which brings you the most soothing and refreshing fragrance sticks that are ideal for home, poojas and meditation\r\n<table>\r\n<tbody>\r\n\r\n\r\n<tr>\r\n<td>Expiry</td>\r\n<td>(Shelf Life)18 months from date of manufacturing</td>\r\n</tr>\r\n\r\n<tr>\r\n<td>Fragrances</td>\r\n<td>Floral, Sweet, Herbacious</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n','publish','open','closed','','lavender-ultimo','','','2022-01-03 09:05:06','2022-01-03 09:05:06','',0,'http://demoweblinks.in/padmini/?post_type=product&#038;p=1015',0,'product','',0),(1016,1,'2022-01-03 04:40:17','2022-01-03 04:40:17','','Lavender ultimo - 100 Sticks','Weight: 100 Sticks','publish','closed','closed','','lavender-ultimo-100-sticks','','','2022-01-03 04:40:31','2022-01-03 04:40:31','',1015,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1016',2,'product_variation','',0),(1018,1,'2022-01-03 04:40:55','2022-01-03 04:40:55','','Lavendar Ultimo 02','','inherit','open','closed','','lavendar-ultimo-02','','','2022-01-03 04:40:55','2022-01-03 04:40:55','',1015,'http://demoweblinks.in/padmini/wp-content/uploads/2022/01/Lavendar-Ultimo-02.jpg',0,'attachment','image/jpeg',0),(1019,1,'2022-01-03 04:46:52','2022-01-03 04:46:52','','Sandal ultimo','Sandal Ultimo incense sticks are Organic Sandal sticks that are made from Pure Natural Sandals. Its natural aroma is Ideal for creating a calming atmosphere at home, oce, perfect for Pooja, Hawan, Puja, Therapy, Meditation, Gifting & Yoga.\r\n<table>\r\n<tbody>\r\n\r\n\r\n<tr>\r\n<td>Expiry</td>\r\n<td>(Shelf Life)18 months from date of manufacturing</td>\r\n</tr>\r\n\r\n<tr>\r\n<td>Fragrances</td>\r\n<td>Sandalwood, Sweet, Woody</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n','publish','open','closed','','sandal-ultimo','','','2022-01-03 09:09:12','2022-01-03 09:09:12','',0,'http://demoweblinks.in/padmini/?post_type=product&#038;p=1019',0,'product','',0),(1020,1,'2022-01-03 04:43:03','2022-01-03 04:43:03','','Sandal Ultimo','','inherit','open','closed','','sandal-ultimo','','','2022-01-03 04:43:03','2022-01-03 04:43:03','',1019,'http://demoweblinks.in/padmini/wp-content/uploads/2022/01/Sandal-Ultimo.jpg',0,'attachment','image/jpeg',0),(1021,1,'2022-01-03 04:47:29','2022-01-03 04:47:29','','Sandal ultimo - 100 Sticks','Weight: 100 Sticks','publish','closed','closed','','sandal-ultimo-100-sticks','','','2022-01-03 04:47:57','2022-01-03 04:47:57','',1019,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1021',2,'product_variation','',0),(1023,1,'2022-01-03 04:50:49','2022-01-03 04:50:49','','Lily ultimo','Lily Ultimo is a fragrance as pure and fresh as nature that ease o stress and creates a cosy atmosphere. The fragrance has a distinct vibration that helps you with mood enhancement.\r\n<table>\r\n<tbody>\r\n\r\n\r\n<tr>\r\n<td>Expiry</td>\r\n<td>(Shelf Life)18 months from date of manufacturing</td>\r\n</tr>\r\n\r\n<tr>\r\n<td>Fragrances</td>\r\n<td>Floral, Sweet</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n','publish','open','closed','','lily-ultimo','','','2022-01-03 09:08:25','2022-01-03 09:08:25','',0,'http://demoweblinks.in/padmini/?post_type=product&#038;p=1023',0,'product','',0),(1024,1,'2022-01-03 04:50:14','2022-01-03 04:50:14','','Lily ultimo - 100 Sticks','Weight: 100 Sticks','publish','closed','closed','','lily-ultimo-100-sticks','','','2022-01-03 04:50:49','2022-01-03 04:50:49','',1023,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1024',2,'product_variation','',0),(1026,1,'2022-01-03 06:31:02','2022-01-03 06:31:02','','Brindavan - 100 gm (Bulk Package)','Weight: 100 gm (Bulk Package)','publish','closed','closed','','brindavan-100-gm-bulk-package','','','2022-01-03 06:33:18','2022-01-03 06:33:18','',850,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1026',1,'product_variation','',0),(1027,1,'2022-01-03 06:31:02','2022-01-03 06:31:02','','Brindavan - 13 gm Flat (Bluk Package)','Weight: 13 gm Flat (Bluk Package)','publish','closed','closed','','brindavan-13-gm-flat-bluk-package','','','2022-01-03 06:33:18','2022-01-03 06:33:18','',850,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1027',2,'product_variation','',0),(1028,1,'2022-01-03 06:31:02','2022-01-03 06:31:02','','Brindavan - 240 gm (Bulk Package)','Weight: 240 gm (Bulk Package)','publish','closed','closed','','brindavan-240-gm-bulk-package','','','2022-01-03 06:33:18','2022-01-03 06:33:18','',850,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1028',3,'product_variation','',0),(1029,1,'2022-01-03 06:31:02','2022-01-03 06:31:02','','Brindavan - 35 gm (Bulk Package)','Weight: 35 gm (Bulk Package)','publish','closed','closed','','brindavan-35-gm-bulk-package','','','2022-01-03 06:33:18','2022-01-03 06:33:18','',850,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1029',4,'product_variation','',0),(1030,1,'2022-01-03 06:31:02','2022-01-03 06:31:02','','Brindavan - Hexa','Weight: Hexa','publish','closed','closed','','brindavan-hexa','','','2022-01-03 06:33:18','2022-01-03 06:33:18','',850,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1030',5,'product_variation','',0),(1031,1,'2022-01-03 06:31:02','2022-01-03 06:31:02','','Brindavan - Hexa (Bulk Package)','Weight: Hexa (Bulk Package)','publish','closed','closed','','brindavan-hexa-bulk-package','','','2022-01-03 06:33:18','2022-01-03 06:33:18','',850,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1031',6,'product_variation','',0),(1032,1,'2022-01-03 06:37:50','2022-01-03 06:37:50','','Spiritual Guide - 50 sticks (Bulk Package)','Weight: 50 sticks (Bulk Package)','publish','closed','closed','','spiritual-guide-50-sticks-bulk-package','','','2022-01-03 06:38:30','2022-01-03 06:38:30','',852,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1032',1,'product_variation','',0),(1033,1,'2022-01-03 06:37:50','2022-01-03 06:37:50','','Spiritual Guide - 8 Sticks Flat (Bulk Package)','Weight: 8 Sticks Flat (Bulk Package)','publish','closed','closed','','spiritual-guide-8-sticks-flat-bulk-package','','','2022-01-03 06:38:30','2022-01-03 06:38:30','',852,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1033',2,'product_variation','',0),(1034,1,'2022-01-03 06:49:36','2022-01-03 06:49:36','','Gold Statue - 100 Sticks (Bulk Package)','Weight: 100 Sticks (Bulk Package)','publish','closed','closed','','gold-statue-100-sticks-bulk-package','','','2022-01-03 06:49:54','2022-01-03 06:49:54','',855,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1034',1,'product_variation','',0),(1035,1,'2022-01-03 06:52:40','2022-01-03 06:52:40','','Chandan - 100 gm (Bulk Package)','Weight: 100 gm (Bulk Package)','publish','closed','closed','','chandan-100-gm-bulk-package','','','2022-01-03 06:54:53','2022-01-03 06:54:53','',860,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1035',2,'product_variation','',0),(1036,1,'2022-01-03 06:52:40','2022-01-03 06:52:40','','Chandan - 125 gm (Bulk Package)','Weight: 125 gm (Bulk Package)','publish','closed','closed','','chandan-125-gm-bulk-package','','','2022-01-03 06:54:53','2022-01-03 06:54:53','',860,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1036',3,'product_variation','',0),(1037,1,'2022-01-03 06:52:40','2022-01-03 06:52:40','','Chandan - 13 gm Flat (Bluk Package)','Weight: 13 gm Flat (Bluk Package)','publish','closed','closed','','chandan-13-gm-flat-bluk-package','','','2022-01-03 06:54:53','2022-01-03 06:54:53','',860,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1037',4,'product_variation','',0),(1038,1,'2022-01-03 06:52:40','2022-01-03 06:52:40','','Chandan - 240 gm (Bulk Package)','Weight: 240 gm (Bulk Package)','publish','closed','closed','','chandan-240-gm-bulk-package','','','2022-01-03 06:54:53','2022-01-03 06:54:53','',860,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1038',5,'product_variation','',0),(1039,1,'2022-01-03 06:52:41','2022-01-03 06:52:41','','Chandan - 35 gm (Bulk Package)','Weight: 35 gm (Bulk Package)','publish','closed','closed','','chandan-35-gm-bulk-package','','','2022-01-03 06:54:53','2022-01-03 06:54:53','',860,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1039',6,'product_variation','',0),(1040,1,'2022-01-03 06:52:41','2022-01-03 06:52:41','','Chandan - Hexa','Weight: Hexa','publish','closed','closed','','chandan-hexa','','','2022-01-03 06:54:53','2022-01-03 06:54:53','',860,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1040',7,'product_variation','',0),(1041,1,'2022-01-03 06:52:41','2022-01-03 06:52:41','','Chandan - Hexa (Bulk Package)','Weight: Hexa (Bulk Package)','publish','closed','closed','','chandan-hexa-bulk-package','','','2022-01-03 06:54:53','2022-01-03 06:54:53','',860,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1041',8,'product_variation','',0),(1042,1,'2022-01-03 06:57:24','2022-01-03 06:57:24','','Padmini Incense - 10 Sticks 50 POU (Bulk Package)','Weight: 10 Sticks 50 POU (Bulk Package)','publish','closed','closed','','padmini-incense-10-sticks-50-pou-bulk-package','','','2022-01-03 06:58:42','2022-01-03 06:58:42','',866,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1042',1,'product_variation','',0),(1043,1,'2022-01-03 06:57:24','2022-01-03 06:57:24','','Padmini Incense - 50 sticks (Bulk Package)','Weight: 50 sticks (Bulk Package)','publish','closed','closed','','padmini-incense-50-sticks-bulk-package','','','2022-01-03 06:58:42','2022-01-03 06:58:42','',866,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1043',2,'product_variation','',0),(1044,1,'2022-01-03 06:57:24','2022-01-03 06:57:24','','Padmini Incense - 8 Sticks Flat (Bulk Package)','Weight: 8 Sticks Flat (Bulk Package)','publish','closed','closed','','padmini-incense-8-sticks-flat-bulk-package','','','2022-01-03 06:58:42','2022-01-03 06:58:42','',866,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1044',3,'product_variation','',0),(1045,1,'2022-01-03 06:57:24','2022-01-03 06:57:24','','Padmini Incense - Hexa','Weight: Hexa','publish','closed','closed','','padmini-incense-hexa','','','2022-01-03 06:58:42','2022-01-03 06:58:42','',866,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1045',4,'product_variation','',0),(1046,1,'2022-01-03 06:57:24','2022-01-03 06:57:24','','Padmini Incense - Hexa (Bulk Package)','Weight: Hexa (Bulk Package)','publish','closed','closed','','padmini-incense-hexa-bulk-package','','','2022-01-03 06:58:42','2022-01-03 06:58:42','',866,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1046',5,'product_variation','',0),(1047,1,'2022-01-03 07:00:36','2022-01-03 07:00:36','','Lyrics - 100 gm (Bulk Package)','Weight: 100 gm (Bulk Package)','publish','closed','closed','','lyrics-100-gm-bulk-package','','','2022-01-03 07:01:55','2022-01-03 07:01:55','',872,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1047',1,'product_variation','',0),(1048,1,'2022-01-03 07:00:36','2022-01-03 07:00:36','','Lyrics - 13 gm Flat (Bluk Package)','Weight: 13 gm Flat (Bluk Package)','publish','closed','closed','','lyrics-13-gm-flat-bluk-package','','','2022-01-03 07:01:55','2022-01-03 07:01:55','',872,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1048',2,'product_variation','',0),(1049,1,'2022-01-03 07:00:36','2022-01-03 07:00:36','','Lyrics - 35 gm (Bulk Package)','Weight: 35 gm (Bulk Package)','publish','closed','closed','','lyrics-35-gm-bulk-package','','','2022-01-03 07:01:55','2022-01-03 07:01:55','',872,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1049',3,'product_variation','',0),(1050,1,'2022-01-03 07:00:36','2022-01-03 07:00:36','','Lyrics - Hexa','Weight: Hexa','publish','closed','closed','','lyrics-hexa','','','2022-01-03 07:01:55','2022-01-03 07:01:55','',872,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1050',4,'product_variation','',0),(1051,1,'2022-01-03 07:00:36','2022-01-03 07:00:36','','Lyrics - Hexa (Bulk Package)','Weight: Hexa (Bulk Package)','publish','closed','closed','','lyrics-hexa-bulk-package','','','2022-01-03 07:01:55','2022-01-03 07:01:55','',872,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1051',5,'product_variation','',0),(1052,1,'2022-01-03 07:03:19','2022-01-03 07:03:19','','My Favourite - 100 gm (Bulk Package)','Weight: 100 gm (Bulk Package)','publish','closed','closed','','my-favourite-100-gm-bulk-package','','','2022-01-03 07:03:31','2022-01-03 07:03:31','',878,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1052',1,'product_variation','',0),(1053,1,'2022-01-03 07:04:37','2022-01-03 07:04:37','','Assam Oudh - 50 sticks (Bulk Package)','Weight: 50 sticks (Bulk Package)','publish','closed','closed','','assam-oudh-50-sticks-bulk-package','','','2022-01-03 07:04:55','2022-01-03 07:04:55','',884,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1053',1,'product_variation','',0),(1054,1,'2022-01-03 07:06:30','2022-01-03 07:06:30','','Sugandh - 100 gm (Bulk Package)','Weight: 100 gm (Bulk Package)','publish','closed','closed','','sugandh-100-gm-bulk-package','','','2022-01-03 07:12:20','2022-01-03 07:12:20','',892,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1054',5,'product_variation','',0),(1055,1,'2022-01-03 07:06:30','2022-01-03 07:06:30','','Sugandh - 100 gm Flat (Bulk Package)','Weight: 100 gm Flat (Bulk Package)','publish','closed','closed','','sugandh-100-gm-flat-bulk-package','','','2022-01-03 07:12:20','2022-01-03 07:12:20','',892,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1055',6,'product_variation','',0),(1056,1,'2022-01-03 07:06:30','2022-01-03 07:06:30','','Sugandh - 125 gm (Bulk Package)','Weight: 125 gm (Bulk Package)','publish','closed','closed','','sugandh-125-gm-bulk-package','','','2022-01-03 07:09:23','2022-01-03 07:09:23','',892,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1056',7,'product_variation','',0),(1057,1,'2022-01-03 07:06:30','2022-01-03 07:06:30','','Sugandh - 13 gm Flat (Bluk Package)','Weight: 13 gm Flat (Bluk Package)','publish','closed','closed','','sugandh-13-gm-flat-bluk-package','','','2022-01-03 07:12:20','2022-01-03 07:12:20','',892,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1057',8,'product_variation','',0),(1058,1,'2022-01-03 07:08:04','2022-01-03 07:08:04','','Sugandh - Hexa','Weight: Hexa','publish','closed','closed','','sugandh-hexa','','','2022-01-03 07:12:20','2022-01-03 07:12:20','',892,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1058',3,'product_variation','',0),(1059,1,'2022-01-03 07:08:04','2022-01-03 07:08:04','','Sugandh - Hexa (Bulk Package)','Weight: Hexa (Bulk Package)','publish','closed','closed','','sugandh-hexa-bulk-package','','','2022-01-03 07:12:20','2022-01-03 07:12:20','',892,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1059',4,'product_variation','',0),(1060,1,'2022-01-03 07:09:59','2022-01-03 07:09:59','','Sugandh - 35 gm','Weight: 35 gm','publish','closed','closed','','sugandh-35-gm','','','2022-01-03 07:12:20','2022-01-03 07:12:20','',892,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1060',1,'product_variation','',0),(1061,1,'2022-01-03 07:09:59','2022-01-03 07:09:59','','Sugandh - 35 gm (Bulk Package)','Weight: 35 gm (Bulk Package)','publish','closed','closed','','sugandh-35-gm-bulk-package','','','2022-01-03 07:12:20','2022-01-03 07:12:20','',892,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1061',2,'product_variation','',0),(1062,1,'2022-01-03 07:13:50','2022-01-03 07:13:50','','Gulistan - 100 gm (Bulk Package)','Weight: 100 gm (Bulk Package)','publish','closed','closed','','gulistan-100-gm-bulk-package','','','2022-01-03 07:16:31','2022-01-03 07:16:31','',975,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1062',2,'product_variation','',0),(1063,1,'2022-01-03 07:13:50','2022-01-03 07:13:50','','Gulistan - 125 gm (Bulk Package)','Weight: 125 gm (Bulk Package)','publish','closed','closed','','gulistan-125-gm-bulk-package','','','2022-01-03 07:16:31','2022-01-03 07:16:31','',975,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1063',3,'product_variation','',0),(1064,1,'2022-01-03 07:13:50','2022-01-03 07:13:50','','Gulistan - 13 gm Flat (Bluk Package)','Weight: 13 gm Flat (Bluk Package)','publish','closed','closed','','gulistan-13-gm-flat-bluk-package','','','2022-01-03 07:16:32','2022-01-03 07:16:32','',975,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1064',4,'product_variation','',0),(1065,1,'2022-01-03 07:13:50','2022-01-03 07:13:50','','Gulistan - 240 gm (Bulk Package)','Weight: 240 gm (Bulk Package)','publish','closed','closed','','gulistan-240-gm-bulk-package','','','2022-01-03 07:16:32','2022-01-03 07:16:32','',975,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1065',5,'product_variation','',0),(1066,1,'2022-01-03 07:13:50','2022-01-03 07:13:50','','Gulistan - 35 gm (Bulk Package)','Weight: 35 gm (Bulk Package)','publish','closed','closed','','gulistan-35-gm-bulk-package','','','2022-01-03 07:16:32','2022-01-03 07:16:32','',975,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1066',6,'product_variation','',0),(1067,1,'2022-01-03 07:13:51','2022-01-03 07:13:51','','Gulistan - 6 sticks (Bulk Package)','Weight: 6 sticks (Bulk Package)','publish','closed','closed','','gulistan-6-sticks-bulk-package','','','2022-01-03 07:16:32','2022-01-03 07:16:32','',975,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1067',7,'product_variation','',0),(1068,1,'2022-01-03 07:13:51','2022-01-03 07:13:51','','Gulistan - Hexa (Bulk Package)','Weight: Hexa (Bulk Package)','publish','closed','closed','','gulistan-hexa-bulk-package','','','2022-01-03 07:16:32','2022-01-03 07:16:32','',975,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1068',8,'product_variation','',0),(1070,1,'2022-01-03 07:17:41','2022-01-03 07:17:41','','Lavender - 50 sticks (Bulk Package)','Weight: 50 sticks (Bulk Package)','publish','closed','closed','','lavender-50-sticks-bulk-package','','','2022-01-03 07:21:50','2022-01-03 07:21:50','',983,'http://demoweblinks.in/padmini/?post_type=product_variation&#038;p=1070',2,'product_variation','',0),(1071,1,'2022-01-03 07:17:41','2022-01-03 07:17:41','','Lavender - 8 Sticks Flat (Bulk Package)','Weight: 8 Sticks Flat (Bulk Package)','publish','closed','closed','','lavender-8-sticks-flat-bulk-package','','','2022-01-03 07:21:50','2022-01-03 07:21:50','',983,'http://demoweblinks.in/padmini/?post_type=product_variation&#038;p=1071',3,'product_variation','',0),(1072,1,'2022-01-03 07:17:41','2022-01-03 07:17:41','','Lavender - Hexa','Weight: Hexa','publish','closed','closed','','lavender-hexa','','','2022-01-03 07:21:50','2022-01-03 07:21:50','',983,'http://demoweblinks.in/padmini/?post_type=product_variation&#038;p=1072',4,'product_variation','',0),(1073,1,'2022-01-03 07:17:41','2022-01-03 07:17:41','','Lavender - Hexa (Bulk Package)','Weight: Hexa (Bulk Package)','publish','closed','closed','','lavender-hexa-bulk-package','','','2022-01-03 07:21:50','2022-01-03 07:21:50','',983,'http://demoweblinks.in/padmini/?post_type=product_variation&#038;p=1073',5,'product_variation','',0),(1074,1,'2022-01-03 07:24:11','2022-01-03 07:24:11','','Pure Jasmine - 150 gm','Weight: 150 gm','publish','closed','closed','','pure-jasmine-150-gm','','','2022-01-03 07:25:08','2022-01-03 07:25:08','',988,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1074',1,'product_variation','',0),(1075,1,'2022-01-03 07:24:11','2022-01-03 07:24:11','','Pure Jasmine - 150 gm (Bulk Package)','Weight: 150 gm (Bulk Package)','publish','closed','closed','','pure-jasmine-150-gm-bulk-package','','','2022-01-03 07:25:08','2022-01-03 07:25:08','',988,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1075',2,'product_variation','',0),(1076,1,'2022-01-03 07:24:11','2022-01-03 07:24:11','','Pure Jasmine - 20 gm','Weight: 20 gm','publish','closed','closed','','pure-jasmine-20-gm','','','2022-01-03 07:25:08','2022-01-03 07:25:08','',988,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1076',3,'product_variation','',0),(1077,1,'2022-01-03 07:24:11','2022-01-03 07:24:11','','Pure Jasmine - 20 gm (Bulk Package)','Weight: 20 gm (Bulk Package)','publish','closed','closed','','pure-jasmine-20-gm-bulk-package','','','2022-01-03 07:25:08','2022-01-03 07:25:08','',988,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1077',4,'product_variation','',0),(1078,1,'2022-01-03 07:24:11','2022-01-03 07:24:11','','Pure Jasmine - 35 gm (Bulk Package)','Weight: 35 gm (Bulk Package)','publish','closed','closed','','pure-jasmine-35-gm-bulk-package','','','2022-01-03 07:25:08','2022-01-03 07:25:08','',988,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1078',5,'product_variation','',0),(1079,1,'2022-01-03 07:26:35','2022-01-03 07:26:35','','Ganjam Kewda - 150 gm (Bulk Package)','Weight: 150 gm (Bulk Package)','publish','closed','closed','','ganjam-kewda-150-gm-bulk-package','','','2022-01-03 07:28:07','2022-01-03 07:28:07','',990,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1079',1,'product_variation','',0),(1080,1,'2022-01-03 07:26:35','2022-01-03 07:26:35','','Ganjam Kewda - 20 gm (Bulk Package)','Weight: 20 gm (Bulk Package)','publish','closed','closed','','ganjam-kewda-20-gm-bulk-package','','','2022-01-03 07:28:07','2022-01-03 07:28:07','',990,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1080',2,'product_variation','',0),(1081,1,'2022-01-03 07:26:35','2022-01-03 07:26:35','','Ganjam Kewda - 35 gm (Bulk Package)','Weight: 35 gm (Bulk Package)','publish','closed','closed','','ganjam-kewda-35-gm-bulk-package','','','2022-01-03 07:28:07','2022-01-03 07:28:07','',990,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1081',3,'product_variation','',0),(1082,1,'2022-01-03 08:51:27','2022-01-03 08:51:27','','Pure Champa - 150 gm','Weight: 150 gm','publish','closed','closed','','pure-champa-150-gm','','','2022-01-03 08:52:21','2022-01-03 08:52:21','',995,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1082',1,'product_variation','',0),(1083,1,'2022-01-03 08:51:27','2022-01-03 08:51:27','','Pure Champa - 150 gm (Bulk Package)','Weight: 150 gm (Bulk Package)','publish','closed','closed','','pure-champa-150-gm-bulk-package','','','2022-01-03 08:52:21','2022-01-03 08:52:21','',995,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1083',2,'product_variation','',0),(1084,1,'2022-01-03 08:51:27','2022-01-03 08:51:27','','Pure Champa - 20 gm (Bulk Package)','Weight: 20 gm (Bulk Package)','publish','closed','closed','','pure-champa-20-gm-bulk-package','','','2022-01-03 08:52:21','2022-01-03 08:52:21','',995,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1084',3,'product_variation','',0),(1085,1,'2022-01-03 08:51:27','2022-01-03 08:51:27','','Pure Champa - 40 gm (Bulk Package)','Weight: 40 gm (Bulk Package)','publish','closed','closed','','pure-champa-40-gm-bulk-package','','','2022-01-03 08:52:21','2022-01-03 08:52:21','',995,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1085',4,'product_variation','',0),(1086,1,'2022-01-03 08:54:17','2022-01-03 08:54:17','','Pakeezah - 10 Sticks Tubes (Bulk Package)','Weight: 10 Sticks Tubes (Bulk Package)','publish','closed','closed','','pakeezah-10-sticks-tubes-bulk-package','','','2022-01-03 08:54:48','2022-01-03 08:54:48','',1000,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1086',1,'product_variation','',0),(1087,1,'2022-01-03 08:54:17','2022-01-03 08:54:17','','Pakeezah - 40 Sticks (Bulk Package)','Weight: 40 Sticks (Bulk Package)','publish','closed','closed','','pakeezah-40-sticks-bulk-package','','','2022-01-03 08:54:48','2022-01-03 08:54:48','',1000,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1087',2,'product_variation','',0),(1088,1,'2022-01-03 08:59:08','2022-01-03 08:59:08','','Kasturi - 20 Sticks (Bulk Package)','Weight: 20 Sticks (Bulk Package)','publish','closed','closed','','kasturi-20-sticks-bulk-package','','','2022-01-03 08:59:41','2022-01-03 08:59:41','',1005,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1088',1,'product_variation','',0),(1089,1,'2022-01-03 08:59:08','2022-01-03 08:59:08','','Kasturi - 40 Sticks (Bulk Package)','Weight: 40 Sticks (Bulk Package)','publish','closed','closed','','kasturi-40-sticks-bulk-package','','','2022-01-03 08:59:41','2022-01-03 08:59:41','',1005,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1089',2,'product_variation','',0),(1090,1,'2022-01-03 09:01:30','2022-01-03 09:01:30','','Rosa ultimo - 100 Sticks (Bulk Package)','Weight: 100 Sticks (Bulk Package)','publish','closed','closed','','rosa-ultimo-100-sticks-bulk-package','','','2022-01-03 09:01:50','2022-01-03 09:01:50','',1009,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1090',2,'product_variation','',0),(1091,1,'2022-01-03 09:03:14','2022-01-03 09:03:14','','Jasmine ultimo - 100 Sticks (Bulk Package)','Weight: 100 Sticks (Bulk Package)','publish','closed','closed','','jasmine-ultimo-100-sticks-bulk-package','','','2022-01-03 09:03:25','2022-01-03 09:03:25','',1012,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1091',2,'product_variation','',0),(1092,1,'2022-01-03 09:04:51','2022-01-03 09:04:51','','Lavender ultimo - 100 Sticks (Bulk Package)','Weight: 100 Sticks (Bulk Package)','publish','closed','closed','','lavender-ultimo-100-sticks-bulk-package','','','2022-01-03 09:05:03','2022-01-03 09:05:03','',1015,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1092',1,'product_variation','',0),(1093,1,'2022-01-03 09:06:07','2022-01-03 09:06:07','','Sandal ultimo - 100 Sticks (Bulk Package)','Weight: 100 Sticks (Bulk Package)','publish','closed','closed','','sandal-ultimo-100-sticks-bulk-package','','','2022-01-03 09:09:10','2022-01-03 09:09:10','',1019,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1093',1,'product_variation','',0),(1094,1,'2022-01-03 09:08:03','2022-01-03 09:08:03','','Lily ultimo - 100 Sticks (Bulk Package)','Weight: 100 Sticks (Bulk Package)','publish','closed','closed','','lily-ultimo-100-sticks-bulk-package','','','2022-01-03 09:08:23','2022-01-03 09:08:23','',1023,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1094',1,'product_variation','',0),(1095,1,'2022-01-03 09:39:59','2022-01-03 09:39:59','','Tapaz - 10 Sticks Copper','Weight: 10 Sticks Copper','publish','closed','closed','','tapaz-10-sticks-copper','','','2022-01-03 09:40:47','2022-01-03 09:40:47','',999,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1095',1,'product_variation','',0),(1096,1,'2022-01-03 09:39:59','2022-01-03 09:39:59','','Tapaz - 10 Sticks Copper (Bulk Package)','Weight: 10 Sticks Copper (Bulk Package)','publish','closed','closed','','tapaz-10-sticks-copper-bulk-package','','','2022-01-03 09:40:47','2022-01-03 09:40:47','',999,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1096',2,'product_variation','',0),(1097,1,'2022-01-03 09:39:59','2022-01-03 09:39:59','','Tapaz - 20 Sticks','Weight: 20 Sticks','publish','closed','closed','','tapaz-20-sticks','','','2022-01-03 09:40:48','2022-01-03 09:40:48','',999,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1097',3,'product_variation','',0),(1098,1,'2022-01-03 09:39:59','2022-01-03 09:39:59','','Tapaz - 20 Sticks (Bulk Package)','Weight: 20 Sticks (Bulk Package)','publish','closed','closed','','tapaz-20-sticks-bulk-package','','','2022-01-03 09:40:48','2022-01-03 09:40:48','',999,'http://demoweblinks.in/padmini/?post_type=product_variation&p=1098',4,'product_variation','',0),(1099,1,'2022-01-03 13:02:02','2022-01-03 13:02:02','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"100%\" height__sm=\"100%\" bg=\"920\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"54% 84%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"100%\" height__sm=\"500px\" bg=\"920\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"16% 50%\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\" visibility=\"hidden\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br>\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\" visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\" visibility=\"hidden\"]\n\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_product_categories style=\"normal\" image_hover=\"zoom\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"49% 47%\" dark=\"true\" padding__sm=\"0px\" height=\"300px\" height__sm=\"140px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2022-01-03 13:02:02','2022-01-03 13:02:02','',99,'http://demoweblinks.in/padmini/?p=1099',0,'revision','',0),(1101,1,'2022-01-03 13:11:50','2022-01-03 13:11:50','','Pure Jasmine','','inherit','open','closed','','pure-jasmine-2','','','2022-01-03 13:11:50','2022-01-03 13:11:50','',988,'http://demoweblinks.in/padmini/wp-content/uploads/2022/01/Pure-Jasmine.jpg',0,'attachment','image/jpeg',0),(1102,1,'2022-01-04 04:00:37','2022-01-04 04:00:37','','Pure Jasmine','','inherit','open','closed','','pure-jasmine-3','','','2022-01-04 04:00:37','2022-01-04 04:00:37','',988,'http://demoweblinks.in/padmini/wp-content/uploads/2022/01/Pure-Jasmine-1.jpg',0,'attachment','image/jpeg',0),(1103,1,'2022-01-04 04:01:05','2022-01-04 04:01:05','','Jasmine ultimo','Jasmine Ultimo is a fragrance as pure and fresh as nature that ease o stress and creates a cosy atmosphere. The fragrance has a distinct vibration that helps you with mood enhancement.\n<table>\n<tbody>\n\n\n<tr>\n<td>Expiry</td>\n<td>(Shelf Life)18 months from date of manufacturing</td>\n</tr>\n\n<tr>\n<td>Fragrances</td>\n<td>Exotic, Floral</td>\n</tr>\n</tbody>\n</table>\n','inherit','closed','closed','','1012-autosave-v1','','','2022-01-04 04:01:05','2022-01-04 04:01:05','',1012,'http://demoweblinks.in/padmini/?p=1103',0,'revision','',0),(1104,1,'2022-01-06 12:48:17','2022-01-06 12:48:17','','padmini logo','','inherit','open','closed','','padmini-logo','','','2022-01-06 12:48:17','2022-01-06 12:48:17','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2022/01/padmini-logo.png',0,'attachment','image/png',0),(1107,1,'2022-01-13 07:45:32','2022-01-13 07:45:32','','Order &ndash; January 13, 2022 @ 07:45 AM','','wc-completed','closed','closed','wc_order_f0mbScXPaBxZm','order-jan-13-2022-0745-am','','','2022-01-13 13:53:39','2022-01-13 13:53:39','',0,'http://demoweblinks.in/padmini/?post_type=shop_order&#038;p=1107',0,'shop_order','',2),(1114,1,'2022-04-01 13:40:03','2022-04-01 13:40:03','','WhatsApp Video 2022-04-01 at 10.52.47 AM','','inherit','open','closed','','whatsapp-video-2022-04-01-at-10-52-47-am','','','2022-04-01 13:40:03','2022-04-01 13:40:03','',0,'http://demoweblinks.in/padmini/wp-content/uploads/2022/04/WhatsApp-Video-2022-04-01-at-10.52.47-AM.mp4',0,'attachment','video/mp4',0),(1115,1,'2022-04-01 13:41:25','2022-04-01 13:41:25','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"100%\" height__sm=\"100%\" bg=\"920\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"54% 84%\" video_mp4=\"http://demoweblinks.in/padmini/wp-content/uploads/2022/04/WhatsApp-Video-2022-04-01-at-10.52.47-AM.mp4\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"100%\" height__sm=\"500px\" bg=\"920\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"16% 50%\" video_visibility=\"hidden\" visibility=\"hidden\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\" visibility=\"hidden\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\" visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\" visibility=\"hidden\"]\n\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_product_categories style=\"normal\" image_hover=\"zoom\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"49% 47%\" dark=\"true\" padding__sm=\"0px\" height=\"300px\" height__sm=\"140px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n[ux_video]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2022-04-01 13:41:25','2022-04-01 13:41:25','',99,'http://demoweblinks.in/padmini/?p=1115',0,'revision','',0),(1116,1,'2022-04-01 13:41:31','2022-04-01 13:41:31','<!-- wp:flatsome/uxbuilder -->\n[ux_slider]\n\n[ux_banner height=\"100%\" height__sm=\"100%\" bg=\"920\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"54% 84%\" video_mp4=\"http://demoweblinks.in/padmini/wp-content/uploads/2022/04/WhatsApp-Video-2022-04-01-at-10.52.47-AM.mp4\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"100%\" height__sm=\"500px\" bg=\"920\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"16% 50%\" video_visibility=\"hidden\" visibility=\"hidden\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" height__sm=\"500px\" bg=\"615\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"51% 42%\" visibility=\"hidden\"]\n\n[text_box width=\"32\" width__sm=\"80\" scale=\"91\" scale__sm=\"91\" animate=\"fadeInLeft\" position_x=\"100\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"90\"]\n\n[ux_image id=\"613\" width=\"86\" width__sm=\"45\" margin=\"px 100px 0px 100px\"]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\" visibility=\"hidden\"]\n\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n[ux_image]\n\n[ux_text visibility=\"hidden\"]\n\n<h3 class=\"alt-font\">A Nice top title</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\n<p class=\"lead\">This can easily be edited in the page builder.</p>\n[/ux_text]\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" expand=\"0\" visibility=\"hidden\"]\n\n[button text=\"Explore Products\" letter_case=\"lowercase\" color=\"secondary\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\" visibility=\"hidden\"]\n\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">It has Finally started...</h3>\n[divider margin=\"3px\"]\n\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\n[divider]\n\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\n\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Mens&nbsp;Clothing</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\n<h3><strong>From 19$</strong></h3>\n[divider]\n\n[button text=\"Shop now\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"18\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\" visibility=\"hidden\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">Shop Now</h3>\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\n[divider align=\"left\"]\n\n[button text=\"Shop Men\" style=\"outline\"]\n\n[button text=\"Shop Women\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row visibility=\"hidden\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Our&nbsp;Blog</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" hover=\"zoom-fade\" link=\"http://demoweblinks.in:8888/test/blog/\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">Join our<br />\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"18\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[section bg=\"627\" bg_size=\"original\"]\n\n[row padding=\"50px 0px 0px 0px\"]\n\n[col span__sm=\"12\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>About Padmini</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Padmini Products Private Limited is a leading manufacturer of Agarbathies/Incense and Dhoop sticks. The company was started in the year 1952 as a proprietorship concern by Sri. Nagaraj.N.Vemulkar and was converted into a partnership firm in the year 1973. The firm was later converted into a private limited company on January 30, 2004 with all the erstwhile partners of the firm becoming Directors in Padmini Products Private Limited .</p>\n[/ux_text]\n[button text=\"Read More\" letter_case=\"lowercase\" color=\"secondary\" padding=\"0px 50px 0px 50px\" radius=\"99\" class=\"home-button\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[row v_align=\"middle\" padding=\"50px 0px 0px 0px\" visibility=\"hidden\"]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"388\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>PREMIUM</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" expand=\"0\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"389\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>AGARBATHI</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"390\" image_height=\"400px\" image_overlay=\"rgba(142, 72, 2, 0.39)\" text_pos=\"middle\"]\n\n<h4>DHOOPS</h4>\n<p>COLLECTIONS</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image_box style=\"overlay\" img=\"391\" image_height=\"400px\" image_overlay=\"rgba(24, 21, 21, 0.448)\" text_pos=\"middle\"]\n\n<h4>FRAGRANCE</h4>\n<p>COLLECTION</p>\n[button text=\"Explore Now\" letter_case=\"lowercase\" color=\"white\" radius=\"99\" class=\"home-explore-button\"]\n\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"weekly featured products\" visibility=\"hidden\"]\n\n[ux_products products=\"14\" show=\"featured\" visibility=\"hidden\"]\n\n[section]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[ux_product_categories style=\"normal\" image_hover=\"zoom\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[title style=\"center\" text=\"New Products\" tag_name=\"h2\" color=\"rgb(210, 24, 18)\" class=\"home-product-tile\"]\n\n[ux_products show_quick_view=\"0\" equalize_box=\"true\" class=\"front-product\"]\n\n[title style=\"center\" text=\"Browse our categories\" visibility=\"hidden\"]\n\n[ux_product_categories number=\"20\" visibility=\"hidden\"]\n\n[gap height=\"40px\"]\n\n[row col_style=\"divided\" visibility=\"hidden\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>Get Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"17\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" margin=\"0px 0px 0px 0px\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\"]\n\n<p>We pay these fees so you donâ€™t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[gap height=\"40px\"]\n\n[section label=\"Call to Action\" bg=\"635\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"49% 47%\" dark=\"true\" padding__sm=\"0px\" height=\"300px\" height__sm=\"140px\"]\n\n[row]\n\n[col span__sm=\"12\" span__md=\"12\"]\n\n[gap]\n\n[ux_text text_align=\"center\" visibility=\"hidden\"]\n\n<h6>Up to 50% off</h6>\n[/ux_text]\n[ux_text font_size=\"1.75\" text_align=\"center\" visibility=\"hidden\"]\n\n<h2>Mega sale starts now</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Testimonials\" bg_color=\"rgb(224, 225, 227)\" padding=\"80px\"]\n\n[row label=\"Title\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n[ux_text text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Testimonials</h2>\n[/ux_text]\n\n[/col]\n\n[/row]\n[row label=\"Testimonials\" padding=\"50px 50px 30px 50px\" padding__sm=\"30px 30px 30px 30px\"]\n\n[col span__sm=\"12\" bg_color=\"rgb(255,255,255)\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" arrows=\"false\" nav_color=\"dark\" bullet_style=\"square\" timer=\"3000\"]\n\n[row_inner label=\"Testimonial 1\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"353\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kirstin W. Everton</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"352\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n[ux_text text_align=\"left\"]\n\n<h4 style=\"margin-bottom: 0px;\">Kimberly Mason</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n[/ux_text]\n\n[/col_inner]\n\n[/row_inner]\n[row_inner label=\"Testimonial 2\" style=\"large\"]\n\n[col_inner span=\"4\" span__sm=\"12\" padding=\"15px 0px 0px 0px\"]\n\n[ux_image id=\"354\"]\n\n\n[/col_inner]\n[col_inner span=\"8\" span__sm=\"12\"]\n\n[row_inner_1 style=\"collapse\"]\n\n[col_inner_1 span__sm=\"12\" margin=\"0px 0px -50px 0px\" animate=\"bounceInUp\"]\n\n<h2><span style=\"font-size: 300% ;color:#d55934\" ;=\"\" \"=\"\">â€œ</span></h2>\n\n[/col_inner_1]\n\n[/row_inner_1]\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In est sem, ultrices ornare molestie sit amet, placerat vel arcu. Phasellus quis massa id sem pretium dictum. Donec sed sollicitudin est, sit amet eleifend ipsum. Vivamus nec pretium turpis.\"</p>\n[gap height=\"10px\"]\n\n<h4 style=\"margin-bottom: 0px;\">Jack Johnson</h4>\n<h2><span style=\"font-size: 300% ;color:#d55934 ;padding-left: 150px;\">â€</span></h2>\n\n[/col_inner]\n\n[/row_inner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]\n\n[/section]\n[gap height=\"40px\"]\n\n[ux_text text_align=\"center\" text_color=\"rgb(210, 24, 18)\"]\n\n<h2>Blogs</h2>\n[/ux_text]\n[ux_text text_align=\"center\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\n[/ux_text]\n[blog_posts style=\"overlay\" columns=\"3\" columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" show_date=\"false\" image_height=\"100%\" text_align=\"left\" text_bg=\"rgba(211, 6, 1, 0.43)\"]\n\n[section label=\"Brands\" padding=\"20px\" visibility=\"hidden\"]\n\n[row style=\"small\" col_bg=\"rgb(255,255,255)\" width=\"full-width\" padding=\"50px 50px 30px 50px\" depth=\"1\" depth_hover=\"4\"]\n\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"368\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"367\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"365\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"366\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"2\" span__sm=\"12\"]\n\n[ux_banner height=\"56.25%\" bg=\"364\" bg_color=\"rgb(255,255,255)\" link=\"#\"]\n\n[text_box width__sm=\"60\" position_x=\"50\" position_y=\"50\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n\n[/section]\n[section visibility=\"hidden\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span__sm=\"12\"]\n\n[ux_slider slide_align=\"left\" freescroll=\"true\" parallax=\"10\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n[logo hover=\"color\"]\n\n\n[/ux_slider]\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_image id=\"638\"]\n\n\n<!-- /wp:flatsome/uxbuilder -->','Classic Shop','','inherit','closed','closed','','99-revision-v1','','','2022-04-01 13:41:31','2022-04-01 13:41:31','',99,'http://demoweblinks.in/padmini/?p=1116',0,'revision','',0),(1117,1,'2022-05-16 10:11:19','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2022-05-16 10:11:19','0000-00-00 00:00:00','',0,'https://demoweblinks.in/padmini/?p=1117',0,'post','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_social_users`
--

DROP TABLE IF EXISTS `wp_social_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_social_users` (
  `social_users_id` int(11) NOT NULL AUTO_INCREMENT,
  `ID` int(11) NOT NULL,
  `type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `identifier` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
  `register_date` datetime DEFAULT NULL,
  `login_date` datetime DEFAULT NULL,
  `link_date` datetime DEFAULT NULL,
  PRIMARY KEY (`social_users_id`),
  KEY `ID` (`ID`,`type`),
  KEY `identifier` (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_social_users`
--

LOCK TABLES `wp_social_users` WRITE;
/*!40000 ALTER TABLE `wp_social_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_social_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_relationships`
--

DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_relationships`
--

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (20,1,0),(21,1,0),(22,1,0),(23,16,0),(23,17,0),(24,16,0),(24,18,0),(24,19,0),(24,20,0),(24,21,0),(25,16,0),(25,18,0),(25,19,0),(25,20,0),(25,21,0),(26,16,0),(27,16,0),(224,64,0),(225,65,0),(226,65,0),(227,65,0),(228,65,0),(229,65,0),(230,65,0),(231,64,0),(233,67,0),(234,67,0),(235,67,0),(237,67,0),(238,67,0),(239,67,0),(240,67,0),(241,67,0),(242,67,0),(243,67,0),(245,67,0),(246,67,0),(247,67,0),(248,67,0),(249,67,0),(250,67,0),(251,67,0),(252,67,0),(253,67,0),(254,67,0),(255,66,0),(256,66,0),(258,67,0),(259,67,0),(260,67,0),(261,67,0),(262,67,0),(263,67,0),(264,67,0),(265,67,0),(266,67,0),(267,67,0),(268,67,0),(515,70,0),(516,70,0),(517,70,0),(519,70,0),(522,70,0),(523,70,0),(835,66,0),(836,66,0),(837,66,0),(838,74,0),(839,74,0),(840,74,0),(841,74,0),(842,74,0),(850,4,0),(850,68,0),(850,77,0),(850,82,0),(850,83,0),(850,85,0),(850,93,0),(850,100,0),(850,101,0),(850,102,0),(850,103,0),(850,104,0),(852,4,0),(852,77,0),(852,86,0),(852,87,0),(852,105,0),(852,106,0),(855,4,0),(855,77,0),(855,88,0),(855,113,0),(860,4,0),(860,68,0),(860,77,0),(860,82,0),(860,83,0),(860,85,0),(860,89,0),(860,93,0),(860,100,0),(860,101,0),(860,102,0),(860,103,0),(860,104,0),(860,114,0),(866,4,0),(866,77,0),(866,86,0),(866,87,0),(866,90,0),(866,93,0),(866,101,0),(866,105,0),(866,106,0),(866,110,0),(872,4,0),(872,68,0),(872,78,0),(872,83,0),(872,85,0),(872,93,0),(872,100,0),(872,101,0),(872,102,0),(872,104,0),(878,4,0),(878,68,0),(878,78,0),(878,102,0),(884,4,0),(884,78,0),(884,87,0),(884,105,0),(892,4,0),(892,68,0),(892,78,0),(892,83,0),(892,85,0),(892,89,0),(892,91,0),(892,93,0),(892,100,0),(892,101,0),(892,102,0),(892,104,0),(892,112,0),(892,114,0),(909,70,0),(910,70,0),(914,70,0),(915,70,0),(916,70,0),(975,4,0),(975,68,0),(975,79,0),(975,82,0),(975,83,0),(975,85,0),(975,89,0),(975,92,0),(975,93,0),(975,100,0),(975,101,0),(975,102,0),(975,103,0),(975,104,0),(975,109,0),(975,114,0),(983,4,0),(983,79,0),(983,86,0),(983,87,0),(983,93,0),(983,101,0),(983,105,0),(983,106,0),(988,4,0),(988,79,0),(988,83,0),(988,94,0),(988,95,0),(988,104,0),(988,116,0),(988,117,0),(990,4,0),(990,79,0),(990,83,0),(990,94,0),(990,95,0),(990,104,0),(990,116,0),(990,117,0),(995,4,0),(995,79,0),(995,84,0),(995,94,0),(995,95,0),(995,116,0),(995,117,0),(995,121,0),(999,4,0),(999,80,0),(999,98,0),(999,118,0),(999,122,0),(999,123,0),(1000,4,0),(1000,80,0),(1000,96,0),(1000,97,0),(1000,107,0),(1000,111,0),(1005,4,0),(1005,80,0),(1005,97,0),(1005,98,0),(1005,107,0),(1005,118,0),(1009,4,0),(1009,81,0),(1009,88,0),(1009,113,0),(1012,4,0),(1012,81,0),(1012,88,0),(1012,113,0),(1015,4,0),(1015,81,0),(1015,88,0),(1015,113,0),(1019,4,0),(1019,81,0),(1019,88,0),(1019,113,0),(1023,4,0),(1023,81,0),(1023,88,0),(1023,113,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_taxonomy`
--

DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=124 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_taxonomy`
--

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,3),(2,2,'product_type','',0,0),(3,3,'product_type','',0,0),(4,4,'product_type','',0,22),(5,5,'product_type','',0,0),(6,6,'product_visibility','',0,0),(7,7,'product_visibility','',0,0),(8,8,'product_visibility','',0,0),(9,9,'product_visibility','',0,0),(10,10,'product_visibility','',0,0),(11,11,'product_visibility','',0,0),(12,12,'product_visibility','',0,0),(13,13,'product_visibility','',0,0),(14,14,'product_visibility','',0,0),(15,15,'product_cat','',0,0),(16,16,'category','',0,5),(17,17,'post_format','',0,1),(18,18,'post_tag','',0,2),(19,19,'post_tag','',0,2),(20,20,'post_tag','',0,2),(21,21,'post_tag','',0,2),(24,24,'product_tag','',0,0),(25,25,'product_tag','',0,0),(26,26,'product_tag','',0,0),(27,27,'product_tag','',0,0),(29,29,'product_tag','',0,0),(30,30,'product_tag','',0,0),(31,31,'product_tag','',0,0),(37,37,'product_tag','',0,0),(38,38,'product_tag','',0,0),(39,39,'product_tag','',0,0),(40,40,'product_tag','',0,0),(41,41,'product_tag','',0,0),(42,42,'product_tag','',0,0),(43,43,'product_tag','',0,0),(44,44,'product_tag','',0,0),(46,46,'product_tag','',0,0),(47,47,'product_tag','',0,0),(48,48,'product_tag','',0,0),(49,49,'product_tag','',0,0),(50,50,'product_tag','',0,0),(51,51,'product_tag','',0,0),(52,52,'product_tag','',0,0),(53,53,'product_tag','',0,0),(54,54,'product_tag','',0,0),(55,55,'product_tag','',0,0),(62,62,'product_tag','',0,0),(63,63,'product_tag','',0,0),(64,64,'featured_item_category','',0,2),(65,65,'featured_item_category','',0,6),(66,66,'nav_menu','',0,5),(67,67,'nav_menu','',0,31),(68,68,'pa_weight','',0,6),(69,69,'pa_weight','',0,0),(70,70,'nav_menu','',0,11),(71,71,'product_cat','',0,0),(72,72,'product_tag','',0,0),(73,73,'product_tag','',0,0),(74,74,'nav_menu','',0,5),(75,75,'pa_weight','',0,0),(76,76,'pa_weight','',0,0),(77,77,'product_cat','',0,5),(78,78,'product_cat','',0,4),(79,79,'product_cat','',0,5),(80,80,'product_cat','',0,3),(81,81,'product_cat','',0,5),(82,82,'pa_weight','',0,3),(83,83,'pa_weight','',0,7),(84,84,'pa_weight','',0,1),(85,85,'pa_weight','',0,5),(86,86,'pa_weight','',0,3),(87,87,'pa_weight','',0,4),(88,88,'pa_weight','',0,6),(89,89,'pa_weight','',0,3),(90,90,'pa_weight','',0,1),(91,91,'pa_weight','',0,1),(92,92,'pa_weight','',0,1),(93,93,'pa_weight','',0,7),(94,94,'pa_weight','',0,3),(95,95,'pa_weight','',0,3),(96,96,'pa_weight','',0,1),(97,97,'pa_weight','',0,2),(98,98,'pa_weight','',0,2),(99,99,'pa_weight','',0,0),(100,100,'pa_weight','',0,5),(101,101,'pa_weight','',0,7),(102,102,'pa_weight','',0,6),(103,103,'pa_weight','',0,3),(104,104,'pa_weight','',0,7),(105,105,'pa_weight','',0,4),(106,106,'pa_weight','',0,3),(107,107,'pa_weight','',0,2),(108,108,'pa_weight','',0,0),(109,109,'pa_weight','',0,1),(110,110,'pa_weight','',0,1),(111,111,'pa_weight','',0,1),(112,112,'pa_weight','',0,1),(113,113,'pa_weight','',0,6),(114,114,'pa_weight','',0,3),(115,115,'pa_weight','',0,0),(116,116,'pa_weight','',0,3),(117,117,'pa_weight','',0,3),(118,118,'pa_weight','',0,2),(119,119,'pa_weight','',0,0),(120,120,'pa_weight','',0,0),(121,121,'pa_weight','',0,1),(122,122,'pa_weight','',0,1),(123,123,'pa_weight','',0,1);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_termmeta`
--

DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=137 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_termmeta`
--

LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
INSERT INTO `wp_termmeta` VALUES (5,24,'product_count_product_tag','0'),(6,25,'product_count_product_tag','0'),(7,26,'product_count_product_tag','0'),(8,27,'product_count_product_tag','0'),(11,29,'product_count_product_tag','0'),(12,30,'product_count_product_tag','0'),(13,31,'product_count_product_tag','0'),(24,37,'product_count_product_tag','0'),(25,38,'product_count_product_tag','0'),(26,39,'product_count_product_tag','0'),(27,40,'product_count_product_tag','0'),(28,41,'product_count_product_tag','0'),(29,42,'product_count_product_tag','0'),(30,43,'product_count_product_tag','0'),(31,44,'product_count_product_tag','0'),(34,46,'product_count_product_tag','0'),(35,47,'product_count_product_tag','0'),(36,48,'product_count_product_tag','0'),(37,49,'product_count_product_tag','0'),(38,50,'product_count_product_tag','0'),(39,51,'product_count_product_tag','0'),(40,52,'product_count_product_tag','0'),(41,53,'product_count_product_tag','0'),(42,54,'product_count_product_tag','0'),(43,55,'product_count_product_tag','0'),(56,62,'product_count_product_tag','0'),(57,63,'product_count_product_tag','0'),(58,68,'order_pa_weight','0'),(59,69,'order_pa_weight','0'),(60,15,'product_count_product_cat','0'),(61,71,'order','0'),(62,71,'product_count_product_cat','0'),(63,72,'product_count_product_tag','0'),(64,73,'product_count_product_tag','0'),(65,75,'order_pa_weight','0'),(66,76,'order_pa_weight','0'),(67,77,'order','0'),(68,77,'product_count_product_cat','5'),(69,78,'order','0'),(70,78,'product_count_product_cat','4'),(71,71,'cat_meta','a:3:{s:10:\"cat_header\";s:0:\"\";s:10:\"cat_footer\";s:0:\"\";s:17:\"cat_product_block\";s:0:\"\";}'),(72,71,'display_type',''),(73,71,'thumbnail_id','964'),(74,78,'cat_meta','a:3:{s:10:\"cat_header\";s:0:\"\";s:10:\"cat_footer\";s:0:\"\";s:17:\"cat_product_block\";s:0:\"\";}'),(75,78,'display_type',''),(76,78,'thumbnail_id','912'),(77,77,'cat_meta','a:3:{s:10:\"cat_header\";s:0:\"\";s:10:\"cat_footer\";s:0:\"\";s:17:\"cat_product_block\";s:0:\"\";}'),(78,77,'display_type',''),(79,77,'thumbnail_id','911'),(80,79,'order','0'),(81,79,'product_count_product_cat','5'),(82,80,'order','0'),(83,80,'product_count_product_cat','3'),(84,81,'order','0'),(85,81,'product_count_product_cat','5'),(86,81,'cat_meta','a:3:{s:10:\"cat_header\";s:0:\"\";s:10:\"cat_footer\";s:0:\"\";s:17:\"cat_product_block\";s:0:\"\";}'),(87,81,'display_type',''),(88,81,'thumbnail_id','391'),(89,79,'cat_meta','a:3:{s:10:\"cat_header\";s:0:\"\";s:10:\"cat_footer\";s:0:\"\";s:17:\"cat_product_block\";s:0:\"\";}'),(90,79,'display_type',''),(91,79,'thumbnail_id','966'),(92,80,'cat_meta','a:3:{s:10:\"cat_header\";s:0:\"\";s:10:\"cat_footer\";s:0:\"\";s:17:\"cat_product_block\";s:0:\"\";}'),(93,80,'display_type',''),(94,80,'thumbnail_id','967'),(95,82,'order_pa_weight','0'),(96,83,'order_pa_weight','0'),(97,84,'order_pa_weight','0'),(98,85,'order_pa_weight','0'),(99,86,'order_pa_weight','0'),(100,87,'order_pa_weight','0'),(101,88,'order_pa_weight','0'),(102,89,'order_pa_weight','0'),(103,90,'order_pa_weight','0'),(104,91,'order_pa_weight','0'),(105,92,'order_pa_weight','0'),(106,93,'order_pa_weight','0'),(107,94,'order_pa_weight','0'),(108,95,'order_pa_weight','0'),(109,96,'order_pa_weight','0'),(110,97,'order_pa_weight','0'),(111,98,'order_pa_weight','0'),(112,99,'order_pa_weight','0'),(113,100,'order_pa_weight','0'),(114,101,'order_pa_weight','0'),(115,102,'order_pa_weight','0'),(116,103,'order_pa_weight','0'),(117,104,'order_pa_weight','0'),(118,105,'order_pa_weight','0'),(119,106,'order_pa_weight','0'),(120,107,'order_pa_weight','0'),(121,108,'order_pa_weight','0'),(122,109,'order_pa_weight','0'),(123,110,'order_pa_weight','0'),(124,111,'order_pa_weight','0'),(125,112,'order_pa_weight','0'),(126,113,'order_pa_weight','0'),(127,114,'order_pa_weight','0'),(128,115,'order_pa_weight','0'),(129,116,'order_pa_weight','0'),(130,117,'order_pa_weight','0'),(131,118,'order_pa_weight','0'),(132,119,'order_pa_weight','0'),(133,120,'order_pa_weight','0'),(134,121,'order_pa_weight','0'),(135,122,'order_pa_weight','0'),(136,123,'order_pa_weight','0');
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_terms`
--

DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=124 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_terms`
--

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'simple','simple',0),(3,'grouped','grouped',0),(4,'variable','variable',0),(5,'external','external',0),(6,'exclude-from-search','exclude-from-search',0),(7,'exclude-from-catalog','exclude-from-catalog',0),(8,'featured','featured',0),(9,'outofstock','outofstock',0),(10,'rated-1','rated-1',0),(11,'rated-2','rated-2',0),(12,'rated-3','rated-3',0),(13,'rated-4','rated-4',0),(14,'rated-5','rated-5',0),(15,'Uncategorized','uncategorized',0),(16,'Style','style',0),(17,'Video','post-format-video',0),(18,'brooklyn','brooklyn',0),(19,'fashion','fashion',0),(20,'style','style-2',0),(21,'women','women-3',0),(24,'jeans','jeans-2',0),(25,'man','man',0),(26,'t-shirt','t-shirt',0),(27,'white','white',0),(29,'Diesel','diesel',0),(30,'shoe','shoe',0),(31,'stars','stars',0),(37,'fit','fit',0),(38,'levis','levis',0),(39,'party','party',0),(40,'washed-out','washed-out',0),(41,'women','women-2',0),(42,'River Island','river-island',0),(43,'Jack and Jones','jack-and-jones',0),(44,'Lee','lee',0),(46,'bag','bag',0),(47,'classic','classic',0),(48,'leather','leather',0),(49,'sweden','sweden',0),(50,'green','green',0),(51,'nypd','nypd',0),(52,'Converse','converse',0),(53,'rock chick','rock-chick',0),(54,'vans','vans',0),(55,'run','run',0),(62,'Jumper','jumper',0),(63,'Pink','pink',0),(64,'Lookbook','lookbook',0),(65,'Design','design',0),(66,'Secondary','secondary',0),(67,'Main','main',0),(68,'100 gm','100-gm',0),(69,'200 gm','200-gm',0),(70,'Padmini Menu','padmini-menu',0),(71,'Dhoops','dhoops',0),(72,'sandals','sandals',0),(73,'agarbathi','agarbathi',0),(74,'Footer menu 2','footer-menu-2',0),(75,'25 gm','25-gm',0),(76,'500 gm','500-gm',0),(77,'Charms','charms',0),(78,'Fragrance','fragrance',0),(79,'Floral','floral',0),(80,'Divine','divine',0),(81,'Ultimo','ultimo',0),(82,'240 gm','240-gm',0),(83,'35 gm','35-gm',0),(84,'40 gm','40-gm',0),(85,'13 gm Flat','13-gm-flat',0),(86,'8 Sticks Flat','8-sticks-flat',0),(87,'50 Sticks','50-sticks',0),(88,'100 Sticks','100-sticks',0),(89,'125 gm','125-gm',0),(90,'10 Sticks 50 POU','10-sticks-50-pou',0),(91,'100 gm Flat','100-gm-flat',0),(92,'6 Sticks','6-sticks',0),(93,'Hexa','hexa',0),(94,'150 gm','150-gm',0),(95,'20 gm','20-gm',0),(96,'10 Sticks Tubes','10-sticks-tubes',0),(97,'40 Sticks','40-sticks',0),(98,'20 Sticks','20-sticks',0),(99,'15 Sticks','15-sticks',0),(100,'13 gm Flat (Bluk Package)','13-gm-flat-bluk-package',0),(101,'Hexa (Bulk Package)','hexa-bulk-package',0),(102,'100 gm (Bulk Package)','100-gm-bulk-package',0),(103,'240 gm (Bulk Package)','240-gm-bulk-package',0),(104,'35 gm (Bulk Package)','35-gm-bulk-package',0),(105,'50 sticks (Bulk Package)','50-sticks-bulk-package',0),(106,'8 Sticks Flat (Bulk Package)','8-sticks-flat-bulk-package',0),(107,'40 Sticks (Bulk Package)','40-sticks-bulk-package',0),(108,'500 gm (Bulk Package)','500-gm-bulk-package',0),(109,'6 sticks (Bulk Package)','6-sticks-bulk-package',0),(110,'10 Sticks 50 POU (Bulk Package)','10-sticks-50-pou-bulk-package',0),(111,'10 Sticks Tubes (Bulk Package)','10-sticks-tubes-bulk-package',0),(112,'100 gm Flat (Bulk Package)','100-gm-flat-bulk-package',0),(113,'100 Sticks (Bulk Package)','100-sticks-bulk-package',0),(114,'125 gm (Bulk Package)','125-gm-bulk-package',0),(115,'15 Sticks (Bulk Package)','15-sticks-bulk-package',0),(116,'150 gm (Bulk Package)','150-gm-bulk-package',0),(117,'20 gm (Bulk Package)','20-gm-bulk-package',0),(118,'20 Sticks (Bulk Package)','20-sticks-bulk-package',0),(119,'200 gm (Bulk Package)','200-gm-bulk-package',0),(120,'25 gm (Bulk Package)','25-gm-bulk-package',0),(121,'40 gm (Bulk Package)','40-gm-bulk-package',0),(122,'10 Sticks Copper','10-sticks-copper',0),(123,'10 Sticks Copper (Bulk Package)','10-sticks-copper-bulk-package',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_usermeta`
--

DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=146 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_usermeta`
--

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','admin'),(2,1,'first_name','sonu'),(3,1,'last_name','s'),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers','theme_editor_notice'),(15,1,'show_welcome_panel','1'),(17,1,'wp_dashboard_quick_press_last_post_id','1117'),(18,1,'_woocommerce_tracks_anon_id','woo:8sE9Pbs9YxA/oP1SjTCr9kgf'),(19,1,'wc_last_active','1652659200'),(24,1,'wp_user-settings','libraryContent=browse&editor=html&posts_list_mode=list'),(25,1,'wp_user-settings-time','1652698344'),(29,1,'last_update','1642082045'),(30,1,'woocommerce_admin_activity_panel_inbox_last_read','1642082041752'),(31,1,'closedpostboxes_page','a:0:{}'),(32,1,'metaboxhidden_page','a:0:{}'),(35,1,'nav_menu_recently_edited','70'),(36,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(37,1,'metaboxhidden_nav-menus','a:10:{i:0;s:20:\"add-post-type-blocks\";i:1;s:21:\"add-post-type-product\";i:2;s:27:\"add-post-type-featured_item\";i:3;s:12:\"add-post_tag\";i:4;s:15:\"add-post_format\";i:5;s:20:\"add-block_categories\";i:6;s:15:\"add-product_cat\";i:7;s:15:\"add-product_tag\";i:8;s:26:\"add-featured_item_category\";i:9;s:21:\"add-featured_item_tag\";}'),(39,1,'community-events-location','a:1:{s:2:\"ip\";s:20:\"2409:4073:313:5f6c::\";}'),(43,1,'billing_first_name','sonu'),(44,1,'billing_last_name','s'),(45,1,'billing_company','amekA'),(46,1,'billing_address_1','THACHUKUNNEL KUNNEKAL PO VALAKOM'),(47,1,'billing_address_2','VALAKOM'),(48,1,'billing_city','Fort Kochi'),(49,1,'billing_state','KL'),(50,1,'billing_postcode','682316'),(51,1,'billing_country','IN'),(52,1,'billing_email','sonuvalakam@gmail.com'),(53,1,'billing_phone','+919447727591'),(54,1,'shipping_method',''),(72,1,'closedpostboxes_product','a:0:{}'),(73,1,'metaboxhidden_product','a:2:{i:1;s:10:\"postcustom\";i:2;s:7:\"slugdiv\";}'),(78,1,'meta-box-order_product','a:3:{s:4:\"side\";s:84:\"submitdiv,product_catdiv,tagsdiv-product_tag,postimagediv,woocommerce-product-images\";s:6:\"normal\";s:68:\"postexcerpt,woocommerce-product-data,,postcustom,slugdiv,commentsdiv\";s:8:\"advanced\";s:0:\"\";}'),(79,1,'screen_layout_product','2'),(82,1,'dismissed_no_secure_connection_notice','1'),(85,1,'closedpostboxes_dashboard','a:1:{i:0;s:21:\"dashboard_site_health\";}'),(86,1,'metaboxhidden_dashboard','a:0:{}'),(91,1,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:1:{s:32:\"0fd9521db394bc7f9cd5b4b2c86de647\";a:11:{s:3:\"key\";s:32:\"0fd9521db394bc7f9cd5b4b2c86de647\";s:10:\"product_id\";i:1000;s:12:\"variation_id\";i:1086;s:9:\"variation\";a:1:{s:19:\"attribute_pa_weight\";s:28:\"10-sticks-tubes-bulk-package\";}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"041d6aa84bb3b3c8286d88164a225a6e\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:600;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:600;s:8:\"line_tax\";i:0;}}}'),(123,1,'paying_customer','1'),(124,1,'_order_count','5'),(125,1,'_last_order','1107'),(126,4,'nickname','sonu'),(127,4,'first_name','sonu'),(128,4,'last_name','s'),(129,4,'description',''),(130,4,'rich_editing','true'),(131,4,'syntax_highlighting','true'),(132,4,'comment_shortcuts','false'),(133,4,'admin_color','fresh'),(134,4,'use_ssl','0'),(135,4,'show_admin_bar_front','true'),(136,4,'locale',''),(137,4,'wp_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(138,4,'wp_user_level','0'),(139,4,'dismissed_wp_pointers',''),(140,4,'last_update','1642082707'),(143,1,'session_tokens','a:1:{s:64:\"220fe03b44bbdda1d2a6f27968d6ca3a90e7d2bebb3bd34a124a4b11fc602548\";a:4:{s:10:\"expiration\";i:1652871165;s:2:\"ip\";s:38:\"2409:4073:313:5f6c:e010:2634:43b1:38cc\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\";s:5:\"login\";i:1652698365;}}'),(145,1,'wfls-last-login','1652698366');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_users`
--

DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT '0',
  `display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_users`
--

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'admin','$P$BbnaRZ9gvcOMAJwaaNgkH1LAgnyPzT.','admin','sonuvalakam@gmail.com','http://demoweblinks.in/padmini','2021-11-30 11:28:50','',0,'admin'),(4,'sonu','$P$BrAP9djy1.rLB3sgF6G4JiDezBdJG2/','sonu','sonus90@outlook.com','','2022-01-13 14:01:53','1642082707:$P$BWqEdBJtOqwplLRyiHpMtsas89KlAg.',0,'sonu s');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_admin_note_actions`
--

DROP TABLE IF EXISTS `wp_wc_admin_note_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_admin_note_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `note_id` bigint(20) unsigned NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `query` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_primary` tinyint(1) NOT NULL DEFAULT '0',
  `actioned_text` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `nonce_action` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `nonce_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `note_id` (`note_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2097 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_admin_note_actions`
--

LOCK TABLES `wp_wc_admin_note_actions` WRITE;
/*!40000 ALTER TABLE `wp_wc_admin_note_actions` DISABLE KEYS */;
INSERT INTO `wp_wc_admin_note_actions` VALUES (33,31,'notify-refund-returns-page','Edit page','http://demoweblinks.in/padmini/wp-admin/post.php?post=12&action=edit','actioned',0,'',NULL,NULL),(34,32,'connect','Connect','?page=wc-addons&section=helper','unactioned',0,'',NULL,NULL),(67,33,'learn-more','Learn more','https://docs.woocommerce.com/document/variable-product/?utm_source=inbox&utm_medium=product','actioned',0,'',NULL,NULL),(68,34,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-analytics/?utm_medium=product#variations-report','actioned',0,'',NULL,NULL),(69,35,'visit-the-theme-marketplace','Visit the theme marketplace','https://woocommerce.com/product-category/themes/?utm_source=inbox&utm_medium=product','actioned',0,'',NULL,NULL),(70,36,'affirm-insight-first-product-and-payment','Yes','','actioned',0,'Thanks for your feedback',NULL,NULL),(71,36,'affirm-insight-first-product-and-payment','No','','actioned',0,'Thanks for your feedback',NULL,NULL),(72,37,'day-after-first-product','Learn more','https://docs.woocommerce.com/document/woocommerce-customizer/?utm_source=inbox&utm_medium=product','actioned',0,'',NULL,NULL),(73,38,'first-downloadable-product-handling','Learn more','https://docs.woocommerce.com/document/digital-downloadable-product-handling/?utm_source=inbox&utm_medium=product','actioned',0,'',NULL,NULL),(138,39,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_medium=product','actioned',0,'',NULL,NULL),(203,40,'view-payment-gateways','Learn more','https://woocommerce.com/product-category/woocommerce-extensions/payment-gateways/?utm_medium=product','actioned',1,'',NULL,NULL),(204,41,'open-marketing-hub','Open marketing hub','http://demoweblinks.in/padmini/wp-admin/admin.php?page=wc-admin&path=/marketing','actioned',0,'',NULL,NULL),(397,42,'tracking-opt-in','Activate usage tracking','','actioned',1,'',NULL,NULL),(400,44,'affirm-insight-first-sale','Yes','','actioned',0,'Thanks for your feedback',NULL,NULL),(401,44,'deny-insight-first-sale','No','','actioned',0,'Thanks for your feedback',NULL,NULL),(626,45,'learn-more','Learn more','https://docs.woocommerce.com/document/managing-orders/?utm_source=inbox&utm_medium=product','actioned',0,'',NULL,NULL),(1613,22,'get-woo-commerce-payments','Get WooCommerce Payments','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,'',NULL,NULL),(1614,23,'get-woocommerce-payments','Get WooCommerce Payments','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,'',NULL,NULL),(1628,1,'stripe_applepay_holiday2021','Accept Apple Pay','https://woocommerce.com/apple-pay/','actioned',1,'',NULL,NULL),(1629,2,'square_applepay_holiday2021','Accept Apple Pay','https://woocommerce.com/apple-pay/','actioned',1,'',NULL,NULL),(1630,3,'wcpay_applepay_holiday2021','Accept Apple Pay','https://woocommerce.com/apple-pay/','actioned',1,'',NULL,NULL),(1659,47,'wc_simple_payments_m2_reader_launch_q1_2022','Learn more','https://woocommerce.com/in-person-payments/','actioned',0,'',NULL,NULL),(1664,52,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned',0,'',NULL,NULL),(1693,48,'wcpay_applepay_q1_2022','Let your customers know about Apple Pay','https://developer.apple.com/apple-pay/marketing/','actioned',0,'',NULL,NULL),(1694,49,'stripe_applepay_q1_2022','Add Apple Pay','http://demoweblinks.in/padmini/wp-admin/admin.php?page=wc-admin&page=wc-settings&tab=checkout&section=stripe','actioned',0,'',NULL,NULL),(1695,50,'square_applepay_q1_2022','Add Apple Pay','http://demoweblinks.in/padmini/wp-admin/admin.php?page=wc-admin&page=wc-settings&tab=square','actioned',0,'',NULL,NULL),(1796,51,'lead_gen_existing_customers_1','Yes, please','https://woocommerce.com/take-your-business-to-the-next-level/?utm_source=inbox_note&utm_medium=product&utm_campaign=lead_gen_existing_customers_1','actioned',0,'',NULL,NULL),(1836,57,'woocommerce_payments_subscriptions_nopayments_q2_2022','Start selling subscriptions','https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=woocommerce_payments_subscriptions_nopayments_q2_2022','actioned',0,'',NULL,NULL),(1837,58,'woocommerce_payments_subscriptions_yespayments_q2_2022','Get started','https://woocommerce.com/document/payments/subscriptions/?utm_source=inbox_note&utm_medium=product&utm_campaign=woocommerce_payments_subscriptions_yespayments_q2_2022#section-2','actioned',0,'',NULL,NULL),(2052,64,'update-db_run','Update WooCommerce Database','https://demoweblinks.in/padmini/wp-admin/admin.php?page=WordfenceScan&do_update_woocommerce=true','unactioned',0,'wc_db_update','wc_db_update','wc_db_update_nonce'),(2053,64,'update-db_learn-more','Learn more about updates','https://docs.woocommerce.com/document/how-to-update-woocommerce/','unactioned',0,'',NULL,NULL),(2054,65,'enable-navigation','Enable in Settings','https://demoweblinks.in/padmini/wp-admin/admin.php?page=wc-settings&tab=advanced&section=features','actioned',0,'',NULL,NULL),(2055,66,'update-store-details','Update store details','https://demoweblinks.in/padmini/wp-admin/admin.php?page=wc-admin&path=/setup-wizard','actioned',0,'',NULL,NULL),(2056,43,'learn-more','Learn more','https://woocommerce.com/payments/?utm_medium=product','unactioned',0,'',NULL,NULL),(2057,43,'get-started','Get started','https://demoweblinks.in/padmini/wp-admin/admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',0,'','setup-woocommerce-payments',''),(2058,4,'browse_extensions','Browse extensions','https://demoweblinks.in/padmini/wp-admin/admin.php?page=wc-admin&page=wc-addons','unactioned',0,'',NULL,NULL),(2059,5,'wayflyer_bnpl_q4_2021','Level up with funding','https://woocommerce.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021','actioned',0,'',NULL,NULL),(2060,6,'wc_shipping_mobile_app_usps_q4_2021','Get WooCommerce Shipping','https://woocommerce.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021','actioned',0,'',NULL,NULL),(2061,7,'wc_shipping_mobile_app_q4_2021','Get the WooCommerce Mobile App','https://woocommerce.com/mobile/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_q4_2021','actioned',0,'',NULL,NULL),(2062,8,'set-up-concierge','Schedule free session','https://wordpress.com/me/concierge','actioned',0,'',NULL,NULL),(2063,9,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox','unactioned',0,'',NULL,NULL),(2064,10,'learn-more-ecomm-unique-shopping-experience','Learn more','https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox','actioned',0,'',NULL,NULL),(2065,11,'watch-the-webinar','Watch the webinar','https://youtu.be/V_2XtCOyZ7o','actioned',0,'',NULL,NULL),(2066,12,'learn-more','Learn more','https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','actioned',0,'',NULL,NULL),(2067,13,'optimizing-the-checkout-flow','Learn more','https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow','actioned',0,'',NULL,NULL),(2068,14,'learn-more','Learn more','https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned',0,'',NULL,NULL),(2069,15,'qualitative-feedback-from-new-users','Share feedback','https://automattic.survey.fm/wc-pay-new','actioned',0,'',NULL,NULL),(2070,16,'share-feedback','Share feedback','http://automattic.survey.fm/paypal-feedback','unactioned',0,'',NULL,NULL),(2071,17,'get-started','Get started','https://woocommerce.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started','actioned',0,'',NULL,NULL),(2072,18,'update-wc-subscriptions-3-0-15','View latest version','https://demoweblinks.in/padmini/wp-admin/admin.php?page=wc-admin&page=wc-addons&section=helper','actioned',0,'',NULL,NULL),(2073,19,'update-wc-core-5-4-0','How to update WooCommerce','https://docs.woocommerce.com/document/how-to-update-woocommerce/','actioned',0,'',NULL,NULL),(2074,24,'ppxo-pps-install-paypal-payments-1','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned',0,'',NULL,NULL),(2075,25,'ppxo-pps-install-paypal-payments-2','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned',0,'',NULL,NULL),(2076,26,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned',0,'',NULL,NULL),(2077,26,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(2078,27,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned',0,'',NULL,NULL),(2079,27,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(2080,28,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned',0,'',NULL,NULL),(2081,28,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(2082,29,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned',0,'',NULL,NULL),(2083,29,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(2084,30,'share-feedback','Share feedback','https://automattic.survey.fm/store-management','unactioned',0,'',NULL,NULL),(2085,46,'share-navigation-survey-feedback','Share feedback','https://automattic.survey.fm/feedback-on-woocommerce-navigation','actioned',0,'',NULL,NULL),(2086,53,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned',0,'',NULL,NULL),(2087,53,'woocommerce-core-paypal-march-2022-dismiss','Dismiss','','actioned',0,'',NULL,NULL),(2088,54,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned',0,'',NULL,NULL),(2089,54,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(2090,55,'pinterest_03_2022_update','Update Instructions','https://woocommerce.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3','actioned',0,'',NULL,NULL),(2091,56,'setup_task_initiative_survey_q2_2022_share_your_input','Share your input','https://t.maze.co/87390007','actioned',0,'',NULL,NULL),(2092,61,'affirm_q2_2022','Get started for free','https://woocommerce.com/products/woocommerce-gateway-affirm/?utm_source=inbox_note&utm_medium=product&utm_campaign=affirm_q2_2022','unactioned',0,'',NULL,NULL),(2093,59,'setup_task_second_survey_q2_2022_share_your_input','Share your input','https://t.maze.co/87390007','actioned',0,'',NULL,NULL),(2094,60,'store_setup_survey_survey_q2_2022_share_your_thoughts','Tell us how itâ€™s going','https://automattic.survey.fm/store-setup-survey-2022','actioned',0,'',NULL,NULL),(2095,62,'wc-admin-EU-consumer-protection','Learn more about these changes','https://ec.europa.eu/info/law/law-topic/consumer-protection-law/review-eu-consumer-law_en#guidance','actioned',0,'',NULL,NULL),(2096,63,'googlelistings_multicountrygtm_q22022','Get Google Listings & Ads â€“ free','https://woocommerce.com/products/google-listings-and-ads/?utm_source=inbox_note&utm_medium=product&utm_campaign=googlelistings_multicountrygtm_q22022','actioned',0,'',NULL,NULL);
/*!40000 ALTER TABLE `wp_wc_admin_note_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_admin_notes`
--

DROP TABLE IF EXISTS `wp_wc_admin_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_admin_notes` (
  `note_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `locale` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `title` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `content_data` longtext COLLATE utf8mb4_unicode_ci,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_reminder` datetime DEFAULT NULL,
  `is_snoozable` tinyint(1) NOT NULL DEFAULT '0',
  `layout` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `image` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT '0',
  `icon` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'info',
  `is_read` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`note_id`)
) ENGINE=InnoDB AUTO_INCREMENT=67 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_admin_notes`
--

LOCK TABLES `wp_wc_admin_notes` WRITE;
/*!40000 ALTER TABLE `wp_wc_admin_notes` DISABLE KEYS */;
INSERT INTO `wp_wc_admin_notes` VALUES (1,'stripe_applepay_holiday2021','marketing','en_US','Boost sales this holiday season with Apple Pay!','Increase your conversion rate by letting your customers know that you accept Apple Pay. Itâ€™s seamless to <a href=\"https://docs.woocommerce.com/document/stripe/?_ga=2.90941597.642705274.1635776464-1391993999.1621950839#apple-pay\">enable Apple Pay with Stripe</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.','{}','pending','woocommerce.com','2021-11-30 11:57:05',NULL,0,'plain','',0,'info',0),(2,'square_applepay_holiday2021','marketing','en_US','Boost sales this holiday season with Apple Pay!','Increase your conversion rate by letting your customers know that you accept Apple Pay. Itâ€™s seamless to <a href=\"https://docs.woocommerce.com/document/woocommerce-square/?_ga=2.90941597.642705274.1635776464-1391993999.1621950839#section-14\">enable Apple Pay with Square</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.','{}','pending','woocommerce.com','2021-11-30 11:57:05',NULL,0,'plain','',0,'info',0),(3,'wcpay_applepay_holiday2021','marketing','en_US','Boost sales this holiday season with Apple Pay!','Increase your conversion rate by letting your customers know that you accept Apple Pay. Itâ€™s seamless to <a href=\"https://docs.woocommerce.com/document/payments/apple-pay/\">enable Apple Pay with WooCommerce Payments</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.','{}','pending','woocommerce.com','2021-11-30 11:57:05',NULL,0,'plain','',0,'info',0),(4,'new_in_app_marketplace_2021','info','en_US','Customize your store with extensions','Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.','{}','unactioned','woocommerce.com','2021-11-30 11:57:05',NULL,0,'plain','',0,'info',0),(5,'wayflyer_bnpl_q4_2021','marketing','en_US','Grow your business with funding through Wayflyer','Fast, flexible financing to boost cash flow and help your business grow â€“ one fee, no interest rates, penalties, equity, or personal guarantees. Based on your storeâ€™s performance, Wayflyer provides funding and analytical insights to invest in your business.','{}','pending','woocommerce.com','2021-11-30 11:57:05',NULL,0,'plain','',0,'info',0),(6,'wc_shipping_mobile_app_usps_q4_2021','marketing','en_US','Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App','Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> â€“ all directly from your mobile device!','{}','pending','woocommerce.com','2021-11-30 11:57:07',NULL,0,'plain','',0,'info',0),(7,'wc_shipping_mobile_app_q4_2021','marketing','en_US','Print and manage your shipping labels with the WooCommerce Mobile App','Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> â€“ all directly from your mobile device!','{}','pending','woocommerce.com','2021-11-30 11:57:07',NULL,0,'plain','',0,'info',0),(8,'ecomm-need-help-setting-up-your-store','info','en_US','Need help setting up your Store?','Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. Weâ€™re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.','{}','pending','woocommerce.com','2021-11-30 11:57:07',NULL,0,'plain','',0,'info',0),(9,'woocommerce-services','info','en_US','WooCommerce Shipping & Tax','WooCommerce Shipping &amp; Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.','{}','pending','woocommerce.com','2021-11-30 11:57:07',NULL,0,'plain','',0,'info',0),(10,'ecomm-unique-shopping-experience','info','en_US','For a shopping experience as unique as your customers','Product Add-Ons allow your customers to personalize products while they\'re shopping on your online store. No more follow-up email requestsâ€”customers get what they want, before they\'re done checking out. Learn more about this extension that comes included in your plan.','{}','pending','woocommerce.com','2021-11-30 11:57:08',NULL,0,'plain','',0,'info',0),(11,'wc-admin-getting-started-in-ecommerce','info','en_US','Getting Started in eCommerce - webinar','We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.','{}','pending','woocommerce.com','2021-11-30 11:57:08',NULL,0,'plain','',0,'info',0),(12,'your-first-product','info','en_US','Your first product','Thatâ€™s huge! Youâ€™re well on your way to building a successful online store â€” now itâ€™s time to think about how youâ€™ll fulfill your orders.<br /><br />Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.','{}','pending','woocommerce.com','2021-11-30 11:57:08',NULL,0,'plain','',0,'info',0),(13,'wc-admin-optimizing-the-checkout-flow','info','en_US','Optimizing the checkout flow','Itâ€™s crucial to get your storeâ€™s checkout as smooth as possible to avoid losing sales. Letâ€™s take a look at how you can optimize the checkout experience for your shoppers.','{}','pending','woocommerce.com','2021-11-30 11:57:08',NULL,0,'plain','',0,'info',0),(14,'wc-admin-first-five-things-to-customize','info','en_US','The first 5 things to customize in your store','Deciding what to start with first is tricky. To help you properly prioritize, weâ€™ve put together this short list of the first few things you should customize in WooCommerce.','{}','pending','woocommerce.com','2021-11-30 11:57:09',NULL,0,'plain','',0,'info',0),(15,'wc-payments-qualitative-feedback','info','en_US','WooCommerce Payments setup - let us know what you think','Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.','{}','pending','woocommerce.com','2021-11-30 11:57:09',NULL,0,'plain','',0,'info',0),(16,'share-your-feedback-on-paypal','info','en_US','Share your feedback on PayPal','Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.','{}','pending','woocommerce.com','2021-11-30 11:57:09',NULL,0,'plain','',0,'info',0),(17,'google_listings_and_ads_install','marketing','en_US','Drive traffic and sales with Google','Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.','{}','pending','woocommerce.com','2021-11-30 11:57:09',NULL,0,'plain','',0,'info',0),(18,'wc-subscriptions-security-update-3-0-15','info','en_US','WooCommerce Subscriptions security update!','We recently released an important security update to WooCommerce Subscriptions. To ensure your siteâ€™s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br /><br />Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br /><br />We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br /><br />If you have any questions we are here to help â€” just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.','{}','pending','woocommerce.com','2021-11-30 11:57:10',NULL,0,'plain','',0,'info',0),(19,'woocommerce-core-update-5-4-0','info','en_US','Update to WooCommerce 5.4.1 now','WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.','{}','pending','woocommerce.com','2021-11-30 11:57:10',NULL,0,'plain','',0,'info',0),(20,'wcpay-promo-2020-11','marketing','en_US','wcpay-promo-2020-11','wcpay-promo-2020-11','{}','pending','woocommerce.com','2021-11-30 11:57:10',NULL,0,'plain','',0,'info',0),(21,'wcpay-promo-2020-12','marketing','en_US','wcpay-promo-2020-12','wcpay-promo-2020-12','{}','pending','woocommerce.com','2021-11-30 11:57:10',NULL,0,'plain','',0,'info',0),(22,'wcpay-promo-2021-6-incentive-1','marketing','en_US','Simplify the payments process for you and your customers with WooCommerce Payments','With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple PayÂ®, and recurring revenue in over 100 currencies.\n				Built into your storeâ€™s WooCommerce dashboard, track cash flow and manage all of your transactions in one place â€“ with no setup costs or monthly fees.\n				<br /><br />\n				By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">Terms of Service</a>\n				and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n				','{}','pending','woocommerce.com','2021-11-30 11:57:10',NULL,0,'plain','',0,'info',0),(23,'wcpay-promo-2021-6-incentive-2','marketing','en_US','Simplify the payments process for you and your customers with WooCommerce Payments','With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple PayÂ®, and recurring revenue in over 100 currencies.\n				Built into your storeâ€™s WooCommerce dashboard, track cash flow and manage all of your transactions in one place â€“ with no setup costs or monthly fees.\n				<br /><br />\n				By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">Terms of Service</a>\n				and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n				','{}','pending','woocommerce.com','2021-11-30 11:57:10',NULL,0,'plain','',0,'info',0),(24,'ppxo-pps-upgrade-paypal-payments-1','info','en_US','Get the latest PayPal extension for WooCommerce','Heads up! Thereâ€™s a new PayPal on the block!<br /><br />Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br /><br />Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.','{}','pending','woocommerce.com','2021-11-30 11:57:10',NULL,0,'plain','',0,'info',0),(25,'ppxo-pps-upgrade-paypal-payments-2','info','en_US','Upgrade your PayPal experience!','Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.','{}','pending','woocommerce.com','2021-11-30 11:57:11',NULL,0,'plain','',0,'info',0),(26,'woocommerce-core-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2021-11-30 11:57:11',NULL,0,'plain','',0,'info',0),(27,'woocommerce-blocks-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2021-11-30 11:57:11',NULL,0,'plain','',0,'info',0),(28,'woocommerce-core-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2021-11-30 11:57:11',NULL,0,'plain','',0,'info',0),(29,'woocommerce-blocks-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2021-11-30 11:57:12',NULL,0,'plain','',0,'info',0),(30,'habit-moment-survey','marketing','en_US','Weâ€™re all ears! Share your experience so far with WooCommerce','Weâ€™d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.','{}','pending','woocommerce.com','2021-11-30 11:57:12',NULL,0,'plain','',0,'info',0),(31,'wc-refund-returns-page','info','en_US','Setup a Refund and Returns Policy page to boost your store\'s credibility.','We have created a sample draft Refund and Returns Policy page for you. Please have a look and update it to fit your store.','{}','unactioned','woocommerce-core','2021-11-30 11:57:15',NULL,0,'plain','',0,'info',0),(32,'wc-admin-wc-helper-connection','info','en_US','Connect to WooCommerce.com','Connect to get important product notifications and updates.','{}','unactioned','woocommerce-admin','2021-11-30 11:57:16',NULL,0,'plain','',0,'info',0),(35,'wc-admin-choosing-a-theme','marketing','en_US','Choosing a theme?','Check out the themes that are compatible with WooCommerce and choose one aligned with your brand and business needs.','{}','unactioned','woocommerce-admin','2021-12-02 03:56:16',NULL,0,'plain','',0,'info',0),(36,'wc-admin-insight-first-product-and-payment','survey','en_US','Insight','More than 80% of new merchants add the first product and have at least one payment method set up during the first week.<br><br>Do you find this type of insight useful?','{}','unactioned','woocommerce-admin','2021-12-02 03:56:17',NULL,0,'plain','',0,'info',0),(37,'wc-admin-customizing-product-catalog','info','en_US','How to customize your product catalog','You want your product catalog and images to look great and align with your brand. This guide will give you all the tips you need to get your products looking great in your store.','{}','unactioned','woocommerce-admin','2021-12-02 03:56:21',NULL,0,'plain','',0,'info',0),(38,'wc-admin-first-downloadable-product','info','en_US','Learn more about digital/downloadable products','Congrats on adding your first digital product! You can learn more about how to handle digital or downloadable products in our documentation.','{}','unactioned','woocommerce-admin','2021-12-02 03:56:28',NULL,0,'plain','',0,'info',0),(39,'wc-admin-mobile-app','info','en_US','Install Woo mobile app','Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics â€” wherever you are.','{}','unactioned','woocommerce-admin','2021-12-02 12:15:51',NULL,0,'plain','',0,'info',0),(40,'wc-admin-onboarding-payments-reminder','info','en_US','Start accepting payments on your store!','Take payments with the provider thatâ€™s right for you - choose from 100+ payment gateways for WooCommerce.','{}','unactioned','woocommerce-admin','2021-12-06 03:54:04',NULL,0,'plain','',0,'info',0),(42,'wc-admin-usage-tracking-opt-in','info','en_US','Help WooCommerce improve with usage tracking','Gathering usage data allows us to improve WooCommerce. Your store will be considered as we evaluate new features, judge the quality of an update, or determine if an improvement makes sense. You can always visit the <a href=\"http://demoweblinks.in/padmini/wp-admin/admin.php?page=wc-settings&#038;tab=advanced&#038;section=woocommerce_com\" target=\"_blank\">Settings</a> and choose to stop sharing data. <a href=\"https://woocommerce.com/usage-tracking?utm_medium=product\" target=\"_blank\">Read more</a> about what data we collect.','{}','unactioned','woocommerce-admin','2021-12-07 12:06:22',NULL,0,'plain','',0,'info',0),(43,'wc-admin-woocommerce-payments','marketing','en_US','Try the new way to get paid','Securely accept credit and debit cards on your site. Manage transactions without leaving your WordPress dashboard. Only with <strong>WooCommerce Payments</strong>.<br><br>By clicking \"Get started\", you agree to our <a href=\"https://wordpress.com/tos/\" target=\"_blank\">Terms of Service</a>','{}','unactioned','woocommerce-admin','2021-12-07 12:06:22',NULL,0,'plain','',0,'info',0),(44,'wc-admin-insight-first-sale','survey','en_US','Did you know?','A WooCommerce powered store needs on average 31 days to get the first sale. You\'re on the right track! Do you find this type of insight useful?','{}','unactioned','woocommerce-admin','2021-12-07 12:06:22',NULL,0,'plain','',0,'info',0),(45,'wc-admin-orders-milestone','info','en_US','First order received','Congratulations on getting your first order! Now is a great time to learn how to manage your orders.','{}','unactioned','woocommerce-admin','2021-12-09 09:57:10',NULL,0,'plain','',0,'info',0),(46,'ecomm-wc-navigation-survey','info','en_US','Weâ€™d like your feedback on the WooCommerce navigation','Weâ€™re making improvements to the WooCommerce navigation and would love your feedback. Share your experience in this 2 minute survey.','{}','pending','woocommerce.com','2022-01-06 04:48:01',NULL,0,'plain','',0,'info',0),(47,'wc_simple_payments_m2_reader_launch_q1_2022','marketing','en_US','Take quick and easy in-person payments','WooCommerce is continuing to power up your business with our new Simple Payments feature, built exclusively for WooCommerce In-Person Payments. Capture quick and simple payments anywhere else your customers are â€“ or offer a local pickup option with payment taken in-person for orders placed online.','{}','unactioned','woocommerce.com','2022-02-04 04:16:01',NULL,0,'plain','',0,'info',0),(48,'wcpay_applepay_q1_2022','marketing','en_US','Increase conversions with Apple Pay â€“ just like Diane does','See how Diane from <a href=\"https://woocommerce.com/posts/lady-dye-yarns-from-crafts-to-activism-with-woocommerce/?utm_source=product&amp;utm_medium=inboxnotification&amp;utm_campaign=apple-pay\" target=\"_blank\">Lady Dye Yarns</a> uses Apple Pay to provide customers with the fast, secure checkout experience they love. You can, too â€“ Apple Pay is included in WooCommerce Payments. Here\'s how you can increase conversions by encouraging shoppers to pay with a single tap.','{}','pending','woocommerce.com','2022-02-17 12:20:07',NULL,0,'plain','',0,'info',0),(49,'stripe_applepay_q1_2022','marketing','en_US','Increase conversions with Apple Pay â€“ just like Thomas does','Read the inspirational story of <a href=\"https://woocommerce.com/posts/incredible-story-of-thomas-trendy-socks-down-syndrome-entrepreneur/?utm_source=product&amp;utm_medium=inboxnotification&amp;utm_campaign=apple-pay\" target=\"_blank\">Thomas\'s Trendy Socks</a> and see how heâ€™s using Apple Pay to provide customers with the fast, secure checkout experience they love. You can, too â€“ ready to turn more visitors into buyers? Accept Apple Pay by selecting Enable express checkouts in Settings &gt; Payments &gt; Stripe.','{}','pending','woocommerce.com','2022-02-17 12:20:07',NULL,0,'plain','',0,'info',0),(50,'square_applepay_q1_2022','marketing','en_US','Increase conversions with a faster checkout experience','By enabling Apple Pay in Square, your customers can complete purchases quickly and securely with a single touch or a glance â€“ no lengthy checkout forms necessary. Accept Apple Pay by enabling Digital Wallets within Settings &gt; Payments &gt; Square.','{}','pending','woocommerce.com','2022-02-17 12:20:07',NULL,0,'plain','',0,'info',0),(51,'lead_gen_existing_customers_1','marketing','en_US','Talk to a consultant','As your business grows, you want to optimize costs, streamline operations, and sell more. We can help. Talk to us about how you can get the most out of WooCommerce.','{}','unactioned','woocommerce.com','2022-02-17 12:20:07',NULL,0,'plain','',0,'info',0),(52,'wc-admin-real-time-order-alerts','info','en_US','Get real-time order alerts anywhere','Get notifications about store activity, including new orders and product reviews directly on your mobile devices with the Woo app.','{}','unactioned','woocommerce-admin','2022-03-10 06:10:11',NULL,0,'plain','',0,'info',0),(53,'woocommerce-core-paypal-march-2022-updated','update','en_US','Security auto-update of WooCommerce','<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). Itâ€™s recommended to disable PayPal Standard, and use <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.','{}','pending','woocommerce.com','2022-03-17 10:18:55',NULL,0,'plain','',0,'info',0),(54,'woocommerce-core-paypal-march-2022-updated-nopp','update','en_US','Security auto-update of WooCommerce','<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).','{}','unactioned','woocommerce.com','2022-03-17 10:18:55',NULL,0,'plain','',0,'info',0),(55,'pinterest_03_2022_update','marketing','en_US','Your Pinterest for WooCommerce plugin is out of date!','Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins &gt; Installed Plugins</strong>, and click on â€œupdate nowâ€ under Pinterest for WooCommerce.','{}','pending','woocommerce.com','2022-04-01 11:59:43',NULL,0,'plain','',0,'info',0),(56,'setup_task_initiative_survey_q2_2022','survey','en_US','We want to know what matters most to you','Take 2 minutes to give us your input on what is important for you while setting up your store and help shape the future of WooCommerce together.','{}','unactioned','woocommerce.com','2022-05-10 06:42:45',NULL,0,'plain','',0,'info',0),(57,'woocommerce_payments_subscriptions_nopayments_q2_2022','marketing','en_US','Sell subscriptions online â€“ without a paid extension','Say hello to WooCommerce Payments â€“ now with built-in subscriptions functionality. Get free access to the features you need to start earning recurring revenue online. Pay as you go, with no setup costs or monthly fees.','{}','unactioned','woocommerce.com','2022-05-10 06:42:45',NULL,0,'plain','',0,'info',0),(58,'woocommerce_payments_subscriptions_yespayments_q2_2022','marketing','en_US','Sell subscriptions online â€“ no extra extension required','It\'s here! WooCommerce Payments now features built-in subscriptions functionality. No need to install an extra, paid extension â€“ we\'ve made it simpler than ever to start earning recurring revenue. Ready to grow your business?','{}','pending','woocommerce.com','2022-05-10 06:42:45',NULL,0,'plain','',0,'info',0),(59,'setup_task_second_survey_q2_2022','survey','en_US','We want to know what matters most to you','Take 2 minutes to give us your input on what is important for you while setting up your store and help shape the future of WooCommerce together.','{}','pending','woocommerce.com','2022-05-10 06:42:45',NULL,0,'plain','',0,'info',0),(60,'store_setup_survey_survey_q2_2022','survey','en_US','How is your store setup going?','Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWeâ€™d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.','{}','pending','woocommerce.com','2022-05-10 06:42:45',NULL,0,'plain','',0,'info',0),(61,'affirm_q2_2022','marketing','en_US','Boost your business with flexible payments','Expand your customer base with smarter payment options for more shoppers. With Affirm,  you can offer the most relevant payment options at every price point â€“ from four interest-free payments every two weeks to longer installments up to 36 months. Fast-track your revenue goals today!','{}','unactioned','woocommerce.com','2022-05-16 10:11:18',NULL,0,'plain','',0,'info',0),(62,'wc-admin-EU-consumer-protection','marketing','en_US','Important changes to EU consumer protection laws','New regulations to help modernize and strengthen consumer protection laws in the European Union (EU) take effect on May 28, 2022. These rules impact all merchants selling to the EU, regardless of where their business is located. Further detailed information is available on the European Commission\'s official website.','{}','unactioned','woocommerce.com','2022-05-16 10:11:18',NULL,0,'plain','',0,'info',0),(63,'googlelistings_multicountrygtm_q22022','marketing','en_US','Expand your audience with Multi-Country Advertising','It\'s time to expand your audience with Multi-Country Advertising, an exciting new feature in Google Listings &amp; Ads. Reach more potential customers in as many regions as you like within a single campaign, all from the convenience of your WooCommerce dashboard.','{}','unactioned','woocommerce.com','2022-05-16 10:11:18',NULL,0,'plain','',0,'info',0),(64,'wc-update-db-reminder','update','en_US','WooCommerce database update required','WooCommerce has been updated! To keep things running smoothly, we have to update your database to the newest version. The database update process runs in the background and may take a little while, so please be patient. Advanced users can alternatively update via <a href=\"https://github.com/woocommerce/woocommerce/wiki/Upgrading-the-database-using-WP-CLI\">WP CLI</a>.','{}','unactioned','woocommerce-core','2022-05-16 10:25:38',NULL,0,'plain','',0,'info',0),(65,'wc-admin-navigation-nudge','info','en_US','You now have access to the WooCommerce navigation','Weâ€™re introducing a new navigation for a more intuitive and improved user experience. You can enable the beta version of the new experience in the Advanced Settings. Enable it now for your store.','{}','unactioned','woocommerce-admin','2022-05-16 13:18:53',NULL,0,'plain','',0,'info',0),(66,'wc-admin-update-store-details','info','en_US','Edit your store details if you need to','Nice work completing your store profile! You can always go back and edit the details you just shared, as needed.','{}','unactioned','woocommerce-admin','2022-05-16 13:18:53',NULL,0,'plain','',0,'info',0);
/*!40000 ALTER TABLE `wp_wc_admin_notes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_category_lookup`
--

DROP TABLE IF EXISTS `wp_wc_category_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_category_lookup` (
  `category_tree_id` bigint(20) unsigned NOT NULL,
  `category_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`category_tree_id`,`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_category_lookup`
--

LOCK TABLES `wp_wc_category_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_category_lookup` DISABLE KEYS */;
INSERT INTO `wp_wc_category_lookup` VALUES (15,15),(71,71),(77,77),(78,78),(79,79),(80,80),(81,81);
/*!40000 ALTER TABLE `wp_wc_category_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_customer_lookup`
--

DROP TABLE IF EXISTS `wp_wc_customer_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_customer_lookup` (
  `customer_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `username` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `first_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `date_last_active` timestamp NULL DEFAULT NULL,
  `date_registered` timestamp NULL DEFAULT NULL,
  `country` char(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `postcode` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `city` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `state` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`customer_id`),
  UNIQUE KEY `user_id` (`user_id`),
  KEY `email` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_customer_lookup`
--

LOCK TABLES `wp_wc_customer_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_customer_lookup` DISABLE KEYS */;
INSERT INTO `wp_wc_customer_lookup` VALUES (1,1,'admin','sonu','s','sonuvalakam@gmail.com','2022-05-16 00:00:00','2021-11-30 11:28:50','IN','682316','Fort Kochi','KL');
/*!40000 ALTER TABLE `wp_wc_customer_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_download_log`
--

DROP TABLE IF EXISTS `wp_wc_download_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_download_log` (
  `download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `permission_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip_address` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
  PRIMARY KEY (`download_log_id`),
  KEY `permission_id` (`permission_id`),
  KEY `timestamp` (`timestamp`),
  CONSTRAINT `fk_wp_wc_download_log_permission_id` FOREIGN KEY (`permission_id`) REFERENCES `wp_woocommerce_downloadable_product_permissions` (`permission_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_download_log`
--

LOCK TABLES `wp_wc_download_log` WRITE;
/*!40000 ALTER TABLE `wp_wc_download_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_download_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_order_coupon_lookup`
--

DROP TABLE IF EXISTS `wp_wc_order_coupon_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_order_coupon_lookup` (
  `order_id` bigint(20) unsigned NOT NULL,
  `coupon_id` bigint(20) NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `discount_amount` double NOT NULL DEFAULT '0',
  PRIMARY KEY (`order_id`,`coupon_id`),
  KEY `coupon_id` (`coupon_id`),
  KEY `date_created` (`date_created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_order_coupon_lookup`
--

LOCK TABLES `wp_wc_order_coupon_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_order_coupon_lookup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_order_coupon_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_order_product_lookup`
--

DROP TABLE IF EXISTS `wp_wc_order_product_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_order_product_lookup` (
  `order_item_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `variation_id` bigint(20) unsigned NOT NULL,
  `customer_id` bigint(20) unsigned DEFAULT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `product_qty` int(11) NOT NULL,
  `product_net_revenue` double NOT NULL DEFAULT '0',
  `product_gross_revenue` double NOT NULL DEFAULT '0',
  `coupon_amount` double NOT NULL DEFAULT '0',
  `tax_amount` double NOT NULL DEFAULT '0',
  `shipping_amount` double NOT NULL DEFAULT '0',
  `shipping_tax_amount` double NOT NULL DEFAULT '0',
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`),
  KEY `product_id` (`product_id`),
  KEY `customer_id` (`customer_id`),
  KEY `date_created` (`date_created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_order_product_lookup`
--

LOCK TABLES `wp_wc_order_product_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_order_product_lookup` DISABLE KEYS */;
INSERT INTO `wp_wc_order_product_lookup` VALUES (1,725,184,0,1,'2021-12-09 09:44:15',1,29,29,0,0,0,0),(2,726,659,0,1,'2021-12-09 09:45:31',1,35,35,0,0,0,0),(3,727,659,0,1,'2021-12-09 09:51:10',1,35,35,0,0,0,0),(4,728,659,0,1,'2021-12-09 09:54:17',1,35,35,0,0,0,0),(5,1107,866,869,1,'2022-01-13 07:45:32',1,8,8,0,0,0,0);
/*!40000 ALTER TABLE `wp_wc_order_product_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_order_stats`
--

DROP TABLE IF EXISTS `wp_wc_order_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_order_stats` (
  `order_id` bigint(20) unsigned NOT NULL,
  `parent_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `num_items_sold` int(11) NOT NULL DEFAULT '0',
  `total_sales` double NOT NULL DEFAULT '0',
  `tax_total` double NOT NULL DEFAULT '0',
  `shipping_total` double NOT NULL DEFAULT '0',
  `net_total` double NOT NULL DEFAULT '0',
  `returning_customer` tinyint(1) DEFAULT NULL,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `customer_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_id`),
  KEY `date_created` (`date_created`),
  KEY `customer_id` (`customer_id`),
  KEY `status` (`status`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_order_stats`
--

LOCK TABLES `wp_wc_order_stats` WRITE;
/*!40000 ALTER TABLE `wp_wc_order_stats` DISABLE KEYS */;
INSERT INTO `wp_wc_order_stats` VALUES (725,0,'2021-12-09 09:44:15','2021-12-09 09:44:15',1,29,0,0,29,0,'wc-processing',1),(726,0,'2021-12-09 09:45:31','2021-12-09 09:45:31',1,35,0,0,35,1,'wc-processing',1),(727,0,'2021-12-09 09:51:10','2021-12-09 09:51:10',1,35,0,0,35,1,'wc-processing',1),(728,0,'2021-12-09 09:54:17','2021-12-09 09:54:17',1,35,0,0,35,1,'wc-processing',1),(1107,0,'2022-01-13 07:45:32','2022-01-13 07:45:32',1,8,0,0,8,1,'wc-completed',1);
/*!40000 ALTER TABLE `wp_wc_order_stats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_order_tax_lookup`
--

DROP TABLE IF EXISTS `wp_wc_order_tax_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_order_tax_lookup` (
  `order_id` bigint(20) unsigned NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `shipping_tax` double NOT NULL DEFAULT '0',
  `order_tax` double NOT NULL DEFAULT '0',
  `total_tax` double NOT NULL DEFAULT '0',
  PRIMARY KEY (`order_id`,`tax_rate_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `date_created` (`date_created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_order_tax_lookup`
--

LOCK TABLES `wp_wc_order_tax_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_order_tax_lookup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_order_tax_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_product_attributes_lookup`
--

DROP TABLE IF EXISTS `wp_wc_product_attributes_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_product_attributes_lookup` (
  `product_id` bigint(20) NOT NULL,
  `product_or_parent_id` bigint(20) NOT NULL,
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `term_id` bigint(20) NOT NULL,
  `is_variation_attribute` tinyint(1) NOT NULL,
  `in_stock` tinyint(1) NOT NULL,
  PRIMARY KEY (`product_or_parent_id`,`term_id`,`product_id`,`taxonomy`),
  KEY `is_variation_attribute_term_id` (`is_variation_attribute`,`term_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_product_attributes_lookup`
--

LOCK TABLES `wp_wc_product_attributes_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_product_attributes_lookup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_product_attributes_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_product_download_directories`
--

DROP TABLE IF EXISTS `wp_wc_product_download_directories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_product_download_directories` (
  `url_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(256) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `enabled` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`url_id`),
  KEY `url` (`url`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_product_download_directories`
--

LOCK TABLES `wp_wc_product_download_directories` WRITE;
/*!40000 ALTER TABLE `wp_wc_product_download_directories` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_product_download_directories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_product_meta_lookup`
--

DROP TABLE IF EXISTS `wp_wc_product_meta_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_product_meta_lookup` (
  `product_id` bigint(20) NOT NULL,
  `sku` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
  `virtual` tinyint(1) DEFAULT '0',
  `downloadable` tinyint(1) DEFAULT '0',
  `min_price` decimal(19,4) DEFAULT NULL,
  `max_price` decimal(19,4) DEFAULT NULL,
  `onsale` tinyint(1) DEFAULT '0',
  `stock_quantity` double DEFAULT NULL,
  `stock_status` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT 'instock',
  `rating_count` bigint(20) DEFAULT '0',
  `average_rating` decimal(3,2) DEFAULT '0.00',
  `total_sales` bigint(20) DEFAULT '0',
  `tax_status` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT 'taxable',
  `tax_class` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
  PRIMARY KEY (`product_id`),
  KEY `virtual` (`virtual`),
  KEY `downloadable` (`downloadable`),
  KEY `stock_status` (`stock_status`),
  KEY `stock_quantity` (`stock_quantity`),
  KEY `onsale` (`onsale`),
  KEY `min_max_price` (`min_price`,`max_price`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_product_meta_lookup`
--

LOCK TABLES `wp_wc_product_meta_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_product_meta_lookup` DISABLE KEYS */;
INSERT INTO `wp_wc_product_meta_lookup` VALUES (167,'110',0,0,99.0000,99.0000,1,NULL,'instock',1,4.00,156,'',''),(168,'',0,0,90.0000,90.0000,1,NULL,'instock',3,4.33,402337,'',''),(184,'',0,0,29.0000,29.0000,0,NULL,'instock',2,4.00,136,'',''),(186,'',0,0,25.0000,25.0000,1,NULL,'instock',2,3.50,10000000062,'',''),(659,'',0,0,35.0000,35.0000,1,NULL,'instock',1,4.00,3,'taxable',''),(850,'',0,0,10.0000,1500.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(852,'',0,0,10.0000,660.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(855,'',0,0,80.0000,960.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(856,'',0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(860,'',0,0,10.0000,1500.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(861,'',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(862,'',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(863,'',0,0,10.0000,10.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(864,'',0,0,125.0000,125.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(866,'',0,0,8.0000,660.0000,0,NULL,'instock',0,0.00,1,'taxable',''),(868,'',0,0,10.0000,10.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(869,'',0,0,8.0000,8.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(870,'',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(872,'',0,0,10.0000,660.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(873,'',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(874,'',0,0,10.0000,10.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(875,'',0,0,25.0000,25.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(878,'',0,0,55.0000,660.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(879,'',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(884,'',0,0,80.0000,960.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(886,'',0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(892,'',0,0,10.0000,840.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(893,'',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(894,'',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(895,'',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(896,'',0,0,10.0000,10.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(901,'',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(902,'',0,0,125.0000,125.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(903,'',0,0,25.0000,25.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(904,'',0,0,10.0000,10.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(905,'',0,0,10.0000,10.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(907,'',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(940,'',0,0,54.0000,54.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(941,'',0,0,54.0000,54.0000,1,NULL,'instock',0,0.00,0,'taxable','parent'),(942,'',0,0,54.0000,54.0000,1,NULL,'instock',0,0.00,0,'taxable','parent'),(943,'',0,0,54.0000,54.0000,1,NULL,'instock',0,0.00,0,'taxable','parent'),(944,'',0,0,54.0000,54.0000,1,NULL,'instock',0,0.00,0,'taxable','parent'),(949,'',0,0,54.0000,54.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(950,'',0,0,54.0000,54.0000,1,NULL,'instock',0,0.00,0,'taxable','parent'),(951,'',0,0,54.0000,54.0000,1,NULL,'instock',0,0.00,0,'taxable','parent'),(952,'',0,0,54.0000,54.0000,1,NULL,'instock',0,0.00,0,'taxable','parent'),(953,'',0,0,54.0000,54.0000,1,NULL,'instock',0,0.00,0,'taxable','parent'),(954,'',0,0,54.0000,54.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(955,'',0,0,54.0000,54.0000,1,NULL,'instock',0,0.00,0,'taxable','parent'),(956,'',0,0,54.0000,54.0000,1,NULL,'instock',0,0.00,0,'taxable','parent'),(957,'',0,0,54.0000,54.0000,1,NULL,'instock',0,0.00,0,'taxable','parent'),(958,'',0,0,54.0000,54.0000,1,NULL,'instock',0,0.00,0,'taxable','parent'),(959,'',0,0,54.0000,54.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(960,'',0,0,54.0000,54.0000,1,NULL,'instock',0,0.00,0,'taxable','parent'),(961,'',0,0,54.0000,54.0000,1,NULL,'instock',0,0.00,0,'taxable','parent'),(962,'',0,0,54.0000,54.0000,1,NULL,'instock',0,0.00,0,'taxable','parent'),(963,'',0,0,54.0000,54.0000,1,NULL,'instock',0,0.00,0,'taxable','parent'),(974,'',0,0,25.0000,25.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(975,'',0,0,5.0000,1500.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(976,'',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(977,'',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(978,'',0,0,125.0000,125.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(979,'',0,0,25.0000,25.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(980,'',0,0,5.0000,5.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(981,'',0,0,12.0000,12.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(982,'',0,0,10.0000,10.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(983,'',0,0,10.0000,660.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(986,'',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(987,'',0,0,10.0000,10.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(988,'',0,0,13.0000,840.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(989,'',0,0,25.0000,25.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(990,'',0,0,13.0000,840.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(992,'',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(993,'',0,0,13.0000,13.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(994,'',0,0,25.0000,25.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(995,'',0,0,13.0000,840.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(997,'',0,0,13.0000,13.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(998,'',0,0,25.0000,25.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(999,'',0,0,40.0000,960.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(1000,'',0,0,50.0000,1800.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(1003,'',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1004,'',0,0,150.0000,150.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1005,'',0,0,80.0000,1800.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(1007,'',0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1008,'',0,0,150.0000,150.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1009,'',0,0,125.0000,1500.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(1012,'',0,0,150.0000,1800.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(1013,'',0,0,150.0000,150.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1014,'',0,0,125.0000,125.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1015,'',0,0,150.0000,1800.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(1016,'',0,0,150.0000,150.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1019,'',0,0,125.0000,1500.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(1021,'',0,0,125.0000,125.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1023,'',0,0,150.0000,1800.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(1024,'',0,0,150.0000,150.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1026,'',0,0,660.0000,660.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1027,'',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1028,'',0,0,1500.0000,1500.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1029,'',0,0,300.0000,300.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1030,'',0,0,12.0000,12.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1031,'',0,0,144.0000,144.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1032,'',0,0,660.0000,660.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1033,'',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1034,'',0,0,960.0000,960.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1035,'',0,0,660.0000,660.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1036,'',0,0,840.0000,840.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1037,'',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1038,'',0,0,1500.0000,1500.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1039,'',0,0,300.0000,300.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1040,'',0,0,123.0000,123.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1041,'',0,0,144.0000,144.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1042,'',0,0,400.0000,400.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1043,'',0,0,660.0000,660.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1044,'',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1045,'',0,0,15.0000,15.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1046,'',0,0,180.0000,180.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1047,'',0,0,660.0000,660.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1048,'',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1049,'',0,0,300.0000,300.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1050,'',0,0,13.0000,13.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1051,'',0,0,156.0000,156.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1052,'',0,0,660.0000,660.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1053,'',0,0,960.0000,960.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1054,'',0,0,840.0000,840.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1055,'',0,0,660.0000,660.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1056,'',0,0,840.0000,840.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1057,'',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1058,'',0,0,12.0000,12.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1059,'',0,0,144.0000,144.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1060,'',0,0,25.0000,25.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1061,'',0,0,300.0000,300.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1062,'',0,0,660.0000,660.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1063,'',0,0,840.0000,840.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1064,'',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1065,'',0,0,1500.0000,1500.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1066,'',0,0,300.0000,300.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1067,'',0,0,60.0000,60.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1068,'',0,0,144.0000,144.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1070,'',0,0,660.0000,660.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1071,'',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1072,'',0,0,15.0000,15.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1073,'',0,0,180.0000,180.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1074,'',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1075,'',0,0,840.0000,840.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1076,'',0,0,13.0000,13.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1077,'',0,0,156.0000,156.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1078,'',0,0,300.0000,300.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1079,'',0,0,840.0000,840.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1080,'',0,0,156.0000,156.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1081,'',0,0,300.0000,300.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1082,'',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1083,'',0,0,840.0000,840.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1084,'',0,0,156.0000,156.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1085,'',0,0,300.0000,300.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1086,'',0,0,600.0000,600.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1087,'',0,0,1800.0000,1800.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1088,'',0,0,960.0000,960.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1089,'',0,0,1800.0000,1800.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1090,'',0,0,1500.0000,1500.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1091,'',0,0,1800.0000,1800.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1092,'',0,0,1800.0000,1800.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1093,'',0,0,1500.0000,1500.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1094,'',0,0,1800.0000,1800.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1095,'',0,0,40.0000,40.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1096,'',0,0,480.0000,480.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1097,'',0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(1098,'',0,0,960.0000,960.0000,0,NULL,'instock',0,0.00,0,'taxable','parent');
/*!40000 ALTER TABLE `wp_wc_product_meta_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_rate_limits`
--

DROP TABLE IF EXISTS `wp_wc_rate_limits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_rate_limits` (
  `rate_limit_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `rate_limit_key` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `rate_limit_expiry` bigint(20) unsigned NOT NULL,
  `rate_limit_remaining` smallint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`rate_limit_id`),
  UNIQUE KEY `rate_limit_key` (`rate_limit_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_rate_limits`
--

LOCK TABLES `wp_wc_rate_limits` WRITE;
/*!40000 ALTER TABLE `wp_wc_rate_limits` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_rate_limits` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_reserved_stock`
--

DROP TABLE IF EXISTS `wp_wc_reserved_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_reserved_stock` (
  `order_id` bigint(20) NOT NULL,
  `product_id` bigint(20) NOT NULL,
  `stock_quantity` double NOT NULL DEFAULT '0',
  `timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`order_id`,`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_reserved_stock`
--

LOCK TABLES `wp_wc_reserved_stock` WRITE;
/*!40000 ALTER TABLE `wp_wc_reserved_stock` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_reserved_stock` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_tax_rate_classes`
--

DROP TABLE IF EXISTS `wp_wc_tax_rate_classes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_tax_rate_classes` (
  `tax_rate_class_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_class_id`),
  UNIQUE KEY `slug` (`slug`(191))
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_tax_rate_classes`
--

LOCK TABLES `wp_wc_tax_rate_classes` WRITE;
/*!40000 ALTER TABLE `wp_wc_tax_rate_classes` DISABLE KEYS */;
INSERT INTO `wp_wc_tax_rate_classes` VALUES (1,'Reduced rate','reduced-rate'),(2,'Zero rate','zero-rate');
/*!40000 ALTER TABLE `wp_wc_tax_rate_classes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_webhooks`
--

DROP TABLE IF EXISTS `wp_wc_webhooks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_webhooks` (
  `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `delivery_url` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `secret` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `topic` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `api_version` smallint(4) NOT NULL,
  `failure_count` smallint(10) NOT NULL DEFAULT '0',
  `pending_delivery` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`webhook_id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_webhooks`
--

LOCK TABLES `wp_wc_webhooks` WRITE;
/*!40000 ALTER TABLE `wp_wc_webhooks` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_webhooks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfblockediplog`
--

DROP TABLE IF EXISTS `wp_wfblockediplog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfblockediplog` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `countryCode` varchar(2) NOT NULL,
  `blockCount` int(10) unsigned NOT NULL DEFAULT '0',
  `unixday` int(10) unsigned NOT NULL,
  `blockType` varchar(50) NOT NULL DEFAULT 'generic',
  PRIMARY KEY (`IP`,`unixday`,`blockType`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfblockediplog`
--

LOCK TABLES `wp_wfblockediplog` WRITE;
/*!40000 ALTER TABLE `wp_wfblockediplog` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfblockediplog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfblocks7`
--

DROP TABLE IF EXISTS `wp_wfblocks7`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfblocks7` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` int(10) unsigned NOT NULL DEFAULT '0',
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `blockedTime` bigint(20) NOT NULL,
  `reason` varchar(255) NOT NULL,
  `lastAttempt` int(10) unsigned DEFAULT '0',
  `blockedHits` int(10) unsigned DEFAULT '0',
  `expiration` bigint(20) unsigned NOT NULL DEFAULT '0',
  `parameters` text,
  PRIMARY KEY (`id`),
  KEY `type` (`type`),
  KEY `IP` (`IP`),
  KEY `expiration` (`expiration`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfblocks7`
--

LOCK TABLES `wp_wfblocks7` WRITE;
/*!40000 ALTER TABLE `wp_wfblocks7` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfblocks7` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfconfig`
--

DROP TABLE IF EXISTS `wp_wfconfig`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfconfig` (
  `name` varchar(100) NOT NULL,
  `val` longblob,
  `autoload` enum('no','yes') NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfconfig`
--

LOCK TABLES `wp_wfconfig` WRITE;
/*!40000 ALTER TABLE `wp_wfconfig` DISABLE KEYS */;
INSERT INTO `wp_wfconfig` VALUES ('activatingIP',_binary '2409:4073:313:5f6c:e010:2634:43b1:38cc','yes'),('actUpdateInterval',_binary '2','yes'),('addCacheComment',_binary '0','yes'),('adminUserList',_binary 'a:1:{i:1;i:1;}','yes'),('advancedCommentScanning',_binary '1','yes'),('ajaxWatcherDisabled_admin',_binary '0','yes'),('ajaxWatcherDisabled_front',_binary '0','yes'),('alertEmails',_binary 'brains@amaeka.com','yes'),('alertOn_adminLogin',_binary '1','yes'),('alertOn_block',_binary '1','yes'),('alertOn_breachLogin',_binary '1','yes'),('alertOn_firstAdminLoginOnly',_binary '0','yes'),('alertOn_firstNonAdminLoginOnly',_binary '0','yes'),('alertOn_loginLockout',_binary '1','yes'),('alertOn_lostPasswdForm',_binary '1','yes'),('alertOn_nonAdminLogin',_binary '0','yes'),('alertOn_scanIssues',_binary '1','yes'),('alertOn_severityLevel',_binary '25','yes'),('alertOn_throttle',_binary '0','yes'),('alertOn_update',_binary '0','yes'),('alertOn_wafDeactivated',_binary '1','yes'),('alertOn_wordfenceDeactivated',_binary '1','yes'),('alert_maxHourly',_binary '0','yes'),('allowed404s',_binary '/favicon.ico\n/apple-touch-icon*.png\n/*@2x.png\n/browserconfig.xml','yes'),('allowed404s6116Migration',_binary '1','yes'),('allowHTTPSCaching',_binary '0','yes'),('allowLegacy2FA',_binary '0','yes'),('allowMySQLi',_binary '1','yes'),('allScansScheduled',_binary 'a:3:{i:0;a:2:{s:9:\"timestamp\";i:1652731201;s:4:\"args\";a:1:{i:0;i:1652731201;}}i:1;a:2:{s:9:\"timestamp\";i:1652990401;s:4:\"args\";a:1:{i:0;i:1652990401;}}i:2;a:2:{s:9:\"timestamp\";i:1653249601;s:4:\"args\";a:1:{i:0;i:1653249601;}}}','yes'),('apiKey',_binary '0ba41bfc1961124b005027a435fc61b4d9580346d9220a76a85fd1af1cd520a7e708ff3715992491a3efcfd85c641770de5471cdbe592549589d99ef7d86a4993b2abf49c0ea1a7db9166b74c7fe4a06','yes'),('autoBlockScanners',_binary '1','yes'),('autoUpdate',_binary '0','yes'),('autoUpdateAttempts',_binary '0','yes'),('bannedURLs','','yes'),('betaThreatDefenseFeed',_binary '0','yes'),('blockCustomText','','yes'),('blockedTime',_binary '300','yes'),('blocks702Migration',_binary '1','yes'),('cacheType',_binary 'disabled','yes'),('cbl_action',_binary 'block','yes'),('cbl_bypassRedirDest','','yes'),('cbl_bypassRedirURL','','yes'),('cbl_bypassViewURL','','yes'),('cbl_cookieVal',_binary '628223df4b8a4','yes'),('cbl_loggedInBlocked','','yes'),('cbl_redirURL','','yes'),('cbl_restOfSiteBlocked',_binary '1','yes'),('checkSpamIP',_binary '1','yes'),('config701Migration',_binary '1','yes'),('config720Migration',_binary '1','yes'),('coreHashes',_binary '‹\0\0\0\0\0\0\0\Z€\åa:2:{s:4:\"hash\";s:64:\"8b9d35245d81bcd4c662098612dfeabf0476f7caae422964af888a5cdd03c35e\";s:6:\"hashes\";s:136768:\"\0­ˆ\ëW7‡Ž±ht#“	²šq¡»)¤ºd\Å\èú$\0\Ð\É\0(\Æë°xJ{\ìh¢Ï®%§\r^²\×:€û(\ã5Á—\0(\Ðœ˜úZúY÷Y˜@\àIq©\î›È—#\á\ÑT»\áù@\04ß—¼t‚\\v¦Q\çüÞ¹¾ô\'_\Ë\á\Âajx\ÊÒ¦\Û\0E=j¶ƒ\ËÈ‹|p8.\æÂ½ÿ÷\ËÖ¤ñóSGp\åƒ\0Eq­x¿ƒ”\ÃPa§ˆ÷>bv\áDª¿o4VŠG;a<±\Þ\0^N\Ùå¼˜aðe|K ·-\à\ÆÜ°\Ò\ÍÉœ=\ç„\0bœ&Fžö˜³ÿ%|w›\í*Qr;|/Š=(A§ó\ä<ü\0…‘¥#\æB\í5\à¿j†ó$#õ\àj!Ÿµþ\ÐbN€ôjö\0Û§ÿ\å4(\ÊK I|Š„¯0º\ìµqD.^¾v¯\0>|\æ;(ß¯\\W*œ7?Œö\n\ØNªÁ2=\Ã7[Uo\0µ\ëi\ä\ÓÖ„\"\Þû\ã\Æ]\Ñ^\è°þXDþ“2](\0¹‡ö/Œ¡o)öô:4]±\ã_\Çø\ß+Ì”\ëŽc½þ\×\0\Ôeµ*\ë@’t„À±\"\é\áƒq	ÈNþ’5÷„H¥\0\ä9\Ûw’i„ó\×\í5‚\ß\Â\Ð“§\Ã}ˆÿ´h\Â\Ì\0\ëüZÌˆ»~\í0±=\ï\èG‡#´C÷ÿZ}\Å* †p\0\íT|Ì…_¬\ÕSò8­´O0Î¼ªÂ¸0ª\Ãª‰6•\0÷ù-bs\èG¨\n(hr\Z.ón\åõù!e\È\×z.Yx€\×U\Ïi\Í5G \è\Ü$P\Âüu\ÍvAT‰‘À´pŸl\çJ¢›}¢‚¶a\Z\È\0VX=:ˆ‚8~\"2ýÊ¦D¶I\èXVªf¸EW£\Ïe“€\ßG§]¸ñ´q)6—\í	\Åj\Ü\í”õnNØ¤^}0[PœKXs“¤+È‰a±w©S‚¶\à[óU`|WS³PD\æ°ç¾ŸNh¬\Èb!•\Æò­#§8i\ß>kq6¿R„Eÿ5ž”:—\"ü…;B­Ži.qXõ\àA4û­\äuUœˆ+×±\Ë…´Ï±„\ç·Tª_^gyªzG‚L\"1°û³U}6:ŸŸl|‡\ì(ãœ¦Á–q{\ÆðVÀ~u\ê<¢Dh¦o*¿¯ŒcÏ¬0\ßñ\ÎÁx¢cl$‡	™4\Ú\Ým•·\ä\Éøo¾¿`vA:§ø™\ìˆ`{rf\ËÁ\ï_ûS3/s\Ùm\Ú?dš^Í”0\ßX0\ã#q–\Â-ml\Ï*€\Ï#TñŒc™ÁxðEµ\ÇÂƒy\îˆÅ©œ\âHœ\à÷\î>\Ì\ã$\É2þ\äŽ]\â’%\Æ\ì*œ6\Þ\\þdpùÛ›!½s%Ÿ\à]Z\×Y\Ço\åŠÝ¿ŸþŸ¥„©‘ô\Ér;G\Ð÷\"Š¥Gu÷\É\ß&\Ãw]\ê-H€\rRWý½\\\Ì5õ¦õò\'³Œ=\ÃP–\Å¹\Ü\ÊsZFˆÔ¤oD-x?\ì< u¶ü„qýXQ€7ai\Ì\rIC\ÒpE–K\á\È\Ìð‡y½€kŠÑ©}Ë£œ\\$­p\"·&\Ìp+^„º\Õ\Zõ{©¯Ž\Û\ÌÂ˜¹5ÿ|™f¢ãµ…S\ÍLšo3EýxÀºýÑ¥U\ãÿ°q¨`Žq4u\í¶øZ¢®¹ð°¯[nù8”O£\ìr7‡\Í0H01YL$RRAhJ6´\çM¦w:/ð7š.\ÊÚP”Áƒh.B\ÂU-Ñ—ò\'TsÁªz+p¿›\×pHaœP04•\ÃD\í!\Ì2\å{\ÑF°Í¹|\á©ö¥¤p8$—hû\Â\"dö3ÿ¬ \\•£pY•Q\ëá£Ž›K4Þ—¸ŽØºðþKu³\0M\Ôx>]Z\Ûø\"\Ñz\Ñ8ÅŽ\ÇV\ßMúË»yUL¤…ÁK«ùC\ËWa\å\\°\èË\Ä\nƒ;\è¥0\åÄ \"f«ÐÎŸ\ï\Ò\'\rÍ¤ýD\ÄdM\Å\×\Ùù\Ã÷§s\ËÇ¿‰\ØÚ´ø$2ôj)\Ã,\n²\' #6\ä§9\nü‡\ÏÚ–©õmK\Ø2†e²f\éte¾4ùœš\ZðGG.Àf­±Vy`¸\Éÿ)\".o[`\×Ï\Ý\r\Én”ó\çjn¼viU\n@,›+!%u	re4\Ù+JuP$,–WN\ÙP\Ù2\Ò\"Åž˜,|^\â\å€yÞ²ðñò/\Z(A°1]ü/Æ…­B‘Mój:­\å@Ñ«\ÈG+S\Ûf¶º«ÿ¹dVži‰\n°6W·úÔ‘\\<\çO\ÌEj2¬QòŠ\×\Ö”\rÀ|þX6\Â\ì\Ô\î\Ò/46¤Jò\Õ\É?\Ô\Õ\æX’GX†~†–u™Ÿúic\r\âpª«õ´ûQ\Ö\Çí™œ½÷\r?c˜L\ÙTÓŠ•ù\îqg¦È«?c—r‡È¸¦t­d®¬\æB\rTJ\Â,Q“\Ó$šTDh\×ñ\Ð((Zdz¶¹vOÿ¯¯\Â_•Ÿ;Æ€›³EŒpYö.\Õ&}öº_º	\ÔQ¿\Æ‰\ãoS\ânnûÌµv\êø\0)°ö\Ì\Ó¿–\ÝÓ¤\å:DILV­\0y\ÅZþˆ)›¾K‰\n\ã…\ËÜ˜D‹~™‰%Roø\ïc‰\Ö7®\r¦ºL»\æ>1ŠÝˆ]š^]¬RÉ¢NF™Mô\âJ\Ì,˜\ï÷i\êI.2 š»>1·Z\Ø;×¨¾‚1Ô$š!¡‡W:	¨Sx\ïDq5º\à/wº\Û_W:œ\Ø+fð1zù¸g¢¦‹\\Yòú\âmõx³GO0\Ç\Î\âjo].ã–½®Bœ=½f~:N¾\Ì¤Fa6¢Õ¡\Ù\nY \Ø\Ó\'º\èiû\Â\ç+­`­\ÂfGYbmŸ\ïUP©™M™J\éÚ¡0€&Cv\Â\èM“$…\Û\èú¶O½·4-K¸	o6\Ûlbö1E\å;±7xù?ð-™Ç±Œ¨Z\ÞzE»Ÿ‰*†nk±»‰E\×m@\ìž\ã\éöŽ\éð1s®­Y•#1$\Ð\é\Z£=I˜ˆŠ¿b£ŽXBr½?Š·\ìÍ¥-ô‚!\Çiº>¡[¿²eøV{\ÐW¢!FµPþb<&Â„AŠ\à\Ðü\Õ8\Ó`\É\å]wB\ËùÎºõ@kp&»›¹h4Ô›µ2¶™ºf\'öG\Ñ\Ó\ÏIS•\æ} }Râ¥…ýJÐ›Z[`\Æöm¦ÿI”$=„­ù¼¹D“‹Ö›&\ÄÇ¾@+Õ¢\Ë\ÐqO.¯Œ…x&Ž®*p§Žö@ýl\ëÁ\Ð\Òþ÷Î’/kz=¬i»\ê\î\Ò Sò¨°\ÔÀý\Z\Z4Ú¶1\é5Áª\Ç2’3\r#?E\ÉQ·\Ë\ØL¶\ÕIm$\ÏZ\Ê\åªB\Z\ï!„\ãœ&šÍ–Ž—Ck†`7‹\Ï\×\'/¹½]\äiª²5 \0¼\Òµ©Š2SC‚\á\Å+2±\Èüf!Og\Ðve½C\Þh\îÿð”\Ö\Î%%\Ö\ì-\Ó\Õ)^\\‰¢\0«t`–k\à²@§ƒ›U\æOÅ”¤cp¦\Ï>\ã!8HB6¥\Ï\à\ã\ì\â=“bñ\Â‰!§ônŠz\0§OS~K\êø\ç|$\Ø\ëö°T¡\ì\ïÁ…\ælJ\ÆøbÿOwŸ\à\Ð\á\Íf\nTÀþ²­Eg\ZU\ê\røŸ£l{\à²SYD7I\Õ.`\è\äµÃ}#Ù§þžôJKN¢e\éÓŒ»ð&\ÂÐŽuÑ¡Iq™t¼·‹n~T	_j\×-˜›†\É%³¦?ž7¡0i–»\Ë}\Íe\ÝiZ\ÖO™&E+rXŽe{eª½mX\Î\Èö<¼:¦KSy{ ®r·>K^s\âVS2oõHÖ\á_\î\Û)7¡©š\ã\Ðz_oe\ï\ÕýÅ­y§^/?h;@r\âK%\à\áLP…\Çf¨\àc\Ë(|\Õ_] \ÛU\ÌÍ’o~MEÿ\è\ï\×†\Ý‹\Ùs¬ùRp\çd\Õ\ÎF[ÿü\'r\Ý5lþ—¥è”åª€Ž\î´s\èƒò@Z2]¦óºi¾¨¨](J~nø3\ì\àÏ¿Ù€hjóq\Úo\Ñ2±†kLý›JQ§c\0\Ï8|V\Ü\ËA‘üýŠŽNÚº¶)\r\Âm\äMA¼\Ì\æD¾°os,–\Õð\ê$»‹ôgJ	\áÅ–\Ø7l}\Øa¡ñ¾\Ô\ÈÁŠ¯\Ãw|\ÛgRLh!ö°1\ÒRóþ&\'˜ýk±D\':8YÞ¨KAa¬-¿RHöT\Òÿýÿ¥\ÕýŠª»(:ó=ß¤\'\\\Õ\0¨¶¯|\Ç8\Í(´ˆ]x’Z\ä´\ÏvJ+\è~†S‰$Ù‹6\Ï\îvgAÑœÀÊ‹Q?­j¬`J“ñ©Nõ]\î0&–ñb›\0\ëV?9´Áº¶\Ñ\"­.÷I3ô‘2r)rk’+`½NiM\çñ2]<¾	¾h\n\ÚË¥—þO\í€3Œ5Fž\Ð\È\\\Ì\0÷žð“,vS\ç\ç+p\ný.‡§™\é´\r\ÄJ*RT	ü!Œ\æA&–\ÕUóB\ÍtG=_:\\\ê]>iŸ£?Î·@Ú¹\ÜaKÕº\Ú*¿ Ô½+]²€µÒ®gÆ‰^62óG¦ž\rƒS …|±;)¥$=XÁn!\Ãº®‚l=\Ø@õA\Í°\Óñ:\ÞV56U\Æþx5ôPx››\Í&ó¿:V“V\æû\Ú-qX¹\êA9ÀM\ç4\Þ\à†-²°©t\n{\ë\Ñõ†}ÿMI	AE0N\ãö\Ü\Êûµ„\Å.T0b([\Î²\Üžª£õ\íoYd\Ô\Î%\Ü \å+£[»Bº•ð f¶<3)|•žŸy-¯d‚°´\Êô]`,5†\ïl9„o\È¹¤x«œ;‘ˆõ¾xZŸ \Õq@\Éõ¶\ä51a¥Ixˆ»¼MOYÀUò\r‹Z\êtŠKÏ­\éuJOyÅ¹¢&Ò¸ø\Ä*\ë‘Ü²\Æus#‘žt1ð²#4\ç\Íö´\Ãä‚¹\Z€Á\'&\Ý8\Ñ\0\Ãª”¿õ›m9;:\á\ÄÍ¼„f\Â\Æf„)“™¤Iïœ³\Í;ÁþPoi\Ã\ã§\Ú=DáŽ¯\ä¤0Sl\íhsgÜº{”,˜\Ì)\Z|œ\í\Þò¯<„\n“x’¾*\Ô\×óŽý\×i\Äó–\Õ\É`™€hˆÿ`“P¡*Í¤¹!j1m!–~J­Ž\r¦O\Ó]ŽY<yŒ}ƒ\Z»>ÉºH¨¯ðI|\Ü\ÇPô\è±\ß\è®\àBb¥½e\Ô^üšÎˆ;VT1¨\Îcj¨] k^§O\×\ê¤9«A9/\Ø\ZóŒ%˜@b¤.Œ`»ð•š po\ÖÀ\ïdf¹\Æ?»jr£\äY\åe|\ÕHŒ÷h>\Ý,‹ec\Þ¡–Rúes5-“š\àD=\Ç\Äû<ó\Ú:3\ã\ÍÏ©‘M\çñ\Ô>»‹ÿr\î6\ËÔ¤\Ðô%z‹uÛ‡7þ}»F\Ëð˜\Ä[yx±¯]k\á\ÆÝ­÷Yrƒ‡\Ö¼9£IV,C2\"“•\ÉV\Ñl·—pˆ]l2¢P\ïøf>\ìõKp\Ô\ÇÖšJ”¾™bvw°`\î©ªµ*»w\é ó}±\Ëø©¶*Ê˜ñ˜)>2ƒq¤–e¥€^\ÕÀ)ŒP’¦\ÇnûGfRô@Ol,>iv\Ä:°`\ÄtQ\Æ*·8\'¥<“ó\n\ã‹Á’¼ Jò·;“H`÷QØ6pq¾ÿ\Øaó%\ë®ñ\r†\Ø	ü\ì\"…Anˆ3H\ØIs\Ì:Y¥¤aÁe0BÒ²yõPp\nï­¾¯¨™ò\Æ!Î›\Íÿ»\Ù&°\ÖÉ…\'Mº\Ð4\ãšBŸSø\ß\É+\'¥4&¼$Ø¡¡óVgg¤\áo\Îüg~\Ù\ëm/\à¡/&t+\äù\âs\×\ì¾\ä\Ô\"#:Z«Ü¯4ã“‰&_&\Û\Ç\Ç6\"xFð|w`AZ_+vL\r}°ŽN\ßP\å\É\æ6ƒ«¸Š½¢_\ëðÒ°\æÝ¾”ýl2¡bž©¹qÃœ$U„v¡ñ	l,s¨\Å\Ù\"\rûmž\è`»\áY×“¯U”¶X^žMs÷—6RŸH@ñ	&‰å†¾¤B\Çxžö@d\ÆR#U³ôOþPg›žsHüo\è)n\Õ\ÎÿWr\é\ÎtZ\ìMª\Òþ\è?%†\ï¹ˆVú\ÜÀ¢D±°Fv\à@¯ˆÁü\Ü*9V›»ŒÎ¼ó[E£¶Bu}<¨î„±\Z#¶d¸4*û?˜œ\å¸dªQ]Bx.|9Døö:h@\Ö\ÂQÿ\Ï/U\0-|_Û¢1ùg-ñ+´­·\Þ}üÔ˜!^iB³\ÐòJü\Õ\\W¤]f§œ@@…w£=	.]¶\íkZ1Ñ™m\ÒGõ‚ý]\Ôx\à0ø\ê•\É	14\"1œIxªõGL¦[	•‚±>(G\áA:Œý\Ç	64µ®ˆ\ç ¹2DM\ÈM\â$\Ë\ræ¾i“\0\Ô¬‹	8\\Å¬\ç®jùA’Ê”5\Ñ+X­œoˆTùm°_|	M\ë°\ìyu$œ1¼ck_‘Kÿo\Ýf\Û\Ïm³…¹%û	g)[.‰r\n\ào”i\×{4Š›Q\n\r8HŒ\rfXðÀ\è	v¶l»´õÙ®\ß÷!ÿð¹ÿP€²mýø•\n6|Ï”K	~\ÐõC\èÈ«™¯7¤\à\Ã:À£s&u\Ë\ä\Ù\ìj\Ô\Ët	©+ö{Rôƒ\ä\ÓÙ„\å\Ô\Ënýt,´Çž¦`µ•\Î|U\î–	­	½œ#t‰Ì¹»\ê«p=¬I\"¼¦˜)F	Ö“\Å\Üñ-Œ\nqU‰\Ëiº\×\Í-›$\àh*\í\Øm™l	\æVh˜\ÐðLC‰Â»>U\Æ8.\Å`\Æ@<K\é\ãh	üÍ¿¸\ÊU%\ÅO¨HÞ¡ñŸ…@¿~x\\6\Î\Ä~\â\n<º:˜X†h\ÇQATºÀ\ï\ì·oŽ\áp2õ¶¹8>ø\n*„²<\×÷ºÓ³³?HM²\'V\Õ\é\èL\î¼\'[R\Û\nð@&\Ø\ê[DqS\ÞÁ\Ê\Óð\ì\àB—\×N#F‰B…\ä\n*An•„¸.]\éB\é\Ätúvƒ!‰WÒ§Mw’9\ÝûF\n+P_tQÿVo\êú©²ª7nÿ\nz#ù8\Íúº\Ò\Û\ßJ\nGkù ~ng˜–m.\ë3\\–\nð\æ°1i‚\ÔjgÖ¸\Ó\nv­?\Ìu\ì	\Ò\È\Èf\ßh6\Ú2Bþƒ\è?ñ2\03”}¦\nx‰\çm¯«…nV=OD¼“\0T­\Ú\Þ)‰\ÏU\Ü\ã©\n}.¢’†\å\×÷v\æ–e¯\nµ?\æ°.zŸªE…ð»\Ú\Ð+É¡\n‹\\_9(ô)7‚\n—\Ö/õS\æ\à\'\ägßƒ†v•£\Ã\n¡9d£\Ç\ìgð~@–¤®|\ëB-ŸÁ°²œÚý6=£\n¤T\Â[Cp¹±§\â(,¬_V+\äL\rÛ¨I¹ü(.ˆ„\n¥súH\×µÑ‡c \ë-y//ý?‡\r®$MÌ¤j3\n§aqYK´JÒ”Î€pù\ZJüj¯\\P\Ç˜\È\n\Ô\n¶¯Ú·›tnŒ\r‰EanòŽJ;}(\ï\ÒÒ™©ñ\Â.°\Ä9\n¸X:€¼Q\Ø}\×+öO—\\\ß_“	{¼Ü“C\'a\×y:¤\ß\nÁû \ÅW\"\íˆú\ëw†\05\ÑS Nr\Ëý©Š¼šh\n\×C\ã\Ù0\ÄpFdù°‡l•\0¿ž\"u\ê™~2\"õT¯½p\Z\n\èv\É[\0\Çõ‡XZppiý.\Ì¡c¹;~&Œ†\Ýø\n\î·\Î&ª)h4\Ð_`\ÕF\ãL“<—\ã:`#pf¢\ìò\nù˜˜\ÛRW#Þˆ´ \å¦Q¥\ÆÄ“4E[£\'\Äz“\r…“)…ƒk³\ÌŽO\ÜdS0\éX±z¯ú†_ó\È\Þ\Â61k‡K(£\á]1\Èz¯ukpR¶!¢‰³Œ—YC8»³\Õ`dfh–.^8¦\äô\Ê!{\ÊÀ\ÝFüN‘L{\Î\çz\Å)ªú,­\"§w\ÍW\ÏýS²ŒJÇ²þž\ÕÁK­SÁª´Àuá¾’¹Mˆ\Âcc\Ö\Í\ÞcdD™(‹Q±\Ì\\™\raò•[„J?T\Ó\Ðð?\ÑÿúG¼d¡\æ(s†©ª¢\Ô\îtô¦BUI+u›˜ÀC¯\ã\Å¶…R‘Ÿ\ãSF2>\Â3`¥ûv\Éþ\'˜:js(-N\ê§²šÖ ¸\ï–\çN\ç3ƒ\ì•ô:\âVS;\Û\Å\áCT\n€»] þ¥C‡rJ¾2Žª\Ë\Ém5CZ‡\0\Ù/@@1\ß1\ÎD\×Õ®6½¸8g\n)e\Ä\Õ\Úz\éñl¨1ùMH›‘&\Ý\ÆS\îð.>õU‘B|2›üÓœOU}¿\Ú(Ô°¡tc\ç2Á¬Ä’ZV†R\êé¡ƒ[§‚l#4ÿ\Ë»>1Îµ¢´Eþ€\Âl|lh¬®£\Ù\Ê]ýŒ\ä:\ÔYÅˆõ3	š§\Ó\ì\\gmÌ»ñ1)q+#\ã˜ò\Ùb\æ^0rR_Ò²¿ˆYn,ªJš©©½\ÎÍ“T\ÈNBº(\Ù-±§gõ\ê\\ICÚž\×:r\Ãn…Ì¿†>Tw\ØD\n®Q¼!˜@iD\äø\Ãr‚\è´È­!wz÷L{©\ïJ\Ñy7-\Ñm\é\×\á“Gé´žY\âŠ[¨\Íô\ãk\Ê\ÈEn#Xv\Õi‡w÷R»:žM7K¬kRŠ¢D·•¬‘.„ó²© L9Œô%±S÷¨³J*˜À–…n\'Íªt^À\Î\ÐVÉ¹\ÅO‡œ\Æ\Ç\ì*ó(œ˜„·Š7Y‹\î(V\Ýz|%\0\'j·\Õ­lø÷Øµ®$h\çTC\îô\ßÕžNû8köÈº\É™y·*™<I\n\Æ\Õÿ\äª(ø\Èýx€$ÿðC\n\Û¸mœ-B\î©\Ëó\ì›\ìYVAlÍ¼2¾VSü#n\Û\ØòX¼–‹\Õ6÷\ÃX\î”›\âñDU\ÈTö=õ–1O¿@ø,x\Ô\Ïý’ˆ\Ý³\Ù \Ø)®¼\r&\Üd5·s/,—\"\ìd·ùw22³š¹\r»³Þ‰#<*Q\Ðfûš(¥„õ­™\r%¶P¨–˜\ÓùcW\é-:\'2„U\á\'Ft\àÝ©z\r1?–;IBœ=S±÷\Z“2ÍÖ¥‘&þ×†Z¤B®¬»\r5C\ÝÙ–˜òªN\Ëùs\Å\Økú\×úl›\'t35¿¶°ª\rN\Ó\æI†Y›·½ø™Ô¯!”\Ç\ê6)¬ñI£Y\rQiü^š\ZB|­\äf²‘C‘¿\è-/r±\ÞU\ÇYÙ¢\ÅB\rX·[cdpSs3\Ó%.Xó\å|Aˆº\Äwü˜#(JL\ra‚{p\ë9\Ñ\Ù\åó(A–)Ë¡…Ì®SPV†\Ìs\ë6\ì#i\rnuŠ\î:Ft\Z±¤\"P9ÿµ¸qP¾‰œR¸®PA \r‡¼\Ëk•<vW\àP\äÀœvª\ãg(HÑ‚µ¢cŽ+d7\r”Y\Óøt\ÚW^¤ü¬}rIxÛ¯óºu†$\ç/dMk\Ø\r Uÿò‡:\ïwö\ç\ë\Ô,\È\Ë\ß&\çK…p&\á\Zš\Ñ\rª7GÙ› r\íXyl\Öï³ <U5p8\â­nŽ\èš\rÂ›\Ø\×Xd	D\n\è£\ìñŽ¬q¼bc÷\Zu—\íÀ\rÙ“£\ÒC7,š¾<\Üú\Üp­,\ÏLù\âµ~rYús#€\r\ç\"¾(qqš6\çZN†\è´\Ï\æ–\Éû–\ÕÅŸ&\åh©\Ï\rò\n\Ý\î\Ì*J–\Ô6´¤©¾û”V^±\Ï%W\\Ày¬\'\íh?I\Æ\ÏI\ë\Â3z(BŸGQ#‰—`p\äS:eJ\Ç&„/–Ê\áaÉ‹¨“`\ï÷þ\nŒ}û\ç\Z\\x\Õ+\ÃG\\%R£µ\ÍO¢¤6³\àû\í}\î°ã•“æ‚«\Ä-ªFúkRV\Ëð£6š·ƒG_e\r­¦\"\ä}\ÕQ^u\â\ÕøÀ¿£YtY®‰sNl\ÉdU|\ß7™‘t\ìU\àFY€›\Ènˆa\ÔIWRH\Ûj°wHBB\Ç\í•\Î\íu¤Xp\0b\äUe\Ò$OrÎ°Ye¼JX¥pºW	!\ëL«	o÷Ñ¦Ÿ?Á11\Ê\æ¨]ûQ[¯\Ú7*ûa3\ÞÇ¾\Úh‰‰,¡UúŽªc\\\ë¯kiš² »6uø\àJ\n3*¬“Kv\Êi„\åA&\à4’ú«=‡D\é\Öq!è“¸Ö§f;4“™P\äZµøeµO!˜vx.e\è\Ó8—jY¦»û\ç\ß0\Z¢´€\èP…P1¯\ÔS/À\Þ0?\ëU!õÍˆ¾\ß½¸õò6°??\Ï\ÏöZž‘vˆw=2H:õ)x.°ô®‡³\Éo\\\Å\ÔJ†\Ât®LU\Ë\Õo\íõ\ßñ­L¶¿~Ÿ\Ð)6\ÓK\Ï5S$Ê‚8—\Ç\Ý\×â¡§5gg7ƒ3lsuØ¾«yˆ\Ý\à‹Z¢wÚ ›0YE\0\é\å\Ï£èº«i\\ù\Â\Þ|’¼”˜\Í7‰\Ùwq‰\Ò;,r’\í\äLX\âü†±\ç\È\\35qv.Rß¼h<<\ê\ï«‘t÷hDŠ$Œ\Â\\1l$yˆ,´\ï`p—M¥\Çj]#\ÚW­B‘TmŸþ½¹F\âM…(ñb;ËôK\áó\æ«g«&\nõ-“ûnzEja ¶#‚[ÕYdIdf@\\‚K2o—–Ø‚/*\Ò~\ÛHw\èÿc@\Û2Ž\í,\éò\Óù´¶P±0\ë\íÁº\é¦\Î\ã\îx`Õžˆ\ÚdZvsþ.\Ô\Äk‹’º…\Þ\Z¦5\Å\0«ºyX“§$\Èõjë¤‹ˆ\ÖIˆ\Âö8¢\Ï\Ì@t=\Þ\ä{9v\Ô\Æ>:Ì·M\Z\ÔÏµ‘”±¸\rBt\rð\Ï\×\Ì\Ï3û‚i½„0bn\Â\Ôj:ž$L g\Îƒr´a˜½\å­±‚öš„tõC ÿY£\n™\ÜH\ßú$$ŸTƒÌž}^ñpfO]\ÅÇ­N3­%\r\\Š\à-\ØA¹J²K\ÝªK—\àƒý7P¯xe\æ\'£PHøÿ\åHýP=,¼L‹‹\ëNÁ·}\ïœ\ZøE\åùO\\0¸u\Å\ÊFOR\Z)Ä§\è„;S \'bN<v\ÙwúLSÚ»«sT³\Å|\Ï>Q\ë\Î°\Ïi}\ÚG\åD…£Ž7\á OF5\ì¢B\×Nov\Ù\ß\È:A_-3£ûx\ZJ¼B“@k‡y50\é“\Ï\É\n­\×Q\ã(\çð¯;®4ôÁ.ó¸ò`R‡\Åwÿ|lS\ÉPp\Ük\ÔG\ÆM\Ñ8\Çüƒ•¡\ÝÔ¹\Í\ÜöfòE\Ëx;Ë±£\ÉO\Ø[À÷ó\ÌJ`uO\âv&_\Ü\Ù\Ü-]ª›ƒ\ÆE–\ç;|¯µx$ \å\í(˜t`\"ò\íð/\Z=\á`>&\î‡oRŠÖ«\Ùúª	\æÚ²\î\ç}\ÆZ	w\é%þö(ð4)¶;\r\å\í;¢)6qi9Cô\Ü2\é\Üt\Öd64KÕ®\ÚA\ØU)Û³! ž¡Pdlw\ä+´þ¯>\Æ;\ç \ßO¬±-LûhyŠûML)\\VH\Ì\ã3_@AJ!\í_°ªdrN\ßd\ÒG¢;žÏ·ð6Á<³\á°òúº wj›;\ÔV½\Û4dk\ÏÔ·Ü>·D‰Œj\Ã,p„\Æþk~*Šº®\Ýd}\ç¯[¼\Ô\í\çHù?\âiK¶[¼i¾ú/\Û(õ¯‹\â^ž\\‚Œö4¢žc-¡\ÃÈœ¡þ)öÍ—\ÊÛ·õ¢\Ò@c.\ìV_;qö¦ª:uMø­\ÛX®ýœbW…\ìZ`\ï\ÄE²Ø¶\r\ÇS\èñky\í\ì%„/þ-‘Žu_EC©?o\ÍTgûNLC\"M\ï61É¿\ä\\ˆ)®ji®÷\êÁñ]\ãm¥†bŠ#¯™«6ˆ§C2 —\Îao\ß2á¨Fý\Ã\äËL\ØW¡”®%\rVJ~øpŒ\í$¡Á–P(‹ñqŠ\Çú\0„RS\é;\rsò}¼ºo%Š©XOwR	\É\\˜óB\Ð;z\ÜÀ\Òõùñb#\Êqš¾l¦¼EôˆSŒWDò€\æLex\ì\Ýéª´@m!\Ñþ~¶\î§\Ñ|dûET9v,´WÑ‹‚‡\ÜÊ€KK\ì˜\Ñ#\0ª\Êf›ç¾€Gº~µ„p\È\èoPq\ë9¨\Ã\rbL\\9ö2×¬§†n*PP¼\0A¢wƒ:oHðRRˆES\ÌG‰\ÂÊT-\ëa*Qf±,S»7ô\Ïq\ÔÌ“<¦U*\";b¾r’\ê\Û^°&\Â7jùFÅ‘øú‡ÀÒ±y\ÐZA\"\ÊYŒ!•	=¬šxö`Jß©i.¬?w~\ë/\"w¾U{«’\ÒLf×1:Õ¤y;¨&Û†Þ¹[rD«\ÞbóNv•Œã¤„¢\Õ\nÿ\Zwr‰\ÄkHuE¤\ì\ìôNÁ/\ïJY·’þgöSi÷–)”N]oò\ë\Õ}\ß0<Á,\Ä\í\ëeS</öÜ“8C\Ò©T2I†UX\ÐjF\ê¾\rPJ6¬\\\íd$Se=gÁ®˜øÛJÞ°S·0¼£il‰ww®4‹:™ø\Ô\Ú\"D½‹¥€=[•¸Z\Ì\ï\r‹‹\ç#¦A@\Èf3¨1_<\È\Ñ\îv£\Ï\Ëü(QN\Ð\ÜYCwo\é\ÍÀ\Ûô}z\ïö/+x\Ù±—®\Z8\Õ\îû3¤•¯óóÛ€TÁÑ‘/º\Ç*¨2^\ÂoÜ°\ì\n­0üþ\0\Ó\Ï1\îx?F(\É8Ž¯\ÜV\í\é\Å\Ù/`8\ÜùÐ†ÀÂŒ\ã\×t¬2\Ô:²]XK%\×	EL­\Øå„Ÿ\íŽt\é°~¨nF\ç^mº\Ü\ÄKY\ÄN§\Æ\"\ã\è €t\ÛhR\ÏD\é†P\Â>(\ÕF-\Ñ$>Q°ŽA*0l[U[”±µ\ÚA7­E\ÎOxÆŸ±:Y§\Ã{¡ñ ”2gûZÁ“+j{\Üh“øöNž.m·Û©+\Ë6™œr0Á…±q´\ãX\Å{4¦a›û©\Ë\ç4½•¿…=P\ÔÒž%^\\$¶ürfš’z˜;@h§¢è¬¬&§f{»Š2ðTˆ€,Jg~\ÄKOb¿‚H\Ö$(ûÀþ\r_®\nt¤l\ì	ó6±\àAx	70)P;\ç¤\01¼«œM{}i\Õ®ƒüE\Ôß\n\ì°}HNfÎ0/Á,u¶\ÞøIøÀ\Æÿò’õ)\æ-[\0ª·=Ö¹?¤+;Q¦…/×¬W/{º˜\ßšlDA£„U\É\êRp½rmm\rF6\í©\ãúŒØ·ˆ¡iŽ(\":ž@Ÿc\à‹·: <R)‚¥%+:Á¼ø¨\ÉG%Cy*\àm?Û´¶/\Ä\r!\Ñÿ\Ì…\æiªAHK2°\ï\Äw:\Û%.ó;j@Û´£)H&\î—R‘×°£\Ä\íR\Ö\ãÿwci”Fô\ìz›þ\r_c;\âQA\Þ\Ð\èJR·Q6}®Œ%™\0\ã’w˜…Q1¦h~\ÇB¸§×ºÊŒˆ„¸Ê¤!\ígÀy£¥\È{\å8\ã\ÄÙ¢÷\à7\n•¢gT1ü\Û^0>\ìˆ\rŽœŒñåŠ¸Ö¬+)\Þ\×7X[_§u\ÒÛ±H\Ð\Ø]\"¼ª´Â¡`\Änr‹Xa\Õ;\ã?~‘ŠR¹žq3ü¸Ù½¸R ±©\Úa\år\0\Òþ©B<c™=OR“ðÂŠ\Ìv³B¢n|J¼±In²;51VöSK\Â6ÇH°òi\ÔI¥Ÿ (.fO‹\Ódx,¾0Xl¿€\ÜJ\ëú.\Ó*\ÄJsŸ9\Ç\Ë&ž$ƒŸñÀ\È\rN\ÖZ/®aU‰Æ`³dLŒ?\ì>C|\É®\Ê‹^vò…‰s‚_%„W\Ý¸\ï\rJ–\èó*\Äf’zK\à˜Hv®¤M,¿\Ë\Ä,õ\Ûz»¦ã¡«\ì?jkÁº\Ï[\×0}Œ\ÑFW@ñU0\Í\ÇW\ÕgSÀ¬2c\Å\êFFˆ|\Õ2`85’Sb\êG?e?q7ƒ¸¢œ#pjÚ¥|É¨\0Y\å\ï‚\Ü°O|øaV3E‡FW^@l“2þ4K\Â\Ì<\\\Ø/#\Z¾¸²\Ðjp‡ñ!C——B¨\ÎÚ‹TL\åX\Ý6­j\î\áy\Â\Z\n\ê˜Ñ‘\Ö4ºWÁ\\\Z\ÓT\àð¨´\ÓM\\\ÐVûdE\ê\Òà¶¶|@\Ý]Œ)2Ô•iq\Çj¢\ì\'—Vpý,\ä\ßÿœ\è\ÕKº\ÞzMr#»\ë\Ü6h\æôq	:·@\Äß®›\r\Ï\ß\Ê0lÒž„·ÿ\á\Ç\áŠ6\Îj¥¤ñ\ÌøZmŠcúƒÁþ-«“k\Å\Ñ\è­Y£\Æ\ÛxJ\Ý\Ó5\í½ü_\Ö*\Þý–]O\\“”s—M†\Ö\n\ÕTœ”27Œ«\éoÚ C\Þg`cŸ™\ÞË°m\Õupa \\˜|/J\îy§2\åfy2qýt\Ï@WŸk\àmx\ÙG\Ê\Äð°VÍ’´×µ¨\Îpzkðè¨\în!Š\ãò>x›\\½ðh|À,e´0?ˆ†s4n÷,\äLmu™Œ\Z\Ü^Î…hU}1}=\Ùz£\èiÁñy\'\'|K¯²W?[ r(\r\â\Z3ƒ·\Ìz©Ø»\×fW^Pƒ1Y\Ø2&\Ô\ÐÛ‘pAµU\Ø\Þ¢%šõ§\â˜f\Ü¤G<‚+HH4ûywy\éª\'hz²x\áú\"¶v‰\\òp\Ò$»¸boÀ™)cHúvS\Üµn_\ã™ˆ¥(a¤§WcÍ´Aœü\Ï`k\Ô­BÊœÑ®,2£Ž\×÷Sˆ\Ø^ÃºôDñ±\ïõ\ZÑ£0?\ËÞ–¿fót¶ª&\Ý!-U8ö†<’´Gz\ï<3\0R\Ó-k\Ð,šuø×¼)³†\æž\0­²\nù9e\n!I9K˜W÷«\ÜÇ¼?_\ÆIaYOrg÷Y³\Ê\ã\ãk?—R³0©ž}<\ÝÌ¤¡\ÜÁ÷ø. ¹¶$^$¾Šm\Û\æwÞ»`.A\Ã_[ò¦rE£\å]þJ®#\é¼\Ù+ß˜£4ÿD½¶,E\ã¹\ëÇ¡Gfóy5ÜŸ@‰ˆnNñ„¡\á«	\Ý36\ÄM‘¬\ï[\Ïy\éFRD\Óm\Ö\ß:„m\â\\\ßû\Ø\ì,T\ê3y\È\Í\Ò?\ÌP¼þ¹Ôˆ+o˜óŠKqra•\àU“Wj÷jˆ:M±\Ú\ÉS\ìó\ïC\0¨\Ç\Ð™EšºpÚŽŒU=\\Ù«2%±ýü\Ê72B¯•9º¾\Ô\ä9k\Ññ\Ï\r?r\Ê\ÇþqQe™-µ=‚ù¿õ\æû\Ç\ÓOzÎ³\Â2z!•—­.‡w\à\ì\ZFPAÀ¦¹SÓƒP‡l–Z\ÅNÀ\é\Ó!&€›Qwô|¾c;\0,2ˆaÚ¢Uø\è§P»\ížrY\Ôo:Wš3§–\"6¬uxh\ê\Þø\ÛS\ÛØ¦®«3)]T•CÁ­ËŽ1B¶‚\"$Ï¤_öY[^¡e\n‡\Þ41¥­L§òHÝ©\âÌ¨ò<ú\à\ÒW`’‚e\í\â½\Ûö	ŽU°&œzøÕ¿RýÿB=P‡KqF–u\ß~•\ãŠ\Z8ˆŒ\Éö\í\Ü\ÞW¦2\0\èþ	\Òeü½`h‹\àp\Ã,\å\ë-nƒù}“;F›õ¥ \Z/q\è@û\ÆQ!XŸw>\ã‹€\Æ7¾.„lû8³\èµòle¹Q,…Àž\Å\×\í	n\ï\Òa‚²TßŒC\ÄÓ€#\Æ\É\ÜŸ•ô\çð6œwú&\Û¢f´U\â¿\n¼ý`’Vr™{¦ôYUš¬\"V1\Ä	\Ç]®98}´.ú@ñ\rf[É–&þ»ó\Ö1^¿¢™õgÂž+fV\èü`6)	ð­5ú½E\Î\ÙSýj–\Í\Éÿ…\ÚrôK\Å\ìñ\åuj\Æ÷\Ø%‰öp\Ø\ÖA“õˆŒ 9Xc<_:\Ñ÷l#¦(\åÇ€v)É£˜,•‚Ä¹¸†v\Ê÷V-¤núžz\âWó¬\è“E\Ò2\âDû½\ßûþ Hþ!~\\ê© FÁg\ë™J\Zop\'ö]Mi@’‚øó÷P;µ›\ÈVKiüùV(\Ô~n’ˆ&^VT\âSn\Ø\Ç\×^ó\àE§½y	\Øuû\0ciñ^Su\Ë%™Dª{o\äx\Õ\\4\'1–0p\é\ÉúG&û¼\Æo\Ê\Ëù¼ÀAM\ãq\É\Û5\Ï@\ì=ˆ\Å øP\âx\ÇN^\Ô+‡5H9_r ©²\è?\ïMÎ©—Ô´\ÃYµº5D`$BfyÀI\ÓSŸWqØ›\Ç\ë¾r\ÞcùW£òw\Zú“(ò\ä€î‰†&ð=\r™eL\Ð|)¨a¢ój.­¢Vò\ÔC6À•\ï\r³Ÿdþ\n3[@\ï\r\Ö©œÜ„\'Q²\nÅ’©+ NÁAÎ¢¢\ê¤:Wˆ¨¿\é\àöù\ì <\'¦\Ö\ãdÿôý\æ¸’SB³4,\ä\ä¿÷h\Ò\ÉÜŸ+­\ß\È{Ì—r…~aöAÄcŸ\ÅKAj¡TG”•/6\è\Õ\ìþ\n€]\Å<E&@Ç·ò(\0¾\Ëað{|\ï,\é¥@\êhaƒZ\ÇÝ»Œ¹‰”°N/F]\0cOJh\äÃ™L\ÏC„	ù8×«hl\Ä2\ê\"i\r2Ó£-à­\ÂX¡C +›R¾a,¦\æ©f6‡\Ê—!\\©I&Cú#2M\Î8_6ws\ÜEŠûU\í¸øP¢[\ØWÒ‘´\Ï4Lº{4‰\Å\Z \ØUú˜uw—ÀŽ\'çžŸºh¢Q\îiÿŸ³5z\r\Ã&‡Ð‚`~ó­\'\r\ìQ l;4\Û•¬±\ç—\×eóc1bÿ0‘w\ß~Ÿ{÷±wcj¾|m]a_šö¹òdƒ¯õ«¸4Nýœ^÷\\~”¯Ê˜™\×ó\í’ 7q/\"]º\Ô\å$\îù&<Ô¼	¡Q\Û\áY\íž)¶°\ri\0\"4ß•ml\í\É\"W±K‘x§šI0$\r\Ø!L7³®Š\ï›K3@š™\"[qŸ\â\ïË¯v\è1 ©\ÎK&.\Í\îD,\Äðpþ	Ú±4zÎ®)”ˆ\äúõF’\Î\r8x\Ù\Õ\ÏNz$¢wFš\í¼m¯º$\"˜›§®’”»]X°¬¬\Öeõý\"ø?ª|2þY	ÅŒ‘ø¢\Èt¬-	ù¹ú\æà£Ÿv¯T\ÑÕ¨¢\æƒ2H`o\ÞHPOn­uDpRÖ½€\ã’R† nO\È\Æk2Î©@7 \'y·UÙ™K;ø@Iôªù\È:7}\íº.£aò	Ì‘HMÏ©:	qF\çCO´‹„\×úü\å÷ªc#Š²Š\æý y\r\Ý\Å\ì\Æ\éš<Õ¥†l½4\à˜™¤˜Ö¬\á(»\Ö\ïóšw	½]\á\ï\å5\åõ‹Fn?•`\æb8¾)½òk¸ö‡¢\Û\Íš(S;’w\àAq\Ö^\È;ñõT\ÈÎ¹\Ø[—c\ÂöºJD_´–=$x\ÓBó2ëƒ™$5)ÁS¸ž²jrx…VŸ\æIR-[„ÒŸ\é1¹ð.;\"»\é=1\Ü(C]e(½d-|5QC\Ø\Év®œ,\Ñ?\ÉaŠd\ß\Óö\ækVŠl\ÙEWš\ä¶±R*9\Â¸)7”‰\ëmûvÁX­òbÚ·\'†p	Z9@³·S\r0,t`2±pl\êós™÷­W\Óœ¯¼\î)ª0Š8aIpop„AþˆB«\ÙH\ß7¢M™¬¼´)™\Íû Ÿ\áJÿ†Ob\î\0\ê!\ØX£+cÍŽª±º¸òÇ®ô†„Ô‘8\Ð@ÿøœG\Äh…šar6 \Ê\Èr\ÜVB:\ç\'® 4-²µ°\ÈÀI9»\íˆ#\í\"‘\Ä\àiÝ”[«ú-¿l”—À+‹“\ã\'2Y\í\ÉóU‚~nZ™\á„õ¬cÀt\ÄtŠM›h?š\ØDm\Ù%¹ÁÊ‹d\ê]\Ä\Í\Z´\È\Õ	MØµB\Z¾°r»/Ošˆ5’¦†%±NÌ¶\æÀ\Z\n2\ç\è£~—µ\Å\nò\r®\Ôõž=a\Óâ¸¬—]ñ•\×÷7\í½\Z\n²Å¬þª¾W±´O–Oõ€¿,ÔºN‹\ß\ÆE\Ì\Z\r7\ÄhZ›¹\Ë\îBLG¿\Ë+‹ðü\îvòS¨d\Ù\Í2\Ø\Zi\ç˜\r¿°\ë/Žq\Å¡»¢uVc\çx“-l\äl®8\Z˜\É\ìÃšóZÃ¾–üÞ¨6£®¦W2\ÌlI\æ96G\Z¢BúXf\"\ÆÔ­®Ÿ\É\ëœOÝ –%\â¨K3Ñ“93h\Z\Ü4þ2o^iª\È\Ôw\ß$Se(Iª’}P’((ôö\ZQ\n…S›µ³^M\0–Ã™]M\Z”‰`:£˜\áûc\ZTcÏ‚¿6[\æ¡L‰B\Åc¸l\Ý\Î\rx‰\çR()\é\Äa?\Z[Iž¿\ÎÊ™`:—}ž§›V\Z¼‰T\ÕDn¹ý+\á/`{\Z^\\%\í\Ûk÷‡OŠ¯™€­e\Äiø©: i‹\çñ‹\Êo\ZqR\âT‡=—\0\ê´\Ý,\×\ZXDí”š\Ô\Z´h‡÷\Ä\ÌK8h\Zxy7{³\è ²\è\á¦\ÅzQ1+5:#Mu<\â¯\Z…dhˆÆ¨,ÈŠ ™aþ\ì\ÃúÜ‘…†iK¦±#‰A\Zˆtù\ÖY-{RV Û·FRù¹!\ê%8·»`û?O\Z“Iaú^\à’°ñ\ëiJ‹žHŠ:žj\ê:•ºÀb\ÂÂŠ«\Z³ð;4JpRÓ—šõ®ÚŽX\ÄV\\2p&\à\Ò\Ù\ß\n\Zº\ÍmÒ´`Sý\è|û‡•\Ø0	S®sŸŸEA‘L\çö³\Zäœ«\ã\È:û\ÉH2f×[\ÝJm<Œ”ýx\Ã<œ0”\Z\é7¾›\àÛ´½\Ã>\Û0\ÊXõš…‹Ï˜ô\Ø\ZùAS\è\ë[ò[°„kn/§:¿%ˆ\ï>\Z\'†ñŠ_îž¯\ZþšK \ÚG“Umþ0Š;A\ßò³¡†ˆ’-v…n\â\0]‡Ð†´¤{l\ÍûCMv\ãøÉ¾@¨Æ‘T\ï97C¤=y¬Zùÿ„\è3¿óÎ‰¤c3mŽ”!®pr­ƒûðû&,ñ\ÖûY*ž\Él}J\æpx5K²5&\0CRdR5P,Ba#1ƒQf\Z\r\ØÝŠžP[Š\ÙY\ØøfdŠ£fsRt\'/i¯Qf7êœ®\Ú&\'d°W–zÒ“|¶\Ý1ò\ÙÉŽz\"z|õ¦²s\âe\Ð\ÝQ¸gš\êJ\ÑÐ­z-øûX—+¸|¦ó@\ÎV¦\Îc\Îxñ\Éïª¤÷‹s|˜0–ü\àœvÉ¶P§5Tñâ !w\ãRL›\Äj¥Z‡^\'{Ÿ‹»  õ)8m}.\r¢d™¸_®n¼5±i?øW)œ°:\\`´^«V›½=\Ìw=\"\Ë[<ò\ÏUÜ€©œÄµ²\ê9ùYCW£ò\Ç-µ\â™üžGMóŽdz[½Šg½\Êb\î\Ï\åê¤¼\ì&\Ü{7º¿§³37ki\Ö\àÖ5Ñ”3‚¬N0P™®5yŒ}@Ùª\åûº\áb1¯po4\É\ÂA\Ö{†õ/\"\Þñr\Ëu•´0yL³i·(À\âòH¹\'ˆv\Ø-3 *3¼„“™^ü\Óc(^U#µ–\Ãÿg\Éph\Ú\Ûz{:Ž\Û7bc/\ÉL•V9½\ãb»˜\ëa³ò”rñ\ä~D–\à¸,\éú?Ñ \ÞGd)FA‚\ç’u\ç\í`‡`\çÚ¿o±\èÿ¼Û­rÁ•a±\Ðõó\â\Þ\×Ú†c»,=\ísK¤>P×¡®®e\Ú›)9R­ \ÚB£°ž[·\Î\Å|ñ\Ùõ\Ó\Ãüö-s§Œÿ˜1“ÊŽSP¬þ\Ò†\ÔE\ÈGI\ê45\ÕMC\ïgYÿù<¨-b²\êO\î,°‚w[\Æù6eJ¶²G7U]\\™J\æ5\\\ÐN•(-ð\r\ÉXö_\Ïj\r15-Q\äÁ›_\ÆY\ng^ýÊ¸\"|üµ.Y|\Ûb‚\Òþ\åO-\ìb$\×t+¤8j\êK×¹\Z«\×\ÏX#\ì[\Ó\àªwÀš¼\Íwûqüª51¸\èDj\ã‹\è…LH^\é½Ÿt+\Ä?ˆŒ‹–\Zc\Ãiñ\Î{\ÙÃ­®q@:\Ï[¯b\édl9\ÖÖ€,³Ü±\îƒMS,e\ÆlNrœ}\í6¥\ÞnôŽ\0O!\"¯j¦:(££!b*C\r‡z\Ò\"{\ëºt\r —=\ÇI)\é ^«sb\Z§¦¡ŒZŽ\nS­\ra‚ô¢L\Û&¥´ \â­v\î3+kCJ‚\ÅIò\Z< \0øP>± ¬%@5\êvñ%\â(\Ò \äô™òJøù§¯…aI\Ó¸\\Ñ“ˆHŒ¿O\'\nð\×(PùÓ³¤¾\n\Èr\Õ\ä	\Ès°\ÈñJ\æªúbómLhç¬‡û[´£Œ¶±\'{0ˆþ\Ñl\Öu\Ï\æÊ’hk¡‹õ­FNÊ¨\n\É,U|\Ãë¡\â§X\æ\Þ5\Ù)\ÙaT\Ø\Ýð\åÔ© %2•ûýûRy\Â\è‚\êÅ«i*\Ø%h%\æ\Õ\Æ\Õ\á\ç¶$)`v:#f“ª«˜Ÿþ.x÷d\nœ˜¹Ž:\ÌxA\ìÿ-\à¦H>ø¸J\ì\Ây;\î\áõ\Å\Ó<žðI8w2A\Ê	\Å‡ƒøÚ¸Øž°0À¿‰2ü–yK°|\ï_’˜\Ñ\â\å%d\ß\Ò`2ö9ª…xm\Âñl’Q€W¯žè–•U=d™¹£Z¡\è¸	«\éÊ’c‘WZ:ÁwP\×ó{6Ly«?Ø·cû\â\Ò\ä\ì\ÜI\nþ¨õ•£ß¾°B2ßµ±»¸zÕ ev\Èz†Œ¶3ñŽÆ˜U€{\î^qa%I™B\ÝÐ›\ÍW\í\ãý<VŸA=\Þl¸\ëL—\Æ^Ÿ<kL¤‹ sj\ÝÒ¥?\íb\ÞÉ–ðÈ’|\è„B\í?-(…ú+xdú6SP\ÑIj‹Ò—©:K­\Ïö\Ñ-œ`UžM\â°\Åu¯nÖ§œ]BeI\×ðY\rfþ6\éýþ·y\Í;Ÿµµ6\r)\Ð\ÌcUÈ«d4¢B”nD\Î\Õ\Â®Qù¶n+R\Â\ÓJ1e„,\ìñP 6;\'—6˜•\"ý\Ö ds´\r\ã=‹\ÊV\à˜’\"n*\áR-ª!\Î\Þ`\ÎCGÖ‹¹Ù…\"¶^\Ýe¤\n|5\ï\Ï.Þ°Š\ã—\Éú\Î8¹!¢9:Ÿ%\î\É±„…¤ö\'&;¶úC¿\×r\ÂAL‹*3q˜ž8“º\ì$\Ç\"\ïnú³ý™$\åFo¤ef$•\ã\îS…4C\ê\×\0}UJ5}¼\Þ&\ÜJmy\Ä\âNL5¨\Ø\Î\r\Z˜¶0s3\çûu³6!$¾0œKJŽ‚Á¨\r22ñ\Ìß–]ôö€Ã“\'L\0\Æ\Û\ÑñI˜M\Éq\ß2\ØËªã½\Zç‡§»¸\Ûi(\áÀo‡‚\ì)\ÝNÞ¢\ãVB‡\Ò ÁnúL\í\âc\ãˆ\r\Ý\àÊ¿5—»…œ\Ê2ñB\ÖG“3…u‡«²²\Í*\Ó0oýBÇ¯þ\Ú\Ö\Ùh\Ïû\ä\â \Î}C‡\Ê\ëºo€G\Ø}Bd\Þg»DØ‰$\êŸO<L#1£O\ØF14.+\ê¿kcù*‹ø9\'q•.\Â\Ü\Ý;‘F¦\ç›\×\Ãr€P\'óú­\Ýlø—\â1´e^>b6\ØchN\Ê\ì\í¼E4#\\’G¦YúZ>\ÃAQ‡³Žb&µ˜Á‹YZo\áœ>QrŸÍ¡’°˜\íi9\0T9\\>$ˆ2\ÏÂ‚œ\ÏÝ²\Ø\æj\Ë\Ôórþ³whq­¢\ÃM\ëÀTUòúÐ©w‡”Í™CHN\0\ÉI”<\æ—ŒŒ½÷.\ÍO¬˜÷¢žö\ßÆÂ†Í§²\í\ì\Â\Üfh_2E²§_Tþ.Zui\Ï\ÕYþ\Æû\çk.\\{g\á:\í­\Ñô­—«F„hdóòµañ¤ñGóI‘›\0q­×¹a\Z³\"D\'\ï¦Ï°\Z;I>)$\ÂpiŠ\"\Å)¨\Ól±\Ñ}\Õ*\Ö\Í3»yXóZ‰\×\æjoy¸\Æ\\oC\Ø\Õw=°€€usªn@«\è\Î=]N1õ%P0™„\Þ\Ë.\"‰p†¯ŸŽT¥Óœ÷q(%7N¦ª…ò¤˜O\ê2\"hªkUùv¦ˆróÞ´¬°°\Õ\'r\é-…A\ÛDƒ„^EõcZWq”ù8…ˆ5\ãýq\é†r\Æ\Ì\ã@\Îü7VR\ÅÛ˜]¯7Nƒi’\å\ÔjR\"~R\Ú\ØÿO|âº¥f\Â`ôS:\Äö\rŽ\×\å\Ûb-\\³|\ÊÛƒ£ø”9E´\éøg±\è\Òƒf’Ž±]¹Hh~\Ùw†\å\éw\ÛO\0LhD:m	†\Ã3(TN€—\Ú\í\Å\í,ñ·\Å\î‚\ÂøŒj¶p¬Jµ\ÚÁÌº\Ó\Þ\Ó\è\ÈÎ³˜Sy\ï®9s…68r¸M\ÞôÚ ¨c\ä\ä‹\ÛÀ\Ñ4b¬oT“‡Œ¼,ÿ>£\nu‚¯	\ÍU`.9>Y3`yk òŸ\Îš·À6d?j¬¥™/£&b\Ó\"¡ó\n\ã<5.B‹ñz™\Òn\Èó€1YY]}\à\ì{6\Û^œ\r\ß\åoñþÊ aXÜ–^ô\Û	’¤…æ„s0Ÿ\Ä\×É»s¢y0‚\ì1‘\É)f¨x¤Ÿ– ø¾û¤X\à`ø\Ù[Z76\ê\×‘.Ÿ-*\ØP«\Ç—U\î-8m@eù0ðŒ5¤\\¸«wMv\Ô1.²\ÄÊžRûªfq\"^\ähS\Û;Xö¥–~øY\í\íYœ§š^\å«üÏ»›jc¹T\î˜x\àFw7¢?D?ô½¬Fa\0\Ó°ª-\Å@\çh1\è\Ô+þþK(ñ\Ñ\ã\Ña¼\ã\Ù]ñ´DRñ\ß:[‰_I3y€µ\â”\Êwt×Ÿ»#F3÷»µ=2\ç´\Õ2I‹8\Ê\ÛJpLþ] ]}²õ\à0nŽ£¼P\rQ¬¥\Ë\ß\Ò\ÔcJ‹\ÓYBñµ=niQ\Ò=Neð\ÙÕ±unS,Š\Õ\åh\Ê\Ý\Ü\ËXò\Í:ª_\ÙùUŸ\Ç-¸\áJ\ÄrSý5´””¶\ãü¶…ý‘btû½LÈ’¸|\Äð›n 4\0ºÙ’ó\'\Ä/XMK,f\"*Z$\ïí¼„4¸‚» ›%¯-\æb#\Û6u|‘¾Ä–}¡b\æŒJsò6\É \âh%\nf\ÞJ(\ÎU“Z¹þµu\á@¥ˆD«RzC .¥,2F*›\Ï\Ñz&@¤ô;\Ä`x^\Â#.ñ„W(–` :…kýY„Š¥MjxRÖÖ´–P=\ãT\Â_U~\ÞQ\Ê H\ÕÊ±\ày\ê\Þ4ÿBW”@c”\\§¦\Ø\ÈJ\ßŠq\ã\×GC W¡aQ\Ö\×x«õ‚D\Ù2-q%µolþ(\Ñ\î]?A\á kuPŽ–½t¤\ÍÌŠ\Ã\Æz¨\"qg\Ãü\Æ\Ô\âÀ=…(0\× l\Ú\nÂ°&|¥\"\äwK~›€30,Š\àø>³P­¾\é&w mÿ2À•ÿN»\ê8úa—>BdLÁUµoVd^ ‰¤ž\Ùü\í°\'Æ © $n\ÞX±€´37\ÚN²–<¸g ‰\ÜYL«§&‘¯>\â­\Î G\Zu\Û%X‚ö-)Á—\Ò š)—•ü>üÀ\×Q—õ|\Ûú	]v‰ŸC\ê ,ýÿ ›7\ê\ÊÄ‡\êKý4ôýsNs\Ó	QŸ<þsŒð|—\á¥\ï\á ®\n	\ç\Z?`%T€pñ6ô\ØÁ#IR\ë«ù÷lœR„\Ú ÓŒ[*škt\åC¬‘`x¶{c\Ô!Õ™\ZVW\îS\Ù\Ôs\ètŒ \Ô\î\Ä@W4nþ‚·\ï*˜tù˜Q`EJ \Ý)\È)e%C!³Bw\Îí”´‡Q€\r\Zô-……\èý1ð\ËþO²!«\ï—\ÄT¤\á¯õ—v†­\ì\ÛÀ‹‰Î±ûõ\è!Ú¨-\ÏñOh\èc.Ž\ZH6!§\Ùpsü4zQ\É$\0!ð\Ä)u\Ç^Ÿ\Ö)òh\r¿\äÈ±>uOKŽ,hc$œ¸!,“el\Ès\íð\\\Ø÷ù055\ì.fOtÁó³÷ûe¸}!5ARü/œ\Ï{Ca€F9ÿZº_\ît«Œ%8ª,=Û«!?\ÓU!\î\Í)ln\ßUnö(\ZÇ…‰F€Z‡\æ\éÿn!Z\ÜmNxIŽ>W>%ü*\ïr˜ô“^ð±#\\µQD!]Í¯%uO®bû²Œ;\í¦Í°(2[\n\Â—½_!i\î\Ý\\ ²×ŒeQ\0˜rºz.+;\0\Z)‰ªo\Ë5£3¨!ˆ\Þúù\'”¨o\ê]º\ß\ï±ò³t\èJ¯\Æ:soT\ß\Ã!™x¤\Ð6\æ^q»®\Ä>F70žVÖµV–>¯>²\áµ\ë°!ž®¡$ª\æ1Å­9†¼†5\n2d\\a\ÙW—•\Zq°3x !¤:¯qÉ´&¢ôg™zž68Ö›üd\å\É\Ç\Ï;tV;U!©&\Ðx\Ýù”[w¤Àû)¤\ÆÈƒcüN–Sýa\Î!´¥\î>$wÄœ¦ö¡¢Fÿ\n%“`IJ\×M6—o(\Ò–!»bƒ™F\æÞ‰g2o\Ãi\nNl+\ný–™\ßµ£\îb!\Îÿ‹5AÃ \ÇÀ¯\Ð~ùIºüô¿\î \\€ƒv(öc\ÔF!\Üÿ(\'eÐŽ¶\r804@§šd•D\É4þˆKS„kV!\àaÀ”ZU£ž\ï‰/<rg$½R4g\ÍZ\Â0´÷l‘!\ã\å\r;˜m1Ï¼€.\è{r°€6@¶C´\äHc^\"A÷!\ëÄ©tXó\ÅQ™\Î\î\"ú\Þ¾\ÜÑ’m]À\à™\ä2J\"T\âYK‹„ý ±Á°J\Öô,/þ¼\Ô\\/ ûd\"ºh>:\Ä\ê\áQ ù\ê±\Ësik¡ZµØ\ß\èEw}b\"\Ò:¼+\á@\Êb\ê$¾\ÏT¯At\Ë6Œr\Î£\":fnùJ\"²-vS ›´X¾\ï÷¾Àõ\Ù^­\rË #\"JRIxý¬\ï9õŽWÀn\Î\"µð¦‚a\ä¦öÔ™¾†ö§\é\"L0]€˜“û¾Ó†õÙ¥y)UeP\Æ\Â^÷›A\Ø\Î\"S\ã¸.87~96s\Â³yjr\'Œ\å]s\0 “\"\\€¨\Òü\ê\ß&S§–¼¹„“‰^‚\Ò\r xQŒ\Ú\ìfµ\"nN½ñv?\îKƒ¶¸‹g^\å:m¸¶™óBlbðZ\"•’„$l˜}\Öe\é³\æ\É\ëXÁ\\Œ%\È’\'A\å\ÌJ\"•ø	®¿.FÍ¢\ÖY\\õžgFy—Ž2\n\rM†Z’´\"šøG\Ù$@€\ÌùPÄ¹\Z7~Ô§OÆ¦p\ãdb ü\"):ze…0E¹Ž8ý†=!þ–7¡Óº\Öl<“Z½P\" /¸JK»\Õ}µ´u\Æ\Ñv\èa\àHú¦Q˜LE\ÈÁ\"¸½\Í!°zFÛº6Œ\Æþð½‰ü\ë&\ß\n¤§s®|\î\"ÊŠ\îÇ5‰¢\".M\ãp•´¢-zx)Rš.%\Ô.™Á8\"ØŒV2M.\é\\\ë™ûe#øN\Ø\íÈ¡\Ï>\Û.¤ý:¦\àIø\"\Þ_¤\íórª¤Ðü\ÓMüDZN\ÉaŸŠ­\"\ä«2eÜƒA#\Õ\áQö³)\r\åj|™\á\\\érm§=\ÔÁú\"\ëL›p¨6-@³”!#·^kYÚ®XV£FÂ€X\Ü65´\"\ì=óš\r\ÅBŽ¸>ü’\"\ÎH\á÷@Z\æ#X°V¿WÎ«\"õ\è8¿0#>ün\å\àyl¦\Ìvþ´Æ©rK~„8\"ý;z\Ã`‚~g\å¼^¾_\Ö\Ü\ÜR›ö¢5„úÑ‚(ö\Ó#ÄŸ_Üµ?\ÍW\È\Ö/­žC+¹‚ƒ÷ºU\Ò¼KG#…2±\ès\å\Ñ\'|xš—ò,q³™Â´\Û\ÚÞ£¿\\\"\\*dq#ýLj@P\\–EÈ¼õ\é¸nýx\Ë$WÒ«r1Ù¾6}#2;#Á/7\n QrsE&]Àð\ÑÁIe‹Y\ëc\çg#Oyw;p…¹”Ó¿zŸw,!€:;umjõ\ÍŠ¸)#SøR\ïm-\ÎzÅŸQ¶¬\r\Ø\Ç\ä¡: Q\êVÀ¦\×\Ê#fl˜\æ~Fƒ\ØcAmÄ½¦b\rVÖ¯qP9i\ÃÏ¯»#f†\èöW*o–\Ø_\æ\nŸ\ã\æ­\Ç\ÖU8¯_ª¢\rÖ£z#m•«þbŒT¥\á®É¸\Ö=’ø©V\ê“187–>ƒ#ƒµ_Ós(··\Ësxña{\ËÛ{A-\åøô‡##°Ì¨wA\Ì/cò\Ò[\á\â&Ge\Zx%%\ç\Ó=’C[a#±™gó\Ç\ïC\ÃY›<Š\åüb´IóV?¾¿Ji^·aU´B#³®yÄ½ùTf»‡\Ü<½¾,\ï9z\Õ,\îž;ÀP\Ð›¦#Ó™>ho/Á>¦,¾F±±\äªm\èùƒ@`ƒ0š\ï#g#\Ö\06¦”ù|Ð “\ÕYDŠŽ…\ÅÀ›Ì°Ø£wty#\ç¯\ÊM°°+—¶ŒBø*Tv\ÍGÇ’?ªoLJªsù#\èBðoKm±\×\Äuó\Ì\ïq÷³G\ØKLïŠ…\Ò5¦=O\ß#úV}€é©›F\'y½¥#\Åv	×¼\"Ã™’\æ6ð\ÒG\ÎJü#ÿþ¯°\Ëò\Ú]§=\Ùð0ù¬’\n\ršÄž’^\æ\'\ë<$_ü\é\Ù-»\'ò8u\ÐPü\Òc\äÀ6\Ù#	KEum\ç\Ù$\r˜\Ó\ÇÜ·2¢Ý“\ÚÏ¼\Õ+‚B\î\Ãû©É¡Q(-$³Ÿ´F:6~QQ\'\×¦:\ä3~¤\Èó»\ÊÁ§¤U$Eq<‰p Q·(&{=’ùýX\Ët\Ü\Zúñ\'\í\Þ\r½~$#\'òÀ\îb\È}\Ô$X:¶cÄ¾úmý]ˆ\"´V¤$2¯†	½•ªJ8\Ë\Ý+¦n\nbO+9º¬ü2˜\àª\Ëq$?\Â\ZW\ë7\âm\ß(w{K•„¡\\Û¶Ž×®Ž–\Äj„t$Cþ¤r\á{3õ¼;LnŸ,u\Êw`¬°Â‹\á7úùpùE$I\ál;¿û\Æüû_W\ZdÛ©°À§Îˆ\0fm¥\Ö$XA¦8­’8ð\Ê\Ì\ÞÁ3žk.b½4ˆñDZºì¥½$^õW+Nˆ\ÇN§	´¨Ò»@\ÎyA$­\ÏôG\ì¥\ß+Z[($h/\Û\ì*Ã…Z\çOòx+¿ˆ-ë¡–\éHØ©TEÀ\á¿$jš^2	ŒÜ½“4`‚\ÔQü\î•Qœ\ët²yTrŽ\'$l¾°Ûµ	ˆ¬¤n¤ˆs}\ÚZ\å\Æ\×ò¡‡?˜|¼:\í$‡V&´<\î% æ—….\Ã\Ú\ßl‰³\äöøã¹¯û\æž$¨¸E,©_§²wþù¬\ÄMJI:º·”žŽW«~À¶¯$¾…¤š` £ò\å5\ì~VWClZ¾¶‡ÿ–\í²	¡|GN$\ÂÛ±¼\çlÐ¯s†F,žÅ³eIx\Ö\Z:Á\å>ú;\à3$\Ò\Û\æ]\ä:)„~K\×F,B4w÷Ÿ¼•Ù¨/c\Ø,™ºH$Ô‘œ\É\î´<ñ\È*Y»+º\äú`p\Û_—/\ãÈž)Od$\ãö‰„±`¯MHnª#†<K£¶\Þ\ß\è*\r½ÁÁe%%Ž\ák¶\Älf‡;{Ý…T¥_À\Ï<{x%¥[4d\á%S3BG\n9K¡½\"\àU\ãfºq\×*A›j5\ã\'ÁÏ±%Yžy\ZŠª@\äÚ¤ý~&Ç¨1¯#†2QÀi×®%nMÇ®\èºiñ’D7“@qŠV\â\Ò#v\ÏE©>TCdW%v+ï”4)©%\îOiÿ+a\àdg˜F2!ˆT+\É%„žkñžœr _”›‰\ÐS’µp\Â\ïEµ°†”3±\æ%°›f3´qE\Þb™\Ä<\êór\ë\Ø]B[µþS@k1\'b%¾’>²f“ý\è¹\ã†XJ\Ô&\áÐ–¤\Õ>Z•y2p#\ï%\Æ07¸s‰\0\'zM|\Ë:9#\âh7Àd\ÂJa6÷\×!\\%Æ²ö\ç\Üa\ëU>\È\Í\îZ\æZ\Ó	YD^@N\Ä\ÚøN%š%\â8X_‘Ò²\×§§%$9Ù”…*„_¸À\ê\Ûùó›©ô[%û»\îÜ‰±ù`þú•»³n\Ç\Ü››TK\éxCt•¾&\íX\Ý\ây&Ì·-;×‘Œu¿H\î\ï\î\ä\\s!\Ïù5š\0&\n¤\È\ÈÀµu’Ob&»\"õM¬ùf?û+AT\è±(¤M&\ïp©›\Ø\Õñj—+õÒŠþ%šs<­\\±$&I±¤\Ò\Ñn‡\àô	w²ðòß¬šso/\Ä*®†\é¡øŽA\Ù&Jª Ñ´\ÌO\Þ\á|\æ€dž),\î—)	É°+\Z—t&am{[ó>\ÛBv\\`š\Î :nw\Õc)\Èß—%Z0\ä&|º€O	gñ)ö2»«*€×«7\Ôo-¸\Ýžró?ø\â\Ä&„[on¹§\Çñ šl–ú\íaÏ³‰t\âWLŠQO²Q\Âcó&Ù–œ`\Ê“\Ôþ¦\äðò#tÞ™,—QµŽ)DŒ9&ž\Ät€\ï\æ*–2Ž¨¤~’|ú1/\ÈU\Þ8ÿVY}$&­¾ø\Èm“4tXûF†þŒ¡@¸Rµ®\ØÊº¹bL&Ó¥Yk\âý\Z nß°X»\ÎO\êõ\ã£Ú±\é¾h\Û\Øb)&ñõ\Úý!„ÿ\âGð\ê\Û\Ë!¶C›\ÊoFûQ`ŸBº\É\îQŸ\'™\×l_J\ÓÿV\Ä\ìSu8VHJ„¦’£\Ù\Ò÷yC\'¼ªDÄ‚\áD1•§ú`Ú¯ \ç/5)ò\Ì\ÍüF1©¸\'»¶®+F».\à}M>W\nwJ½]}&\Æ#V\n\Ó\Ü\'(\Ç\0*ò\ÑPg\Z$—\"PHG!ù»ú‡Žý\Ô‰5ŒjN\'@ðúõ½?B’{´uBt\Ð\Íi¡\'S\ß?\n¶=\ã\ÎPC\Î\'F.¯1\ìE\Ï)•ÁHŽ;\âl”/.nø7\Ó\Ç\Ç|W\ç*\'G¿¦L\àª\Ê\Ïs\rŽŸ\Ù\Ö+\áQ·N*õ+r;_1…\ÃYö\'S{<—?’þ\Ë*\ãf”;°²/\Ã{’\'\êœ\ìv\'k7^¯Y«\Þ\ê\Ð6Ö¨{J\ï\ä/\ÎÕš‚Éº\ÏdN©ó\'Œ\ÙQñ_ž\Ã+g®\à*d©œ\írVÇ ·Áû\Å\'*\'«p\îGg\Û_P@EuE-\ïjbc=\çHè •\\M¤\ÞWŠ\'°¡\æ$ƒ1,;\Ôb\ãL\ë(Ë“\ÑÌ°O\Ä\rM•gÐ´\Ð\'\ÃiZ\"Æ®\Óf=ùD\×F•\ÈG¼\ï\éó\n_ÁB>\âqYÞ´\'\Æ*Ç‹w)M¡\Û>\êSY\nöŠSšš4\Ïvn\Úa\Þÿ\é\'\È\È9_e\ÅZ÷\å·ðhZ\ìVaé‡¦Œ¼vu\ê[*S\'\ÏN\à9\á\É\ì¡r¸g_T\ÆÈ»kù‚\Îø–›®Bº\Ñy\'\Õq·ù&1\Ð\ç,ž\ÝS÷Nj64c\ìG\Í&Z_\â\á3j\'\Û^\Êù°²¤5j%\ÑV–l\Ö\ç{\ç=Š\é\Ê{Ám·@\Ù\ÞÁ\á\'\ßm/¹–lrÀ¿\é\É8\ê\Æ*l	=$æž’\Ó=£h79a\'\æj*\ì,¦A†.ƒ\Éû+…-÷T·¨ï¬²ˆ*\'\í\ãÁ\ä¢ÙN‹f\Ú\î[óOŽg\æ¶\îŸ|\Z\è	ÿ+\'\î´xör²X¸k\ã\É.\Úñ~\â\Åb5·ÇŸ¨<\ÒM\Â\å\Ò(:«ýMQ\ì\ß =ý\ë©ªßªyyL»•Þ¢\çŒ\Ú(Cd?hv“¾\ÝÒºn*Œ÷1\Ô\îZƒˆV„(=X•tw\ìÉ¬D\Ù .=H\ZSñ\Òø¡µ\Z\á»5w\á(?ß¾\Ûn\áT ¤Z«ð¦†½ý \\9ñ\å8vW¹ø\È\Z¥(E\0ù	ö73\Ñ/>ˆu0§·¹\ÂðAH*$\\¡þ\Èõ(\\Ã°w0#r‹Fß¼Ù¥^G‚Acwð¨,t´”Ž©´(a8°\Ü\Äò)€\è~%\ïcG\Ý\Ô:~»\\\0p#t¢‘F?\Å(fp\\3{¬?\"\Ò];>W–¯Š\í·qB\è\Ý\ì5©mo(n\Ù\é\Ðs¿¼sTòj+<$Ÿ|rE÷\Î~\âŒ\é\Ú(y:wj5ƒŒ1ùº»\Z\ç!\Êð`³®<ž¢!_‹(}¸6\é ¾\é‘ÿÿ\ê\ÝÍ›\"»’˜\à¨û\é‚$#¡(€wy‘•e\r…63TñÁQ\Ñ-¾ˆƒY’Tœ=G(•Î˜\\õ‰\Þn \Ülpu¹ê‘&]š°y˜i›J)(®f¤¦–¢qi\èI\Ôp\Þ\Ü²\ã,÷ú\íK˜\ãñ(Ã­\ÑÄ¼\rC	¡üv…™±¡S\æ\ìKO]l]¬t²¿(\Çmÿ}\Â:Öƒ¹{™®Fi\r~^‡ü–ª`·@€2$Œ(Ú®\å­wS4\ÕûB¨l…q`8\Ïz»\áW:5HI)z4ó¸\Éphzi‰þT±v\É\Ð/¡Ô°x¢”³¸)!¤/¿­P²d\Ç\Ã\êtòO\Â;DCá¤‰ú7P5)%^¢–VòtÀ_\î\"L&x?\Ð.\à›¥\Îò«Òª\Ñ*|2OQ)JJQ¸%˜\æ„x\Z•ð‡¬ø	€»r\ì]¤(R`Á)N\Î\\nÁ\ËmEÁ\Zk“cúö\ÖQ÷¤¿­(a\Ö\ïô)QFÀÞ¶ú\é\Ù\ÐcŽóµBW\Åk¢\Å÷!—ñ)Zô!Y”Ù\Ú\ì¯PA\ä;¾®®šð]nû”‘••)a¡\ÐQOhÐ¡/zÃ \æS\06ñ\Îþ`\ÚŒ\Ê)}´V\ÆO\Çg§-w/¢^°w6!E\ãýˆ\è\è\Ðò~ƒ5On\Ç)¤¡4\"m:D¦[:K~>\å˜ô³‚b\ì1ÁE\Ô©()\Ä!e¡ƒ±£Ð¤RÝ€zg†g6‘Ñlñ¬[²{)\ÔQ1˜Ùª\èp”$«2Ën#[z*/	*?¤|¬)ôX.\rˆ•¹½j…c\Ä\ËT[q’1Ç¿\Ü]M\È:ô½‰«*\Åùý\Ý&—„¿\Í\ØS¤¤‰\ÒÆ½tŽ\Ô0\îž¾™¨õ\î*%Ò¹-ñ\Ëm\\û\Í\Û(«<ø`}yœ \åx‚	ˆ[l* µ\Þjùó\ÏY£„6XAS‚\ìÍ\0t_¦\ášB*0\Ì?¢“\r\Å\ØYoXdø	\Þ:í¾©¥Ž@²\ÎMFI\æ)*Néª±w¸Œ\àjŽ‡u\r\àø§3\Ë\âû¥ô£ðô*P¼|Ë¿(W¯\åa—OB¨§…A€e\×À¾þ¥ÿ:£\Õ+\ë*RNÚ”%>•+£ß®6\Ù\Ò\×\èn^wjþ\È9ý²8\Ü*^\ÑôsJý^1\Æ@E›\åHÙµ5ˆEW6>\íi$«±˜*enŒ©|Ó—\ÛQ›¿DU[M!B\Z\×Xó2ŸUgy¬*j4£œm3: P\Ë\à0ˆ\0\å\0\ïO÷¬\Ë9\ÜÁ`*k /\ÙYlò§I\Ý>CK:\îx\ë\Ú\ß\ÝA§n\í6[*¹\çm\áÒ°\ÑÇ•(\ÖySl™“S\ÇXL£	ý3Qnœ\ÙT*ÁY\Ç\×D>)‘ûk¾\'\äY\ÜO+›j*ü\ßUY\â2µFµ*\Â\×\á\Õ(Ž‡¢9ñ¾ÍŒv\å&5d2|³Ñœo<¯v8*\â®ñnT÷HSaQƒÀ\Ê\Ìp¤þG\Ùeöõ\ë£\Õõ˜gz*\å.C\Ü®ñ\á)\Üi˜±X\Ç\êö\ÖF8Ž9ÑŽ,¯\Ú\ä£*\îÂ‡\àjlµJƒ[Ä¸Ø¯‘i•u*_ÿ	\çžù·´\Ê*ðwVS°1™Y«‹ƒ¸°\'õ;\În_Žb¿\ã\å\íŸ6ñ+s¾“f\íhIŒ¦µ7\Åö•„ô\Üqó¦ z\ï\Ó}04+‰\ä\Õ%\Û<©“\æ\Òòhò´ý\Ìa\æòt¦>\Õ\ä¼++ð€­BPxP\'\"\à\Ó\âXˆpó\ÐT©\ì‘hw\"e +(Oi~”.I%·Æ¥\î?\"~Yä¹‹ö\ïbüoQ\\\ÜY\Õ+E\ÐËŽþ÷R‡‰ñ9KB‘\Â\âñ\Å$þ\Z\Ê5Þ§°Wd+I°\Ø*¬’¿›› \Ã\"2’\ï\ä­\æ:Gfl”Œp\à=\æ¸+^ˆ\ßH®ÿuß²\ÎÖ¨\ç¼n¢T\ë˜\æ\çZ\Ø\ï7œ\È+œˆ¢òk d\Z\'È\ê,¸G·ww‚\Þ\Ö\ÂqN\Þ+¹ùZP›ý\Ü\Ö\Ü2ô\Ñlv,,\í2\ÍÀR¿V\ê~’I+\à\ë\á\Ó\Ö\Ý\ê±Zr\\a\Ë\ïz\ä\î\ãk\ÖÌ§Î±k+\è\é\èþû±£\ï WqzŽ\"§[× Ë½_\Å{À\Ê,\rNM\ì˜\âd°_“•z_T3$7Xc.ð5A˜X‰\×ý,–þX‰Ù…WvY9\ÉbÔ\'ùò7 …}\n\Ü,#\â|¶x\ËIh‹Üˆ\ÛGò:\â`3\Ð¢{_^ñÿc\á,h\Âg8ôÕºŸLýÉ‹½Z÷:‡’\Zó\àüÃ­ð>´7,mƒþ\Zr\ßb\ë\Õ\É\È\ÌÀJ|&\\ú¦\"C8)ˆOž\æ\Ó},ŸŸ\Ï~8ù×¿K3k.FP?R()\Ôoò\Èjrt,®\äó1†¦­^®\ê7\r\Õx6$\'\Ö.\Ñ\Í\áò„S\áWF\à,°!\\u|1\íô\Ñ\í;¥8¢}®s–‹¾r›\ãE^ƒ,²ðlTÑ•™½%\ïP\ê~Èœxq\r\Æ\Ú\Ó\ÆÞ¶®‚f\ç\Ç,³S ½\Z\Ç\r’·zËƒ\Ü]Ó¬#‘pD*tX‰k°\î,·g£\åE\ä®^\"\Ç¤5ƒÂ¸ª±\Ú6¦\ä—FO•‡,\ÉÚ€1f,Ms]B„\é#^\Ü\ÚX¬¼«†=ƒd`\ã,Ô€ºJ`\Ôj0¿Að\nüÁ*®L¡\ÛzG,\Ûi\ÚS~?:5^:øb\\BG\ãQ\Ëo—z!‹bv\é\ßE|,ã¯¢ò/z]ö‹\Åò_ù—¼¼›W­˜\Øpd¼´©.f-µ \0´¸&“\Å\ï_K:¬|â–´,Y°È´4UTÄ‘¿-7bkÙšA53¾gFEk|¸^Ú’‘n»^\ê)¹-#;Å¹D ¦\ê\Æ\Ã\ä§oþ¶žIY\ÃMÿAôu»-4aˆkO\Òý67½\åZÞ¡R•)øû\Ò\Ô&¹ð~	\Ù-;i\\3ý .¡\Ï\'=Ï\Års\'ó1•\0„<ª-FP“¹\Å9N†¤fš›« ;ª¼î·–h\ç\íl—4E-½H\ÆP{cÜ»:£n{2ùsZ°q:³7\ÊA)l-ÓŒl‡^\ç.Ô«\ê\Ð\È;	>¼½\Í<\äû;Ÿ\ènC\\ñ´-×ª1ý:¿\ÆùcÂ„&h\É\Í	\ÝÖ³±\ë4V°§F½-\é±,h\å8–f»aP¶jgW‚>³qŒþ½\Õ\\œq0­-\í\ß\àk„\Çðyn:ô’ŠQ±2\Û €Š´š—ô?\Ãx\Ý-ð\Üv‰w—\\y\èUô+.$aWˆÝ•2.\ÍF\Í\Þ-÷{­=mMòz\Ø\ÚÊ¶¡K\ÆzŒ¼gR*ƒ\â›(.\Ý\ë(2\çGKzj\"õ\Ê,\è5\ê5+ö%\Ê{	\ÂW.\Ç\ç~\r\ßB|\\\è\Õ­}\î­:tJ‹\Ñ\îsf\ÉZþü\ì.«\ß\É\"\ÙwÂŠ¸k~?š\'¨Lž-\ÞÊ…+\æ?.%%­ØŒŒ÷kÉT³a\ßÀE¾ŒQdu°8¢Ù~\Ö3ð.)¯y\ZôJ\nö*F¼£h,¶†T›T\íuÔƒ\× N.Kð\×n‹G\'¢z\äô=_\å™ð\äÄ¨\ë©K\n\Í¯\áO`r9.d-vŽŠœÛº²Å’\È#u\Ñ7š‘)¸Ò“{µ¦.{¦fZ\Ä%Ÿù{þ34ñ\Ì\í‚`zo<²\":qe5Ab..õ‡I\Ç÷\Ë\Î)6Z©n)ÿ\"6\Z]\r3\ÎCFZžW½.)G]CŒ\â\à{ð”.®=½Cõ+\ã[p\×\Õ-¾R·.šBºøxœ‡~Cd”\Æ\r(olvôÁ½ú\à°+\×Á£k\n.\Ü¢\ãSP*šî¡ƒ6;§]XRC\ÑÉ†\re‰g–fò.ò\Ç\Ä:\ä•%q/“}!’*«\â:r\Z^ÁE\Ý\Çÿ¢¼/¿uÀ¢C;ˆü\Å,!0\ÍAŽA+¦CÇŸg23/\Ìs\æs³¯Z*ºj)i\ßÐ±®e« ôQ¹3>s<ñ/^\âW)H\×\ç\\yÁ=Z3%·1q^Qd\Òa\é¯H/&dx‘G:IVt¤Í†Ÿ\Ø\ËY¶j\á\Ç\ÏM?RŠ\Å\"/#\å×„\Ëö×–ú4û$ŸÇ½ª»\Ø\ï~r>-h%8•X\×/,±b£ÿ•\Õ2Hþ\èø\ã=XÓ²\0Àºóõ\ÔD\ÄN\íb1/.Ù˜š½˜\Ó\îÃ‡ù\àKvý\\–\æ)\×÷w½\ÛS¹/7ý\Úô0/!B¸§sƒ\é\ê\ìÝ’oB\ÜÍ»¥e±}y^/>£\Úwi`\ÞSƒ¾\Ó{¡oF’¡’\ïý†:­£i8/M¶„œ°4ª\êH&¤úo²l=¨|@\ÕuQñD}‚W§p/_¾9^Š`5J—Ò¼,Œ\Ë\Ö\Ú\ßY´\âaj€K\ÙE\Ý\ål\í/v ú\'I5\ßR/^\nBR7¯0Ž1nQ=‰*Q/„™|…wÎ…•±jˆR\×\Ãz·ZHcxS \ÊJb\ËÍŒ¦/…Y\êleŸzIGz¬\Ü\ëzsˆ«¥s=\\ƒ}\æ/Ž\ÍÔ£÷šZµ¡g\0cVðž×¥v\ç\áð¹d›Z¶/™	43s\×ý\Îx\Êñð¯|\"¢@\Æ-8\ã,^F¶/œ–GO%<Ž\"\â\àŠ!5Ä¨®\Ç`0<¹hCJ²¸”±/´\É\0¶‰N\áKoƒ˜Ê©Û­è©¡{¢ngg\Ý\ê/Ÿû|`ý\ÅzÁªZö\0^\n°ˆÍŽ#0÷‡\"”ô\0@žµ\æ/§\çXžŽÅƒ½\âñ\àY]¿– ”øI\ç÷\ØO\Ç/½)ø§ñ\äË²\Ëø\àjtS°+KUV\ÝSƒxš\ï‡\\/¾¼?œ€<@qùŸv\ê¡ö4ù?„r\Õcm‹5õ/\ËFA@T½\ïZ5\Ça¡ )ðLOf\ÐW”»Rl!¶\"tˆš/\Û\ÏJ»tR8·\è\ÔÖ“†9\ÐHòµd³øFØ£8­‘/\é7\0\Øq©e\nO^0£sÔ@\î7À\ÒÿTªŒøy0“!§\ÔQ+7¯\ãó`Gó#ô\rþ)\Õ\ÇS<\Zÿ{b\Ð0úˆ½–C?\ãB\Åk\Õ\0\'Í®<ÿ×’+F/&\ZC\è\Üõ0ó­’o ¤7Ô‚ØÀ^²‘\Zt\ÙU\×:+\ê¡\Ò0\ìCOªÜ¢6Yöy—´þ¸ K8†<”G÷žT¼J‡0)¬…5¶ü\ÖiKe\Ú\åô£’jÕˆ’\Ê\ÔüTö|¾F$\Ë4t0F€6^Ê¤pƒ	,\Ûw§R}nlD‡o\ïYDÈŒ\Z•0J;;\æQ\ëˆx*„©,U»Š\ÓÄ¾\ì<gþ_;§o-H0X!Þ\nB\"`Ã6ö\èÿ D© û\ÏKP?±\ï°\ä_Š0X¹73S;ø \Ç\03m\ä&)\Ù$K>7wtT´\"µ0[n\ÓÚ•rµw\ëýe&³ý\îE_\ÇJ\ãC\è¡\Ùä’ˆ0i\ÏG/þ+U\î‘W3Iœi\r¨Â·8ˆ”ØµS ¸§8•0s\ÈaÁ±¥…°¦`\"*ºm(|-=©9¿Æ„ú ¤A@0À(\Â\Ë\Ü<\é~U\Ï-t.™&]%/wˆ1…©ŠR¨o0ŒòQ9\'«—j\r\Ü\äp‰WC‚mög0b¨¡õu+ö<0 ¿\Ï\áö¨\èSbŽ€º]‹^Œ\ìD«\ì¤\ÑŸd«\Ü0¥…g¾†\ÒÐº\Ê\å²«}ÿbIYwe–.\êGž\Ñ0©pÊŠR\â^=©úY› ø¼o(\á\ä‡a*¢7Á`Á0¯\Ü,d9É˜ðó„·Gõ\n6ú\êP\Ò\Ç$JC97,n\éH\ç0\èqeRŠ1:\'°“\Â\ãQD‡u\È\ãhV\ã\Ð\ÂwÏ‡0ó\Ì÷ ‚\rXyq\Þ\\d‰ø‚]jÅ‰: +R„(ÿ7Î—0øº?@\Ý\nQ¢›ÆŸ¤¢q0	2¼ˆzúRö•\Ñ\Ëo@0ø\ÉøY–\ìi\ËÑ¾\ë\äc1Ëý\Ê\Z±²³[‡^r0ü\rÁHCxŽ^\n\ê\ë”#ö\çQ\í\Ì\ëY¶4NX…1„!3Q*„\n\ÏôX\Ú}³(\Äb\Çz¥=¥œ.\Åù/1&ZVº0\Ñc;÷»d\ÇClš\Þ\ÙÎ¾P`…–ùŸcý1/pª\ÎJVQƒ§\ì2v…Žþì•€ž]L9\çðe?4J15Vƒ\â\Æ^,û¹‹ŽgK\×\äÿ\é|#¿0£Idµl\áo1E(\Ó|T\æ€Vc»-NÂ¿-\ì\í\Þ¾„~znò\ì}µ.µ1\\ó^¡œ\ã8ˆ¬ò\Ä.\Òl›·j\åÐ…Œ¨\Í4x²]›|1]›T\Ç\Â’\ì2J\\+	\äi¦6SŽv©®S,Eï€´‰1e\êñä…­8o£N\ØT\Ü:ûw8\Ä<¥:\Ú\Õ¨\î1h\n@ú”ÞóEA:ò\"H9¡ú8‚G—\×E¿1‡\Ô\Ëu¾\'ŽY	£ò\Ã\Ê/%ù\Ç¼\0›ˆ\ç¥ñB¸\Â\01Œ-#öó$½ü²„p÷&ºh5h\íJ‰m9³ÿƒm.‚1’\Ê7’õH™}·®­hŸtqŒEÁŠu6\Û\Çx]º1”SP^&!\é £!\r\nOñ¬6\'R˜ €ú6¡a\nµ-1œHŒü\ì\Ñ\"\Øgy\ßüÑ†*\Ù&\Z±\Î\Ïb&fKþ1¡¢¿_¬»«X‡#/I*D¹N\Å|\æqx À]\n±\\t1³ó¢¨f¸@g˜ø\ì<ø÷g—-vI„›P\é\à8\îá³1\ï6s\è4\Ú>gŠøHT\Âúµs„*ŸNV‰Bª\ß\Ó1ò\n	Tk5t\í\×{j°´.\Z \éB½5$ºV¬ò{ò26?Ã´%I8#ƒAaŸ§W‚¼=ñª\ÝûÒ€VONhE\Ï2AñþWB]±¶bž}÷¿cÞ¯B™\Ä\è÷#\É2B·Qb9ñL‚ò†\'Š\Ä\ÈÍ›¢\ä¸ýB¨BTŽ2Dl±y\ì¤O_!€D\åFjF^¸=\Î-\ïv¨Q\"T2v´2Hš˜‡s|k\Ã-ðD`ÂŠñ]^9\Ü÷\âªÁ\Í\Äcõ,2SL\Ë\Ãbˆ\ì{¼³\äš\Ä\ÑXs\ÓÇ…*ðž@)Q˜2vziò\ÛM%\\\Ô\íXt\â#\Ýîž‡$­žeµ*ƒ¾‹2{yC$%B\ÒE;ù•¨¦ø‹4>©\ê«f–\Ý&b=ô\âr2}©À)vD$t2ù.Pì—³÷·‡2ŒA‡ü\ÚGô½þ8Q2“%b\Â\É÷\ÝS½ƒªOÿ5 ]	LfÇ˜§\n‡£^¼2˜ñÓ†J\áJ™/CC7NÖ×Œ\rª\Èj\Èÿ‹\Ìi2\ÌMm¡\ÊQ´f\Í!\áž=sö*”û™˜2\Óú\ç\"!-\Ò2Ø—§ÄŒ„\Í\Ï_g[)@\æ\æ‰û23>²Œ\Ç,ñ.¼¦2\ì»ÿ-½\å\í¿;/´{Müa¾‘‚Þ†„Ã»\\”uy\ê2óÙ¹\Ô<­\ædI=¥@M8­\Ó>ª4‡c!^i N3fK\ÆfY\Ó8~Dh_\Ö\Üé©ª”\Ç%*&z\çF¸0-\ä3(„\îJ\Ê{´*™€\â\r[óŸ\É\ÚÜ½’}†W33)\"\ÆK\\,\Ü\Üöh+–\î\\\")û`°“/W²\Ú33ˆ9Dk\ÇNd\r\ìF‡›$±O‡2\í>ac™c;™Sö3E”!”›\Ö†ÞƒXO+ó¦–ó¼)ˆ\r^gPÇJ3O¢™€jü}.£ó\Ó\ã\Ãøj	^W/Q(Ï¿Ð¸hBC3Z:\×2$¾Fy\ÓP\â7bØ¡ü: —\äy‡Mú\Ý\ï\í3r­ù=…«	aÔ…šñ\ç6˜~1…´tŸùÁ}‚k3‹i°ŠåˆZ+²+<A&±\Ï\ë\Ün\é\ã?«¼‚%Á3¢J~wUV.gD”¯š%Þ £ó.÷¿P	‚<Q\ï3\Ï7H0\Ï0\ÚÁ\ÚÔ­*:\Þ\Ó>\âñaž_\Ú\î·r`g3Õ¬\ÚKY…C\äX–-¸\îkÿ“\íg9[\Å\ëÛ³µÒ„š4P\ë¢¢\Z\Ú\Ð+Kib\ÇE±WÐ’q`r¹\nQ\ÏL¸4\ržÁ\Å(HO_)‘µy\ÖJ–ñƒw\àL\ã\Åÿ†ó†Áö4¨K\0¬$\Í\Ú\Ã|%Ü°^ñq\ï÷BÛ±&‚¥\ÏK…ô¼4,\Êj´­ò\ÂE6©†\Îþ¢\Üú“\æ@µú\Ë9&–YPdü4-”;*B_|T\ç•Bˆõ \Ù!°\Öþ\'÷o\n\ëQ\Ón4We›.\ße\Ùûþ>uÉ‘±\Îðyƒ\ÃVc\Éý\Ò@ˆ4gÑ“7’¼öG>…\\“óJ¹\Ü\ÖZl®\Ì2ü°\Æ4‘‹Žõ\ÞH}AC{\ÒHh/ù}sùf\Þ\ÑY\Ã\áˆ£4£%\ÞC]\î\Äq@²\à¨ôm7k\êD\èñû¥–W¯\Ü*_4±¶]¯ôŽ]@w:üyÙºX)%Ç€[b›tbs­m/\Ý94»%_^^\å[¾ð\ì£2¶É\âû\Âi¯\Ós.·Çª-‡4ËY\Þ2õ\éË½5MŒ€fÕžv2,\Ë.¼\à‡¶\\~†ý¨4\Ò\Ä\Zr}\ÃM‡\ÈcP\Ï\\\ÃGÏ¢l8\Ô\æ¢\ïEý¥58“\Ø\Òu_#ôgx™»TáŒ·\à7\Üòú#\Õlõ« r5½c\í\Ä[—/8\àÁ\í>ô8g1Z\àn‡\àóBÈ¥gx5IwýN\Òüeó¿zýÕ¾E®s-\ÊM$£\èg$úŽ5#_»÷DØž;}6]þ&ƒ\Óþ]\Ì¶Žü&‰ig\æ>W5$;˜«/¿\Êm\Ñk«\í\Øz —ð³ð™ “pƒþA5*Â¨ÁP\Ä\Ùo;\è,«†£XÈ‹\èy\ÖE[~‰\Ð\Ã5B\Ê`\íú­¿¾D\Ú\×ð’\ÇSx|ð4øq|Ò­^’\í]…5Y\ÝY+þ\ØWý\ï—4ò¹ž~û:j£/:\ÎÙ‘,¦Š–j5o€ƒŠx\Ø\ßùˆ\Ò~\ì,\Ó\Ò\Ê\Z\å±F<”‡H5‹Í±ð°hš\×\çôYó‘I\Ë&\ÛB•\ëiUI­?\ÄÒ‘5–p7’\Ó3Ÿýµ\Æ\èa¨a)¨I\Óö›\â\á\ã>/½@5™	®Xxt\ÅB\Z\æ\Æ}O¥ž²\ã‡ûLŸ =\ró6·µI5¤·<\â£\Ü8SIœóR\rA\Ùs\ë\ï¤\Æsf[HœD£35\îf`dP&ør:\ã]û‚ü\Õ\Úï°»½Óz\ØóW#[\Ä5ó`œ©\ßHº\ê•À\Ú\ç¾\Üø¡Öº>\ÑR5ÁEOI5ýŽô$lB]fùE8f,}pQ¶¬\ï¿\×qtBZ‡1Oû6,:}u4!Z{ÐŠš\ìòw1³&\äv1Æ¯?\ÚN@\Ù\Õ6= ´G!J|Glœ¿\ï¥Ì£¶8(\êxH\ï,\åQ66Gñ\r\ékH:’\r,6œ¡YÕ§j€h½=Q’$rF÷—a6XþW\Ò\Û\r2Ya\n—\ÛN\àƒ‚D;3¿>¡?ÿ)?V\Ö6k>×º£\Ý	Q\Ú\ê\Ú\ÑHa[×‘\é]{°9·À\ÙF¼¢6tªY~\'I…Y+6\ïõ5}’j²g\Øñ\Îh®y\Ó:6ƒR\à\ÃPJÃ’2]b\îD\rµ\0Jó\ÃnòRi’\Ð\ã\æZ\è6Š}Ÿ‘\àñ\å¦\åo\ZƒSu¿\ìS§õ4Ì€n\rhþ6Š½\\\Òæ¥…Tbñ{)p2¡u,®¼Ö…É¥£!wl˜\Öb—6œ]\Ñp\åt=V\Ë\Ùý\ï\ÈXˆÚ¦õ\á­ò¿\âfY\ë6É•I•Ò£Mk\Õa_ù\ë\ßG\Õ#\é1\Ï\à²\Ñm6\êò´\Î\ÏÕ¼|d5lÂ¼g4„0\æ\'ŸB`V\ãŽŽ‡6ð\\\Õ\ntÃ\0€`6Í‹&)ª\án\â—\Äek\"Sü¸h7\ÙIS\ØXŠó\îei¸N\Ø\î‘n˜&\Ëå½¹³þdœay\Ñ7\nŠ@3\çl,\íUl‚\ÄLÔ°XfRuD\ÖYRs\íöm‚7\çMªIî¾Š.\çœô\Úñ›-*“œ\r\Æ‘\æ7È§’\å\\\éÝ±Ñ”@\Í°bü\Öd\àx\ì?…¡\ê7‘—)J2·,\"ÿ\Z\ÅV#¾µb‚¨\Õ{°\Î7€ðõÁ®\Z©\ã\ÆÀð>©Q\ã©;£~oû\àgYF½7]UP®ÿ*2©ˆ ÒªŽ#bò‚\ËV ¨•\ÎE\ÜXj7bŽ1œ€§8\ß!´\ÛU=…¢É€mš¾¨\Ö{YQ‡7m«›¿0\ç äž¤–3Å£›K7–ùò\nFg0\íŒbÝ•W 7nœvŽ\æh\Í–\ØXýd¸\"ƒô\éÍ‰J\èŒñÚˆ7qpÀ.\Ñ}”a \rÀð`7\Ñnšš’sñB\ÜúŒ}@Ó…v7|\n6º3«üÀ«\Ò6¿#6\ÑI\Þ\×\æ?´\È\à ˜7}\á\Í\É\Ùó>«³ž¼²\æ`õJ+iV­ò]£\Ë6¾ª7™Ù‚®·ò\ZEš¬.E{(\ËY\Ñ\ÒKhd`zŒk¶7¼I˜\Öc÷Hƒ\ì<=þü=\"óøF)\0\Í[!X\â\\\æ7\å­ü#q­$‰öT\çT)Foe\'&?Prj%o7û@lD\Ý\é\Þ\ìI¤R*)U†Òµ‘—¥\èR\ä¶&\0e£¨7û|\ì&,S\ÉWÄ¦l~Š°¡ e|T¾5‹—–‚o\Þ\ß8\0ªxqû± ù‹ªrgk*\"@TCRZ=òf’‘¤8K*}\"}u¾a¥Ú©\ß\îþ\Õ\ß\È\ï}›#V^¡\Í\ä}^g8KÇ–Ú´\"-?\Â?,[‹À{/´Ou|ðE\Õ\æpó\â‹8`Ñ°\ÄM‹U8?˜‚i$\ß\î\Å\ë\î›\"³O„{˜\Â8o0\ê\Ë;\ìà§—œ·Pjñë‘ª9I(–\Ý\Ôhm~ÿŸ\Ï8~/ó°Sõ\ï¥ù#WUD~c9u©uT\Ñv8ux:§¡´+H\Z\Õ+¤\ê2\Ä\ïOš)Ú½¼Bñµx8Ú“1Ÿ‹­b;÷ü0eR\Ú ñj\ìuU`\ß` is\Â92g¢\à\Â\æ­\ì\Æ\ÐýÁþK:ûra\ÜW;\'ÓŽ\Þ\Ì\Þ19fG3óC\ësw[<\Ý\Øh\Çû\\ÃŠ¾°;;OA(Ks°9>|€\ßžõyÉ®üŽö¡,Šn¸³a–S­\Ý>\\S9Iª\Ü<R\îa§~\ÒTªeð8JG,d\èò\Ì[…Js29P6’ATa~R,~F\rÖ‰«+\Ìo‡)¢¥\Za0\êp9PÅ `8_\æK#õ£\î\ç,\ÖlS³Vd*6T3-`~9T-¤¢HÈž :9…¦¥˜1\ÜS»\\\rb?FC©\Ó\ä½9Wmˆº\Z X —¨·Q?uM\0Gu\Ì\ë‹7’\ÉnOŽ¥9e\í9‘Dõúg2[Oe‰¥\Ñù\Ä\Ó-ï„¼”DqT†noK-9f`Ewo„œ¼\ß{õš)Q1W¦•<™\Ø\Ì¶É‹9p’m\Ã\ÔRz®\ÖmÀ˜Aq*\è\ÓZƒ3ôŽŽV·\nŸ-9Š1»\ÄY±z=&†3–‹.T°\Ôö Q\âA[$…É¤”Zq9™7ŠTñµ™\è\Û\ÅB\ìRœ\Ì#[\rO:„K)÷Ÿ\ÅXý9œ5\ÆV]‡*¦sêˆ»µjòq7«õË¨ð¡\È3\ì\Ò9Ã¦\âÀ%\à!©ºbdV@\ÎO G\ÔaM\Û\Ãã¾¨\nµ{d9\În¥‘\Û~‚A ƒb\ÙHc†\åx;‹\åB®®o>1<9\ÞJœ|UA6@Š)Yº\Ò>$U\ÅÙš\âé§¥6b\"9\áó~%qö¥2^J²ñD3]Z\Ã\ÍÀû4qôƒTõ\ë9ò²\Ä\Æ·]6¤z*6u„jLñ\0ƒ<)¾+\îô\0\å9÷«\Ù\Ô$2©\ã!èº…\Ìu²“\Ä\Û\éÎ™)…\0Ð¯»ð9þ\àžqBYaÙ‡sd¤yþPÃ¹(¹ClŸ;]«¸%\É:Z‚?SjM¥aŒ\0ðùyJ†c/¸Eø#\Î8\Ð\è s:\n\å1\Ñ.¢\Ã\ÕV\Ä\\\ÉÁ\Çd†S=œ\"E,vv0²|“:$€÷U\Òy\Z\n*\â+–\éÿÅ¾+cyª53‰3e\ê3:i\"R\"w`œ›\ÌR\ÑIñœ„X\ÞL‘Í–š\Ì7Û‰†Y¶:k6\çZJ™£Wj?\Ëv\ëA‰¶ˆ^aŸ€-Y\êE\ç\Ï8.,%:k¼\n<(Q\Ç ¦-g¨\Üvv]èš¢\á\Ôi³ý\ÈeU—N:‹\Û\ÅOñŒª3Ö›K\ÍiD\é‰›˜‚\é-‚-\Ì*¯3K/: ¡ˆj\'²}’!ž „}DD·%X\ï\×\á6\âD:¡\'º¢¸Ž\Z\Ý?ð\çD\ß\æ-Sp\'L\ío\Ý\"u¤…\ä`p\Ï:¬›\Ùy8…–{#\ÍÕ¿…m\çúö\Ö6mzø6Y(9:´¶ÿ\ÝÁ‰\Êm\èÿ÷e0i7Y€§,<YÞˆ-|€Áž½:\Ì÷\ÈdŽ\Ñ ÿeU€\ê\ï&¨\0 \ÖW\å\ÅC}>a4§\È:\Ï_ƒll\ß|S\ê\nv\Æ\"›2´ \Ü\Õ\ç\ÂÁ$¯‘¯r):\Ïi=£\ZY\äeu\Íó\Â)\Óªmëƒ­}¸\Ús?ù¤:ÿ\n[³v’\Ég%Gp\äa?>Ÿˆ\Ñm“_kÁ„ÿ5:ÿU¥#¹?‡™_jL§2S2\Ôö½ü‰ñ\ãU·ª£H^;RÀ‰\î\Ï^ºy]\ëò¸\ä%a3_)\Î;te\â\é®;JªE\Å]N”\ØjÂ\Ì.‡\Ì\æ1¥*E–—‰\ígWM„‚;WÍ­ÿ ª±%H)wš<~\ÐD|Ÿ7V\È<\Ì\ÈJ\Ü;d÷ ß©„,Z­zñ^u–¦XðÑ˜8ˆ}¶÷l$£Y;g½ŽÁlSÉ¹Á\0G,i8M\ÂŒ‚\0\çý¹©ñóœ;r\ïñš\â\ãt\ïý\Ç\ãh¡š\ï­Ø’ŒVg(eg\Ù1A‰H\â;z¾—m\ÊpúKm\0\']s\Zø)³MR!\\£U<ý\è¿\í;Š\r\0osoþ™B>Ã”]\Í\Ø÷\âuc“ºò rÕ¢T‹;\Ã\Zm}§g\Ï\å\ê\êùO†_t\Ä%n¡È…Û¯‡w®?;¡\è0õNU”-û\n°\È\Äûò$Î¡¾œ\ëJ\ä\ãŒ;ª·Ñ‡\áQ‘ §¹¨Z\Í[\ê•ƒª\í\Æ\Ûh^2u£*;»7\ÕD–nR\ÑW\ÝN4@“´JþsÁ`\ÖIºö¨\ä;\ÈP\Çþ\ÎÖº\îˆv}M¥ZÖµ&•V½¹\Õ\Ê<JS;ÏŸµ›§j\\\Øù%z™všò©”ƒ}dóÿ83eª_;\ê@\ïŠ_–M\Ê-\ç\àÕ…‰\Ç\ï÷\Ý,(gŠB\à\ÞC\Ì\'4/;\ë]A(‚1Œ\çƒx&¢\äšÌ®^»\Øl_\Ük8c<F\Åà ´\0D\É;Pw—Q¸œ\Ðtø\Ös\ÝÏ¯<·5œê©º\äõ½Õºˆ·v€€\Ëñ\"ðÈ˜Úªœ\å\Â<\é¯:G\Ú\ß&D]Ôƒ«\ÍE3 	u\æÝœ\ßtŸž³< `2!l~òsø‘òªDU¬=™¤¤\Ú\ÏTšRý\åœ@I<!{]\Ëwf›\ïô¤ŸÖ°„z=~\îSþôAð>nJ\ê<\' óŽ<\à±\'[Oe€÷ù0Õ\ã\Êüu\Ü!ôX	‹g<7\è…S\ÊdT\ï	{~\Ð\Ó}&(94\ÍY—_¢S#+T\Ë\Z¶<?ni6~’ŽÏŠ\Õzù£›û\Þ\îÓ­Dzm\'={?63T<m†2€Á\èõ\å[\ÈôgŠô\ØCƒ|Ÿ\Ü0™´øÚŒ<q\Í#;•&„p6fÄ‚^½¾ø¯8+\Ô:÷¬\é¡\â\ÑHñ<x:\Èw\ì©\âó\îƒLd\ìd\Î|G%N†\é=©s©<›\0Í  \Ñ\É$\Ú±\Ó5Åµ‹Ç™![•\ÄG7]5+<¨’H.<û1zôff:©/|\Ö5¡FŸ\"©<^õ÷}ú\Ý<ªÿ\ãþ°P,vuS\Ã\ák\È\Ö5ø3lšD ðTZ\ç~O<¸.xnEe\×¿ªj?\'o2•†œ\Ò\Zh<’:-Rr{<Ô«ú!qÀœòŠ\Õ2{Ÿö»Q:œÎ…¹€¥2U†?=A@5Ó¾Á²Í¾\"\Ív\ÉkkaÏ›aâµ´.kòg\ç\æE=%x§,\Ç\'}”<\ì*\ép¸ö\ãuX„p\Ðs\ìýˆH#r=Mbþgž`<ÁCó˜ÁòX6¡ûú\Ø.4xÂ§\Ì{=Q\Ès÷f\Ðø#\Í“”1\"C¨–+3b\î“5¥|<P\àC=]óóùm·\'\ÂO¨\ÊP«0;&x\"Î¦•šƒ\Ã\Úe\Ó=š\ãó\êÚ¹¦ý\Èô\\\ë0\äð$\Ö\ì\ä\Ó[¾#üb=Ÿ¯\í±$\ë\ÄH\Ó3•\Ôf4ñD\åü±¡V­rj\Ñ!?ö\Ñ=\Îø—¬.	Û• &\ÔIgCq [O\Ù\ØS„=\Ñdtz\\\àIgN\ì\n´d%­?8­³®e%`s2ûôI>\"8²ù\â¹*S@-‚öbH°ˆ\Û\"\ËaiŠº›žEx‹>\"eY\×-¦:0¨°ý\Æ37ðùžþ,jÀ³\ÝO\â¬>rf\Æ	/¦lùÙ¸$\ny+b+0ZHª0wb\êVÇ>‡@Z‹HƒÓÇ“’§º9 Ÿ)ŸW\î|„9\ê¤^~ >‘	tN\í}¿ú%\å\Â\Û\Ç\íó¯\Í\Ú\â˜7\â µ\Â6\É>—µ‹¸•º°+1ü˜¡X¹s\Ì\é²V\î\×TC\Ì\æ¬>ÐŽ¤º<\è©\0€ðg\Í\\^_·¥ù½9ŸKý\åö¥:>\ÒµP\íTÏ»ûŸ±§7r\ï`“üˆK\ÂùË’#žF>\×EoG‡¬ø0W^“ªÚ­>&i®nö\0½†ú\ÎóY9>\àx\ß\Èf?)\Ã\ÏSû‹vRK‡Z¹›ø‰ð„n½ñR>\îÔ¹£\î\ã\Ë\îW\ß^;ž\ï\Þ\è\á\âa*q\âoÿ\áicý½³>ÿ¸G\ãº\æ+›G‰Y/„C­ê•»Ü€6\Ûr\É&¶» ?O>u\Éz·/AõÇš	n5E-ù‘I„\ÆGUhß³?	]„M.Š¦nŠ¸\ä±b4s\ÞÁTô+\ÏHˆ¦?ÚŸ>!©d\ï\Ùù\âÀE_5\ì;$~$¨„§ñ&Æ \rµ?)\ã˜ Š\åwY\Óx†mN#¢\"( 0wiúIÙ¹2Àñi?!a0?+m£!©ZŒ¼½uC¨<:°\Ó\Ñ\Íþ\Í\ä>\íGq÷?\'¬Ð€|8§i\Ç{_\Ðz_)-©2®=wmo½w\ÜÐ¡?,gu§V\à¢\ÉÂ”-Ub\ë\â\Ô\Ä<eA\ÑÇ©KN¡þ?3Í³¦’ ¥Š´\ÓóD[\çqJ•‡ÅŽ‚•g*h¤Y?5KÏ¶®ñjB *Dº¹\Ü\äP¥ú?4žñ^‡”¼?>º\Ðe©\Ñ\àþñ¼cºý2u“ð¯\Õóužöö\Ð?H\'\ÍSüD>\í<56©Ì§5c\á¨#_{8ù‰cf?Q¨O¸\Éx™R”\"\í\Ì&À¨Z-²C¢¦\í¸j\r?_±\Þ6b\Ù%Ÿ£¶ã»§›«\èÖªK\Õ\ç\Ç¯xLžÀbÍŸ? “ú—ªh]ž0\0\Ú	B¢¦™\É‚ˆ\àL¡ J\Ö¿?\Ó\Ï\rÛ´\à<—\è\Ù\ã\ë~÷²Ÿ\ëS\×1.¯\ÞQ±E¾m?\ëõYê¤²¸;Ü®\Â\áS{Bvº,J”{9š±?õ‰W^\Ëz\0¸\ÓY*`\\ÁP·+’\É-Zœ¾\Æ ªlo?ö›E4ó@\æ+œ>¸¢‚²~£_teø\Îýv\nh³@®$†þyZÎ¤T±\Õ+‚¸I\éf¯Ø’c#p Cø@vP…\á\Í\è\Ôo\ê\å4O\ëuº¸öº¦“ŽY7jÑ¤@s\Ñ\'”b \ÓN9E=Ð¾±\ÝS\Ñ0¤V‰\Ì{\ÈK@ˆ\ëk÷„ô¾¤¾\äX$Î©PB	´ò\æ²=P\ÐS@*5­]ýðG¿‹€ô²\Ýû¼\ÄÖ€«\Ü3)A{—Aq@:xÿcŠÃ†PV‹\à\ïqtŠ´(„\×*¤\Ë@CA°RA³5³¯Pü}”§ó%šbI^½C3·®úÿ@Lo˜ÖŸG”²\×j§_x0`\æý8CŸ\ê{\Ïp@`@Z=¹žsX\î/\Ø$Xvó\0¸ÿ¶uy³8=7œ†\ì@^<Û¬\'=\âf©õn+Á~½\äw‚;òü™\0®\Ò@`±7°…ZÇ›ùbvP©‰õ2øt\ï@hl\Èq¸\ÞÒ€@qb®juªO «;…x…\Ù\í¬\æ\Z{%y	\Ì*„ð›]@v³KÞ¨k\ê\Ã%~†|`¼\Ø`„<5P\ë\Û\íŠ\ê.@|IªNÀA½\åY®˜:_Iâ¡¤\Îüa±*„)õg\ÂF@‰~\ÞbR…é’¤\ìZ\Ü^¨\Æg¹£õ4œt\\E[]\Îx.¸@l\×lü4\ÒôwÀ2¿³lª\Îq¦\Î3P±\ä\à\"Ÿñ¾@ž•F3ª¿ò\\;ôe\åˆ0Ûš\Ê\ëN\ÍQP£©\Z@«;„®\ÊE\í \îxS§\r\Ö=\ÎK¦A-\ëõpž\×y@µ@É¦¡  =ôKw€Ù¸\rk¦)\\XsÊ‘•]\Ú Üˆ@¼Q4\Ä¦P¢ñîª±Àl¹NØŒ\Ï\ïF!\Â\ÛK»³¢\å‘A$\ß0©jðºg\0\É3dhfGT\Ý\íGü)Ì·³!A92\Ð!Z9œý^v*¹\0D8\Z=Qµy‚ô\ZAbôAv¡{/Gªgö^6\Æ~F\Ô\nÄ–\Ã\ÞSA	“½‚»Az#\êøô\ëRHˆ\Õ\Õ\éŸ[¨`Y|Ò–„\rxÒ¬”A€¼\è®5\Þ\ÄùNök…j(W\Ü{lü\È\Â9ŽXIk.Q\"#A†²«’‰c¡¼7€\î6\ßQN^ò\"B\Ôz´\ïÍNA«2,™0F\rv< qbš9\×&Ç°\îs\Û&Á/\ãA—´©„Z%\ä†6P\ãÃ™H\ç—û®[h\n@\ï <¦¼A /úõe\ÈÊ£P\êš3ÁsE\ä‚bz\á\Ì\ï%xK\Ä#Tô«AÀjŠÚ±ÿ]½U\æúf\Ý89b•yFvw1¾„\Ì$ˆeôA\ÅN~šúômDD*\ØW Ž\n´e©\Z\×ö^¿Dhu\ß]A\Ó@z¢$zY\â\Ï­um\Ùp¹Ü”õ^¶£6\Â/£b\ÞA\Õ‚¡\Ô8O\æÐ²\ä€\í¼ŽœOzœ»y\ÅK\Zt®\\A\Õ\Üîª‹iß¤^ñ\Ïô\Ûf\ßWÍŠÃŸvº¢#Ÿ\Zg¬aA\Ü\í\ë•\Ù\å\ã)ú6\Ï.k#\Õa\rU¸ˆ²A\Þe[	ŽºŠvÌ›3ø¾¯k\çg\n\"…¥¹®\ï\àÝŒ\èA\ì°tx‰</Y\âù\ÆD\Û\Î\á–:=\Ñóo«\Ê›˜	u…Aÿý\ÊR<K\É\å!t\ïD¶J\áýNðû½]F!Æš|\rjB\0ˆž7r\ï”\n–75š¬ƒ³HŸÏ„K~‹+‚\ÜDBo‡B–ù5¸}\r}dT ý\ä/´Ð¨\îÈØŽÀ\é,BBI\\c±cx|Ÿ¦³c\r\ì”wHN,4ˆ\ß?\Ø\ÒBŒ!!ô½\ä$úã‚±Ö„!¶÷V[Ž®\Ðû¢]Ç\ËòQ\'B&ˆ\ÅJÿP:o†¤ûl\ÊG|P\Ä:q\Õ_pŠ!\Î~¤B*œ/z\â\én¦\ä\ë-‹ðTýfY£\Â\ÄzO|…E\ìVöB\ÞF$b\ß\é²ø\Ô$.…-zFneƒM\Ô*/„\èš\ç¢\ë|B•V\Õ\Åþ\n,°¶\Äî¾£O{Æ‚9õÒ¢™°ýó,ó–BŸMZ\ÜÿrDžgK\Ù÷Z”y³ð{¶!\Èd÷\Í\Äü\ÐVB\Ê<ž= P\'\r³¯Šl\Ýû5hhH@ñCp3\Ï2É­vCcB\ÖR»\Ä*8Å˜¡\Ó\ïT\åðö/]s·.9T(\È\ê¿\ÔBÛ¥D~Ç–Ü¬\ßB>\\_E”ˆq€\É\Ò\çl\ØOxy\na\ÅB\Ü\n\ç™¨Ä¡?}Vx¢¼qA\Û\Ð½a˜³I\ÕwA\'6B\ã¢I˜\èqƒš0úq\Z\Ï* ª\éZ>\Ã\Ç%C\Ø!lC6m\å©è›¥\í\×ml\É ýõ‘\Æ\Ú2‡}$\\A/C>0\í\Ú,c\ï\Ü\ÏJÁvy˜\Èìš“(TÝ„\çžI•CN6\ï\ÔZ:™cz\ç15\êùÁ(Es\ë{(’ùM\×½Cjá¥¥-«DX\rHKÿ®„«\ë\Õq¾M\Ê`o»’ˆCn\âUcœ]üÀ¯\ÊüL\ê\á˜]Ä¢6½ÀC1rþCt‘…¹[–\ÓP9oŽ&Ñ–·cv\ÑCÇ¡\â‚b™²;C‡]ƒó\ÉU½:3µ<\Éøv=\rˆ\\Š\åG\ã)¸\ÍC‰\âv¹m9)Á¶“\Û\æw\Ìl\ç\ÜNdü?¹>o¬C—\å4)\Öø’’“½‚iÇŒŽ<1\Ïu\Ô\ÐŽ¸\Ï\"CœO‚5‡X”þW\Ï	\Ã\ÎNù\î¢\áJ”½\Í6û\åC«]ó×ª.7\íˆ\Úfb\íÊ¹¦šo\Ñ	$»L\á™\Í\æpDCµ\íø3¨ð(`¡\èe#¥½bö3Õ~;o¬‡\Ò\Â4TC\Ò÷ŒjšU#HL¾\\Y%úðý\"\ÜrS\ì{¨õt\ÑÊªCÜ½=#\\‰4Cø.ûðf\Ô\ä>)!\ã\ß\Ê\"\Ög\ÛkC\ÝyÔŠ\ÃJDo H¼yþ\ê¸$õ\Ñ\Ü+ñ|°Cô9–~®‡f~&\ê’ò%{	7ñÈ¡[¿{aOy\í\ÝDg9‹Õ¥\Ô+‹ ›½\Çw\èw\'\Þ\ßYJ\ÄE\ÕD2Pwr8\ÕI—þeW’}þ)Šs\ßn\Ñ\à°ö³\0þÿD?–j^*¾\Î¥{2¹	WÀc|§ ÿ]‹\ÔyütDC…ˆ\\N\ZK`aõ—o¨¡\ì2õL·J\ÄSw5:L»TDHoB\äT\"—Áª/¹T[‚h‡N;\ã\Ö*w´o´©^´°®DLSg\Ñ\Íg¾Ý¨»\Ü? çŒ‘\å\ÍÏž«Y1Ñ› hDW\è¥ún\ÒL°4\É+¤X’«_Š;­¦‚‡Å¥\ÂDk\ä\Ê5ö2øñ\Öü\Òo\Ý\â\ïô…«\è\ä‡+¥×¤I0ð¦Dp\"Šb›P\ÖmEN÷}^¯¹³[\Üú\Ú:¨qþf¾¤D‚T\×E™)$Gò\Êet\æsÌ®E\Ù¹¬ª\n­¢\æ\ãD\ß\"ŠKê–ŒT„œ¥+qr\Ë9 šütJ£v!!D£%}³Iƒ\Ú\îm‹\ãF2\ï=(ˆ\'+¥\äA’‘X\ÓD§˜ù\"e\Ï9‹V\ÖýI••m‰425C\Ú¬AóP½%_D´ÆŽ­6\Æ¹S´x\ä«hjï°ŒG­]i\Ï\Òi°‘\Ì_D¶U¼;F=£¹\è½d¦øZŸK/\ì³h-$»\Ý\çX#D\Ç\ä\0w‘\ì\ÄV—\ìvRwo‰–«‰\ï\×~\èMRùD\ÞT\ÕX6•_8T&\ZUc\Z~®Àœ@ªQ’\Â\ß\Ó3góTD\êzý\nr\Æ\Å\Ò\Ö\ä#o8¶­]\ÔqñË©8g¿\Úw–\ÔDù\nDKbu\ç4iQ\'’:\é©-!\êš:	¯ú2\ÎWi\\\ÝDùœ¦N¹™-I0–ÿ\Ì0?‡4\àzfÁ€<\áHn\íE\r\Ù×¢\Ê4¦/¤X!Á3ù\è¬~\0Ÿ¶\Òð\é]ŸE(\Ä\çÚÀ\ÂK\"\Ây¤Œù69=a\Þ1c“3øú0˜mE*\Èñh5|ðy;f\r±kÀ€\Ôa‡í“¤~N\ËrðE0À8\ÖµLó«ý}qe%v·BÀ|:±h¦w†E7·3~\ã¡Kµ\02³ˆò\Ó7r\"Uª%¼-ò_:²E:ú™kf\èdœtps*H@\ëœ+I\Ê35_\ZrŒ3´EG-=ÀŠ¥|\èð†6W ”+xA0õ†Icq_–+EJúVU÷2b7jMy¢ð8]\×nF}°\ÞZ‡²?4\í\ê\ËE`ƒÁf;¿u\í³\'wI÷$Ž0Vžo0H3ûö]E}¢¡œZnÕ.G„¸–{$‹X\Õ\êº(jyq\ê£o=E’ª‡\î6\Üx7\à”›\ån\Ö÷oj a¸úh.¹eŽ\ë5½Eš õ\'\Þ%Xmš-ÿQ»s\Øû\áÄŠKeb«øb©XpbE¨-8\n‘u‡\ÚT/ÀÂ§\ÎÎi\â¿x\äúr&¤ \æ3E¨Q\é¶\Î\Öd¤§8’LÜ®Å¹@ñüª \ì#]s\ï­EÐˆ›\Äø\Z\ëT”•\Ý›¯Ÿý¤×µ„\Ë$\ç\é;±QE\é!¶!‰¾Í¥ü‰ƒ)r;\Ûn6\ê®Ek\êS1þ$`^F Í¥Z©Z(5JC©\Â\åû¡kù¨\"ü«óó|dwqFÇ¾š\'ºT%c\ë*|k¢¨‘Èƒ½\Ó\Óu\Z²™N±ô\çMF´kfS\ÈGK#:\ÈÀ·³Ý’m¸Sk\Ü\Â\Å%\ëF­h\ëÞ™øº\ï«Hm\Îð‘k™\ÈÜ²=\æ¢¯™F÷w•Ø³YÀ\ã=\çõœ!\îB´\r\ØJœ\Å9´F!	úP™ö\r\'ów“¸:(”Q\n’=jlõ\èhj¶¬F+\"º£\àù2|+öFUšÃŠ\Ø;Y¶Iá”}f}|FCöA\Ñý>=²šóh1­ðXJWDX˜4\Ô\"Š=TXFV›Ñ—±a\è6y±p\'\î3®¥]µ\'†´\î\Óþ,F}&w=4qu®\Z¬\Ûù­X?·F{û©W¥B!½F§¯Š{K\ØP:†iòªgF´\\ö\ÜZ	(\0GpF¨ûø¸\Éþžy½½€\Åý™\ß\é\í\â3nú\Å\àó\Ó#\Ü;F©§ôÀR´<`¿=#i\â¶zAg³Dd)\ÌÀ‹qF¼\Ûz\Îg­\Ùsfý7˜B»÷¹X²ñÐ·Iw±Eñ\ÉF\ã˜tö¢\Ç£vû\Ö\Z¥:\ë;„þ`\ÖjµÊ \ÔB¡G‚›ð^Ð—Î±ñ”›tG¹eø\åš\Í)\×\Ù\í²ú\\G½nŽ“¨U¯ó>)_\Z1¿d†/Ú\Å2¡’\Ò>\Z\ÚJG\'AQh\îM\Í\ÔVí§¶v‰S(˜G¼¬l^~@y\ÝGB\ÇT•‚g‡\×{–yÃˆ·ª¢†C‡”–\Ù\Î\ÙI\éÒ‚\ÙGBð\ì\à\Ò#”(ö>”·‡+:\Ë\áùÔ¾\Zþ\ähþ\Þ/T‚GI}¯‰?\Z\Ü)[>\"n\å`º\Î÷\ÙC’\Ñ\å cf\ã”G]€Ë½{0nÙ‘)m\æwhn\í¸m­«TCñ\Î&G^˜Pÿ[ò\ÙÖ°a+\Ëä‚“\ÞöÝˆm—g\Ï ¢?÷Gsq\"¡÷qk•¶,\Ù&ðu{nºŠi>Ÿ¨\ám\ÓGs}ê£©²¥~V/	Ý­\æ\Ù¤[ö\ë\í:ñY£\×\\Gt_!ó§HX\Íû­«Ð«wc¯q\Ï\ìe\äúþ6\Å>\îTkðG~x%í¾ƒË³ñ\âó>)žµ¾d(\Å\ZBNJ!G…\ë+§\Ú8“v³Í®1g*=^5ŽVøô¿é€…·\n\È\'GŠ@‡PÈƒ\ÃUˆ! 9\ï1XYM“\ÉÿQeˆ \0×`\ÆG´?}\ço>\È\ÇUÎŒÿ5®O*qú&+v‚3\ZRmh@G‘™gr8\É,\ïB\Ì\Þc]u_·a\rÌŠ²\Ð\Ê;˜~\ËG½¦W\rð\Z‡\äG$\é7iD>\Éb‹¤\á^Ï®\È\ï4öGÄ³\Ë—»YqUé„¦´¨´l\â\"	\ì\È,]\âûf§C\"sG\Æö\'”½Y¡¾½7\Ëÿ\é5T¹j\çd5:Â€“\ÙX}{üG\ØH{²p•<Z¼\ßtM¨‡h`\áK\Ð\Ä\ÇAL–¿\ÅGð±¦Ÿc\ë\È`B+91l%S\Â;\à8B!¶\Öº\ÆG÷\Ø\í:—³}ò«›\ç¤\ï\\¯\r¬\Ë÷#}g\àÁÀóu\ëHóAfº%\Ö³1h°*#\ë\ë\Z·UEUhŽ>B=r‡Hp\r³\0V\ÜQ\Î]µ¹%<‹ \Ùÿ	\Ð&si\Z­[•H…\ßHeùQ\Î\Îe	=:¬\æ2sO\Å8\×Oõ½rÈœÅ–\ÒH,\Ïo‹ý¸1ô@O> ã•\ÍR{õ\Æ\â’5k©e•\Ë\ÄH69\ìó—ÃŸÀ$K²¯&úó‰k³­\Ú\áÑ•‘\0ðy}H9m\éPÈ¥\ß\"¦T€žŠ¶\Ëù\ÆÕ©þ\Ö/5\Ê{!\ß#\Ïû^HBÁŸú˜]=|\r\ÓUJÂ¢ \Ñ\èI±Á‰¨­w\Öj ~HN\Ï>\Ù\Ù+fö\ãòVQÑ‰ž2§ž\åð½\ç\Ë^\Í\ÐHYƒ˜fAp²0]ý™OcÂ‹—B §/¢ï¡±$‘g:H`kfN–°Lô\äõh\×`ûˆo\í\è[agvEHa\Ç÷”÷\ÒÀYB¦3GD†«ÛŠ\ìõY¸|\å\å_\â]ÀH{\Ã8;sP‚%;£q‘\Ð9\\š\×}óI€“W—ªH™Ù¤]Ãªù\0\Ø\ë•{/|\È öodl€J/1±H¥©Qïƒ‘¨0z\í/Àt\Ó$\Æ\éÚ\È7\È)\æ\ÌIH¯ˆ Àÿ{ÿ\ä\"!b(\Â\ï\ëArõ\ìD´]\ì\É\ßR;•­H·\ã\ËJ\á²Ÿ¢\Ã ` ¨÷ò…ût¯HV¬{H¿¶\è¹5±\"wqnG8\ÊxC·ˆZš(Ž\î÷«\07ÿ¢H\ä3–:Bk[e<KRƒT6\ë¬uLÁö‘b€Žh\Îñù\ËI‡¥­10—%óV`Þ®f¬aúö¦²8~(\×õ§‹I;BŠô»S¥ó»©\âG¬l¿º”D‰k\Ùl,\0‰\å\ä)IGQp¸œ\Í5u½òŒ\0cÀ{\Â}­\çA\ìð\Â>IN\Ò\ä®ÿE™ç¯j‹4“G\Z\Z}”®«C¿J\ÅC¾IZ¾“4¹ÿ\ÜÖ»{Ò—\×7ta\ÙxÐ’H­1–¢\Æ\ÖðIyñ\Ï\r|­qª›–SAý*†	\ç\Ä}H¿\àPÁ”\æI‰|\á™µ0\Ç\Ý\á¾7a\Òn¹\Òe;\\Uôœ÷\ÚI£>Ù½\â\ï^iliA®$UMÂ™>œ¸ªl¨)£¹$iI¤Àg-¿\ÓÓ®¶P?{\Þu\âOR\ìRr%‹\ë“~\Þ\ÐI®\Ô?Š¾\ÔRñ`#¥\àC\'\'\"·®\Ó\\j\0aR²_\îôI\Î\èP\Õ$\ÐK\Ñ~\á¢P¬«mhf\âñ l<!,%\Þf\äúI\Ï3d7°Z4ŠU\Ø®!V\ÒRü™\"\Æß†Koœd(\â²IøB¾qM 5{s6 li\æY\Ð,žÉ¦d\Ó\Ã\Ùe\Ã\reUIû\Ü?«5j¹\Ín7\à¿+#Ik¥\ÄS¦\Ú\ïð›c‰ˆIþz÷V¡%¾N\Ò)½¡\ÚS\Ê\\²²n«$-/Aˆ@\Ü`JR2\ï›\Î\îñ_¹s{\n/úvgLiòœ›:%¡\ìJˆ¦§œe©N2\0\íY ¥¯by¨_·B‡š\Ôý\éQñJ(|\"ŠD\ç\Öw@Î¢ð–˜w\î\ï§;`®Sþ ¡E\á\'\É]J0^i\æN™\Õé¤¸®y\ÅL\é\Âm¯¿¾ø\ës{ˆ\á(J;?[(\Ó\æ*Qý‚{¥84á…¶AfùU±ùý†ÿ5f;¨JWó\æ\Üeüjù ¯JA¨£\ËU]1‚Ž^s?Z‚\Æ\0JX#j\ÕÀ\Çwö\ÔÓšYûù\æUZ+òõv\ä *+Œ\î·J]²Æ <SMvðidz„\å«\×ý>€à¦…&<d“˜CJj°;þ\Ö\ãKž\ã;s¼\\¢•2\Ç~€\Ú‹4½J~\Ã\Ä=¡;ë…žü”#– \á	\"K\ZE+‡\í½\Æ13°˜J‰3õAZ[‡§;‰`“›´Ÿ³ ¾ƒ3Ë¦\ÄoŸ\×J“4\Ç+`b	\ïˆ\Ñ\0YŸ‘y\Ø¬6WqDÃ…Jš „\Ë\ÃV¡sf™^·”³¥\Ìªôü\çó0G\\Š“J¨Š¬Y™ŽF Á >%•PMF\ê? iºO—\êJ¬‰	p5v…\ã”„v½õ\Þô´ð8Š‰œƒ€( °­Á\ïJ·bjb\î‰4Djw*4ž¾\Ôé±‹p÷-:Vx@óŸ~J¼•÷N¬@—`\Ù¨ý¹P)@-8Y°X\ì-\Ø\ÑJßÆ}0òÀ\Ë.\Ô\äûpƒ\Îe	G\Î\Ü^—ð~•»QyJ\ã”$§ñE\æ¾!\Z€ó\"\Ô\ÆówŒON\ÕÐ‡Ž«^mJ\ì\íP°\Õ#d	Të¨Ž=\ì†v*Qf§¦tz\n“½±KI³\å1Z\Ä. |¿\Å=ƒ3÷S0\rž÷8]„+K3¹S\Î\ãxF¸Hn¶¹ZDa‹\ÝÛ³\Üðw\ïs)*xK;P\Èasz‘nZ‰ú‹ˆ—£*dWÄ‘\í«j‰]rKPð‡”F1)o\Ñô47\æ\â–@VÿO\ä\çfU5g\Ì\ìKa;¨×¾ð$ù(Ui\éò{i­N)hi\'…ó¶TÍŒY01Kb¡C\r\Êöü·it¥ê…£\Ü\r?\Ö\ZŠ\ä½\á\Ó6·Ke«]\éo\ãüï¢ˆ‰?>ñMŒ‘¢3ö<¯—\îð€XKxd]pÀì”Ÿ\ì6r\îñ€7qŸù7nh»\àXJ!K€Ô´Ë‘‡k\éHV\Ûý\à†\×AZ!Úš¡¿\Ó\Ð\Ð÷\\\ï\ÎKƒõ;„¹.8^\Ò&\Ä\È\Z•\æt\Ý%ªn\âò“|Tº\á\ÈKŠ’šht÷£öµ€Ã¢ÁÂª–xšº\ä\0,\nyw\ÊÂKžz­Í¼3c\Ö\×Þ–22Ž?Cô· ®\Æ@\äb_LK¢;¼zt\å¬uµ\î‘,1}½·V\Z&!…ü5W«ü,(K­k˜$H­\Ó\ít8¡0™%\Z»µ\'‘¡€%Ž  	ujK³O™ÿE®\ên\ÛAFò>®š£Ú’d3ø’\Z_»0D)\'Kû\Ï\naÚ„h)Äˆ#å·†B\ÝP\å¡$û;¦ÀL$Q\ÐöA\Zÿ3­oT\ÐÖŸñx\åp\\‰Cˆ™ñ\Ði­5L&üýz¾ÁŠ„\ÏÖ›Í­+\Õ	\Â*&X»¥ö&R&\ßeL>\Ë\ç\ìS\0\Ô\Ñ}ß”¿\â¹\"².jônÈ¡z%ža |LE\'“²Ž—J€nEý@”»l\Ñr!3Î†”\Â\é·\Ív\rLL¾\Ô)<ñ¶Õ”˜«Àj\ïFÿœWÿ\ê\ìB0–#pm\ÔLOHTcõ¬þK\ã6®„\æ.…e£;ø]ÀAesË¿S ©FLSÀ© #Vˆo€8ki.£e\"k©™«û’£ß¦\Ò\êòpLz7\ZUÛ¼x{UW?EQ\äK‚0\à†\Z÷§ù`hl\ÉL(pyp\Ü]\Éó&\Ê8\å¿,\"6»\Í$cM×³Z}uò\ÅL°Y5›\æ{\ÑL\îIl#6M\çXH\ïxP!\'þú+\Îm\"\æôL´f6˜\Ñ\ë=¦([Ñ…€\Åó•`•õ#7~µ(aL\È\êO<«e7¼j}ó;\Üh¯—&K\Ð9ôø<• ‹¨\ÂL\É\ÅÁ&}³†P\Ïð\ïÜ›\Ø¤\Ê|b31Ô\ÒÎ³L\ÌCí•´1%\ÌPÇ­V\î\ç©«q{¤•{r\"H¤.«Q\ÇL\ÓvQ4\Ô\ä±ÀxŒƒ™¡¬\ßA>‡—kr\ík-§\0\àL\Ü:}øŒ%,¤\âƒ\\}£~8\\\Âþ»Oa’ 8\ÊDsX‹LÜ¨\\H»ø=c\Î\Z\ï\âIƒp‹b€x\Æn5¥À¼ÿIL\ä*~Î \à¨E‰x¾¤®\ÊI<¥\'\ÕULhk_‹fÿBLö›\å]E\Ô;B–/y/k]ý®r¯\"›û< H$\É\çLúí¿¯™˜òRH\âx\ßýs\Äq\Ó5]þ\Ö\íM\Ûf9M\nA\'J@c¤V\ëM|)®ª=þü5\â»c[\Ø\Ùÿ™!M\0(¥ÿ@hF(Â¨o\ZB°FœA\r™w•7™–M„\ÇÂ±M\ÞC\Ò\×\Ð-”ù”8Vò]\"®?F\Ï/Ð»‡MV‹€s¥ºõh\ì\É$ôCÚr+B·w\Þ&\Êu&k Mk_!:°Ã³“a‰»‹¿#“ª\Ëþ\Úø\\	^1³\ãM9³9Á„7«\ÎV%l\Üz‰[B6\è\n\Ôq‚Ê•\ç\Ãð\ÌMY~q’¸_$ø19±w\Ù\å\Þ`Œ¯Áñ\Íþ¦\Z\î\ÓM[\Øiö¿%Mª\áAD½.ñ¯l.\Zn\Í ýp´T‹tƒMyL;-˜Ú›%I¶u\\‰K|,Ìž\â\Ãf\íû] ›M;*j‡®h\Ò\04\'\×u\r_–\Ð`\ìt\"ùOÍ–þ4M˜Ä®ü.4jW[\á\äa`Aù¥ù>œ?6eXÁMÀ«q¼\0q\Ý.ˆž2Ý¾šA/^G\Ì\Ù/Qû¾trªœ\êMÓ¬\ïP\×\èð–=ÈM‚\Ó>lw¯\ìÀ›\É—ov†\0M\ì€~\Ð\Å\ËY¡‡kø@Lÿ\"#\"/;c®†vj~\0\ìd\ßMòøô\ßÏ¸\ZP‹\\x\Ò\Õ\ç\09‰F\æ\'?Õ‡·÷\í=MöSp\Ø\á}Tƒ÷.!ÿ©û$|N\ê¿\\µ¸\Å\×\Äü»YN\Ä\âÝEh\Þ\Æ\Í\Þ’\Z\â\Ã\Ý¯¤,P.g\ÜKNmö¢†Šgl‘)¼´¥A“ó¢½„ˆÁ?–‡ üN‚N\ÜegR\ÈwS–n\Í\n¶¯Gû™Ðš‘½Š£¯qN9\Ø“]`\ÈT¥\Þ*L\æ)w\æò\0—…+ø\ÄÃƒ-r]\ç\ËNA;Ö·o•‹\ã5¿9‹Ž0„\Ö6\Ç\îlúÃ†lyz£\ÏNL2¼¤hÚ«F¥$H[=N\ÊRµž2\rQ$\ß{üù„)NU–\Ð\ïš{ö¸‡W\çkz\\ºðm‚˜™½lf\Ç\ë\Î#7N`?g¨\Z\ÓØ‚žË€\Æ\èz±\írz…e=\×s¥\à%Œ>\éNp.jªìƒ£f´7F¥,D\Å\Æ\Û2Ù­:\Ä¤2ð­+,¥Nz\â€—Ò¡r´¹9;\Óô´›,=\Ä\èõä—ˆd†¢GyNÈ©Ÿxƒ=\â.\åŸÛ’¸G¸¤—nø\Îca(N€\"\Â?\ß\ÝX¨\Ñh\ÉLú\æf?e!#+¿ovŽ\Ì`ˆ\Ðn¶N¨\×:\ÖûÆŽ°\ê>\Ý%\ç,7\è	\çg\âŽ`e\ézš,N­v²\Ð\êÞ\çLTgwRöö€–\\˜\ÐG\ïh,–´N´€‡\Ñe>h¦\Ì@\ÜJ|jô\Îl÷Å·p>U¸ÐNµj\ß$\È\È-ñGE)€¹ˆ³&J©\Ç4ð\ÑG¿\âêTNº\ÅkŽûÓ²\Ù\ØG\'ƒ:‹¯±˜2]¿üF\Ã+”‹‹\ÞN\îY\ÄGDbþi\Â\\iRL<\Ø&\'?\ÍÿÀ\ã<·þ³U3XNÿ§«WNlN4~˜Œ J& R—\\xdœ×¾tR_\é¢\ã O©	Yÿ@²9ŸP®·-¾¸\íÁ\Å\Ë>ú5ª\ÎUw\n\'OR\Ök\Ôg)¶eFÃ¨°Á¼lõ,Œ›\Ú@\Êô«’OÙ¨›|\áe]|mK¿~\éF¨Ó‚Ë;‹J\"´ª¤ºO(µ\î{\\¯Ç¨U\Þ^DÁ%þ!ä¶£ª†¡X\Þ\ÑXJO:X…Z\É%”\ç§M;Ž—‹‹	;?®™¤Õ—l\æ%¼OCdo^žù¼r²õ•”?žÓ²ždºùô\Î8ú&V®OG¾Þ£Y8+]\Ú^w\ât\æº\Ô\åX]Ý¯“s6QzOV\Ö\çø/Ÿ«½~Z\Ò\Ê<\Ý)\Ïr!h=›þX\Í4´XOeI\ßVi\\q<º:ûm\é´W³DlK‡Í„\Þ\Ú\'B\ÐI„Opb\å6\å<FÏ»«i\Ö\Æä²¯Hp†\08•2¾û£C\î*O„e„/¿<‘\ì\êH\Ä}	\ÊJ¾ƒ¶¨t‹†J‚ý3K\ÃO…\ì%zŽ¸³¾½÷wvœ\ãW8X¯F­ˆ]úÁ¨lUOˆgû6r\rþ\nôp¢»H¼Ì–Ö·Ž—|\ÄO”AR°„`qL®?¯×¬\ËO\È3v\åv\0Uow\Ë\0Kœ½O˜\Åó\âq%s5zût†\ëgùµ’™UUö\î\î\Ç\Çi~~\ïO§W\Z‚9\Åa¸q(”Ž: 3¹\Þ+¢*+¾›£ˆ\Òm;\êO\ä~xwU.] bfW\Õ`³h‰šWòƒ\\Ü­¸mP\nkHºž\â6w#rüv{0…õ£=ï«Œ\0\ãi.PzºZ¨¤û©b\ØoBL¹]\Æ\î+n¬@$G\ã*ŸQ\ÑhtP€ü\n„O#~\íõ#•Šü |ö\äŽF:Q>Ý„\äG\ÃPkSþZ\ëz´ƒ½–0«D“\ÖÏ«¡I¹,1h\Æ\á\Ç]jP=\Â\Ùq\Îú\á˜\Î\"\\&\É4\Ä\î¶òo\è“0š©iPBÿ1BÊ8‰aS\ßh@<\í ^!›©”|\n\ã¿\àPB™HŸ\Ñ<þ}ÿF\Ã\ÅJ\ç›\âˆg„­=rv\×ŠúûqPD+Ë¢³RÆ†\Å\Ü\Åƒõ\Ä5BhþX¹\â]l\ÞWP_ÀºMŸ4˜µWûM$\r]¾\n¬\Öý]’”³|°øa*Pk:ES¯\ïv\Z˜L\ÖÁ‚³a¶©\Þ\Þ\"i\0SO2s\á‘=\äP~¹\Û\åØ¤‘X7L¶G¶0©»°†\ÊQ\ËûdkL;\å}P¦¹\ØV\nB§^~ýˆ«Uh ÿy»r\î.F\Ç>6pN›Pps%½\Ã\\*û\áó\Ò #Q=ƒ¼£QCg8ôPƒ1mK¯=\ÊY4\à$\Ì	’r‚Ö¨\Ø\r(|/gË¥$¡P—j\n\n¹hbZ\ïW²>}øùnö»“oFb*Rˆ\ê…P¤Ä½¼7_c¿Zþ\ê\Ñs\Ì82Fù®%\ìª\ZFJ:7PÀP°\í*HÆ²ƒÁŠB?\ÂB\Åðn´ôÆ¤1K ]\ßsgP·‡õ3—\îJFúÃ‘m\Å\è\ß\0‰[l%©ž£\Ö$ÿ\rP¿\ÄK&O˜«\Ú5®\'‚RTË¢\Ï\"L¦rÁ<Ï‘6\Û\ÚP\Ç,–\\§\ï\Ã\×óÁ­\á\ÞZ·ó`\á\ä !þs­º£†3P\ÎW±\à³\ÕJ\î\0w~¡®\ry!R\Z‹[BE&@\Ãù$\r\ãP\åO\Í\r\0\ÐÝ‰\Öð U}$\ïaú\Ü)S~\'\ÃA\\ŽKP÷”©%þ¹?\çkN&\Ñ{(Ž\ÍbGŽ!ã¨œ”¬Q\rLdž^\×!DG4\ÚøgŽt×µ\íÊš¾Hÿ·\"£»QˆAYZb½DeO\×®0Ÿ{òóY›0\èŽ\éXvQ&·»göë“£a¨ƒ©œI¥\Z5ŠEc&#ŽM/Q8¨ƒ.\àf\Z`š>\Ûû”ª\Ëz;öƒ¶™+¢8$3ÿQ>+]Œ«6\'ŸGq™*r-­U¶Z\\±>ö#)\âµMQJrýZ#6\Z\í\ëd&!;]\ÔþsZú¿\ne\Ã\Ù\è\ê7 ûQKP¦;\ËXÓ¦_f)ÓŠü\à\ìCœ?«*ž£®Qj¹\é\Û4bº$V7U\Äô„ƒ\äŒ¨M|RbBth\ÕQtAFB;<b|³»OPó£t\è\ÛgyWŸZ‹\Ï\î‹Q‡ÐœhE»cžN0\Â\ëG\Ç	–7ª=ƒµµm0\é;\Õ]QŠú]\Ù\ÝBá¼ƒ¯\àr4°?N&\Øu°Zs¿”Q¨ ^Q‡JC£˜}f½·ÀLª¢[`%%™¦ËšÅ¿b¹ƒiG¨Qzz·³·u}”Ï˜þÕ¿¹¸ùò¿±>g¸™&9\ä8\ÑQ›ªöH\'\èô<\Å~dhÃ§–øª\Írú$\âuÃ­0Q¡÷!¹\ßt±©L7	Ž\n,N¤§±{Nÿ’\Íw9Q¢\à•Ÿµ[»#³¶T¤Ó¯\Ò`\ì¯0õŽ”QÔŽRŽŽIQ¤N´\\\ÇÀŸsžmG«i\ß&½¸!0‘\'„\ï2òQ¤T¸Ÿ\Z\"™sÔ­Z\'@µ\ÔÂ‘›>=;F\Æsõ\ÇP[QË®5w=\ÛCz\Ë?\r.h\Í+ p‚\rWý4U…F\ë0\ÖQ\Ó~­uRðkH%ö6\â³t–u\ÓY\Ð0¼Š9¤|÷*/ •\ÜRñ|7¿ª\å5˜÷¢I‚|fš(¼\ï‡ÿ\Øj\0R(ß³\\úß¥H‰£3\âõ\ßð±ù\ÜU= ùN\ÙKóRe£ \Ã{(¿TF\â\á\Ï²Q”…þAð\Û\Å	\ïÇ´Á\ÈNRrú¢ù‡2+P¸•;Ê…r{\0\Ô\ê\ÌL]\ã˜Û‡¯\Õv+ðRu8¯ip=¼J£Žõù”]¼õó”\âwB\Î\à\ÏÂ‚\è¾RÍªÕ›†›2˜ñ—Á$‰!\äˆºF~e\ÞH‰`\ÉUR\îPÁ\æõ¢\"b •M¨\É=\ÑsHm\Óu§–¸/öM®Ròñ\Å\ÞáŸ„\éóa:hx¸–E	ŸgkAù\Ü	+ \ÏS\ÏÖ ÇƒnðD\×JŠH0\Ûh@õ\ëÛ*Nt`¼\ÑJS¼\ì\ÅtBmÛ„4t›\å‘\\\ÊN9¡†Hð„6ÿ§ý\ÛÃ‘SBdžÿq…RV+?\ß\å£\ÇóòŽ»¯¥õ0\éÿ\â®SK\ÃI­r)ƒ},2§\äxq\Ô\ãj¤ø6+­‘ˆ\Äi©D­S^[m‡¯_\Ø\Â\ï\Â,Y\Æù\á%qº[G\à¨\êDý\ç=oS_\ÐR“v­F·¨™F\ì5¼ß³7s\å\"O’\Ùõ\'\ãGSh\Ã\ç\á`.\Ç!‹1e\î\ÓUG19rj<b\Ý4$\×US›,µþo¨5È‹\0ø\Û\'–Y¡\Ãb-XjQ\æ\È(,F\àSµ\é\ß\Ð-\Ây\â\ïq.´/v5ðAª\Õ\Ìó”üt*·S½õ1V\ÖD†›†FE\ÑT4f\È\ÊÛ\Ðó¹ŽN‹§Ž\áS\äþˆ\é„\Î\n@G\Ý\Ã\ãf\ì_`IF¸aQm]-÷<Só­°\í\Â\Â|·\ï ƒŸ\à|ŠI––2¤!Viè¶¦ASõÌŽ²[;¸c¹Ž\Æ\ÃCð\Z•E\Ì\Ò\Ä4­?6ó\ÐT	y^\â\n\Î\Ã\\\Çew\Z\ÐK\ÈW\Ü\årN©e/ð{\ß\ÆTƒ³Xù%°—¸\ïNu\Ø©§z~cÆ¢\ä¨C	W[Tz¶º1PW÷j=\Üb·\×Y\'ÇªtNT)è¨“{\'T*\âY\à»n›Zv.\r¿‰\Þ_©\"\Èˆ\n«)j\ÔeTTš«2·Ÿ?%\Éi\ËI\Ø	ø`\ÃV-½  ÕŠ˜¬tTV¹‰¶\\\æ-ðOKXÇ¯›\É.Å¹N\Ã\ÝÐ™Žu¡¦1^TY¨ºô£;ŠGVƒ\Î\\7´\åhW~\àO\\Q{¶\"T_þ \Õþ GŽ\ÜôlöyºN\ç2Ni\æ3¥ª\Ëù¤Tge‚\\PM\åŸüø¯wûQ{ki}‹‰\r¶i\ÂT“uõs\Éò)¾m\ë·\è[|l¦ô\ÅIÿ\Þ\\Â³\ZÉ¡mUT¥€Q¤<Jhwøö²ˆ)\àŒþ\n\\ö7<®Ì½¿ó\êG\\T\ÃñÿF´\ÓH‰QX@fS\á…õBŠ©\ÊDh8V÷I?T\í†w¸_±`zz\ÎvŽù5`rP®[ý}~3Àô´UËT\îÏ“©\Æ\Æ0.ºÃ°‘!ô’\î÷h\ËPŸ1s0ƒd¬Tñm9Á\è‹\â\ëŸù\Â¹­†\åv•·\Ý.x¸™•§¯\Ñ9U\ä9óŒ\îƒÁ\ÕÈ›\ZA\Ó=Cm„Y¡u\Z¯n§\Í\î\ÎU‚\í‘V«Î™õ­pWx\Ô\Â$”õ?»\Ì\äâ‡¼Pð½Uƒ€ôcZ’al(\Û+;ý¯\Z&¸E\"¤H³yµùLU04+@qj?™35\Â\ÑS£r\Ý{õÛˆR\×ú;ÍŽU;S´\È´\ìTS2.\Ë}¸\Æ1X“SH…&ñ\ê¼XÿE6™UKCW\é\ÂÍ¢/‘Z3Œ\Ç\ZÓ¶I²–qœ\î£\îÿ\Êú¿UW&k?u­nù.N±oÁ³\è^\ì\ÓñX®£\ÖÛ…5PUi<¶À§”òT	,sT¸\à¢\Ø\áa\í»6\Â\Ê÷¡VUl\Ò6>8\Ñ\âS\Ôá’»fu8‰º\É	q~À$r\Ã\é‡Um\ØP\Þ\ã\å¬g[6˜m†	e·c\ÛY;\è\â\æU}8\æŸ:l\ãÖ‘‘õ¶Å—™[³\ÎJÒƒ\äƒ\Þ\'™žgU”y‹Bºô\ç\'l;F\Ñ\â‡VÓ¸‰z©`|\nþ¾C1BmU•k\Ú\Z¨\"\Ö4™i`FVm†¹Â¬GXƒÿ˜‘i•EU¡\á\ÖÛ¶B—©?\âwN€ ˆ-ñŸôÄŒóm\ZÕ§•U­ŠM÷: Ý—\ÎL-^š)—¤½§\ã\Æ|\Ö;%õU¿\É\Ë\Ð\Èò•s(»4>\0ƒxŠ}ñŠv‘Xú*WR\0>U\Þ\Ñú\éW¶¾qPu¸U—T‡=?V#\í20\Âf\â~\\U\áˆòêš¬²7ž\é²E™§²EÔ¢n;é­º‡©9\Úô¢kU\é\æ­É§†kñ€)‰©€I)G\é¸55	©‡f\éR7Uð’ƒ”œ`Î›)Í½HE\Úl²#„ez‚\Ç†\í@‘D\ÔUñeDœ\ÞòDk\áX¤5\\h=,\è™U\Z˜ˆ8Zÿ\0\íUý\Þ.‹Š¤Xý\å}\Çb£Á,W²sfyyE•Q\ØF_¸Š[Vn.v&\Î\ãa+’“¯ý8\î³	™Ÿ\ÏÛš²u¯ðA<WV,©{+\ä¹\â¥x}-ø½\n uM8gý>,l»\Ûœ{TVA™\0×“ðÁDN`\n‘)P\Äk9ôWQµ±ŸóÒŒ·Å»>VK¼‰ˆ¸„a¬F\Õq©kùN÷\ÆiÁ\Ê7\Îº¨\å”P\îVX\×òW\ãÔ–\Þx€@*ký‹U?P•\Â6¼Ñ¢\"Œ­5V_Q•Z®ñH\ÎØ›¼N\\\è\è&IU±bóš‚‡\Z|\ã÷} V†¾¦\éxGÙ˜‹o)yõ\é†0\ã¿`c\ÔV‹à¡›\ê›\ËóJ[lu°¿“³Xkû\à·\éUv½\"PV¤¦™Xø\Ì\Ï\ÑQ”3\Ê\Ô\å\â\ÇL!h¼\"i‘\â#:@V¬žÌ²D3\Ä3\Ê˜>/\å\×\ÆQu`Ê¤·R@@V»\nŽÍ³wÿµˆÅ“ga\\\×ï€ˆ~J8w\àú…N:m½N+VÁö\íýEó\âI0uÀX\Ï\È÷­^\Ù@&\Ý2*ÖX\ÑV\ÇbqPJ\ë\Õ\Þ\0ô´¯?\ÕHý÷ð…\ÏY\Ö\î¦ððzVÎª\Z\0¨G7h\"±] c\Â.¿±°µ.Ì­I¶kX\ßV\Ôq]Ž5\Ô ð.]¡@Mù\Ä*\ÒuóÇ°bÊ¶DLJ7Vú>\ÖE¬€fw)\\‡Àú\ÔQQ.óH¼º¦z\ØÀ«†\r\ÉVüòk•8v\ä>KP€3‰X{ò\Ö:žlc@W”E&TVþU¸\\O ¡\Â\ë8°NOy¶!b‡¼´y\ïAv\ÇZW\r5’|”±a‚±U‰›‚Íˆ\Êú3(|¯‡\ßÉ“»kŽƒWÖªšø\Ø\ß2\×|\Ï0óN¨ÒµxÇ£YO24pW;ˆ&Žc6\ÇpD\ÂX]`\à¬gˆ—ŒP\Ð\ã×ŒU]!\íWeÅ½§_õÖÝ²:É}ú—@R\å\é\×W›Ð¸EXúWfC3®\Ð\æKu!\Ô7J!l7Ë¾\ã‹\Äb\êþ\ÈÔ¿£Whø?\áCexl}\Þ$\ÊÓˆOJù›c\Þ ®†_\ÈWsyWh‡aÏµºµ¨:[\"5a‚¸cQQt	€EõWw«£¢•R%\ÇG\Ã`{¹\ì¦\\]†3+ûG]l»-`W„y€Ó€Vª]@ŒaM\Ëò°xezE®h\ÛsQ¾\ågmgW†x\ï¤/4®¬\êŸ÷/\Ñ\'x/\ÇÖ‘ù-©°\Ø\Zzs¹\ÕyWŸ\Èoý5ÒRj\Ï?š˜U·˜£µZ\×(\ìOñ%“zW¦÷x…²·O\ãŠ`5\Ç\Ü\ç$=\á\ÞU>oú´‰„WÑ¾\rÀ%,½Z	A+”»uÿ‚8\Ê\Õ\×\ç2,gL\Ä\Z_\ÝW\Ù\Úw~¸s¨Ró8Q,\Ìq!´\èû\\s†Ÿ÷kM\åWõ9\ï,\ï\ÐP2e\ë!Xµ:™^uIµôVn›\íNY«³´Wû„}ü¿¤‘ 8.t¢f·\Øôò\Ð\Ä˜\í0\'‡\é	±Wû\Å\ê\ÓÁO}¢l‚eVd±\ç“Á`”Š¹1\Ê0bñ¿W@XX\âP\Ú¯Ÿ H\Æ_Ž÷0¾\ãNc\nZ\â¼þ`O\Ü\àðX\Z’¢?yv\Ú}ûÿ•ÿŠ‚hD¤.\Éå¬›M¡v)X\Z›p/}\âÿ\âÕº\à \r_\Â\È<\"ù½Ÿ\Z\Ò!ý}\Ë¥X(è¦”þ˜úù7¯‹™+N\ìb\Ù&1¹Y[; £\á‚X(ó¶fÿ»\â\ë˜\0–¾ 3J\Û\Ë\Ëm\Ý<\n%l\àr½\ÉXH\íP\ïpE\è%ø\Ð*ƒ+%‰…¼¾Œ¹t\Ô\Ð\×f`\ÆXb²}”Ì¿L‘Š,\ÙgC\Ó\î‘\îy~ý™eb\'ý\n41\íXc\"Œ«hª.½Aõ‹bªq‚œ\ëK¬Ó¹w‘_U@9Xp*-[\ÚDP<—V8±A#¯ñsAgS«»\Ïn‹cÆ½Xˆ\È\ÈÅº=ÿ )e×Ž¾Œ“.\ëx–’¤ipXžL]O}Fù\Èw	Vy\"§ž\ç#aq\Ä\"=º\Ë\ÇûrX¤\Å\Ã–e™$ž<qŽ\Å>”j…M÷\ã˜5Ì¸z>6\çX¶!¿wñ4ö\Ôð-<[\á\ÏE\Èù\ÑA\Ýb¥¤´\Çg\×z­Xº\È“PñŒI\äJµøpe8\ç ,cm‡\éÿ\Ë[›X\Ò}wÉ—\ÜþR6©7\ÛuM·T‚!÷¾ÜŸÊ· ð\r2ö©X\åxE‰¾KÆª.\Ö\Ç,lX>w{oy\ì\ßi‹%UHqAcX\ìÁrƒŒ5…y™…•¥w]jªÎ³Ú¯zÐ¶ƒ\Zô±Y£Eü»4¥˜¥³eð†V·L\ÊF/”Uk,¡\Æ~¢Y?cÀ*«_\×aµ)‹À\0|\Ùñ4S²tŠƒˆ}¹-\âÊYAD¯ÿ§]Êˆ”€xYN.¡ò\âˆ7l}ežKYBŽ\éRb\Ø-tsxŸcÿo®@\ÒÔ¾Pü\ÈÉ«YCÏ©ÏŸ¡$\ëpË¯=Ÿqj=hs\"\æø(\ZN\î)\äòYtmük9\ÞQÁç…‡0€`ý\ÄõN»š\Úi¬’‹\ïYð“%øFš„V­O«\åÁ‘‡cþ´ª$ûmÿ3½\rY›l5½pY=·«\è!\í\\^ox™>œS\Ñ\É8\äY¦-Y¢µ`x¦^.¹\ÝH#Æ¹/‚2 öÿ\è\Ì\×\Ý4üÄ“\ÊcY¦@µe£?\ÚW\\\'øl¤m\ç^‹9°¯ÄÞ®-›+\ÔYÁ\Ë\ì\Å\ÏiH\Æ\0¨\ÒU3$LÀž³$•žuñ“H\äsòY\à7É¡Ü¼a/c$Û®Š7\rDr\\½š.˜\ì¦ö\æFE\Ñ\ÎYó1n¥8£\ÆDo³X\äa0É«Á£\Ôq\èžp&E–Z£4r—ƒ½“BÖŽ“\Ùzn—Õ¢>\é \'údR\í\ÎZª›G‹\n+:P\å|>s°Pc^™M\"q\Ç\êÁ¤…\ÇZ%¤·4ù\'“\n\ÔCô\î`\Å\ÚZÃ³\Ë\å4\Ðcj¶/lZ6žr\åU—B÷!³t\éR³ytJû—I0+dI\"\î1\ëZWj\ÕI\Z\Âg*(¨T\Ø\n\\L´€br7tÉ€²\n\ÏEA\æZWr…ó\\#¹Í•	þ!¹^ltœû”\Ë\Ýð|o\ÇC\Ø \ÉlZ^¡\ìx ª «\ê„-–}©:É\\ƒ\ár¶þ\ÝòNZb)\ÎVlJ½…fd¦¾„¡Xò\Ò#lW @ W Z‘\ìS-ù`ó\Ø~­\çnV\ë•ž\"\Ò\ZUM‡T;¿\Âô?ZÓ¦8y\éi\ëŒ\Ã\îkP\Z3\Î\ÊÂ‘è‘Š\ï]›\è¿Z\ÐÖªÁmë–•—\"|O§\í\ÈºJ\×}^·\ê@“Æ»\åZÕ…‰ ú \ë\ÝZ/.\ë)üþ\àw¦\Î}¥·é†¶\Ö\èZ\æ\é-rå»’ö^Ž*`t6‡‘’§/Â“[<\Ïh\é\ïù[\nx…S\ØSYPåž«Bñ\Ï_Xƒ\Þ\ÇK8S\Ûþa#\æ\ê[\n\È*k0\æ5D\ëa˜4\Ì´‰\Öü±\á;\Ð\0/_–7\ãa[•&(Ü‡\0‘\Ò\ÉÎ•l„jüø¬G\Óúùñ·n[\Z$\ÝkË¹þ±\éŒd?‡\\{\Z¿\ÄÝ³g/\ã_,ip<[$ºr(À\ë´Ú›€·\îœ8¦tbMq\0>¦5ðF[5—µ4(KL9\Æ&-k‰ÀGRK$\Ã\Åz,üb6Fpù\â[8sþiõ!Žµ\È@¯ë®{\ÍBŽu$fþ¼‘ò<[B¥ÿ©\Ý\Éû<»s™©*\Ëù;\ÑÕ¹C\Æ]+\áƒ\Æ\ÌSŽs[Dþ\æð\npðh\ÙS\îu¸o9†a`\Ô\0B,\rûi[e2·<þwöt5¯H\Òø®\ämù|ö\×Û¯x#F\ë\É)=h[e¹‡¾6\ÓS»\ä\ë\"„»“Ã±¦xakAyR[t;}\Ìn[¹¶Z¦VL¬Ÿ[¦¾qT\Ãu!\Í\ï\Ë-.ü\æ[uŽ#º\Ò\'þKF}ˆa~\ZY·	1\á\ÛóžL.¨\Ñpû[[8Œ\æœ\ìaýkI©€¸\ì\é%\'žn©€&\Ôù \éG³[€)ß‹\ìT0\èuDWP\",L”Ç«[­I,Þ²Z²F[–”%y¼KR¨\Ñ\ãb6\Æ=F\\º\Ã\Æad\Âû\ï¿\á[˜\É\ß\ÌU:ËƒVNû:‘Oˆe\àxûÎŠ\ÔJ/Z[¼~œK\ÆXé€‚[\r\"\Z,À3z\Â.\ï‡S\Ì\"¦;r[£\êÀ\n)\Ð>l=\ÑlºøVƒ\Ë;O—w——~ €º[©žó¾f\'TOT¦\Ý\Ìeó¨¦f==º\ãœ&\Ói[\Å6\à\ä\Ò;]‚\É\Ùqd¦\ä\ÝJô\n}Ê‚¸É¥¤D[\Ö\à\äyüV…´ |‹t\r\Z\Ðö/]X\\m$ý’®\ä\Û[\ìÈŠD1V•yEˆM	š¯\âe\Ì\È\n~%U\à,¦+ž\\É­G½Í«…¢FøV6BZµ\å²\ß@Ûª2XŠ4Mw\\Jt.¾Nû\á\Ø4\0ƒ8\Ú\"†\ØÌ¥A;(R[Š“l6\\^;\×ªh±z{‡»\ÅaT¯‹B†©™ó{\í`Èµ\\s\Ìqƒ)“|\Ñ½\ÖIJ<Í§,xLI2[Kö£\Þ0\äPd\\x¶c,û\ÄkŒWbžŸaÌŽ\ß2©\n‘•[e]\r\ÊsJ\\|\æß¯\ìT(tÿ2ý±\Âˆ…Dn\\£‘ý\Æ\à3 \Z# \\ˆ#G7€›‘ø1¥°ð\0nXs°d÷\Æ\ï\É\ÇÁõ¶\\”ô?¾§œ•B\Ú:\ì{Ó–73Âš\ÅL·Î”Jð\ß\\•283=}f.\Ù\Îp{\Ûç£¨Æ­:½¼\Ómd\\ŸA‚RZn\Æ9\î\ìlr(Xùu”O™š\æmC\É\Ù\àœ„C\\«_{ð”\ã[Á‘G\ÛD\Ù%”†¨@Xºo[tOx1¥\\±”ÁHODÄ¨{\Ïd}d2\ës\ÃIƒô1eO:´yÑª€±\\ºWƒÉ¼‰SW\è#6+2º}O}|FT±\\ÁIŠ\r\\\Öµ$ƒ\Ùm]Iù„Eÿ\Ê#¶\Å(\"€\Ôsc­1„.\\\âlCøþv!\Û\Â÷BŠ§wns\îÛ˜%y\Z·©Y(\\\èó±ú\Ú˜=‚0ƒb\Þòœ©²‘2Öšÿ½ ”`sTR<\\óðŠÿ3\í“S\î„R\ã\0»Nò´\ØE‹u=ß˜o\ï\í\\ô®y›T{†\Ì\â³ñ›\ßM\Ú\åP“u|)?\Û\0@\\\Ý\Ñ1B\\ùžU6\ÎÓ¡jÝ€]bzÜŽ6\éx+}\'r\ì\Ë\éÒ™] \Â\Ë|$\ä,bEw³¬¯`&uI\"¹5…\à`a]\ÑF’\Í5&ôŠ\Ù-]Ÿ´¿V4\â\ÉdB@Fõ\ç£])…S¨w\ä\ã\Ý\ÝM\ëUÕX…ú¢Q\Ô=‰X—|ú¸]<r£ºÖ½¯ÿ¼\Î4\Çj\n½¨\ç\ãhNR‹z/ž>Àú\Õ]A.÷É¤…ýô‚\íz\â.\ã\ÒjŽ¸/z»¶µ\Æþ©ù]H½¾B\Ú\Ò\Ü	\Ím3\Í\ÝüùÑh¢ªÜ¯0x!ek¢´-]Jý\Æ\ÄøŒebU«§f\È7b\Ä^p3KOFÜâ¼¶–•\ç]NqýCðN­¥ö\ÚÙ“\ÑÔ}~\î<aõ¢«Áûð¥\Û]`~$‰¯˜\ã¨mg[\ØK\ã5\ÈNœd\ÃjsišR\ÍF]f\Ã\ÝCŠø¦-\\Oa+ë°Ž#i4þ²xš$jK]¤\ÈÉ†\è¸\Èô‹mÿ{ùw\Ç°#ßŸ^\é\É,nŒ¶´µ,>]®£ðFHrP\ç-s“òen|‹¸Xq\r¦mf\Ù`\áyù]\Ä\ÚC˜¡Å€ù¹\ÐPy£\É(\Ôò\ìc\Ô:C#òŠ8ö·]ö\à\âvY\Ó\n‚uŽ)Ÿ\ÌSEEõ\\ô>A˜?]L”V]ûµš\è•r¿¿6|©\ÛW©\ä\èŒ„€ùw\'\ÎY]ý\ÐÀ¡øV0¸\Ç5,ùMÎŒ9\Ïn·rDUu\ç7]ÿ%hqO‰¿\ÐšÝ¦ú\ì t\ÞqÀ;+sV1B„\å\Õ]ÿÀØ•¨\ÃYñ\'¾Tƒù\ãÒ¹0­ “P¬=<ûû qš^\ÔÁT\àÈº^\ï†‡Ä·>`}j\ÊNG\Ñ\\\'Ì…^\Í>\"Š5\éJ+f´¯iª7h&CöÏ­X»±2þ\Z¯K^7qü²ô°Ud>©V¹N³ õc§\ÓhaÀ‘p9k<^>\Õör=`œ¾”³·7«\Ê\Z\ë–\å·\è)¥x\Í\å^AG“œ\È^\ÝÀ7 Í¾«\Í6`\Ñü*þ$^¹v„\Ï\é”_^J\ã\åp!ù\É<“ÁÊ›Y\Ç÷–©w²½\nþø)l^Nbu\ZxÀ\'!T¶\èþ¡8\Êo½\Ì	y›Y|‘~•C\'^W;s]\Ø-4§¯\àV€\Þ8´4¦\Æ^ƒÍ¼º\å€,i•\Ñ^g öK‹\Ïc¡Z\Ý0\ì(\Ú!ÿ¹~¾zW\ê\":Nž^mþ\Üm[\Ø(˜²C\í«,m.^ü—v‚D\Ý\ÒG=ms¨v\ã^¦\ßœƒ\Ã\Þ\ÌÎœ\ëºÈœ³5y\\³\Â\ás\ã\Üü–%½˜^« ú\çªq (j— \åª\0Iù–f}\Ñþ\Å\"l\×ü\Zm^·:–U·›\Ûr¯U\ìÐ¬\ËD¿UA6Yf¿ô€Cb^¸•U§jx”·{–Ÿ+\"&?5¹Y‹pÑµÿD?¼\Î\åT^À\Ü€\×\n¯0{zsŒ„>Nz\éœ/\Ù@ó6\×R^ÌŸø¯LG›µZÜ¯Qñ8VŒW—…9\ç\n¡Hb2^\ÍHR7\Ô-ŽIAœ\ÄÃ¿L#\ç~{¼Ú†•ø\ÉUÄ\Ú~\Ù\É^ÝŒ)®n¶T\áh):3\"WjEv9ˆ÷\ÆNnZ-mÑµ\ËK^\äPºK:¹`X‚¾÷\ÂY\Öqp\Ë\ËI»û\Ñ~µ^\éª\íe2¾Œ2eD\Â\Âú\r®ˆ\Åú/Vøñ½q^<,\×\Ù^ú½\Ã\îø.\ß:®%5)4N¨€’c¶j,\Ö¨6|^ý×‹Ü„úyiT­™W\é¬ažŠóD#¶\ÌFu–\å†\æ2_2ö\Þf\nw/Þ©¹} \r¼<º\à\Þ8Zûµœ$„_\ã¯M7°\ÆÄ˜Tf&%Z”©€1€Ÿ\à\ÎS\Å/ð-þv_|B\ØO\Zß­/B\ã‘úlk|™S|dÇˆhe³\ÝP\à_,\î\ç\ÎaLO\Ê0lÓ”B\\ƒU²{ü\ïE¹r§ó‡¹@4_-n\Ü2zYfy…#†à¡–VP· M\È\"~ý_^¦›_=>7b\á™\n’¼6ˆhé¶¨Pj|õ\"ˆx»h\Èy_?¸,\êþÀI\àˆbe}\é\é8\Æ\\L\ì£asŒ\ã·/_T_:r‚c\Ðöß˜\Òs\ÌN\Ì/\Ý]\é\nð¬{\ìz–J_du\Ü÷A›#fE£*„.\nn9í§žT\Z\èÁ9pYbXˆ_lbò®¥R¸,\Ë\'«´ôI°hže‘œRƒ\â\êD8}H_o½µ°YÙ±\É\ÔRQ™¬_}\ÇGJ1m„ö]\à~ø_8ó»@ô«zdf0p`o\Öqq\Í\×U:¤\Ç_˜\È7Q¿»«0²W“\éƒA‘-@\ZC½§T•M2‘G_ž\Ø½™•37~…œq/j¤ž\n\ï„\ï9»S\Þ#s©_±«Õ”J´\å¨\nü\ÙZ“Dü¾.ªs½A	1ªd Í²_·\å6“4	šƒ\ÔP\í¬K_\ß`¿\ÖIË¨\Ü1?\ä§\ÅL_¸ùû±%M€SK¦9À$yˆ\ï«\Ã¶\îgŠ€„‘_Gÿ_\É$@\"¡4](\ã\ê¥XU¸jÄ³f«´Is¡òŒÒƒ_\ÕY\ÕUsEÆ¹T\Ð4qP˜\î\åŸM¾\áDS\ÚF>Ÿ\ÊC6_\Û×›?&mž½H[¹JðR“¨c#ý ¦\Ùœ¬M6E‚\à_\î,@\Ä\\Sµù7\äl¼o\Ñ\êF\ÏP\ÛþTŽ\ë\ßÞ¨G9_ö3Ì¥\Èþ3ý\ê*m	¡h\Z¾nM·¯² ñ\Ñü\ìñkX\ì`Œž>:‰ª6Ô©f\ï‘™±	øÂµ\ê(õr£\áP`·>PÍˆË™À$I+=¡Æ›0úµt‘W26Sþ_¦<pH`>´ÁNgñ¾–K)\Ò\Ë\ã–Âžˆ¡p&0L@e\ë\Z¬`T¹°.õ|	ÛžÄ‰©[bTœ\Ú\çI¬ùŠŒœ©¥ˆ†÷‚``\íõtD;\Ó\Ðùµ?^+Ê“5m\è\ÑPþ|ó&`{óY\Æñ¤h\ÕuA²lT­\ÈN¥-\ço\Ârg\ê\Ì\ìþ’`‚\nÁÿ\Æ\Í\äùR ]­›s\Â?šI“di#®8Gp`ˆ¦ºhsþ€4DœU\ëž.f«ˆ$™»E¥a\æ<p[\Ò`’\í§\Z»¢\Ó>f”>\à-\n})€\ÙÞž‡®\ÅgGK\Ö!`Ÿ\Ë!\r;^w°®³\ÄjMRU\"&Ý»IžÊi\í<l^H\ï`«=\Ø÷\ÝI xŠü\'\àuÿ\à\Ð|¤\àÎ™K«ˆ!`±dIUgQ|X™!\áfÀ¹~jŸm%‚Zöª\Ð\Äp–`¶r±½{R©.1\çB•iKk)Ž\ß¦5M”²µ®\Õ`ñüS,ÀÐ«…=\ê\Ê3\î R=\àhR1\Â\ZöM\â„$¾a\\C…›\äÒ‚–L\Ï\ÉnôU\Ë[þÜ ý{\'‡Ua\n‰U”\Ø~®šžX‡s˜\Ç\\\r>\ßcf\"òó®a£2>\î\Õb\çÀ[º/Wó‰–tz\rl´yÁoùU€da\'Œ\ÂÉŽ¯D\Úu9MJµú\Ù5u|Cõm¤FhS¤¢00•aC¸\Õ$\å¢qas©²6[`œšuŠ\ËÖ“À@W]-Í§aw\ÌAV\È \Ø>[÷‹GA•§I\Z\ì \Ö\â\êcr\\l\èaœf\ê˜K¿¤†ZX~ºÁýÍº¡¾3ûbŠ]L¸<7a \Ç+J#\àÿ\r/_\Ì\ìT±QP\×ó‰OŒ\Ùl‘é½Žl?a¿²E<2`\rµ_ˆñra€\n²\ä·{!¯’{‘½™QØ¯aÁ²¾µ~Í§•žZBvû˜Lj\Ú*Ahó* ƒbÀa\à\è³\Øó zCå±…ZÝ€œ ¼;\ë4ˆr=“Î˜|­a\îuùYò•]ò˜\äiZÜ¤O”\ç	ò®U\Çh$»\'©aö®\â\ÝDˆ¦Ž¬\ÃmE–˜©RÁBt\Ô\r\Ó?fQb\rÀ“C?ùD†¿÷K}\Òú¿—y¥/„\å;|MñT$\è?ñb-\é“a?Œ<ó\é\Z-·®\Ì\ìr\r$úø¤Z\î…|Y¾\nbGŒ03âŠ¼š\Ò\rQºQÁQ@„vIƒF.3\íMÜ²%U\ábJ’m-ý¬Ê§\èý\Õ5\Ú53P#\ÍA{¸Ž\á\Ö6ýù\r54bP9\Ð\ê\ÃúÞ¤yP¯\Û\åg\ã\Ñ\"\î¬Ä˜ü‹\"VÀbgB—xŸ\Ë\ÍÉ–)#\éB•„_ùu®ñõ©¨r\Ýß®+b¹ýW\Ì\æ·(öŽ›: Œ|\ã±\×[\ÚKñ0°bºK\çõs\Ém„Fd\åAÁ\ëÛŒ‹­›R•$¦	ü³b»bµÙ²¥J®4k&rÿ¢hX\Î+\Äv\×ýOt\ß$ô\ìbÀ²0#Ï¦\í–¤˜A*>¸pjqœL*LN*\Z4\Ôb\Ï\Ì\é;•±Ø½\Þ\ìw\"ŸƒS§8\\z‘\æð£©}\ÒN0b\ÛQ†\Z‘\êB£\×ZQXNT‹6\É\Ï\Þ{’¥hB\Üq‰b\é²‹ôˆ€®9©\Ü!½\ÅX±ø€:\r3_:\Æ\É\ãmcbõ’\çq²\áqú[˜°¦\ç\ÓJs\æØ¢_~\Å4/ \É`q\Êb÷pü\Ñd\î^R\n§`	¿=dA«c4´eó\çñs,c#Æˆ|Fúw¡J\0¯`w~Á^vEp\ÙûLÁ••Lcð¾KÍ˜÷G\Ùñ| \á÷ù÷\0\×wO>\ÓW!’¾ c¿\Ùú²Œ‰:¸\Î\åUe¨\ÓH CÁB\")SƒÎµ{\èc&ÿ\ç~L‰Rt j>Ú¯¼¤\Çö\ãñE@>\êðÇ¢`\ÂcIH1Å¨’¥?ª‚\Ê\Ý\"Šû= \ãü\n·³w\"\à{°¢\ÒxcS¦g¡\î±úy(\Î\Å0^£\îðxŸað&[ò5 fc`G¬‚\Ã\è¶òÙ¥\çT\Üüó­~z¢™F\É+\ÒUÈY\Ú,c­´OÿŒº`H¸‡\Ä;üÐ³\Ã\Ä\ÒCe\ì\ß]Ï™²T¹c»9®×›ŒaI\âøaX8\rr,Fü\"\Ï¦\×C2Sy‡c\Ñ\Å\Ð^\"†ì¾“\ÏUŸ\ä\Ûa‹?ø»ªWSQgb»É¡\Ò‡c\ÕHo¦›Ô“Ä±ðÀRUó~oš\ÂÏ³,\ÚPÁ)RWF÷c\éª®jÞ¾¨‘?ûl\'ò84\ï\çF=/3;6ª)_q\Û\Øc\ï.sH³\á*\Ù-Ø¨ö_\ê:\Õ\ä€À%–;R\'‹KŽ„\Ñcû\ÃÊ—ú\Ï’ BZ\é†\Ü7\Ã²\ß;_\ÌZ–ev‹²d$G¼™ûjw}XX‰yu2\íZ=ù²Io*\Û6d/e\Ü\\sý\ÃSø:ì§†\Ñø„$fl©²m\Âo\éjd1ú3ù\'mœz\ìU=&Ùª$\Ô\Ù?tõ\Øó×‰$ûh\"wd5[\æ&*%ô\×\r\à\ÛG²Œ\ê8	òpS\Ó-ì©Ÿq`97dBÝ‘\É\\\ÙE©\Õ\ÛgEÿ8\n–·ò¤ŒÆ±z\\\rxñ/§dPâ±±ºø¾©X.]\â\Ìó9\ÉF\ÚPž\áö+‹„zdWŒ\'MJ¹e\É~vx\Îh{\Ès_ª|qúa‘Ý´º\ÆeÍ¬dc\Þ3b½[·]	€¤~?;\\[\ÑXk•™Ð—ºŠ`sdf/–\ÈdBl›\Ñ\â\çÙ‡òPú›Q\Ø=€\Â#djq’ùe^\Â1wK4Iðnt\åfVC2÷¦\çþ2@qòdr\\\ïƒû=\Þy‹Z\Ð\Ä]›‹¯¶ù.\×É±\Æú\Ë d€|I¢m¡\Õ\Ût\åPžòç€¨þº9‹\Ø6\ã£|dƒ¿	Y——\ïƒ@@›“+¡\ÏŒÒ“g\èÊ>$/’\âd‘Ìƒ\Îð\æ‚qx?’\'?lí¹J\ÞkúS\Ð#\ß\î­\ßd¨”ð¾IX&Üš\îs½!µ,\ã\Ë\ç,\ZVwYL\ìd\Ò0\èÀ±(ž\î¸œ…Xð}v–\ï·`ñ\Þ\"d\ä«ôW\îi\Ûö^$À£Ÿ\å\ÌŠ_òµf\ædòri¤\"—fvxœòÊ…Áe¶K­A?Ž²¨S\í2ÿdóNûWN½VSCÆ¨!­\\K;e!£…\×\Ù*T¥\âdüœ·9¬¦œ\Ó0€2‡\Ó\Ëÿh,A*ÿ¦;3OŽA¿e4¤¤ÿc\Òr}šcÙ¸eK¿WC÷s$\äXgŸ\àˆ-e5ˆkyHµ~¢„¥­^}ýô\\ ˆf”‡#´¸6\Õ\×ôe:iKû p[“ó\Ñ\×\Æ8ñqB\åQñÄ›(3”–eTm´?˜Uy7,’K\é\r“ˆpSU\ÈÀ¯n¢8Í·@en±R.	OF\æœOX\ï™Pú\íh“¡\ÜYC>¿W\êe›YöÌ»Lý\Çþ¶s{T¾ª\í=B\êrvIFUK\×:e\ÌEB	ª¥¦Lz®t›¾=\ãFœ,\ìfa§‡Z\Ä\à{­’Ô²e\Ö\ßJ*\Ù\ÌbV†,Cv¬b¢Êƒû™Pµ~…ú‹$eØ“î»¼„\Ôr¯JQ\×(¶O@_\Öy\'§+\Û*&w²\Ð\".e÷÷\Ób|(G½\Æòª\ï\Z\ìªrK\Ã\Í<ºœ›7ñ\É\Ç˜f=E\Ä\Ü¨Yñð\nò2ƒ\Õf\ìVšLˆ$/DE±\Ý\×fl/\Èio\Ö\ÃV\ÛL5\ärp¸HÍ…Ñœ5!\Ùfpü0U\Ç~¿‘½Æ‘\Ú\ïœ]\ãf›O#•iU\Ì|dpf1\'¤ó)UŽÉº‹O\Ê+\×pñ\â\æ‚ú‹P\r\ëkšÎ¶\èf?\ä‡sÓŠ\Â1˜˜‰@cd`¹\åûè‹²\Ó÷6ü\ÄfS¾~¯\'h‚,û’P.E1Jþ>3&œú`Bù(ú¬Lfb\"=ü\Âg½.›\ï\ê>ð{aÛ‡aN‡¸l;)\êO&a,Wfh \ÅP1ÂŽ8‘jIUú\Ø?7z\Î“\Æjþuº­+j(>fo\ïr\n&Ù£\Ü/	–E.“F\ÞM\æü¤\â§\Ç_†h‰°fµ9ºª\â\ÈÈ†y‡7”\æ\è,W2ƒ)ú©[\ì\Å*\Êog\äÓ¦\rúW:\íPžy\å\È}p!\î;•\r‚žc	%¸,g-\ïÐ„\Æ\è#h;>–\Þ	Œ|¡„£3\ÍzB\×\ËVøþ\çûg6¤B\ÂNpüúý£&\á\Çþ\Zg¬q:\æs¸d\Ñ\Ú\Õü\Þg;74Ù£·eZ\Æ\É=`7y\Èþœ®´!üuT\é9V\Z…gV¶|ÓºgaWo\ÄE½žÿ\"÷{QùT\Ê\êS{>giI?F]	®{¨°\Õ[¿Î•ù$¹^#Š”\Íž\Õd	g…Aôk\Ð\èD·«	€dB§(9ò\Ñ\Ý\æ\ÂÔ½\â\É&·g‰aóaq®$‚œ+q«0k+&”´\î€;\Z\nl$–hgŽ%b]Zjùd)²¹-³ŸpœF\Ïþú–jŸ 9g›\Ô\Å >º›À0®n)³\á´X2´)‚—\Ê0?8óòy\ígŸ¤\Î\ê\Æ>”º Ù—€\×Y‰— lÁ\r\ï—\n	Pm¶Ag =‡{wu2©œ\áªx„’šµj\ä5\ëˆ?þ¡›ü\Ïg²;a\ÚÂ¿]†X±r\Æ~·\îö\n“t\ÑÂ¹ nø¿29Ž“g\Æ.\Å$óo8qµ§;Z7tz?À‹\Ý\ÎÇ°æ»¬Ú¢\ê+gÎª\î#\Û\ØK„’Q]ˆ¸÷•\n\í44w“ñK£ƒ\äg\Ò\ÑH\ê7\ÝI€ÊŠ—|¯Hi\ÑÅ³lCÞ²\ä¨»g\Ûgñdv|U=ŽD²FB\æ;³~\ìjZ¬f\îœg\àÓ•W–…š\íÑ¦ð\Æ\n[Tù\nuA[z­\âƒGzah\r\ÉÊ’Û©#j¶EÀ;Õ«\å\è\íû}Qe-‚6Ä€ôCh\"“n¿§9ü(a\à›h‡Þ¿\Ç\çŠ[ŠGQúˆ<\"‚h\'€+•:\ê\èu°gƒcYc\Ü\Ùg\Þ\Ü=\Â\Òhh0zN¢™\åW:\Õ\ä\\j\ë\æX½%õ…@\Ìf‰;\ÄhBkD]{•8‹\Ã\Çhªº\á~-2q ®\ï¼Á\àaZ›zh\\´¢¦|qA\"÷®_;^þ¯g‹\à•cw\Ì\Î\ä›\r{Ph‰…\í\ãÁ•¬÷Z}›‡\Û‡\ßb¢„ú¾\äÎ”\ärÓ>\×hºh<g\Ô\Ìs).ª×–¡ª¾ŠW\Ëð0¯xZHCD\Çh¼]3\æÀ…l%Y\æ+¿‰!¨‹†F«o^Œ=•\ähÕ¼o\Ì8u\Zð:\É8úN\ä\î7 IM!\ì\Z·l\Ôjô#7hùp­S€=T_k. \æ>òU\ÕC\Öm\ÞiV½\ïhû–1Ÿ\çp¶\îFº)y­dÊ±¨vNyN/¹¨>\Éu‚i\Ôrõ«\Ù	§!8¥»´©@žD\îa¾E„\Î{i+;Nª\à3\È\ÇÌ–± E†\âÝ¶—Aä¹´¿\Ê½£+i:ˆ¡™;\ÆŽ0™$Pvû‹œú\ÎF\nSpô2\×Ö¹i[-Rÿ[½¬4œ\àœÌ ¸/IwF§\ÑE	U\ãUx«\Êi`W’‰Vdšü\Ì\ägz\0• *\Âœ˜¨Ná·Œ^\à\âeipZ&\Ï\Ðû`Un\Ì$P\é9½xA	‹Ó‰Ä½ü\Õ\0±iyHˆEùÑµ3EŒ\"“÷:\ÞL\ï\rXŠÛ€,$|u\ÄWpi~÷·ô­†::lœ\Ów\ÅË‰Î¤Õ«\â8Qði\Û(½wAi}eP³.P|S§[wˆ\Ê\ë \ÈW¥&w€4ƒŽxi’\æ\ìM\ÆW@žUû}\ßP—O¼õ\ÒO„Jjƒr4\ç\ßM_E{i“\Ô0“yN›¸G\\8\á9ƒ\'¶¯1+8*Hdi£\ê¼iYS’\Ê\'’ëŒµ`R\ë^˜„¸yœg4i±n\"}„VŽ»u©3)!Æ«\è\ÈúZÏ¼~\Õ\\C^&\Î$i²Ê±L.1©j\ÉužÀ‹\Ç\ì\é\Ñ0šuý\å/\Â&ñS0i¸ý¨\áðv\Í*+¸ü&\Ê&@kM&Q„\Ê\ÏÍ’iÒ›o¾\â\ÃõH÷ÓŽ¾J1ü¥½Ž¢À„\ßpµ@ti\ãt.%´-\Åx;\n—>rý#,œ\ìKñ+È·i\äcõ\í\Ã\'Í”Òž»>™\Ï:‚”2n²Q š§n‡^Siøh0=ú£\Ú]8Y«E\n*õÓ½ž¶ºÀns\Ñ\Üˆjh\nÑ˜ \ä(€\á&ƒ„£E¤¸¨eªI\\\Üs`|j¼\Ý\ÎS“\×\Ì=£s\Êòï¼•Ì¼*÷¯a\â	Šñj!þi‡¯H4\ÒÁ]ýeL\Â8žð\r«\ÑS™l±\Ècbj0¦‘4\à1@E»\ä©X»<\Ù\0µ\Ò+&ŸYj$6g¶Cj6vtˆ5\år#gAWFÙž\Ú\Å\Ï#ñúY\ë¶\Å …¯~j<öð©	Ñ©*$\Ü°*s£r‡M`¬ôeÒ‹!ƒþj=\å\ë8P\ã™N\Ø\ä˜T\r˜†]L®®\é\Æ\ÙT\ÝC\0\nòjC,\æU”Ma£\ã¦\\kdD\ß\Îwî„i°Û­²jG\Ë\'\æC1´Kðhû‰b¼õ*|¬øü¦YF¹¸jI\n£&U@š—”ý\Â\æ4o=±Ÿ¹ñw|x“Ó¡¨ý^\ÏjPV¢Ÿü]\Õg„Žü2LûRSlwµBq\ÑK¶¢’je+=ËµhO\êd\n:t÷˜©(\Ùþ³„Ž\Òt¤\Æ%¼1¿j|TT˜ *™·ð\Ý/#[¶ý;\ÔU[©B?,žÜ¢`5j‚Ÿ8ÚªN9\Ýq‘¢¾’†› \Ø9\r¼D@ñfTUj‚\Ì\ì\á4ûCu\"\ØB(ò³7\Ù\ã\rX \ÄF4ŸušNc\ÒÃˆj†\á\ÕP©.ƒcHqóI<\Î;wœhB‹Nb8\\8cô\éj›­	\Ö¶\Î\Ð÷-òŠó%Z²L9I~xmHŒÕƒ\×jo‚9\nÕ ›Î’y\ê‰[²Ž1	\é—ôI\É\Åª€¯jŸ\Z¢p‡£ûISñ\ÅbÊŸ\ÇS}\Â_\ÆVšÂ•Ã¤†j£œ&Z“y\n\ær[¦„!\ÌÄ‘Ö‘Iö\Â\î}	\ÛI+§j¨~Ë´nBA¿\Ã-¢\ÒÔ˜FüO\ÚZ*\Ð\Ô\Õ3yA»^jÖ¯cÁ’Q1\0Fo› fyHŸDö0@)\á„C\Ò\êj\à–]I\Z–\âKxzÕª^«ˆ\ê©!bu™ñ°jûö‘A´\0\ì.\ÆSøhN\ê}×•FŠ|Y\ÌE\Z>\Ñ\ÅN¦\ÈjýSwôK–a^\Ã&œŸ\Ò4	®ú‘\Ü\îtB»Û¬ik¾i8½5{ñ¨?}©\Õù’\"!¼‹AW,@z\àˆUk¹lq\ÇUsþn¶…3\\}%2¶?rz\ÅB‡Ì²ú¡\Ü\Ók2©{z\å…\×\Ð$µ\0+3´›\éQÓ‰X\ÞË¼£ Pþü\ïkH%|¤Qe\ÔH¢z\rY‡o•6Fp“¤i0[²½ç¯€kN¨IPóõ”\Èõ-\Z7}H ‚ŽDCú;®Î®>£Eˆ\ÄkUM\à,¹k–EH+‘±y\ë\ÏJvöyöPKÓ¨ó\ËÀ­ƒe*k]°^‰‚=®\Þu\Z\í¶;¾dª\ê2·Žú\ÅkøX\Íóµ\çD\'w\â£÷\â…MõÿC\Þ\náŽº\'k¶3/Bþž\Üó	ßª\Z”pó\"\ÖJ¥gžh³•»k\Ó\ä É·dZ¶qNÐ›¯\Z\ç,²F\\\å\È\Z\íD+\ï\Ók\ÛU\ËÛœ[9Ø€jóL\ËÀ2u¦Á9\ì?u»ñ‡£k\Ü]ú\ë70T\Î\Þ­q§½•#¯C\Â\ÃÖ ™Ò²0\äj‘k\â¬Zu”\Ð\Òð¿‘\Í,†¹=\'ž\Èôö®Ð¡Ç—:Ì¨kïŒ›P–;\åòÁ‘’N3p\ì\ã\ê\Zxq‰\ÏRWö¯\Æl„š\åÖ»qS)ö?¦ô\ç¬\ë\Ë\\ZÔ­„”Œ!†?l\Ú¦­”\Ýøñ=•Q¨>|Z\Ø\ÎüÉŠ»ôô>F5Yƒ\Ñl!‹ƒª}[z£móª§¥\ç\Úü£W†\Ö#	±\Ú\ê\ZlLU[«d¿g.\r•\Ä\Í5\Â\îp\rQ±‘€<ø[«vr0l_](7e†/ª\è\Ñ6ü¿d\é\Ú\Î\Ýp\ëÁšk#»lš\ßH¿€\â\ìñÝ‡\r]0\×$õ{ø\å	%O!\Ñ\Ø\Úl¢»!®\Ýö‰¶Oõ¶¯\ïeuyM\ém1«\Ë/³ól­­K$\Çs0FP|P\ê\Ç\\\ÛV¥S\Í&6B«=·úÑ²ŽRl\Æi4ì¿¦¡rnµž±\Â\îu³)K€jð¦5€\æƒW	l\ã\îˆ-¥ùCü\Üj–·Ø’¢g\É\\°rÄ¾Ï¸CI\ËClùaŽ{!h\ÉPw{\æ%&\Þ\Ö\ÊY0\ÆŠÒ’ƒ±|tm\0‚\r>œÈ‘\ÕOv<\È\Úk¡a£e\éCñƒ\È\Ôù@mò\Û\ÏO›]^\Ë-,¥qsr°¤6µVø%F²Ú»\è£\ãmeÑ‡_\îúTG\"^\çjU@ü\Ùs=FÑ†ú5|¦›m\rXC\Ð9S\Éguhö¦~¶\ÞRkYme\è\âý¯mN Œ\Â\Ð\Õ\nTm\Ô\ß\éG#Ð˜·\ã}‹ZšYÕ€\"m9¶­(Ô¼ü“±y[³EA½”óš§IÁ\"Be]ñm;Aý\rd\Ô+\ìõ¹\é„j¨7\á\Ë\ÕýqNý\Óy	Àv\"P÷m`§\Ã6ë½©©\Ï³¼ú®%ô\ÚHj®\äl“Ì¬?™–.ml´’›ò|\à,Cº+\èIbI$Ó¨\é¬\ZH„Î£^\"lQA\ëml\ã§ÔŸ\ÄB:»ú‡,¼%c5iN÷›€9¯Àmnm>ÞŽ\ÙQQ0\Þ504|$8÷\Ò]W¶p_\Ù\ÆLtsm|i)m`mðI}IdKj+ƒ9›VöõÍ€jÁ|,òÄ¥m~<]ŒxLñò´1±‹\äA8•z˜\0†-)@Ê…øm‚£bO-\æ7Â°™O¿a$üLÁw?þJEQU8m–oyfrG\Ý\Þ\ÚT^5\Þ”ó\\kpð\Ð0ˆ[*!\×\èm˜v<\íô.K®“	1\\¸ö§ WPµ\ÏLùˆŒŽ`\Ämš×©\Ùs]S7LAZ&<\ìì„–³vß‚\È\ífP¿F¤mm£G \Õ\ê \ËÂ‹=·Š\Å\âò~\Í5OURD\\Wq–\áe\âm¦ØŠ—„}—ÀùŸ¶\àBP\'|{M2ñ÷g\ê×‘Y\Øm¾­M \ÈÚ½ñÝ©=F§V\Û7­R\îÍ¶}9½dg=m\ÚÓ¥\'“éº™RÒ€ÒŒú*zú#:³\×ö,û`$\âcm\ãú`ek}Ã¢ôˆyF¾[­ÿöu\Î\n€e›˜²²³\Å^m\çÿ¥<F¼h\ävú%EÏ‘1\Ò^A›Ô»\r¡”mö“%\å™Ê„\\ûˆ\Ë[<˜-N¥Ž–2û\à´ER0mý¯¸ƒ\ÉÀ\è»jš\Ñö8tÉ—\Ó\íKü\r±¶»?\×G*¤znDs&UñC”\Ôƒùn},­\íi\í\0võ•_¿l\r³\än4cyp¶¿}´\í´%4ø¹m‹b&+uvB\Â‰¨n5\Ú\ÐjÂ†Ax3fL•{\Ð\ÃÁ“÷\éiÆŽ9¡nB „%EÂ¶>\é9d[[}·3\ä¹+…hl_›nLÿz\í<\æ\ßk\ÞÉ…7€k-—\ZA\åAD×¤\Ñ`(2nZŠ\rc÷ %\èmG\Ôò\âV–@m\â@vT\àûIJ\æKn\\ ù¸§\ä/J\ß\Ú-+\Ô\Ñ\r\ÎX*JŸ¥„iúHndk\è.\ëCz]\É9fi0\Úñ\ÞjÏ\'Y¦G¯úg>npgœgðûzó gº5\Ìs.n5¢†µLŒW\Â4œ³±nq\Ê0\Ç#†O‚}À\"Š´EŠN„t²ž!ª®©C\énu\àúÐ¹\Öo\ìLÏ³¢óSo\ïcoUFa\ë÷[‰×±\Þe\0\\nð£TÄ‰I\Â\è˜\ê\ïv’\Ü\êyOiÇ’4‰ªMx£Ÿn€\è\Å\è-­\ÇQ1H.x(jÕ«8\ï¯\ÇX\ß\ÊD Ánˆ!¸5]ò\ÐXö¬ë­›ó¾\èS\ã;\Úu<}3U8\Þ\' n”-‡yu_´¾\":~I•8õ\Ï*2«ùY‹rƒü\ã5\än¨\ì;\àN\æ9€@I-\Åz®Ì¹‘¤>\á™\ØôGq\Åü° –n¶0í¼oF!\ÄV_1\'Ÿ¥”x¨\Ähs<z=n¼¯ƒj¸w\Ûc\Ã=\ØÑ˜þZ®7\×Vƒ=urý\Ëhn\ÓG0’%E(G&\ÜWX†Ÿ1tüF!°£\Ð\Ý\ä\Ðnç´U¨\Û\Äú¨Â¢\ÕHü\È\ß¥\ã\×ZO\ç\Ò\çhô?\rnü¤i\ÉL&MÙ˜x=²\ØN“\ãf[¿y=ñ/´So+U\âYûÝµß›r0~x†¹Os¤,2\Ìwo‚°”šh\æõQd¢M\Â\0…Ž;HÕ†úp\ï\Ô7ðCo\0ˆE”\ÏÅ¤üCw\Ê\Êh#9\\é“½¯¯|ö\Ëõ\Ýo2\á‘q÷\"\ë,Hf”!O›þ×¦œ\æwZ=P¢Lo5r\áš\Êð \à+£®ö\Ò}¾ô£Šo–38€øJ\Ìo:G$ .¬\Z%\è©Ð‘\ËF›’Fªh‚SÁ§u”<¬oKSñ\Ûc3\ç\Ö÷¿úY¯Wö$\Û\Çy\æ6Vl21@˜\á9Á>ovQ\"û˜„Œ“c4¡…’\ìyI½AR\Ý\éªKSUo‘Qò\Öt\'„\ØF\æOS’Ú˜\Û‹¹U\â.Rúo³›}\nd‰\ÆÖ‘«%?„\ÃþM€ì›ªõ¤ÿ\Ê;”·o\Ë×…¿CH\Ë÷œ€la\èºÕ˜úq\Þn‹F}\Òúuo\ßðüÉ‘E+¿w¾õ\Ð\Ñd™c‹#\Ï{AC\î\Zg·o\ë£Ö‘\çR\à`#\Â:\ÙÖ¥6dÇˆ›8\ïú‚\Ðð\È\Zo\îóxõ\Ô6ú\Û}DPÿ\rM˜b\è\Â1aõ¦»\Ú|i\áN™p W|±b†O…<f\Õc\Ê\ë#_V´\È|\ç\\;ùZ½óp\n}\0ª]tt!ù…x° L\'m¾µ,i\Îñ\Çf\ÐK#$sppmµ+\Ú>\ã\\#J2=”)ôÁ\Z\Ø\ÕX\ÓÓ®=P	~rp“%h¬›\ä¤\Ô7¨=\×APº\ÍÁ\Ãc(@Æ¼›p%{ŽerB\Ý\ë\Ú	¼Â…\Ðd>H\ÞK5œ\Íû¬-c1>}p(%\Ýx5IY\éKüƒfM¤Q	÷Ú­£L_:\Ì÷Gp+\Â4\é\ÓN¤d–\ÜJºu\0’5H{\Õ7`S_Fv\Ù\è\Úp7RVŠÄŠ:\Û^L\î©~ôòŠÒ»:\äˆ\ØTW—ŽWp<D¤\Ê9‘ÙŒ\Ç	 Dp›\ëH2†¡•LReGþM«pLdv\ïX3\">\ÎbÇ„„Yó‚_[M€Ïµ\'pó0ð„ŽpTc ŒOj-\åÎ¢	suj®”4û¯IýT\ï\×#°Á‚pkº\æx\èƒÑ¥LÒ—©\í”)òD\î\ÌA‚z‹Y€n±V\î8\Öp‡~ž\çˆ\Ã\äŒ$\ZûtB\Ý@g™Zz^L¦\éÍ¥pšˆyüÁ²\ÊÿJz\\ŠEµòŒHÕ \ëT`\n“ˆ—\Ç\\7p¡£\í½\Ò%‚Ñ˜È®W\Ôz\ì\îÌ€+QSr\ë=«·:À5p©Y˜Ñ¹!eóu0vû\ß?.jú¹\Æ[‚ˆ,Ä¨†!•pÁ\Èm£Ó˜´D\ä\Ö\å\Þ.už“IdnÀ·‚¹ú1wp\Ê=DY\'cq‹Œ\à·Å­gawð OÁa<¤;\Ö9ÿ–p\Ùu\æ-iŽ\ì,\Úð€’pŸñW\Ã\ç¿c}h\ÊøpŒp\èñ\ë\â2\ÜW\Ò|\Ô[MQ\ß\Í\Òõ‘Ww‘v$|­Cpý\Þó+ü¸ˆL\Òú\Ï\ë¼\à,þWyü4m\âŸ|Cü¨q\Ç,–\0\É:\ã>|¡«˜\ÎAC˜z\ß\Â½\Ìlqg›b\Ð\à€a\Ç\Ðñü\Ð\ï\Üÿö,\ÐO\ãð©–%\åV“q(˜—Fl\Ìè‹—njp¡Er-R~\ÂOà¿¾SN+Kq*ˆO\×DžšlªW2a\ë\Þ\\ð,Dû%1<\Â\è–Ü­\ï¥qq.\Z‰kó‘Ø€E…\á¸\Û#\æ\Éô\àq‚Š\Ù£\"š§q=\ë1®‘#ÿ;°¡¹+”²\Ù\\^ƒ‘‰”p°$\ÆùºqYŠ3i\'\Ó\ÚG›±\ã¢C–?o(÷™˜€\0\"+I}lq[8\×òdõƒ¸\èwŒû‰\ßs˜›#­bþj:75\Êqi´´j³j\Öe*Z…µœHG[\Ä?=–?j\ìzÔ„FaFqzLòk\Ã\">\à\ÙEÆ°zºx»\áQ\çe6ú´\ç¹\éqzþ+£k×‰Fzø3“\Ó7-¸R6>‹³\é‘\Ã\Ô#n&q}¤bN‡Š°O\ÂnœžYV8\èYõ¥R3SH‰C\rjq‘¼Ï‘ùþ\0d\Ô@Ð›\íˆ0l»,\ç\ëÿ‘¢Ö¦\ètDq™CP \Î!\Ü3‹\Óü\×\ëÐ°_ d‹	Ç¸uu–…iŠGq» YŒÆ±ñe$\ï£irhNF¶I¥lóŠ´,ùoiqÁ\íÊ£uG(\ëŠaVè…7f\Ì\éz\à£\îñžL¸mÄ³qÃº·Ù«&½õ\ÕUzHk‹o‡–V\ß\È!+lVŒOª–Ÿq\èþ$\Í\Ñ1WÖ‘û·=–J=<¨À‘\Êù\í-\\#\ÆÁ¯r\ZW\è\å	Ü¿d,ÖˆÿðL_@¼\àJ£JA¨pb\\·©r±<\ÌK§Š\êeûŽ\í2K¿­{EÃ…˜ºóôƒOòr,	RúB—¹“f\æ0ÿz^ðŠ*H§a*\âˆ:r4(^0ò¿\ÍÿF\Ä1°´\È¶s¥t\Ñ\nr´4¹\Îó¶rH\ÜawVm²\Ç7\Ëc­:öÜ\Ëa\á4\å\Û\Ô{+•\ã=[rKX?¢kz^C…\Ìˆ9X\Ze\×ýF»YŽ38‡_ýrV\Ûj•-­jn\Î\Ã[M\Íñw\n=pÉ²²d€4¶\æc\Ú\Ïr_!\Û\á¥LPp\Çf<vs\å\ß$\â\'\âú”\â¤ô\èorl[MÃ‡\'’‹…Á³H«$•\Å\Ý¹§>\ÅQŸ_\ä¹rŒ\àÀ	ŠL\r¸-°\n}^\×\n)÷*\ã´ã€†Ð®\0í¼¼r®\åbðSä¢ˆš\Ã%VŽÈŸV[9šn½®!ž„Ïr¸„\Õ\ÃY\Çò\è\0˜j\å‰ùo;\Ë\Ùq>w\Ð,\Üuž™r\Ìû\ÂùoZ•\æž`°\ïa%\Ò,ü@°¶ûH\"J7¯xr\Óm„\"•]=a\àn$\á\à±7-j\"\Å\Ý\"\Ð4)NMrr\ÙNP_;\æ bˆ»0\Ûf\ÈL\"9u¡\éS‡\Å\å\Ç,r\æ§;´\í\Í/n#\í~Ø†®›—üª\æp…$`Íš¼W}>rõQ[¡\ãûŠOð½\ß\ßGO\Ð€\'Ô˜L‘—®±Ë‡\îrõ]À`²8b«ý@¼\é#T€\ãŽF\è\'w?Ý’6rø´ß‚\ÎCZö\Ü\Ä\èó\îðZ{Á\ÊL†¼!¶(\Ûî’€\Å;s\äµ#a\\±”’\ïûž8Qƒù0²súl\Ê}ß¯]\Ñ6s\Zrµ:³<[\×Rd™}:\ÅYd±y²(‹Ñ©P€\"°\äPs\'ý†j{õFC\äºh™¨\Ì\'G\å\ìM˜g0À®fžs( \Ç8¡(›\äƒ\Z\Î>e6¡Aˆ¨RŸQ!3´¾>Ï†\Ïös+ˆ\rU\02\ä\å³#\×\Z~¼z\ÝÝ€h\èsî˜\Ì«s.CU¨±Û õ½M\Ë^³ðoS\ÌF8\à6E\ï¤ò»ûsN\ÐlD\Z5Ì‚\Â2¿G†\êW©\ÏR½¥«»”F\ÄÕ–sP¶‡\Ô3\ã4«	5©²>Û²#\Ãv\×ñ\ÙG\Ôp”sPû\Ô4ŒÍ®4¥­¼qo\Í\"öF\\	^:QÙ·š\Ñs‡ý#XÛ–+pFXT%?œ?¥¬crS¡yNÎº&Iþ\\’–s ˆ”_£d´Ye‰kžP¶(¬HP\Ý6P´Oûs¨DV‹i\æšß¾ý[žb\Ó*ûa—VaŽý	½ ¬\ëøs²¿U”Œ$$ñ\Þ\æ\ìV\Ëògþ\Ï\Ñ\Èb\"lx°m\Ê\âs\â¬8N\Z\ç0\å‚\ë-º\Í\Î1ö¸\ÉÂ¶M\ä=ü‰1±ú¢©sü2—il)1\äy¼þ\Ýj¤uõHuM\Ôt5(Iñ:\ÑE[t¯*Ì½vdW\ã;1!lH²\Ç\Ð\ì9ƒþ\'<«	C\Ãft›lT›^´\âû7\Ç\å‡?1\Ü	[\à‹]¨øƒ¨#T\Í#t:sr\ã¶9ø\Õ\ë¼ca\Ë>ýS|0õ\àø+/\\3•j@tB»\Ëyüû\ÆiC8Í¿ªžL4›D£Qþ\Ì\î\0½oz¦tG=9’\0»“a·Ê®œ\éb>\Z€O™zò˜cŒ\Ïõ1\Å}tIqó\Ú|\ZG¡wP\Õ8±^6\Âõe…N\Ùc“f	\Ít‰rX#\'…ùXlmRq{ô¿8·\Û8Fù\Üñ€Œ‹t™GV&^`\Æ.^2‰°IX\Ã\Ô&$\ÖG\ë9‰, MB\êtÀ­Š2z\èv´fû#´ \Û\Æ:M´\Ý\â³‘{%t\Å\É\Ø>\Z/A\ã\æ\ØõùöG*¶\Ä6Œe.©‡QitÐ•ºs\Ç)W­j³Dr¼™Dðiº¥<¤Ÿ6\ÉN§\ÃùFt\Öá¸¹\ÚÁ–]Þ¸º®\á«H€ù™ZMm¡\Ø\Üõ‹\Úmu\r}[’µ-·\È™\×B\ÐúU`BE\ÜrZ‚nˆ\ÈZð?*šu«…œ\Èf®K\ì\ÏóM· ]¶\å=_mA98¿\0©u Nr8\Ä\ãö³\r1\í\æ\'„p{ñqbs/þ“¾†¥u#gTdý.C—ü¬­\Øù\æYg Ð‹±UWž\æa{õu)\Ör\×B\æ.\Îp÷óc“=\Ã\Ñt\'\Ù\×s)¹‘\Ó<Iu-Ñ£‘¼ŽAH‡´Z·64Š?²ðÑ§:\á \â¢}u6,]\å³g\Â8M÷\ÄU†d\Í]8µ7\ÌNXÊ¢©‰}Mnu?|ŽP\Ù4¦™TV\ìm+ó\ìs\Ïü¨ù”q‡dm~)u@?\î›Ô’$pû*½%\Ç\Ë\ãº\ër(b=ÏA\é\ê—iò\Ôuƒ€¥\Ã=Û¦µ´„\íRnJ+^\í\ãZ\âš\'=À\Ý\íU\'Œu‰Ÿ‚¹@\Òü\Ýjñh´0/\å \'0O¯MuŒDÎœ\Ê\Ã§‰1ù\Ì1{ƒ‚i›\Z¤-ûj»¿ø˜Ð’uš´ ]‘‰$)\í \Å\È\ßw\Ø\à\î¶5h1#}¾\×8t¼\Zu›;rõŠjùÿJ%©\Ê\Æ0$½«ŸU•C\Ì:õ\ZY!uœ\è˜#eo^3÷“|xˆ¡„\ê½˜\Ä\ïž\ËPœªu	„üx¥\ÓÁ\Ð{	_E\à•Ûd(^\äš6uûõ™H\ß\âU?/:êº¨\äAw\0­¦x2Úš÷p\Æ>Bv\0WbmA¡[¶\ë8i¡E\â\äR¿S0E¬`7d\à~›v\0\Ç\á¹k‘\ÉETv\Ò3dx“eÊ™…–\0z?`•¼œv7cš\0|¼q[j\ëQ‰[&LûÆ—¿P\ÌNú¢lv\Ë9ù\ZR\r…2ôó@¢\ä]3‹˜z#\nò\ï¿q\r3¾v\Ð\'\æ2\ÐY./T¡}™t b³HŠ<6\ÚPy-\Üv\È\Ïxgg\ïgy)Î¦ÿÒ¸s!\ï@XQ¢Rc1ŠFv.”Î¡W¨Ô»lq¿H\Ñ\Óo‹¬r\'«Jm7\Ïb\åóv26†}Ûž\è\â‡\Z\â\no‹¯g$\ä$¥@[¡C—\\Vv3)<ª‰>÷‘ró¶y(L¼1üyU\é»\n©v\âf\ãav4Z\ß}k¯ \Èj\Åø>X\Ò\ÔËš¹WR/%jð†5t \Äv6œ\\\ã\ÍyvT\\MÁŒò	FQKG€u0ù\íÿ\Üv?Hmˆ®r\Ðq¿\0þLš‘¤\Ü>=e\nS¨óŒòR‹v@n\ÂL†\Ö\î¢!r\ë\ìoó\î\n\å»\îòµÚ·¹¦ÄºvY¢<•\r\ä\Âð4eš6ño™Ž§R¤ù;Õ¯C;\×vŸ\ïŽô!ž³ºþ¥z\Éß¨\ÆA1\Ä \Ãü\Ô`©[Šñ³-v°;aÿ\'\"\Ís \Ü{„Ct±(~\å+ò~mu\Þ\Â\Ê@v¶|\ËPu<>›n4p\äR.þ\ãõsI<\Ã\Üü›¯Àúv»\Û2\áÏ‚¦¾Zû»ª7»“ºQóù÷¿½XwF€u}v\Þ{_5\Öô[\át\ËZ;a+Ì¤X•\nx\\€õò&v\ë\Ãÿa-iQY½\ÐhJt«	ð\ÏHiƒô”\ç–2&ƒi~vò\ë1R\ÊCÖ…m²\Ú×žR\ÈeV98¤¬\ÌxýÞ§vù¡=}í†­”:vt!)™T‚&”\Óÿ”ò\àš\Æôú4w× `g0O›õù±…!’·£+\ÙU\Z4\ÍÿjV½9woHpõ®¬\åù\ÝÃŽ’ \"M^­Y\"\ÎÿƒùS\Þ\ïˆÕ“§w¸A!\Õ(v\é.Bc?ð[\à\ËD\Z;v…ßE”U¥¨w&C}5QÙ’×¢ÿu\É<\Ø4Uw \Õ+hñ\Ö\Ý\ÞL\ËOŒw0?±pºn~(§3e4«þþB¦!QwÆ»Lb®¸w<[\ËSö%l†n,ó-SÀ~\ê¼]MD¹p\ÂÇŒ\Ãˆµ¨ðw=c^©:\Â^N¾[°Ž \äX“%\Ê%N\Ï,ôw@ò c|\ßh«(\Å\êHz\ÑX[Ÿ_\Æ:€xº0ƒ)KwDiÿg\Åk\Z#¼\ïV\çJ PN]¼»	Y\\8ˆdÊœwHoôÕŒ7\ëÿ9l\í\n!˜{î´ŠO[OÿZøjwM.\ë\ç…#S\Ö{\Ð.¡›íœœ½¡D£G8óq(µF\ÏÀ¦wP±˜:B²!›‹nƒ¨$d\Î2e¸\ã|6Ó¹Ñ®:0²\ÊwS\Ät+°\Zï¬®HH±\ÇÜ·z H„–o\Ëõ\'3{”¢öw]<½	^\ÙJúdOh„¬þYþHª×žñ£t.\ä¬(@,wf\ÆÆ¿to\Û\æ\Ó‚XXGö‘\ì\nFÄœcIs\Þ*ß¤£wl™E\'~\ÜN‘\r4dAËŽ¯@¸7j;\í.¡šW[ðg½‚w„»\àG´’TÄˆ\ãÑ‡_¤|\'K¿\r,½\ã#scw…q\ï•X¦9\ß\0¨¢ª§ýV\\\äÀ•½\é\Ó%\Ç\ÓtwŽ~B¥Í£a\ÂÕ¨1\ÑÔ¡u?n·‘ \Z\Þùö\Æ\Êodw·c4y¡ª\ÍOù.\Ìü\È~H—½{\æ_Ê—†VÐ“¿w\É>Sa¾\Î\Ýð	\Â?½œÌœ™\Õszœ°§¾‰ðiÃ¾w\Ï\Æ\nŒˆ\í~;H4\ÔÇœ\ã/t\Ô\ê«ÿ²_v\îŽi%]\Ów\Ö^q¹ˆ92:\è\â§\×_k\Þ\æ\Ã_]¤z`Šž=*1wß¹x¬€o\0ø\Ù(üü¿+%õ5\ëBœ¶BSrl?!Gw\äŸº \Ð\àQ¶\×~\Êu¨Q’\Ô\Ö4¬1„\nx:óŸw\å/bÝ±\n]\Â\nANŠAº\0¹\Û\ÎvL\Ìƒ¡Gw\çºÃ¼}\Z\ÑO·g\ï\Ç f#\ÜE¹1g=g\ÍRz‹–Fx#oC:[\ÒL6lˆr€z|w´\Ç3\â:«B‚=½¥™x\Z\Û“E…ž¡\\kª!\n\\D‰º6°Rˆ\Í\Ü~—xwØ^˜\ÓtFx{·\ç™Ö¦ó\ê7\ç`­-\Ü\ã¼È†Ž\íx3z	l\ÇrgRMqÀ\è;\çÃ¢¼h»À¤0ü:Ó¶x3‘M\é1«Ÿýw:Ìª‘x\ÐðM(òyð/2ð®\Ë,x5¨Ÿr#Ð‡Xt\Æ%JFCD‡£±û\rÎœ\Ø\0Ÿ\É\ÑxKPƒ\Ó\é\Øù%\ÝL“aÚ¡\Ú\ëU\Ìxÿ\Æ\n¼GŽU\ÄT\äxP1v“£\Ü\Õ\Ë›o©\Ô0{\ÏW\ÃO†I- z²\ïwCE\âxh@j†±AšÎ­‚®Î°\Üh\ÕYò*~it\Í\nŒw\é±\0%x‘Qn¹g¿\ìgW.6£Yš\äõ·z#\ÖIÄ²«x§\Õ$‡\ä•P&\Õ}ô‘`\\QyGpr¥\Ì*}9Y‚xÅ·(í²µ\ïG*&ý\ÈIAvœÑ„_¡R!‡?ˆxÈˆ\'eö\îÅŽª4m#\Å\Û8\â\Õu¨\ÆV‘hþ•û©x\Ío\Û?‘!lN;8g\Ü_€¹[j×œ3&Î‚q°3È¦Qx\ÝTÀ\ß\È±\Ñn¯^\ÇÀJn\rC@ù\ëÔ Gú«\\x\èö•»\ÂS†½\ï‡\Âùn]±\ÞBƒór\æ½/ó\Ýu<\rxô—…\âY\ã\Û\Z†>kªŽEº¯­M—R6.‰™\ä\r[¼\îxöl,B\ê³%\æ\\°‡O!šó¾®S<\æ³yð¼¿\ÐR\ÅÀúxùÔ´W%\'7&\\az<’ AK\×o\Ð% |7\ë¯ýKy Ý£¸x#\rö\ëôj\ÙÛ¤£\âE\äT\æCœIf\à›nZy-ó8\Å¼‹<\Û\á¦@<]Je<¿w^Û„\à½CY¢0\æB­y8‹Vüx^„î·¡ˆ\îkú\åj“¶ONl\ì\"3`‡y9\è\Öt­û½º$\ßJˆf³¥ÆŸ»\×\ç\Åú\Ñ\n[d‡w\îyK6³¨h\à„®+>A\î”ÁW[­ñ¡ú\Ü\×,\ï1/\ÏÁy^&	†\ä\r&H\Ú3÷»›\Ô\\ F¸£[5²\0\ê¶/yc\Æ++S&\êa¤1g\ÛÕ­óˆ[yá—ƒÄ©¥Ÿ·nyd-f\Ñr\\\áœ•>X­1¯Ê -Q¨ÿN\Òyr:\'\Ý?e\ÑO–¼ŠF¨Z»©«\Þ\Æô¤è¯®\0ž3¥y—8e„—ûö\Ô\Þ\Ý\Ö\æ(Š´™—¢@\ß$ÿò\á\Þk(\Zõy—ãˆ”‹4\Ét¬F´Kò ö¤\ï¤v9\ßgö\0€ñ>M@€\Ò\Çyž¬„‰Ç§•8=\Úu\ï˜<³&(3‹eŒ¬_\Ü`\0„¶y«Uñb‰\'d04À\êt‰‹o¹/\Z+ˆñ]!\Îó\èd‹:y®\r!²’\r´s|\Ü°k¿F\Í\Ëÿ»a2Ú¼@\Å\î\Zy¼Wÿ@•\ã\Þ\ç\Ã\ïõ]ûa\íÁù¶õX\Ç%©T†y\É\Üu¼~\ìû61ò«ZÉ\\ÿ/[\çl‡ý\Ùü(y\Þ\ÊL$L	rj™kü\àKƒô÷‡\ìô\ÚjVx\0I\Ñs\ßzF\Í+Š1¦@‹\Æ,¦\ã›Œ\ë0ŠC\ÎJ£O\à!\Ôz‹Žñbö¯ª\Û\èø­¯Ö¬Û³yg¾Fb\çeE\Ý=º¼\èzLj³˜\äR3Z\n†\Z\È\Ï\Ó\æÐ“(\ánf\Ò\rô÷¸z$p~ñ»=P\Ûp\'’»\áÿey¹\èK!v^kzP¿*$	ÿõe²(WI!–[(„ôŽÜš>< º‰òzUm{‰Ú¿Y>pŽÀÖ¥x³w\nT\Ïmw\ë\Zõ~\ä\ìIŠz‚÷eˆe `\ä~Žöw€úý\ã‹ò¼G$us4oÅ8z’\Çó$²E†ðg\Ò\ã¶gŠ9šK93)Uó˜¹:\ÔSz¢_\ÒJ¯?Qõ)º”\á\ÐÏ\Ðð¾aL^\ã;V½ðú\æzªr…\ÏOU]¤L\ÝWq$¿»N\ÐôAw¤ ½\Î\ÝN—z\É\"Àö|‚5Ü—§\î:lW8]òPübNþC~z\é-6‚ŸŽ©i	F<>£Á’LO<kÔ¨1\n˜r\\\Äz\í™kùÏ¤c¾Qò=’\ÔoJ)\ç¡\Ö\0.¥e©»2 \Ò,zôHm¬aøµ\ä~B\Ê;@«ûlõ‰\'e\ÍðÛ¼sDÅ‘;{¾3ø™löŽpª^÷3\Ä\Úkº\à;\Ð\Ø\n\ìkÀú\è{÷ 2žwø\rOH\ÜS‚uÜŸn¡±ÓŸÜ¢²»›¥‘{u)˜£x!\âD@Ÿ|ˆH\ÇF\Ñ9\ÝBu2\Í\r<\Õ[?{5úyÈ†dj2&«\î =I\à\âU,qC”<\Âm\ËóU˜œ{@šà¤¨ð$g+ö•E’‹À\äô\èg[r3òüŽ\Ö{E\ØA\n­š­¾\ìþÿ\Æ\ë\ê\Ã\Î\Ã	\Ê«6“Q`U{M\Ï3±#\ãô_B?n\Îýg²\ì\Ñ<\Ûvw-i{\n‘\í©{iŠ;|-#qY\ædð_;¦üQHª\\©µù‘ª§B%º\Õ{saˆÀ¼VmHº»•¢û	Ù±+ôr§<Ä¸T;\ä[‹{™“\rÅ›¢9°\Å11ªT_P,[D\Ò\çý:ó¿\Æùwž{¢n]\Ö\0Öˆ˜\Ýn»\r\Ïµô\É<§wË·X)ƒ\à\Ú:{³„,‚t\ã4S)hùdŽŒ÷\Â;›}K\áƒ\Ñ1\á{Àg/\è\Ï\\\ÌEÇ°\Z\èI|\'á„›D·iû\ê…!H{\ÄO”W\ì=!Ì\ÐW\\\0vRý¿ª&ÿ\Ù~GÊ½\Í\Ð#{Ð©N\ï\äÀ±7¢!QZ\Ã\0E\Ý1\ØÍ¦\Ñû\ÔÚ¤!g\Ô|‚…˜m\Þ\É{öcD\à1\Ò\×\"D]]=\Ø\Éô-c\\ƒ|]\Ðo”›(jF\'þÀ*À¶´\áÙ¡Æ—\îEF$K#|\åh‚\ÐP\ìœi\Åô>\è‹\ì@ñJ\æ6³\ÐlQŽMãž‚|#•¾˜¡vœ”€¯h`JO™Ax®ÿ\'¼^\Æ|(\\‰¼Q\Ð&j™‹\"†ˆ’·n	ô\nu\Õ\Û\ÜÁÑ |4rc¦È\ËDV*Àµÿ¾¸{’3Fø|E¯d™\Ë\rºq\Ð\È®#ü9¶ž\Ïð\n®J\ì\êt\ï|F¸Y÷c~\'¿B Ž_\ïõ-dl\è¼0h|Q\ìh\Å[s†ob\"ý¶þA ºf/\Ö$÷\å|ýœ|U6\çs\ZJZý\Å\r\à~5\ß\Ü\Æª\Z|º\ß\æ$\Øù¡Ýš|Y\r\é¨:l_žÆ™=§¹Ý¤.M\nð\Ç×º‘*¼|b\à)MGA\0\Ì\Ê3Y\0Ž\ï«ö\ÏQª§ÿ°½yLœ=|m!“5\Ã¢zdlöÚ¯4uOln{+\ÆP\È;©\r|q\Ü7r’œ®ßŸ÷{\Ç,À\'‡ÌŒ\Î\n¾À_\Û\Å|{î¹¨F½\Ã\ë\Z)cŽ	5!q8\ïc\\kpð\åKó>|‚&ë•þ1´`À	••Bò	\ßNt-s¡ó e[|•™\Z$\Ò\"«_w\æB°&i\Øòt\Z|ª³†|›@&o•|\ÇX4Pûu@¦C¬o\Õ\Ù9›RŒ\Ëd³|£zp-€v¼ˆ\Êdü\Ý\Õ.Š,[\Z\È\Â|Q\ëb•F|±\Òuˆ\ß\Ìô\Ä_\íNacýÿ˜µ:-·Ÿ•;|»üpÑ¨²º¹7{Í+¥\ÃôF\í;\Ó\é}\ÊU¤|Êƒ[\ÃÂ„^BcxÍ‚Å\Ê^ˆ @<=ð·£FòD\Ï|Ë†ðÓ°P—À<Õµ>º\ÔDdA.\ÒG}\É\Ê}­_|\Ï…z’\á,\Ðj=g§È·ô	ŽŸ\Ùð\ê²úTF!w¨d|\ÓN!x¨\äV$”W8qIA©öC]1!\Ó’	­±}^\ä¼\Z¥%EòÝ·2=¦›cû\ìÌƒP÷FÙ«\Å\Ö}\ß\Ê_‚\ã˜þ\ç\ÜØ¦b¿qÛŒ(h=\æF\ïÄ¼}CYÒ…³8\Ö#j<¯Á\Ù\ëQ\0Æ˜:\Ü/¸D\Ê}D\Ë	4?¬¼Žþs¼·.M¹\ç*‹£\î{TªÈ‡¸Fd\r‡}c‹ú±[–/\ÒNH\Êjüûnò‘‚\Ã¾\ëL•\ZXm}eExÀ\ê\íI‹\Å<°»gB\Zù9÷skfÿ·þ(hº}yŽ\ì#Å©¢M\ßss˜‘ø®\áðD£°j\"\Ù}{þ€q}•”P•d,\Ø_Pš\Ò9¤1·+Bw•†\ÆFŸ™~M§ù}Êž¯\Õ4!\Ï\ìÊ¨Yô6Y%ûdX‚SÙ»¬\0Gµ‘}\Û\Â-6\×\'°f¦nT Y@©¡y_{|nŽ<\Ç\è\È	}\åm™-\Ö+‘\Ñvi 1¾ûŸs„\nŒª›U¢÷¥‘8u}\è)H@\Ç\ßŸVbR\"\"Í¥\Ø0×¹\ãöoüµk’¨¸}úŒ\Þ	W€¸úb‰2\ácf©HBŽ£y‡\ïuù©P~eý2\èƒ\Ò\çý4x¹`›\ß\é\âQ¦x<C­4\Æ\Ü_¦~\n-5\ÂRT½¥ú¥ø\×w4\Ì\ê„}3“}w3&\Ïy7~\ÃCp†¾V_<r‡Z¢þJ†ý‡GÔ¹?Î¿œ\\~\"=Ž\êB\å\ê»À«Ž\êc¦ °\Z\ì‘\r®z™Œn3^ý~5:ŸÜ™Žµ\äFš\ìÿ“LW\Þÿ¹s@ë†˜\ÓN§\é7‚~>,\äO0F\ç\Üÿ2v\ÆF\r}ª÷Éž“\êÀkTZ;›ªÓ¢~DZS¦TÌµöp-7\êEev_ñQyšm˜K\\¶Œ”)p‹~G¢6œ86\ê*“\Ù\ç£ü\" \â§Œžf\Z¦=^\×\r¬‘~PjgkÎ–	üöf:§‹\"\ÙvE\î¹Áy0\Ñs\Õß¤£d~QoE\Ù3RoJ¨9>\æX£•\è\çÎµ\Ç\"Ø‡\Ü1ƒ~v\Ý~\Ðz´S5„\ÞÈ¢«Œi½yˆ®ŒXñp\ÖðdH~x«\"&/\í\Ð\â\ÛV¤ò¢!¸ c»a\Ý6\Ê¶ft\É^‡\Ø~r §‡ˆ‘Ÿd †KHqŸ\á•#\ê%´Y¿Zê—‰~£±^4‘\Ç*º*®\Õ:±r´\ÉC\ís\Ìþ%uKhd\ç~¹\ÜE»Ua\áŽqRh}Ÿó\ì\ä?£B@\Ù:¬‘ä°§†~\ÆGl*h$*V«{M¹&Ul\ÄI¾\Z\\\Þz’¨™~\Ô;\ÂYì¤›±N³PŒ\Ç¢±lô\Å&©4\çœ%\0~\à\É)+:ñ\í ™1Å¬Øˆ\"la@M¹¢ŒSÓ½k\Ð\Ã\á~\á·Õ„¦:ˆ\×Ù«\Ò\Ú\r…rq03aÍ½¶\íÿ\ä!{\â-ð~\á¸v—œ\Ô<¹gz_¦\ç\ßÝ‘\á	RC	~ž5B[1E¸\É_õ®\ï\'ƒ\ìÀ¥&xmóò øf\í•R2Ih+Nq$,!%‰>o•5ô&qœ\Ú\ëZ—q-Sœoˆ4¦P\Ò\Ç9\ëu›,›ˆ£ù*\á3‰\æR®“ W®IÀD[1hÑ’\Õ3\ì˜X?\ÓÁ?$\Æg\Æ`\Ä\ÞÀä¶`£ L\r9;`\\tMQþ¬Dj7iÀ®D–\Âfba\ê\Þ9SžÁ%\â,#\ìÌ”¾¤\Ïñ\ëc£~ðrƒ\ÈÀ\Çr\Èw´CpMñ\Å\0©w™º‡d\ÄJª•]@ø\Æ\È\ÝÜ¶¤eu©¶_³¯öŸ(Ÿ\Ü¨uj\çÿø«››³\é\Ð\Çp½P\ÏóœŒ\å5\\†–ðÖŒþ(\×D\Ê\Örüˆñ‡‡\Å\Ò3ñf!UHžŽ\åQ\à^3þ\ì\n“µACª“’«\Ä\ásÿ¤u–<œf•8s\Òó®l‹p\ÝZþ®(Fc1÷\'•æ¿‰\Ç\ã“jò$cFƒePna¼³Þ¦†@ô#‰€\0$6i2\Ôn\ì\Ét™òö_‘o\Ã\ß\Ãv\Íß‰pj\â›\ÞOYv€qQ\ß,|\äa6¸\Ê\í\è-=SÖ¾I‘ªpd\Ö\í€%_#µû\Î\åŸ\ê\ïkCÓ ! …!òns`»)^a€IY\0¹¿ö\Â1sX‘	vaC¬¿H†\â\ÞÞ¯9Î€L\îiký\Ð8>:Gõs ­\à^\êu`\ïJ\Å=T\ÙN¡`\äÂ€Q5cU±¢\ÐFa=\åO\ÈòœÅŒ\èÜ°ÁTõ®\\h€X…8\Ý\Ó\çºGR\0§z_B\Ã?<(ôÐŒeo·€u\É:\Û@Go\ë5 í¼—{`ñ\åºdQðz]À‡<€{#¹G®Œ\ç\æ\æ	;€c¦¦\Â\Æ\\73!\Ò}\Ö\0´20€‡ÍŒš\ã¯B“¤i¿\\5,¦k?øL‰\ÇŠ*_È„\çú€‰\àb\Çu%dN\à¬\âv3\Û tp>?X?\æl:\"€œx\Í9®\à‚lP\îyf¸Iu”‡™&¹p\Ë3œ¡2‡¾Æ€¸ñOk\Ñh£WSŽb\Ü\Þ^S\r )\ï[\Çe÷D<Ý€¿\îg/{>\Ì\\Iš„6\×R÷\à§5.vþß‹º° €\Êf6ˆ¯‘¾*Ÿ#6“\á—\Ú\Ô:\ÄcKx:1#Ù¨\ä³€Ý†=$ñ¼O\è/KfÔº\Å\å–„>·8~3>×‘\ÃÞ€ù©\Æ\rY3¾¡5\é)\×ô\æ\Ø>FS¾‡\Ë=ˆ(ª€ûk)¹Yt×•ä©‹Å¼8¹]c’>%\Ú9\r’\ËÏ¤\Ý\ç€þ–fz»››U\ç¢\â\Ï<\éMhª&E•NŠ+Ñ€Û÷‹ô\Ð“Hü O>\ß06}ÿ#¬ù<Q“¡ýðnºú\àw\ß\Ðö\ÄköVYÔ‡/ @ƒœ‚¦\Ñ\ëò|Û€²ž\'&ZË¥~oÆ—ZÚ–‡ñ\'\ïú6g‚ºi0B±<a 0\Ä²[«™ÿ\0=\É\ÆòUðª0½ \Ó-TK#¥ i¶>\×l¶.¢Z0øKª\á]Œ<Š’l>\æ&Þ‡Cy\Z|W°¢®	Y|z>6ˆ\Û}½¿\\ \Õyñ‘«\\–Fe\ÔS#lt^5:~ˆ/®b]¦©Š{ô©\Êý.\\+úB\á À ¨B„°Z\å\Ç3¨#f4.x\Íi:ˆpY´Ad\àŒB\ÍK\ÒŸ\r!U3JÝwñ\Ô\×y—‰‰pÃ¸º\0EIntU\æ]×°h‹yR\ï^£ó2\Ìv *§\èPL<\î‹ÿ\ßÅ§\éSÒ™™w8Ø«Ü‡Si.=$#	\Åb»/ð:\ÝLV“¸\çäœ{l©´_§\í3t \ï¯Ány @\ã8\Z½fU¼Œ\é[º%ªµ M‰\Æ\â\íœ;\ZLÒ \á¹j·\n_‚š0\Ç\ß\äY\à<¦™Tý®i\ì¼Ö´	ðJ¾]\ì\Ú8´NøØ»\Ô\çÿ4mTý\ëñ“d‹6„Wo›kµ\ë,Ó®?a\ËGü£\æËŠ¹B\Ç7J?°­\Únñ)\ép)¤=jk\"/%>‚\Ë;û¹\×\ÚÛ’g%@t\Þlˆs\Å\ÝÀ\î\Ëj\êj…rÆ‚r6yZ¹±û.÷\\þ\ëÎžú\0¯õÀ?©`ðb{C‚»TD.fˆ0‡l©°‹¿¢<\Åxˆˆ\ïCqZ`h‚\"$—v¢¶R‹\âø9\ãy\æ©Û\É\ìo4óh:	\n¡*‚fÆŠ2•\×gn\î…2I\à {C“[HrA\Zb‚‚ý\ÑÛ–÷Ü†lW\ÏGŸñ·Uaò\Ôú¶\ßGþò\èb{\n‚ˆi\áòkTðvQ4\Õ‡¬ú\È\éE\r0E…)l‚Œ`\êŸ&@ò©šºº`ü\'a1Š‰kÌ–VS+\nWy‚ö\î\ÔM‰ö\å9>üþ±Uð:¾\n’´\ÆÕ¢\06‚‘¾\×\r»Q\\¡lz?9y¥˜˜N¹q©ñJf0\Ûî£‚—[\Ü\Ã\Ô;P\0º½¥X-\'*›˜õ\0Ie#\Þü¨‚µ\ÒC\Ñ\ïø¥Á/\ÐMÁ´þ„\Ó\è;\ÛK\nAt/†c‚\åC\n˜]\Ç\\\ëJ\Ã\Þ\ê½\ì\Þ\à=¯°\\\rRqñ¥L ‚è…ªp\ç/ˆ\ÙÄ¤üDQ.¹žG¶\ÒÈ—{õ<)¤\ìMÁP‚\é\Ñ|\ë\ÄúyE\Ô^8²\Û}“\î\ßØšn÷Š¶t²&O˜‚ôø8(dœó56GJ\'C\Û:R,;ˆZ,œ\ZF\ÇB>‚ô\É,\\¤	Xw\ê\Íl4ÿ¥>‘\Ío¬…\à\Z\È[_‚þ6‹.$Kyo_3D\ë&QB²¥¥\é\Û2\Þ\Ï\0Tý\\\'_ƒ©ME\Ãw^¡TŸw[X«j4—™¢s··®\ëG\Úƒ5±h˜)\èp\"K¼4c\í!\Z\Ä\É­\á¸>\Æ÷\Å$\îƒ<\\\Ø&eû\ï¬\nP\Ï\Â\\¥*ûFy´?¡š|\áI‘hƒFIX\ÌF¯‹H\å¿E\Z*9Ý¶×£/B¡‹‰€Fú	\Â>&ÑƒJ\Ú5›4\Ç\É\Ç\ØA6•“#\"b2S\évJ¼\á@\Ë\ä’ò{ƒU­1ØÚ¸>)T}Â…°4¦ù:¶\Ø\î4ûSm\Åþ\åƒVˆ\í½YW\Ø\Ê>\0\0qM[Ol\"o èˆ²3S¥±\r(7ƒ_ \è»Y£o¦$šbµô°Ü¤\ì™r\Þ9‡«2\é4\Õ\Ñ?yæƒ€i‚¿>~\Åf±½KJú…ƒ` õ\éô\Ú3\è\Ôuxñ”Eƒ…æ¢–^\Õ—\Èc\Ë|§ü\ÜÙž4\ä|c8¬\\Ãž9YƒÛ³%ˆL`N/~sÜ†4ž}?\\Qî†°C\ãþ\î\Û`®ƒ\éÕ¯—&m&=\ÐC}\Ö\Îc¢”S<%ø•`øý	ƒ ¦&ý\ÆI¯›EibÜ±ºlª“@!´\Û\ÜC¦ƒ©\×\'0:¢I\éWU„sA«@;\éÿJ/8\ÔqÚª\ígÃƒ¶›lDA\Ä×‘A“=òþ<ðž¬ñh9)¼Al¾…\ÏtƒÂ©±‚|yg8T:5,uÚ„F…œjðX4Ž\rW<0Y°ƒ\Þ{V9‹\\.\ÌIp?¥H[™sB\ÍHöxGq¤Z\Ø8/Zƒ\ß%¹Fw<\Ê\è+-;\åQn¹gpŠŽ®þÕŒplñVöNƒ\è\ç«f–›VV.|\ÄvX\Óþ•N´°8D×‰\ÇD\áŠG„\\\ß\Ø\Ù\ÖI\ÛP\ØG1hFYŒ‰\Ô:w	\ßbd2Á3Ì‰„g•B@¸]B \Ìyò\Êq +6Æ€=¦’’_€›ñ7„k\Ô\Ãy\Â~»\Óm\èÈ\åÁGú|F©Á¢¦:†9Ÿ4„uZ7>f\à Ø«D„†—\Þi\Ô\ÇUgpþÙ©väª„\Ò{\ë\0÷¿/¦´9\'™™œx~¶\ÅÑ°fú7\ì\ë®Q„–ËŠ\Ïo„ ,«|\ê$ùAßŒÍü`¤\Ø\És\ÕÝ„¦W_øw\Ã\rz]Þ·vÁXÖ„#»b£\ÛxN\Îí„¦£\Öq‰FLþ\Óg~~\ì4øUÚŸ+û\r¦ù  °•„¬™?Î¾z\Ü2l\ãŒ\Êñ=ó€!öß¤$¡x¡”}„º\ÜÜ…öºe(86 6g½PE¦¶tµ\ÃŒ	ús«Yk„¿÷ýœþMc\ÇÇ³o1+Yœðlç’»©V#¼º„õ„\ÏqÏ«\ïp_§j§›f\Ó?8omc5Ö’ü\\PM%½\Å\ÓÕª„\ß	T0Jñ\0\ç™ô\Í(=\ìD\Å*ÁÛ˜\å\åÓµ>ú‰„ö\0\âµZ\Ì\ë(×¯¤Î‚ö| \î\Æ\0‚·#…•Š…\àø‡\×ý§~^y2òcót\è‰Hü&¿DO\rù´ZÏŠ…Å¸\Úl\Õsƒ@0jd2S*\r\ç¬Kƒ§™²³Œˆ¥‰…ŒT(¦³g’.´Ùƒ§óýt¬}	ŒzCSø0\Êj¹…)w\Öd‰\Ï\â\éV\ßåœ¥¶¦1\Ë\ÓJ{ôôhV \æ‚ð\'…J\Ób´-i.9\ÖEAù~Ÿ+|%\0ö…\Â\ìùŠ@\Êm…V‘w\ä\ç%©%\È: 3CQ#+g\Öô›	•–e¹}\×…\Î\ì@%s5FÅ’j¬fpvñÁ\ÄG°¸ñVý\Ûü…ŒMvx\Â\ê\Ð!!ªˆ\à\î\ì90MÖ—‚¥yµ‹-t3o…ŒXD±\Èw\å‘XÁ\â² ¼ \ï‡xTü\éñA]W…¦¾eZ\0—p›ô¡õ7¸\ã\ßg K\ëzðXF¢\êD¢\Èk…©5pB÷Ž€#\íŽƒ\ä:N¿þ\Óp[·\Ï\ÈFd›*n…Á¦7\Ãdë·1\Zh6x:i6“žLf ¤`O÷z…\Õ~¿\Ó\\Œ‰Aj!ž^E¥h©†\Ü\×ú{´RP¢…\á‡hO\ì‹ð	ög\Öpª3°²X|)F}h¾9P¤\á*…ú‰K_	\Ë÷ý&Z2J”i;\és±Àb¸š…~~:¢†~Uw\ÏiÛ«uE™fµIrq\æ\Ò\æp“E\æW?œ†\ë\Ê#ƒÜˆ³*\Ò\\ «ý©f«}·Õª\Ì±mÛ½œ†24ójºi´\Ý(S3ð„¤\r25y\0²2ySÐ¡ŽfU²†N”\É¼JA1\0sP\Ô+?§>°~y\ZYm\Âøžp\à5†^xƒ>ÿ\Ô\ëp$\Ö!¿p\éŠ[ör\rf^\ãnœ\×E†dºf¾Œ\Ö3]¡bv<%pIH\Þ:\Êþó™W=\Â®Î†i±\0©\ÂûFs«\ZN–Àþ\Ì\ÜaFRÈ«‰?|Z=«\çp†ƒµþ¹U)®\Z±¯\Ëÿ¼\É!ø›Œ:¾y®4†„ñDY\0ý6\È)°\Ã\â|š\Õ)õ0¸x†;Q[5\æ\ãS†É\Ê\èÈ·¦dTKˆ:o‹\ë¥V\ÓL‹§•E‚\ì”2Ÿ†\Ü\ë¤y\é¡Eùþ6Á_À‚%Xc_\Øñ+˜|V7òT†\ì=ðÕ¸N\É69\Øõ\núpÿ«¦=x/N\îÓ³Fs†\ï/È—\Ü\ZCªþŽeÜ»´Œ½iL$µ@¿V¯_%ÁÅ†õDX\Æ+C\ì]ŽD¯$W+“f\È›yi><†\\Ÿ4ƒ·†þ\Çör\È(\rnð\ç¤b|8\í\Ö\äöŠÒš¢b²‡ú^+\Æò­‘MrVŠ5\Ñ\È-\rñ¤\×\r öJ\Ü<‡$\ÚjŸ¡§Ab×¹¾W\"0AE\ßÿš\É\à=c\âÝ¶•G¶‡/twv„7©\ìKã›´\ÓoGÇ§„v\ç\Ó\æt™\ä¯aAX‡X“”ö²	¶\Þx6R\n‡”aXü‚Ö«5\ÇF\Ý\æ\'ñúÔ‡m¦4\Î@\ßxœ5\Ôg\Ç@\ÅOƒ\Ãs¬t7—z½¿”‹Q\æw‡€Š™¯·\0ý\å,ƒ7‡ x/\Ë@69	­ÐŠ\ÜE¸*#Š‡‡†ó\Ý/p?i\ëQ¿ýk\ÒgÆ±y™\Û\Å {\ß\Û#‡\\o%E9ÁñP\ÊËŽs„¾]¤\ÙhÍ‚R;b¦E:\0‡µ\Ö7\Û&[ˆ/=sšøcÒ´\ÅÀ\ìLúøHòDòl±‡»üC\ãb–\Ì\âºÇ«o·o\ÌMI]2|P^<qD+£‡Àœ_«÷úŸdþ+¸²%nþ\ÐG#HÐ´%Ü˜r„Ÿ\ÏÜ‡\ÊJ<¥\nÓ”—w2´§ö\Ã\Âñ\ç¬{SU%ö’	N3y‡\Êu;°VD\ë™\ÎÁcmWH\ì¶\î\Ñ\É\Ò\'KúgRü\n‡\êÖœ\Î\åƒð#ø](®Q\'n\Þ¢¸y—z¶Ma¿\Í|¢®‡ð\Ï\×ÿZ„83P#\ê\èW\Ñ(P)ö‹\Ó\ç\n¤\ÙôÕœ‡ð\ã£7|š‡#ü«|˜¤‚igû˜Šª™\Å\å´‘‡ù\Ø>³=ƒthº@~1²J³\ÑÀµ#x9QªbvL\n\ê‡ú\'¬\×bþ•rL¼\r8øÖ’\Ø\Ò\\„\ê\Ã\ì’8˜¯c…Iˆ…~(0\Ò; ZÅ³‡…4ö\Ç81‚O ikù™ÿž’ˆ(r\éô.PÆŒØ¤ö\Æxº\în±®GAh\ÍY\ÞIå£ˆ0\ãvü¸ž6³°¬-ù€ô£Wk)(yó–jRvˆ5Ó“UþÄ“*\Z™°˜\"\ÂLv\Ñ::	ÿ\ÆÈ”j\ÊF»¯ˆ@V:™2GÛˆ\Í~O\É\Ü_iS\nJ£\ìI>)õD3j\nˆEòšI5xp\Ò*I£\r!£	Pif«Vq\î‹\×lF\äDˆVS³><\ïûÉ§X[\"v-V€¸ö!º¥vŠ[\è8ˆeEÀ:B\É\äÇ‰ñŒ\ê”8!\Þ>E™ÂšaC\Üt\ïˆe©Q‰s›\Ç,Mz™\ÖX{ð®\\[º(HfCP”A´»vˆy5\åª\éÿ\ÒF·\Â\àµ­Y^´ª\Ò\ì\ã4}ù!?ˆƒýøø\è‚\Ú\n—\0÷­\È<–\Â8h,O\Z_°©S\âAáˆ›~nD¸m \ÎnC!Öºù4\åK…™\ã¸)Ý…Œ3€_Êˆ´\àö_¬1\å[“”\ÍÀFŽ*›J‹Œ¾@-©$¥Þˆ\ÃT˜‡€$\ïTD£MR¬ë…¹£~\ÈF-¡š5®é™‚{ˆØª\0†÷Wx&¯_‡	3g_`\ÆB\Æw½iÁ[ú\ß\'ˆ\Û\nT\èT\0¼Œ\"½«-\Þžv	¿žô±‰kþ°ˆ\è¶Y›d4 ‰wº£ñª°‹½ý;/u‹)Ù¢X´\àÀ\rˆ\ìû¤/_o\Ë¡[’¤‰B\Û\Ç\Óó\nKKxm¶|¾\çT*Hˆõ9K@k‘„df«\ÇÿdQ0?\ÐW*ªæ­˜fa9ˆøÙž¤Ú‡š·]\îS³Î…HDWIô\îF\ã~¦\ç„°‰<X1g9]=-\ãÒŒ\é‹ýý>\èÅ¡0Á8(ô¥š‰\r4hþHÅ”\Õ\ÓHøblƒœþ¨X¶T»\n«\0y\"‰aRTf‘þ\ÅB-.\ÄRc/“nµ\ÔMœÀ—,=g‰$§(}óB\âÝ®D–9i¤¤@¡”‚\×]dEÁ\Í^‰CAm”\Ë7ùtb¡vù\á[5\ê\ÔS{G\åR™i®6‰K7ø¡3!˜\Úþsºtˆi‹q)Õ¸J\Î\\(\'UÆ‰LÍ¤¦~¦†™[÷óÙ´‰;R6ž¿‚y\Ø0v ¹)¸d½‰R\Ç\Â/¯\nfJ„\Ãh”vi5ürr¹–\\z\"6¥q%	!‰k˜—ýQ*ú;MŠž\èÁ£°uO*¼§\á-\\jµ‰mkeŽw[pÔ¥1\ã\Ì%œ õ¸7c©p!L—7wg‰~\ë]\' \Î=,7þ9‡v…•\Ü/ü_—¾œ!\ß€P‰°wS5˜ \íb#fJ\îW¾neoRÞ¬´«ôA¤\ïW_fE‰\Â}š÷*B+¼\ä®vÏ˜D-\á@Atw‘›r³¤ôF‹N‰\ÒR_\éþ\\e+›\Å!¿ ho\æ¬\Ê%9Ó­\Ï¬‰Ùƒ\Ì	’–§KW¤e2\ÔP¯\î¾‚–[\ç, G\ì‰\Þ7oˆ\\;›\Ý\ï\Æ’CÁ(Û”ªH\\Ý˜9™\Èfõÿ/‰\å‰V©ú•\Ó|\Ù³\çøiöˆ¥¨3<Pin\Z¾E«O‰\ï¥Vo”Cu	Œ†\ìš17,s\å·u¥Í‰v,±¿²ü‰õKóyJc¹eò\ÅF\ÂG\É\Õ\î\Õü2Ÿu™«]\"\\¤‰ù#3\î\nV\ÜdH-SLö86Ý¶\ÒÀ;¡›6\ß	‰þ\æyO\Â\Ï\ê\Ï=\ÃP\Ï\åoŽ½\ßÐ£?¾”§Š\Ûbu—\êùù\È×”®”­®\0ÿ‘G¨\\%´A\Ì\Ç\èò\ïŠ\"õóû¸^õ\ÐcÎ¯\ãûk™\ÛÜŽo\ÎTŠ+%§\Å$\ç\Ã[Š[\ß/tH/Œ\Ä(ÝŽ2‡Š–°\Ëeq\Ç3ÛžH\ë-X‡Št? ÿL›\ÑA±ý$G¢\í?Cž¤¿Œqêœ†GG\ÚTŠ|\æP\Â:6«¦hL6^‰E„zPu ²–K\Ã;lù)Š™„‰ª¸cÿ\ë<S\"²\ÍU\ÎBIï“—D\nm?‰5øfƒŠ¯ð¥‹¤\"M¶£,\áO=Ÿ\î:“ G\à>êŠ´þ‘¿m‚`!ºl{_,D”‘L–\Î+\Õ2€iþ4Ç„ÊŠÅ…´ô\ë.z;£ý& ¨»\Þq\é±\ç¢Ã»ˆ¯9Š\ÍýÔ€\ÙjÖƒ7\nT¬\ÔtiC\Üb\Ð‰\ÎOKñÌŠã¯¦0NV‰¶É€k\Å\ØbˆX9¡ý´¥\åQ\\ª\\Š\ìmˆ\Ý,z¦oôºF\ÄSI‚aÁ)~óa\ÔF\í=Àö2\å\çŠû\nð)©¾œ\Ðò\á}$\îþ¦\ì‰Á$÷•¹N\Ü)‚”a\ãûŠþd*\'\äI<\Þ}‚ª)Ø»Pª*l¥—\Âw‰ˆKB‹}ÞœõúÁ\Ãs2C`»ÁŸ\Ýh`W\â>¬®‹!•\í\"8zH›0\Ñi¡ ž\ÄV(‰+Àûk§a–Pµ‹)ºø²2\0\äÕ’\Î\0‹¾ý¬\á·Uø\Ò\ä(r\íbwÇ‹9k\"m{\ïR\Ø7\èa%,qºJM0\è˜\Ïw\é)\å^¨¢‹_Î +£\"g%ç”–O0û®[!·<I9\ã\Ã\"¯žN‡E‹hÜ•AOk> f5\Ê\Æ9%,ÿ<±\×\îš9;]9Ë²™‹i©\í0\Õø\ÌIc\Ó;\Æ\åÆŠ\ë\ß@ŸpÐ¥P\r{I\0‰‹‘ÿ(<C„£¿y…µ¡\Ï¦]1Ô£§Ë¿D¥Grcò\nË‹\Ï\ÊpC3Q3®\Æ#9\\\n#I\Õhq24›>šM{‹\Þušs½Š’¹!Rd/ýhZSóC	î›“\ç]_¯‹ûW¯-{\ÙWFùvòv4[\åi?ir\ËzG\Üöa×Œ/¸\nÙ‰Ÿp ±®R\Æ?61».x¡‡l‘ö\"²>£Œ¼ŽÜ%|o¢Ê®o3ƒú®–d\Ý\ÜlÝˆ\às9Œ?9§\Ü:PŸkZœ‡À¤I%-ö\Ú\äûU¥?œ·÷Mü$ŒL¹eŸâ¢’U_F=\Ð\ç`o^™FpiO@²·^/¦ŒX\røñû\Ñ!\ï¹\Ðh“\æ\Ú6K\Äw?®¡o=—7Œoƒ|<\Ù\ÕÔ›R\éSª\ÊKVQLn­„wŽ—ø©÷\ÎrŒs7gø\ÚxP0¶«™µˆ\Ê\Ê_x_ùûzµÖ“‡ôÉ¥Œzdó\Ö\ê\ä^ŸÐ§G\Â\ÙDC.%\Ì\Í{?_\ï\Îÿ±zñ¹Œ}+\êiU&4cü?=Ý½“òK\èD`‚(\ì$Œ‚(\Î[\Öä… @h9<}\ÖRù=\Â-ô\ï+K…[\ã;E¨xŒž-É©\È\ÛH\0ÿó…9\Ók°]À4:›B’2\æ\Ç6eŒ¸@^\Â\àIÍ®\âs¦“Š´·¯LŠ:}|9óÆ¶¼KXkŒ\å¥,k\Ý x”÷°¸\É~6uz°`ØŠii–7òRµŒú»¡§qø\Û3@\ÍónM\Ü\à©5Ýˆ\ë7¥-7¤Œÿ”#“K…\èT7¹n.…=\Å$·£\ÎqYõ¸\0þ\"M‚ú\å(\nOraŒHQ°ù\è61…¬%ÙºxŒO[A\Í¸ú\ëña\Zð\"`Òƒ\Ý=È±RvH‚m†…‰f`´ü±l¼sžW¿:’ù\Ûuù#£†`\Ì·O¼Ã“z,ö£û\Ðn_­©BB\Ô\Ð\å\Â\nµSd3•–“Wº\çLš+&ùìŒ‘cD`§_«e\ßöd£vJNá•ª¥À>bg2†ŠZ•TH\êF\ÈS}\í\Ò\×!*‚rUj\ß\Ík´¤$4mxY¶J _‚\Ã\r\äð\îkø\Ç@7\ÔWð	\Úñ¤$w(\æ\ÒM€P\ÚX…†pC\ì}\Ë²û˜ù\ãýÝª¨V.¡ŒWPr÷™\Ä\ÖE!\å“oÏ¦¬¿½IŸ]§1PCN9\\¼f1	2³vvm\ê\Ã\Å^L®\ä§\é\Ö\Ð\×yf(¿_<>MÐfv‹€qÁª\r´‡7jZ2¬)i8›&þ\Ë<0~í€t&ubüvüÀ\ËZÑ“¯®\Ûa\æ©\î‘_I\Ó\nBƒ¸cyb€\Ëi¯¢XfK¦×»Z H´\ãWrµRkL\Ò\éCÊÚ›/\Äx\0œ\ës”-QÛ³·¼\è\Î\Å#ø\0\Õn{‡óò]\r\ÃWÀh0\Ù@\î²=\ìrþ\Ø\ÏIKÔ®ˆþ~gÄŸ0\âÈ£)!»Œ„Ñ±\ãK&\Ø@<“\n%	d§>?‰G\Ög\Èt!½3]#Þ³jN7\è£ž|\Ý\Â&?¨Ç°ÿÕ²bš>\Ô\Ê\à\ÂÀY>r]™b¾ƒŒ¨Ï‡3ƒ¢¬õ\Þ´½X\à´>m\Ý>\ÐÃƒOUy‘vò†H\nÀ;\àQÄ±g\"·¢©WAÒ§_g\Ó\Ûs\ìˆ\ëUþ™M’œ-Gm\"¦\Æcµm#{œtµ\Ó##Ÿ‰!\á6­\'D„«óõ!¢õ£\Û\\Ö¡‰q\â<pZò«÷«¤q3þÀglóª™›°#¤i\âU\ËP£¢\Ó(sP°™g°‹´\ãÿ/Dgˆ}‰#÷\Ø&\ëŽH\â3\Ä&XwÒ¼Y»\Ï:z½ q{\ë\ìIŸ†<\îsœ¸­›UxŠtW\ËgAO/©’mÆ°Brbª,\ç\Ì}Ž71‡–­ÿO[¡“§ž\'G\çº\ÖÁ‚d7z\r|¤q-[ŽIvù\Â\Îx»D!\ÅfÏ–\ê\åc\àDFC\Å ]•ñ5\íŽX»Q\nx¹\Ã!§s\Ó\æTªŽ„ô½P\ÄÂ¾\ÚT1¤!Ž`µðB\ÝIò\ÙrQ˜µ¨q\"‡\ã”Z¡F´~Þ¦-\Ãd±õ™ŽlW\ê“]!“r†”t\ÊT\Å$MKP\0â¶žlþ¨O\'džŽ‚]<\ØH\Å\Å\ç\ã²Ý§—‘rø@Xa‘’\â›\Ê\"cÆŽˆ| \ß\ÍW00Rõå¬¶8³¥Nh.¿s)\Ý7\0;XŽ–\\\âtª‘•I7ž\ÒSc4,¢O/`Ò»\ÆŽ¬õ[%pP\Z¦ý›\Ó\ÝcFš\Øò\í~¨c£¹RøË†Ž»Vi\êM\àJ¹\n12\Åô\0\Ý„´\ï¨x1€Xú ØŽ\Ä\r\Ä\îT\é=2&{$©”Æ·`z#?@ø\Ì\\\Å\0uŽ\ØFö\ïMG‡z\Ùû\Ñp‚	û\ê(‹_™\ßðvÁ\ÑÂ²„ŽÙ@þøkr\Ç\íy\ß\Ü~¯ˆÄºC9l\Øxu@÷\Ç\Æ\áŽ\áH¬þ\È\Îy\á>7·\ã\ÌH\Öf²\ãF\Û4·«ñ””<\ZÅŽ\é‹]sL\é¢óoxEl!\0œ\Ï\Ïü·gUg¦\ä\nó‚ôGŽú†v\ãžø½\"…@:~‡CGôKE`\Â^-\ÔBÁ\'F*òS1?´||\Çwôº–¥~`Uaüð¼\ê‹=\n3ƒ-‹:o‰RFñ*&ƒ\r\ÃJs\âJ§¤ªˆ\rd^\Éš=P¨šò=Áy\Îp°\èy‚Pôÿ\æ\å*u]ÿõ«ž*hYef\á\Å\Ûm\ÃVr\Î%£\Ï\Ö)Ó‚x	©\ëc\Ý`³9«y\ÅD#\îøo\í˜\×\r…—µ‡\æ\ëp†j@\'û%\Ó÷š(ð±‘¬§ð„\r‹\"`»4¡\ë\Ö-XoœlKùk$\ëÑ¯„fù7yÓ–‰\ëus#\ä†i$	…\\X„i „™</jÕ½\nÚ¦*Ï’\0œ+\èØ”% \ÞVé»‰\êŽyw¬\Z1\ä\ì\Ì1•0+ôÞ ¤\Ù\Ü]ø\ë²  “ö\\¹UC_sð¶ö\è¿\ç±!)\è~Í´Ý­ñ>\Ö\Â\Ë¡Q5·Æ¾œbós\Zp.“(Y*é‡¨u½’%y\Ç\ëy‘eðS¥÷h\'¸:‡‰üx\\\Â\éF`f\è¢s¦\ãBX#\ÄM¬lŸ–\äW\Ê\0\ê’#ó_ó\Ý\â\ÅEÙœ\ëL‘¸‹]Z2Œ}½ ~8fH\Å\ÕÝ§¥„O´wžˆ¹$}\äöjEƒkw$Øþôh|¡\ç\ëaX¥x’NGñZù‹n7\ÂRstÿ\Éðº•Å°\Ôù0¿6<W¡U´.“s:Iù>ýÀT-¦\×6fO°\ïlb]\Æ\â9P…\Âð½…Œ\ç@\Ê1\Åü^xz\ë\ê\ÙoU5¿e2yþü)qŠ ­n +÷£â¯„U\È0i°¡\Ûq¡¼Â ,1Ã¸ÏŽ£\ã,°…¼¹™ã•™£\Ð}@\íLÀ’‰(\ßÍ™VZ—g«­|_}\ÐU)©³87^»*¦S$ @Køò•^/T¢°\Zª\é”2µ\Å\"\n@+øª²\èü\ã\à\nV)-d·˜ Ž¶Cù\×+v«˜®5Æ¿^\Ó54­A\îlƒ°es¬ú¤ú’^Ø×¤š Rú\æc\Óg\ï\ÚÓ€\æQöÛ‹\ì\Øc÷@´y¬‰‘Ð®*•]a²\Ñ\Õ/¢“>^ôo</º9?ò©¼s‘®‘:\î)\Ù1§\"€{/†\ïpTj\ä®Ù–\É\\û‰\Z\Å?M€‘¡\Ð\ân{1)\nü› „-‘Q\ËG¥\Z?ZŽþ}/3‰‘\'“õ\Òl:\Æ9±w\â):Iõ™)Â‚šÌ’]O£‘C\Â{dv”c^\ÙÌŸ9\Îe³§Q‘\Û_ƒWo{_‘T7\ÕQ\ÌÊ‚…÷\Îwû L.è°‡M ð\Æ\ê=\äBÖ‘’\r\å¬\0AtÈ‘N\ä\r¢ý>§-¦-bmYUMe˜‘¼I†¦_i ¤¥V¶\Ø\ÄHˆY(ñ•o\Ùß œ\î­Á‚‘ÂŠ!°k{ýustÙ¼Æ’‡l|ý\Õazªº4‘\Ìñ¦5š5@	^\Ên4\èk«¸=ú\r	»_\æK–\Þ\"‡\ÞX‘\×]4—\ß@™ð´NS	ª\Ñtžw”Ò ÿ÷aF^ýºû¥‘\ì\Ë\î–˜\î\áE!”\Ôö@Z­[\æ|†\ãi(~’LÿiEª ;¿’ŠŠÔŠ\ÔR‡yÑ›jp²]c?\Î\í’\nT°”£MOmK\Ów`J\åúñ€\ç\Ü4/ww-6\ÊÌ’ ž½q¯nJ\Ð0\"dJÝíª»‡R\Z5\Îò,¥jd¯’\'Yˆ²BcH‰7*Œ(ß’,\æ—$Þ©\Ò\Õ\ÏkŒ\àš’3`tmœ«ý5^°7¡}´M\ÒR€`ý-µxñÉ’c‡›r\æ-‘AÀ$\Ú:T¸þ\ï\ÇV¬8&óE\Ã75’q\Å\ä¨Y\æjY9\è\Ú\ÜM–Hž›®•\îEX¸[X²’›]@Gš3¦¸‡:Omo]?G¡\ï[¶!YŠÖ’œ\áõûSß1Ö“\Ñ}ôd\ÏQ*£t\É/ð‡^RÃ¶Žµb’«=9¯ˆ¹@ˆ\Åd…“£\æ\árŠ 2H4\×ÑŠ’®JMB\ÆòÑ¦«}\ã\í\r™20‰2h\×(G:\è?{’°þr\"¸\0\'5\Èw¸÷Ý³ó™t\Þ3c‘4­Y\0VI:>	’\ÍX\"ôFq³—U¸{–\Þ ¹iM$Ìµ<‘4‹–lûñ’Ø¤í ¶ƒ8¶0”/\n}¶J`3¿cl6\é\ÆH¹W“	’9z^q-ö¦û7žš\ïŠ6,‘s­vÅ„Te}´¾ “5\Ê\Ê;³u\î÷+\Ä,3.¼¥-ŸÃ9š#F\ï\Ì}¢‚E“\\c\Ö>k,-—ª\rhiþ\ÞIZ+^ ÀF©Œ”F\ÂV“\'$$˜¾It´üž¥ý÷¯\ë\ã&k\îû -–®8l„Z6“>F\ÔYŠ\\3§œ8\Ã\åfÿG\æO\É\Ãp>úKes!2“Y¾ù…f«xM—«Àw¦|W$\Ô<‘&h\Òñ•§\ë70€“k7\ï·N2wF™ŠuO4-@c\ët¢É·3´(°ü“y\"“/S‡5\à øü¯M3ü8¢i¯)BC[\ïÜš“~”ZW\îÀKŸi7ø‘/ZŠŽ¼\ÉªHz…&‹0,·“ˆ°?R-\â\Æ\Íe\Åj2­#X\íH¶\nd³5\0Â·¿“ˆ\çô¢x¹¿\"}\ïv}¨ñ\Ð\Ð\Ñu0\n\âM\n\×d†¸>¥á“Žƒ@,z\n™Œ¢‘&ˆ\Ò@]\Ö\ÒD\Ý\á6N‡\ïI\"\"{\ç4“–:g¡²þñ\r®¦ŒIýS©\Älž¹Ð£­\Æ\Ö\ï/“¤¶\í¹m~…Yønró87Áð\Ý\ÕEC\Ì\n·j1s\ÕD“­\ã)U\Ç@\Õ3ªkó{];š²\È\ì‚Ä‰·aÕŒ“\à\Ð\ÍQôd\Æÿ³8ý—k5¸ƒòœ5ai\Ç*\äUW—÷s“â‡¸s{q\ÃúœKcB¸Ïˆ*›œ\0\å“&Æ¼\0?w\ío“ýÑ˜SŒŸ®$¤¦€\Ä\Ð\ÔG†í£º\ÆJNglc^”^HHµ\ï^z\ç\ÜS­&^ »žF”ñÞ¿hY;\ÈknÝ”|\ÎTS\ä\ÌO¬cwž\ÜñDÙ›Oei\è\Íj3O\Ð)”½oœ®\Z`N~uÙ©\ÉbžX–\É$öZœÙ˜‰”ÀZÝŸi_ðô›­L\Æ5>©}R%ÁZŸø\ÅA\â>\Í%|”\Ò\Î\í´Á@Ö‚p¨w\Ø\ë^õ\Üo(‰\éfPk\"E”\ãÕº…l5\ÑzƒZ†«8\ìÁ\Ø\à\Ìqªº½}\r\Ï\Ð2”û{\Â$Œ\Ñ7F--sâž›G2³,aýÀ\î?‰\Üd•Iu3„\ím§òôK=ðøž\ëV\\‹±Ô‡\â˜|¾\ÔÞ•9\ÒP¹T—\Ú\ÊnÕ¡c6‚\n\Þ¢‡{z®tŽ˜@•;=¤JMòZ\à\È}`\î¥\èó\áÁ‹‚ùà·¬e÷~v\ïJ•?š\"/†i´\È\r–<H¡i5\×+:~p1K‹G{Æ•`\Ø\ÍÝ¸¼òÂ¹\r?’† y\ît®bg\É=!Ó«¾ò§•ˆQ6À\Ìò9¡…`\"-tPƒ§(cnƒ\×/˜ù¿\æÀ>š•œ)b@HOŽ€?þ¥5>PQ¸\ç	\áµFšç¼ƒ\ì`•ª\'»\à%\ãYˆÀƒ\ê©•\â¸\Ü\ËoÛ°&£d\ÄtQž§•·À½;<v\à£\Ä}\'P[ŠY%/?_@­e¤&«ú›•\Ðý†û¼\'³õGpp2[zDªwN´½\ëžjúÃ•øX\ä=¦Ð§l1Y˜^²2x\ì\ÄO^ú\è\ä¤\ë;–?L\åu5Re\êv¹&\ß\Î-”kUobE³…\ÚÀ–7Ü¼øŽóðzL{·\Ô{·M\ËTG.{©‹}¦)¦cÀüž–I\ë ¼+@\êÿ±>H\ã¦#qL=\ì\ëa\Â.”cU\Ì\Z–Mw‰£¨\æ\íòJ\ÍÃ—¨ ú·õ\'bš\n\È}\Z–Q!£\áx˜‘\r5±\Ù\ÍDQ’U\ä\ÔKÿ€Ü……±§Þ–‚À:(O.Xi\ß+”&	õM\â’E\Þ	¸ˆ¾¬\èzFg–Žùo¢1‹ù:‹Ñ³\Zž\É\é°>A¸\rq–ù7–•0O|Á%6`	‚PIŽY\ã;I (\Ë\Å¦Ï‹Y\ÎÛ–­\å¼uf/\ÝZú¼\r\Ò\åÿ\áGüs<\Öh\ï¬4\Ò\Ñ–»o\ÉWxôª³Ûº!\Ñ\ÙMz0V_.=*ym\0ø–ÁCª{!Y\ÃðR¨†a²\"¥š	`F?Mˆ\ËU‡°Ç­[*–\Îa:\Ñ&·3Ü¸<u\×LJž\ÌP†#\é=9+Fñs–\Ô\Öq\Ñ\ÉIB§¾:®U{G@\ÔBš\í=\Ë\Ç\'\Ø\Ö&È–\ßù‰fC \Ñ~ø.§n,ˆº±1`Ÿªo9]\å¦k\Z±¾–ñq4Ù±x¿ˆr°ó*ø¶Ó¦wŽR–Z\Ò	›Z\ëJ–öh>\ÔE|7´ˆ\è\Üb½{\Ñd±ð8*\Ú\ÍY±\ßyÑ—B.÷ºõ\í*¢ó	òlò2Q­Š“_d_§\ï,6—QñaA[þØ²—¯ý»\æ=¹‰\Ø	2þ\âm…í¼Ÿ—@\ê\ß”>\Ê@ATm~FmÓ “N\Él\ãl>\èõh—I\î\É2Y¿\Ö\Ö!ƒln}¿°1d\åñ¥Z\Ñ\Å\Å×—K´7\çGù¶÷\ß?-U>˜‚»ººƒ\ÑtQ\É+q\íKz:—n\é9>‘j5§\èdñ\ä3\Ëû=\Ç’€˜Y±¡sNqq—p\ëc\×ñ\ÜuÈºtV5\ÆÈ¤m9\Z8Œ°Œ£q}—u}oƒ8>&©VÁ\ï½ý&N\ÛAµ²ò,\r™\ÌjY—‡\Ø\Ñ\ÒnxIv\æIv°òóÔš\Ð\ë!2q#&aˆ“ñ;Lù—ˆÁl¯ð\Ê$\ã®d£š3\Z\å&2\Ô	%¯\r\Ì%~Ž\Ð\×W²—–‹—+n}ˆ\Ò\Å`”ÿ+j‘\Ò	þŽ\ßQø¨C\è——Pf\ÐÔ¥®\ÆE¶†Z\ë‘N%‰\è=\Ð\Ë\è	\î$¬É—œ\Èó\ç\Ø[\"!\Åv\ÕO\r#-óS\ÕZ8(ÉƒA\×Ò·‰\äh—Ÿ\Ù\Ùþ\Ä\á\É/¼°v\à\à.OÁ¼2žW‡¶ðÿ\n—»úd\È*\ÂJƒ?‘^wŽzTŠGÐ§õ,€„\â\ÒÄ—\Í\Ä\n\\yq\Ð\Ý#1­˜\êŽ6¹&Z\n8ûÓŠ´‹ý—\ßUuB\åà©‹‚9úEL\Ôa=\äT\ì/û\Ð8Ž,i?Á—\ß\Ã\ÈDò/½ ¶-\Å &~ô\'É‹‰œÝ±ÙŒ»\äªÀ—þ¿\ç\Ï]‹\ê\Æùÿ…‘œ‚\â¥!zD–W+õ®µjJ˜\ä\Ó(r ]¤\Ê\n=+À’\ÉWU}O/injõ4\Çu˜9“Ï¯\ã\\-£/O²\Ò5dXS^\í`\æM“.˜N\ÐS±I\Æwº*‚/\r\Úiüw\à‡lžüµ%\Ñ7˜R\êc(òZ=m­±ƒ“\ÊÀÛ—šAù\Äñ\'\Ìj;Š§LB\"˜^\Ò/µ±:Ž¿óqQð\ÆoB\ßf õl¿G2ÄœŠ˜w¬`’wþ²”n\íõN‘¢ÿ3=\ÛÍŸhKr¿rºi˜ŠòJŒ‘8¦[úC=S¹Ñ¡\Êk¤\Ó{£\Ï[„k˜¥\ìF€ô`“Rl>§\Ä)í“†o\É8³07M¥R\×n\Í\Ëï˜˜®}\rÄ¾E~ú¸\ÛóÅ’\r\"\'—ì³“ƒ04¿tbt˜¯w\ã¬\ÕK\Ò\\\ÈiU¬VD}\Ó3yøœ(\å\îsŸ¿$ÿ\í˜\ÊT\ßç±»a‚	A²a½ø| ;žTróÉ¯\Í(£˜˜\×&o{÷©!¥ùû2\ëoÊªŽž\Ò’º\çD^\Ð¯D1˜\ï \n\é\í¬9\æ)Kb}«Sƒp¡\Ê\åŒMcPžAYX˜ñ\Ñ+{^\ÇÙ«X(òß› ‡“«M[\çø>ò\Úm–M˜÷¹C±«°\ÙôoMt\Ë}\ÑqqXA\ÖiYQõ\ÃMÞ˜ú\"#¢¡\ØE©\ÉòJp~&w«¡»¡® \Æ_‚„Ú™6=«\Ç\ïuqùe4_oq–\Ö‹tp^B¥a@^#š™$ªg‰™…Kýd\ãù²/›Ä—5“˜\\H½Rø\Ô]\Ü.™H%Eqùù\ã\à £Æ©cnœ­Œ‰\0»¬µ\Ç\Úü»™QÇ£d3ME\çD\ß\Äv/óZ°_a¯!\Ñ/.\âA1\×\ÔÜ™V®£ñs©þ|\æ\Ì\Ñ\ÂbPo25\é*ŒS\Íæ¤ž6§™i\â,\æ‚\ím»O¬¥#½?Vb\È,‚C-Ü¢cÅ¾\Zh\á™pˆŽ\ZYvœ1]@Ã´©ó¾õø“\Úy—$]‚\Ô6¥ÿ™y=¦¬Ág\ÎÖ˜þ‡\Å\ß\ÉeŒˆQ›§´b\Öþ\\‹™\ë\ìo~†Ü‡÷] OL÷HP¼xò	\Ý9lK³S§ï™™’#ô¤ün\Ø6¦½@#Gb\×bµ5_\é*BˆpX¹\ã™\ÜrV\Ãw›\rAU(–\r\Øbe\Ë&U6[†¯F‚#`l\Û,™\ê\Ã[u\0T‘9££\ß< 	cò&A\èw¼\Z\íE\ÎN\ê™ñ£Y°—q\Î\Ü\Äžiù¥6§-%1LË­Ý;\Z\Íþ™øò2’\ãuY\ë@\n’¸\âW\èÜ‘Ðº¹\Ö%?¡\í¾òš‘Ÿ–;…`,\è\Ò\ÄCÁÕ‹ñúB\è·xóøŠšVõu(|\ë«/§ó9¬µ´ôJúÛ@û“¤hyš¼½¼(¤¾K\Ë4š\ZU Œ+h÷±A\"ó?ò_6GAmš\ì\Þš\Ì\è€!3¿h\Ü„óþ£\"\ä\ìVj`\Õ’š+\ë*G\Ð6j\Âq`8\î&R1`\Ù\Ïóý\r\Z{\Ûøƒ š5y¨G‰\\ú‚\Úñ0\É\ìM—\áx[\Åø\Å-òýª¸š<P6Y£‘\êE\Å[3oHSVÐ˜\ç E]:S*\ÑËšD€ÿ›\Ï{vJ¯\Ò-C:I\ËJ™*H\Ç]½˜˜9ý[šFŸ\Ã|A9»’x\Â\Ú~·d‚r\ì\ï¦š[;\èŸ#;.\êH™AÛ£¿c…<¿\Ý\ëEp&U\nš‚OþÁKE\ÉrñB\ÉÁ±øÊ³õgU¢\Þ\àa1/•ÀqXš‡ûå¤ž\Ëd°‡9SyrCT\0µÑ«.Í´Yb\ÛjNZ¾Mšº¤\ì<hýÁs±Õ½Iº–\\Œ‰\è5\'Ð›\ßLøIÀxXš\È\çò`ö\ÇE…Ñª\Ð\ÙB+‡A›™p:G¶Á:˜\Þ\å,š÷\ê–õ\Îra\ÇH¼\n´\È}`\ÕR¡±N\Ô\è·|\Ç´”:G›w&×³\Ã?/K$^ce?^ZdO#\Ö%¡Xx\æŠÊ†¯¿Æ›-F8\Ú\ãyŠ“d™²\ß]3\Îf^Š\éœ\ë6CøwƒÙ›;eRvªŒZ«ø[2¹ˆ\ÝÐ­µAŠ¬>•¢¿6\ãBVW›g~xˆ¯\Þ¤¾!\Úª\Ê\È –÷}+¸`¿¸™\Õa›-Ó¬3+¹†À@w\ØFõ\Ý_+xË·Ó€\Î+\'C\Ï\ï`›œ&¥œ\ÍoB”h\à\0”6ÿ„\Êú—6½+£\ìu0†›¢ÿ·\ë\Ì\ç\æ¥2šÔ­p\Z;¤Di¨\Íbi\á\"r\Z@›¥!:»–M\ê\îuüYSê¥¦š%Cp‡¢¯,\"G†ƒEN›¦NN\×\ßL/•4\Ñÿ\Þp`\Î‘\á¸\Ø41½úP›«‚c\é\Íqõ\Û27¿í«¹\Ì1\ÜI±»\Ê^ªÐ¦³›¼Dv\ÔnZ\ÍUÿ‡C7Œ¸òôUpx, w´ºŠ\ÇÃ›Í€úvNx\Ìk¡l¢fB2ò€½Q²¬W½kñœ´UÚœ\"**\ëðöR”\èð\ëõ™¢§\Ük˜h\æ\ÏW`­\îÙ­œR|¨5µ\Ò\ç˜\Önu-\\\Å\×:ÔœY\'KöFŒûƒœ\Z1Z¹S%4\ä\éüVb*P†[°±‘™d8geÍ½C\Zœ\ZS\ï­j0–‘13\îÁ¡4]\Í)—½\Õ\é\ÅÎ¶œ\Z]–(\Ê 9Æ¯€Hü¿³x\Ñ&®F\È\è\"§=v.\Ü/|ÑœK0\ÜÒ›z½ú\'u\Âz©¹u÷¦À¿«`Ì¶$Ëœ\"µX\ÐÁ\å•\ê•\ïMN\áÍ†¾&øVª\'#Ç™\ÌO¤‹œ0\Ø-kˆq2w¹Sc¶³š¤?d¬\ßU\È\àõH\nQ7œ3hÊ«\Û\â\æ\Üm<¢\ÅGM]’3¹p+L‚¦—KNÇœHRfžµ$\Ç|\ék´«|s\r\Í\ßúÌ£64\r\ë»IbmœH\æ?ÁC\n\ÇD†\ÞÔˆ\ÝÁt9!¼  ‚\Ãø¢Á\ÒD¯œWò\Ò~šò<~\É\ÄJ€(“\ìuŠâ˜µ\ÎBþ&š\âOÁÁœz³•8Ö…ÜˆÜˆó{sf\Ñ|\Âß¶­\Ü}~ú(=5\æÇœœªç‘Š[m \Ñ¬ž˜¯7§ ƒÀAmÀ¬\Ç\Ø	,œ¥¦„ùL…CTœôNR\×€Ñ‰”@;\êC¼Ou¯Jœ±¥9Ÿõ¨¶˜®\"ƒ\ZO°Ï§Ã‰\á•Æ“‹{OýNrœ·\çX«\ë˜\Î\æUé•œ¤Q\ÓÙ©\n i/$–\Û:t²niœ¾„\ØKSf\é\Ú]\é›c\Ç\äÿX\nn\Z„÷ÀF³œ\ç\î\æ\Ñ\ç÷€ˆp™pJ„\æV™®ð¬ŸA#\\1\æö{A…œð \×Ã»§õ«Í¥J«\ï“OmOš:Ï™\é\ç\Ül˜W–5œüTŒ2³\îƒDB$‹^Vy\Úg¹½É™~ú|§\rU„\ÐtJ\Ö`†g04	n²\ÈÕžF\íLZ³‘ö\Z¾qQIW#(4¿\É\Zòb=9¼úø-C¤/s‘#]®´:œ\áfR-_®\rX›©ñ\'“€\æ\ÛrX4<V;G‹6Ë®…CÛŠ²%G´8µ\ëóq\Ò)Ï¥\Ü\â£vÇ¯j7Z›\í÷\"S\ì\èe\ë(š¨µ«$KVC‚\Ü\äm[\ë;†W8<{b\ç\æ\'\ÊÅ“…\Äq`\n‘3Ÿ\Ýo\ÍÞ³B@8õ†JcÃ½³\Ån&VÉ¹Ÿ”/[©)Û»zƒ¤[Ž\Ò÷gö±E\Ç>b`*\ãe·\Ñ\ÐN¾Ý“¿\r	\é´ûƒh\Ç\Ð\ÊHjø\Ê\ã	g\èQ.Xþ]ñŽz˜Ñ©*gˆ\àw¶€\ã\ã/^xGq1%S9\ëû?RÁ\æ°#¢¨B~²ñ::†\ãXò‹g5[m\Ð\åQÓ¨›CM.C\0\çW{•\â4\\vkÎ©ÀxÁ\Ô\Ø[í¤»%¡º–\í@œ\Üc\Þ\è\Îô©ÁÙ†#\Z>O\æ;\ìjGg\ß¦R0\Æ\ÔGl\àY(\ë\Ë\"y4‚h“/\ØEì‚¡»p°¡4¤3­37¬-sÕ£\Ü+\Íf^\Æ\Í\Þç…™\ä®z\Ï\Ú:³ò…–—¬\ÈF™Í‘–ºÃ\ÔÚ¢b?¯·ù£»@\×ñË¨ÿ]\èrH÷¤!À|ò(µa×«\ÈvC,üö\äT1>K)||yD\á\×pä‚¯\ÇóÀB\Ù\Ü\ç½£× #A.®{Ari=¿M-·þ?\Ú3u;­\ï\\™\Ü\Ý#\Ã\ÇS´†ù\ÎR²\\¹;\ÉY¥¶üßµz„›ŽCFª#L\Ü!N@6¬„9‘žj\Øc@%\à Üž\Ú?LŽ\Ü$bmjT0)±Ÿ\Þåº ô\Î\ã|ýlž¦€`$ \Ö\\{ó›\Ñ\"´º?~cj:‡‘¶\ïÃ¨Æž‡Ç‡ôŸ\0(¥8\à˜ƒGþf \í\ÈWi\âpJ©pMbVgž®C/ŽV!”W\Ñ\ç—3ñ\ßÔ¹i“9±\Ý*m\ÅV wž“©kZŠP[:\Ð\í¸ýUjB¼ÁŽ5†‚E²®“ ž$\í\rˆ(›õÔ‡þ~Y\ïG=C\nw\ê\ê…­9G)Ž\\–Mž0xa$k¸´Ù¥·\ä\Ç4­a&dkGS‚Ž#<›\Ëýx\âž>)\"&%qÿÙ£\íøu4ˆKM¿$\î¡ožºÝ­{\ÂA\ržQI\ç¼Qó\Z\Ó(µB\ß}O\à^Q4…uT\ìv¿û\î\Ö1žƒ•úˆ)\Ó\æ´\\Nz\à\Þo”\Ç\'\n]Ág\Z‡\çuF¹ž­(:\r\á¸\ÎS\Î\ä\à¸\Îl\ßV¥l&\Ñ\×r\Õ\\;;ªPžÏ¼¿ƒOa¾Œ¿\Ô\èJ\æ÷\àaE¼Á²7\ìdh|˜ž\àóŽ«qBù\\)6Ñ¾pDÁW{Û“Û¾!$Ê¤5g[9žð\ÚS\í¯\äöZ6Â ž>ÿ),\Ì\É(…Eò\Ã<Ÿ––¯~û\É<©‡k¬¾\Ñ\"`	\Ôð¥[Ž\ß¬”Ÿ\Z)^Ktz \â`t^\Úu]\Å5\é8ipvk\ZûÜŸŽ£ª±%T’þŒ”®›1ž\Ó#§WÁõ$\Ð\Û)z/WLŸ-Z‚„E{\Ô\Èð÷ûK\ÊÑ­v\è·_‡§½_\"“l&ÔŸ3\ãI49°q¸\ÎŒ\á\ïøZœY¿FU	-&\"\Æ(¶\Ï6Ÿ]†•–\'\Ä\Ã:¸‰\áÀ\ËrQýFG‰ßµ™¹‡¢#Ÿb?ù–\ïy\âgñ	Vúi\å”Wÿ’\Ë\Z\ÚX\ÝJxÚµÕŸq*\Ó\×V8ð,x\ÑÒ¸\Ú$­Ý «IBS¥;\Ã É•8ŸŽ1ú°¡¬lL\'\\š¸ud€øú³jœF\Ú×•VQCŸŽ3›x)\Ä!\éTU›33Ws/wÁ˜q·\Æa_KBŸ´\Ó	.A»ô\ê‡\ë·Y\æ\è\ÞDµ–Z<\ÞX´m\ncŸ\Ðh}®ô“‚ô\Õ!\åaX\ÌÉ±\Ñ9ˆ \Ü6ó\ï#ÝŸ\Ø\ÈÁ{m‘]‘RWr‹Þ™”« ò¨V¥ ŸB™a×Ÿç§¦Fz™\ÂþJ³O#\Ë%ÄžI,S«M\ÄûVœ[uŸ÷\r÷uB„—V–\èo\Ê\Ó\Ñ\ê²þ¿\Ñ#\Ê\È\êIv4¯Ÿ÷dª\ï?¹\Ü\ÕîŽ„QƒlHJ\à\Ò6\\2\Äúmeû8(¾ \Ô\Ô\\\á¥0¬\Z%\ëhe€[\í\Â>K5\Z´ ›* VÁº\\”òz%\ÎxÄ¦Y1xYf[F\ãX6cÇ *\ÚÂŽuk…§;•¨)‰ógR‘\ã”Ib~¿\Z 4žV€ +u¨\äŒ÷´crù\è›>\×\0_\ßs ;\ÒÏ¸Œ\Ò\àˆB\áõøs\Ô\Õ1M—+J\Ø5C†$‰r <0”\ß\çÄ É‹[!Í‡é»Ÿ·\\dÁ5crýF‰ M\Ôô=ˆ‹ó]\ï\Ó^¸Ü©ƒ¹	_n=Ã\ã&o\\L P2¢ur±~o‡(\ï„M\à\ÊF\äS\Ç\á\â“*:l\Ø5\Z\Å> Z\åD¹rg\åoµEI\Ü\ÅH¼÷P\é½g÷”^ ]n\Íü0\Í/Ç¬\àˆ÷Ás?ÿ\ÛFü\×ÏŽ\ãI\ï\ìs˜\n4 ^ýT\Ù\éX\Ýr&Ô’l¶\ÙÁ(E\èC4)öö£¯Š\Z rK(‹1ÿ2\Ôe\Ô^Zrð#¹²‹–\ïjŽW \Öy\É5 ˆ-e	G¿_óÿ\åm» \Ðr\íƒ?gW¸¬Õ ³\à‹:5«W«\Äþ\Í\Ýb4#\Ê>)c¡ Su\ï\Þ \ÍÚ ˆñ rš¡2Ñ¥þ\Î@F?š\å&……\Ös¬~¿“Õ ”($öÌ».\è\Ý\Ã\×LxkWNg<ò¿\åöüó ™\\\ÒRgž…_¨ü\Ã1’\É\á3\Û¯)16œŽOûÞƒ¬  ^L³;¹¹Ë‹\ê.#L\è¤ˆI.½§]\æ\ãÿ °+ÿ„ÿ«\Ý\æö\é›\Þ\ÐJp«·(ø9Ù°X\ÃÎŒ\nð \Â\Ò\0’¡ Ÿ*p\É\ÄÌ•\ì^ XE†1¦¯oO÷ŽóôŽ \Ç3rß ð˜1nv\0j\ÄHÀ\åk7\Èq\Í-\à\Õ;C\Ù9 \Ç\æR\ê\É_\Øi\Ï$ª\ÏÔŠ¡ž¨•6tqm\ä\Ý4_r\ën Õ‰$u·*&?º¬e`=8\Ç\Û\æ”ò9\Çþ=¥\è\0½ \ã\åÜ¥±\ÂEµ\ÚÝ‰\Ê\ÇX8«\ÍYm	»\éãž‰\ÙQ¨­ \èlA¬§\Þ\nÀ!„g\Â\ëúCn|\èI²\âÁ#*\ß0\'p \éò‡Tÿ”,œú\ÅRr¾ºØ¡’¢ A—ö\ãª\î\Í5¤s¡ÖŠ©soŸÊŠ\Æø\Â/¶]O]\Ë8\0qg_€\Ç\Z«¯^¡“E’6{:,\';ðZ»B \â§c\ßÀ¥ù\å“NØ¡\"Âƒ!gñù¤»´xšu¼Eª\rûÌ‰8òi&F“¡?\åøw[â„Ÿè¿¢Z‘ \Éqü»!\\\äÿ\'-Qx\0L¡D™¿-Z#SÐ¦÷\í[%Éšl“³¡ñz*mÒ¢¡PW\á1ù \\>ÍžuLv\Î}\È:wž\Ñ\çP([f®\ÂÞ¡0÷¡[[¢ÿ\Ù\nudv8\ÔfŒ…\ä¡R»¶Dœlž‚Õ¡e»$š\Ë*}Ö¢Zhý\\w‚OW\ï\Úw\ËSi7¾G™;¡x„…Vù\Ù\"Œ\0’ž·Ý¤ˆÆ«ñ–¸H›\à2ÿ`¡zw›`oi0\æVj\×\0ÙŠ\Ðlj.\Ú…Bõ¢\ìº\'¿¡|Z\Ô\ÞÃ¸sú\æ-p0p@¹\ß[´¤¼ø\êL‹¾\ëf‡¡¿d@\Ä\âa1®‘\ÞkvÁžŠŸ<+r¼	“½H\Ëù¡\ÄbXÒž¯L„¨\ã\æW1&“@þrŽJ\Ö\ÞÚ‡¡Çžsb¿_˜`6K+Á·“lñ¢ù|\âS.£ Pð^¡ól\Ô\ä	l9\Õ/È¬x`\Èó\Þ:eu)‹Ÿn\'»\Zc˜¢E\Ó\\©Áš|–\Ï:Dú\ÌN\Öl,Žl#À“¯C\èD%¢K]¯œú\à¨QÐ ð‰\Ü\ÂLø!ž¥j\ÄR\É\æk‡Á¢V\Ê=~RŠÀ[º\ÎC¼;>\ÔøfM\ÃBòRò+¢mš£vn\ã	tÀ¿;=%J„\áy\ë ¥R%ø0\Ñ\nfþ¢/e÷\ë‚\áÃ–¶IL*ÔŸ\ÎrWtô&BmvWU¢#wI•†$Š\ÚKlh5ÿb4:\ÎÑ•Wn\àw‚¢3Tg-Z´\ãBF”(O)š\Ù\rf˜zˆ\á?¸ž\×\'€¢=\r‰¢0™C\ìURù\"õ$d¼Ã©6ñ¥¸ù°)¢IS\Æ\Ñ¶—\n\àE]ýmùY5c\rwcD\ç¹\ä4˜Aq‚¢Qòix—Œ–÷¾WD2o\ÙF·¤0ý\Ä+—\åvBJ\àþ¯¢X½“´\0T\ëí«¢±¥PO›]\Z8U\É\í\ËmVqþ¢^o#™Z›Bô‘aCu\ÍwIT-‚$e‚·*1¢g|v…\Ó\Þð\êv	\Ûv…\ÊÄ›W\0\É(\ì‘@j ¹^x\ì¢h\é·)\à­Ù¿“ý\Ò vŸSh_\â­=\ÚXD\Ó\Óp¢iÿ-½›w\ÐF\êa¡\ZPN;\æ«Ë®ž°hƒ·Jû4¢mB¢´\àB;ô3Ó¯ñ\Ï\ÍhP\Ï;\Ê)Ú“Vz\0D¤ó¢r?\Ï{\Ù.‚\Å<ƒ§õün®;  V\è\à.R\ä»\à¢yƒRŸTx»\\Áýh\Üþ~D\Ê@n\\Ç¹”\ßiv•\í¢z\ß{ˆ\Z”]_q­|@\ØT°bs™üBzV&Î¤\ìk<¢‘štûCzô ž¤\Ín`j\r­M\ÍðN\"Agó\×æ¢‘ùx%´&õ–\ï\ëyp¾Á5\à\×L&Á†]\äø[\ÓRÕ¢•Y¼½BÑµ…\0­\É\\4:\r¶a·’™¹—¯o²|(;Ò¢°–¿Ló]ê²€Nj\àù°\ßu\Åza¾\ÈhpF ¢\Â3–‘üHû\ÑO³)-ÿ>!\"\'\Ù$t-}ð\Æ\×Mû¢\Ç61p9“Ç¡©ô¤º\å‰\Ã\Ükþ£\×Tb\Ê:X\Ë%nŠ£¢Ü¢“ÿx²J\Ð; œvww§ |U\Ô-ˆ%=™F\Ì\ìùŒ£ÿ«M\ï¿\ß>gq=÷\ètGˆOwmjdÀ)¹\íß£\0‡¾$QŠ%_\â\î\á\×\Þ\â{¬1\ÍÞŽœ7\ëÚ…£\r\Ä,?·\ì•ñ\ÈzDþx¡•‹&†™ù÷fvõ©£$\ãÁ\ãHK´ôóAh±É†§…r\0\ÙaF1‘mÔ£8P\Æ?³±Alm\è\í ¹Á:2M—\è”\Þm\ÜX:~Ú£8\å ,Ë´ÿ\Ë\í”t»úý©žT^×¢+\0\Â°^£Už\ä`\à<,MW¾\é—\Ât\\œ‚\ã’+ŠTÃ„\"^J%£V\ìŸCy3BVtI\Êpp¼¼F\ïyšð\ß/sÜ®ü£}G\äT@¡\Ï\à!ŽQR\çm`¶ªˆ+Nû*u\Æ6£ŸNƒ\â[ÿs¢<ÄŽ)\à\Ã ºZ\Ã\Þ9QB\Å\æ\ÅŒ¡°£\Êõ\Â\'úG\è,~IœfÅ™À\ÌÖ›·NŸo\îYt¡¿\ê£\Ñ\à8q£\ésM·u•±[\É×¥VW©Ð­4pp7\Î\î\íÔ£\â;Áž³¤\ZÜ•ŽAŠwö\ÔW¡II¡w\Óú	‰†\ì|£\ä¥\îô¸d\Ê2Lu›ŒŸ\Ì\éƒ\í=#\ÏJR9:x\Ý\Z«z¤\'‡\Ó#m:…uZÇ¸\È>8\Ðû¨ü·„|\×\Î{K¤iª²E<\Èþ¤z?eL²<M\\¡}°¤vƒ³6\Äó¤\Z¥8zRv`\Ý\\.€)\ïŠ.ú^À\Â\ËpÄ”·¤/E{~2	Evš“£h:¦mþ\îwµW‚\å\Ãd\ÎÓ¨$¤B|Sž1,¸¢|ñ¢K\ÆY$TTL_\Ì|£h¨@\ß¤P%\ÞHD>í¤¿ó\ÊÙ¿ff?_\Ë2“Y\0d#v¢\Ç\æ¤Tœ„\ÍUùÐ¦\Å[TmGòna\Ð\Èmq\ÝY\nT©orqKK¤crµ <#P5r±hf_‡D«\×mÖ”mNÿ€+™K¢¤{÷VO\Úu-Á¿\ÒQd;\Ú++O;vœD\Ì)(žP9Œh¤•]\í,vÉ®v–Àš«±JM\Ê(0(&™#ŒìŸ´>¤š_Q7%\ßl|µ[\ØôŸl°|\É\âß˜A\Ó†–ÁIŠ¼Ž¤y\æ~\èþÁk\'$Ñ‘±\ß\ã\È\è^\ÎY\Ñ\"½ awE.\àë¤®¦\ãª\Ü5þ]‡\ì\Ìû®~¬½o]bT\Ý\Åþ\nñÃ§‡\Ù-¤¯ŒG\Ó\Ü=\Ø\Ã[öŸFJ\Â\Â4\Ù@Å·ž¢´\æqaûb¤¼n d\å«\É\0þ\Øn¿´Xf6?,­¢®=Ê¤¤\Î \×K\'\ß\ë9ˆƒ\Ão—d\Ð?pˆò\àGŸZ{\âe&\"¤\ÓS†¦¿\nT¤k\êN&(uu0\ì!Ï©7Á$šV9Õ¤\Õw\Ï|\ÚN\ZvFd6f~œ–n°d\ÝZ$\Âi*–ö\'lA¤ñ\\`”to\é\ËôG\ß\ã\"©\Ýö\îŸ*°ý+cW d«¤ú€”½+ªÎŠMò?\ZòL š÷ºr¨Z%\0\Ì\"lÓ¥Y\ÎM\å‘2£<\Í\ß	VToÀ^%F\ã”_Dt±!\Éä¥i¹´	ˆK\ÆN5ÚˆýGe\äQB²þ•\Z\ï­k`\èÃ¤¥mu¬¤9³u·H|¥Œü —\ØÜ–aQLþ²\ÖU¿ž½¥‡ý0\Zú~{vhœ‹\âÆ‡\çw’RjIyphó¥gs¥Œþs \Ñ&\Ñ:°\×Cã¿©\â\é\r\Öm\Ù9>zo|.\Òó®¥”\rÇ©óP¹\'\âR\ëI\ÑýR›š\0ø¨‘)\Þ$\Åu\Å¥½Œó	µ\ék\Ñ\Ïf]W^\n²< è´¡\Ûýb_ñÄ‡\â¥È¸[G¶ˆü&R9»2\à\Ù&­€DøDcQ¡\âEQ¥Ó‚_Ÿoóù‰fIo	˜}B’3&Y$P’ô¤Ê¥ò¸{\ÚkZxS?\Ît\"Q¬®\ë?™(£n¾r3ýú¥ôŒ½ÁA\Ð\Ìø÷]]\ëhi¼²\È{\Ü Ôƒ‘Æ§c\ÂJñ¥û}|‘\ß\nÍ¯Þ°A\Í(>œµj\Ö2OÆž}V\êO »×¦wD\Ñ{¢so	ˆk\Ð\ßjLA\ÙÁ£¬žRƒ	®˜V¦\Zz¾L0¥´Qwb\Þ\Ã×€Ñ…Áˆ–fR\è¶=k­\Ç\æ¦)þ\à\Î\àÏµ9ôD[·üý¥.NV\ÔKuZ•\'Þ‚\Õ?©¦0\×¬\á¨’–\çÿ\Ð;J;\0±j=\"(‰\ÕP]<Xõ¦4\Í£m%\ïÌ†\' ¶?\Û2¦[üQè€8/sG¦7m\Â\í\Õw\Þ){¸\\I \'ôQ}mË®$\ÒR4´U¦:k‚$\âGw 1\æ@\ï¼\Éu²iL\Ä0KÄ¸:\ì@¦E^Ø›‰36€v‘\ç¨!l{°PVw¢\éS\á¢!¹n¦H+‹ò\"†\0Ud\à–:¢ž\nõ\ê˜O«˜*”SÐ ¦LùÙ„ýŸ\ì.\r>Ö›n«]\Ð¾öø\Ã9ú^	ºa‚¦Z\Ë_p®ùhRf}¼\ê	PÞ¯šZ™{Ö¢J„ÁZ¼¦b±«\ÍR«u+„$Jp)\Û°#è˜¥Œ>\æXV%¦z_X\Â\í@KOuKMF©øõq:…RSO† ™®uÑ¦|=o%-™“\ã„\Ëþt,už‘·.\ë\à\Ø —\r¦’Hxe¬U›\ç\Ì\Ò\êú¬UHK\Í^\ì\íÇ„_%¶×šù‹*¦¥°¹«À¶\'í»†ü÷Blm&µ\ÙÂš^\Ï/‚\ÆØ±-¦¸ñMp \êó÷#<_\ØË¥d^»\Ê\Æ´\Ô\Ï\ÓÁ5\ç¦Ä›\în\å\Æ+\ÜÜ‚\æË¬\ä§\ns5\Ìø\Ü*ƒD^\àkŠ¦\Ê2mi^¸+\ßQfú\'\ÃN,ŠntR&\ï\Ç*‡\r¦\ÕSˆPœKô?x»7\Å.\ÞýÕž\Ý*L\Åu¥KÖ¦ð”\âv2Zg\Ò,z\ê[^¨£×…”ªY\ç¹÷güöv´¦øþýâ­¤YZ¯V%›Is!ÁÐ±©Ÿ\Üj8>\Æ\0Ø¦ü\Õü›Šn\éÿG²UÁvŒ\èi•¥3‘D¼¦CA¦6D\È¦þ¸`\íLs<ò­òŠÅ¢\ì\Û\É\Þt¶E§>Põªô—\ßs§±\n#HNoŽý­œ\ã\î&\í©¢¢\ÔWZ\ê€\ÌMl§5ºýe)qˆoþuvR¯¼\Ú¬¨\Í#‘´\ä[§qOyŒ4ø`5É¥º\Æ)¾d)\Ì]³\0J©ó—|M¹ô™§s¢`bFœ+¬u\0²¶#¯\r\æŒ Lm\ÓNßŒu®‹\ä\í§uc^=¬Â¡DU{.¡¯öÄ¯.Õ¿¥¬]\Üñ­d0Ó§zEvGL7…t|\Ú%\'Œ§4‘¸%¬\Òf‡p#e§h\Ó-\Ó\ÄÂœ¼hü8q9À¹\Zx\Å	²VG’%%h/%§Rñ/\Æ\äðÎ®q\éòeG±F^6•`v‘BI	ð|2§—PS?šhFÁMa¤À\æ\ÑÈ‚U«E°~z–“Þ§ž#\Æ^8Zõ½€y€©7UÜ²º={ùŒsñ\ä\Î&ˆFW\n§ªR_	Á\'\Þ\×H™˜u)W\ÆC}\ÓD&›7ü,H‚§\Ú)m-\ÈEN\ÓM\ì”A£\ÃûªÍ›	,§_~Y\×µ?ck§\Ú_\0¡Tó0y†k€õ\å\æ\ãM38•WŒ\\\ã\åQ7F’\\§\Ý14g†3\Ñ\Â\'%øL| —ƒ{\íW%\Ù\ê_g	·@M§\Ý\Ð\'ú®F•|S=Õ’\á\ï«\\[8¡(Y\îÿY\êû´§\ëVd7{mÿ`C’9+§eý©f¹Ò¯÷6‡ó \ê\íU§ö\ZaÀzß[\î_”K }P\ì\Ã0;¶rÉ‘B©\ç@?§ø@[P\×Ÿò\Ñ^“3\æ\ÔD5Vw\0ž\r\'€\îT\Ë\í§üûP´Î¢`\Ä˜ežÎ­‰\Ñuö¬\ÐK>fL˜/¨\Â/\Þ\'F9r\Z!\æ\Ðp©ô\'6D;%^-ýxh¬¨%O 4y:X”0•\Ö^ªYuGyDñ³Q\Ò÷ùbþ\ì¨(\Æg«ðEpÖ†õ£riÝ™¡hF•\á\è=\í\í\ÄyZ”QOÀ¨/\ÝL%²ò¬@\Û=\ÅÀ-ÿ–e\Ë\Î-I+RŒžª°zþ¨<\'\à Ñ–r\ÑvqS’\åKU7\âWˆß¤_iþô«9q¨Qo	Aý4f\â”gS€·\Õ‡úh%=Z‹N\Ø=þ_¨Qu~Ò¿„žú$3G\ÂŒU4¿&\" €KFñ§¨j”\é T(¦5´\å—\Ýo[\á‰…\éw•O«P\\‘¥>0¨–3	\æó{ÉŸ\Óa\Ã6]0\n\ì¿*\É(\à)\Î\n´\ï¨–ÇžŸŒ\0¡“z½v÷V\ÛMAJUªla‘1 Æ·Å¨œŸrXŽ\ä>\Þ\ÛŒó5SÆ¤H[{Š\ëPgð¼Ù¨¼V\Ì!6\"	B˜\ÔÐƒ®«h9¼¯\Û\í.\ì…\ÎF²8„¨£\éñve8û:½\Ù\îc;°%\è\Út}5;­F[ ?EX°¨ºn\Ø´G~\ÏZ¾Ý¸§µ\\¢üB[)¹¢zì¸º\ãm¨\È¬Oû¡…~B\ç·|A&´–ˆš\ÅþÝ†\Å\Ý\Ê\éBJ8?¨\È3§^’_Í¢˜—¤¹·opÊ«UCgw\Þ(i~¨\ÌMz\ãõ\åe¿®\Ëx·nÞ»ºX),ü\Ô#–Ó¨\Ö\Âû\Ï1»°T‡z|\Ù\'Ñ¦Uf+ù2\é‹W[NT©\0.l>Wv&\ã\Î\çô\Ïñ\îúq©v§+‘ðüI­N~žW©L ô|F² \éƒóKGOª]ˆ5^ùAG¹\"$\èA[?©¾:\ÒMÀ¡\ç2(\Ã\ÌV ‰£\æ—\åA“\Â\ì/|bý‘.©\Ë\å4\ÓL\'iWFT³ÐŽØ™‡\Ë\Ñ\àr7\ã¢\î“75©F|D‘ FIJ\Ó5\å3m\Ö\Ë,Yl¦wN¢Æ‹¢Fù©e\\\\¨‡¯—y2…#Ÿ¹niÀü\ÔùF¯3œ’\æ´N†©r¢b0“\ã3jgŸ\Ú\Ñõ¥Ž\\û\èmP\ßP\Ìjxà©„\ãþ5\æ”Pû$j\ä¨ó¾\"\ã`õ\"v\ËR€\n\ì³\Öl¸_©›\Ö\Ëð9È§n‹\\\Z\Þø„r»R\ã\\¨ê°ª˜\Âô[³©¸O\â¤óo™\Óøý\\.‹¬a 8\âûœš„4rÁ5$†©¹‹	±C\n†\ntYÿwýr\Õc¼\'ÁSy»û:G©À`}.û,‰]|\í\íºÖ…\ÝÐ¿ŸÐµ\ÂÁIø†Û©\Òb±Á–¹\ØÌšú\Øù\×ù\âw[$Q²Ó¬h,·aª“€»\Zø°\Î\Ö÷cN°ùC…Cýn°\ÐÃ¸•¿‚€‘ª“\Z\Ïÿ$…Š#\ãk\\=¯¯ü¬Z®\ÙGóÀv³\×ÜŒoªè©‘¨ou¯j>‚\×]ü7!–¯¤Ó‡kª\raH%o\ÈÀWkŒ\Ïh„·À0io­|¬¸Ô§À3ª\'È\'¦\Ùc²L:bø\ÓÀ_\ÜL‘Xxý0IÊª+Q©°\Ð;\Ëñ\ß/žhE;\è?T\Ò8\èVÜ’ ’—÷\ØªA#Iˆƒ”Œˆ\Õ%d{°°F\Ä\Ø\í\ï\0+¾\"6\ÎÆ¹ÈªJIZ;w\è%—¶!\Õ\éƒøW9\å\ë\ÖÑ±÷S\Ã	}\Í9nøªN-®>•£Ž\Ä˜t\Îü´¯üB\â¢/Ô£(q\Øú\Ô[ªT&¬\à7,Ç¼]m+7‰^Áê«’¨®¦†úvóK7ª[E¨u\r:‘‹&i|: 50= ¬\åSöUuµ5°²ª^_w|)‹W6›¯\Ùc\Ä*&Äª\Ñù]›\Û\ÇZ\Öñ\r4¬­ªt„\Þù\ãš\Z\æwMi\Þ\å¨ÆG>B\\Œ©gôÑªv“`\Î(1in£šŽœ \×\×5U{I\äoò4BµªŽ\î]’Sf\Ì1Ð®#²8ZL½\Øúó¤õ¦ \è}÷\åOª–B\åÈ«[y\íû·‰\â®\Ý}BxwIüZ\ëÐ§\Ê&¼ª›N‡\Ø\å-)Íˆ\Ãæ»ƒ…ž~5\È|zI(:.\ï\î£\Ë’ª¬*Ÿ—\Ëg”H-#=a\×$-“-ž9\'ÀcÚª²B¾@\\HõN8¾P¨\áß£\íD¸ó.øÁ´ª\Åuœ½’°\ï¬\Çÿ¬y\Ý~B5v\Ú7[›k$lÈ…<úØª\Ê?I&k½œ\Ô¡\èE•YB=\Åb*Ò¿\Î3Ftª\×5\èm¬{\æT\Ô<g‡F+j\'‡pûQœ\Ýª÷\"}\ÅFpz.ºù¸T\Ô&lG¢\ÅM©ki_\å\Z–Q«\n€]\í(›´_\å,pgi1”³õ¸}þ¯.’Í‡3wÀ««z¢$W<¤§leP[™?è‰\Â\Âp®>¼\ËH\Õ«#j\Ñ\Ë#Eø‹\é^C­5¬½Å‘Ü”)=\Ò=mf\ãht«)\'«¨z1*˜~6ºU\ãE\èÀ\Êýü½‘\é\æ4•[kP«1¢®¹w¿Ó®ˆ\ãÿ\\\ÔÁ ^\èÿ¶º`Y~›F±«9‡õ-\Éa9Rdlw\Ùj\ÃRaó\éS(7Æ©¦\r\Ü\'«E¼^´¿rn\â\Í2ÍªU?‚å—¸W\\\ëVšeð«L,A/š\" —›\Î4ô²zXô1\é]í¯¼½[º«MT@JÅóŽûm\ä4ŠN«2a0Nm).:ôÒª}«]ö%¼v\Û\Ô\ác¾\ÒÝˆø(ùY»“Ue%\Ã!¶TF«i®/4‡i\íÒ\n!<¨‰jY°|BQó®Np\Úwx«o9ñ·j›:Og7(½ûd©øKQAª“Š\ërU\Ú&«³©›†¢Z\ÖÀ¨~fû,é·¿ûÿ‚¿½Ü»\ndšŠ«Ÿ`«4\Ï.­{\ÓmÏ–\ÜS‡¾¨\à9\n]b¢G+\n(x«£©7ö\Â\"€\Î÷¯\"\Û5nž‚\Ò\Û\Ó\çWIi\É\Ñ\Ò\èa«\Ùz¤ˆ_Ý®o^2S\'\ÎVAF\ÉXÿj#»–[Í«\à3«H\Î\Ï\Ä@!Š½ \í\ß\Â+siA$uN9µTµ«\á+ \å«ÆºDüƒ=\Æ#\Øwüj¦x\íyÓ‹h‰OB.h «\å2š—;\ÏbIþq‡\ã‡\Û\ØS\Ã\î]\ïBš\É^	þ\íQƒ«ð;fWV¢•\0sø“l\è\ä^€—\ä°}!™§\Ü/e*¬\'\ß#„\ÝW·l);*š=¹$º9¿9Ocor]\ÜÈ¬-ñ\Êb\Õ\Þ\ç\à‹`ü\à\å(¨d\Äõ\n#\äD!†\êÎ¬:u\è¨s¨ŠWO\âûŒ\Òÿ¦(ÿ›PX¾2\Ö›t ¬=¬\çg\Í\çÀy”0&\Ìþò\â\ë/‚j\Û\Ôôü\Ü—\à#\èx¬VÁeaz\Ó\Â\î\å\ß\×UÜž|-Šõø\Ò\ÈT¡[7\Å|¬|\ï¾A®©tu\Ô\Ì\Îºia2ü¤´¶¯\Û0¶Š²\Ñ\í½Ä¬ž]F››sf\èˆ*½MŒš\'{Hsƒ\Üú©l€\nmL¬³7,M!mÛ–¨Ÿ\nþ=FK 	\Ê.œ˜.>D(¬\Å\ÛÙª\ìO¤¡õ-ÁRº6”\ï§\äW=±ùq;7ž\Ð6¬\Ó\Üoæ’´²\rV>\Ù=ðƒ­5‚øó…\èt“\Ó\ã[ß“¬\é\Ì\Î\Û\0úÁ\î¨©\ÖsuÁ1 h,OT³®ÿUÌ¬\í$¨&ú^€9¶]Wg\à½³G‡²\Ð\Ó\Ø\è\">­J®o’e\'¤7XŽw†(šuc‹J§¡º[1œ½\r­Zñ\â±š[±Qj\"Ž0Z‚7\×\Å-WN‡5Ž©\à­\Z•/yF÷û²&’º°\ï\ë}=\\H\í\ÔV@r\"ƒB­ Í€zÏ—o­Ö¿\×ÿÅ¢\Ä&\ÎÈ£ª%;G‚aó•­3~†‚YÆ¼\n\n.fd÷†\Ù\\>8{Î†ðAHÿJ­E´š¬\ã«2¢>\Ê\Æ\Øü›1\Í}‡¶Á›¬“\0\æ:a­T\ÔM[\Ð-o	‹‰_ó¼\ë\\f\\Äj•tƒ¶±­z\"\ÝHP¯’Ÿ«l„ç¼³¹ƒü?ú\Ðx4\ÑP,\æEå®­}a¸b`\á€Zn\æÿ û ¡/Ÿ^5®\Ö\Ú\Õ)­šoå¶\0«³5Á\É\Ùx\ÊÂ€%‡,“_`û@\á¯ü¯cŽ­¢?T¬ˆDô\Ý\çBu®\ä=781ø\èzö`~€\Ã»š­«\éñ\ÒR\'‚µ\Ø)Fÿ]\rõ^›\Ë\Ón@­h\Ê5â­±™¢ˆÕ˜°A-z\Ü\Õ\Ø\æò¼‚£\Ó.kÑ»/™ñƒ­²V\"5PG”•±7ó}j\Í!–mYZvˆ¯r¥IÆ’¶p­\Ã4»\Øñ¯§\æ{±·‰J\Ú\ÍYEÜ\ÔxÆµ\Ä(±Ù«E¦­Æµ\Ö\á5\ç¦d\ã\ì=?N®r\Ùs¬©½þ\æ¡.£P¾ü­ÐÃ¤O¶2\É:~½,ú\Ö)Z\ÐU\Þs†k\Ôô\Õ\\u­\Ú$œªþ1£JÕ–’3\Ï\Þ1G3p³»øR˜m\Ûç®œ<\åÅ¨\ïõ\Ü…þ\Çù7i\ãU\å\'£¨£z¸:	® ö6ú¢\îˆ\ï\ã/\Ðz@’\Ö6T\Ø&\0\âCp›Ë„ºŠ®(™¥$µ€ƒn\ÅTw¦Vý\Ù\Õ;\ÐøLQ72€®N\ÇÀÍ‹-m\Ï\Þ4|¦0\0;¤ºü°W\Ë4\ê²bˆ™®Q(Éž\Ðùö@\âtal2œ\ãX“¦\æƒ\í\æ\Ëc\æý\ïI®RL¸þž 29‚¡^”d¯6_V$CŸ8t\à{S®\\ \î‚\Ò\Ûƒ \àƒI\îôŽø£ƒbòÿº\'h·5\Ú®_ù¶\Ø\ZQÉ’i\êëˆ™O·s\ÆJ™:h[¾¿Ú®	Û®_\Æ/SttòRÊ”\åW\é‰CU\Îx´´~²:rÿQâ¨®w¹¥˜†…E÷…Áõ\ãp¿\Ì\ÄVÑ¼\Ô\îøü\Âsc\Ä`P®‰‹EØ‘¯]} Üƒwúz,ôû<š\â?§Pª\à&ä®•#®ss\Â\Ãj6tv¨Dz\àELZždMëª¶W‡ñ9®›ITLc«¦r\\þh	=YkHTxD£e\ä»:#®®òo±0m°öÏ¿i¦úyŽû®½³Û‚÷l|4¦h¬®´Nó´‡\ÒO~%„ö\n}\Z¸ð·\ãôÁHœ®¼[6‰aù‰ŸB2jf\×7”ôœ¹\È\Ô\ÜfL~E\àl»f\Z®¼]\ÍÜ¤VB\0nœ%M\É/‚ª[\×\ã;„*ü¡ö\æ›þ®¿\é\Î&/ÿ\á_\Åô\è¼/€!\Ù\ÊÀr…\Ø\æö½Àz®\ÑÂ¾\Âü \Ô$et\ÚÀ%±Tn5”\Ç?ƒ*\ÛB‰Rg³§®\Ýdm?À\Ü*\r4›&#4°NœeTs\Ç\Ðð\ßM\ÖÁ®\ä!™r­÷\Ë\éÙ£\Î\ßýœª\à0a\êT\æ\É\0\àÚ²Œ@Þ®\í.m)¤N\ãu—´40ŠÁ§¶d0n”–h\"\í¾$ðý¯\0÷$ò§’ý\r‘¿\ÌO;zjJ\Ä\Ò,nq ƒU8c¯³¯Á¼O¾\'„x™\ÔvW—\"\Èø\ãjC´+o“„%~¡œ¯\å«qõ­¦Oô\r\í\ïÿ\ï˜\æP´‰\'ô§GrHq¡¯\' ¼Á[y‰-N\ÄIzc`\ì#\É\Õ\Óü‹¦0¿Ñ¿û\×ß¯;„\Úý<	`>7þ¸Ts|þ46\é¯f’’B¯!\Í{¯C*iÎ‚\Z\"\Õ\àc\å9\Ð\Éq¯L£Ô¬¯¥· \ä*7p¯€Oð6¼S`Žn\íôð±jó°ðV…FmTª`ü¢b3&¯….\Ãj\Ó\ãÝ¤(qSj\Ãp!pu\ÝzI0J\0‡ø\Ù&\\Ar¯¤Ö¾v“ü°\æW¤µ^Ü¨º\Ü/„,¨G‰pÀú»\Äßœ¯¬\ã@d†\î\ÇÃŸ-\ÞÈ§Ò›‚°\Òx­ÀÿºFkbûs\àz¯¯X¤˜h‹\Â%ûMµ\Ïn¢ñcCE+c:Ž¥\0¬e\Âô\É\r–¯°Þª¨\ë~„\n€M\×w_‹øa<\å>V\ÔXœ\Zl\àù5jÀ¯²~d3£\ßv_hòi­\Ð0\â7\àÇ§?\Ô{e‡&øóÚ©Š¯¸\0\ÍÍ\'4n@ñþ\Ã\Óÿ\Ì\Ø\Z¥.\ã^ødiŠ$GÙ¯\Â6-Ö¢\0¥¯qú®ñxw&a\'vúV\ç\ÆÒ§¯\æ#ôc\Ç\Êwr†4w³¤¡%}´P,Hÿ\Ô\ÓR(¼°‡¶€\ÃT÷©6aú\Û\"@€ðšJ\Âm\Ï l/\Ã‰hSÙ° &^S\ç\Þ\Ñh=.\éM\å\n\æ\à6S\ÛQû\ãœaHtŽžú°8h•‘\ís\à\Î]—±\Z´ŸU*Fþ°Rg:ô(¯\ÛB\\°L­|Ô‹\à\Æ\Z/\Ë5––Lr¤ñ`[ªRB”Ø™W*_ù5°N\í–^…;\Ô\ë¦&:\Â‹ ¸˜\nW1*U\ëyKeÅ°S¨!ý.!\Í\Äð¦ò5C^™ž\ÕÛŒ	Â›±Ä°|vV\ïu¾\ÅMšM=rvƒ\Â\í^\"r-Ž³$€£\ãðÍ°ŠUq#\0°ù‡„HD`˜Œôñ>„v±\Ôó·+’O\ë\Ûé°˜7šùøð®}\\¾:3Ò¹¶\\‰dA®“ye8h@Ü¶°\ã¸sCU\Ú\ä\Ü)\åOƒtß¶ô\ä\Î\Ú¹/m3R«?\Ô°ö¨¤w‰\Óù­\ÃZL\Ô¹ ô«ò£·¢5c„Z÷ñS°û.^\'\Ú\çå‘°†%\âûJ(\ÊV‡“ /+¨µM\è\Ìé¤±\0\ä.y\Û3š6ªx> [/.\ÒtT¢]\ÃwpX\×%þ]£±\Ùº~|4u\á­û›o\Ð\ÝAf\\ÄúQ(¥\ážÃ‹±\ZÁ %\ß\Ö|^¿ø\Æ\Ä]\Ù\éöY\Ø^úF« #c*(\Ø\ë±#œ\n=<\Ìe\æ\ã^ Ò·\'#S\â=w‰W| K:\Ó\0¦kG±%¿™¹oC\àºØ‚lõ\'Á»Nˆ\n–p_·˜ó ÄŽ¨±+$\Ýi\ç7=\Íù˜Iû5™·\Ù\ã\ÙiB\Ö\Ü4<\ïÒ±,ó\ÔûF\È‰g•§M½\è\ÈRhj¶\á\éY€…Ä±/\Ê<)®…š\ê¨p\âQ¶\ÊÐš’\ç…P_súŠ\ÅZ±0T\ÙXŒ®Añ’#6{\ÈK>\Ùù~¨„q¡I\â=!±486À·\Ñ>$\ÐVs\ÊyJy9\ËDž \Z\Ì_`ºX?4¸±=!\ß\\óz—Rhp\Ú}…¿@\ê,\ìr\âQ\à!§Uñ±fY5¥u¤¡\àÏ±€\nøE›faq\Ù\Òº§¿Z:þÒ±‰…û\Çb¸\ß\ÇL\Ãn-#[\"6ž1zvi~±Š3g¹F\Z\Ù4\Z/\Ç\ÉøÒ—|CýA»b9„g\ä÷=±Š\Ø><P¶0–\r”Ëµ³\ê¡\Ícš‡+\r*+H¨\n$^Ñ±“¢&>HLi#a\"£´¬\ØO¿f\ßý,\Ð8õ±›,M4aµ!÷ƒ_~Ñš\âCO×´&…\Â8\ÒY­:\í\ß_±ÀØ‰ü\Äú…ð\íÿ\'qP—#Å·œŸ[\ï¨ð\Ü`µ~;±\ÇñH¤kMX\ÖM\ÒL•`b·…\Öÿ›:ø$¹d®ûš\r±\Ó\æ†s«¥\Ë>£„§L>\n&”H©Ë¼>#êŒ†\Å\×7¡±\×9\\+Í¿<wC\Ï\Ò}œ\"	º²\nT)Q\\u§:\êb&pÅ±\äÿ}ó–BH.G—;d\\Z\Ã\áCÏˆ†\Zo/\Ýþ±’b±\îo\ï#¦Wø¿×±­.]H>Z*0þü\ë\ãoo¾±ý¼±Qwf<É¯]\Þòqm¥\éf¬‘~µpÅ¼ö=±ýÀLJ‘þ\á¥h\ëWgy>¹€\Ê!}Yþ,:š„vÎ²\n\ßÂˆ.Ÿ\åª\Ý5Y\Æ6\è\Ó}§oÑŸi-\íý(¶~\ê²	\ÇW÷Ïp`$<õ\\›‰5wJkSf36Ç§Ç›²m‚0*@/ó´úWbož\ÏwZ•øl\'[‘\ÇÙ”\\6²1\éiª:—‰©S9\\Á,$Ù’·\È<\ruôv2\Ê6žFg²Gž,|\ã8\Î\Ú\Ó\î\à£\Éi1ÿ\Ð<2\Ú,‡8\Õ\á+w²lU™‘\ì§yª’u##e«d\à	\ÐA3Q5‚R»²p1\'r\ëSl¦¼ùY(7wA\ä£\ãO)FP]™°\Ä\Ä\ã6²~\"ƒ’\å\Þ\Ò?B´wMÒ³(N`\Ûq–Ø¯¨©\ÍU²””]\ÌÒ†\0\ê\êõÿB¸]3ª\ÈÛ«\Å#\É\í\ÉC\àd5F²œC;Ô©yN¹¨¥*)Jý-°ª¯\æÞ´1vôj.²¬—¡«¥y‡1¹BÇ·\Çqk\n*;z\Ã\É\Ý8jš\ç\Èc²\Äñ£üqý#\ßc-aP\äF©& \\(\×1½«ý£(R²\É\Ä\È^´\à§\å«\rmŸ)\áO7•x{@*;\ã=³²Û\Ë\Ðþ@Šøs\â\ê\ã³;õJÊ˜[Ô—Iø>~§®\Ìö4³\r\Z«\Ö\Æ$AùC\ÑSwXZ{ð}»aj†Dû}b\Ð9³-œœ\Ï%«\"\ï!N˜\Û_)\Ô\\š˜¼Á÷*1Ã°\ï\Ü’³5o3˜–rX\Z\Ó&?ý´V\nŸ\Ê)¼K‘-ø\ãM\é$¡³³A\é\íÍŒ·‡\ìk	«\Ð/m§ñd\æôó¤œÓ²js³EF´<3•Ág“«{\'¢mv~®D¥E‚fM³N¼ôs\ê\î\"*\'7´Ÿ‚p$iºx¿¼”´È­¤vµ³`•öGû\ÂJ\Ãy•$°:\çxty*Y\Íß°ú\Ì%ðüì³^H\Z&E5CCq\Â%\Ò.AB·Ê£VžÚ—\åý¿C;³‚7\"\ÊA…b¨IYI„\0\ç:—)Ñ·Ç¥\Ä`wcw³˜\nžN\ÏI\Ç\Å\Ö+\Ïa\Zs Lz·f\Ùÿ#4C\rVv\Ì³¢\éby:‰ƒ8›3ù³o\Þ\Z³õŠ€±\æ“ö\"Ú¹ú³¬®ÏŸ?®ó˜Éj¤˜\íA’>V\rÖ‹ouº\ØÐ³¯\\.$kÚ½´¹\ÎšŠe\Ð\íh±n\Ë\ä\Ýn!!Þ³»µ}§\Ç\Íi¼K4KTóTb=2UáŠ°OB–¹`‘³Ë³\Æ+T¤À\ë9]\Ëð-!Iýv\ã\Ãs–¦[ýhý˜÷\Ï?ðÆ³\Ë29“¼{·qKÎ¾¹Ð”ÿ!¡\ïI\0žŸ(ñI`³Ó·—Û¯	(\î’\Ãhs-\âÑ™¸G«$%TBy u©³Ø©\äþx‡×™;g\ÒdBŸ]E\Ó\r\ß\âr8\áù\ïÏ³\â+N+R\âf\è\à\ÛUPt©	\à9\á\â™x²\Ø\Ùl†œ³\æ2Åª\Õ[jÆ—Ih‰¦*\é@I=ñƒ\Øh‹¤¢QÛ¦³\ì\ïÑ…0rÃ§\r®bR\ÊvO~°•nw}ß¯žgK3Õt´§¹e¬$°Dv„­\ÞôE£Z6\Ôf\Ñ¸‚+(¾\ê)¿\Ñ´! \å\ç„\"aDr¡9aC‡53¯§{\î„ÿA\Ö{ª´*Ñb2KwwqÒ¿¹o&•ð\îG°DÍ¢¨a\\ôLôÕ´+^\Â	œœ\Épü£BJ¶\Ýx\ã\Ã\È7\Ö?Q\á±·£[´=åŒ‚ß\ÈÕ¥\Å^žü\à\Ûü^¿3P²ê¬’s¦´I‡‹!\â´Á“>¢°ª@œòY‰Ÿ›{²<§˜´N\Òÿ²ùa+âƒž\Ï78c*Qt\ÏS,\á8Î½\Ü\0´T\'µ\ëL¨OOx—ü\àZ_EÁ1\ÕT\Êô1¶V\îmH´Y7tR~\ã\ç\å¶ô‚k”{š™Y‹£\ØD+)\î\àY;´]‹¶‰\ì^’\Ïe-+‰A¾nõ\Öò÷5&\á¯ù_\àÿ\Öü´q4+SH\æx\æ\Ä•{\Å?f\ê\Ïm3¥¡\Í\È`\êöaó´»¡û.#,º‡\ÞtŽ\0W&¥–·³‘\Ü;y\Âc¯ˆŸùª<´½\Ô\Ðq\ÙÐŒ\è\Ë2\Äý\Ú\è\Ñù5Ý¸\ç;ˆ\Í\äN†k´\Ñþ=xn\Òô%þvA ”[¥y8n\î\n	(h‚!ú¬e´\Ø÷®˜´kbžHkŸµ½ö”ð\Ç[b0Qy7ÇŠŒE´\Ú3Sjz\Å$\ZM]°6Œ˜8€Dz´ù£kTykm|¤-´\ã\ã½@\Ã–]y‘%U?œvwXlö^ñ{qÊ´\ìD›6¥8…Nó?£%aPÅ§)…]NC\Ð1¡Cÿ´\íLóŒW\\M!DJ‚y®7F\á(<\n“\ÔøoM,Z´ü—\ì`1O\êY\Ñï²†A¾Q\ç°\Î2:Á*\ì t«\Ó\n«ÿµ\æhO|‰;\Ìz(¢\Ã‰Š\'À\Ëô¥™œ£¥\äúµˆ;·wh‘{\á#6ú„qY¦}\è½\æ6GWÈµ!~\é÷\ë\Ò™ZÃ£Ïƒ~S\à\Ô÷ŒžLKjJ|¨µ4ž¦<\Ç&Cn\roÛ¼‹—0+Ë>‡|\Ì\îPJ€±Pµ*ù m¢ôl¹ó·\à@6TÑ•\Þý\"Ž¨‹\Ò·¯AðlµHŸg¯¾9ÿ‘L\ÄÔ°M\èôö=w¦:U®K×¥®DµI\ïH\ç\î\Þ\Öû\Ù\æ &dtM6\×\ç³&¹Ûµb¡\ì8ÿ\ÏZ	k™{\Ù<Ù…J“W©\Å\È~\\ìž¬2µc\Ã\ã\ß\nt\Î®JmI!K3|M\Ò1ªõ\àj¡+\ÌH\\\èµdyò\Öö‚ö†q±œE~’ßƒ!\Ü>\'c‰\ëª\Âs\Ùtµ³Z*J^\Ý;6Ô³\Z~IDÕ®$x\ÇP\ÕiAU-µ¿”]†=“—©\rj1•[Wf\î%”¿>qpð<ÕŠ\Ï\n…µ\Ú¾²)\ì \Ë^^\Èc%¿\æW­€£\Ïmž’\Í$µ\ã:\'bL g\Ý}dA	¼,¥r\×\æô·\ÛwKw/\á>µ\êò&z©k\áÊœjM¹®U:~o‡\ã\Ñh¥}¹5®[µ\ï;\ÄRfªñÉˆº5\äk_\ï÷\æjQr\æªQµõV\Û\'\é´\Åd\ÑM õ2*^\äº\0\ç\n\Éq\Í#\Zä‰©eÞµú²¢Š\ÕIÁTv5´Ü„\ëSy8û#±¿\äGyF\â\Ì$¶\nr`ó\èZý¯p¿G‡G*¶\rr\n™\è>|õ«\èY¶&”W4x¢°Wç’ª¢Zœ)±Ž\rÔ“(a\ï¿y{;Ë¶2¬f\á°Q˜,\Æò\Ñ\á\Ñ+<·\\\0\\\'™â®	¾ý¶3G\Ód\Êß¬T”ð²ø*§ú€§\Ò\ÂJ\n\Ã^D1š\Ôo·¶=\á$(1\æ¦ùŽ\É\rÛ–™/ùzh‘T\ç<\Íð]’˜¶o\Ö:x<U\0\Z€\åqöPJ‹}PI \ÌI]\è‘y l\ÇH\npá¶€u\Ú÷!°4ß’\í\È\ÝjFª\nz÷\ã\\Wš\â—|ó÷r\Ó¶‚bÏ’\0E\Ö0+F7üÌš\r–<!-:Z[¯\ÏZj\äý¶…m`_«»¦õ\ï÷2\Í]\Ü\"\Ú{(4«0{¢Ö£À\ëŽ¶\Ã\Ø}\rq;;)D\Ím[Šÿ5­¼!\Ú&\ç`¦µ¶c¶\à>?`(Ý®>Hfü=ð\\\ÃT¦-]gžˆr˜”•{ñ¶ÿG[\â\Z \Ü\Ñx\Ë\ÆDs¹uÍ¦ýþ\ÑÞ±\Ã4EXD²6·\0„Ü—D“¬\á\ÓCx\ÞbQf‰r\Þ03‰_LAŒ_\Ü\Èg·20mzø·{T()1\ÖZ5-PqBñ\á°\ÐÒ–MŠ·Gx99d‡ðŒ”äŠNŽû\ç5“«½8ú\'¿A\á·Ð·vNtvjµö©IÁú?!ù\\\Z\"ó½4\áóö<µ4·{}ˆaÐ‘\á8a¬;[\Z&+:ý3W\çë¢…?\ry¤·¢\ÏQÎ€œÎ·ó!Le\Ó\èŠ\Ãs©¤Eøg#\ä\Zwj\çt¿#·©¥³W¡\å$%[—¡ƒ6\åú\Ó\âÀPmª‡´œ\\I¨Y·¸\Ó*‹\Ò\Ì%vbb<J<˜¯süj\ï\ÚÄºÔ´Uz\ä\ï·\Ä#Zž‚\Öõv¦Š:¼.N\ÒM­V\æ\èrz$\É}ô9ƒ·\Ê\Ü÷:\ßq\ÐCœ»¬ >,\Ñ|’\ç4ö\Ç0F|=­.·\Ë\á2Ç¥\Þ{\ÌE[r\ÄPE~P(^\É\Þ\\>]!·\Õr\ç^8Â¥Z#uð¿\ï`\íx+I[\È0\ÙN‰M·\ß[x\äV\"2\ÃûF\ê¯q\ç\â\Ã‡\Ã\â“õ“óHÆ•¸4ª\í£6#\r0Jš7\0ô[iùõr\ïB´®\Î\ã-p¸˜ñ*©i²¯Æ­1\Õ\î›{‚\×(H\È ÔŒ\æD®Ÿ¸ /ðú‘Clgõ’9Nv„º\ÜDB\"\Ö\ê\ìA@%€¸\'+h\çLñ\â‘\Æ\Ö^^\î+½#e¸)\É.\æ\\µQ\äˆ\"‚¸6zƒŠÀ}_T4x\æ°ômúaª\Â½#E\Éü‰¦\Ï\ï¸>u—\Ü\áôX˜$={+cÜ§løo\Ñ\àT\Î\'.õ—Ž¸E‹“\Þ\Î\î]³\á\"f)|\ØnsúöM€–dm\ÚË¸O\Ñ;v¦Wþ®‡l\á\à+`\è`Bü\Ü\\\Ï\æ&kkŠý\å¸h\Ì\×i\Û\ïÀ\ÔqÅ…¿ùm	¤\Üwb{Ag¿ù/š÷Å¸˜s\íÃ¤6\ÕI-\Ò-mŒDW4\Ç2ÂŸV•ó9\ÊX‘¸™-¯\åý¥\ÖÔ¡\Ê\Äý\Æž±^©L\Ò\í•G\ä\Í8ã¸­\ÙDC<\ÂWö\ÃFüNµú£B\ZŠ· ‚	{÷yWPJi¸²¿\È\Z<@œk\Ï\åqýsa…,jJ\Û!\Ðw\ÙSž\å\á¸µ·¹Þ™\Ü)==€)±¸©eFK\ìx¿:5D9@“¸Ø‚ŠÏ¨\'¦<Mt\ï©v$d]#ì§›ý¾„\ëß¸\ãX[nJ•@\Óô\Êzv»ŽT\Z0:tð{Á^!=î­Ž¸\ã\Õùñ.`8G\Ô?|À\æ#ÿCˆ\Õ=ˆ²(\Ë6×›¸òiu†h\"KS1©ªüR˜¬\Êñ®\Ù\ï+/ÿ;þý¸ûiY–.7/\ÚXý\è\ÌM7ž~Y”+Á\Ô/\\‘\ì1\Å\î¹\ên\çX \ZA°\r\ÐÒ†\àµ\ÌE\ã÷r\ÌB\èö\ÈÐ‹g¹%ú½\î3\Ü\Å\Ç×³\ØE¼q=v,·¶ŸVý\"¶/\ÖCê’¹=‘¹\Ï8\Î¡u\â„P	\ÞkÅ‰/óLšAN3\Ú)\ä¹ECC\ä¹=\ë÷‚\Ð\0µ{€×§\Ë\"};¥Áé¾¡Œt¹O«\Â\Û÷¾m—_·’ªjWG€ú\\\Æ\É\ábojÀH¹]x!+·>½\Ù\ÜöÔŽ±\çÀýzžú¼4¦Jþ1\Ð~J¹…\Ç9K§mÁ¡ûÁ`§›vØ‹^\Ã“GRfñï¹˜ò\Ü&¤½vcD´€ Oºv‘ÀcQø]¥P=Š\ãø¹œôö\í$aF‰«\×jF\ä&|uPU\ã¢MeG1\ážø£â¹³\Ûß¹\ã²\å\ãbÛ¥!	¤9~\ÕüGgl¯òª¾¨÷È¹Î\Þ3|oµ?\ÌD^a\Ñ@ \ç²C—C—õ²\ÐN&\ÐP¹\ïS\çt\âi²\Çz¡r³\é{¯cY ©®G\è±\ËÁ*3¹÷\0´È‡z¡=†B°£–øl3ƒŠu@šÃ¿c÷´1\Ê,Ÿº)\ßa)\çqÙ¼­qþ\Äf\âõ\ä¾L†›ÿ1\Ù\ÑJ…|b(º#}©\\E†Õº\ÂÊ¾¤\Õ\ã€—¹ˆŠUù‹L\â&›…º6©¦\\Y?+c2$Ÿ«\Ïò\ç)6\ê\í¼8*\æÈ°:Eº@}\æ\ÉzPWE4Rýc	Ä‰ðÿÛ“j\ïÚ”\'\ÄnšºMþ}9\É`ñAR)õ’’¯y€©\Æ$±*[ó\ØÀ|¶ËºVB&ipU¦ ™.—\âVi“\Ëtt‘]÷\\;H\ÛIºd\ÝDpp’øS\ìóð’²Ás°J£‘Ç¢–\ZòC2]ºhš\ä?³\Ý±Ö†–~8ž\Ùl©Èª4,Çž?ð´ºˆlÿkJã™¸3g>˜‚\ËÚ·ÀdGzfwSC\å<º§v®\Ð\0\ë\æf{¢\æ8:¥\Û\Z…\09Aô©øB-¨º®\\±Ÿ\"\î‹R·\ËLF\ÌvÉ©Æ¡-\×&i¢§õöºµÿ˜N±JŽ)–\á\Åñs¼¶+Á£\áNüôm–º\Ý\Ãug\Îhƒ2%€\é.¡g¸™0¸ú¦¹K\Êõ²‚>âº\äœG£ÿ€.P@J\á3t–B¨k¼÷„\Ó\ÃD|$ƒTðs	ºý$Yš„¶Ÿb\"\Ò)òªHzdºº\Ò\å<÷Ÿ–ÿ\Ò»#ž\à©ya\\©Ú«:K\è€B \Ë8\É\Ùco4™\Ú\Ô>G–»1J£`¯ÁZ§·©ŽI=³ôcBfeµÆ·C„\0«»22\ï§Á²Jn§óM†°\ìF¢\Æ2ð¸Á¾\Ñxü<ŽÆŒ»6&FµL\r‘\Ýÿ<\ZRº#ìº£Ldp=\è@fIWðX•\"»MB\Þ1\ÐQwoX4bx±c)@DŽË¥°\Îk»a\ÅË¯|9Y\"ô”ˆ\Ýi‰¦*\éUšùL<6\'I>·»b–5pª<õe\ëZ¡ps³\Ð}ÿ[Œ\ÉY!°¤šm\Ç#»e\çölp·¦\Î.x©º\0¨mxP/d;sT¦­s¥Mµ=»j\ì%\Ú0žb\ï\ÙNøtR&y­.ªûsE¦£¬$i»l¯ž{\Óy¸\Ú#”\Í\Ü]i\ÔF\Ç\ÈF\ç3J\Ð=¼{$ Ë»/\Ê8&ˆƒ\ïs\å3o‚˜¿ôü,\nß°ñ½j˜\ë<»BHþ@?’ a±\ã‡À\ã\ÓýŽÿõ\Ög­\Þj%²a¹ó»†\ÊY\"p§\Ðÿý\å\Õk“²„bóñ}ñ»\ß\ëqB„ôùŒ}»›,?\×ò]š¿š/\ë1ü{¨–¨‰õ\ÖÆ„\Ú/\ë:Q\Þ»ª®\Çv\Êõ\í>rr)q\åAo\è\r\Ë:;(S>»´ûB­!V\È5Rþ_Bµx< |9\Ä\'bL*^»¹\Ã÷÷Z\n·’’\\È©ñ³\Ä|ò\Ð\ÉkZ‰=¿™\"»\ï”C\Êý(k\"!\ë™\Û~°5ž3¿´ñ…ü\Ô\r€Ï›$L»ót»*1\×3\×p8A„ñt#\Ý†¨?]\áðDwšŸ_¼¼X§Y5hn.\ßc…e›\"\ÉÓŒ­	Ÿ„\ZS\Éö¼–\Ç\Ü:\É\áþv´B¾i\é7J\Ì7\Î]1¨k\Òk©1GÂ¼,`|]$9\æ`ª,ôûw\r>®­-±Wû¹\Ú7*\ë¼\ç<:‹’gjö6– Tz30\Â8°Xh\áµ^~m\Ï~¼ \Ùu×µ´Þ„¹†\È22’RYŸRP4H9‘\ÂOý}X¼c@P¼`ù2\Ñ_°\ÍPVb–BÈ­ItJ Ì€r¼{O§s\îò\r¶ù\ê®\é–A¡\Í3ó³Ç¢j!8‡ø}ý¼›ù¨¾c\×GñJ\ÛË´ `’nØ˜¹Uœ’¼\nš÷=¬±¼¢øIµ»¯\Èn}\'þ`C˜5Öš%ý{·A™ûš/\Ð^¼®\çr€)·prAJB‡Qÿv\Âepþ\ï÷)\Ì \ïRŸ™¼½Ny¼Š\ÄH¿°\ïy+3‹H(H^’e½E1ô”oóy¼\ßÖŒHF\Ïõ\ÐùY?\nŒ\Õü}VµÖ„é­˜n¶\érô¼ÿ\0v1£\ês\ÔN\í>cIDÙ¦¾\Ö„I\é­0ÿ-½*\âF\ã\Ð:®£Ã…=IH\'x“\â\\\"\Ã\Ð\'‘³:½*;:\È\Ç\Ýj»l\Ô3 0d€\âscîŠ©\0q|KF½0šŒ_qù\å­YsBK¥bÖ·b®ñ(±7^:ÿ\ÅË½2‹dl@üWH\Åñ\Öw\Ý\0™€	wWœK9˜“‚¥ŠÙ½3C,w\Åõ’\è³WÌ‘\Å>ª¸\n›c6i·Sú!‚àº‰½Y8V#r«Q‚$[)‡¼zºnÃ¡œW;¿»WÑ Ý¥½`¡–§W\ÔAA\Zò!sn?R\Óv¶\à˜ºmð}a\äx\Ö{½o€Jó™á¨·N¥5q\ä\ÚK­õ†\ÔZ_\Í\é©V\Ì#Œ\í½p\ÜW£\Í]BS7÷Šjˆ Y\Ë4òci…³–A\íW»\\\ÎÀ½~Y–õW4‰\Í#a0\Ó<ùg|.J¥øºDS‘ôy·\à\0a½¿e¼®ƒ÷\æ\ãÔ¦G9~½rs\ÈjJ\Ð‘O\Æ\è½\Â}\Ü\Ü\Õ5\á›eÿ3¹\Ù3ÁŽmhyD\æŒQ(½Ä¤\àg^\ÏL\Ø\\F\ëqA\"ò\Ç\äý\Ã’Á@\ï½\Ò€\Ç[;žK¨kq?B\æ†y\Æ:P\r\0ˆ\Ë!—‹E\áÃ½\Ò#¶‘\äMOz«þqšƒŽ~…\íÎ“8\é°,\Äõ„°½ÕŸÿ\Ì/\äÞ¸j!TˆŽ¡¸«\ãNTØ­¡\×	\Ó\â“½ä…¬+.S\É^Q’iÍ¦š&\Ã·\ê\ÞYX1\"”ýƒ\ì½\çŒI\Û+r\Ï|\Ùw\Ô\Í‚T1a>00nio½ú+\Ë\Zòoo`üyfún\Ñy\Ã=C\Ñ\ÎúÕª8:÷Î¾eZT£‡\ÕW\Í0w X\Ü$\âq/Â£‚1Ž»„½S4¾ûi\Ôj#\ìD\Ï\ê¦\Ë]”\ÐUuºü¤_ˆ\É(KÁ¾œ-‘„«ÿ\Ò\Çn´D(@½ˆÿ¸º&\éƒ6\Þo¹Z\ä&µ¾$\Â\Æb\Ð³¡X\âŽ\\mfkJ\ã—Ú“­IÂ\çŠ\ÊB\á¾(ð)°&.£}‘_\æj\Îh®F(®™œÖ«‚\ä”ö]¾*|Wjuý\Åt.!\Zf=\Î>/\Î\'ñ¦ü„^O‡•o¡¬\ÓE¾;3\'\Ü(?¾óŸG>cg\ÊxªW‘Ê¡§ÌV-\ïE\ê¾ArDx±Á•+ž\è+`\Õc`¨/[¦Î‚\î-ùJ\ëH\Ún¾OQ™…þ†„_÷*‡}\ã£ƒ³ÜŒ£Ž€ý\â|¹¾QÐ‘¶\rq-F‰\äóV\Æ0´€šˆ@¶¹¦\ä•\â\Ú¾TÙ†ù\ì\Ñ\Ê\n\ÞZ–•~ \Zó—,oÁ{õÀþl[¾U\Öø«·E¢X}AJv¸d\Z´¿<`eaÀ¨÷¼¾X»\ì9$Go\Æ\Ï)\å\ÍÕ¸r?SŽ´”*\Ð8ŒqÂ¾¬m¯)qpù\ì\ßôpJ\ÃNnxh\Z‰a±\Ä? \Ã4š¾¶\áø»FsfY\Ø2X7\n¼@k%|/\å@J:y¶$Lq¾¸rh)uF@1\ãþƒ\ã¤ùƒËž–o”\ßA<\î\æüTQ\ãÇ¿\rù94Jb\ä© ³rª1øõ\ÝLL¬ƒ†“\Ù£d‡¿\îO^,\ØRºô§N¾sSn\ì/Ä§¨ot²öUö¤¯þ¿$D_‘ýP!\ã†d\0Lp\ÂOk7õNlû²\ØLn\nq¿&x2„\ã´\Û\å*\Ôn¼;Y{š\íÀuDW\ß[Š–d\êgý{¿dœ \ÊB\ïs\Èûùn·ü‚½ˆ9¿­“i\ç\ãS*LDE¿$ùƒƒüApf­–l_:YT\Ü^,FdÎ”‹PÁ\Üg¶E¿˜ÌƒV˜À§\ë\íÿ÷¥õš@P¡8ø\í‚S0šJÈª¿Œ’¨¨\"¤€>0\ßmT¾‘\â°\Í\Þÿ\Ö!\ã\Z\Ù\í¡9A¿¥)Z/ˆ\Ô@¦·*ˆ6ñy\êR7,ä“¡DÁ\à¿¢F\Ùflðª~£0#´F¶©y®Wy©•$ÁÀƒ-¿«„\rm–\î\è\Ô}Q\Ï4%{\Ë\â°{`ƒ\"2nE\Ý*V$‹¿Ê·\Òx¡c‹RYK¹¦S¿«M¶´‡O-\ÝvY¥› \Îð|¿\Ðþ\ÏIÆ€^Q.a²W(f›Ë¿b\n‰;UB¿\Þ\ÃgùnÂ½Š\ÂE\ã•9À¾[9­|<C+~î¸T¡”¿\æRBE÷´ \Ïü\ÐnH.\ÑVR3+Ö½½fj\Âv„“5¿\ìû+i#\"iR,k2q\ÏX¿8	Ö ,It8™¯Ò‚\ßY\î¿òUN\ê*‚>F‘ZÐ’ý-úzµ¹\ÊÁ	Ì‘²TûgqœÀüŒÿ’Ü§G8)¡N\Ü*è¹‰\à\èü*01ð‹G9À!1ò\ß\å\Å}¾WŒ«F°8¬|ŽVaÿ\ØópV\â\Z2\ìÀ$R9Lž‰\ÖG&m”[¶Óp(šf$\ÊR\Ë\ÎzX\ÕÀZ8t„§þ\Ï80pV¢Ûg<\é\n¢­E:0o?ò%À“”Ú¡c\Ö\àOˆ\\Þ±Dið¹¸c,7[8ƒNGs?À \é\×\Êÿ3¤\ÌU‘Qf~‡-X5\Ú\Þ\rJ\ËV\æ\Ú\ÇÀ£-ðˆ«c%#\ïepž~À\Ö8Ïš]k\Îd÷nOÀ§\æE‰Å¢”¤7˜¨?>¹»Aò\É2N†pñ$u³\ÄÀ»\ÖpŠƒ6Y¸¸`È»\Íÿþ#¹vñ˜R\ë0u^®þ/\ÏÀ¼\'~,·\è\Ê\ÛsJ\Ìû$¤·òTl>6\ÖH<ÀÀoBr[¯\é°n×¬©*ÂªX¨z\â‘\"\ÃÊ£›Y\ÅÀ\Ë_£\à”¯<‡³\â‹\'}§™\Í@i\ÉÀXÀ¼¢^kÀ\×VQ\Äþ\à=Ê§‹!\Î\àù\á¯\ìô±d€~¹+\ËO\ÛÀ\ê½\Åi\ígi!\ß\Çø\ÌH\Æ\n\nu+o}¢Ð¯n€“À¹£À\ë¹˜¹[€\ÉhD—e–(¯ÞfO¤[\Ï“v¡À÷©\Z\ædŽ\Ç\ïq|j?RŽN>‡AA¸{z=\Î\0t÷\ÅÀúWs	aÝýi\Õùi¿W[/;´‹q‡P~\ëSr|žÀúL¾¹ü8\Çe\ßV@\Ë5œœœ \Ã\è]\Äû”U°žVÁ1Nk™ÀÔ†	§3OÊ‚\Ñ\ÂÙ„“ò9kÇ‹L[ÁS³‚8,\ß^+\î¾\\é¯\Û\")>(J\ã\ê\Îû‹,ý­e¢ðÁh\è=\Ú\á›U—P|\ç…?\Å7¿²\Ú\ÑTvA2YB¼\\_ŠÁ†‹´d\Õa\ê¥\åŒ!›\"“QYP\Â\ï56#ÿ*Á­Oy½Ô¬,°œs2Œ\æ\ê˜\áx§pFõ—T-o¢Á°u	ªTT\ï>ñ…&W‡\Øm¿_\îx\ËÐ˜4rþkƒ)ÁÀqºu\Û\ëF¦@IetÊ°·K¦c5gr§µžk¯Ù¾ ÁóS–d¶1DS²™\Ë\ëZ‡\Ûó”ü–½\"¿¹:4\é¸Áú¿KLJ_Jš\ÑýA<ÿD†Æ„±±\È$\Î\Õ&–€lS\ÂR¡\Îs\ï\ËGW²\ÔÄ—T\Üó\ZZ\â¾\Ô%²À´\ëª\Âu¹\Ý_¨÷H\"È®¤\ï\ßV~	0‡“Š0\Îj\ÂHbÐ½‘\'ö`”/Þƒ}X\Ó3ª\n \ßD{|À²‡	\ÂQ\äýaK0Rb=µô¨\â«Ñ¶X\ï×®,c\n5iªk¢\Âh\âaßŒ5©ú\Õ>tÙŒ¸^8B’rZ\â¤`^Â‹\ã=1¢{K\Òô\Ã	œ¬~žØ¸1„`\"\ìL„\\|›Â–w.Dk€ <Àÿ„\á d¯\Ãðžúr‰¢Ojñ³Â¼·ª¤Úƒ(\é\Åý°)#}µŒžGùl°Jv)Â¿<\Î~üÍ°zuùh,yqp\åh\ÓÁ½O3A(\æY\Âþ)Šs\â³0J/®¸@\Ù(rO| A®>m¿¨/[Œ\Í\Ã\à*nB_ûRG-·YX‚\Î/ÂŠ”ŽZŸK\î¹q\Ô0\Ã\Ð$…\ÑHÂ‡¢\Û\Ê\Ý]po=\'søþ\ÊX&Í‹Eˆ\Ó;\Z\Ã\â%¢*\Çjµf…/\Æi¬>‡;õ	\àZ¸ó¿\0¡¾\Ã*sˆ\n¶7)ùþ]Vl^B\Ãñü—>\æ\æ\î¬þœ¡Ž\Ã-\Êt@“€^~¿«\×W\á-\æðO&4#\Ãh{\àIlò\Ã1ø@—lhbù¢®T7a+¯\Ä\Ä\Öy$½ý[\Ê\ã«7´·\ÃB¤7kÍ¾3žµ’K³¾\Ëd\0\Ö.eÀ‹½^7AA\ß\â\ÃR&DúGm1eEš\ê¿:Ã¢\íõ©…¡s®\êl”\Ì\ï\Ã\\\ÇKÇŠ­œÁm\î\Öb\0™V€\Ù96 ¸—\'¼?\ÐnH‹Ã‰\Åv\Ù\Ò\Îþp\Zß¾€­©V\áú‚ÛˆZ6ñj¬j€Ã‹\ã±H%¦ÿf¦VŸÖ—·ôM^´\Åÿ^4\Ì\Z°£Ã\Ï\ÎÛ•t}ƒ‡y%Jn\â„\æ\í<ñ†~ö…\Z­j\éÃ¦g³½\Ämp(_\ÂYN³Œj‚s>šþ¶¦\ÂESiÃ²\"\æ\ÛÓƒÆ‹»\ä\Ý—T^ôÞ‚¨‡¤µÿwû ”\Ã\Îð]EÔ«\è½™\â.\ßF=|²\ÍòÀñ\Õ\Ö\Þ\à\Ãý\í•V?\r\å&ó²\Ú\ÌEHDu`¤FŸ2¦<\Ë\"h\Ä\Ì\×Ö­ú¿€²\Ñ\ÖK€\Ã&Rs\ÄfiK$øcó”—N\Zh\Ä	9ÿÒ­’¶dÐˆV¾÷o\ß¡c¢8Q§š1E/\Ê=¥\Ä\rX ¦Ýƒ	h^\Ö/÷WXgjU@\Ú6%±›0I\r÷\Ä\â¼\ÛD4e6ƒSðo5R\éZfÞ±\î\Ò<Å¸v\Æ\Ä Á0 ¸¡“!!ò\×õN\Ç\æ’Ö¢Æ½Kr=\ß)4ƒu\Ä+v‡Dö·>\Ö\Üm\0\Ùü‹Š³\Òa)\È\ä7t2ŠÍ«A\Ä:®õ©\Ñ\äðÁ‡yLÂª%XÜš¿lYDºøŽ\Ó}\Ä;7sÌ»Æªû±„ô²?ýð±£\ì\ÖÃ­sÍ©5D\Ì\ÄL Qù¦\n(v\Æy\×e\î\Úr	6s\Í\Ùÿ5Q¡Z_^m\Ä]®#knn\r¨¦\Ù\Äñ)\Ö1­:¨\r\éx\Åù¿g	\à\Äl¨!÷¬Øœ„S\Zñ©»c/$.BE½k\'ZFyö|ÿAº¡\ÄvPUIEAL`¬ L_ù\á2,õMt\Ö)o\áf.\Èz%Ä“©.ÿp!ih08¹\Ìn\æd\Ú7Mûlþ›òT\çR \ßÄ•†\Íx\'ªu~zŠ‚¨­…¢e|º\\E\è\Äv\Ó2r·òÄœ\Ðv 7“¢g‹iU÷eÞ«tÈ¾¤!Í“<A\ßa‰OgÄžŒÇ‘\ãK]Q_örŠo\Ð\Ø\èžXÏ³.ú\Úo\Ô\Ä\È\áAÌ³\r÷\Ì\î\Ù\Ù]y \ë\Å~1]	L(p_\Ç\Ç¼\Ä\ä] p^´†‹8\È\×cL‰Ó™®nõ\åR…\Í\0ŸR\Ä\å\Ü\Z\"\Ôö\r h÷\àz\ZªE£’S)nnMRŒa\Å\ZpK3=V#ej\ài\×N<’VüÀ]À¶\Z˜\År¶”?\Ê\É_}ƒŠ9z¹ÐÁ\Ò\Ûfi·•`\â\Å.=ÿ»m˜\Z¨\Ål\áa<c†GBž\Ã\"$§–¤\â)Ž\Å8¤\Æ$W–\ä**„f\è±S/‰,Hó\ãk!]\Zjq\ÅB\àl\ãú¹À°Gu%ö?nc\Öòfd•v\ä¶\ß\ê\äd\ÅGB–w\Û«\ÕiJºO\à\×¨Z\ì@ž-½.³qò\ÅH\Øx7©©û®¡„\0\Ä;¯4\0•\Þ\Z\Ýo\ÖRD­•\Z\ÅJµ\Ï\Év\"ª(pŠ­·\Í{vƒ;÷fË‹ ö&Uu\Öu\ÅUÿ^$d\Ì`\ã·\ÏóŒvŒ\î7\îfErR\Ç-üy\Â\Ð\ÅV\ß*‰Lg®\ÅbJù„\êx\È\ß.g0Vìƒ»ZesWTm\Å^²\"¾‚Q»ÑœG(Í¢\Ûe²Kü@^¦(1ð\Ö]! \'\\\Ås™¿rKªS\Û\á\è\Ð#A€/\\\Â\n¡ó\Í\Z\0Šc|fýfÁÅ›<=ª!\Ó-uW\ï=«T\0ùc¥á„’\ËF`”±\×¹Å¦O­´\rø\Ã¹¢+¾\0½Aö\nN8øø¶Œ5p\ÅÂ BŒb÷tVV:Ï¨<(ô\îyŒ\Äk^¼ƒm¼<ü\Å\Æ\ì¦e•\é6€am÷Ô®œ\î\äúR%M1;–¤\Å\Ñ\èzDk16§âˆƒ\r BXÑš˜§z°y¡õÞ—ÿ\Å\ï@t†!0¦%\ä\Ú/;¤+(Ý€\ït\Z•Uô)ü²\ÅñŠ\át\äÿ\Î	-²¦b[\í)>°\×\Z\r¾\Ðgó¬6\Åú\Úß·\\‘q\Å÷-w\'\ÅHB\àöKùt99\ÛJm\Î\æü|q\ÆHƒ\n© w28+\Ý\Ãl r®Ÿ¶o\ëP@üs>L\×{¢\Æ4`ôD\Ð\ÓM\ï¼\È\ç\Ò\êµ\åoœ°a\âY\Ã\ãmù€ytº\É\ÆP*ôÁ\nDÕ³0AA\n·k´z}\Ñ*\ç‚$üc†\ÆS\Ñ)KxX€®1\Ùÿ\Ø\×Ó¼©¢\Å\Ë\É\Ý~Áð\ÆbÀü\ÓÝ¥ÿ\Ï9½wEE3ƒ²\Ì\É|:G\ä¦u,v\ÆlÈ¾lÁ™td±¢“A±4f\è–\ÂÁ@H\Ùò\ÑeXqŸÆ\Zd% \n\Øö[\ÑKn®Ž0Áó\Ö!ò–õ&^¶\ØpÆ„+ø•\ß\Ün‰T\0¹•\ìo<\\?³\Õ_.,¹OÓ”UÆfB\ÌäŽ\à±\Â\ÆCö\Ý<Z¾x0‡\Í\Ù\Ïè­ƒÆœ¾\î´5-ÀZd«Â“n3\ÊI\×\Ü\Í\rC¬\Ï\ZHùücAÆ¨žf}û¸À>^zûT«RsEyø»º:\ßvÀÊ‹8Æ¯—<\å„1¶´Ö³Šðƒ-…P\ßf@ˆ§G\Ê\rG\àµyÆ´.\× g]¬Jz¶ƒ•`’™\Ø½¥­$LóKf‘<\ÑÆ´sf\çO–C\Ô|u…\Ìt=)ó´ü«k% ¤Ya”@Æº\Z4‚_\î9lR\â\ÔkU›¯k\rP\'7¸Á/^\â\Æ\ÓÅ³t\ÑF\\\Ì\r€?¶\æv\Ã\ÑôWCYn•qC\Ýÿ}8|\Æ\áM\Ó\\¡“<d^\ï\"Ä…’9Þ•„A†¤Â„N‰Ä”ù\Æ\æªòœœ \é\\b\æZ\á‘_¯u¢C¹,PI1\à[\0\å2‰_\Æ\è³H9zn©Dž¨	¹·•rY[œ¸\á\Ö\"?¡\"\ÄZ\ÇÿŠcñ¦±¯°gœ\r\Ü~ ò\ÒÇV\Ú\áƒ5?\ÈB\Ô\Ç $ýi1a\î0EQ\èaQ›‡¾\â“\Ý2¤šF\Ð\\>0\Ç/\á.…€\nwŠ\Ç\'”‰O-\\mo}%-“¨\0ïŽ¥{º\Ç@—£Á\nˆ{\é\Þ	Ý’\Û\éõ­\åS/\Ç-6R\ÆÓŠ\è\Ø\0·\ÇY\nç—¬ó™}K´\ÅÀñ‚\ÇÂ³öZ?¬A\â’,\Z©\ÇY\á\êum¥\Ú\Ë\Þ<slM\ÆaPL/\é«+v™wd\äÇS\Ôz\é\ÔQ\Íc\\\ìN–õó§\ä\æ~(fZF\ÄJ\î‘~\n<Ç”ŠYðM\ÙgE+\ÞU\äX\Û57·HE´¦ht\É6¢\îsŽÇ£º@x?\ã\ÐLû·He\ßxºÝ¸q’º*\Õº„¸\Ç\Ça.‚ýdNG÷\í¦kN×š\íPõ\'“hH>[Ò°\Ç\Ñ\Â[g¤¤-\é\Âdû­9#	‡35¶{¢ñ¢¾\êGg{\Øt\Ç\ßöÁ<\ï¹y‘SÝ€ù\à<Ÿ³†N\Ï\ç!)ñv\Ò\Ñ\Ç\êÄ¢m%\ÑQHšy\0\Ör|}´D‹\Ì\Üô{Jy3W6;\Ç\ì§øXù³^\Ô\'€P¯1|Ñ€8&d\à\Ä–K\Ñ]\Ç\È	’\Ò\Å\ä©ÀE4vó÷ú\×Û¬„Š€>t&g\âk\È\"Šº\Î\r¥+´\í»fUºÊ°4\ØxY¹*R\Ä\Þl¼Õ£z\ÈUªcÀ\ë\n5¸K™™‘€\éÈ··»»84]$\Ë0T`1\ÈoôFû\Å\"—¯&\Ô\"9 ª\Ü\Ä(\ìœ\íz\Î&\Î\åÌ±Èu\Ã\ÒÆ§\å\Æ\çž\Ûc\î\áó¯u\Ôj…\ÍÓ„l\íûtóÈƒo\îg•´‚Q’—„\Ñ\íýf\åù\ßð\ìEñ¸-f\ãÈˆ„\ØIy\0]Q\Èá¼£¤\Þ(™\í®ÿü\ïÍ²ñÈ³­°(\à^zqp}Ù³·?\è‰{.’ò¼†Õ™G\Çñp€Èµ0”•8\Ð\ÈS9ºM\\\Ô1Ö´nƒáž Á/{³†4È»IŸ\ßÅ”»q\ÒdÂœ\Ü<\ÚPl\Ùmü\ì,9/,†I;?%\ÈÀû½y[.]_zº\ÕaZ%\ÛUò$DW-\ê{\Îü};¹y\ÈÁ*¤0Õ›s\Ó:@\Ò&¡O\n\Î\Ñov#žÏ½0\Ý\ÅD#‘\È\É#²\âa~\Â7ÔºM‰ñÞ§/<]¹\Ã\çFt\ã\ÍÖ\É\"\ÉO`3±\è‘ñòvTl\Ë\ïÎŽ§Â‹\rG˜\ÞW«õ6\É,®Îƒ_¤šœ{\â*‚O%E»ƒûHL\rjòM\ÉDÑŸ\Ãb³SF\\žv©¶l%\'\ÏÍ°^³3\ÉEŸ>\ëúË‘§ÁY\ÃÀ,Xñóž\äšRk¡õø2˜ú\ÉQL\éO”¢À\í’P »÷¯£(\çû“ð\èmŸ\Ï|9p¼\ÉY\Ëuc¨‚?-\Ú\âüþ\Ì\É\ÆF\í½À\Ù=Dq÷¸JkfŸÉ¢ú\Â::Kqî©³‰\é¦3‰úŸ5\ÆFûpu@ÿøÉ®am†€È™§@•DŒ²m¤P\Ø\å”óÿJ‹\ë¢É¯	j[IY|Ô²\ìªb‘X$n°´…G>Ž‚²\ÉLIÉ´ß10RzÊµ°†g\ZßÔ‘7¤„ùÈ²\Óû\à\Êª%\áœ\ËB]g\ë\"`.E\É¢q§’²\çª\×\à-C·\Î\Ö\Ê\Ú9šúÿ6q \ë„<R†_‰Á\n‚YBb\Öñ\ë\ÄS\"¹B\Ê-+G\ãQ\×J\Í2²\Ù\Ù~snm\àª1+ufÁ\'sOd\ÊNðtk½«9^{¬­ýsx*X\à®\nŠ—\ßb¶s‚¢\é·\ÊQ\Ýh\Z÷P?ô\ÒL·±°y§8ú\ß&‰>û\ÚI¬¦B+ƒa\ÊwqË\ïŒ\\…\ÊN];L?sBis\í\Øƒòó\ï(Ü€\ÊzHú»Oˆ±?ª\ÑÛ·¬‚G\ØÛ Ô™\Ñ>Zÿ“	œ~\ê\Êƒ\Ä\ãýy\Òg-\Ò\éŒGyv»m\ëÿ\"\å”GB&i¾7qÊ¥™¶v2œ\ËZ‡ùÀ}K_³	\Þj¸\Ñ\æI™l0”9\ÂRÊ±~o©\ã2\0“?S©V=«­÷¨Z\Ì\æÁ\ßs‘ñ\Ê\ÆLMkþ·;P\ÉhJK{’+\âf‰0\Ö|°#½›8•:k\Ê\ß\é\Åý ùòßªGG\ß0hø‰Ád\âréŽ„…\nl§j\ß\Ê\ãs!¥\Î~\éøB\ÍOl\Ú;i\ïKe?¨>VP®bAª\Ê\åy\í¢+\Ú\ÕL/S©ÕŒ‹$.öbn\ëeÍžBª\Ê\î‚x\ÙM»–gò\àþF\Ñh\äWõ\Û~d\\\Ó1\Éa\Ù\n§\ÊôTp@\æ\ÂÇ˜vDz|¶3E6’Eð¸	jö\\\ÄP¹¶(\Ëg\ß\ÚCüŽ?\à#\Ì\Ó$/\ëñªT‡¤«\èA}\åû\\\ËDU\Ú¹^˜±ŠŽ\\\æ¢\Ûm\ï\Å$ÿ·Io¢*áº¾V\0\Ë!\ë[… šÿ#\à\ÙÞ‡´*\Z«mhø¿¥p»ƒ6¯o\Ë2&™ô\\+\Üþ\È\0P<IYM ¦v¯ž\"ó¡	¸ªªX\Ë8\Ídˆ9#\×Z\ËÑo\Ïó\nT¤#ÿŒtÿ‹\Æ9rd77¾\Ë:²¿\Ø#!”ºµ]6î†£I´03û—\Ç\ÑÑµŽ†!RY\Ë=~×Šu(\î,£·\rºD¹\íjT\æ\ÎûO®‹•~\"\ÙL\ËBUx£\Ø\ÄlrXw¶c¬\ë<Àz!\n’b\ïOð¦¹\ËpÁ¿L35pD^8ÁDX‰Œ\Ú#qÖ»\ê«\Þ\'ùfƒ\ê\Ù\Ëñ\ã.N!¢­q?M£†\Ë*\Æ]\Ù\á-£ y3,4P9Æ•ËŠ“%(½½º³\Ô|\Óâ›©µœ\Ú\Ývq\0½\å}\É\ê\í\\lnË 9‘\ÕýHŠœÇ±€Uh¸LgN\Ä{1W(–w£\n\ÛËºC¡ûÁ„ü\\\Õ=•vp°¬O\ÃWó )‡\ë[\îÐ¡M†\Ë\Å\Í\ç2\ê\ÞS˜­\é\ÝS{zb½þ-\ïÍ¨¤\Ë\Ó4]?¥^Dk=3š!©Z=	©ÿ\Ðk\ÄñBÂ§´«\Ã\é\Í\Ë\Õ*P²¢yX&%¾0Võú\É\Úþ¢>\0\ÙVûKN\Ëô\"KP´¸K…/+¡\Ýˆ«R$ùf\ßö!ë>Ÿ\É7\ËôMi\é\Ø\ì_‚\"ª4†Š\Ý	»»Zg\Èþ®Šƒ\Ñ\"a\Ëôxh\"‘‚Œ’\'M÷iø5\á5Lˆ\Þ\Ò\Æ\Ù)ƒ\ê¬\\e\ËûŒVA\Î\åš\Ê\áþ\í7”\Äø©rd\Å\Æm\ÊÄ¶be\ÌúT¼©»\Ó,Œ÷\î—WMz(²¾\Ç=ÇŒ	\ß<\Ì5\å/Ÿ#P…N g\×z\Z´&°Œ¦\Æx½Š­?49\Ì<c\'‰c:y4\ÎOg8Ä²F\èG\0\n\Ö£Z7|ö\ÌAqú+SO\r\Îz\Ì~(\Çf\ÆY²\ê\àa\ÏÎ¹ý£y=A\r¡\Ì`œ•]Æ¢ V\Ç]¦„\×)#–û\Âd\ÙOŒX1¶¤r\ÌeT8k“,Á—Yž\àÁh\\ÀºcµúYNµ›\ÌiT7v1§X~J¢©£´\éƒõ÷¨\ê=_[i„\riJ\é\Ìq¬\Ío2\æÒ‹eŒ}¤±\ÙXto|zJH\ãŸÞ°ž\æ>Ì†FÃ±\Ã„#\rb4Á8\î\æL•IŸÛµ©?\á2™}ÌŽ 1‡B›\èS\Þø\îb`;\0&:Tuð%°f^Ú5Ì“>-Pc/s‘rt\æ§)¬\ÐxK>òl$,¥\Z±´øŸÌš\×\çQ\Õ\0uû4J47²Á:ÿ\"R,6´µ\Î\0\\¼–Ì¨†tž«…X\'\×JÜ³\Úaióøm¼\é>#Mˆe\Ö\ÈÌµò¶ £±‰\Ý*\Ìo2\Òd»‘¾*_6œ¤øc\nzp\Ìø\Ì\ÑqÀJÞ±³¯e Xí¾¬{~k¤¿\0aÖ’9¢\ïpA¶\Ì\Û&¿až\Ñ&Jù_\Ì\Ú\Ê\"OŠTa\Î\n¹ž­Sñ\Ý\Èø.\Ì\Ý\Æ7Ä®Xþ\ê¹\è`j\n¥fö\Ê}‚D\åEr½\ÌñF þý¤J\ï?¾CÁö\ËNÐ¢´r\É7\Þ\Ôe§A\ÌôVk¥Âƒ];ûY\Ð¿Eä™¡m6%\\‚3deœ\Í\n¬uŠ8K°8BT\×I)–›\ÛW\'÷–À„Ž³|ª=\Í«]m8Å‰”­n-`¦u–&Št\Ê\îßœ¢\â‰\ÃS\áu\Í¼j2€kp\æW\ì6—{0@\n-“¤¥µt9\Í$·-\ÏVrT\ÂsYÝ¥¬/÷\Ø\åˆh)ð£`ô6¹\Í3\n\ç\0fByj­Zi„\Û\n°FŸØº\Ø\Þ\0\Ö Âµ#\Í7\Øf„¢œ\ê\ÔøhCaT\"Ñ‘^>2„–´^~\"¹Œ-\ÍI-.—§¼\r’Q1*a\ä÷	D.Ž…6¬Ž\Ý\ÍOG\Ô\np\ÌQjÁ\×‘8ô.q}P\æÒ©\ËJ:hQ\Íyyf\\uñ¦\á:ô\Ñ66k<¿RV8:x\ê\Ê\ËÈ‘\ÅÍˆ{g-¿Z}³ü^0:‘~¦\É+\Ã>‰x[¨\ÇPÍ¨œ\ë—8\àQò\Ì\ï\\\äù\ÐfM­J\Öý’õþ¾¦‘¡\Í\ÃJª8¾šGš–\"œçƒŽN/6\å\Êj–)RVñ9¦§ \Ë\Í\ÊyOóñRv‚\ÛnX\Ä3§f%0y8x{¯No\Ù:K\ÍÑ°—¥y+\î!·1š±Œ\îE†\æ\åÃ€\í\'¼¿\ÎU¨¡Ê\Í\à\Þ %Ix¼ž½„`¿ù»²’\ÑLbðÉš\Ü[_I%®¨¬\Í\ä\×Ç†m_‰|SL¬•¼ hŸa\Ñ\'\n¹\Ð	(\Ó\Z\Íõ\"f_\Åi\\µ›ƒ\ÂG=X¶1±\å¼!5»4\ÂV\Ð?g÷\Ð\Î!Ù©ö!_#‚ûü*\Ç“³\Ú\ç¶B	:¥ý’_\Î$\ÔÌ»°{Ï›\à\Ê\î‰@]˜ÓŽÁSŸ\ÆC\0\Ô\à3\éx—Œ\ÎG²÷X]×¸j%¢«=%û\ï<\ÛIÑ€\çhV8qW£‹\ÎSœ§\Ø\è\ZN½\ß| \"ˆhek•>t¾3Sÿm*3ª\Î^ñe®9|#U\ê«6UOµµ¼ñþTb¾\à\ìo¡¥~\Îs\Å/\Ü\âñ‹.y±N+4[xV¼˜5·+D”\" žG{\\\Îu-TÆ©º\Å\Ø\\X\Ûi·…ˆýÁ{\Þ !7)÷\Î{d£2S\Øõ¡¬¥¸gzfÄžóMJú±KKY1\ã¢Î‡^\n\Äb—‚q<v`x¶\ä£K¤£ÁZ—WŽ\Ï>°Gw\Ö\ÕÎŽ\Æu\æ\ÜL\Ò%\ç\0ý‰\ì“ûƒÁ\Ê\Í\ï±\ÏM0û@Î•¿N\Ð:ù9\ÉÿR¯}³5U\\Ÿû_ƒ…^s\n\È|ú\ÎÎ—¡ù)ŒnS&[{T.€·6Y\ã\îi*¯H¯óó³\çY_Î¨š4û—O¿¦o„„¬·aRË¯§«^Nrk/5\âÎ­wJ.Ö¹¡‡Òˆr\ï²ú\á~\Ñów=4Ÿj\Ø\Ì\ÈÓÎ®Oœ†O®\ìyƒ\Â#M¨«P\ìu\æbT2.tÝ‰Ù°Î®Þ¸F¯\Zg¨T °‘\Ë\ï\äi\È†0bòwôiñ¸\ÎÚ·{…¼ž½\Â\Ö0Eÿ\ÖÎ–×¸@ó¬Kx\Ï\é :\Î\ßIL™\Ç\íŸ\0Æš›Ÿ|„Cþ–\Ô	&M6\é\"E;\Îú\â²ži«`¨n7\Ì(ü}\å¬ú9‚/ø#T˜?\ÏDP¿X`þd¡Ó‚®ó\ã|\ÚÑ›:Â’D˜3\ãC\ÅS\Ï d‰ó`ò¯ž+4šY\ê;Y®ÆZZtõð#}\ÏCŒklS“´t\ÃUa\"6ôkHD…¢¢UŠ·xKU¶>5›\Å\ÏJÊ§\ê·-ŽL‡E»{_Eƒ¹ñ\0§	ú©RB¥}\ê\ÏN\Ås®EC‹%\Î\Î\'õÛ“ßŸRf¥?’\rˆ\Ä\ÍÀ\ÏU¸neˆ\Ðù“\"Ÿ4ˆˆ\Ø\0Cp/\à5\éû\Ìý|ù\ÏX@ãºªÿûgpü.§¶\nÀ5_\ãUqÚ s?K3Œ\Ï^ñkÇ§!ð\0Þ¼L\ÍÞ½\r‘b•Õ£\çÝ­,\Ïl™uÝš·\à\Å>\Ê-´:„‰[BÇ“|*\ïC–Ç£@Ï‡8\Ù7!\Ò\Ú\" (\åRÏ‹‚–2\r\Za­DDŒ{…o\àÏŒž=_}³+~ò\æ½\èÀ\Î(Èže¤\ìvrC[m\âK\ÏÏ¸›ö$ý¸\âa\ÎŽ5Q¿¹\Ã\Öc¸›\ã‰Vjv…`d\Ï\è\ÈŒ÷mm„Y³\×ÀQ,|¼:´K’Ê’º%¥DL\Ð#\Êüb\å´XWbºpú?²\Íÿ\n©Q¸@x\ËHc\ë\Ð(\ïX‹.\ÙGùªÇµ^Kõ¡ú,8²®¨ú\Ùb2p\Ð*X\ÈOL\ë\Þa/£ö\Õ\èö{Ø’a™·wn\n——yL\ÐI\àF³\Þ)|#¢µópš±SŠ“RƒNbTÿ—is\Ðm¬óT¶\ÃJ{)A\ïo\Î\Èn\Î;Œ9µ%¸ün[:\Ú\Ðmö‹µút\Øû\Ö\Éog\æ87\ÝP\Çv\ÉZ:\ÍEF¡¼ú\ÂM\Ðs,–¶¾\æÁ\ì6\ä\ÇLb!’G3Jv^5K\Ê`GCÐŽ\ÈL\ÍX]½\'kª\ÒAûm”]·¾›J7\ç½M”B©Ð”‡lWh‘<S§=\åª\\ù\"0 €iC™DM\Ò\Þq\Z¯Ð™ ’Böýz\Z\ã•k V\Ü\Úòw¨n¯\áól)\r\ìÐœT±ÑFC)k|š\ÆW³jƒÁN\ÆÉ©Z] /e{Ð²e^½²·K\rŸs ;Söe‰D+\ãVc¾ò,/\ÔNÐ¾‘;\ìc\0×„5s+œ{ƒu‘¥7”ú·^“\ìŠ\Ð\å”ß­kFƒ5-n\Í!\íx`Ok´Œs\ãŒ\Ð\îu=J$˜ u	š°8\âö\Ô@\åZx`\Þ÷™#\Þ)Ž+—\Ð\î™p­o\áPŠË¤hz\å\Â\ÇY÷‘[|`ý\à;]·¢\Õ\ÐòÿŠb¥`&h²2\È\Â)V¥KF}Õˆ\êm ?*fûæ­\Ð÷@\æ%T‡Ä·\ìx6Ò’O£Ó„¿9Ä„’ü 9.z8\Ðú¹\á‹ÁXË–<R²h\Ê#IJ\ç‚\á* T\äqª²\0t<¤\ÑbŸCK7j¹BœY\íC\Än‘Â»\ÉÌ¹)B#)ö\Ñ\n@\Ë}\ãn¦\ÇF¯\É\Î>\Ûk7X*¢úve\Ó{}b‘¡\Ñ\ß\Û\ÓI¨\ÆñP0Î¹o-\Âø¯„j\Â\ÅòC\Ñ-û¦\Ñ\æW¹\ÕBBu´„\Ú\îžsÙ¿	#gÿ2­&º*\Ñ<\ÍÔžŒ°1\ÉúV\â=¦¯ô(„Œ¦´sSˆúl‰.\ÑB\å+u€\\\íÛ§\ãƒ-;\í-R8kðpŽ§4C÷9\ÑRWJÌ¡f+V÷¿U\Í\ämú\Ò9jŒ\ÔOø§D†ª\Ô\í\Ñzqè”·‰´žƒ‡ò™gƒ\rÓ’dK\äùô:DÑ¬\Þ¼.\áA¨¼Ž\ÃQ„¸%8;+\Ã[}©œ2\0OŠ\Ñ\ÂÁ\nqbm°~	+¾­\éž\Âj¹D\ÉÅ§¤É½²\Õ5¶h\ÑË«\Zx$\ÒwB|9\âW©8¢£gk£8Yljüo™\Ò\n`\Ê\r$%\ëeG\Z°8…	cb\Â¹#k ¿uh(\\\åF\Ò#ƒj\Ô\ÆóW7\ä\î\"\×e\ÊK´CóÁds’2R‰\'Y\Ò.·Ä‘3\ÍþEŒ\Þ9D>\Þ	›.¨\Ý2˜,Ÿ!\Ò@%}¿1i}¸.¹kÖ›ük\ágpÝ‘b›\Äy9\ÒY\ÌS‚\Þý[œw\0m0H\Ý+\Â\Ç\Ù\rq‹Ž(\Ï2÷=\Â\Ò]øŠ$É†pƒý\Î\ãLdG\ßa2¾x±\Ü~e\ì_Z\Ö\ç\Òa5“§š«\×\ì\ÐªøÚ¹-\á¥{ø\é˜UŽ´VdH\Òr°\ÏVŽ”(-¡W‰\ß#Qî¨Šù?`G÷uGp~n-Ò“Djk“\Âÿ€h‡‚¢ð¼ˆ)…fx³wÿ\ê\Ë\êLQ»Ò“–saŒ\"\Äo?\á†ûþÐ©£®ø»˜Šc9C§‡…öÒ§‚\Ø1 8,\ã©^¥2Š\êšy\ÖI˜\Õ[u(¡\Ò\ÃQ¨ “-¯yj™\Ö$ie‘\ÙYi{p\Øø¹’\\—\Ò\Å8\Ïö\æÚª\Æf.\ç$F¼õL6wfžj\\½i\ÓAxk\Ò\Ñs·tü„~¤\Û\Õþ\Ôn§Â¢^ý2ªà¹™ f·\ÄV)\Ò\àÊ*^D.o\Â\á\äR\í|D\ã9O²•4[žJƒ¿²Á°\Ó	\"­<\ëò\ÊÆ¶‡‹Š2»\î,*¥5µ÷p\ÚG¡\Ú\Ó;\âù‹w2^“\í¥ðf\ë\ÛŸ\ë5¹¸@Õ§\Í3‚=\ÓE¡?‚‡:\í\ÃzM\ì$Š\Ö\îq·eÆ­b€a2³E!td¬\Ó^\ç\×jj\ë)RŸBxºBL‡¡ †=I\Ò5E\Ö9\Ógj\"XkÀ‚‘Œ»’°s\é\Å\Þ	&\åQ\é=IŠ\ÓjòE‡N\Î7Ž\n;Rù®}l¸þpfV–b‰m´¼‰\Óm\Âÿh\îc\\µJ¸\Ã\×ö~9‘H\íJ¿¦$[¨«Àx[\ÌÖ\Ó~\Èm/\æ\íûÈ¶”ü>\ßÅ©T.)–,l¶;;¬o[Ó†\ÜË‰DŒgšu\n\Ä\âY2.\å‡C0ÃŽM\Þ(Ó‹;sd‚O¸ô&h\ÚgC0–»¶‡u!\Î[+\Ô\0ýÓž*Ø³\Ê\êjEŠW§;\é\Þ\Ù\ä>$:ó¿Ìˆ4dÁQ+aJÓ¨+±`qs•{9¿¬„OF’œ°x¥vNms‚ñ{\êÓ®ÁÂ¾Š&º¼Áj\0\Ðv«S ·\âÀúû\Ì\ì|.\åkÓ·Ä†“{çº¿m\Ã-a.G–\ä¢\ÇB1«ÿn—·\É\×:sÓ¸ƒ\Ø9—A!ð\à\Ö=\ÆÀ‘×º…a\ê	ò\äL\ÊP:\Ó\ÍÔœ´\í÷\éÌ¶:wyjœ=º¡üÒ•­\ÖÄ«6xö½¼y\Î\Ó÷S\Ì\Åžœy[9\Èø\å l:\èZ=\Ö\Í\æó\Ô?V¤º\Ç2T%<Î‹Ìª\Ò\ÂÑ¬½J±\ÚÀ’\Ùb‘+•\Ô/?B\Ë\Õ<\\\Ï|8\èW)\0\Æj|·²¶(	\Ëy¼zò\Ô6§•33Wq¶\'§\Õx¬0`¡C\æõAðW\'®>Ý©\ÔA\Ì$‚¬s”†ù8¿·ô\è*wú,»¶ûù^4\ÔK‚ñ\á•\"wª-\0C\Òÿ˜V!ôýŽ)3\Æ§UÕ§y\âR\Ôu\nah†Fz½¤f¿\\”\rÿg­üm€qžÔœI|y\'\Û\Úÿñ v\ädñô§ÅŒ#\ÞÏ®t™\èÔ¥å®‚³E¡ŒO1ø\":©9¹¡(ñTQ²\æ\"ŠM4%\ÔÁ\éô&r’O\ÐfA[È²4ªÉÝqU}R\à\"¯µ³\æÁG\ÔÇ„\Æø\éL¶g+¡\0v\ÎQò§v1°“R2ß¡\Ô\Ï/Æ”\Ù~—Ïž-¼\\\Ø ª\Zû­@G>\â\Ø\Þu\èôy‰\Ô\î\Ëax³òn`ù¥f\ãw?\Õ6y}>\Ò\Üm\nM\×\æ–\ÈR\Õ\r\ÐË¢\Ê\Þ\Z¢\ÕN‘t\ïºAœF˜A\r\Ì|\Ö?¤\Ó\Óü«\Õ4’A¢&E(6\í~e\â|vH¸\Ël«;\î\ä®\àR­\Õ\ZV\Ëòy¯f`™T‘\Þ°\ÑÃ˜`‡ñ¡š\Ís[\Õ|œC\Î\ÈIûm\Åyu>j„©Š€™\Ç\"¦eû[8%\Õ\Z\rú\È\Û\Î\äË¤‚\rN}\ßR—\Ôm\ãD<\Õk\åžü\Õ1¨\n“ù%¾D\Í{RÓ¢\0›M+\Ú\Î2\ÔÓ¢€\Ì\æ\Õ;\ß\r´M\Ê@†\Éj¥ù˜c£3.·R\Ã2 Ÿ‘-\ÕOeZ}{®‹\Ç 7 tBR#\r¿¸\n0f“_`Û½ð\ÎÀ\Õ\\\É\nð}(“n\ÈaŸ¯\îw\×Cð9‹-A–šIQE„D\Õ^³Yl2ÿ¨\ÙJj\Ëf\"3¹—zW£0Y®\ïP{\ç”{\Õy„Tzwƒyj†m€\ÔË¬€\'\ä\ï¨fñ\äÚšG\ÕüÄ’õ\×GN\Û2’õ*\íœRmWF~„mK$QŠÕŽ1ø\ç¨\Ïm.JM\\k\ØV¾?1 [`u>\0!,»¹Õ•¿ð¬\Ê>­oü*ý®\å ,_wE™ ™Ž]I`[3Õ–\ér\Â\r¬§GÿVpGG¢\×ÝŠX3\í\ßø€›À\Ø;Õœøº\ã5IË†ƒ\Ïð3Õ§KnLm\\U\îk\ÚJØµlLÕ¦‡`˜A»^{·\Ó\ãB»ÿbƒ\rN\Æ¦‹€†\Z\ß\É\Å\Õ\Ó8“Yd^†^žu¥Y\çq,c$½:$(§Y\Öz¸/g\Õ\åJ¬>#ó\nñ\"7¨ñ\ï`)Šw¿\Þ1ª0.Á^R\Õ÷b\Ç\â†ö±ê´šf\ÝÕŽ\ÈRS\r€ñGñ4\å\ç‡\Ö(¯¹!úOX*Œ\äöùŠý¤\Ò7’A©òl±\"‹\É\Ç\Ö&ŽÀap6f±K)¹^o©çOs‘<«—\È\êA6\Â\Ö3\æAß¯†%wZ\Î5-D\ÜÚ¼\é\î\é@\ÞÀÂ—°\×\ÖJ‰S›\\<‘CÞ\Ð=s\'WI&\Z‹(þ\ÐðvaTo\ÖO\á,\ry\"¶ÆºHo\ëõS­v\êP	¾SK\Ìw‹cp­\ÖUô%(\Ül\áfU}\â­\æ\çñ¸hùp2\Ùÿ+nD\ËÊ­Ö†\ãvBÇ‘dX ±\ç1f­vH¬Ž\Íy\Î)ñ«l\ÉÖš‰\ÙÄƒ3Í’€\rÎÄ¹„©ð\î\è’TNô3À_*˜.Öž\ê£&úu\×rž\Ìö|ô\Ñ\Öi+Q­`Å¸M1¯UÖ )–ø©\í–8\Öôl°÷/Z\à¤Rö=²Yp…«ý\Ö\ÝO–¯2Iû\Ñu>&Ë·À ™\èuòUµ\ÎÄ–ƒ«\ê{\Ö\æ°x`\Ë &{;«\Ùu\ÎÕ¢µ.À\ç÷¢Xù¨v\Üa‹\×®‘§kdo\\•¤\æ\É\ío\è©ù~(y\Ø&j\×\Í\ÂF¦\×ƒ\Ò%¬@¤I¡µŒ(ª.#–“5U[Ö‹DB@ö…i~1”\×\'7Ã–ðŽ\0ñW”À\Æ2j—ñ\ÌÿÊ™ú\ê„\Ô\Ñ{`€ü\×01]!Ö¥\n\Òc3*\Ï\ÓóaVÖ†e¶Æ—\Ó\ÈÔŸ\Õ\×9R\í\ìOt\r\ÎC_\Þ\×ù§\Ü4c\Øzÿ¨S†\Þ\âs\ÓT\×Aq†cÚ·¿Â’59«aýOöù\ëÒ„\ê?§t‚ü\×M)†P­HŸÙ¹\ÅœkÏŽ%7fˆ+\È$\Ú.º\Ú~Ó›\Û\×Mxkv„\rn\ÙsŸž]%®”³°Ìÿ¡T¬Ä‰Ò©ª\×^\Å{ðÆŽ\Ýu\î\×ñ\í\Ðÿ’º“\Îj-{V¡=O\Í\\\î\×dT5^+—ô\ß‚`,¦\Â<\Ü\ëWØˆNl›S\Ý\Í\×j±\Ò\Õ??f&:¦s\ë[#µRDs³¥;Ê…i\×lbX‡’.\Ó-¬t/«ºy ›\ÓkOÕ‡\Ç|{W9¿\×mdJNR\éjœ\í8?|›\ÄH!‰sÑ’i{OT6ò¨\Ð\ëµ\×{z4˜8ˆ0øog3œx\×\àF±‡Ròý\Ç.ƒ\è:+€×°\É§&ä„‡û2\ë\Ç\ÐC.Œaº‰eE0\ç,9\×\Ô\'ZS5€›‡\ï4ˆ¡G[«»\\e¿€}*<\ê|L;÷z\×\Úx\Õ\Öx?&\ÛøWF\èf­=\è\ãx\é;Ò¸™.uL\×ôš·)Ôœ2Ÿûd\Ç\ÏL{ù€\å0€\Î3\Ê5¾½Y’!\ØU\nhq\\¯®D\ÞG\ÛhB„,\Ú;b&´\Ü<\éC­\Ø$\ìH\n>š‹»‰T¬ ÷EõG\âN™\Ð`ö\â-ð\Þ*\Í\Ø(ºqº¢–#Ôœ‚¼D“]K\æƒ\ã\ÐX \Â\Ð\ØJ\ê•n¿ú·piÎ®oÀ§(\Ë\ÞF ‚…°\ãýrr^$\î\ØO\Î5µöüM\Ý&õJúùüD\ÏKð‚0£F\ãNw0\\\ØP\Ý»s-\"»d›,½ä¸–\ã„n\Ç7z:€n\Õ\ÉSKn‰\ØSTv\àu\È\é!@bv±7Ng\ëûVCœ…Š%\Ê{øˆ\Ø~4žu\Õ\Î\Ë÷	k@Ÿ5’=\Ë(¤\æ{\"²X\Ø<ú\ÅØŽ\\Xü\â)\ìÐ¨Â®4ÁÊ¸cWÃ¾#E5\ÛöÓ‚\Ée%\ç\Ø\Ã\â/š\Þ\çh] “\Å\ÍÞ²»#Ñˆ9“²\ï`v\Ú\ÉÁ\Ø\ß\àðb\Æ9óN/‘\ÞlRýagLû¡\êwÔº\áQ¦Œ\'\Ø\êb\Ù(c\Ç/›\ï²\Æ:»²ôø+õˆ\ß\Â\î„~\Ø\ã\äZ\Øð\îüµµ²öñ|\0uŒ\Ü%rvBT‘ i\æ‹·ð“ó\ØôÞ‚N\ÜÉ««\Ôý\á¿\à/¡†=õ–1†\ÜI¶\Óÿð\ÙDj0\\l›\ÒM´51(R\á\æ;\\gÕŒeøÕžþ$\ç\Ù_,¯j…þè–¶\Ãût¢C@÷¼ÏŠ¶ü€‰¶\Ù&8H\×ƒaq_¤/ñÀý •³†™BuZô\Ù&‰?´y\Ø\Ê\í=Ó¡¦\ÃC6™d6òm\Ç\\´]vay\ÙT*«f‘Z/\ä8†ß¬ÀœU(Wò\Ö\íöUò\ï—{\ç-–º\ÙVÍ—œ\Ù8$4§l\\ý\ÔL4y¯\rñot«f`8†\Ô^\Ù`¤§˜=¬@ûl¤TzÅœ8\Ö)}”~–H}±‚qÙ—ÿ\ÞN”¥šai\Ëý\Û9U‰³¢á¤»\Ñ\Z{ûöÙ˜‰ù\"\Õñþ[\Ñ,\ÙTý#ŠH\Õ\Î5\0ùF	\r\ÕRšosÙ™\ßý$¼Ñ°„¹\ÕR¨ej`^„ª7\Ìè‘Ÿ%\ã\à¬yÙœ›³¦ÿM\èó¾9\Z\Ö/·´\Ö\Ê\'\í«ô\Öõ Ùž˜4bVt\îƒû\ê\Õ\çtk‹À…Ep%ñ~D`%\Ä\0‘;Ù´\Î M\nŽ¶¿WX\nŽèº¨\Ò|\Í|3ßœ\Ôþ+ø+¸4,Ù·ªç´±˜1]ùÖ²lzŽ¼bžVP\ê¹x\ëÌœ¬=\ÙÅ­\Í?\Æ/‘’¿ÄŒ)\å-\'LÔ— x\å!ô¢Uw²\Ù\Ø_nFaõŽ\Ù>e3¼Ÿ;vzš\ß\ãt\Ü\å\ÕPi(üd\Ù\Ø\Î|\ZVw7BAz\Ò\ázMk+Àš¸øOš5\î­\Æ\Í@\Ä\Ù\Ý&}ˆ,py\ÆF(%²Ld\ïö\r*n=YNt\Ù\ïª,kšL®]*–º]>N5c	Ynô±ñl)\"†\Ùð\ïqšqpu˜ªuŠ‰4FÂ€\æ\Ç\ÖÝ†$\ÍÓ•\ïž\Ú_\Ùp~\Ì*\Ì\ß60¤#¤?BT\èP„|½\Âÿ:ûX´\Úk\Çô>\Îñ`\ËW\ßO\Ü@¹!Ù¾”p}®\ß_0[´\Ú\Z@\Öd­\nf!B\ïŒ\Ï>j§\×\\R^3\Ò\â¹óª\ÚŽV™\ÐcZ¼\Î=.\0…ý¸¦Üˆ\Üõ\\º\'ˆ\Æ,ÿ™(\Ú&€\Ï\äùM1^t&*/:7`P\n¸€S!:úb=¡\Ú.#\ËR[$V<¢\åZ>f+ ÿ¶mÕ½Rh_i;1²\Özm\Ú6@£\Ìd÷3\×5(•G\\‘Ü§Doi	PŽp*vw\Ú;\Ç\è\ä\äX?=\æs|V§F˜ýÆ¢Id³šE<8µ\Ùm\ÚJ.•Ewjô\Ôö\Þ\Ò#_\ZÜžf®nN€þ7’‰·\ÚU/¤“\è/gÿ#ª\ÍJK²Ó’\Å]å ¹‡üÀ²\Èý|¬M™\Ún\ÐY‚M\nªŒ}2 `’\ÛQ\æó\ßv\Çñ_\í\rzBž^=Ú…¶c:\í\ÆÜ¾|@¸°lõ\'\Æ\Òe±©—ß²“ ~\Ã\ÚÚ†L-u5Zkw‹=03O¸Œ* ;XJŽ¢²\'z0Ú«Å²¶ÿöT\"\Ï\Û\\S‹@¥„Þ¥–+0yrx9ôM,‚›Ú®(‡\"¡Y<%°I 0c+	¶±ƒ\ÄðM\Ä\ìv1ÚºQþ©Gäƒžu\ÆGiÔ¯\Òg—¯\Ì\ç#dNõ ,ˆ—\Ú\ÃòÖ¢\âü’¼\ï¶\è_ƒöš5†^W\ç{£Kb\Ú\ËF\ÐyPX\È\ÄpŸ^MºÆ´s>\ê\Z‚H\Ç.\r¶Á\Ð\Ú\ÐýßZ£\\UD\Ñ\àþO\ÜtóÞ”³&Å”LZO\Z£4\Ú\ßvdU\Ó\Òò\é=‰\Ã…=cx\\÷µé­ž5\'Òµ\ÛdÕ»`¹›k½\Â_[aJ{¡\Öp\ZœE=„(X‚’ó\Û\\s	\Ãp¤JŒTX~†\×\\\és±Ak\×\Z-=}F\Ûb–áœ¾\ïTEw!§†}ža}.›& c-B\È\'¡Sj?\Ûpå‡€,Xž¨\Ã\ê©pö\ãú!‚:ô±\ÌE»À\Îs\å\Ût6–÷õSz\ìÃ¥¿ù«Z¥\ã‡\æý\ë\Ñú,j\ÕÛ‚wT\\\â… ¬+\Ú=\Å\Ñáž¶ò…b\'^÷x\ØK\Ã.\ÐÛ‘þ&\ZéŒ·\ßÛ7\ê°~\è¿ø\Ä±†\àrb\á©ÿÛ£\ë‚Ô°<€ÿÐš~_\ém?#±†¼©\í#B	\î(\ÒÛ¥~b%…w\0 ˜z±9Šws\Ó\Ônù\Ù>Dy1Û§–•ø†\è#)\"Uõ­\Î\ÔýG¤þº´\ÛÜ‘\é]õ­Û­M:Eœ\ÞZ\Û<v(@^••òeõ\íK\ã\0Û³}sYDk6›\Ð\ë‰ñ\ÍMµ\Ã(kGN‡Ø©\\BÎ‡Û»øoXc\Í\â\Î\n‘jJ\æ¾#›Ÿ@R 0¶ó`\ÛÁT\Õjñ¤5\àDžý­-8FŽ\Ú\ÖQ\r%\Ñ.\Ým\Û\Ä5R\Âã–©\r;ögPkl„r<\â\èCDŠ\â0*\nö)\Û\Ñ\Å\Âm\Ö\Óx:°.Àož\ÞwýpÔ´6b@\âW‚Fk\Û\Ó-¹\ë\Ö\Û\Ï\ì\ï\Ü\Ñ1\é\äq‚[¢4š2\Z@\Ñr»: \ÛÓªN‹÷lT­D“…\Û,\'›;\Î=«¸†%\È~\æ	H`\Üƒ\Ý\Ì`@}6\ç°\Ð\ï[d=w\\˜\Æ+y\å\Í%e‘-´_ö\Ü+ˆ°^•\ÃJ6\Â\Ê^Nih\ÈõOJkföiBª\Î\á\Ü¥DœÌ‰I~\Ñüñ§\Åú.lœ\â²v«Pg»\ášwv\r\Ü\"aMIø\Çñ\\\ÝP¬;bó\Õ>ê§’5>7Dub«lg \Þ\Ü=z^«z)t‡õ—?Åª\ïé³Š<)–“+$\á>\ÜB€FV­d¼0¥\Õ3\Ó\àŠø¬m\æR\î2t¦\Ý/v\ÜS 4\Íh¬\"•hAD\'¶\'|\ëº6[kF=\×\nyi\Åõ«\Üfóm»³±‰Rþ²…\ÔÌ—U’iØœ\Ï\ç\Ö!Y¹\Üh‡L\ê\ça¿þé—¨bø\Ë|\r,7@\\\'>\Õõº™0\Ø\Ünƒ+SûúK‡\Ë\Î&€s¯„ñÑ‰·\\;Y·q»9š‘\Üw¥m3Ÿt\ï	›\ÇÐ«Qvš#`i-1Ùž\äUúh\ÊÜ‘ñ‹‘„Ç£gþ\Ö\Ú\n\Ü\Ü÷4 ]´Dø$ƒ¯ñW¢¹Ü—•E¹V¼8Ö‹i;±fÀe\ä|­\Ì\â¢Ë¤†\ËÜ.r¡µ²\ÊYMDMK\ÈqöÄ¹z\ëZ\ïp\ç\ïý\Þ\ß\ÕÜ£x³\ÅL#\Ë!\Ý\îE±~p#‚w¼ˆöpý1[©0L´ö\nÜ±f²œžX¤\ÅIñ`&•›¯:•=^b\çKGÁ\0.\Ô\ÌÜ´&Š#¼\Ôkp‹e`£ò·ª± h™f\ÏsIžXNk\ÜÇ—!º\àJB(AL….V#8öde\\Š†B_•&\Ü\É:øµK³º¿:õ\"Â‡$_\å\Ç¥ý\Z˜†g ¹…\Ü\ÐpSI”\ç\Û{Ç«2jP±µf\åGi+YHñK\Ü×€¤\á…\î\Ã\Þ&¦©ôf8•§\ÖŠ„ó®Hk[%ó¶¸\Ü\ãm\ÖrÂŠ\Ýs+n²0\ÙOfüž\ß\ìÖ ®Œ7À\íy€\Üö\×\ã\ïùç¨¶þ¶\é\n£oN{mnP,\Ùh¨+p]h4\Ý\Å\î§g\0x\â-“•¬¨8£“Àø\ßúE\èmb\ßE\rH\Ý	Zº¶m¼Ž‹\Ý\"®6‡Š¥N`\ï! B\'wC•Ë®”\Ý.°0{\'~K.sJ›·µIPÚ«º&nR‡	°2\ÝJ¶ù¯X}šúkŽ;\nÿ\äöÁ\é5ñ¿V´ržû4ÝŠwµ?ÂœL)£\ä­K¸ÿ\å†f4Ùº\ra~÷tnT\ÌüÝ©zK›±u‘\ÃY\á\à.\Ã\Ãmýi\Â4Ÿ’«*¬UT\âÝ´ª\Ïø\î\"c¿YO€|D\å\0øÁ;\í.ü¨–\ÓÑ´º*NÝ´ÀK\ÂñbT\ß3•y´*\Ùúú× µ\rFøŒ˜·ý–Ý¿pü\\\ä/h#]\"\n\ë=\Í/\Êþ‹¢MZÖƒ²\á\×I\Ý\Ü33¹u n°±M5Kh&\ÍbV\\%˜Z$\èiö\î\Ö\Ý\âC±1\Ù~s\Ù\\\å6\ÎrÛ˜\âôŒ\ÂýŽ¸\nÎ£\É\Ý\ê\ç6tt‡Ž|\ëü\Éhf¥­S?\îf\í_z¢ªŒ`ôy‚\Ýõ\ï\È\ë…(Hú2\nyÏ€8\â…F\Ñp¿˜\àB\Ýø\Èk¿\ÂÊ«.E» Ÿ\"y\Ë3ø(ÉO6\ÂSuÕ›Z&\Þÿ\Î\êS,®	\É\×\Ôpö\nb!\êós!œÍ®]‚>ð\È\Þ\n˜óOº\Ûj\Çø\Ô5»RLC‰I˜e¦ôº\èá»”Je\0\Þ.S”Fˆ>\í.œ«\ç\Ý\î¨w\ïg\Þ:$€\Z	ž±ªV\Þ8{\äõV÷\íú9\Ë/\Îj\Úzbbž\Þ\ÛhFøµ+”\0~š\ÞX\Ût\áðÇž¬ƒC¼¸{•\Ð\ã%¨©f\Í\"‚´Z_m=ž‰\ÞZ>D[¹{¶©\Î/³Žm9qN\Ô9wN|\n\ÞÖ¥\Ù\Âs\Þj*\Ðñb”Œ\îTÿó…O5p\åp´`€„)\Â\ÄÞ–\ÇpöŸ\Â1iý\ÅÐœ\Õ¶û&ñ\Ó19Þ }D3Ì²»Þš$>ªÀ÷ª*ñô\È\È\Ö~wa°\r\ÔÁµxŒš„Þ¥\\\Þ}ü9QZ\×\è\rHO\Z™+\ÈCµ3\rÍ‡q†\Ñü™,\âÞ±\Ô\Û\î\n1\ç¶$\Äd8v^!*˜3\È\çó#Íœv@\Þ\Â3¬&h±N;y‚B\Z\àª\åN¤ 8	jüx\Þoù\Þ\ÖXQl~?‹8’¹•¸\Öi\æ\Ó\êi8|¡«†þ\ÕLe\Þþú¯\Õ÷\ËI\Ó_y:÷¶Ž“&\Ç\ë³ûRªz\ß²<OT%x\Z´\âÜ‚it11E¹g\ÜU&½¢2\ß1°YI\nf	œ\ê¹Yá¦Š\Ó\ÏFrL\Ç™¼\Ø7€\ßu…¡•´\ÈS–tÖ—ù³õp\èœÇ¯$U‚-²mö©\ß ‰—~\Ð\ÜV°>ƒ¢¯ò˜€¹\çEY\r’,i¼Õ‚ˆþ\ß!\r„2n\ÄD¬›À9T\é%TÖ–\Î\r>™‚›\ì‡Æ¾\â\Îü\ßAýY\ä{,P\0~b•Š\"Üƒ°›½\îƒ\ê\×©n\0A\ã¹=\ßRŽ’˜<\îF{\È;xÙ¾Û¶I\Äx3¦\n\ézÇ–ÛQ\Ê\ßh°\Â-nñ&ûU±\ìe\\\ÑXjš`øünÙ­\Å|ò&\ßkÁ—2\ØùÊ°\ãS|§\ØôI\Ú…ß†R\Øýy¹rÿ\ßv@|\ßz÷%\ÌÓ¶p,Áro;B5\0±\ÚC®…yaF\ßv\ÙVNcÛŠŠi÷Ba•\Ö\á\Ü\Ó\ÆT\Çf€X\ß÷\ß| ³jòª\Ób·ªdP\ÏCW>b\á\æ°$=O\ÜtÇ\ß—>G8j\Åj±4‡•8µ-sZ\î‡ÔsÅfª?ß…y÷R\ë˜z\å5ñµT§˜\0\ËDUç££	«wÌ¯\ØßŒ\nû‰ür†ƒsgÉ´\Å\Ú\ã5Z¢}Ì¼¯õ\â„ßŒõP\Êý½Ü»†\0·{Q\çÐ©#\î÷m,Áx\\`ar_ß”õ\Ì}>&žIy¸	p‡—Àby1©°8‹gœJ\n °ß™w¤·,\Ø\ä¬ sÆŸ¶lalkHŠ\ïJ\àn \Ý?&b+\Îß ƒ„B.qf6*_…\í-\×\ëªù‡¦W–I£\Õ4—öK2ß§\Æ)óö¹¥sûgñ\ç¯,„øüHe\ä|•\"ÿjÌ‹2(ß¹V\ïþªˆ\Ñ\çû\ÏN«A=´ÿ²X\ÝÀ÷\"\ì\Ã.€\n\ßÅ…i‡2—³~\ê<´g»qÔ´TÏ—ö\æ\î~‚%>‹\ßÔ6mÿ®“–_¨5\Óô³Ÿø\í›\è}\Ï;[I\ßòF\êöi±\Ó\ê\ã|x¬7N¤™*T¤\Ï\Ï\àZ¦´j”\r\ßóu^kbÚµ\Ä\Ø\È)†P\0˜€\×[\'\à.¤l7†\ä^\r\ßö?Š%\ÕRþ¿\êc’Á­Igl‡\ìŸù–¢QRx\Z\ÐË®•\à¯R«-S®ZoŽ3Ò³CA›j»—¯	™M”‘^\à2\ÒÉ–<”tfp\'\Ò\ÜP6ß±\Éú)¶u›´@üŠ\å\àS…ÿC­o†¶­m9¬\Êô…4]·2IeEü˜k…„q\àh\Âö@N>\ÌÞ‡Í˜RRSo sªBycó!\Íõl\àƒª¢\ç\ê	MJh^ö…`\Å¼7¶ýZ\à=\Î\Ú\à^Ô¯¤¯\à…\ÏÄ½1\ÍTg‘«Ø±ÿÀD\Ëñw\àh\Ïl\àŽ\ËÔ‘“\Ë\ì_‹x†4Ž°®\í\r[ò\Ï	\r+¹ù…¾~\à\"j—\\\êç²ƒh_E\ÌV\"¶§·R­ŸÒ†c\àœ\Þ}œ\×o©iÓ¿Fp\Ü&K\ÍIPÊ½±D²\á[‰’ù\à¢\ÔE=3iJ[a\Ä\Ýx­(aB½tgñP	Š‰Bƒ\Ûú†\"à³„½±\Æ\"-dÀJ¤¬°”¥©Õ«	U½{˜”Žö\à\Ï(\ÜQG\è<C°<¼’¥÷\êF\Zm_=|…kÂ„±BÃ´\à\Ñ4¨\á>]F´fw\'\à‚†ˆ¥¥¿æ¬š\ê\ã­Evm8”\à\éaøÄ†î¨¥\êJ\Êÿ½µHÚ¢#e§ Rû¾7\"d\àô‡#!\ÊE!,ñ\æ”cl\à5„B\\	W´\"gÜ·¿}}\á\è”ü|Ÿ¬“ˆC„\ÊC0½ü²óv\Ó\Ç0K\é°\r-\Ê\á\è\É\î´\èp¹\Å®úº4,™\á\éKY(—IŽ \á xD¨Qƒ¹\á/¢tú«\à\Åv›±\É\îÇ¹U\å¿8¹\á&\Ý.a©•YAø‰=°6ˆø	Ý¼\Ø\æ4\0e0Œ§\Ì\á-¦\â©\é4J \0ó)SÖ´\Å\Ô\Í\ëò?\Êk\"4\àZ¹.\áZ9…\r¡k²\Õ\ïX\ê\Æe‹_^ˆq(Ñµû/Ì¹\áh‡\Ñ2¤ú\ë2&\ÛXˆt-\å\å\Û\ÂaüœZ¸n\ámúsN\âQ\"?»mFN8ª?™pi\Z²h\ê©H\æz\ëáŽžO,\äk”h¬iY£´e\Õ8;w*AÞŠ&\'D:\á™\Ð5’`ôv>‘\çd\èŽkÿ}< ½ºö6\Çþ€ ™\áŸÈ€òKB\îÛµ&|UB\Æõ\0¨Y¼\Ô;@7\Òñ³\ì\ä\á GJ\ãòÛ½æ·+\ÖI¾¤-…“\Æ\ê°i3\×<\á\Ê\îe\n!ñd>\Ç\ç\áa‚ñ÷ö±%+£eT7 õÒ§g\áÑ\Ù\å¢\é¿\ßd\ë§\ë‚ñ,w=	©{|\ZZoÏ¢.šÀ\á\Üp\Ö]\íU\Ze\ß\ÚûO§lP¨\Ä\Î\Ö&A{°Š5\á\å/ÿ\Æw?Z)H%ÁK“-œxrNœpê”¨\Ôò%ý\â\r/<òõ©\r¶gl+ŸQŠ_rð€-m\ÃP\îh¦Q‰‡\à\â$,¶©…©5ö%mŒœü\äí§¾ÿ\Û,»\nu(Þžw0\âKoHJ,aô»	”r†U9\'s?\Ì|ˆó™«¾\äô\âR0™\ÏAtRW\ëE  )©\çÖ…uT‰±¬R¹\ÏY\Å\âT6™\Âr‚\ä³\Z¢IZ)³þ[w[]\ï¡=`L\ï Ãž\âV G\ëL\ß\ä¡÷™¬¦mJ—\Äa\Î\Ïf¤o€\0\å\Ô\âW»˜e\Ø2\Ú`\Ô¥:Z?¦š¢\Ó\ì^X=G\ÈÎ³¹\âb<H”G§\âwE\×21\ïwh„a3(J\Ç@\âg)•¤òz¨„ëŸ³9\ç\Ï\Å=°Á8\Ü\Ôý\Ä\'\ãKI\rn°â€µ`úiz  òy}ý³fW\Ìmh\ïGmM•³¶]\â˜H\r\ìu’‰:ðº4ˆ\á›Ì©¢i²ô÷——7[G\â¤ì³™r\ã/a4 v)šw}Uõ³+ú“è°†{3â¥¾¨Ïµ¹ó¾”\êç‘‰—N)]ôòW1—\Ò+Z±§\â¨*Ê \Òu<\àÿe\ë\ë\è\n\Þ\ç,›§¥&­\ÛÍ­1¿\â\Ê€\Û:If	\ÌÚ¦%‚‹±5\Ð@Q‰85õÊ‚1\Û-5\â\Õ\Â\Õ¼ym\én*$\ï\\lµüGš…\ÈÁ*²E\äM\nl\â×­\Ïm³[ð-ùB²8Y´ŸÙºª’d™¨ûJ6\á\ÊS.\â\ÛV59\á†ûœú4*·„¶f¿H	¼‡\ìr™š*\0ñY\âã±¿;+h<Rô¾Ÿñµ¹V\Å_\ã\×u&Rƒ\Å\á‘:\â\ê˜Æ¹\éW\rbC¨JŸ™9 žn\àFB ˜y\ßJ/\ãad¸\Ë“V§\ÒBZLC€ù¹¦;’wx\ãY^Á\ã&^¡\Ó=·xÊ†Es-µÁy@\ÖG¼y—\Zõò\Å}øq\ã-ª³óÑo/@ø8\Ø7²²Ÿ?ð›\Ì!c°¬^ªHþ\0\ãEœ*\Ð\ÚªIòz3^M±Ž•P4\Æ¥¶Fl\ÃwRC\ãH1“\0H\rgf´^Hq*ƒ\ßvþ6M\Çg2\Ü\Â¬°\ãI®Y¾–”\ã›g²·\Ö_¦\Ëùµ,ý\ZI.&;Ó¾r\ãV<Sg\àU|¿4E+5\å¤Cõ828¨˜‹Ò½\ãoù\'\Û?\ÓõŠ_\æ8\Å\äÛ—0]$47F\Z£A#„[°RA\ãr\Ð\Å57‡\Ç{›0²7f=\ê9GûcN\Ì\ÃùyÎŸor\ã|‚¸A\î\Z\íU˜\0®\ÎjJ´ŽÎ†P\ÈM6.\n?\ã~¢o\â•\ÇÎ¥™TXJ)*a›†ºL#ôV\ÖñÅ·Š\î\ãú42B\ê2Ž¢ü±,u¶\ïÊ•n}~\ÂÒ‚Z-\ã¨3¯6	\Å\àž£›ø>Ó¯¥\Zÿz?<^À\æÁ¡…\ÏÞº©\ãª%8¬÷\"¿yÙ±OlB\æ=VG‘\áhó‹!\â³\ÌKö<\ã\ÙJšq¯\Ç;»(5nO\Çj¦nYZ5q\Ú\ÇPÜ \Ä\Î4\ãôzgzB\ìtWnŒWþ¢&»c\Þ\'J@{T\ç\È\ÖrŸq¯	Ÿ\ä*k÷\ÓJ+\ß0ú\Ï}þVL¾f6	•\â\ÇüÓ†`lI*H\ä?²6­‹û\ÃG§}h\êo\ÚBƒ\êñ Ÿ‡%\ãùµL\ä@¡Ä¥¡òübu‰(FHP\\È¯C9!²cnÀ\äN*NJg§ª}Yv\Ë\âµ7\ÑOh%.\"A—X\ä*ä¯‚·:«rÿ µ›oO\Ç\'7x¾9´ \é)y³‘ûj\ä\Ñ?wk\Ñ6òÀŒ£(.¥T–\Êv—Ì¯1‹\ëª½¨»‘\ä\æûŽþ5‘N\Ë\íbð7Ù³UwŠÀ*)\Úh	+Úž²\ä\é‡\n)Q¶\àN\Êk\Û\ÂU\î4ž\ÉüJ°M›\Ñ\\\Ìñ\êV\ä\ë«\ßõ^1µ\Ü\î\Ã\ç¨u²\îrYÞ¥1m³w\æô’±t\ä\ì\Úø¦ˆ&˜Cr\'BMF\Óu\Zx\Ù\Ò/D9Á«ðzH\äó&U\éÿ>\È+Tœ­ôKðùF(—³,`:7­†Q\äø\äúÇ±-F„¡ŽZ«Q\éTÆ·n\r¦õ·{Œ\ãÁ\äü\ìšvA™¼\Ùó‘Hø\0‡eq$óW\ÕDj›³K+{j¨\åPuÀÏ…ü¹~û\r|F¥\ÅSža(\ãJ€}ÈŸµA\r\å1P\Ôxœzšu\í\îÑ·±;gtS7„\×\éGn+‚¢Q\å1\â\Ærg¤“‘Q\× yg\á\Ð\ß5ù±.h¢”f°ÿhm\å;½ö\Èk¢ »ðô²±W8¡\Ü\ÐË‰Œ¡ô\Ún\át\åA\Ü\èƒøby—MÏ;(ujûù?\Öó]\ë$\ÍC\Þÿ\ì&e\åZ\æ\Ã%¿,zf¯w#nØ”5²0DŒ*/r…xª¶P\åg\Ö\æb– =#\à¢\0öMœ)ð\ÝB\×\á\ã…\\eù±\åˆCAø\ï²wƒŠ\ÙwK°HYøª\Í\"÷´\ä0d´\ß·ž\å”À~\È\Øýk\í:µ£\n\ìø\ä\âY¨Ã¯y.¾5 <€\ä”\å£o\Ê\Æ¼oP?¹–†ü©D¸“O%³úÚµN:(\ì²\å²{¥Z\ØÓŒU†J•£øk#H‡…T]^¥Uÿ\0T’jå´ &¹Y|\ís<“²µ\Õ\é\ÓBŒš\äJ	ò(zÚª\n\å·Ä…[Æ·G®\Ï¥\ÂÖ±!IŸzóA\è4Nÿ:ÓŠ\Î\å¸ðU	ž[–\Ç\Ãº\ê\æy-\È\Õ\ÜòøŠó˜\Ê)­\ä›5\å\È_\âBa\rcÿ­‚\ë\Ñÿ;£ö‚p\î\æ\×vˆgm-,\å\Ó\Èý_\í¼\"T›Pœ].íž­j\î¦8\\3\Çc\Z\Ù^\Ôý\å\Ô@i# UcjH«q.—!þ\â\î¿Û´	^Uœ\Ó\r\ã¾s\å\â¶ö&\äzƒ‘³\\õ\Ú\ÝL\Ò ¥\Üð¢Kcu[¤\å\æžþ;må¹¡™F}I­-6\áœn\Î$[\å\é¨Ž$\nÁƒ\Â9Ÿ2%\ÍV¶\ÙúÂ”\Ò0D2`qœ¨\å\î¨T&²¹%\Ñ\íqŒ5\Ã¢ÿy\nVÚŒ¾™H©t\Èð\åö\Ø\È:œ\Ð<‡k%·›û‘\Â\äÿ (õ„\Â1²\Ó.\æpŽIŒ¸u˜Š¼\ÜeIªt9Ž\ë\Ô]„\05¹ô\å^\æ\Z!žù\Üc\çxN°®d\×i\ÔGeAI@\ï\'iÛ¤ÿz¿¦\æ*\ÍýbT‘J\Ó-2\ã\Ô\Ì<…8Ko|’nF&Qó It\æ-Z\r“Ë…‡òH«F® wb\ä9Ñ¿\Z\ÓxR\î\×\ã\Öc\æIŸ0\ã{š\ÈeQD\ä\Ð \ì\ç€{‘°~aK\\-\ÖB\Z¬\æ](5z\Æ!üU\Ç\âN[\áaÀ9»{\Ý\Ï\Ï\Æ\Ôj©›B0Pú\æoU­œ\È\ÛK¯˜j¦\ÚaW”Å›\'„´—\Îyˆ³¬Y\èæ›—>\Ö\â@-œ\Ï\äº\ì=•\æ	gò„_šð³õ\æ¤ñ{-SP+f£´Qúp\ä\Ô\ë87i!*I\å\í\à§\æÈ£7ƒ\Z\Ô,ñ¡š\ä¨[x\Ë\ÎR,<XŽ\ê¦\È\æ\É6\ëKk¹	\í\íŒo´Œ˜yA¼w)ö\Ä}\\C	\n\Ñò¼=\æÕ‰{£¶†•½o×¶gbUŽ•œhº6‰ÿ–XE’.\æ\Ø\ÛR‰un5jšŠ©ô¸\ÚO\0\é6\nt\ìu\Ù=´´\æ\Úù—§5Q\æú%Ç›|ß‚Ž¢ÁY³M\Þ\\\ÉJ»až\áb\æö\ÄÁT\Ê\à÷jŸ\ÝbGar¸U\ß\ê„~•\ZoZ\æö\"TÉ·\Å\rM\Ù +\è\Âš	`‘ˆ\Ì\ÔgO\ål\æþ:”\æ\ì\â\æøl³}s1¤iJo\ÄZš3w\Ô/at\Ø\ç6’µaK‡¯‹\é5…È”4\\4M÷Y¶^eŠxM~\ç?\\pûŽiEE\Ëþ\Ê,›8±ÿ¸¾)¢T\Ån,û„q»\çSF\Âz”È²MRý\ÃW3\Ã\Ò\\\ÏŒ€\è\r\Ç\×q¯\Äò1?\çXE¿°GD†f°\ÜL­S\Âq…†`\Ö	€”\ÈÙ·\çs\ï†Pø\É²W›‹M¨Qó~@\äÅ¯\ÃÃ—\ÒÍ”ç‚¿E\È\Ã\î$>9¬6g\0­\ëÃˆ¿];µ\Ålˆ¬ \ç…\0lš*\r¾ŸŒ\Æ\n%žE\'\ÈtûûF\ë\àä†ùç…¶\Zf=?±ž;[§”\é%ó\Â\Öj\×\Ä{j‹ôMa7\çroØ«\É\è\Ûl\î]FAŒ1_†\í‚\æ\è„\n\ï\ÌÀ!ç—°fùWeJS’“ZŸw\ëk\ìX¹ºÚ±\ÜòÓ\çš\Ø~¿\ç‹\n}\Ê@™=\Þ\á\Ü\\Y³ñYÁCªˆ]\ÈÇ¢\é‘\ç¢‚€†\Ò5 ¹¢\Ìc§Z¡\Ï\ç°\rö»l¶Y\ç¤Æž[#\Äi[Ÿ÷5Ð–Ð³4\0\Ü\Ç2m\Æ\Ì&\ï™h`\ç§\Æq\n\"Ž)\nŠ\Ñ\êSe]œ\é~¤&^v¹Šw\çÅœ‹¡´‹‡v|Ú†…`z`±®„²I{ûz\Ô\ÖC€9\ç\É]Wªòˆ\î9Õ‹Ê¸oz=ª®™p³rø\Äóþ7\è\0£H\n({\ÝS=g\è³®\ÙÿÂ‰kyo\Ì\ä?þ”•¼\è½¸\Ï8Õ‡¥\Ð|B\Û\ç’D…Šÿ\æ«1˜‹3œ\Ø7š\Ý\è¶\íÅ£é¢\n<Yz\'±\Éj\ìXœ¶»`\ê¡fr¥Q\è\ZöÈ¿\Ó4ÿ\áü«M†F/\Ç-\îf‘¿r“:CK\n\è\Û8]“›PY\ÝÀ5Hý¼\ågb\Ç\Ü:’<žxÝ¢¦\ÔX\è‚\Ç,s\è\Ý\Õ\Zi™(±6è²¿!˜úžÿgŒÑŠ\Ñk8\è&¨\Þ\\ú¥-›\Òõ38žå²Ÿk\Ôn¾ \ÉÏ£\è,+ÿYy.2À\rt*q7\ì\Ø,jðŒ_H\Ëd¼QPY±@\è-¢Â›dŒ´xøj½)”£dmˆx\ÔÌß»‡\ë?\è9Ý±|û¾X!¢l½‹·ú%1+\ãw…\ç\Ô$­5\èJ\íck!Ô›\è“H\æF¼fK\è\Z¾–ö­ûRœ$H¤\è´ZY\î¡Á€\n~\í\ÜP.\å\êxêœƒ N\×ýÃ®(¹gF\è\æFRÁ\naý*!_^è²¿¦r÷…`H¿«a¦ñb\Ç\èøw÷@\è©Y\Ô\Ì\ÃÀa_‰^\Ë\Ëf¤¢^\ê\Ñ\Â(\Ä\rO\èý«>\×è¸­,“\×ƒž¹š¯ýð\\q\ç§œ\é³r\ï*³ï„³\ÚÁ¾L–lf¢°­Š°< \Õwž\é;·?\Æ\á¾Ýšµd ‚t-\Ì\Ìü8e\ä0WŽø~»*\é>< *±\ì0V÷\ê‡\ç\å£\ä©\Ø\04¾~\Òt¡µúU‰\égLóQšù¢ºŠ\Òùç£º1Z\Òktx¬\Ã*ýš¸5Ié„³~ã¾¥Ýµ„n„n\'´-˜\ç„ñ˜Ò‰V\Þ>\çéˆ¢Ú›\Ôr],?i(R;¾À½}¾˜>•\Ö\Ü\éžQV!yvpcÌ’P` ˆ-že9rJ“K\'t\Å\Ï>;é«¥úÄ§gZ\ï˜ÁúŒ\ëC\Ý\Þ§\ÔJ oÀ\é*^ñ¢\éÉ°1–N»JýR’\áiÀB\è\íŽ\ÔOõÓ¬B\Ì\êV\é\×h´pC\é%\ä\âZ\í–}¾=¢™s<Û”Ÿ\Ë[Z\è#g *\é\Ú\é°\Z\é;1\ZE”?Ic®_€†\æðc\Ä#Åˆ\ÑM\é\èž-µ[\"¹n³Eª*9‡p“:\ÖcZT\\\×\ç›:_½\ê–&#`Q¸\n.	.ŽE¬@¬ÑŽ.ú©%E´¸g\Øüˆ\ê=\ážN3\äü¸>½\ì¬gœ|S(F\ÑjÇ•\n\Ù\Õ;•e\è\êX\í4P£iev\Øû\æ\ìW\ßsoÚ‹\ÅLñ­QBW\Ãb¥\êe¸xþñA\íj,p¤rñˆk•jV°iƒ\É\ê›\Ù]\ÈA¦\"”¥‘±—3#Àq Æ†\Ö\Z¾)+l\0#<9\ê¬¥\"Ï•ü“ôA¥\Ùv\Õhz\ÄJ>AŽqƒ\äW\ß&zU\ê®V¨šµ\Æ\nW8 ­²`\0ayxHÃµ¹× c\é\êÎÍ¿Í°µ\Û9Oü8ñ^^\ç]¦½ýt*f\æ%\ËýYE\ê\í\Æ5ð<\Ê`ðWÿ²hµ«\Ëj0g÷_M†üª\ÑTJ\ê\ï\np²…cÂ‰[«ù\Ç_:E(.)“&$*~\Ï(gf“\ë\Ø;Ÿ—‡c©\×\0Ì¢¸¹c\â÷e\Û:Hb>R@\'=½v\ë@5)\Û\ë\îy\Å&¡Ö«“†‹\r»¶œ;\Äð\Ó&\ë\ÆØ›Æ¿¯Ø»\Í5|V¿{£×¾üA\rreAFzK`\ë\"\Ù?\Ð\ßE¬õz\Û\êcRœz±\ÐÍžó.V\Ç~!\ë6ø˜k8•\Ö½¬\éÿ§ W\'\Ð|Ç˜\Ìý—rf­H	/\ë@\':{ªY½T3NZ¥O\ÇQË¶Ü©8\ÓN?5\È\ìn\ëA”¹.ºy—aÿé¤·’#‘š\ÎcÁ¢ð½^S\á§\ëAƒý_š\È\ß7ý\'hcvœ‘]½\Ô#\':\Ùz\Ø\ëK\×l\ß\à?÷Yk\Ò\é\Å2‚ó\É\ìW>§\Øô-ˆMõ\ëPûN`g?\\\n\Â\rK¶´¹\0ð\ßJ<Ç˜3bxT:\ëW*–\Óªr—\î-6¢föpxc\×,hoNƒI÷\ë[\Í\\\ß`ÿnB\æ7$Î‡#tý\"S¬m\Ð\Ú-®§C\ë`\Í¬ÉŠ\Îs\ÎE#)(»\ØôA[”h™\'ù®ø\ç\ë|\àùkaO\ïIŠ\îh\Ý9A\08(¿?¼K\nµöÍ ¸\ë€ZNt­a\ÂZ¬”f+Ç ‘\nõK\è\á°ú·°œb¯\ë¡n8œõ\Û\à1\"P£ªÁ\ä\ì&±8\×X;\ÃU^Ž\Û¿\Ò\ß\ë¤LDL9\Æ4“Ý¬J\Ò\æ•ÝƒõC\í¦lE<aÇˆ…\ïö\ë\ë¥l\ã.Ä“z\Ú\Í]\nº\Õ\Z‰ý:›\Âzs\0nÄ½\Ì\ë¶ÿ°>¸e\Å[7“\ÒNJõªttŽ@\êŽ`¶2Z\ë¹\'S§V\Ù\"\ê*‰XAŸvkœOx¼Þ¡\ÖmdFFÃ…f\ë\Òa+‡6\È¬\ç³\åÁ÷)rb\Æ4”Ê²g´©}S“x\ë\ÛvÖ»–aÊ©\ÆD\05SS†-’\Î*\Ã^Ó…Œ\\w²\ëð­\Ò%`0Š¸ª•vl·¡µ\r®˜˜\n?¿4É¿\ìrÖO©n¿õ_4\Ä`…/“-ñ\'À\îaYI|6\Æò\ì`Z\â4‘¨\n¿\é\"ž±l\'Á\ãU8y\îkSlöØµA\Æ\ì(GL¼¦8!\Õ<z½Kr\Öi\ã\áImV‡e(iCxù\ì/?‡¿¨O‘¾\ÇE¥q¡²ði7A:Š3\r”³˜¢:\ì?°ý2=‹,¬+)\ÍÌ»þ\Ón£gš³»3©(·\î¡\ìD—\í\Ôaˆ!_yþ	\ÂQ“VGK‰³Ò‚½šsv@\Ö\ìNº\Ë\Ôù\0\å}AŒv³¨\ÃA¾‘$\Î=\Þ08Q\×j€®\ìV\\†P\è[\àpHa\ÝF~yQ¤ËŠô\ã€¥\à\Ãrô\á\ì`\å§\Z\æ\Ë\Ü9ñ÷•8Ra>r\ÕZ\å\ì!´e%©\ìd¡uH/l+\Ò\ïÞ \â\Ý\Ô\î\Ö.„\ÃÿI6Šñ(\Ûÿì›Žy—Rôjò·\nM¢\Çø¯\Èx\r.sˆÎ‚÷…\ç\ßÁŒ&\ì§^Ÿú5P’«—n\ä\î>Ÿ\á:Àý\Ý´\Í,GòI°z‘R¥ì®À’¢y¥\î\ÃY#¨Ç³\ÃE	´\è92¿žž\ä„\ì¯»ƒvnjs,_Y{\Zk•˜]µÙ›z¸Jò^z\ê\ì·{‘MŽþ\Éþ9l+:A¢\ê}0¤š0\È\Ý.½@L\ì\Æ3¢lå›”‰\\\ÕHiÜµx„f\îLl#@Å¤‹\åe+\ì×¹=’¾¾³So\nhÑ±¢Ù‹!J~áºžÇ¡É¹\ìá½™Ág\rÁ„yôuCx\Ä\Ô;P{ó³k\Ø\î\Æ\éyM\ì\ã#µh .˜’?\éõt#É ‡‚£\"ü‘\ëz)`–\ìúRI+‹_#a\Øÿp[o\×ñ|\'\ë:@ô\îóAª\×} E\í\Ãé¥¬2,ò’¡Á)º“w_\êDÊ‰Ô¶§Í‚\í\Î\Ô6j4°0FŠ†Scö\"«µ~\Ö\ÖG8<\'óÀˆ\Þ\í¹€ƒ³½‘:\ïÁ¨ŒM\Ä6©ª¿/\î¿U­9)\íO…\à\ã\Þ\áª\ÞWTÁ>•\ËûŠSÁ€0\0\É;§õQO\í%$Kðþ	œ\Õ\'\ß\àÍ•{)²°_º\Ò\ÂÄŽ#/q\í&ôO\Ä[\Ê¶\Ñ÷O¹\"Â²\æ,\ê\ìôl?2j&—\Ý\í\í,‡k\àºû\äþ›¥û$t3\ßó?iYÏ²YÚ·O†\í5]Iÿ\ç{ö¦\Î£›¤ƒÙš‘X‚L\ël\Ç\Ìò\Ì#,\n\íW\ÓMb™©X°³zp)\'\ì•Fñ—\â{§ôPniqŒ¾9\ío§\ÃÌ³l5\Êy9òMb†&iK–\èues¶<%\íqÑ¬6\ÙþI¬¬½F™_‘‚\'Q•7—3#5XN¸\íxL+ºÖ–}	gTj°ô,\Þ)0fœ’\Û\í§­;7p>\íƒDy(\éº-s\'\ì\ã¿#Ö›X\ÌÞ‰\êÎ†•>¼í’\Ý9\ÈF„Üð± \Ê÷d\È\ã\íÖ°H]@e\éPa\í™yŠÅ&)Ô§ü»0\Ðx)/\ÒmÛ…\Ír\ÙUz\ßí¨•þ\ê„¼\Ù&š•¹[j’}wR÷Eý·¥v\à\ä\í\Ì{ðA\ï„ñôG‰5öF\ä¿i	y*dq]œOŽ\ÈX=\íÜžÂ“\ÃW[Bœ\rDÝ¬\çý‚\ä \è³vûp\×\Ú\íù>ý’j*¶¡\Ììš¬»e\í3\Öpž]\æ¬L\Ø}ž`\î\Ô`\ÎDX1ó¨˜\ä\ç¢Ø¹“óWJ\Íöš\Í]cÆˆf\î	uøJ0f°j\0Ö‘s\ì\ÐZR‰~•]\ÍÁ´\ß*\Ã¦\Ü\î\"\Ûrd SŒ2\é!\æ{—Ö£:=úNz\ä\à\ï\Ãg†&þ\î$—F,lKê¸‰/Ã9öz\ÞÃœu \ê\Z\"\Ødm\î*\Z\Ü\î\ä¬X\ÝÍ¹[I|•4rñ_œxS‚´©\î*tÁ–€\Û^\ç&ð\Æ/\Ê\\$\Ì\Ò\êr\\`Ê³aþ\Ì\î7%€¿eÅ±CS6\Õ\ê€ÿ\ÒÇ€\èh¤2.^W¨wñ\îH\èÃ®4ñ\Äòðnþ~2p{wq\Z.(ô´W\Ña\î_N\èóCœ³ˆn\Üd,y¼p¯¾U³~¶—\É2Ê©ù\îw\Ç:µjU\Ê/¸ªt#Lÿ¿Ž\"u\ât…\âP\Çw\"\î…´L\Ûx|\ï(.ay\âÑ«u\Í#\ZžÚ„e÷œœu\î\ÇuI\å;o·\è,1ù{÷˜[rÑ¸5\é¶b¨,\î ù½‰B2ó«+Y\ÔGH\éõ¼Q\éM·®p+\Ö\Êi\î³\Ç2\ÑvC°­’\Æm’*\ÑiúžüQLC·H8\îÀRvJ\ë\Üj…\Ãoœ™\×Þ¼f2RFt½¯…	{[O\î\Öbº4˜‚ÿ?\Õø\äfs^\ÅY\Ú\Ù\0‰©Á©¢½À^÷\î\íx\ê{ù†NÁ0GuóD/…S¢\ÊñÿÄÁ²÷“;\î\î%ümp2X[j_aG·…¹\Ð\â…v»@\Þ2‘«b\\þ\ï\0\æ“ƒí«~*J\ÕjT\Ù\Zw·?/™cƒg—‹)e\Õ\ï¬øöZ~&¢q»\ÙN7\Óó Z-\í‡\Ì\É\Î…rõ\Ñ$E\ï\Z3b\n¦\î\æNyoH\ëN„mQû\ÑvaýN\ï/	\äY\ï!v\â‘46]3º]£\ë3\è<§µÚ—“ñµ”\ï<‡*=\Ütó…¡¢pE‘KL¶\Ë\È\Ö[œMrx%\0\ïb0qq¬Ä‚õ®|x»\î’\ïñ:¬_³˜V…5:\áU–‘S\ïo2Ò¾Pÿu‰A_•*}\ë~\Êô‚\'K9ö;ô¾ÿ4\ï\Öp«\ä\n+=U¯Oª}\Ý\î…6ÔŠ|¼‰\è±}<yï­¼Ö‰K\îhxÞ«(R\á\ïñ1\Êõ=~\ÅP\äw\Ä\ïÂºT¡+·Inö™\r{¸\ãM\ë™\ã÷_ðà»˜`3x¯\ï\ä4‡•L\ê#\\r°¼Ô¹F\Å \"‹$q\Ïc\í@\n\æÿ\ïø«Cñ\âKnA\ìO] ™`þo§¦ŠC›ýK¦‚ð\Å.ˆù‘U8u…±›i\Ï\Ä\èH<pSh\ÛZØ°/ð\r.‚Oôû}9žfPk\Èoø\Ö2,”=A}P¨ð#\r5ók´\à›,P¬D·+ª>J»\Ô5ë”§ùn€\Îð.\0UŽRq\Ïk\'…¾šž¨i_i,…\n\ÑG\Ëô+Lð.\rQŠ\0€½%¶\'óyóm–_˜\Ü#\ê?\Ú\ÑðE1\0«Â² ÷7“¥5mw>Z\Íù\ß2Q2K=¬^Nƒ\Ü\âðq¤\Ùó¤\íQ\nôIS„}V#\íN7=‰\êÉ·Š5ø\ÔðžgD¼ò©>h]3\Úð\n0_¬Ñ\áWg¢1*ð¥VÁ¦ð\åÁFIP´¤ x¯‹f\ìvL»@\è\Ù\Äp\àðÀ\î\ÆR;K˜\Øø\Ê\ÑÀúR\Ìñ[:[ÿ\æ*w¿(\æ1€ª yð\ÎjL3Ë‡·d„\'­þV&}l›\Å]dO\ì\Ñgñ\ÆV§\æ:ð\Ó\Ù5\Å\ËfHµ¤A~l!/»6\äyÔ¶ž\î!ª¹[^¦IðÙ·O3\Ç³E\Ø}{˜\ÝY¶z¬½Œ‡#¦\âñ€@ð\ÚöXaÍ°]\ç\â()cÿk\Ï\Ð!~só~h®\í\î¢q0ð\ÛÁ•X?8ùÌ…™ƒ\àH‡\Ûi,+xú¼ÍµŒSEð\å®9¾r=˜#_~­\\£/SÍ»\Ù(YC/#/\à€Dðô^>¥6\\½¾\ã\âV¿6 E\é‘i\Ç*\ÙX,¤/²6ñÿ\Ú\à\×\×}%]\ávˆ	§‚\ZYû«¨\á<ž}]ñ8\æc›\Ü4=}ŒX\íj(	;\ß\Ýw\ãg\ÎÖ¸,\\Rñ‚0©$k\ÆoˆA­…{¿°¸†ÿ\Ê2#\ì˜amªˆ\'™ñƒY#\ÎòO®\ç(&\r\n0\Ø{z\É\ã€ö\Çû7¹j\Ç\á»\åñ¥Rºv’•‚^0\Òõ?ø2Dh\Ù4†SG\Æ8RH“eü\Ïñ¸4Ú‰3\Åz\Zr\íK,\îIÞ—\ÅOeÀx¨ÑŸ‡ói}„ó.ñ\ËkQ¾_\ê3«°9‹y\n£b\Û-5c,R¹–ñ\è3£§\Å\'„r´˜.]9c\Ëx·ªßšY9\í\\~\Ïóò\Â\Ø\Äf\Ö\Ê\ÆÇ¶hýj}u—pIX\åp\âÚ¾Î©T²§…ò/\Ó6F€ƒk\ÍT†E;\æH	#\Ûß›\Þöˆ\Í{òC\'VÛ¨/\É\éH_n{\Ý\ÔFW\Ô\ê?^Õ®¢VŸ\ï‹ òN	±\á»-«²²j¹›\Çs\Zjhß½C\áÈ™ªIù\ë²EòR‰˜ú1À\ãGžÅ¸Ä‹±\î‘d/8\Ô\í“Z{{¥S’*Qòb\äÁU‹aö\È\Ð\Ë9e×½R§²X‡?æ¥ˆ1±µòih\Z\ÎÒ•üƒX¼T÷9€¥€\ÛòEßŽ¢iðšÑ†	òv²••&²=GžŸ\éVŸkr2\Î\×C5¶­¸\Ïmô\Ê~q~Œò‰±\Ø;rfXá…¸½“eX\Èt¢Åª.+[¤µ£ûòŽå’©H{vú\Ìò./s|U\ÈZ\Ó\ÈA§h$DU²s\Ó\Ëò­\æúI\Í{\'\01Á\ã\â\ÜŒ˜\ä‡røªŽk¦ŠD\ß\äò\Âa²c\Éö´ö#kôQbm(ö¹(· {ia^¨\\v\ì·Jò\ÖM©”C`QA6 _\Í~‚j\Ócˆ,1®\îŒF\n)7\Üòä©¾!\è@¥˜\ë	\Ón›ˆ÷K^$\Û\ëN€Vj¡ý\Êqò\ì`J…BZ›Þ…ˆJ¢Œ•X 0u¦9 >¥!®‰v1’ó \ìvª\êÄ…¯>¡›ªÐ¨\î&\ÛD™6X]`\ï\Ç=ós\0\Ó\ê1©y5z\Ô\å\É4\ÎO¨Âš|p\ÂA5¢P\í\Ûó(fy\Þ\Ã2ý\ÉÐ­\Ï9¼\àex\ÜkzªBü«4\Ûò6óHy·/=ž\Ýu4¼_c¦µ…	Î¿\'Ž‘®M|4³ógE;+\\¹)H\Ðq\Ï\Ý{@\ÃdX{a2\ÕH´=·\Äó…G\Í\È6Cm­\Å:\î|\Ä\Ò!%¨\â…p8\ÇUgð¿Œ«ó’\ë¤A\çNˆ\ÕyúqoÊ…#&]#mV°Û•ºrÈ¹ó¦\Â\ÔL\á=¦\Ö6mzQh¨´Zˆ\êöòœ\àÁ\Ñ\ÊC\Óó¬ µ¨\ÊT¯Î±ˆˆ\åi•½ß Pom\\D5~\Ô!À…„ ó®­\Ë\Þo¦\éa[™ce«Uõ>T\Èõ\ÝÃ¸·~3…\ë$:óÐ—†ù\Ã÷e¨\å\ãW‰_6|—T-\Ý>{\ÜrC\n\Ì=±ó\Úk\È\ÅRdŒj€¦6¿\ÄôžT\ã\Ï\Â\ëø\Î\'‚³¢óù’3H\Î_cxø\ÅN\ãž\Ûpn¦¦x{V…«‚@\Óôf!··D.S°°J/\ÞxkùnZ¶~q\Æ\ê6Lê‚¨$\Ôô¯ˆ?{II%õ&œV(Aw®\Ø<ä©»„\Ê\êcô$\Ða‚=¥¸®\èµ!3C¹PY¬\â¡.c%\Ç0b?Oô)MíŸ´™ûø\Ë[\Â%>xd\ë]?ZŠñ´ž1õ€¼ô5\Ù\Îqö)•9W/`¯\çkW\èV*\à_i_\'h\ÊMaôCQW\Ü~K\Û0±X~D\Î<ý¤\Í>\Ì5\ëO!	U\'£ñôIaÓ´9+¶\å\í6\ì§\ÚfF\É£7«r,Áõ?\Ï\ËOôP“\Ó\Z\ârŸ(ga\ëžu;YˆR‡>\èºv\\\Ù\Â?s\ëkô\\¸ ¸~\Ðm†”\àVý\â|Ý¥\0™‰!\ÔôÙ–X6±¶ôaªv›/%1UÿEd \È_w\'±Þ¢—¶\×KGs³*<vôu.˜€ù\ì\ê—S²\ÍA`\n¤	t§úÿp\'\â\\Ë‘+&ô‘¡*u4ªµc	\Z{\r˜ˆ†ö¤õ@l(2\Ïu¥\Üô®-V°ÿð’\Î\âJË€…¢z•Ø§`*#–\äjô¯xZ¶\É&\ç\Z\Þ{C\rB¶]¢\ÞY\á#ð<\0!_ô¼M~(‰ª¥ú­k\Ü\à_M\è\ÖW¼\ÔF‚i‰]\È«\ÓôÁ\ë¶\åiË’¡B\Ù\Ýl@†j\ë!\ë\0@‚þ\Î‹ôÅ²Ž3÷´‡²pv`ñr9HŸƒ(¶c\ßWÞK\"…$ô\ÆG\àÏ­\'·6\ÜI\"óV\ÛÉœ=«\Â0¹\Ûþµ¼²ñ\Zô\Çó\×hÖ­Ý†<e1L¢!Ó³ø„\ZªŠD¤K¾—iô\Í@*SŒÄ˜Rg\Ô\Éº	r¸\Íz\Þ÷2,o\Û\ÏQ®¹ôÏ•\ÎFUö…\élt€°*³gª§\ë\ÐVâ˜²Ã¹\Ç\Ëô\×\ÔÛ¬ƒ£Bj\ÆLNƒùhZ\ì\íe%“D\'‰\ÇüG}w\îô\åE\Ïk*	ª\ÏWØŒj»¡|•\ÂK\'’ l\×Èˆ<ôí²Š\Ó\Ç\Ò\êfdU\ÈÆ¬¶\æ‚\É\È\\\ê¯fH\Ü\Ë\ëö÷v„õI¬Iš\Ýw\ßd¦4\"°é†—\Ñ\à\Þ\Ò0_\Õ\ëh\í^1õ \Ê-\åc\Öj¦HtfÝ¬\Ó?ó\á\ÊD)\Ä\'·\ÖhcF,õ4¯|i\ÓQl°p§\êt÷>ñ%y£¨²\ä1P¥bBüõR‚ý¦ô[B}–\n[Œ\Ú\Ü;	I2q\è‘U\Ô>\åõn)Í„¸ºIx´ñ´VV$º\ÌZ=¾”q\ÅUOú\àcõƒ\ï\æ\n\Ô\Ç\Ì4\r\'RŸ2\ä8\ÏF(>Fð„2 ”\Ýõ”\Â\"Qj6¿h³\ë\'–Vh¦­~\Æ\ÆAd’º€7\Üõ¦Dšc€\É\ÝA‰\ZµH¯zy\ÝÀI“\í\î\êQ\è‰]‘oõ\Òaž\é%<»°DN«N‹÷Mž^ó®^º¾/jC9òtb–¦pö\r<\ë!!dŽeŸpõ\Â\Z\Âö	¥0mz“\Ã\Ç˜\é%ö\ZNúŠñ:‡J0¼²L©ð2\æû\"L±\íâ¯œt\Âö%>œ:1¸W™µR¿\Ú\ØŠÍ©°\ÂQ\Ôi‚ñ~\Õ^Gövr’`G\áÌƒ\ÎSý€°„©\Â$ \áÁ2|‚¨>\éõ‰YöwMüW[þ\ë ´\ßI\Ë\î/¯H-j\r%\èD’°³\Éˆ€öƒ+¯P4\Õg.½\àž\Ä{\Î\á\Êþ^Wœ\Ä/![quöˆ\ÍT ®&gÉ–\Ð\r.…\Ä:\Ø)§Q\Ù\Ý7‹Ý£ð ™hö³\"bŸY(V\Ý\ÑW\Ë|/5[ýrðÉ·*\Ï\Ê\ÐM–\Ú\Ôlöº¿r\áþn©¶zW„úm:føO&y(\ëH\Ü´\ã\Ôùö»\nª#_F¯D:±®\Õ1I\Ó}U\"\0H\ØBŸ&`\Æ8û€mö\È!U¡c%rT ”\ê\ã.ªqƒx†\ë¹ž=\0ö\Ú\Ô\"øI\à8c\ï_\Ý;¢k\à6½ùR¤r‹\çE?{d\Â\Âö\ÝG_\ÍA”›\ê7©¼œ\Ãc0+›\Ù^E\Î\éh1\î\ä„{\ëó÷9U\Í,·Ž\Þ%k1X\r LcN\ï‰;½<K\Î÷{–*\Òúk“L¤½œ\Íý–\ìE,\Ít*«J¸.	\ì—÷¼»*æ­\\5œµc%ªaû¤PŸTÁ›g³xÈ»÷=—\Ü|@” Ôƒ\Ä\Ù\\¯›HVq2ª\Îv5\Âo«›,™\0÷7ûIÑ´ùE‡³£™\Æ90.BAeµ4>]yþS‚Pk™÷=ü9i\ÎðfCu	l6E€#ñZt,#<‹\ZL\Ç4Z¼´÷FUª±¿!}\\ÖŠÿô_È•«\ÎoÀ/B\Ì\\!÷Z<&Á^‡S\Û\Ü\èŽV\ÄÀ?½ÀºR†ÃŠ¥]€‚	„÷\ÞÍ®6\Ý\Øô»R¾ŠÔ¤z†¤8\\4”ùw\æ\Äc‹÷\ßyŽ¼€\Ýs–˜øM™)9@óŠ£\îþ\ÉðŠ2\î‹\ÐÁ\Ø.Á÷\êVü/B°\Îc5a—º\rRI G>?£¨\çy;\Í+šú‰÷ô\'ùSAE¦D>\Ì\Ó\Æ\Þqqa\ç_\Ê\ËØˆK)ôAºø/ºó±YQ€°;¥#\æ6\Ìyc\äÈŒúÊ—\Éjÿ\ß\ÈLø2©\Ë-[\Ñ 3»\æý]S³³.\ï\ã\\þŸ0×”£\ÕøB/\n\Éj“z\'a\çÿô¸·§ø½÷\Ù\ÕFðL\ZøH-L	`$p1/>:r—ý\ÞV Ç™=={ð\ÍOrøR\Üxg\ÓJ9G0>z\×c&öIÃ†b4~¨*LªQøRkg!i\Í\ïf¦nb.*\ë\ÍÎ·\Û\Øð¢$\Ïgw\ËøT\Î©#;?²\Ú`\Ò?\Ð\É;\"Œ\èA\äöY|û—X;uøaôw?oa”\æ\îbN$²gI\Ìö\Ïôõ+\Ç·\áR.øe\î\Zú\è\àÀôptñµ\Öá£ˆ¥\É:\Z¤`\'8Áy`ø•¥w‰Wðö0\ã\Û\ÈP·ªR†Æ‡²\î]±Pöd«\Þ$*Hø9\n?šg{\Ñ÷¥gsû	gO\È\àXžI\Ø#nø¤¨!F#YÈ¼v\"|\é:\àÝ¯CG#\nY¹E[‚‘VŸw\Îø¹i¢%¨-%Fþ\0\ë\åÀ[˜n\î1SaŽ±\Ó+\Ò\Ó\ä]ø\ÛBªE2\Øs–ÅŽ)–?ÔŸ\ÌB°	\î¤*\èZœOÿøÛ’n+zü`ß—\Ý\×]£^Ž\é‘$¼d›g\Ï\ÒGf¼ø\çm\ä°G8²@~nóñ?\â	x¶\Ä*Õ‘x½kûþS‹øëžµ9À¦²ú”U\×RÝ¼\"¥EI¼ {†`z\å\ë$„øì¨€q\í\æ\ëZ6hÖ²C¾†R=¦8H ‰Î\Ô\É<ø\í\Í>\æy\ê\èy\å=ôû ôØƒ•\ÏGò\ÕÓ©&˜‘ø\î0ý\Ô*—·²üu\ã\0u\r™\æ+M\nMÆ¿\Ó4€øfù_žMG…\à\æ%2q¹\å¾0\è/Ò“:;\å…\êe\äW¤G’ùÊˆ\ÝP\ä\Ä,\ÔöK´”A]H\Ôú\ë%\éóû\í¦Aõ\æQùD\æ´ÛžVèš¹xRBBy%\Äh\ÑWv³\ÎÇ¶m\Ø}nùG>pû\ãÑ¹ú\áWþƒ\ç\Ã\é5šwõ™\ÄO\ÎE\ÍÌ¾¶mùGŸ”. Õƒ»g‚ù?Âƒ\Ðr°Ð¢js$_”D&Ö—»ùH«²á­s%\âú\Ævüx-\â\è\î#õ¿¼?	\ä\êùT¥¹´5\á«)\ßø\\Npš±¸Á\è[Š\á>»\ä&¬ù]Œ‘\âˆ÷:ÿœø.»Ñ¥×‡„¢\Ì4öšžU‹Ž\Úùhnl±\ÃhÀ\ÈÊ«\ÍjF¬**\ZŒµóW\înfrP#3\ÊùwÖ¢$\Ø\é\Õ\í¡Â¡æ¡˜3þ¼­D\Ç\\\È[¢I£€ù——wD=O$l\Z\Ýžð\ï\åI\â9<€\ç0ox\é¼>ù­L1 \Ì\Z?–¯\ê÷f\è]\Åû\Ðt2Ðˆ˜\èò5û²úù³I˜v\Ë¨CÀ(ªß±wzi›¥C\038§\'Uˆ“\éùµ$öSª¢(\Ô]4\âP¶\Ó•¿¾cU\Üv\Åá¢­—(¯cùÍ„É¯ýTÎ½Ú$_ýƒ\âõ®¥Sø\êñ‰©ñÐŠ\Þ|ù\Ð|…\å\Ùn\Ó\ãD“~½–v-³;&ˆ¹\ãWî²š¥0ù\á;\ä\é7\Ë\"‘L~Þ…»LEº`!\à)l\ÌÊ›ýhLù\ëO\Ø/Ì©3½z4ÎšûC:Ufz^^Gn\çõ´\ãù\ì/·pR1‘CúÌ¬20°2€J½Î<±‘:·_ù\íB!s*þ¹\Ãlª°ö6\Ç\Õ\Ø\"Q_ýÈ¹©2®¶ša7ù\î<\\U}\Ï\"A¨´²s\Ü\Â?—\ÜC9‡»\Òñ`\Âr«\Èùð0Ã‰‰\Ï\Ã\îò\0\è\Ø1¼\Öy£iúN7,N]\Ü8\äùûÏª¾Žü˜\Ì\Ä\Í\ÜC‘,01›SÍ­\ç-€aœ½bùüªpY\íx{Vc\Þÿo€ølNG¢qlkb‡¡ùñ\á¦aúòÃ±ÔŸ‡yb\Ð\Ö@\ËY\Ó\ä\Ô(J5}×¸d“t`Muú¼\ÌÆ‚€Uz[\çºw\\=Ê¼\0[\nKixµ-b>´\Åú,Eýd½Ò”\à\nN\ß-Ž\ë\î\0´9pM0+±½~0Ÿú:6rÂ½c\É\Ï	…\âh{€M\\ó¶\Ò\Ë\ÐJ¬š,ºk\r?úúO\Z/Þ†f…½\à?½xÈƒ9ºú\rQP@\r\ï\Ì\Z¾\áÁûúS\Òzó½¬\n³ÀE´OŒ“µ\ÇwF.Pù\ê)n>³ù<ñ\ÏúW¨\ÎS)¿‡\Ð_\×]µ\æ\ê\ÃYÿaŠ\'kY¹­\Ùÿ\Ýú_ot\ër\ã£)\Í\ÖC§“¹\ÙE®I\Çm/½;\×\ï\à\ëgúg¼Å­Ž‹Æ±\Ò\à0`ü®£8^ùù\ì\\‚¦Æ‹ý~– ú~’J±\Ì7$kSsYme(°|£‚.¸Å¹zZ\à\Å[ú¢¸ªëª¾l°c\éì‹…Šq\Úo×Ÿ¡¸K\ÈÖ›+ú°º%\íØ‚\Ã!a\Î29\n\Ü\ã\Èÿ½`¨F_h” *Šyúº.¶Z±Û­P\î0·¨\"€’j…\Å\Î§=xat\\Kú\×h“£\á9¦õÀ\äwÇ\Ð\Äí¼;Z)õ\Â\îKþ~\Þú\ßQ‚[::\Ýü´jžs\Þ\Ø^Z@2n\â\ì³ve)e_ú\äu\î‚\é\î!\Å9½]´we<»¹‡Î¹iJkNú\êuMüóÙ‹‹O\ãI0x{MðyR\r´~»®S²\îú\íµBST…ª½ð h\ÂZs©*†÷²[?	PO´“vúóDÅŒi*\ïŽb÷\Õ\Ú*¡;Ø©D“Ú¨²nó/N\àœúú‚¾sh«w\í¥\äk1]ÿ\':ò&e¿t¤b¯tñ\îúÿ*\Î\n\'¼Z%±À$^\Ùòô*¹B¥üR_~ñ;AŠ•òúÿk8«\Ú\æó\\=†>Jõ¹º\Ä1\íÀ~(‹\æ\éAc\ïqûo%TFþO-ÁGz\ÂJTN>\Ú\'¿\Ùñý‚”\ç˜#.ûD¥=±ôø\Ò\Ùa\Þ:ô\ß\'j•Kù\ä WHS’ª\Üû`\r\Èy~E\ä~|ˆ\nR\Ëi)fl—é¥”e}\ã)ldû*ôÃ€IñFª^‚È¯—Ü’\ì‰\åWø’\é@ž~½Ý˜\ÇûT\Ê`\Èl©\ìÀ \Þ9¾˜çªP\Þk\ÖKV\Ò\âdª\Ý*\ãûX\0M‡o\ï•DO=h\ÙW¹û\0 \á7$÷\Ý\ê—ôR¸Tûbý¸zúHpÀfÀœ?÷@Ñ˜Ý²\àI ù¶¾ŠG±]ûq\ÓM;Œ\Õ>l\nA\íµŽ>\å\Îk˜h\Ç\Ø\ÝRº\Æñ8ûyO¬Št\ïldôU\Ðý^Á­E¡%OˆðnÞ¹Á~}û©J[ªAn>š\ã¢\ÈP:²›\é\Ã\Æ7\à\î«4iwŒ\îû­\Ùq\ïc\çs\Ï @€\"/\ä\ÙÁÅ¡|sP|0›‘Ã´þû°Š!§J\É\È[h7e“^\ïJžT«uµV°”Ú…ò6ûµ»bJñ³õR\ê©#ŒÿÔ²‹Yu¢n\énO–œûû¹¿Ž#£\r\ÐF1_Ò¢\'žSz§<\ÂJ8«@\Ýbû\äc\niz½N£y×Š\ìô´}Ëœ.\Üþ\ì®\Z»^¡­šûñ*Ì¶=·²\Ê\Ù–‡.õ)~\Êñ	\Ì_OPü\nøx+©U\Ç\×1\ï›w\ë\î€zœ)­\"4„+\ÜB\\ü¬’IIÿ%¸%\è\"Ð–XŸœ¢\å~X4;;\Ý]*\Å	ü&\Æô¹ô\"T\ÑþQWvRiº²dú3’mþ`a\Åø3\rü45q$¨&Î’9QO*z½kB…Ž€½µžþjdE,üTg‹OrP~øtgn©gš\É\í(¸W¦{v¨\ê\Ñ\Í^ôüZ¬\è}ÈC6Ýž÷«+‘?‹Û¸ZøP\Ëd?Pü\\\Ä\Òù\èƒkO\×ý\Ãø}H¦\"F\ï+:ÌµLZ’KAüx¡‹\Ç\Âr¼^/û£\Ê\'ðD‡~\ì•4\èdô\Í\Â`8`qü×†dÅªC*†k]¬0É¾\"€\àþ\âÍ¶#8K\å®\Äü§r\×À’\Ø|\Z\éã‚5¬b\áŠT2¼®\Ëph=´±\ßü¬®—§jŽ#\ÏjR……\Ï\Õ	ðª¨\Ú|‡z\Âþü03\Åü¾Ü¸OV1¨SlfwV\ç¦\Î1	ü\Øl?\Î•.\r•üÆ¨;p¸-\ä¤e*\î\Ò\Ñ`žˆ\Ê[\í§p5Uÿü\ØÍ³§\Ð\á¦{œ£\án¥¿\Â!z[\Û>µf¸t4‰ü\î÷s^¦tE+W\êL\êÕ¯‰\èÿ¦CŽ\êøÒ©Ï‡HýhŸZ;P\á\È.¤\çó\Ës.¸1º›qþ+Ü‹\r’4\Êý$PdµuU1¹\Èô\×8›—ð<Kn\âs¡µÀpGR÷bý:LÀ\Ã0ñ÷¬j}¼y•ìŠŸW\Ä¿\ÇSh¡5GHý;\ÛVƒ­(ü\Ê(\Æ\ZB\0ˆ\r\ËlÅ—™\à\ÂB\äs°#3ý?+\æ\ê‡Wp\â¤P¾M\çk]¼<px_Á\"R\ÝLki ˜GýAp“\Z\\½¢\á?h\ç8°ªó€Q‹\È$–d1ú\ìËŒýGPPù(\ÔÏžÁ\Ó\îS\Ë\á3Qý?(H|,ø;pŠñýH@yÆ„¿k}\Ì{Œ¯[«\ÇW{ŒLG\Í.\ávOÇ«ž\"ýM\r6Ic\Ä÷½ýòE‘«,M+,¢Ç–¸\åfŠž ýMP\æ†[°Y&\åð¨\Ï\rŠ¯,·¡\ëYDx\Î\Âx\æ©÷ýVÞŒ˜\Z­\Ò~´VD\é\Ù\ÉZ6\ßaW\ÊÀ_\à÷¢tÊ©kýg\ìi\nÁB±_\È\ê[•\0‹\Ý7¢\Ù4òw5\×\Ø\Ìq\á\ë‚ýy°Ÿ\ä\Ú1±Ð©3«&³Tt\ÝÈ¹£\ê8€=\â\ËSýP¶yóYm\íí«ˆûm¶\æ½U\íI¶\æ\ÏOÀF	!•ùýŽ\î›qÀ¬O\ç¤~Ã¾`·Ï·7“i.Kþ\Ü\êK´\ìýœþ;Œ¢3@¢†\"ŽÁ_\Ò“dª/5¿ðýŸ\à%ƒ´\Û\è9”U6>÷Nc°VŠM°Tp÷W \r0¥ý¤\ä\çZ|›\\ŽT‰-‡±BýD\"\Ð,Q\ÃuÜ³Á÷n¡ý¯¦.˜\Ç\íñ\ÚA\Z\Ý\ÊX¦m,¬\éP\r\ë—J·h\Üý\ãx\ÅQ#’›\0Â‰Àtgû¤ò¡FªÁ\ÎN¡õ\ßvýó&›W\"üÄ²}:€®ñk\ÕS\à÷-e&sñcôþ1h\éØ—]m3ÄºXq°Ã÷\ìj\Â_\Þy®[+xòE\èþ\ÇV0z\Ù\êÁxi\Çþ\n\Ì\í²\ÛFž\n\Ë\è·þ7‘\Û4\Ææ¬‹\\ó M\è=„°\æO‚¡–h³¿£™’þL;•-º\ÎF\Ò\Ä\0\Ó\ÙU±ƒ*/·—\Ö\Öd\ã.>z_\ÛþME\ÈMÕ-/v\Ä\ç_Ú…c’œ\â¯\é?,U&ü\ß\"–‹Rþ[\à˜¼R\á±\Æ\Ø\á|L\ìõŒ•§<uQR”V³¤ ¸xþs 	b[\Ðy¦i\ÏC\à\â¨õ\0ö\âô\ãTþq@W~‡þ{™á¹œgñIU9ÿ\0\Å\ØÚ¡Sw\íq’\\(LpR^þ_m\Ëo²<e\Ç\ç{„FE²P\n-À\áð\Þ,5Hþ¼:¤œ@¾\æ\Æ\r\à%·­-ƒ™½½\à,$y·\Ãk\èþ¿\\ý3†ë”¢ß“{½B2—A\á™\ê\ÖG\Ù<Š&%þÁùß¼w$ž¦™cŽTVÂ¶\r‰|fø7hCÁp\Z\Ðþ\Ý8šwGþ+‰dUx\Ñ\ÕXcˆÑ¨Vò*¿6\Øi(\Îþ\åH\ÖXw\Ù6[òþ|ýJa\ÙÍ´\çÐ–\Òq^ü¥þ\ìOžh;xAô3\×÷-\r¬ð\èhMœ>kv7¥\Å[þòž\Þ×‡d£Ì‚zR<¯¿2õ\ê\èKˆ®\Ó\Ø\Ã7‰I“þýI\Æ!1&™j¶‡[6›¼ˆš56i¹8\ç›nžtþýl™*ÿ\Çñ?·ˆò½/]À\Zø4í¨¹tX\ê*ý¹ò5®ÿ2ó.p²Â·\Ð\"„Fœ6ZØ™\n¹\Ý$zŒ÷z¸¤\rÿ9`\\&S9\â~{-LKÅI\ÛT–i\Ø\ï;•u!®öÿ7ôÿ±˜U\Íe°H> -ô\ä%G µ(Œm\Î\0˜ùÿDO;†™^ñK\Ô\älµ¿½€Ø¸!\à/?aF\Óz\ìò#ÿU³%fö\î­{øxó\ÊiŒ<\ç¹f¯œ;¯˜µ–š‰KÿZ9Þ°Nú\ÝWj_‰Hñ¬]\ÏÍšV”IùR[ëƒ›\ÖBÿwðšs°\ÐbN}¼qY…\Çý7zo•U\æªuô\'¡¥\Ö1ÿk¯®’~P,oü¨ÁÊ‚-~¦BÊ¾\Ëi>1¹/#ÿ´\Þ#ö\Ûyš‹X\Ôoaª…\\DÅžheb¤‰õÿ\Â\àhƒ\æ?)—3Ž»1\àuóŸ¡s˜\Þ_sñ³¢Ð¨dÿ\Ä>V *RˆŸ/\0˜ˆò\Û\ãÓ·\ï~r\Æ%\"\Ò\Ê\æžòÿ\Åò8lb\ØÎºÿ§\"ž7eŽEŒ=n~\Û\ÑÍ™\'2\ÕC/ÿ\Ë\âú¶¸r\Í\r\ÇÌˆ\Ù\r‹;\ÑJ¬UŒË‘-ó\\Bÿ\Ö?»›	C¿Q–¾\Ûc2 Gƒ‚”\â“½e\å\Þh£\äh\ï‘ÿ\ÚÝŒ^\Ý@óË¶\\},n\Ñ\Ü¿Û›~A\ëF\×,\ìÿ\â\"øÇ¢\ì@¬\nŸpy4&¾7‚:˜wO–h4jùy¨D\Øÿý{\Å<n—Ð½¯>!\Ä\í2ú¤_U\Öd~ \Þp\Ø\ç²7O\";}Œenò²\0','no'),('currentCronKey','','yes'),('dashboardData',_binary 'a:4:{s:9:\"generated\";i:1652693143;s:3:\"tdf\";a:3:{s:9:\"community\";i:5079;s:7:\"premium\";i:5103;s:9:\"blacklist\";i:13817;}s:10:\"attackdata\";a:3:{s:3:\"24h\";a:24:{i:0;a:2:{s:1:\"t\";i:1652605200;s:1:\"c\";i:11327186;}i:1;a:2:{s:1:\"t\";i:1652608800;s:1:\"c\";i:10830617;}i:2;a:2:{s:1:\"t\";i:1652612400;s:1:\"c\";i:10951016;}i:3;a:2:{s:1:\"t\";i:1652616000;s:1:\"c\";i:11104042;}i:4;a:2:{s:1:\"t\";i:1652619600;s:1:\"c\";i:11471250;}i:5;a:2:{s:1:\"t\";i:1652623200;s:1:\"c\";i:11516328;}i:6;a:2:{s:1:\"t\";i:1652626800;s:1:\"c\";i:11415522;}i:7;a:2:{s:1:\"t\";i:1652630400;s:1:\"c\";i:11573392;}i:8;a:2:{s:1:\"t\";i:1652634000;s:1:\"c\";i:11829521;}i:9;a:2:{s:1:\"t\";i:1652637600;s:1:\"c\";i:11868019;}i:10;a:2:{s:1:\"t\";i:1652641200;s:1:\"c\";i:11529277;}i:11;a:2:{s:1:\"t\";i:1652644800;s:1:\"c\";i:11309579;}i:12;a:2:{s:1:\"t\";i:1652648400;s:1:\"c\";i:10852008;}i:13;a:2:{s:1:\"t\";i:1652652000;s:1:\"c\";i:10913715;}i:14;a:2:{s:1:\"t\";i:1652655600;s:1:\"c\";i:10776844;}i:15;a:2:{s:1:\"t\";i:1652659200;s:1:\"c\";i:10596895;}i:16;a:2:{s:1:\"t\";i:1652662800;s:1:\"c\";i:10406151;}i:17;a:2:{s:1:\"t\";i:1652666400;s:1:\"c\";i:10654255;}i:18;a:2:{s:1:\"t\";i:1652670000;s:1:\"c\";i:10999672;}i:19;a:2:{s:1:\"t\";i:1652673600;s:1:\"c\";i:11445204;}i:20;a:2:{s:1:\"t\";i:1652677200;s:1:\"c\";i:11132018;}i:21;a:2:{s:1:\"t\";i:1652680800;s:1:\"c\";i:10791415;}i:22;a:2:{s:1:\"t\";i:1652684400;s:1:\"c\";i:10783199;}i:23;a:2:{s:1:\"t\";i:1652688000;s:1:\"c\";i:10698428;}}s:2:\"7d\";a:7:{i:0;a:2:{s:1:\"t\";i:1652054400;s:1:\"c\";i:223231905;}i:1;a:2:{s:1:\"t\";i:1652140800;s:1:\"c\";i:238395731;}i:2;a:2:{s:1:\"t\";i:1652227200;s:1:\"c\";i:277987006;}i:3;a:2:{s:1:\"t\";i:1652313600;s:1:\"c\";i:224372526;}i:4;a:2:{s:1:\"t\";i:1652400000;s:1:\"c\";i:235802715;}i:5;a:2:{s:1:\"t\";i:1652486400;s:1:\"c\";i:263975767;}i:6;a:2:{s:1:\"t\";i:1652572800;s:1:\"c\";i:273554323;}}s:3:\"30d\";a:30:{i:0;a:2:{s:1:\"t\";i:1650067200;s:1:\"c\";i:228473339;}i:1;a:2:{s:1:\"t\";i:1650153600;s:1:\"c\";i:229376621;}i:2;a:2:{s:1:\"t\";i:1650240000;s:1:\"c\";i:238890225;}i:3;a:2:{s:1:\"t\";i:1650326400;s:1:\"c\";i:237137630;}i:4;a:2:{s:1:\"t\";i:1650412800;s:1:\"c\";i:245074641;}i:5;a:2:{s:1:\"t\";i:1650499200;s:1:\"c\";i:232921267;}i:6;a:2:{s:1:\"t\";i:1650585600;s:1:\"c\";i:246988132;}i:7;a:2:{s:1:\"t\";i:1650672000;s:1:\"c\";i:241942555;}i:8;a:2:{s:1:\"t\";i:1650758400;s:1:\"c\";i:237555113;}i:9;a:2:{s:1:\"t\";i:1650844800;s:1:\"c\";i:229010406;}i:10;a:2:{s:1:\"t\";i:1650931200;s:1:\"c\";i:227863252;}i:11;a:2:{s:1:\"t\";i:1651017600;s:1:\"c\";i:231463733;}i:12;a:2:{s:1:\"t\";i:1651104000;s:1:\"c\";i:230591248;}i:13;a:2:{s:1:\"t\";i:1651190400;s:1:\"c\";i:239243205;}i:14;a:2:{s:1:\"t\";i:1651276800;s:1:\"c\";i:215798804;}i:15;a:2:{s:1:\"t\";i:1651363200;s:1:\"c\";i:213509611;}i:16;a:2:{s:1:\"t\";i:1651449600;s:1:\"c\";i:212472561;}i:17;a:2:{s:1:\"t\";i:1651536000;s:1:\"c\";i:205698954;}i:18;a:2:{s:1:\"t\";i:1651622400;s:1:\"c\";i:216427179;}i:19;a:2:{s:1:\"t\";i:1651708800;s:1:\"c\";i:219012832;}i:20;a:2:{s:1:\"t\";i:1651795200;s:1:\"c\";i:213415216;}i:21;a:2:{s:1:\"t\";i:1651881600;s:1:\"c\";i:210263714;}i:22;a:2:{s:1:\"t\";i:1651968000;s:1:\"c\";i:224926353;}i:23;a:2:{s:1:\"t\";i:1652054400;s:1:\"c\";i:223231905;}i:24;a:2:{s:1:\"t\";i:1652140800;s:1:\"c\";i:238395731;}i:25;a:2:{s:1:\"t\";i:1652227200;s:1:\"c\";i:277987006;}i:26;a:2:{s:1:\"t\";i:1652313600;s:1:\"c\";i:224372526;}i:27;a:2:{s:1:\"t\";i:1652400000;s:1:\"c\";i:235802715;}i:28;a:2:{s:1:\"t\";i:1652486400;s:1:\"c\";i:263975767;}i:29;a:2:{s:1:\"t\";i:1652572800;s:1:\"c\";i:273554323;}}}s:9:\"countries\";a:1:{s:2:\"7d\";a:10:{i:0;a:2:{s:2:\"cd\";s:2:\"US\";s:2:\"ct\";i:782835101;}i:1;a:2:{s:2:\"cd\";s:2:\"SG\";s:2:\"ct\";i:178595523;}i:2;a:2:{s:2:\"cd\";s:2:\"DE\";s:2:\"ct\";i:163456992;}i:3;a:2:{s:2:\"cd\";s:2:\"IN\";s:2:\"ct\";i:114399849;}i:4;a:2:{s:2:\"cd\";s:2:\"NL\";s:2:\"ct\";i:112916450;}i:5;a:2:{s:2:\"cd\";s:2:\"FR\";s:2:\"ct\";i:99905294;}i:6;a:2:{s:2:\"cd\";s:2:\"AU\";s:2:\"ct\";i:83537171;}i:7;a:2:{s:2:\"cd\";s:2:\"BR\";s:2:\"ct\";i:82720042;}i:8;a:2:{s:2:\"cd\";s:2:\"GB\";s:2:\"ct\";i:78852657;}i:9;a:2:{s:2:\"cd\";s:2:\"CN\";s:2:\"ct\";i:75062510;}}}}','yes'),('dbTest',_binary 'a:1:{s:5:\"nonce\";s:64:\"a3ed9e774a9eb4349750208a3ad623579b043b914e2fe826214af78e476c1d74\";}','no'),('dbVersion',_binary '5.7.23-23','yes'),('debugOn',_binary '0','yes'),('deleteTablesOnDeact',_binary '0','yes'),('detectProxyNextCheck',_binary '1653300829','no'),('detectProxyNonce',_binary 'e511d9b7b266868a0cefb3646e5cf259a5da835b4829a823dab83afadd617abf','no'),('detectProxyRecommendation',_binary 'DEFERRED','no'),('diagnosticsWflogsRemovalHistory',_binary '[]','no'),('disableCodeExecutionUploads',_binary '0','yes'),('disableConfigCaching',_binary '0','yes'),('disableWAFIPBlocking',_binary '0','yes'),('dismissAutoPrependNotice',_binary '0','yes'),('displayAutomaticBlocks',_binary '1','yes'),('displayTopLevelBlocking',_binary '0','yes'),('displayTopLevelLiveTraffic',_binary '0','yes'),('displayTopLevelOptions',_binary '1','yes'),('emailedIssuesList',_binary 'a:0:{}','yes'),('email_summary_dashboard_widget_enabled',_binary '1','yes'),('email_summary_enabled',_binary '1','yes'),('email_summary_excluded_directories',_binary 'wp-content/cache,wp-content/wflogs','yes'),('email_summary_interval',_binary 'weekly','yes'),('encKey',_binary '57b3a0974795c406','yes'),('fileContentsGSB6315Migration',_binary '1','yes'),('firewallEnabled',_binary '1','yes'),('hasKeyConflict',_binary '0','yes'),('howGetIPs','','yes'),('howGetIPs_trusted_proxies','','yes'),('isPaid','','yes'),('keyType',_binary 'free','yes'),('lastAdminLogin',_binary 'a:6:{s:6:\"userID\";i:1;s:8:\"username\";s:5:\"admin\";s:9:\"firstName\";s:4:\"sonu\";s:8:\"lastName\";s:1:\"s\";s:4:\"time\";s:25:\"Mon 16th May @ 10:52:45AM\";s:2:\"IP\";s:38:\"2409:4073:313:5f6c:e010:2634:43b1:38cc\";}','yes'),('lastBlockAggregation',_binary '1652696028','yes'),('lastDailyCron',_binary '1652696092','yes'),('lastDashboardCheck',_binary '1652696093','yes'),('lastEmailHash',_binary '1652698367:2cf10881976c06718d05877a422990b9','yes'),('lastNotificationID',_binary '12','no'),('lastPermissionsTemplateCheck',_binary '1652696103','yes'),('lastScanCompleted',_binary 'ok','yes'),('lastScanFailureType','','yes'),('liveActivityPauseEnabled',_binary '1','yes'),('liveTrafficEnabled',_binary '0','yes'),('liveTraf_displayExpandedRecords',_binary '0','no'),('liveTraf_ignoreIPs','','yes'),('liveTraf_ignorePublishers',_binary '1','yes'),('liveTraf_ignoreUA','','yes'),('liveTraf_ignoreUsers','','yes'),('liveTraf_maxAge',_binary '30','yes'),('liveTraf_maxRows',_binary '2000','yes'),('loginSecurityEnabled',_binary '1','yes'),('loginSec_blockAdminReg',_binary '1','yes'),('loginSec_breachPasswds',_binary 'admins','yes'),('loginSec_breachPasswds_enabled',_binary '1','yes'),('loginSec_countFailMins',_binary '240','yes'),('loginSec_disableApplicationPasswords',_binary '1','yes'),('loginSec_disableAuthorScan',_binary '1','yes'),('loginSec_disableOEmbedAuthor',_binary '0','yes'),('loginSec_enableSeparateTwoFactor','','yes'),('loginSec_lockInvalidUsers',_binary '0','yes'),('loginSec_lockoutMins',_binary '240','yes'),('loginSec_maskLoginErrors',_binary '1','yes'),('loginSec_maxFailures',_binary '20','yes'),('loginSec_maxForgotPasswd',_binary '20','yes'),('loginSec_requireAdminTwoFactor',_binary '0','yes'),('loginSec_strongPasswds',_binary 'pubs','yes'),('loginSec_strongPasswds_enabled',_binary '1','yes'),('loginSec_userBlacklist','','yes'),('longEncKey',_binary 'b33791e9ff866c192fa091fe855a024fe092142e2f848d25d99b8540a8933aa1','yes'),('lowResourceScansEnabled',_binary '0','yes'),('lowResourceScanWaitStep','','yes'),('malwarePrefixes',_binary '‹\0\0\0\0\0\0\Öy8\ï\0ðÙ—»Î;Ë½sIYJ…ŠBR$RI%QŠD\ÙZHJ!I+…J”¤H‘Š”´i!*)¥EE+\Ò&~\ß\ßŸ\çœyžy\ß\ç3\ç\Ì3>\ãÇŒ\no>^\×\ß\'\Ì_wB\Øx³1\ãuO¿\Z\Þÿ \Õ%\ïe\r\É?ðEC\Ë\Ä)¥³ŽM¾>\í²\Í8)ûÿ}–\ãu×„ú-X\ïöÿ\Ë1ff–\æÿm\0–\é\0øý\0\Ýr\àa?\0xG7\0?\Û )ûô`‘\0ö4À\ÖD\ÂK@\ÜbH½\0Y®+ gZ\0¹p\Z\Ï\ê¨›‹\0\ê\ß@1¶Pt„ô¡€180\å\0ûv6À\Ù\È. \à);€÷¾ð§´Õ¼\Z@U—	¨\Ó{\0uŽ ¾\'\Ô\Ï\î\Â\Ì@p_ö€F»\Ð\\q4·\Æ\0Z.=€\Ö\Â_€ö\r0h²\ê\í\èŒ\ït&\Õ:A‹€!·\í\0]ýß€\î¤\n@7\è\0 ûb? g\è]¬–\Ù\Û;€a\Ül`\Ø,[À0\ì`¸\í`xý,0ü`00¼¯aŒ˜ñ\ì$`d½0Z§U\\\0Œ>\ÍŒK>\Æ\ï&¶)€\É\æ/À¨S5À\è½)€;0ó­€r°\Ø=	›»7\ë?\î±À¸\ë­À¸º`\\C`9\Þ°*XXÕ€\Õ\ïd`ü\É~`‚6LˆXKþÖ—_\ÖW–6$`\Û÷°»¸˜t¦˜t/˜<$p8·7ŽO\Ó\0§ü`šm0m\à‚.V!Àô\Ýý€kH,\à\Zý˜\Þ\ÌHðfœ~\Ìx8˜9½˜•ü˜uú\à6~\à–…³Ž\î«\\÷Ÿ¹À\\§`\î\ÃwÀ<\Ç:`^s0Ÿ³\0,?\0,H{\r,8\ã,(N\0\\Y\0,øžx,þx\ä¦\0žcO«Ó€gö#`¡½-°\Ðuà¥­xx›s€·/\à]˜\0,¹%|ˆ\ë€\ãøl¼øª0À÷,õ\Ô–Y·\Ë\Öþg\×8`\Ù\×À²Ñ€Ÿ\ì\à\çžø]ôü\êC\å\'v\0þkÜ€\0\É& `O,:	X©˜&\"@`\çH hú4 8Z\ÇÁÜ\Õ\às`õ\ÞIÀ\Z0XÓºÙ›„A@XPv¹/6\"°J b\é\Z \"k\0X§¯\Öõ:\ëý\ï\0¶†‘—Q òU5d•DG]\06=]ln¶X†[VÁ@¬.\ÄE±ÿ½»\Ø$ˆ½·\Øúó°õ.°-©Ø¶\ï,°\íù; ~\Îj >\éŸNñuç„µù@BŽ#8ºH\Ü7H|;Ø.v„¬’œ+€$— i‡?°s\ä ¹+\n\Øõ\Ê	Ø,v4{—Àf7°g\ëo`\ï§ûÀ>\Ùw`\ß\È^`_\ïN`­R<\æ)A\Ô=\ÉÀqÀ—R M÷6f0\nH—/\02\ÆK€g; \Ãc\"9P²0%k€\ÃÓ¢€\ì\á™@¶\ßD g\ß= \çž3pdQ!p´ý4p¬Y\ä\Ö\ÜòÀ\í@\Þzs \ï£\×\çœp\ÍN\Zþ\nŒó‚t_\àT£pª[B±@¡ñI pþm ð\á\Z °=(\ìžœn»œ1\ZœY\Z{¬Š—{%\'F\ç|¦\0\ç*^¥&Àù™•À…)\ÚÀ…\í‰@™ü(›2(OR£³€Ë§ª€\Ëw&W\Þ\æ\0•“` \Òm=P¹2¨\Õ@õôk@õF :ñP}®\Õ|®\×\Ù7:†µ†£€\ÚS÷€\Ú\Û\ç€[9ZÀ]¸r¨Ó™\0\Ô5G÷f6\0÷|\åÀ}E$p\ßð@¿xxx8û2ðð\Ä/ Á4h¸txtö\Ð8S4¡Ï€\ÇcÃ€\ÇQÀ\ãG\îÀŸ§À³\Í^@\Ë\Å6\ày\ì \à<xaj¼\Øû\rxi9x9Y	¼\Ü^¼¬^KÚ–ºm\ébàµ·=ð:$x1x;rðö²)Ð®c´¯\r¼Ÿ\Ð	|hK:ÌO|€Ï»u/¶³€o‹¢\ï\ç§]\Ëö\ÝÀ# [\Ïý?ñ@÷\Â@ ûˆ\Ð\ã=\í\r¿_…ðÇ¾ø›Uüý¶\è»÷ø7c\"ðoN)0 ‚K€\àµK 4M„ò?€Ð§û |„c¼@ÄºDöº‚h¼-ˆ/1\'\Äþ\Îq¬Ä†x\Ôx6$/\ÍE\Ö. \È\ë8(Z;]ŠË¢@ñ”@k@\Éð$P2\Ù”†\ß¥[ß€2»hPöu:H¥DƒTû3¦\Ë@f¿\'\È{²\Íù G¤‚ÜºP¥‰\0UûAUR\0¨\Ö\ê\ÕŸ€\ê‹\é ú\Þ~P-…E© °n8¨™Ujé¥Z\ÃƒZó|A­\ÆM ¶~!¨\íUj?ùj?{*›\r\ê\è\åƒ:›²Aš-\à\àÀvpp¼)8D³¢W\êZ;º¯ú\Û\Ó@W\ÐÀóhðò84-zq	8l\é0\Ðp®4\ÌN\r_[€\Ã\Ù\r\àp?8¼X’Ž¸œ\Z}M\0]A\ã\Ù;A\ãñ 	”š\È\Ú@“8ª\Ñõ\ë.8\Z\\šŽ}šZ\Í\Â\ï€\æ\à Ð¼·\ë³{*gp·b8®\í\0h9v>h¹ûh™5´šø´JN\0\Ç\ç\éƒ‚û@k™h½þ\rh}À´þ¹´\Ù\Ú\ìlmN^m\ÊA\ÛoE\à\Ä/\ã@;\ç~\Ð\îU8i\Ñ?\Ð>&œ\Ì/\'?O\0§|D@§@\'pZ\Ù\Ð\Ùz!\è<ù8=‡]#~€3g‚3¦G‚35\r\à\Ì+GÀYn€nÁ\Ù÷€\î_A÷œ±\àð!8®\çºXƒóô\ÓÁyEÁù\êÁù\éÀùÿüÁ\Î\à‚\È\r\à‚$%\è!o=†\ï=êŸ€­– g…¸p\Ï\0¸ðœ/¸°y¸h\íApQ\å\Z\ÐK²ôš´ô:R.¶\ß.¾üôn‰—\äçƒ¾‚K=\ÓÀ¥G·‚KóT\à²k\ÐþúeW¸d‚+\ÞOW|\ëý7]W>\Øž\ÆÁÀG0Ø¢®²4W]\0W\ÝX	­…\å‚Á{0øµ’?^†½X†uÇ€\á#ß‚ƒ\ÌÁˆŸ¶\à\Úõ!\à\ÚM¯Àu+>\ëªöƒ\ëošƒQ>Á¨3ö\àFø4¸±\Ë\0Œ^5	Œ>”	F>nú¡\Æ\\]\Æ< Á\Í\r\npó\ÓLpó«\à–+\àVf=¸uº7¸mú2p[\êWpÛ‰}\à¶\'0nb·\ÙŒ·Œ\0\ã÷€ñI\Õ`Â’,p;¿Ll§Á6¡\àŽGÁ¤X)˜\Ô\Ü&¯œ\n&§?w}H÷ø·‚{{\æ‚û´‡ƒû\æ=\0÷ß¯÷*S—x€©-ŸÀe\àû`Ú‘+`\Úýr0\í©\r˜>hxpõD0\ã[=˜\é\è*pç‡·^\0³RÀlU˜Ýž\0\æ„\0sþŒ1›Ác/÷¹“U`\î\"3ð8_R\nÿøÌ›˜\0\æ5žóþöù÷\ËÀü\ëÁ12° y6Xú,ø»<µx\ê\Ã9°\Ð\ì*XX÷,ò™½`Á3%OÀ³²M\àY+sð¬¿<»&<û\Û\r,60K˜@°´0<\ï·¼0lX\Æõƒe¹3À‹J°B¶¬0«+\æ.+\Âgƒ—–„€—)7ð²gxy\ÕEðŠñ\\ðŠ\×H°«+·«FE‚W¿Œ«\Ço¯¹?¯E<¯\Ï\×kòCÁšÿ9u¼ý¬5¾\Þô¼½,¼ªÞ®©o÷‚wu\ç‚w‡^\ëÆ¸‚\ì\ìÀ‹–‚\'‚‘\à\Ãÿ\êÐ \ï	>\nj¶\0}qw§ƒ=‘`S½=ø-\ë{(À\'oÁ\æi\à³$l‘õƒ-#g€\Ï\×/\Ê°µž_š$ƒ//Ô‚¯ü+ÀW\ç?€¯ž\ã\àu\0øœ	¾s°ßµ•\ïz§ƒ\ïùµ\à{›^ðC\Òðct<\Ø1<\0\ìv”¹\çmÀON\Ö\à§\Ù\Ù\à§s\Î\à§Û§ÀO/\ëÁ\Ï ø¹¦üò~øU´ü>}8ø½X	v\Å]»:°\ÛX\nv\ï{öD\Ý{\ËN?\ã1ð\ç\ïbð—\×oð\×2_ðWÀvðW¶ø«u6øû\Â\Zð\ï#ð\ï\Ã\à?\Ãõà¿²0°Ÿ\êûk;ÀW; À“†€47C\à\Ý\ìp† #ºÁ\n{ž0\0Áv¶|\ç„!\Äb9„.y¡ l\×¯º\æ1€ˆm#!rû\'ˆ¼\Z\n‘!Ñ¼XH²%’:+!é©«ô\Æ[HfÉ¾\\€\äSÅü•-D\ri…¨\ã\'!…»¤h\Ù)1Rj/€”w, Î¬\â“\Û!õ?H0ý	VG!a»$\ìð…49¯ ­wAö4_HG{¤óO\r\Ö\Þ\röt‡‡<…\ß{\rù÷\ÒËŸ\é}\Ü\é»‡ôW¼‡ôwo„ô¿˜@C\Ç\ÖA\ÃÜžA\Ã|A\ÃJ¡a—» Ã‚+Ðˆ–5\Ð\ÈYrh\ä\Ý#\Ñ\ä\Z\È\èŸ\n2\î%!€Fi-†F‚F\'¾ƒL\ß4Bcd%Ð˜+ 3ŸdÈœ\" ±\ê]\Ð\Ø-\é\Ð8\ã$È²p*dY\ÆBV¾@\ã\'\éC,t \Û$dm\ÙMX\Ù— û\Ãk û\ìó\Ð»E\ÃrHQBŽsS ©iÙ\ÓhÚª«³û7È¹ð;\ä\à¹lš\0¹¼\0M\'C\Óùhú\Å.\ÈÕ³r]=r\Ýúr}òš5*š=ú$4O\è†\æ_<	-ø\ï<\ÚC $\äIxAžs]¡…\Â4h\á„\ÐBo3h\á=Z4|=´\è±+´\è\ÏSÈ«v\'\ä\í”y§ZCK<\ÇAK²\ã %Õ«!Ÿ!\ë \ëx\È\×}ò¼¡¥\Z ¿›\ß ¿7w \å‡\â \åOfB+\Ö\r@+chåž…\ÐÊ»Ã¡•o@+{Cö\éP`\Å;h;Z5\ÍZÕ¤‚\Ý \à\"h5­v7…V—‡B«/–Ck\à¹\Ð\Z\×PH\Ö(t:…\Þ_…ø…d (\Â\é!±÷;´~\ÔhýR	ù,Š	5…brnA›‡VB›+>A[\ì\ïC[w|…\â,= I$”03J\Ø9\0%ü˜\nm·j†«•ÐŽ˜(É´Jš\ì%mý/¯%½ú\n%_‡vM¹\n\íºò\Ú\íq\Ûí¹´\Úó\Ç\ÚOA)g_@)/Ú Tq%tÀ\â”V˜¥O|\0Lº\Ì	\Ì\ne¸\ÅA™fYP\æ„(óñ\èð9O\èp\çy(kH”k\åø\èCG8tdit\ä\Ø\èÈ“\è(g³»{ûk	_\Ò\r?~\ÊûøÊ·Ì€ò#G@ùCùw\ÖC\'\à_\Ð	‹Ÿ\Ð	—YÐ‰´[\Ð\É¯¡¨*\ØZj}	\êB…\ÏCEˆT\ä9*\Ú>*ú	Ag\n~CÅŠ÷Pq¨*\Þ?*)Ì‚JN†Î¹* sw\æC¥cÊ ó›p\è|ž7tþ\ÔT\è‚\è2T€AW™A3\ä\Ð%/	t\Ü	UM_U½q®n]]M•B\ÕG k	‡¡k§¿C5ž\Ð\r\ã\ïP­Gts÷c\è–ÁL\è¶X\Ý\í9\0\ÕiŒ :\Ó \è\Þ:º×®Ý°€\Ð º¿ z\Îªj=ª›5nó†·\'BOý@\Í÷\ë \ç\Ë@\è\å¿uPwj3¢ ¶%Y\Ðk\ê\rôz\Ê\èM\Æz\èmrÔ¾9zÿ\Çúqúð\ÒúðeÔ‘iuš\nuzý€:\ãÊ O\×Z \Ï~MÐ—š\ã\Ð\×øoÐ·ýF\Ð÷\ÔN¨\ër\Ô\í	u\Çüƒº“µ \î{_¡ks¡\Þ3zPoUôs\Õm\ègýaWA<R >\í{Ð¿žl¨¿F\ê\ï\Ãa4…Á©q0”z†mü`¸¦FôžÁˆ\Ñu\Ëw‚±\ë‡`\Ü&\Æ/Ã„ùr˜\Ý\ÊÿÜ‚I`L¦–Á¢‘‰°(»	µ³°¸[KM†%\'Á\ÒKÉ°ô±,\n\Ëö¼…eµ?a:*¦_„•F7`e”V\Â\Ê\×&0C‰`N‘s‰‡`\Õ\âË°\ê\×qXX’\ÅÎ°ðt5,4Á\ZûdX³Ck¯ºš:\"‚u|&Á:m\Ç\áÁ›Pxð²}>¬»\î!¬—\Ð\ë]\Ü\ë›{\ÂC\Åð\Ð\Êýð0\ä<¬\Ý6t>\ï<\04˜\0™\Ý9\r½`£Ol\\k	›|÷ƒMþYÁ¦^ž°¹$6wþ›Ÿh…-ú¶ÀV6k`«¤Eðø¸x|\É=ØºðlS\Û4¿„mþ6Â¶_\Â\íR\à‰¥ðÄ—\Øn\Ó>\Ø~°!<9¼vˆ};\\4…\rÀS¯o…§™iÁÓª_\ÂÓžR°³\Î(\Øy\Â\rØ¹\è\ìB?†]£ð*ž\Ñqž	ü‚gN¼\r\Ïô0ƒgfng\ÅÀnR`·‚ð\ì\ëb\Øý\ÌxN°<\×P\Ïó=\Ïwœ/Ø¬‚=`]x¡\Õx\áö>xÑ¹¡°W\É?x±\Ë}xñ[ö\Ö.ƒ—|t‡}F$Áÿ•öqx\rûô0°\ïùPx\é\í\Ýð\ÒC\áešxxY\åjxY\Õ+\ØOo\ìU	û\åÀ\Ë\ï\r‚ýKõaÿ–°ÿg\r¼\Ò\Ð\0^Yp\ë	Ú˜ÃkÿÁ«\Z\Ê\à`>Þ¸^=\ê¼\æE²\çò\Ìµ}A\Ãa\åŽp\Ø[\ç\Âómáˆ³Yðº\î\Çð†’»p¤±y1	Ž¬©†#ûo\ÃQ3]\á¨\Â8\êt¼1ù¼1¥\ÞøÀ\Þøñ¼\Éló!Žù˜Ç‚\×\à\Ø\Ý¼õ\Ì;x[\Ä(x\Û6Žsy\0Çø\ÇW-€\ã__\ã;†\Ã\ÛhxÇ‘›pÒ´hx\'ð\Þ>\Þ\åv\Þ#\Ú\ïyõ\Þ;\é8¼÷\ãx_\ï{T\ïIÀû§‡S\à¶qðk\à¹C\à7‹\á4[N[\ë§_n€\Óo”À\é\Í[\àƒ\ß\r\às78c¥6œ\Ñ\ågš	gf¬³K:\áœ\Û\á#\áMð‘£>ðQ¦>z\Å>f³>\îLÁyG\à¼\ëpÞ£ùpþ \×ð	\"\n>‘p>\Ñ÷>©\ß	ŸôŸ¼\íŒ,‚Ž;Â§N\ØÁ…]Yð\éE›\á\"\ãHøÌ°£ðÙšø\ìmK¸¸..Yu.ù9>·r|þ\Ù<ø¿.c\Ï\ÃSþÀ‘\rp\Å\í…ð•!p•m\\u\æ!|õô1øZ\â%¸&g.|£º\r®¥Âµñýp\íþvø\æü\Åð-#ø62¾ck\ßqkƒ\ë\ìž\ÃuŒ\àº.søž\Ø¾We?ôq†<‚–Œ†\ëm@¸>\Ún\Ø7\Äo\î\äÃ\âV\ÃM£Z\àÇ§\ÖÀOf™ÀÍ»õ\à\æ¿\ág5ü\Üwü¼\Ö~Q9n=LÀ/=\àW+õ\áWý?\á¶UŽð\ëHø\Ý\Øð»¸^ø]ö-ø\Ýß«w¿\Ã‰6ø\ãXø\ã\ÒF¸óª;\Üù~)ü©oü5x*üõ\Íoø\ÛMgø»w±r¸\Ë\Ã\r\î\Úow½\Ûw?6…{\Z÷Á=\ís\á1\Ë\áÃ½:‘ð\ÏË«\à_\Ã#\à_»\'Á¿\Ì\á?^•ðŸKø\ï¼#ð_\ï\Íp\æ¸?[<\Ý\0´†>\Ø\"@\Ìn\È>À\Ô7©‹ So#h\Ê}=Á¦®D°\å\í^q!\ÝD<9\0\ßND$·!’\æ/ˆ´R‘¹9!²\ã·ª\æ&¢¨MD·\Úu$B\ïÿ…\ÐO\î#J\î¢œýa‘L„}ØŠp\ÖÁošŽðG_ ªsW\ÕõND±Q\çG\ÅDxv\nÑ²ûŽhE\× Zÿm\ÍLD»¨\Ñn_‡h\rD‰® ƒ®ŽGt¾ýCt~5\"ƒ§¢\È\àÅˆ\ÞoD\ï\ãD\ß\à¢ÿG1ð{ˆ´NF†>ª@†!©ˆ!º1…ÿšŒ\\w1\nŽ@ŒÖš\"F}\ç\ãvˆñ\Æ\ÈèŸ¦ˆ©}bÚ¸³\â\'2f\à>bVe‚˜K& \æ^o\Å]\Ä\"u\'2Ž¼ŒŒ[jŠŒ‹š‚Œ»X*G#–­g+ub†\Ø\è©\Ä\Æ\ß	±%Ò‰u}ˆ\Ý\\d\Ò\ÚaÈ¤c+{{	2e¡\â\àðq˜{q(õF\ë†!N:ƒi›a\ÄyC\â¼c*\â|<q>¿q¾rq9}™\î<™^õ™þù	2£¡™ÕŠ\Ìü¹™%Yª¹ˆ[¨7\âþ1™3ú\Z2\Ç\Å™»j\"2÷B\Z2÷½)2··™§ú\Ì3²D\æï¹‡Ì¯Z†,\È„x„ø!a%ˆg\ä\Äsƒx›‰,Ü¾Y\Û!^•\Ûo¬ñ\Í@¼\×#KjZ\ß\Ü	\ÈR}Cd\éüU\È\Ò\ØCˆ\ß\Ú2\Ä\ïh$\â—gŽøõ¾A–¿ +N\ÞBüUYH€*YÙ½	\\ð	\ÌƒžòF\ëmUž?U\Ù4þ(Ð†ÇE‚OÿBV§\îEV7C\ÖLÄ‘5G\í	)X‚„N[„Ö¤#\áKA$\âúZd­n²n\îsd½\"Y‹¬¿T€l\0­‘hó$:\à]q‰qöG6ó\áÈ–)…È¶\ÅÃ‘m)ó‘x\×j$¿ƒ$,Z‹$¬þ‹$$E¶—\í\Íw7J‘$\Õ,$\é’\r²s¬Ù¹ñ’|ñ’\Ü\Ã\"{œ¿!{\Âu½“W {ž#{?mFö]@öSÏý¿> ûÿ™ )‹\Æ\")¾’«¤\ZER\ç\ÎCR\ï7\"\"\Î \Þ#i[\Æ u\ä\à\ä$$s\Ûx\äÐ¸ñ\Èa«.\äpb3’uŸE²¿: Ù½™\È{\ä\èÞ»\È\Ñ‘£\ÕÈ±²³H\î6=\äø\É\ã†!yb‘“J9y¡9Ym‡ \Èi\ÑE¤hrr\Æ\á\0r&\Õ\n9Sø9kô9;\ë3rö„R<\Í)\Ñ\íEJš,s}<R:\ë7R\ê>¹P›‹”Í¡‘²¢gH\ÙýD¤¬¡¹8®¹¸\érI\ã„\\?\Z¹<B.§!W^k#•§® •w\â*\Ã&¤*°¹:aR½%¹NmDj†¯Gj\ân#7:JZ­õH\í\ËH\íoä¦¤¹ÙŽ ·¥!\È\Ý\ÔQH]¹1r/[¹÷{\'r¿-©Ÿ•Š4\Øö#ŽU\"\Í5H“\í¤)ŸG{ÀÈ“\Ù7‘§{¥\È\ÓÞ…Hó›õÈ³,K¤e\È$¤\Åù1òÂ¿yy«yEø!m\â™H›ñ8¤\í\Î\Z¤­eò&Nykóy»\ÖywÀy\×ê´K;ö\âýH{m?ò8…¼C‘÷\çò\\òñ¿úv¤=D:_”\"ŸV|C>½³@>ƒ8ò\ÒB¾,[†|)´B¾œ­@¾”.B¾\Íþ†|ûÑŒôÿF~\ÌüŽüh\Ô ½óÞ€R¤7\Í\é-›ü4{…ü>zù}¦ù£Uüñ¬@þ&; }K¤H\ß3\äö\é²	\é_p\éo»ŠÀ¿™(øü\'\nu¥£°:	E\îú \èÊ›(\ZøEk\Õ(®tBq\Ãû(Y‚Š†¯EÅ¢¨Ø´•¼?‰Ê®OD\åª¨ªB•3\ÚPF/e>c(Û‡r#¼P÷pTs\Âd5Ü¨A‡<~‹\êŠ\ÊP\Ýq*T÷‘/ª\Û2\Õ\ãß z\ëP½œRT¯ñ7ª?•Fõ\å\è\Ð\ìÙ¨¡Aj-B‡ûCGOG\Ï¨Iúq\Ô\äª:\æõl\ÔLP¢f»\ÚQ³C‹PB-¶÷¢]jñ\ã5:¶\í\":\ÎÁ7ó\"jù\Z@­\\\ï¡Va7\Ðñ{eè„•¹¨5¢\Ö\Ïö¡¶c\ÝQ\Û}cÑ‰\Â\Ô>ˆNÞ²Ç¡\ïuPÇ™CQ\Ç\ë:\èT\Íg\Ôi\Õxtš\Ì¶=u)ŒB]Î¶ Ó±2tºz=\êúx:CtÉ–¢n¥ž¨[e;:›˜€Îžzu{	S¨Î[Š\ÎëšŒ\Î|Ž.0¹‹z² \ê¥{õzTŽ.\Þ=\rõÑ’£>½E¨o\é\Ô÷6º\Ô\Åõ[rõk‹DW4ŒEý³¾¡þö¡þ\Í\ÛÐ•ƒþ¡+=\î +ƒ`te¯>ºŠÚ„®JnDƒô\ÑÕ£o «/;¢!c×¡¡Þ›Ñ°\'4|G,\Zžû]kþ]?\è-º!xº\á¤\ZI8£‡÷ \'\ïE7\è\Æ\Zi.B7»¼E7\ç£\è\æ/1hlc9º5e\Z\ç*G_¡	±S\Ð\í_\Ð\Ä/¾\èŽ[SÑ\á5hòLc4ù†š\Ü%Cw\Å\Ð\ènE\rº\Û>\Ý}\åº7nºo·ºÿ‹5š¢wM1´@S\ÎmBS®X ¦\ÝBS£®\ÜG\ÓœÑ´}Uhº‘z0V„f\ì|†f\ê\Ý@3ÿÕ¢‡l|\Ñ\Ã#\Ã\Ð\Ã\nÑ¬1uhÖ­\ÓhVó4g„\æŒM@s\â\"Ðœ\ìX4\çe(šóa$zôd4š»­\Í-\ÑEžˆ\æ­(Fó²–¡ù3t\Ñ|ÿ¿h~ô4¿\Í=qFOô\íCO\æm@X-ÐŽEÆ¬CN\ÌFO­¯BO{FO¿?Š\Ç$£%þ\è½½\è…\ÄZôBû0´L÷\rZ\æt-›u-+üˆ–\×\ë£·­G/÷e¡W¾¤ •Ÿ\\\Ñ\ÊÞ·\èUý\èUý\è\ÕaNh5´­\ÖrF«+£\Õk\Ðk%\Í\èµ{‹\Ðk_\Õ\èõ·\Õ\èõžXô†üz\ãbZk\í€Ö®qBoR\è\Í\Ë^\è\Í\êzôv\ä(ôÎš«\è½­\è½}­\è}Wz?&\0}([†>\\‹>’h£I\Ú\Øaˆ6þ‰G›¸õh“m\ÚT€>‰\ÉGŸ\Âu\èS¡\è3}Vbƒ¶ì”¢-® \Ïw½GŸŸ9‚¶®z…¾ôýOr\"ú²5}5¶}eÝ‡¾Zÿ}\Õþ}=¾	}=\ëúúQ(\ÚnrmŸô\Zmcƒ¾OtE\ß\ß\ÈD?Œ\ÉG;l\ÐG/´có´\ã,‰vú}B?Ÿßƒ~þ<ý\Z‡~i°F¿jMF¿\ê_D¿\ÍF¿›F»˜\rh—\æ\Úu§\íºû\íúÈ£Ý£œ\Ð\îC\Ð\îs«Ñž\âô‡\Ã/´×¥ý¥Fÿt¼Bû‚\æ¢ÿ\Ö\ßCû!S´T\ÚoÖöG\Í@û3¦£ýù\è\0RŠ­O0¤\Z\Å\Ð\á–cX{†ý‹Àðò_~?\r#\Ê]0\â\æ;Œ¬v\ÄDðyLlž„‰}\Â0ñ²lLb`‡I\â\Îb²•w1Ù†û˜\ì€Q\ÌyŒqS\Z¯Ä¸32Œ/?©jžbª\ßN˜zô-L}\ÄS·…aš®S˜\æO¦5\ì¦­\ç‚i\çb\ÚU‹0\í\ë	˜\ÎSslˆn¦{ Óƒ0½\Õ?1½¼W˜\Þ\×I˜ÁÁH\Ì\à\ÈSlhB\"6,~\r6\ì[fZŒ\r÷/À†_˜‹°*\ÆFûƒü[O\æ°\Ñ5¡\Ø\è/©˜©\Ö Ì´&c²³/k¾{\à663\Z[þgò\×TYÀ,\Ãõ1\Ë\Úl¼\ÉLl|­-6a¤	f3\î/f3\ëfË¿\Âl\í1Û¨ÿòô\å\Ø\Ä\á¾\Ø$ö6©ô6i ³\×Y‰MY€M)ù9™aŽmŽ\Ø\Ôa7°©¡C°iŒ6\í†;\æ’2sùHa®?‚±ªÁØŒ#§±Y5 \æ&ÁÜ¨c\Ø\ì¸nÌsÁ\æôgbs\å+±¹†ý\Ø\ÜßžØ¼\Ò7Ø¼o?°ù6ÿq)¶\0¾…-h\×\Å<\Æ÷as\Û1\Ï\Å=˜\ç\Þ˜gÁR\Ìó¹\æù\Ö[¸S…y±±Åƒa‹—žÁ¼\Ó°%?\ß`>ŽK°eƒ\Þa\Ë&]Àü—b+z³°€!ñ\Èû‹­tÞ­|5|q|{[5e4ò”ý:„\Ë\\±\àg$Bta!\Þ±ò\×X¨‡…¾LÀÂª\î`\ágŒ°ˆá³±ûuØº‡±uñØ†Ç½Ø†g±\r_œ±\È]\ÆXôˆ\ÃXô\ÉõXtq>¶‰Ü„mª…m€mN8m>t\ÛüÁÛ²\Û‹=šŽ\ÅþõÇ¶f\Í\Ç\âôZ°¸I\rX¼xÿp=–ýK¨þŒm—\ça\ÛUú\Øö*¶½\é–x;K\ìý€%Ý·\Ãv¦ŸÅ’\ÃYlš‹\í”b»£plÏ”5Øž§\ÅØ¾Ÿ°\ÔIk±\ÔLK=iƒ¥ö.À\'`\é\ÃÃ°ô\Ø\ÑXú\Í\ì\à\ï4,3x\rvh÷\ì°\îì°?–eúËºn‹e\êb\Ùi4–cÜƒ¹ñ;\ÊNÁŽ-\ËÂŽ½:„\å¦c¹—œ±<t–\'Žå©¶byw\r°|h!v\â»;	þÀN\îŠ„?\Â\nDc§-ÀŠt\ß`E®qX\Ñu.\ê&±3º\éØ™\àu\Ø\Ù\å,V¬JÇŠ›°\â-!XÉ¡©XI\Ïe\ì\\ÿF¬tü9¬\Ô\Ú+®\ÂJ\Ýi¬´ê¿¼%»ðDŒ•u\Â\Ê!%Vþ\Û»ˆÁ*n\Ã*úý°KZýØ¥o[±\ËzºØ•/Xe\Ôn¬\ê;…]µf°«?n`\ÕmO°k\'7b\×\rc×—ºb\×o.Á®·\r\Åjb°š={±š¼\Ø\r·U\Ø\r¯cØ;Ø\æùX-7\r«}ÿ»™»µ\Í	»]=»\Û…\Õ!û°:\ËZ\ì\Þò\Øý%\Ø\ÃÑµX\Ã\Ð9Xƒ%„5B_±\'…]Xs”%öltö,<k¹V…µü2\ÇZù•X«3†µú™b­»¦c/Wb//Ea¯\ß-\Ç\Þ0[±·7±w§°÷\Èg\ì}o\ÖÁ\Â>¹\ìÄ¾*\Å\Ø÷¡õX\×ôj¬+{2\Ö]õ¸,\Â~G±\ëÒ°QY\Ø/,ûµ\\‚ýŠøývZ‡ý±\à±?N…\Ø\ß\Õ#±¿\ïH¬o\ÏB¬¯½û÷\æ,\Ö\ßÜ‡;q ª‡Žþ§\Ð\0G<\Üq\\¿\'M\'\ã¢÷qñ	\\rk.\å÷\àÒŸSq\Êö®hj\ÂY­hœ\ÝÓŠs•›qu\ÐF\\(Ý‚kt\×\á\Zc®mŠkß¶Á5\â:¶\à:óýp\rJ|°›>d´5>d\Å[\\·R…\ëöø\ázÛ¾\áz{špý­6¸~\å]\Ü\àòi\Ü\à\ÉB|˜ô>\Ì\ÊV­\ÂGtÅ\å¸q~nüõnrt=>*\å<>\êD%>ú\îM\ÜôòO\Üt`\â]„\é8Œ›Õ¼\ÆÍ‡|À\Ím\Ü\Ü\ã,n\Þmˆ[ õøØ„p|l\ê;|z\n·<®À­ŽOÅ­n˜\ã\ãu‡\à\ã—=À\Çw8\áv¯\Â\'TŸ\Çmln\ã6¶z¸\Í\Î[¸M-nó­	·\à]7\ãvƒzp»wñ\Éý¶ø”`k|JúO\ÜÁ?w[‰;MÁ½\áŽ;Mq\Ç#\røÔ˜d|jZ\î\ÔÝ…O³º;ÿ\Æ]¸¸KŸ>\Ý0ŸnºŸ™\îƒ\Ï\Ì0\Åg®\Ãg¡Eø¬\0O|Vw%>;ø\Z>û¨7\în·Ÿ·\ì,>ÿ¢5¾À>_°e/\îñ\é\îy¶÷¬[Š/´Ø/|¶\n_\äq÷zŠ{u\à^\Z\Ü\Û0÷vÆ½/V\á>ÇƒqŸOÁ¸\ï²KøR§6|\éû»ø2\í\åøò\Êø\n»)øŠžSøŠŸkpÿ\'^øÊ\ßx >_µ%_õ5zö	¾iŠ¯^p_½p4:Œ‡}_†‡¯\×\ÂÃ£\à\áOjñˆ{3ñˆOðu’‹ø:u:¾a\Õy|\Ã\Æ	x\äüuxd\Ü<òxYa‰G\å\Ã7\ZNÁ7Þ¿Gs\×ñ\è?1ø&ÿ5xŒ\Þg<&­y±\ZiŸ‹oþ\ß|ÿ¾ee4¾\å\í6|\Ë\çqx\ìj|«¼\ßzi(¾m	\Ç\Ù\ï\Æ^\ÅŽ4\á\Û\át<³\Âýa<ñÀ6|G\ÎG<\é¾5¾s\Ë|g[%¾³\Ã\ß\Ù;OöuÁ“W\ä\â»2\ß\á»:¶\â»2øh¾\ç\Å5|/‘Šï»¢\ï?óO	\î\ÃSÒ\â©Z\ÇðTO-üÀž“xz\Î&ü ~~0x%ž1EŒg,‹\Æ3\Êÿ\â™	ûð\Ì\ÔOxfC<~È\Ä-Xˆd‹\Þÿ\ÏjOÀ³/¯Åx\ïÅ\\{„y4\ÏEÿ\à¹5žÛž‡Ÿ óñ“Ê‡øÉ 9ø\ÉT/?/ˆZƒ\\?ôŸÀ\Ë\çà§­\Ç\ã§wO\ÂO\×i\á§\ß\ÞÀOwüÆ‹Ø»xQ„Ÿ]n\Ëôñb\Ë\"¼x\ïm¼ƒ—´†\á¥a_ñ\Ò\Ïeøy™?~¾\Ì?\å	~þ\Í+¼|\"ƒ_\Ì†_vÿƒ_ö	Æ¯,}…Wj\ÝÀ«‚V\âU%3ð«³xü\êñ“xõª>¼:ÿ~\Í\ë=~m\Å0ü\Úycüú\Ð[øõ\Ðjüú\Õ\\¼…\×8\â51µø9,~SÓ‰ßœ¯\Æo˜à·¿X\àw5;ñ»Cþs¿»\Ã\ë Cx\Ýpküž»!~\ï\ëoüÁüPü¡,8\é þðû8¼Š\Âe.x£*o\áû´ð¦µ¾x\Óf¼i\ÞT’Š7Ýš‚7õ1ø\ã,þX‡?±?™Ø…·\Ì:„·l·7\Ã[\î\ÎÁŸ/qÁ_„\á­ñ—¶x›\Çu¼-ˆ\Ç\ÛN\0ø\ëq\Ïð×±£ð·q)ø\Ût[W\Â\à\ïž.\Æß—<\Ã\ß÷\Ç?<\Â;|ðŽYø§m“ñ\Ïz/ñÏ¶3ñ\ÏgSð/Mð¯g7\á_{,ño\Óûñoµñ\ïk\Ö\á]•\Z¼û\Ô.¼gw6þÃªÿq\Ïÿ\ÑfŠ÷®k\Ã{7xoúaü\'i‹ÿŠ–\ã¿\Þ\×\à¿]\Å¾‚ÿ>ÕŠÿ~Ñ…ÿ\Ñ\æñ?&[ð¿²øß«x_’ÿ\Ç;\áÿ*@¼³1\Þ_ƒ ¦ø€÷r|\à\ËA´_G€ó0Õ„\0K)zw”@\Ô?\ÄÀŽ@v\Èª¨\í0\ãö˜\ÅN?\ÐBšh‚04\'\Ä-0!™óô$d)úUr˜ w$\Ê&;‚Cl\åg‚½7…\àp]‚¼\à|	>b/Á—ö*^‹Pe²„0\ï0¡y}™\Ð\ZšCh%7Úƒf\ÚŸ\Ú_wƒ¡\Û\Ä`b\"1x\ëbˆh11DaC\è…}%ôö\ZD,aP3”Z²„VSE\î	\"†Ž †\ï;NŒx¬KŒ$\Ç#i[b\äH#\Â\è\ÑC\Âx\ÞU\ÂDvŽ01\ë!F\ÏF‰Ñ«>£\ã„i\ÔHbŒ\ÕEbLT\'a\æ\ïDXœ{NX|\ßNŒ‹~BŒ\Û÷‰\×õ°\ä|Kƒ/„¥y\"a9O—°|’OX~]IXö|$¬’‰ñ–«‰	­«	\ë\á\×	•/1±\åaýš°\ëA\Ø})%\ìõ´	ûýÎ„ý½nbÊƒ/Ä”v„C¯%\á\èŸIL\ÅwS‡\ÄSW¶N6§§–#„Ó·QÄ´™	g­ë„³½+\á\\H¸\'\\FU.%,\áú\î1#p=1h&fžšE\Ì\"ˆY\'r	7·I„Û³\å„Û›\Â\ÝÉ€pv\"Ü%\î	Äœ\Ùóˆ¹\ãpb\îŽ˜\ÇTó[\Çšµ	\Ë6\ÂS/˜ðt]Nx–\Ì$¥‰¯ñ\×/\×c„—¯ŠX<=šXbA,~¸šð‘J,™®$|˜W„\Ï|†ðó™X*®#–f\Ì –\æ†K\Ï\ÆK\ï\ß\"üt\ëˆ\Î;	ƒ\" )šX9d\Z¸.“l¼H\Ók‰5Ã¯k¢Ìˆ5\Ïˆ	\éD\èR#\"\Ì\êö$‘ûfO„\ç\Ü \ÖR\Ä:v±žXKlð\\DD…WQ?kˆE-Ä¦ð@bAl±>Nl¹2›ˆ]1ŸˆÝ¿Ž\ØZt“Ø¶Ãœˆ»N\Ä=o&\â†\Û\å×‰\Ä\Ð\ÓD\â\åED’d5‘4Ì„H:<•Ø…ž&v‹F»#²‰Ý\êˆ=6‹ˆ=µ‰½ÿôþSL\ì\'Üˆý+Ü‰ý\ÇÚ‰ý)=DŠc‘ú6“8³‚8pú-q\àL‘f´ˆH›\áD¤½F¤ö#\Ò\ç\éµ\ïˆô\æyDzûa\â\àÕ\Ä!Àœ8dHr¯\'²`k\"«4‰\Èi¤ˆ#“e\Ä\Ñˆ£¯“‰Ü¡—‰\Ü\'ˆ\ãZ÷ˆ¼›“ˆ¼o\áD¾f€\Ès‡\È_<•8©\ßDdcD\á¤û\Ä\é¨#DÑ´\ÕD‘‡œ(\n<Ou‡gÀAD\ÉK”(u\\B”\î¸O”þ7[\çO¿\'.”ü&.\ÔÚe\Ú\ÝD\Ù÷¢¬WJ”\ãˆr\'¢ü˜(?·‚¸è¾’¸X§M\\|ò•¨¨®\'.¿!ˆ*‰)Qµ\ëQuh(Q½»Ÿ¸¶d€¸`F\ÔW7\Ø\\\â\Æp	Q{Ù‹¸9}q\Ë&“¸ekEÜºB\Ü>¸…¸ýBM\ÜgN\ÜY‘OÜ‰xCÜ©_A\Ü\é\ßM\ÜcN÷\'÷Mkˆû\Þ)\Äý}\æ\Äý\ãwˆr)ñ`\Ã\n\âÁ—â¡-ñ°oQ·ˆ¨\ß7‹¨oL&\ZøDC\Ó\"\âQ²;\ÑøÔšh|YL<Y‘A<\é»I<\Ý %ž\í!š-ÌˆgCY\â\Ù9k¢e\Ùq¢%-xA\ê­¯@\â\åö$\âü–xxŽx\Ûy–ø°¾‹øðÀ‡ø\è\ÖO|\\F\ÖD§¬\èÔ½Et.J|\Ö6#>¦ŸÓ´‰o\Êi\Ä7õl¢KGt­¯\'º|ˆžÓ‰ž\ãw‰ž\Ñ3DüH\Ú@ô\Æ\ë½·½op\â·Gñ»¦›ø“ý™øÓ«Eô\é{}?~ýÓŸý®S‰µ>1\ÐpŸx.%Á/H˜õ a£h.V“\È\ÐZ© 1q‰¹\Í#qµ‰/\ÞAGW“\Ä\Ós$	\ä\æ9¤8Á„”ú6’rÿS$µÖ¤¾= B8I?\ï#\Å3’™?…d\Z\ãHvh)É¾B²\Ýy$ç°ž\äX“\\i3©:ð‡T—¼!±)<\ÜOj–=!5N’Zò$R\Ëõ\r©5\ï9„ZI\ê\Z’¤Þ‰•¤¾$Ž\Ô/Š%õŸ®\"\rRQ\Ò Ýš4ø+\'‡-üA«¥HC>š4\ÔúO‘‚¾}\Z9b\Îr\Ä\ÑNrd\Þ0r\ä!¤‘«i\äöŸŸI\ã\Õi|c:i|k7iÂž\"MœF‘&±\ÏH³2\'\Ò<siÁÖ‘c\'_%Ç¥+I\ËÑ£H+\ÓXr¼d9^JŽ\ÙK\ÚlYO\Ú6&m§½ mgú‘¶oH»5\É\ÉD9\ÙUM:\ìyI:\Ü\Ò%1\Òq;HNõYDN%§žùMN³øFNË¯#wÎ©^¤\ÙKN€I×³\Û\ÉW\ÊI·­‹Hwÿc¤{S\éþ½“œ#i&\çLyD\Î)NÎ­a\Éy²\ä<\í\ä‚g†¤\ç4Ò³\ê¹ðd¹°Ä…\\d\ëD.*\'½¢<H¯ä³¤×¡¤\×û\ç¤\×\ç}\äbß¿¤·\×\Òg\äZ\ÒW“Nú\Ê!}°¤\ï\Çc\äÒµÉ¥	{È¥?-\ÈeeKI?Äƒ\\fN.\Ð@®\ÑC®¸N®hM\'ý]\êÉ€‹É•Oƒ\ÈÀ¶…\äª:r\Õ\ï¯äª¿\Ã\È`\Ï?\äj#sr\r\ÓB†Œ\r C\"2\ä\Èw2¬Êœ‡¶’á§‹\É§2\"4Œ(|L®\Ý/%\×>ô&×•©\Èu³\Èõ›GLf’>O##GF‘n¶dd/FF\ÑS\É(\ÏK\ä\Æu\ëÈ1\Ï\Éh\Å2:y4¹	­#7\ÚJnò\ÞOn*~FnºlDÆ¬LÆ´-\'7;DnNYOÆ™\Ý\"\Öm$J«\ÈÄ±d\âÇŸ\äŽ5óÉ¤_dR¿7¹3$“\Õ\Îdòždr×¶Nr7ñ\Ü\í#&÷É³\Éý÷B\È›d\êõ\Í\ä-òÀÎ•d\Ú=rð›™9ÿ)™¥\ß@f™U“Y•\ÙdV+™½n\'™Sµ…<²RF…’\Èc/=\É\\„\Ì\r¸K\æ^}H\æþ»E\ßõ‡\Ìk:O\æË´\ÈN\nòd+Y°$Rk\È\Â\ï#\ÉÓ¼-yúD\ZY¤¨ ‹†~&\Ï<!‹-F’\ç`#òœµynZ\"y®Yª\åC^ðM!/„m\'\Ë&\'Ë¶=\'\Ëúl\Èò‘\Ç\Ér¯J²<|-Y~\ë=y1MNV¬¦\ÉKZ:ä¥©/\ÉJ·Gd•=yµ`yµûY=\í5Y\âIV\ço!¯\Ó:\äõ\"%yý\ÚX²f¦+YS\êJÖºe’7N7\Ãk\É[„š¼\ÓM\Ö\é<$\ï\Í{K>pJ\'\\t Š\Å\äCcò\áòaiùð\ëU²Á{1\Ù8MŸl\Ê-&›n‘M\í\×\É\Ç.\Å\ä\ãK\È\Ço{\È\'kÞ“O=¼\ÉfY*\ÙlžO6O\Í ›Wo!›“z\Èg†³\ÈgþŸ\Ég_EdËŸ·\äóR;òùó\äó\ß6d«‡5\Ù\ê÷”|S½…|ó=—|;¨ƒ|öœ|[’\ïný!\Û¯\'Û¯Æ\ïóµ\È\ìkò\Ã5=ò\ã\Ì²Ã²Žü”0œü”QD~6?D~\î\ÚN~9ú€üRJ~[‚\ßò\æ’]\ÈF²»x\Ù]\æMv?u&{r\â\É^Âü…h\È_\êJòW=@þ¾\ÙDþb\È?-É¿V{È¾É¿\É~\å²ÿò(²¿\ê’Âˆ€\Ú=\"p\ÉU\ÜR.‚¿d‹m\"TvPDL²‘>\"²ÿ–Hlc.\Ïz+{­‰k(‘|ý8‘¼\ÇQ¤X½F¤xKŠhŸ\"fZ…ˆõu±¯oD‰øˆ‹\"õ´ñ\"\Í\Âf‘\Î\î×¢!;4¢!BDº\ÊH‘Þ_\"½g\Å\"½·Ž¢aŸ\rE\ÃG&ˆF:o;œŸ™/2~\á/\Z\Ý÷A4vm”hÜ°Ñ¢qwA\ÑxH\"\Z?\\#²6ø!²<Ed\',\Ù\ÎM\Ö\ÜM.s9¢‰\"GŸ¹\"Ç–]¢©óÑ´3¯E\Î‹D.\Ø\Ñôª¢ù\ËD3\ÞD‹fžˆ\Í.¼#ro=&š“›,š;shÞ Ÿ¢yCÏˆ\ær¢yg\îŠ<NOytõ‹Z-Š(ZT†‹¼Šgh‰¼oF‹|2)‘O•¿È§m»\È\çc—h™\â»\Èo¦©\È\Ï\ë\Èï„½h\Å\\sÑŠ¸?\"‹¢€7E+\ÝlD+?÷‰cƒEAC/‹\ÖTô‹Â¾6‹\Âo.…w­­ÿ\'Z{\ÅV´ö‰½hCPžhC\ÊÑ†*R´ñ\Ì^Ñ¦nGQL‰B´9ø˜h\ëÁ¢x\ì‰(¾\ÌB”xÿ±(	>+\Ú\éyR´³¢H´¿ðhÿ\Óõ¢ý\ß4¢”‘\ßD)!Ù¢”®±¢W\æ‰\Ò\ÊÇ‹\Òú–‹\Òsgˆ>>/\Ê0_+\Ê\È\Û-\Êx\ë&:4¯Ht(cŸ(ûBµ(»)T”#d‰ŽHmDGM\rEG“:DGó>‹r“ÿ\Ón!:¾\æ‚(\ï\ÞQþ;Ñ‰(mQ¡h±¨pòZQÑ²¢¢\ÌzQQùP\Ññ\Ñ\Ù\à	¢³k\ÒD\ÅõŸD¥\Ã÷ŠJFˆJfˆÎ‹D\ç¥ûD*kEe«V‹Ê‚Då‡µE\ågBDþ3E—\äDWfžU&é‹®nµU«­D×®ý]ûüPt\Ýn¨F–#ª©ž,ªýÆ‰n~±\Ý28.º¼Ý‰4\ÕY´ˆ\î…¢û\ç²Eõ\äQý§vQC”RôhþOQ£è®¨)\ØX\ÔT0Aô8K*z¢q5+5\'E/b\íE/®^µNX.jm¸,zy^½z—,j›\é)z3h¼\èMô\Ñ[ù\n\Ñ;\Å4QÇ–Á¢ŽD\ÔŒ‹>/[(ú¼\â©\èó\ÚBÑ—D\Ñ\×ä‘¢¯gôE\ßÿ\ë½\ï¾\ïE]\ßòD\Ý7x\Ñ¿µ¢¿(ú»ó²\èo\Æ}Q\ß&¹\èßƒ6Ñ¿®·bÀJ,F&U‰Q\Ç1š\ê(&òû\Ä\ä‡]bQ›¯X¢%K\Æ\îË¶ù‰eÙ‘b¹l‡Xžó],¯8-¦µ2\ÄôøX1\íü\\¬?ˆ™=Å¼ÿ\"±ºd¥X\ë\ÕFñ\à±ù\âÁ¯Vˆõ\ÜG‰õ\Ú\Ò\ÄJT<t\â5ñP\Ï	bC¡C<|¹£xDõ\\ñ\È\É\Ç\Ä#{x±Qõ\r±ñc±Y\ÞV±Y‰\ØjŠ£Øª³C<\áôNñ„\ÒUbkÀPl\í½Tl\â$¶üX<\Ñ/WlŸ÷J<\Å@\ç?\ÅS\Þ;ˆ§z±b§6b§\Ä\Ó\ÍOû˜.žö÷¨\Øeõlñt\Ýfñô`Øµ\ËP<kUxÖ³/b·=b·Œµb·\Ì$±ûž\í\â9þ\â¹]k\ÅóŸT‰=\ïb\Ï\â\ÅÛ—Š\ïš-^ü¾P¼ø\ÛK±÷Fkñ\ÒE“\ÅK;Ö‰—‹¦ŠW\Ìm¯ø¾A\ì_)\Ü\Ä•§Å+~‹WI\ÓÅ«j’\ÄÁ¥´8¸‡tDˆCg¤‹\Ã4Ž\â°Î­\âˆö\âµfq\äu‘x\ã\Õ\Û\âM…v\âM¯·‹c€qŒ®x³\Ö\\ñ\æ¾\Û\â-•\Û\ÅqjSq<tCœ\à$ˆ|\ë\Å	ûô\Ä\Û\ß\ZŠ“ˆwz4‰“K«\Å{!ñÞ–.ñÞŸ\×Å©Q¯\Äj\Åi›÷‰Ó’\ã\ÅkO‹>JgŒgi\â¬\Ë\í\âœÖŸ\â#ë§ˆw_\ç\é>\ç]\\,>’(.­ü\Ý*>e(.{G\\Ø¡Ÿ9ŽŠ\Ïnr—nÄ¥oÖ‰\ËÆ’\âò¢§\â‹CŠ/º}W*WÄ‰/{ˆ/o._\Ù\Ñ#¾R˜+®Ú” ®Š;!¾šm-®·H|ý\Æqq­«…øV\Âñ\í[CÄ·\Ûô\ÅwŽn\ß9»U|wˆ“¸Žú(~°¶Pü™%~¸cŒ¸þ\âhqƒ%\'nðw7\ÄM7|\Î7\n£Å[\ÄM\î:\â\'\Ôñ“\ì`qóþ\â–\Ò[\â\ç73\Å/ö›Š_4:Š_ô¾·\ê\í·\î£Å­\Ö\â6\ËG\â¶-®\â\×Æ‡Å¯\ë\ä\â7 •øM÷ñ;‘½¸½·ø½iµø½óxñ\Ç+ÄŸx‘ø“û)ñ\çkÅŸ¿“\â¯ý£\Å\ßdÁ\âo\Ë‹¿[]w½VŠ{–ˆ{>6‰l©ÿ\Å?:Å¿¦Xˆû&\Ó\âþAK\Äý\Æ\×\Åý»\Å«\Z$À\Ýr	˜.‹\ÇK\à\ï%xóc	±¥XB> !Z7HHi„\ÜûX\"\"~HD\å$¢[\Ó%bm=‰Œ’(§]•0A\n	{¡O¢rš(QŸs—®\á\ä ‰¦÷™d\Ð\"™d\Ð2dÐ†\'¨F‰\ÎÆ\Ýx[‰n\É6‰^¤§D\è ‰Á‰’¡‹]%C?—\Ë[\"1<m.No“Œô•ŒüsIbœ{Eb²ò‹\Ä\äƒX2êŒ£dT\çQ\Éhû\É\èd±d\Ìõ‰ù¶%‹\ë=’±Á’±»\Í$\ãG;I&´‡JlÀ^‰M„\Ä\æñl‰]À3‰}¬—dŠ¡\Äá€½\Äq\Ç\'\ÉT#B2\Õ\ÚL\â4<N\ât÷¬Ä©a–dZ \ÄY\ëªÄ¹\ì»\Ä\Åõ½dF,™ñ\ï’df\ÜnÉ¬k	·I.’¹\çwK\æ`$óúd’\ë½$~C“ýJ‰GU­d\á?\Éb“g’\Å\Ùó$‹KgH¼_6K–\ÈI–\èDI–\Ì<#Y²<X²$\Ô[\â£\Þ+ñ‰Z%Y\ÆÍø\ï!ño«‘LÏ‘ô8IV“¬\\ÿJ¨n•žÿ\'Yg+	z\Z(	zM²fe‚d\Íë½’5?%!\î\ç%a\ÆÖ’°’$I\Ø\Å{’°G%\á²IÄƒ\n\ÉZ\ç,Éº	’h|ƒd“\0I6õ“\Ä\Üx\"‰uml\å\ÞJ¶^m–lû+Iòž&\ÙiGHvú\ÛK’O\èHöx{Hö¬\Ú\"\Ù;û¦do\ê	\É\Þ\×%û\æ¸JöÇ™HR}\ÞHL–¤\ÕÍ¤ÿ}-\ÉP\ÄK2I²¦r’l™½$»·Q’“òPrtœXrt\Ùb\É\ÑôL\É\ÑWI’\\ûe’Ü½’¼Å€$\ïõi\É	}7É‰­í’‚¨S’SóHNeÞœ:üLr\æ\Ô!\ÉÙ™³$\ç>\ëI\Îõ‹%¥n»$¥>*I\é\ÉùU¹’ó¡%e+\Ã$e]†’\n–Tž—\\ú¼_R\éòHrm\Ã\Éõ^’[õo%wxS\É\Ý\ë%uò­’:\Ã5’º]’{›s%÷v~’\Üÿ¾XòÀw¤\äQñ9I\Óõ%’§vÑ’\æºÛ’g¼%\Ï#s%Ï¯·H^¾ y\áòKòb\ÍIÉ‹\Ø\ÉË£¥’—§\â%¯®\r•´Ý³´=ì”¼\Þ\é,y§I\Þï³”|0\è“|„^J>Å¬“|öWK>7œ“|þ |\Ù\ë&ùò3Hòm\ÏHÉ·ôc’\ï\æ›$\ßoŒ–tk›Jz¼T’ž;¦’3K%?‹GI~<(ù\Ým+\éû›*xzI\nÙ­BSl¤0u]ŠøšI	i¼T$K—ŠO$KeC»¤²\á®R\Å\ÊER\Æ/I\Ê^”ò\\ª”;-Õš(\ÕZuKªmûX:\"w¨tD\ï?\éÈ©“¥#\ÝÃ¤F\ÛÂ¥&`¨tôK:J’!5\ë¡tÌ†*\é˜\Ýk¤f‹‚¤f‘{¥\æ¶\ï¥\æ\Õ\ÑR‹©/¤.W¤wJÇŽŒ–ŽýI:6\ÍP:¶»UjÍ’\Ú$Ÿ–Ú´\ØImg®“\Ú6<•\Ú\äH\í\âû¤vß‚¤“F\äK\'…žÚš#V,œ\ÇJ¦ˆ¤S-B¤S[\ÇJfÜ—:e’N\Ô\Òiÿ\éô\r…\Òÿ\îJg­:*u\Óv”ºç¤³ŸŒ”ºGŒ’\Îq\Û)‡TJ88K=ýí¤ž)C¤-FH½¬Ì¥‹OóR\ïd¹Ô»¤O\ê\ã\è)õm,]v8P\ê\'¬’ú\Ü)õ›\Õ&õKû-õ«\Z®½•®0Ä¤þú\Í\ÒU\ë6KƒüZ¤Á\Ü&i°\î9ið\Ð\×\Ò\à¸\"ið{‰4DV#\r\Ñ,\r·JCu—IC#>H\Ã^n•†uœ”†ý®•F\Z}“F:\àÒ¨S¥1û^I7»I·MÉ”\Æñ\ÝÒ„\ï¤;&H“–‘&WJw‰\é.ý\í\Ò]‘\Î\Ò]\"¤ûm\çI÷?É”¦\Ø–¦\\Œ—¦Ö”J\ÓW\èK3‡Íö\é“fÕŒ–fß´‘uù =z\è¥ôøÁ§\Òw\éI]\\zò\×3i\æ*=5í¡´\èl­ôl}µ´¤\ê­ôÜº\Ñ\Òòƒ·¤cii\'½T\ä-­\ÜþTZ“&½–\î!½\Ñ\'½Þ»Kz³÷ŽôÖƒ\Ò\Ûf•\Ò;K}¤u\áqÒº\æû\Ò{p—ôÞ¥p\éýa¤N¨¤õfþ\ÒG+\"¤5Q\ÒÆº\ÕÒ¦	ù\Ò\'sNJŸôß”>½²Qú´ö©ôiý%ió\å‘\Òç–‘\Ò\çofH_zºIÛŽ¸J_[“¾ž%}kH\ßvµKß­Ì—¾’~œ \íØ½M\Úy%Búi»ZúY·Kú¹6Xúua”ô\ëÁ?\Ò\ïT©ô{\ìni\×\è_Ò®\"\éeC¥½i¥Fß•þ\É/ý›*\í!\íûýGÚ\í”öG®•»¯\ÈÀ¢/2\èJ…~<H†ú¼•¡ûe\Ø3s~AK&úI\É\Ä\à™D\\.“Œ\çeÒ€-2¹i«L~P¦øR/£Ï¥Ê˜rL\Æbd¬K¦Œu?.cÿÛ—3d\ÜOö\Éøq™2µvL½÷„L;v°lP\Þt™\Î\Í8\Ù`tlpc½L7ñ³L\ßj¯\ÌÀlŽlh°\Ì0\ÚD6¢ò“\Ì\èV¯\ÌxûM™	rG6\ê¿5£\Ç>‘öú$35\É\Ì>’™=L‘Yï•=\á#[\â,w\ÉZf‰¡²	JG™­ùp™­\ß|™}ùh\Ù\ä|©lJ÷\'™c²H6m°lºI¦\Ìu¿¿l\æ©e²™­d³*@™[ôB\Ù<¨D6y,›—\â$›?>L6¿\'E\æñF\æ9¨X\æ\éýZ¶0\èž\Ì{ñv™wò6™\Ïb‰\Ì÷H˜\Ì÷\Z óÃ¿\Éü¾É–o›+ó÷m‘ù—_–…\Ôî“…<\Åd¡\rÍ²ð¬\í²ðógd\áõdk\Å:²uK²dd‘¶?e3e;É¢É¢Oú\Ê6\Õ.’Å¬\ß/Û²u…,¶0Y\Û\î(\Ûv\Í]g,‹\'\ãe	#»e	Ë¶{x\Ëõ\Þ\ÈwN‘\íø³D–T¾K–ð]–¼\ÇR¶g\îz\Ù\Þa¿d{­\neû}\Ï\Éö\ß)‘¥’¥š.;°½Bvðœ ;X\á\";X7D–\Ñ;L–ñ\'Yv\È=U–\Åò²#9•²cV~²c{]e¹þ²\ã\Û>\Ëò\ç¨e÷\Ãe§\æ\æ\Ê\n§<–öÜ•ž&;cœ(+®\é“\ß\\ ;7\ì„\ìü„\ÙgmÙ…ø0Yù°²ò	–²K—þs£Wv©.PvÅ“”U«þÉ®…\Èjþ\ê\Èn˜•\Õz\Ëdw\î\'\Éê‚ž\È\ê\ÎZ\É\êª\âe÷„\È\î\Û\Ë\îÏ”=lœ {<§]öDy[\Ö,þ)k¶t—=KY\"k!\\e-ò]²\ç¥Ke­\Ü!\ÙK\î•ì¥±›\ìe -{óYö\Ê<B\Ööx¶\ìõSZö&\ÚQÖ¾\ã©\ìCg¡¬Cv]öIY.ûlž%ûòV.û\Ò\Ó.ûv{\ì\Ç\Ü%²\åkd½Ÿrd½}5²?E¦²¿¢û²ºoeÿ¶—\Éþ]2–õ7|“\r\Ê‰Fò¨nŸ-GúF\ÉQ\ï09N¿\ã\Ëp9~¢RN\ìû,\'~-’‹nŒ”‹\ÇE\È\Å\Æ\È%¤¯\\j\Ë\Èe\î\Û\å²öyrqGNXÈ•«\ål\Â69{\\-\çI7¹`\"\×>¯’k\×W\Ê5ú\Éuš¹N\ïxù\à\ç9r\Ý{§\äú\ë¹A­£Ü°\è­|\Ä\Í-ò‘\ä#o}–M©–só\å&¯¿\ÈG\éd\ÈM—·\ÊM·5\ÊMK¶\Ê\Íj\äf?7\É\Í\'Qò±À¹e,·J®•[•g\Ê\'x—[w¹\Ëmž\Ûý,”Où\Èˆr\Ç1˜\Üñ/*w:yL\îôq@>m\ßEù´\ë\å\Ó*ó\å\Ó¡rW\í?ò¢9r÷õk\äs\Ç\äsNF\È\çô\î—\Ï{§–/°\Z*_tY\î±òƒ\Ü\ã[™Ü£\'H\î¹b°Ü³¤H¾(E_¾(s§\ÜË¾@\îu\×Z¾—{¥\äK>‘/\Û5Zx©A|¡B|­|õ]N¾&}¢<\ä\é7y˜\Ö9y˜\Ý#y¸»§<\"\ì–|ýˆy¤n¨|£LG¾Q1J¾q\à´<:I_ \ß4wª|\ë\ätù\Ö?”|\ÛX¾­~›<n\êyy\Â\àvù\ÇHyr§§|×‚ƒò]ÿ¼\ä»7¤\É÷„›\Ê÷4˜\É÷u\ë\ÉSÞ¥\ÊS%\Õòƒ‹¶\ÈÅºË³¬Ë³o“g\ï~(\Ï>÷[žó\ï‘<\×\ÃHž›0C~<€’\ç›ù\ÈO\Â\å¦G\ä\ßM\äE›c\äE/”ò³+K\åg¿Œ”¤É‹\rS\å%­\åò\Î\Ó\äez¬¼\"/G~i¨‹üò¤xye\ëyµ\Ûiyu\Öbùµ±\Æò\Z£&ùÍ†JùÍ·ò[™\nù\íš6ùý§C\äš|\äß–\×]—?úa*onÊ›’C\åM5ògfñòg\ï_\Ê[Yù\Ëe\×\åm\Û\Þ\Ê\ßþ-·W\×\ÈÛ»Xùû;ÁòC3\ä÷Uò\Î-iòOZ¹òOË\äŸ\Þ\ê\È?}ªY>Xþõ4#ÿö4Zþ\Ý\çµüû\0 \ï\ÊÐ—÷z£òÞ§\ä?\ïýÿªø*ÿ{¡O\ÞW\Õ.\ï×.¨=Ae\Ù”J!ø\\\n‘÷PøP\n_D\á›/P\äh=Š|ô‚\"\ß\ÖQ¢÷)ñ¬Å”8`<%\Ñó¦$¿!J¦XJ\Él£)Ùµ­”\ìó9Jn6@\É\Ï\r¥(AQ\ï\Ê)\Å\êHŠŽ\ÜG\ÑQý”ò\îSŠ‘®¥Ó§»‘ \ØC»(.\éÅµ†P¼¨…R\ï\\K©û#(M\ÈbJËš ´š\Ã(±7¥£¹M\éX\ÆRC\ì¾PCŽ\\¤†<¼N\éÎ¸B\é}\ÙI\é3‹)}­`\Ê\0~Fõ£\ÚSC\ÛQ\ÃÀRjX\Ò=j\Ø/k\Ê0{65ü¼5¢b5\âQ 5’\ZG|]CMúM\Í\à(\ãK[(?5e’s–\Zeúž\Z\ÕZK~\æF1\n \Ìò%”ÙµT\Ê|\îy\Êb=H=}“\Zg¸‰\Z·b+5nS?5n\×>\Êj\reuv5\á~e³Ì–²‰¢l\î”\í³\ÔÄ‡Ÿ¨‰õ(;ó¹”]X85©óe\ïö—š2û5eLM	þC9¬YH9\äl£z\ÖSŽ©©©ñÁ”“\åÊ©¬‚r¾•E¹ø–Q.‡’)—\ã\ß)—†§\Ôt£ó\ÔôE\æ\Ôôð\ÔôW_)\×\É<\å\êaC\Íx~‘š¹Ÿ¦f-:H¹	{)7¯&\Êm§\åûžr?6Žro7¡\æ9@\Í_K\Í÷«¢\æ¦DõP¢R\ÊCœKyþ-¤\Ú]¡¼\Ö\çR^Ÿ\")Ÿ÷)_p7å»—£–n»F-+¾Eù\ÉfP~ñw©\åZ?((Š\n 9*\à\Ãnj\åüñT\à\Ðb*p\Ã<j\Õ\Ã\ZjõšrjuR\rj<›\n\Ë;K…§™P\áã©µ\îµŽO­ÿö\Úp¾Œ\Úð£›Š,\ÝKE^ZLm\Ü2œŠvN¥¢£QÑ·¨MŸþP›>o¢6w\ÛR›ûNR[&Ž ¶¸(©-þs¨8¿X*\Þtµ\Ýc9•˜XD\í\à\ë¨ZATÒ¦[T²™#•œ÷\Ú\åð‰\ÚuÊž\Úu\ë&µÛ¥…\Úý=‚\Úû{\"µ¿@DØ¸Œ:pÔ—JŸ™K¥Ï’Pé¯S\r\ÆS—¥Q#â¨ƒY\ÔÁ?MT‘Ee8Î£0¦=L:#¢²¾6P\ÙzaT¶~•ó\\J\ÙoN¹0ˆ:za•k±„:1$:q7˜:ñ;Ÿ:¹Ç*øz‘:ö‰:õc!Ux«˜:\í6‹:s\â+u\æ·@yR%\ÃÚ¨’\ÄeT)µ‚*~:¿\åUvzU®ô¤Ê\èQó?QðFªb\ës\êr­	uy\àUµ=Ÿºj1„º\Æ\Ôu¯NªFg:U³fU»$ŽºeQ·\ÞjQ·¨;Nv\Ô]\Õ^\ê\Þ?\ê\ÞRê£.õ`ö\r\ê!\ÈSõ\è\Ç ªÑ²Šjü`E5þœG5U$R\çSÓ”Ô“\êÉ\Ý\ÔSG\rõLÏ—z–^Hµ¤‰©\ç›H\êùnõBkõ\Âtõ\ÂÕžjój¦\Ú\â/Q¯\ÕÇ¨7ƒÃ¨7—qêŽõ.v	õ\Þò.õ¾¢œ\ê8\ÔJu\"AÔ§A~\Ô\çN?\êKdõ5&”úú®˜ú†É©oK©\ïùo¨.³OTW\àfª«§‚\ê\ÚMõo¡~NùAýr- ~Ï·¢þ\àº\Ô\ß\è§\Ô\ß_\ÆTŸr\Õ7*‹\ê»ð…\êÿºNôR€­\ÐÎ•\n¨h°–®RÀ\ß*YK\Ø(^:[A\ä\ÝRÈ‚\nY\ï?…Ü¨MAÝ²S(\ê\Ö+\èµwJ\×9\ne¾BYÙ `4M\n¦|¼‚ýòGÁ)ó<uCÁG\Ø+ø‹£ª²A\nuû9…0\"\\¡=¦Dº(\í\\§\Ð14T\èxV\è¾§\Ðcúz—\ä\nýA†-\Å\n\Ã\ÎoŠ\áó—*F\Ì^£±«B1âŸ›b\ä\ï\á\n£ÁM\n\ãÒ\n\ãkk&T¾\Âdp\Â$xŒ\Âd‡Ÿ\Â\Ô)J1†V+\Æ,WŒ	ñPŒy>MaFlW˜yW˜­y¡0»ž­°\Ð8(,VD+Æ¾?­7\ÆX1\Î\áœb\Üò¿\nË¹\Î\n\Ë\ÐŠñ‘Š	7:^+lM\Ô\n\Ûc/vZ“ uŠI\ç.*&}^¬°7þ¤˜r\èº\Â\á9¯˜\Z®R8ñ{Ó²\ç(¦\ÝNR8«P…\ëŠq\n\×\è8ÅŒ\îl\ÅL\Û^\Å\Ì\ÄÅ¬i!\n7SF\áöež\Âm F1[ÿ»b¶y®bvHž\Âý\çD\Å<»Šy\åŠù\ì\"…\Z®ð¸,(<ù …§©X¸:R±p\Ë0Å¢1c‹Ž†(¼$s‹“[Þ‹\êK–\ÞV,é¹¦ð­Ÿ¤X¦{_±\Ìq—bYB¨\Â\Ïd˜by\ã|\Å\nƒy\nP¢ð7\ãþ9cþµ\ËŽCuîŠ€nŠ•sŸ(\\Q¬’/T¬r~¤\Ú÷MlúB|=W±¦m¹\"\ä½T\Ú)\Âl\á·7+Â»+\Âûþ(\"þë…ˆq–Šˆ}†Šµ*Ö®;«Xû¯@±\á÷*E\Ôñ¥ŠM¼›_Š\Ø+ÉŠ\Ø\ê<E\Â\æmŠ\í»‰\Ë+‰›6)+v0;–MP\ì¬«Hö?¯Ø•ˆ)v\'J{GS\ìuýª\Ø[ˆ*RWe+R7MV¤n\ÓQ¤7¸(\Ò;}\é\ß\Æ(2|)2\Ò6(2­œ™Ž\Ç™±2Å¡Ÿ&Š\Ãqƒ‡\Å*?YfAŠ¬Iw\Ù?\ãGvKG\n\â\ÇR\ÃÇ…3Š<\Ã%Š|›4E~ô\Å\É\ÅÉ½\'»AEv¤\â\ÔbNQ8b§\âô˜ŠÓ¿\íE[ÕŠb·¢Ø‡Te\çW¤]ŠrýZEî¨¨¸’¤¸´Q\\Zí¬¸t¶Uqù}Œ\âJ\×IEe\èE2_Qu´\â\ê„ÿVý\èQTÃ‰Šjñ;Eu‰—¢ºû\âz\É\n\Å\ÍÑžŠ›\ã‡(n¿¦¸…\\T\ÜjwU\ÜNx¬¸ýý¥\â\î¼*\Å\Ý]Ku\ÆmŠ:oµ\â\Þ\Ìx\Åý ©¢\Þp³¢qˆ•¢q\äEc¥h\Ò¬hj-R<¶z®x‚*ž°õŠ§\ç*\Íæ‘Šf§pEs\ï~Å³¼EKù\Ås—\ãŠ\Ö\ÛmŸ6(^/tR¼®\Õ(Þ«x´Rñþ\é~EGL»¢sJ»\âS £\âS_¡\â\ËÅ—»]	ñŠ\î\êE\ï~\ÅO{•\â—\ëÅ¯…ºŠ_‘y_\Å_a¾\â\ï\"\Õ\î*ú\Ì!\Z˜VFÿ\Zi\Ð\è\rÍ¦\áCu4rI ‘ƒ4º¥—\Æ\ZŸ\ÑX\Ç\\\Z_/£ñ¨J\Z¿PA“gúh‘^-ŽV\Ñ\â\Ú=´Ä„ %û/Ó’\ÛiYIMOghú\ã,šÑ²¥™\ã›i\æo\Í:\04[“Gsw_\Ó*µ/­òSÑª·ÿhuH6­\Îq§…ui!>®¥…Z†\Ö\Ø\ÕÑšË¾´–I5­}ý<=\èu1­SC\Ñ:¿\çÐƒmj\éÁa¥ô[\Öu«¤õ†œ£\rZ\ëè¡ƒu\è¡A0=4¤G>t£¶¾£ö©i£œFz”m\Z]H›\\¤\Ç8\Ç\Òcº÷\ÐfÆ‹h³P/\Ú…h‹¢\0\Ú\Òø0m¹0•¶Ò¾H[\íÒ§­š:\é	E=\áÁT\Ú\Æum«½’¶µ5¢m\Ã2i\Û_½´ý(m_M\ÐS*G\ÐS±ôTj=uýz\êÙ“ô\Ô\Öy´S‘=Í¹˜ž\Ø@»Œ¼D»LF»ì© ]\îj\Ñ.\ßk\é\éo\ÏÓ®\ÜX\ÚõP\íú/Šža\ÞJ\ÏÜ§EÏ¶8H\Ï~\Ù@»\ëHh÷¡\ïh÷—h÷\×=\'@ž³n=\ç\äIzÁZ˜öð™E/¾½Œö®O/™ô—ö	Ê§}n¦—Í¼Aû¹O¢—\×<¢—?¦\éL\Ì~\Ó+\n\ã\é\0·2:0HC¯ú\"¥ƒþyÑ«\ã«\è5«Eôš´Z:£\é\Ñw\éPG5ök-\îj@‡‡E\Ñ\á\çM\èðŠ<zm\rA¯¨¡\×]MoP¹\Ðúºé¨­\rô\Æý\Û\é\è c:ú\Î}z\Ó{5£?„ŽY\èG\Ç\ì¸Ho±H¢c­7Ó±³NÑ±Q–ô\ÖÓ†t\Ü\Úñt\Ü/3:nÀšŽ¯]O\'\Ø-¤®‚ôöS:qR:8CC\'ù/–}§w,¯£“ò¿\Ð;g\×\Ð;Í¡w¦ˆ\é\ä\ÐtrV!½K\ØG\ïò:L\ï\nÖ¢w8N\ï–T\Ò)3\Ç\Ð)W³\è\Ô–t\ê\Ê\n:uGús*}\àŸ#~MN\Ô\ZDgN¡3\ï\åÒ‡¼s\èC§\é\Ã^£\é\ÃùatV¬\ÍÝ¢³	úH\Æ?ú\èi˜>\æhIk_I\ç&T\Ñy\Øq:\ï\Êú\äütÁbwº \è)]p.œ>\Õ\ÃÓ§“nÓ§k¦\ÑÅ®W\éÈ‡.‘¢KšF\Ó\çL;\és=ô9\ÏAt©];}>m8}\á\Û*ºüs]\á\r\Ðq\éô¥múŠg1}\å\Ìújœš®E\ÑÕ©»\èk=³\èZƒº\Öy}K\åM\ß2×¢oOˆ¤o_½L\ßE7\ÐuQ=ô½­\Öô½‹–ô½>¾O¤\Ðõ\Òº~b,]x†®?5”nØ¾Œ~$Ê¥™\ÕÑ\Z·Ò^“\èÇŸ\ÑO\ç=¡›7}¥›\ïÎ [†™\Ó-Þ™t\Ë\ï|º\å\ï|úE\É\0\ÝzN—n½iD·>w¤_n~A¿lJ¿2´£\Û`Oº\r\ÙC¿;”~\í\ÏÒ¯ƒý\é÷‰Iô‡ƒ“\è\Âsú\ãóññªýñY4\ÝžAwl˜Kw´\ÖÐ¾ÐËÓ…\Ç\èÎ‡&ô\'¿úSpýuu2ý5TB½GÿdLw-ú@w-í »\"f\Ñ]G\Æ\ÐÝ¿\Ý\é\Þ\â\Ýô\Ï=\Ï\è_¾\Îô\ï\åc\è>‹|úŸe%ý/Øî‡Ž\Ó»>*¡k%:dƒ[8B‰\ítS\â`¢R”sE)ÊµPŠ?nRJ‰yJ\Ù\ì{Jù(©Rþh’\Þ*©™”\ÔÎ‰J´BI\ÛLQÒ›£”LA’wO\Éõ„*ù“S”*Á\\©\Z“ªT\Í^©TEŽS\nf Rx²G)¼\ÖRj)(µGnQj÷?U~²Z9\ä\Ê$¥®\ç	¥ž\×]¥Þ•óJ}\Ó\Ê\Âe\åH\ÍK\å\È9uÊ‘¯‹•F/Ž)­Jc;{¥\É\à\å(óz\å\èã³”c´w+\Í\Ì+Í¼•\æ&?”cy¥rÜ”ñ\Êq\á€\Ò\Ê7Z9þ{ŠÒšÁ”\Ö6û•\ÖÙ‹•6±o”¶ý5Ê‰ª•Ï…)\'<W\Ú0J»ÿöµ{ì¤œ|¤A9sSN}R\éð4S\é$+œW:•V:ý;£œvl±rZ™rº5®œ>uÒµ¨L\éz~Ÿ\Òõ\ÃO\åÃ™\Ê\Ï\ß(g½2Wº\ËWº7­Q\Î	¤œ³3A9·‘r\ÞsZ\él¡\\¼gƒrñI\åâ²³Jo¯J½\\¥Ï¶©J_Ÿ7J__c¥\ïnC¥\ï‘X\å\Ò\å\Êe³”Ë¾¶+ýú\æ(—\Ã×•Ë‹F+—\ß\ÈT®µD¹rpµ2HI*ƒÛ•«\'(Wo^¯\\}\Ï_¹FºF’\ä¬ù\î£U_Q†VÊµ	2\å:Q®sØ­\\7\ÓI¹\á\í^e”\ì‡rSÀw\å¦U•›ú\ß(c\Ä)Ê˜\ë­\Ê-š<\å–ß¯”±fW”[§}Qn{F*\ã>)ã¥\Êø‘w•ñsŸ+\ã#b•	\Òm\Ê[@¹;§Ü¾‚WnOß¢L|3I™\Ä\Ç(“\'­P\îj\îR\î¦?+wJU\îKKU¦²Ê”œ…\Ê4\ÑseZùeúece—­Ì˜h©\Ì\Øl¨<4\ÆQyh}ŠòP\ëB\å\á C\Ê\ÃQz\Ê;e\Î\â\Ã\Ê#V±Ê£’1Ê£ö6Ê£eW”Ç°Je\î\"oe\î[©2/(S™ŸZ£Ì¿„(OŒÙ¤,Pö)œ•§&´+O\ÍÇ•§Ž7+÷¬Wžù1HyV¬<«=Dy\Öh¡ò¬\Ã/eñ\ÇHe‰z®²df«²Ä§ZYt]Y\Ì*\Ï½§<wy©²´\ÛLy=¥,#Ÿ*Ë¬o(/^Æ”o~SVX\è*+\Æ>Q^\ÒÛ«¼üc•òJô}\å•ø_\Ê+/.*¯t\ÝRVY¶+«\â\ì•UÙ¯”U]”Õ§ieu\Ûåµ‚\ÊO£”µ\î¤ò–ƒ§òÖ®\å­7”·\Çq\Ê\ÛÃ”·³T\Ê\Û\'Ì”w$m\Ê;¹¤òÎ›­Ê»Ë—*\ëlb”÷Vÿ\çi™ò¡ž²ñ\ërec\ßi\åS@\Ù\ÜôDùì˜‹²el›òE\ÞM\å\Ëƒ”¯Ž+”¯\Î)_½ý®l3¦|=\'Lùº\'Wùö\ä!å»ªBe{h­òýš^e‡ºR\Ù1šSv\Òû•\Å\ÕÊ¯•Ç”\ßþ\ìW~?>O\Ù5E¥\ìú®PvC®\Ê\î\Û\ÑÊž¨²wò€²÷e‚òg\Ô`\å/\ß\Ë\Ê\ß3(ß—*ÿ\ìUþK\Êg\0¬‹f\Ïa•¯¤MÁ`Û¯3Ò¥µŒ4\'‘¹\Ã\È7\Ù2qƒQ0ÉŒ\âX:£4¹ø\ßð¥0J—iŒò\ã†\Ý3ša;\ãÞ©ŒQ\ÑùŒj÷HFØ–\Éh\Â\ãÍƒßŒ–\ÇdF[]\Çhû{3\ÚÏ¾2ƒœ3:£›%/™Ág62Cœ\'1ºFžŒ®\Ù4Fo\Ç;F¯2š\Ñ{0ú	ÚŒ~\Õ)\ÆÀ¥ž–º’1t\\\ÅþþËŒ¸òñúc´ô<c\\ò˜1™r1I¸ÉŒZ\ßÂŒ^óŽ\ZÁ˜\Æ|g\Æ\Ä\îd\Æ\Ü\ËX$\ìa,Ç¼d¬.`\Æ{É˜ñ\Ë{™ñy•Œu@c³/œ±“Ÿd&ù\Ú3“B´˜I\ì˜I™·û0\Æþp,3¹5š™i1i\æ\Ì\Ô\ËÙŒÓª\0Æ©\ê\ã\Ôô“qzü™e¦•}eœÓ­\ç2G\Æ\å…;\ãš;‚™¹n3\Ëø:3;ö3\ïx!³`ötfÁ²fA\æb\Æcó(\Æ3j\ãùK\Âx[\Ìø\è1>W2_c	\ãko\Í,Ýª\Ï,m\r`–þý\Ã,[\Ù\Æ,»÷Y\Ö\ì\Ê¤²L@])³r{³J4ŒY\Õ\î\Ã)Lð\\&8¶‡	\Î?\Ë¿úÎ„L™Ï„\Õ3!±\ÞLHú.&\ä.\ÒbÉ„ù1aVQLX\ë&¬-‡	7»\ÏD|_Ï¬{\ØÄ¬kñc\Ö}[Ã¬7¸\ÃDd\"C\"™¨Õ‡™¨ŸW™C²™™UÛ™­ºLô‘*fc\Ï\ÄD11g™\Ø½\ÌÖ…9\Ì\Ö÷õÌ¶!µLœ£w0˜IHº\É$d•3	\çõ™\í\ïL˜\Ä\áL\â+]&±»IŠ‡™\Í/™]I\ë˜\Ýc†3{”Ë˜=\ïv3û\Ù3)h5“²\ã“\ÖðI®2é¡£™ƒN2A9LfóX&Kû“5\rg²noc²#F09ˆ“cR\ÉY=‚9rm	s\Ô\æ\rsôo“Kœer\ãÛ˜Ü›r\æ¸\î&\ïð\'&¯R`ò^Ocò=_0\'¶OdN2µ\ÌÉ´³\ÌÉœLA\Ês\æ”\Þ\æô¿¡L‘\Ñ¦\ÈJ\Âm\å˜3¦8sf‰#S¼O`Š/¦0Å¿2\Å¦3\çB&3\ç_ý`.\Ðû™/ü™ò}QLy\çb\æ\â¹L¶™©ø&b.Mˆg.­®a®¤\Ía®\\ž\ÎT.\Ì`*\Ë\åL\Õþ­\Ì\Õ\å4su‡/S½ú\0Sýzsµc®­<\Ë\\»?œ¹ž\Ð\Ï\\¿˜\Ï\ÔL:Á\Ô\ìz\Ì\Ü ú˜L\"sƒ\ÝÁ\Ü\ëcnº\ïdnVG37_52·\"§2·¿\ìe\î\Ì=\Ã\Ôe»0÷†,e\î}\Å\ÜOû\Ë\Üÿy˜y\ÖÁ<|-g\êõ/0õ‘Lý»³L\Ã’iü9iÂ’™¦_û˜\ÇC\â™\'\Õ3™§\'Š™æ£Ì³\ÛO™g¿¾0-†\Ìóµ•Ì‹‹+™—K—3/Sº˜6¡…y}?‹y«<Â¼ýrŒy§qa\Ú\ÛÍ˜÷sL˜÷\r¹Ì‡¥·™‡2™\çM™\\˜Ž½û™Žg™ŽwFL\ç|óy\Ç\0ó%A—ùrÈù’K1_Sq\æk)\Î|c1ß·c¾¿\ÈgºÌ®0]•¦û\Êôì¥™ž\Ó\Óócóý\ç.ó«ð<ó»ñ ó7©šù{ß™ù\Ö\ÆükF™\ÅCf ¢›hñbÁ»2ò9\ÉB90]>\ËB¿\ÃX¸\ê(ÿ~\Ç\"¿–°¨\ãh‹9ÁbOo³¸{<K ½,\ë³\Ä2/V4\î+9 g¥~\ÇXù/9K\éG²Š†×¬\â\ï2–6\îfi“,½~«´R³\Ê\r\ËX\å‘4–9|…e¾¯b¹mY•I#«š=ŽU\rØ°j£PVýq+HpVK\Åj\Ù÷°ƒŒX¡8«“|’\Õ\é4a{¦²ƒ?g±C\Üe\ìúZVWs•\Õ5ñcusQV·\à«7ÌœÕ·S±ú®z¬A\ÌXÖ ¸š5\èx\Å\ZZ\ße‡º\ìp¥;œ‹c‡_ÅŽ O±#,\Ý\Ùìˆ»\æ\ìH³«\ìÈ´\Å\ì¨a\ÙQ7²c\Ú\'³fº\å¬YGk>\"€5-°\æ6Ys‡}¬eÍŽ5yÁŽ5£\Øq\Ùq//°V#C\ØñÓ¤¬µ\Å\Ö\Úk=k}y%k£\çÀÚ˜f±6yZ\ìD\ÏÖŽ\ÃNZ±“¶\Þe\'5d\'õ}d\í\éu\ì”\á(\ëà½Ÿu‚Ö³No&³\Î\Õ_X\çsX—\Ð\ìôó~\ìD`\ÝN=a\Ý\Î4³³\Ý`ç¬Ÿ\Å\Îi\Æ\Ùy+Æ²\nBX\ì¢c·X/óÅ¬\×Rž]\ì\à\Å.ö\Ê`½§\ç³\Þ\'×³K†\á\ì’ÿj¿\ä›ÀújOe}GT²¾sK\Øel1»\ì»7\ëwCÍ®´øÎ®œg\Ä%¦²ÁÓ­\Ù\Õ\Û\r\Ø\Õ\çz\Ù\Õõ%\ì\Z°–]“¤bC´k\Ø\r\ÛÆ†¾Î†i=a\ÃFú³a£«\Øp“R6B±kÛ¿°\ë¾G±‘²f6²B\Ãn´\Ïa£mý\ÙhO6:d;“š\Ånn©c·xx±[Û¾²q\È6\îÀs6.o-› µˆM\ÒMg“.`“šlÙ\Ø-vgúR6yR»\Ë{2»\ë\ÂvÏšC\ìþ\íi\ìþ\êk\ìþ\ÚB6uÁ^6u\×&ö@\ë$6m\Ãy6\ír*›qQ\Ãfü\ÚÁfB\ß\Ù\ìöCl\Î\Ì\ílN†9›\Ó\ë\Ëqƒ=:a9{t\îiöhJ>{ôM{li {l\Å;6\×d){<þ›7^ÄžÐ°cF²^\Þla\Õhö´Y\Z{:`\Ï\0/Ù³«²g¿j³ÅŽ\Ø\â?Ù’‚ZöÜ–\Å\ì¹b[öÜ£\Ó\ìù•3\ÙH[žÀ–ßd/gT²•ðr¶r\Èy¶ªY`¯j¯d¯]\èd¯ýöa¯O¹\ÃÞG³7\ÜöFH={ó\ìjö\æ€½£\ÎÖ‰—±uVW\ÙûT{k{ÿT%ûÀ\à2ûÀÜ…}°öû0<Œ­\ïia¹š±¢|\ØGñ\ÙGÍŸ\ÙÇšŸ\ì\ã·Á\ì“A9lsJ\Û\\¹‚}6¯}¶Ðƒm¹SÌ¶<7dŸLbŸ/¸Ç¾\Ü7†}yr<ûJ5}µË‚}mnÃ¾\Þõ}óÉˆ}k\ïÎ¾›2mosf\ÛŠ\Ù÷·~²=0¶\Ãr/\Ûy\á+û	˜\Ï~ª˜\Ì~Þ»€ýRZ\Ã~\ÕhØ¯\î9\ì\×$ö;|ˆý\îü‚ý>a»ºÇ²\Ý\åyl¥6\Û\ãQ\Îþ˜š\ÉþÌŸ\Æþš]Àþ¶\Z\Ìþ‰`ÿ\Ú{²}6°k\âþ“\Îþ}ôý\ÛdÁö\é²}\Ñqlÿüj¶¿\à,\Û_\Û\Í(-Ø;û9À\ëlÍ¹$­\ëæ ¦\\X\Ä!\Æw9d<À¡{\í8\ì\ìsŽ2‚#¦šp\ä\Í/œxµ)\')7\ã¤ê©œôd\Z\'\Ó\äq2\çŽ–0œrP§üj\Ï)ûpŒ\Ë3Ž\É;\Ï1Mg9VgÇ¾±\â8óŽ÷\Ý\Êñq|]§Rpªº5œ\êa6§n\Å	\Ç9¡e\Z§Y£\à4—pN{g7(½ˆt\ï0§c\×\Ì\r\î\Ê\átc\ê9½3œþ”—œAóT\Î\àK7ôðnØ‘\ÜðP?nx£7b˜=7\Âd,7\Ò$‰y©Y«ÍlXÁMåŒ»—q&\Ñ¹QÁß¸Qm‰\Ü\è]nôƒnô£·\Ü\è×³8S°›3\r.\ä\Æ4¯\å\Ì/\á\Æ¨¸qm½œ\å°Cœ¥ùB\Î\ÒÑˆ³\Ü\ÂYý9ÇO)\äÆ§÷qZ-8\ë¡œM\Ä!\Î\æ`$gû\ä7±\å.g·¥„›ôtgoQ\ÊM\Ù\ÂMöl\ã&_­\åžâ¦žà¦–ösS+h\Î\É%‹s\ÚR\ÇMSdr\ÓÁœó,_\Îùñ\Î\Åò87˜\Ì\Íx\É\Íxtœ›õ\ç7\×`	7w\ÜDn\î9[n\Þn^ò1n¾L\à,º\Ã-¨Vq¡ÉœG\ç.\ÎS&\å<\á&*¹…ÿVs‹fq\ÞcnrK<\â9Ÿ£Íœ\Ï[Šóu9\ß\Ý0\çûÐ›[\Z,p\Ën\Ùr~z\ÜòC¸\å?,8.€óŸ8‰P\'r+>q«,¹À}¹À\Ï2n•ù&.XtŽ‘\àB&\Çq¡›‹¹Ð´R.´±[\ç-\ãÖ£\ç¹õ¹?¸\È	O¸¨hn“wc\áÁ\ÅL\Ô\ãb~­\à¶üš\ÈÅ¶¶q[·¿\à¶þ«\ã\â¢Ã¸ø¿û¸r,—\ï\Ï%\Þ]\Æ%U\ã’u\Æq»T¸=N™Üž;K¸½\Órû’\çsûþ\Ý\ãö\'\æö_\ßÊ¥\è{q)¹¥—¸4>…K«Ë¥\Ó7¹ô\Ø\Å\ÜÁ§w\ÈN\Ée‰C¸\ì?<—37Œ;\á\Ì\í(\çŽ\é+¹c=\Üñª[\\õ…Ë»\Ó\É\å\Ï^\Ë\å\Ï\å¸ü]\ç¹û¶p\'\Îm\àNÃ¼ZÁ\ì¶\ã\nº¸\Â>[\îôiW\ÔaÏvsgŽ¿\áÎŽ ¹\âY¹\â¨\Å\\‰[WR±ž;\ç Ã\ë>Ê•‚‡¹R\è5W\ê9Ž+\Ýù€+½\ëÌ•\r+\áÊ¦[re¯s\å~·¹‹ó~pHWA\çs—fusWor•[ª¹Ê¯k¸ª\Ä\Ü\ÕÁ¹«\ÇÚ¸ë“¹š²Ü‡4W;6š»Y{„»“\í\Â\ÝUqw\ÍNquh&wO\Í\Ý3b¹{“¯r÷l\à´\n\ÜÃ‘½\Ü\Ã9g¸‡QW_ð”kx´‘{tº•k\\þžkxÁ=+_\É=»\ZÃµ,\àž3b\î\Åù2®µg?÷\Ò\ä\Z÷2\á6\×vÚ˜k»YÌµ¿\å>À\'¸ci\î\ãl\×1]‡\ë´\í\å:\Ýp®\ÓÝŸû¹Šû´u5÷™ü\Å}\Étç¾–\Î\ã¾\'vp]–“¹®C\×Õ¹—\ëÖª\ãº+¹žg¿¸\Þ7<÷ó€ˆû™‰p&¹q÷›r\ß8s}ó\çp}‰¯¸Ú„\Ø°¯\ãó!<\èZ\ÏCR–‡.L\å¡Gz<\ÔQ\Ä\Ãw	5\äQ‰	öoç±§n<©ó˜\'G\Ý\æIû\"^4¤‰m²\àE{ôx\ÑÃ¿¼„\Ê\æ%\ëNñR\ï^šS\ÌK”óTFO•ò\nx4¯ˆL\äûûxEIO\ïl\à•sy\î\Ãmž·\í\ç\Õñ›yõ\ág¼ðl=¯µk¯U\'\â™\Ï\Ê_\Å\ë\Öó:søÁ©?ùÁ7óù!G¶ò\ÃNšó†S~ó†§µx\Ã2~ø\Ú_ü—L~Äž ~\ä…{¼ñr„7I+\âM:\ãøQFóùÑ±¶¼\é\á\Þ4\çoZ“Î›>\ØÄ™¸„ŸÀ©®\áÍ”¶¼ùS\Þü\Ûp\Þbzo\ák\Ì[\ìi\à-uŸð–W\ÎñV\ê8\Þjl\"oõ\á	?þf??¾-ŸPn\Ï[·o\ämjLyÛ ¼\íšw¼\í)Ÿ=›Ÿ¸%Ÿ·›ó†·Ïž\ÅO\ÏO™Y\ÂO)º\Ë;\ä\×ðŽ§\Òø©3ªù©½søiŽ)¼ó–H\Þe\ì-\Þeœ\ïñŠŸ\î\ÖÃ»š—ð3D‹ùy¥üŒ§Cù™c\Öñ³ˆj~\Ö~V/Â»¹Ž\à\Ý2\êù\Ùó\î»øy-nü|¯\Íüü\ÚKü‚\ï\×ø…÷£ø…\Ïñ^[Cù\Å\'Gó‹+\'ó\ÞNü’\éžü’wJ\Þ\Ï÷ \ï?Ê„÷Ÿ¦\Í”\à~[ð\Ö#øU—\Ëø`¹¿:`¿\æk8\"_Ï‡‡ð!ƒøo/ùPlz\év½‚l\á\Ã\ÏL\å#bõùˆg~üZ\ì9¿î‡„_ÿ/©üÁG\ê¬\ç##ÿñQ_\nù\íþ‚\ßT^\Íoju\à7uM\æ7Gfó[v\ä·4ùð[\æò\Û~\á·\Õü\ã\ã¨,>nøA>\Î<ˆK\ä\ã\Ö\æ\ã\ãƒøøò\Í|\ä\Ìo§+ù\í\ã\ÓùD…+Ÿøþ6Ÿ\Ê\ïT%ó»B\ÓùÝ¦3ù=¶ü^ò ¿O\åS\Óÿð©-ù´‘\î|ZAŸVý?\äU\ÉgùóYe\Çù¬Ÿ\Ñ|¶\Ã>\Û\í4Ÿ³v	ŸSp•Ï©ð\çiSü1\×wü±U:ü±2>—µ\âó.\'òù·«ùü\'wøü¿øz–ü‰\Ûýü‰\ïù‚*¾`›_pm_ð8œ/h\É\åOm\ãO½œÂŸ\ê_\Â\ÖGó§\Ó.ñ§K~ðEu•|QgI\ã\Ï5ü\Ùü%ü\Ù\Îÿ\â¯	üÙ»|qý;¾$2“/)ÃŸ{_\Ê_ˆj\ä/4M\ä\ËL¦ñeG\0¾¬!›¯ˆ\Û\Ï_Š‘ðWv\ß\á¯\ìµ\â¯dŒ\à+\ÙN¾zjmþþZGÝ…\ç¯gò7¢bù[-eüm\é`þvsgxg\Âß­\å\ï\'Uò÷»óV\Î\æ.;\Ï?,\Ï×¯;\Î\×»\Î7\Ì\Ø\Â7\Ü~À7­œ\Ï?\Ö\Æø\'Ž\rüSù`þ©*“j9“o¶Há›†ó\Ï\\¿ó-³»ø\çUüóù=üû/ü‹\é\ßø\Ö9|k\ï:þ%ñ/•#ø—»3øW©\ãø6~\"\ßfË¿¦\Ïñ¯UðoRños\Ïò\ï!}þ}û;þcÿx¾=\ÈwV\Ûðmü\'^\Í–\Çð_þ<å¿¶\ËùoŒùoÿ|ø.ˆ\ïöš\ÇwG\Ëø\ÃøG_ñ½·_ò¿&zó¿<_ò¿Uyüo\ã\Ñü_Ã¿ü\ß¾\ïÁMþ\ß\Ýþ\ß\'¾\É÷kUðý\Çòý\Åóø\Õy~\àˆF\èLV*p‘½\n\Ü0DnvR»\ÝUû_\ì\ä§B\ïWa¿Î©ðÁWUø\á»*¼\ÜQEh\ÌT\Ä{\\%\Þ÷\\%\É®’\ä;«\äøo•|”½Š\n¡TŠ–*\Ú<LE{9©”£\ä*¦dŠ\åzUì§—*\Î\çºJ5¼P%0E*\áh‚J“)RiN<Si¹OUi\'ViW—©´\ïþR\éˆ©t&ýlP\rÆ½TƒµN¨†L¿ \ÒuŸ«\ÒK5S\é½ø¢Ò|¯Ò¿`¢2»¢\Zñ\Ë_e4|°\Ê\Øb³\ÊdE™jT\ÊÕ¨\ÌtÕ¨\Ö\Õh¹T5Ú‹VŽ\ÒS™^\ËWÑŽP™KRT\æmT\æÁ·T\æ‰Ýª±K.©\ÆV$«\Æ%IU–\È•eS \Êò÷|\Õø\Õø¶•µ\Í~\ÕDD¬²§p•ý¥j²\ßN¥©*‡ [•\Ã\Ñ4•£­½Ê±¶Q\åø}‹jª§\Ê\éºZ\åô\à™\Ê\é\Ï\Õ4ô°\Êy\ì9•óøC*\ç”•ó‘Y*C½ÿþö—©¦Ç…ª¦7¾WM\èV\ÍX8_5søt\Õ\ÌQ†ªÙµ·T\î\Ìj•{\îL•{\ÉB•{EžjŽqþ\êTs\Ê|UsZUs~¹ªæ¦¾Q\Í\\®š\çw^5®½jÁ•÷*;*\Ï#ŸU\ç¾R-\\ôQµ°\æ´jQ\æ?•—\ác\Õ\â\r\çU‹ÓŽ©Ÿ½©Zü\ÞC\å}!Dµd\Þr•Ï*_i¥Ê·\ÃFµ,bj\ÙV=•\ßÚµª\å#\ÒTþT•*€Tl<§Zy\ï®*ð”ƒ*°8^µª¹Y4d@¼ŠS­>w^µF\ë»*d\Ó2UHB¦*TK®\nÛ¤\n¨\Â\nT\áÁUk;W©Ö«\ãU\Æ\'¨¢¼Ç«6\rØ«b¾óª-Íœ*¶\àªj\ë/\ÕÖª<UÂ©oªÄŠfÕŽ˜4Õ®¿ª\Ý\Ì8Õ¾Ú¥ªýMcT©²ÝªKf«\Ò\Ì¨\Ò\"«ÒµóU\é«#T\Ã{TOª,ÿûªl\ê±*;\ÈW•³ó½\ê\è\åÑªcU^ª\\\ÅUn*­\Ê}xTu<¶Fu\ËVt_¤*Xf§*(¹¦:õ_Ÿºõ«\n\ç\ìPVu©\Î\ÌUm°T›ú«Š\ë\ç©JNf«J*¯ª\ÎuS•\å\0ªò’›ªò&µª¼{Ž\êbƒ›ª\Â`ªªb\ë0U\Å\ßv\Õ%+Pu)©JuY·[u\Ù4Cue\ÌÕ•=ªªê‰ª«>aª«‡\ÒT\Õþ_T\ÕªkCîª®M\\£ºž>Zu\ã\ÖYU­æ¦ª\Öo›\ê\æó\Õ\íEª{Ï‡©?Q=\Èúªª\ß§ªÏº«jX’©jð\ÇTMFIª¦ìŸªÇ‹tTOE{TÍ‰­ª–—=ª–®ª\ÖK“T­\î«^†šª^f§©^ùfª^\Å<Q½\ÚûŸO\rª6\×ª¶½\ÏToÕ™ª·ó—¨\Þ-|¥zÿ\ÑUõÁ\é†\ê\ÃÁ`U‡¾½ª\Ã\Ý[\Õ9“Tu\îfUŸL©>\ïY ú\\ò[õ¹\á”\ê\ë¿qªo\r#Tßž\ÏTu§šªº[8UO\ëLÕù‘ª‰±ª?†OUqÕŸ\ËTSõÅ«\æ~W3F©\Ï_jÀû¼\Z8`§ŸªÁ\ïfj\Èñ½\Z\ÊITCÇŽ«W#ƒ§¨qG5qA©&^T©E&jq¶F-s|«–ùŒS\Ëñ÷j¹ü¯šzW¢V\Ì\'ÕŠò›j\ÅG•šöLU+õª™þ}j–ª9\'µj¤ƒZpØ«f5©…?µv\n§d»D=¨N_=\èqzð\æ,µ~\ãjµAðBµ\áðõð%u\ê\áA:\êbCõˆ\á…\êE\ï\Õ#®\îR4\ÏU|rFmqLmtF¤6–NU\è«M\ä\ß\Õ&i\rj“WÕ£?ªMÓ–ªÇ˜P›7ŒS[\èS…?¨\Ç\éy«\Ç\îV{ûHm9a°z¼û<õ„)>jk&Em=[_m³ Qmsûª\ÚöP™z¢÷õÄ£\ç\Ôv£¿þ§[m¥¶\ËðPO\ÚõQ=ù@zJBˆzJ»§\ÚA¾K=Õ˜UOµR=õø\nµ\Ó\Äyj§mM\êic\Ú\Õ\ÎoÞ«]\Â\ã\Õ3G¾S\Ï\Üè¢ž™+U\Ï>4\\\í>ýŠ\Ú}Iz©\ç¤\ÏT\ÏQ¨ž;w±zîº³ê¹¶\ê¹3\Õóž\Ó\ê¯6¨=_4©ú.T/²÷V/\Ú+R/ºõ]\íµ\ÉT\í•Yª^\ìÚ§^|B­öv>«öÞ´E½$\É^\íó$C\í\ËTª—RW\ÔKwÚ©ý2¥jÿ“Ú¿\ã´:`x–z¥jª:P.V¯\Ê\ìS\ëZ«ƒ9ªW7„¨W¿\Ôk×«CÂ­\Õ!y.\êP­ÿ\è\ÜV‡\ç\Õk\'ŸQ¯‹4T¯»Jª\×G|Uopx ŽZ’¬Ž\ê\ÐVo\\j¦\Þ4ó¬zÓ¼¡\êMù\Zu\ì\áBul‡:ö\Ç0õVƒõÖƒÿ\Ôq­\ê¸\'[\Õñ\ÔIuü¼\ê„\å\Ù\ê\í\Z™zûV^½\ã\ÑIu’öõÎ…Uê—c\Ô\ÉCN©“\ßQ\ïþ\ï™÷8¨÷xLV\ï-U\ï;V¨N1•©S¿¨S÷žU§¾›®>b¤Nox¤>¨½UQ4R}h\Ç|õ¡òvõ\á#+\ÔY¡z\ê\ìU6\êœAú\ê\\ƒ\ê\ã=\Ë\Õy!f\ê¼\Ý\Ó\Ô\'6»©O<;¦>ùû®º 2Y}\êñKu\á\åhua‡µºð\ë*õ\éCÔ§û\Ý\Ôg¢õY¿u±c±º$\ÚS]\ÒÝ§>¯ªÏ¿©/ølT—Å°\êò–DõE¿`õÅ·\ê\nýHõ%\Õ9õ¥‹\Ñ\êË³²Õ—_¾R_\Ñ9£®,2S_­»­®~¨¯[[¨¯÷Ç«oLQßˆ[ª¾qã¶ºv£¾¹|¿úö\Â\nõc\Õw÷W¨\ï%g«\ï\Õ_W\ß­£~`€¨r\êŽ¶\ê—F¨<Q?¼¯§®\×tª$Y\ê†%¿Õ\Ö\é¨¿£\ê¦7^\ê\ÇHú±dªúq¬~¢wOý\ä§~Ê \ê§\Óç«›Ÿf©Ÿ\ß\ÕU¿¨P¿Ü½MýjoºX¯n\ë0R¿†n«\ß4j©ß¾÷V¿\Ë\èT¿«º¦n_°F\Ý~tˆúcˆú\ã› u\Ç@„º\Óó†ú“~²úÓ½{\ê/\'ª¿¬Ww9û¨»\ÌW÷h‡©{Ò¶ª8mQÿtœ¡þ¹\ÄWýk\ê^õ¯=SÔ¿\Íªÿ,\ÍPÿyûQý7WŒœ­x/Qô\çÀ\Ä2|\ê  óF	\èZBÀr;k#`\×\×	8øCÀ\Çð#\ã<oŠ€¿‘	$²L%\å\âFA²\ÉGjŠ\Ùô{‚l\Ö\'A>£TP&8\Ê\Ì\Ó»e¸À–¼\Øs\nAõ\Î_P\ß\"¨ÏŒ„¿\"Aóè¤ µ\"LÐžD\Ú\á\å\Â «RA\Ç;EB\Í†\ê†½†dŠ…!¹w½Iƒ½û…‚~\Ñ-Aÿ\ÝZÁ d¸04\æª0\ì\ãGÁ\Ð\íˆ0<A_~£GÞ€\nF–³£\Ðw‚qe¡0\êÁrÁŒ\Û-Xh¶c·¥\ncw¹c\Ûü…ñc\ê…ñþÁ\Âø3f‚õ\Ö‚¾‘0qûpa\âþRaR´ž0©+^°|{GZ°ŸµY°o;*L\Þ\ß.8\0Ÿ…©\áK\'\Ñ\\Áù²H˜®;N˜¡¿S˜5ñ°\àVýHp«	fW\Çs¼R…yV~Â¼\ÝÂ¼\ËW„\Ó<…\rº‚Ç¸\"Á“™.,ºóEð2_\'xu7K\ÈG‚\ï¿\éÂ²\Ð$ÁŸ\\/ø\ë¥	:…À\å3„À\ÂõB\à\éoÂª‡ˆ4£WºúSª\Õ‚ñ_Bp£¯°z\Òau\éaÍ…z!DˆB\áD!t\Ãh!4­A=ÿQ\ÛV-DD‰…ˆl+!¢\Önü&¬Mq6\\6\"\åBT¿F\ØpT\Ø4\á€#9&\Ä	1÷Ò…\Í\æ\Âæƒ…-\ã…-2…­\"„m©“„¸a\áB\Üü\ÓB\\\Þ8!®+CˆŸ8_ˆo/\â{DB\Â~RHH¿*lŸ•-l	‰Y\ç…ûZ…$Ç—B\Òl7ag\Èwa\ç\ß\á\Â\î?ÿ„=\ëW{\nû„\é_!e!¤ü\ÖR\r„T=!u\Ù;\á€ì’&o\Ò\Ù	gþ|#d\Ìr2¢!c\ÏR!ã·‹©\ï%d–Ë„C¡“„C\ëÓ„\Ã+:…,\ÛOBVJ‡M8	\Ù1£„#1O„cs{…\ÜQË…\Ü5Œp|\îX\áø¦Z!O“÷Ÿ!øZ!\ÍQ!?!Q\ÈOsNoN\Üb…SnW…B3s\áŒ\É\á\ì¿QÂ¹qB©ù&¡ô\Ýr\áÂ“sB™AœPö¾D¸(	.\î9\'\\¼9_¸l6K¨\\½O¨º’(\\U¯®þZ(T›˜	ÕŸ÷\×Ùµ\Âõ³2¡fr¦pjn\ÌlnDX	µ£,„\Ú\îµ\Â-þ°p\ëùr\áŽR$\ÜYr\\¸“(\ÜEd\Â]¡n\Øp\á\ÞF\\¸w\Ú]¸\ÜW¸gpÿ›\\x¸\ä¾P?¡U¨\Ì\ês?õ\åžB\ã”Bc\è\'¡±®Oh\Z¼Rx<\ÆBxj7Dxºb¹ðtO“ð,\ÛUhYøVhyn$<\ß\í*<¿\ã+¼\Ð\Û.´š\æ	/\Û\n¯8{\á•S·ð\êk¯\Ð6c®\Ðv-Vh\ë\Þ,¼ño\Þ-ÿ\"¼k ´‡B{•ð~\Ù7\áC¯\ÐY)|\Â>\nŸ\ÌÃ„\Ïö\Z\á½@ø:ó·ðM/Gø6)Bø\æµJø–2Qøv-H\è\Zó@è¾’$ô¯z\ß0B\ï\×.\ágò\á\×S‘ð\×UG\è»Y.ôý\Ý!\\™¨F}\Ó\0\ÙQ\Z v§xóOš˜kÀ\í\rdØ¯˜j\à\r¾Jƒž­× \ï^hða\Zü\ã\'\r9¨L#Ú¾Q#ñH#Mº®‘ov\ÑÈ¯5h\äOfkkó5´õ~\r]sH£TO\Õ(\Ó?k¸\Ñ75\\3¦\á>\Î\Öð÷M4ü³_\Z\ÕZ-ª\×@#üM\ÒhE«4:\Ú\ã4:/Ojt:?h?\×\×\èEFkôöN\×\èýiô5½•š¡Nr\Í0JK3l\Ì\"\á\ç1š\á¥+4Fô\Ñ\ê·\Z\ã£\íšQS\Í(\çQšQ\×M5£~ÖŒ\Ö\Zª1µ²ÐŒ	Ÿ¡³~™\Æ,\èŽ\Æ<\â½\Æ|SŽÆ¢CK3ö@fœörÍ¸K±\Z«¤§\Z«\Òyš	}C4\ÖI\ï56\r5v¸›\ÆNØ©±k\\«™2ô€fŠ\ÛÍ”­\ë4{-5S\Ã\Ú4SóM4N·s\æsu¯\Æ\å/£™.²\ÖL\Ô\Z\×ùK5®žš™Lf–\ÄR3k\Ðg›§qQ®q\ÛtT\ãö|¬f¶\í\Í\\ô‹fî¤§šùGAÍ‚ß—5\Ï\Ó4\ï¼4žÏ‚4sfhû¡ñB²4^ƒ5š\ÅV;4‹£Í’Ù´\Æy©ñMØ­ñÛ°S³¼|½fEtŒfE¼¿\Æÿ\äÿ[•&@{Ÿ&Àiµ& §C³\Òú„f¥\ã}\ÍÊ¥Ÿ5+³\ÞhV~]¤Y5óˆfÕ¼RMP* 	\îx¡Y­¿ú—y8oÇ‘­„Q÷\ÎÜ¹sg\î:wŸ»I¨¨”(J‘”B¨D‹­•6!R²f§RJö}§\r%T$K\ÈÒ‚h¡ü~|žó>\Ï<s\Þ÷œó=3\ï!]7A8\êPLð¼÷\à\å9N8‘u“\à­EðQñ%øüŒRþ¯^ü\ÛR§\ß8N]@8óP—p\æc\áÌ¯=„€¼ B@\ç,!`ö!ðm?\á\Üg=\Âù\Û\r„º½„zÎ„‹\éi„K\Üõ„KM\Â\å[.„«¿ŽB\ß\×	„PD‰~¾˜pý\ã#B„Y\0!\ÂÒ‚pÃ£–p£7Ÿ¥\çG¸\évžpóX\á–\ÂBô\å\å„\Û/\Þb–-&\Ä@9„˜\à„øö+„“GHøšIH<\áKH,p%\Ü‹w’“wf>’–€„¤¬lB2\ÖEH\Ùrò\0$¤z\ÈRk¾\Ò\ãMV\Û	ón„¬a˜5[K¸+8C¸ß»•ðÀYDxH\Ð$<t[Dx\è¥Hx´Ì›ð¨Ý˜ð8?šð¸cŽ«ªF\È-þE\Èmñ%\äC›…¬õ„¢¤ï„¢6SBñ\îvBñÙ•„—BI÷jB¥À€P~—P\ÝoK¨=ð‰Pw{1¡\î\ÕFB½E¡þ\ÌB}-ƒ\Ðp±ƒÐ¢Gh”&45|$<óô!<‹üBxq\à\áÅ£\Â\Ëÿ\ãyY:Fhnr\'´\Ü\äZ\Åi„VýaB\ë\îXBkÁ,\á•s\n\áÕ‘Ï„\×\Ö\ß	¯÷)\ÚJ„¶¹„ö”„ŽÏ„\Î%#„ÎˆM„\Î,+\Â[b¡K¤O\èJ\ÞE\è6\ÚG\è.ºJ\è>F\èY]O\è‰m!ô\ä¸>&\Ñ½›	}>K	}O	ýÇ¬	¹gŸ¸\'	ŸD\×ŸŽŸÆ•ŸþU—º­.£\Þ†v†5¦Ã¢Û„‘Ô£„‘¯u„±\ç	_‡	\ßö„\ïžE„I%?\Â$\ã	a\ÒÏ˜0\íN˜¾\Ç!\ÌÈ¯&\ÌYMø\Å\\JøNø5\Ð@ø]XOøs÷\nav‹0k\æG˜\ÝWB˜{þ\Êyþ]$\Ê\ÙG\åZ\'ˆò\î™Dùv*QÁËŒ¨< @\\¨»¸0­ˆ¸ðCQ-v\'Q=%j~k$.Ù«JÔš\Ó!.Ý•B\Ô~F&\êHŽu¢^u†Žu\Ùo‰z«ˆzy\á\Äµ‡ˆ+~>$®\Ü~•¸ò…„H\\mH\Üüˆà¾‹DHü‹¹\É\Ë\\‰d\ä‘r~\Ý\ÙJDC—©o	D:ùn<!2äœ‰Œ“£D\æ½=D\Ì\â\Z+\'±\"ö#È¹û…\È\É6!ò\ælˆüi¢@G(ž!\â‹_qm¢\ÈÇˆ(\æ\ÃD±(\Ù=E”òŽ¥Ý†DY…?\Ñ@N4N\"®\Å\r„´©D£•óD#ƒZ¢q:qÍ¯@\â:«âºš¢‰h\r\Ñ\ä\ì\'¢\é´<qý\Ín\âúRœ¸~Ü‡¸QEƒ¸q	h6\ÐC\Ü\ÞK\Ü|D@\ÜüµŸ¸ù\×;¢ù\Æõ\Ä-\ê%\Ä-E^D—Q¢\Å%¢¥\é\Ñòn4q[V&\Ñ\êh•\êA´i¶ \ÚnøL´‹0\'ÚLw\ïºE\ÜÝ¿›h\ÙNÜ³b%q“*qÏ¼\"Ñ\Ë#:\\8L\ÜwW\è¸iž\è¸\åÑ±‡Jt\Ú\êDt*‹#:›„]ž \\ý\èª~–\è&¬%ºG\Ê\Û¿‘\'xLô\à½<N½ú\rˆ^“\â±7½\Äc\í‰\Çþ-#ž´÷#z\ß\ÞHôùy‡\è{­„\èµ…\èÿ\"žªŠ%žÍ‰$žp!,8GØ±—\Ð4@T¹A\Ô\È#žS%ž[²…x^=•xþ´-ñ\Â\â\Ý\Ä\'\Ä\àü\"bð\ç)\âÅ·õ\ÄK\åc\ÄKýŠ\Ä\Ë\Ëp\âe\ê!\âU\Íib\èòlb\è%gbhô1œ“C\çŽ\Ã\í\nˆ\á·ÿ¯\ï<EŒð¾FŒt=H¼atŠUþ“x³.’»Q‰»-ž\ëAŒ\Óö%Æ™þ!\Æ9!Æ½\ÝBL\ì|A¼S\ëELº\×GL*\ØOL\ÞDL~þ?_ëˆ©n‰©\Ï‰iGž\Ó.i3Öž\'fx ÄŒ/›‰™†\ÄÌ½¹\ÄÌ£µ\Ä,£\ÍÄ»Wˆ÷ÿ\å³W¸³7<$fW¹À÷ˆ9¢E\Ä“\Õ\ÄGyˆ/ž!\æúŸüˆJ\Ö\Ä\Â7tb±š±˜~—XXC,‰%ô!b\Ém*±”cJ,\å? –\Zx\Ë\Ñ~b\Å\îNbUø&bU\Äb=x’X\Ïð!\Ösù\Äúš£Ä¦³‰\Ï\å¯ŸƒÏ‰Ï¯ü ¾ V_˜?\'¾°Q$6o|Cl>—Dl!x[­ˆ­·u‰¯]\Þ_‡\Îß¸?#¶³\ï;Uˆ_žü\Ï[\â;ÐøþN%ñý¤*±+d9±\ë\ãjbwŒ±\çŒ>±g,–ø1Ô„ø1\\@\ì½vŒ\Øû\ä=±ÿt+±?\çñ“ñ\Ó(Ÿ8\Èj!\Ù‡=6‡op‰ŸµÂˆŸ9§‰Ÿ³‚ˆ#~Ç‰£´6\âè…\ÄÑ¸Râ˜‘ˆ8®*\"~±\ì&~m³\"~{&Güþ}’8ñn%qR/q\Ò\ëqj‰\rqjN@üq\'N¿œ$þ\\nEüiK&þZuŽøG\\Bœ5&\Î:Lœ\Ë2&Îkÿõ{\çaq~=\È\í\"\n»\n¯\0Š\ëµ%‡q@©þ 4üP–¿\n¨l°T¼—ª\nŠ€ªþ_@µ\ÔXx\ÞXô‹	¨Åœ\ÔFÅšuÀ\âx@}\Ñ \Î\Ô\Íê¹¿\0\Í\å\0Í“\ç\0­¼›€NX¾A\Ðg\0+ŒƒN^\014 †]\0p-\0\ìoÀa\0L‘\à£\ë\0)( •/\Èm\0œ]PLz\Ê	!€\è{ˆg-€Ô·h\Ôs€zF ¾]\Ð|­Z\Ði\0Sc#À|0?ó\0\Ö\Öv€5\ç`n7À¼\0·\Ã\àù\0_\ïÀg\çü»%€ \ï \\ú\Z^»Ë¿\0\Âj#\0—,ðCÝ€ˆˆž£€dþ: s–dƒyÀ*ý?€\Â5À\àK	°\ZrV8\rœŒ¿\Ö\0klk€u\n:À:;À$\ÇØ¸/°1/0»µ0g®\ÌžÀ–³¯\0‹4Àr\É%`k\íf`\ÛIÀŠ›\nXñ\Ú\ë\Òf`»C°\ÃC\ì¼\Ô\ìÛ€]û§\0Ûµi€Ý­\ÇÀ\î\åÁ€ý+Ø³;p\È\Ìêœ½Ë¾{]Ù€£|°\ß\í#\à\à8\Ý\Îâƒ=õ€\Û\ÖMÀa8<ÿðÀ¾\0\'\ÒO[1\à56ówN8›>A€/\ã0\à[tð;}ð»8ýq8û¿ŸóNÀù\Ì> X\Ï~ù¸¸.\â™À¥¯Ï\Ë\à\êŸE@\È\Ó\à\Ú`f>„9L\áf½@ø‹6àºŽp}kpý»3iü\ZˆL?D–~\"gK<[\à\Æ\Ó JMˆò»\ÜôZ	\Üz\éD_KnG5\0·‹û€˜Žd Vuˆ%Ž±\Ï\"€8\Â% nj17\Ý$Á@¢$\Þñû›;\â`\à\Î\é[@\Ò\æJ ¹g9ò¼Hi\Ý¤ö\Úi“ú@º—\á»\Èxt\È<K\02\Ï\å™a@\Öm?\àžap\ïW	pŸý\È&¯²\Æ\0V,\0®”÷·9N\'€œ{!@N»ðH\Õ\Èu·ž|_\rä™Ž\0ùµa@þm `¯P˜|(ŠŠîˆ¢<	P\ì<ûµ%v€Rò# L\r”\'…\0Ur€ªý¡@ÕŸd fWPs#\0¨]C\ê®\r\é@c\ïf i\Éw ‰\Ð<¥DOÍ·O\íó§žýÀ\Ës€fÝ£@ó\Z3 E\Íh©SZƒ7­\×~¯»€v\Û\Å@‡þ5 c$xk¯¼õ\ï~€÷B ‹.tµºóÚ\î\à=ø8^ô6+\0½3q@Ÿ\\0Ð—\ëü¯‡0U` œ\0Œ\Ã\ÏŸYK5`\äq;0v+\Ëñ\0\Æ>_\Æ\íû€ñ\ïÀ¡ð\åh$ðU^ø*N¾\îi¾­¾\Ù<&\"\éÀ\Ä\ít`¢\ë\"0¹±˜¼\èL\á\ÚÀ\Ôi\à\ç\Ã?Ào\ÇoÀŸ9\à\ß\ËõÀ¼\å`þÁ;`>Ÿ\Ê\Ñ\çA¹{—Aùg@ùhGPE(.ú]	ª•Aµ7\ï@µ‘— ú]+P£\Ï\ÔTI5@\Í@*¨9\\\r.\Íp—\\\0—\0u\èÕ ó&¨·²Ô£3@½h9p…\à¸\"¡$\ì\Þ©\ÛARó4H\îöa$D|\Í@\Ô\Ñ¤%>iù‹Aºy(\È$fƒL\Ë\Ï €@6\Çd»\Ã \×k\äfæ¼Ï‹Am$(\â\îE-(¦}\Å7Aq\\6(1>J\nœ@\É\Ç)P\ÊT\0õbÁUú¸jš\Z\Zû€†“·@c\Ùu\ÐxKh\ì\è®	\ì\×=\×\êÛk_š€\ë¶û‚¦‚p}ƒ¸Áú¸q\Û7p£\ãqpch¸11´X<n5*·š?·3·žr·†\ß·Æ›VW®€\Öô[ u‰¸]hn?þ´9\Ú\î\ÒMmO:€¶9›@ûÀ.pÏ—ó ƒ tx,÷^w÷‡\éƒ”\ÇÀ\í\Zÿ#|e¾€Nº¥ S„3\è4©:MþQ\0t™Ž\Þzº&2@\×\Ü\àa\ß!ðð §«9è™™\0z--Ž­¾\n*€Ç.7\æÇ»V€\'õ+À“¹d\Ðgµ6\è³\Åô}\0úf^ýôr@¿N{ÐŸõô?ýô¿\ÒžZ\ÎOƒg7(€\ì3`Àw0°\ÏR^\nž»¡^P\0ÀT#ðB\ÅAð\Âo{ð¢¼4°¼B\Ü	†\\\Û^;´\rn¯Ÿ\ÃÁ¨€s`\Ô\r30ª9Œ\Z/oþ©£ƒKÁØ\Û`\Ü	{0>\á=˜ð>L\ïdÌ‚wJ¬À¤\rŠ`Ò\r`r\ÆB0E\ã˜\Ò7¦_\Û¦\Ç\ì\Ó;\ÆÀŒ\à…`&²\0\Ì<u\ÌJ¹\Þ\Ó\ïö÷Où\Ù\Ò\Ý\àƒ\Õ)\àƒ\ÝoÀŽY\àƒ\Æ ða\×y0\Çý3˜[ýÌ­=>QLŸ´\íóô\rÁ<\×80\ï¥2˜ó\ã§Àü9o°€{\r,\Ø|,pYøFq\ïÀ‚º`Á‹¿`¡¤,¶\0³»Á\Â°p,,Z”-–‹p.X´\Ë\r,\nþ=±‹y\0X¼q+X|³,NI‹SµÀ\â\ì…`ñ§°dg,Xr\Õ\n,‰K/[‚¥y{Á\Ò×›Á\ÒY:X¶\åX\æ\Þ	–%ªƒei\n`¹²XN\r\Ë\r}ÀòuûÁò\Ø,°¼\0Ë¿\r€å¿½À\n\Å°BU¬01+¶l+¶\Ý+.T‚RÀŠ\Ç\é`E5X1ZV.\ì+¯?+§|Á\Ê_+Á*¥f°*$¬º™V\åŸ«~­«\æ‚\ÕÄ`5:V\éÕŽª`\Âu°\Ö9¬=¦\0\ÖúÀ\Ú\îÿ×ŸRÀ:\r°\î\Þo°®aX\×s¬\ë\ëftÁúú`ý¡J°>\Ò¬O\ëÛ•ÀúN.X?\â\r6¬\Ì>ƒ\r;úÀ†B>\ØP»l˜«ý`£C>\Øø¼l;6\Îl\ç5Á&\ÅX°\É\Í\Zl:¾¬4[³À–%°%f\'\ØÒ„‚¯H\Z\à+n#ø*\"|õ6|5™	¾©‚of—ƒi>\à;\Ç\Zðý†Xðý\Þc\àû˜\ß`—J/Ø½\Ö\ìn\Ý\0~ \Þ?~K{—L‚ý¾\à€\æYp`Iø‰bU÷€C–\àð49d\nŽ\Ú?G[\ÊÁ±\0ÿ\èŽ\Ï\î¿¸d€_jÎƒ_7ƒ_ÍªÀ¯ù\Ñ\à×¯[Ào\Þ?ÁogÀ‰œ\\\íN^0§@/pJ\ØN?r@pšpœ>Nû”Ó¹ŸÀ\éª	ð×ž\Å\à\ï¸Qðw\×:ð\Ú\ÎöŽs¥/Á—\Ø\à¿;›Áù\ÄU\àüW_’œB)In;N’O‘$$…\Èf’bŠ¤Ø¼˜¤q¤º8š´\Èh3I­/Š´˜w–´\ØZ´øŒ\ZICI\Ò8’4\"ˆ$š\ß$.>iÉ•s$-I+i\éún\ÒR·A\Ò\Ò;\Õ$í¿±$MW’N$JZ®\æKZ¾Ñ´¼­†¤»Â›¤k|‰¤7\Æ#­`\æV\Ø)“V8\ì#­8y—DñH\Ä\ç&$ ŠL¿ü%A\Ò~%:‹DÉ§‘\Ð\ÐúZ‹DSN!1-ªI¬®S$¬ªž„µ†°÷OH\ìo\Î$Î¢i\'ô‰Søˆ\Äc\0$\Þ5’0·†„‡Z‘D¼I\â’\ä\ÕIò%„$\\K’yF20Iç·‘VkË“V\Ç\Ý%²oŒ\Ñ\Ò\Úý¤uÏ¶“LT]I&\îI¦§mH¦Á$\ÓK;I\ëeI\ë+«H²JI:¯‘6*…’Ì¨\ÇHf1>¤\Ís$s5Ò–ô\Û$z\É\"ËŒ´ƒøŒ´\ã\è(É†ž´‹E\ÚU°œd‡T’\ì\Û“ö@Y¤=gv’ö¤†\ÔKH\Í$‡W%¤½B\Ò\Þ\×!$G›D\Òo’\ÓÍ¿$\×ø\Ç$×¢$7\É\í\å\É]fJr\ß1Grˆ\'R-$ÖŽ&~I:òÄ€t<»\ä-¾Hò6}Lò>>Hò¾Œ‘|^\Z‘|ÿ\"ù3#ù…}$ù/ÿK:e<C:uÓ—t*F•t\Ö÷)€ûŒp#†ˆ$‘[Ic\ÇIAy3¤Fº¤VÞ¤G\"I—†“.\ß\Ó!]y\íNº¶È‚tM¢@\nóL%…ÿ;HºŠI…¤ˆë“¤ˆ®¤ˆ™\ë¤\ÈùK¤[¶I·?b¥\ËH±nV¤¸ôý¤ø\ß¤D8”°tg‘*)IŒRÞ ¤T-œ”¹ù)3®‰”å´’tWN@º>Dº/zOºoQE\ÊV}H\Ê^I\Ê_Dzh]Nz}‹ôh…ˆô\È4‘ô\èú!\Ò\ãû¿I«–“òDŽ¤<\ïFRÞµ¤¼\ÂrR¾«Œ”?÷”T qŒT¸ÅT\ÜpTvCL*kºF*\ç¯ •[“\Ê\çI•„Ç¤ªlˆTõdœT½\è©\Ús©ú\ÛAR@ª\Ý^OªƒÎ\êOô“\Z\Îý\"5®\í#5¦n#5>\"5=´!=\Í\Í\"={õ•ôl°‰ô\Ü\ç,\éy}\éù\Ó\Òó\Ï\í¤fƒ¤V1‰\Ôúò:\é5ˆôzñR›#Lz\Ã\è\'½¹¶šô–N\"½·°!uý–.«\0R\×þ;¤®\Ë\ÇH]\ß\ÂI\ío‘zü\"õ±y¤¾‚R¿\Ö]Rÿ¾R\èER‰+i\à·\Zipù}Ò \Ç;Ò\ì+iøüi8²€4\Ü’>/\ÛK\Z9<O\Zy\ÚK\Z½ü…4:™N\Zó\"M¾\"ý{H\Z\ç#}9BúŠú“¾Y<$M,U#ý\è¿Cšv\Z%M?\ì%ýŒr$ý\ìŠ&ý\ÄH?§n’~a\"\Ò‡|ÒŸ3Ú¤YG5Òœ\n™47\çEúË¹Iú[|ô÷\ËQ\Ò?\n$·L\n\Éc!9CoH^~#$÷Zpù$´ 	„|7„\rb\nRÙºR5k„TÍƒ …®+¡…µÐ¢Ÿ!µG5Ä€4\Ü\ïCK”\Î@KZ ­…ÖµVe´ô\ÝgHû\ÉMH;\ï´Ü”\é\Z\ì€VüI†V\"ò¡6\"¾­€\0f\"¤î€{Sð¦‚\Â5 ¨Y\"\ï»‘/+CðgˆB5ƒ(kl!t¢º\çC\Ôˆfþ¢·€\íÄ¼O‡X[¦!\Ìo\'\Ä&\ÆCœ„|ˆ\'‡x†û žw4\Ä\ÏÔ†øÿ!þü\0$X\Ý	<w@‚fHPA‡\ï\ÎC¸§$úg‰M4!\é‹h\ÕögÐª´hÕd°md0c	­&¤@†\æ&a\Ç\0dø\ë5d|€\Ö,Í†\Ör 5k¹Ðšuh\í:)´Ž¼Z?C„6(€6¼t‡6øC\'\ï@fœ7\Ð\æbhó?&d¡P	Y\Æ\ÖB–\ãF\ÐV³uÐ¶\ï»!k\áe\È:(	²€¶?m€¶Ï¿v,Ž†v8iA6¿ h§;dG¼\r\Ù\íw€Bü }:|hŸÿZh\ß\Í\Å\Ð~¹vhÿ<\n¹\\³\\\ß@n+C ·Ptˆ’\n\Þtò\Ø6\nµYõ°…Ž6¯‚<\ÏA^\ê!/ òŠ.€Ž›\\„Ž‰¡“Kg \ï\Ï Ÿ\åqOùdo|\Ê\îA¾q\È÷ö\ä\Ç.‚ü¯C~¿L!ÿÕ®\Ð)“\èT½:\íÃ†N—3¡\ÓMP\'\nr:{?\ß\ì]ž.X*CÁ»¨\Ð\Å\æf\èb\ÛR\è\Ò\êkÐ¥³&\ÐÕ‹…\ÐÕ¢·P\Ùº6±\nÕ–Baü(\ìúI(,>\nk¹…[³ ˆÿs±zŠ\è\è„\"~«A‘©‚ÿI‡nL½†¢ú_A7\ÙZ\Ð-õ \èÁºýû%+l‚\âp(\î{=oö\nŠ?%Ð¯A	ë¡„\ê\ïPB_\'”ð#ºó¡J.‹‚R²®@©ù\\(\Ã\é8”q(\r\Ê< L\Ù”y\ç\Z”9ø\Êr¨†²¢¿Bw+š¡lN4ô\à`\Zô\r…þ\âA	|\èq””{‘å–¤@Oþ\×eû”÷}”\ï{\ÊoË€\ný¿A…Ë ¢`U¨¤v*¥X@¥»¡rr+Ty*\ÃC ª$T½<ª\ÉU‡\êþ÷]7d5\ä‚šðB¨iGô´\èô´\Êz!>\rµ”ž†^™f@¯BA¯o†^7P[—1\Ôöõ\Ô~u8OCé— Ž\éP\'šu~ \Î?Ï¡\î\íû \îò\ÃÐ‡\ß\ÊPÿþ‡\ÐÀ\ì\è+úd$ƒ>eŽBƒ\'5¡Á4/hðõ*hh\Ék\èóò\ès‰4F\Ý\ÕûCc\í‰\Ðøª[\Ðø\ÑEÐ—’a\èÛ ô\Ýú^ZMT;A\êÐ¤ú,4™=M]Q†~¸&AÓŸqh&?úµ\Õú•¿úý¨úó\n\æ^\ÔB_•Aÿ¼\Èr³ýdù\Ç\Ódù\êcd^Y\á»?Yñ\Úi²b\î²b\Û$Yy;¬œ\àNV.„\È*1Yd•;qd\ÕKa\ä…oü\Èj\×XdM¿»ä¥£\ß\É\Ë\Í\äe&5dm«²\Î\ê!²N\×;òòž\ßd]²®ž-Y·Ê”¬ÿŒ¼B]Ÿ¼\"z¼¢•O&¨»‘‰7‘¦Udp8€=þN†ü #…\Ï\Éhú:2šS@f-“±›2ö¨…\ÌV8C\æ¬æ‘¹\Û:\ÉÜ´d\î]52¿\"ó‡g\É‡²\à\Òy²°\á Y8šNŽ\çñ-‹É¢\"²˜²‘,¶’¥\æ\îdi\Úm²´²Š,kñ\'Ë¦2\Èúždý\älòªw\È\äCd¬Ÿ¼\Z¢‘Wÿ\Î&¯ñ2\"¯)zL^§s˜¼\Þky}‚yÓ¦>²9\ã\"y‹¸š¼\ÅG™l1¼ˆlù\ã\ÙZ÷	Ùºÿ-y{9N\Þñ¢ž¼£\"\ï\Í!\ï’W\"\Û\ê_$\Û^6 \Û]½N\Þ}LHÞ³Èƒ¼§Æ‡\ì\àUG\Þû\à\r\Ù¹Hv¬1\'ï¿™L>p8Ž\ì¤Gv†N’“\É\Î\á{\É.\Ço’%œ\Ô#»Z³\Èn‡$dw§7d÷c\Zd÷¨Md÷;\ïÈ‡\ïÉ‡ï?ºGö@~Zq\É\ÇT\â\É\Ç_xÿ\"Ÿ\è’O®ò#Ÿ|~•\ìC™!ûTÖ“}\\\ÈþoòÉ§\î\ì#Ÿ6\"Ÿ¾_B\Ð\é\">1\'æ›‘ƒr\È\çV¨\Ïm}F¾ \×Mþ7E¾¸\âùŠ|ùj„6ùj\Ï	rH¹ù\Z?ƒz\è#9´ŽD\í¨%‡]ýŸbkòõ/Rr\ÄË¿\äHYù\Æ\ÎO\ä›K«È·\É\ähMœ=kI¾=œMŽ]\äGŽu\ÛCŽ\ë¹CŽ\ßGŽ¸œd6CN:MNF®‘“Ý”\É)µr\êyr\Ú9}rÆ=\äÌ€k\äÌ©rV¤)ù\îaœ|¯]H¾_|œ£xžœ³l˜œ“ö¿m\ÆÈ\Ô7«“M,#?¦n$?\è&\ç*®\'\çªÙ“sItrÞ\ä‚\ÆIrAw¹\èb!¹(%\\’lA.¥\ÐÉ¥a‰\ä²y)¹œ\çO®  W‘\ä\Ê;\é\ä\ê›u\ä\ê1Or…Œ\\“B\'\×\Ê+’k[-Éµž“\ë›\È\rz\Û\È\r\Ô{\ä†tr\ãHù9 A~1# ¿T&’_{‘›\Ì\È\Ím\È-Á\Í\ä\Ö,ù•|	ù\Õb9ò+­­\äWÙª\ä×œHr\Ûr[ž-ùö3ò›=w\È\í£\ç\É”C\äŽÍ‰\äŽBGò»\×A\ä®ø=\ä\î±\äžm¶\ä^5&¹W§–\Ükv‘\Ü{{œ\Üÿ3ž<øX“<\ìHþ]\'D^!\nŸ“G\r·“ÇšŒ\È\ã\Ôzòx\Ðmò—…q\ä/\Þò×­;\É\ß^û“¿ó²\É\ß\íƒ\È\rwÉ“|&y\êÿ,¿Kþ!I ÿ°õ!\Ïm!ÿŒ÷&ÿ,\ÚIþ\Ùy…üs\êù\×ÿýú\ËÎüknšü;Ø‰ü\'Ò<«6Cž\í\Ù@ž\íS&\Ï\Ùj\çJ?“ÿþßŸcF\Èf\Èó\ï\Ôa¹š)Xž¤\Ë[û\ÃòG_\Âò7…°üL¬p\Ê^`\0+ªß‚=	°Rb¬ô\ä4¬|£V.Ô†U–¯ƒU,`•£\ë`Õ¥¡ðBx^h`«\ïÒ…5\ï…5»o\ÂK\Îú\ÂK¾l‡—\î’Á\Ë\Þða\í¥1°ö\ÖÍ°ö.5Xgy,¬cy^¾b#¬»¨\Ö5´†u\ãm`½b¼¢ô#¼¢y^iy\Z&Œ`ðöWŒW‚Á„\ã0\É\êŸ{\r£	#0U¤S7\ä\Â\ÔÜµ0uj3Li†iR;˜\éP3\ë¸0\ë\ÚIS8c÷\ß\Ã\ì^0;\ã/\Ìqp9\ß/À\\\ÜL‡õa\á-\Æ	\æ°(ü,ŠÂ¢„*XTd	‹jG`1°–hXÁŽ,ñ\ÛK\ÑXjO‡õ\Ý\Ô\áU\á\ëaƒUi°¡¥%l\ä˜\ïZ_\n¯\Ñ\Ä\à5\á\Åðš\æe°Éž°©\Ö¼ñ\ÂSxc\Ä\"xc²&lö›oþ3\n›/À\æ1\Û`óüØ¼´¶Xû\Þzò¼µ\ç¼mô3l>[?€\à¡\á]½|x×¯¥°-÷0l›V\Û\Ñ;a»ôx·‡!\ì \Ü\n;8ýos~Á\Ïz`‡y	ì¸;îš‚K‡\à«Á&a\'	Ø™ó\nvjƒ]ˆvðA\ÖcØµ¸vc®„\Ô\Ã¹ð1øxû\ÊÁ°\ï›\ë°\ß\ÖRØ¯q>e&„\Ïx§\ÃgoªÀgS\Äð\ÙG8 ö2\è\"\á\ÚpPR\ÔŸ[œ\rŸ«x\0_ø\ëËŸ„ƒ\ïÞ†/Þ€/±‚\àK»7Â—\ßÂ—\'º\à«gXðµwðµ™\Óp\èÿu\Íó…CÃ¡§\á0ø6ttŽ0\àÀ7V­‚£~³\àhXŽþ¥\ßV€c§>Áq¶\ÃqRŽ‹\á„\Ê`8ñ^!œø£\rNRº\'\Û\à¤p2M\'û\Ã\ÉQúpò}}8µ\Ü\0N‹lƒ3üPø^NüÀ€s’—ÀlZ\áGÙ«\à\'{®\ÃOö‚ŸU…ón	\á‚ÿ5^˜d\0\é\Ù\ÂE3^pI€)\\ú\Ä\Z.\Ûõ.{¶.?]\n—\ß*‡\Ë\ß&À\åR\á\Ê\çáª¦p\Õø¸Ú·®X\rW_>Wÿ À5\ËT\à\ZÏ—p\í‰L¸~d\nn\\\Ð7.õ‚›4š\á&\Ú¸\É…ŸŸ,‡ŸŸ‚_žÀ/ðpø…¿tq‡_\äÀ-¹\àÖ—	pk[\'ü\Ê\í)ü*ƒ_õ‡\Û\Ô\á¶×‹\à¶Oø´n_ýn\ë†;\æNÀ\Ë\"\à\ÎuL¸sr\'ü\î\âøý\ÊA¸k_Üp®€?-‡?\\2€û\î\Â}‹+\à~;\"<Ð¡¼ÿR\ØZò<4Ö­†‡®t\Â\Ãb/xø‰<\â®¼\0iß€\Ç/ª\Ã\ãcRø\Ëö ø«Wüõ\ržØ¸ž×€§†‡\àŸ]\áŸÉ‡\á_¯¦\á\ÙgxnHþ\Û\ìÿc¥\È)ÿ \ÈmR\äQ)r‰(ò–û(ò¾Žù{,\Êle¿‡²ÀeeA\ç%Š\âeE)¡Ÿ¢<µ€¢\"è¤¨l¬¡¨ï¡¨Ü±¢¨T_§¨\ÔvSŠ\Ç)\r\ïP>ùBY\Ä\ÜEY\Ô{‡¢\æRA\Ñ\ÔI¥,1Ö£,\é S´Üµ)Z^\í]ó\íroŠÎšo”\åcŠžZ\"Eo8…²‚s‚²â·„²2g3…\ÐøžBL¢\ï5Q\0G&…\Ô8ATÿR\È_Z(ð’f\n\åB>¹3HAªžQ¨þ&\ê -…öm…1©Ia…\ÍSØ‡\×PØžw)\ì,O\nû—…ûm7…§»\"\Ð~L”¯¢ms(\Âk0E$*¡ˆ¶ŽRD­©\ÍŠ4¤\";7KÑ·m¦\èŸÐ§¬ZÉ¦¬\â=¦„¼¡¼È¥¬^³—b(\î !O)F›~SŒv|¥]ð \ÏQÖ¦l¤¬\ÛÎ¢˜4™RÖ«œ§¬\ÜGÙ°ÛŒ²)(²\éû4eÓ¬!e³!—²\å\ægŠÅ›`Še@±,G±|yŸ²5ñüÿ$P¶N­¦X»·Plô\Ã(6w)vNQ\ìžRvÿ\åS\ìuý)öi)%\')¥«({•¢){;z(ûv\ÌRö59PT\\£8_¢S\\L\r).M·(®½3·\Ø”CÉ‘”Co_Q<ŽöR<4)ž¼6Š§•\âyô!\Åóô	Šgþ&ŠA“\âuø+\å8?å„–€r’z•r\Ò2‚\â½\à\Å{³5\Å{“\â\í\ÙIñ®Q|E;(þK–Rü\Éw)þFÕ”\Ó/ò(gò\Û)gµô)g/÷SVý ¦¾£av” \È”s¢û”ó‹U)\çO*P.|\í¡Ÿ§\\lÌ¡\\2*£\\ú´„r™7L¹\Ü\ãH¹BO¹òe\åZ|#%Tp—Z4E	s¸C	{ñ…\ÖrË£\\\ß\Ð@¹I¹žð‡©aN‰l°¦\Ü`\ÈSn\\øJ¹‘óžr\ã¥%Šs‹mbG‰~1B¹½«ž×´ˆ’pú%\Ñ1Ÿ’ô¥Œ’<UGI¹J¥¤æ¬¡¤¾¤¤ö/§¤±\Ó(\éÕ™”Œª”Œ—]”L\çLJ–H¹»g%› ¥d³Jöº\0Êƒd\r\Ê\Ã%J\Îôv\Ê#\Õ	\ÊcI5\åq\Õ9J¡\Î¥\è\Æ¥Ô°ˆR\ÎÒ£”ûúP*¬”Ê‹:”*\êeJUy:¥Ú©˜Rð†RãºŸROI©\ß ¥\Ôç¾£4p\ç)\r^*”F5SJ£¦¥q[¥\é\ÊZ\ÊS½E”§³_)ÏŒH”g{®Rž\ëõSž£\Û(\Ï\í\îR^>|Fi\r\ÝMi­<Cy­Bim ´mýDi«¹Ki\'P\Úe‰”Ž:¥£\à\å\í¶M”·\ç_R\ÞOž¤tSª(={º)=])R>>xJù8u†\Ò+Qz7Ÿ¢|\Â[)ŸfVQÿVQ†z¯S†•\"(Ÿ­•(Ÿ¯\î¥|þeG½z•2fQ\Æ\n“)\ã\Ê;(\ã\Âg”o\Äc”‰—½”É´ó”©ƒK(?2C(3E‰”_kc(¿6~¦ü2;L™ý€Q\æºÅ”¿\å\ï\Ô*DNo)\"wJQ`Åœˆ’\ê/Di³¢Šù\"32E’.dQ°¢†N\"jGO\"\ê5RDc‹¢±\Ý\ÑT¹Ž,qÜ…,y‚,ÛªŒ,;½\Ñ\Þ\âhû©!:_%ˆ\îŠˆ®\ïD7±	Y¡1€¬\"„\ã\áQ;\01¼\àŒÀ-\Éü\í-‚,A°_ê« ±Ÿ*|¡\å!´2E„¾\ì+\ÂL=‚0\ß\ä\"\Ì\Ù5kùF\ËØˆ°÷>C¸TE„\ËnAø9wþ¬\"˜ôA„\êF~3	\Â\ÉK5Dú\Ø\Ñ\èDV…E «† K\Î!\Û#C\Æ9\Äðˆb¬¿1\Þñ1þ?þu+/ \ë.\n‘u3‘u}\ÛM}\Ä\ä\à\Ä$\Ò1u\ÐEÖ»T!›ô‘Mg\Í7d³‹\Ù|\Î1\×\ÉE¶Tq‹›·\Ës)È¶º?È¶\ïd\ÄJ¡±v\×G¶×Œ ;8#\ÈN¿nd\çûnd\×ú\ËÈ®Kk\ÛhÄŽ\áŒ\Øm³A\ìü‡‘ÝMˆýJE\Äþ\å\n\ÄQ¿9À=‚\Ø<€\È\èGœ\Ïû!/|D\\/f#Gô#G†ˆGôc\ä\è-K\ähn\â¹h\â™#D¼\î§ ^¯\"\Ç\Öø#\Ç6\Î \Çê¢‘\ãª\î\Èq+\äø\ÞV\äD\Õ\ädˆñ–[‹xz Þ™g\ïžˆõ\Ä÷²3\â\Û\'FüýS\ï`ä´²=rºü7r\æ­	\È<†ºGo?E‚„\ÖH\Ð!=\ä|ð?$øVr\é\Ó\äòð.\äò|+rE\Ó¹\áŠ\\ùÿ\×p¥hr\Õdrm\ár­m	]\à‡„]„„~ùŽ„‘® a5\îÙ„¿Y‰DXþO.±k7u¸‰z6\Ü<r¹yg\Z¹U¬‚D@nk[\"·Y3Hœc67¤ƒ\Ä\r¿F’~¯D’\æÝ‘\ä\Þv$\å4‚¤t:#©=?‘\ÔÛô­HF5Žd.û‰dò¸HfÁ-$\ëò rw\å(r\ï};’\Í\ÐB²…®H®V ’\Û;‚<9³y\ÒIGò4ú‘¼€F$\ïs(RÈ¯C\n\'\ã‘\"j?R\äú)r\ëBŠ\Ü E)£HI		)%BJYqH©\ëRÚ©Ž”\Í) \åº!H9ò)oü”ÿ›Dªµ\rjf$R\ÝÓ\Ôøö#µ°R»!	©\Ý\ÌAj+!uH\Ò\à\ã„4<\à\"\'ò‘\Æù¿H“\ÎR\äi\Úw\äy¹\rò\"ø\Ò\\qy¥éŒ¼:Wƒ´YŸD\ÚÆž\"o®r7õEHZtH\r\×6\ä-õ>ò^/y0y\ßP‚tg/F>´Èz+\Òs\à\ÒS{ùh¥Ž|,ý‡|«Cz\ã\nÞ»\0\Ò÷Q(=…\Ò=ÁnOä³¼òùo2ú\ê2>\î‹|	ˆD¾\Òo _o/D¾%F&‚ž#“Úº\È$³™R\íF¦ø\Í\È\Ì\êd&‚†\Ìdv#3y\ÈÏŽL\äW\Ë}\ä7zù3>Š\ÌV!s³—¿B\'\ä\ï¥\'\È?\Ífd~¯2ô2ÿh*g¶U\àG£\n\'\Ðq\ÑwL\Ñ¥Qè‚§\×QE\Í¨bpª˜ðU\ìhDÿu£Ê¤\\T\Ù\ÖUýÛŠ.ô\êD½\ËA\ÕÂ¢\ÑÅ’¨ºiªa>€j\ØF5¨\Æ\ÃjT\ãOº\Äûº\äòTË¤\Õú2€.\ë5Dµ¶¢:!—\Ð\å„Ityg-ª›;„®p8‡®\Ô\ÎEW\æœE?”4\àB±‰(™Ö„’\é{Qò‘µ(·¡0r…Ëž¢\È¥\ÖM¡\Ô&J;œ€\Ò\\P\æ©8”ù¾\Å\Ú\æQ¶\Å3”«\å\Ù_D\Ò*THiG…\ÌTø¨\Å?¾@EW7¢¢gr¨Xx\ËRQ\Éö0T4]%|®\êòA\rNk †>\î¨Qú\r\ÔXE]sv3ºvóº6\Ô]ûH‚®}õ]¼5yª„š®Ú…®÷Ùˆ®¿þ]\ß…n „£faC¨\ÙÀ4º‰\ÏD7?~ŽškŸ@\ÍþF·ü©G-®D-µýP+‹«¨µ\ÛÔº\â:º\ÃðjÃŠEwff¢vò­¨}\ì/Ô¾g?º\Çaº§ö	º§\Û\Ý3}\ÝëŸƒ\î3|†î»¬\îK2EAOÔ±ö6z`\Õ>ôÀn3ôÀCuú§º¬8‡\ìyƒºR\rP×„¨û¥ \ÔcS8\êq¹õ˜\å£\Ç\Ë-Ð“7\\Ñ“½n¨³5\ês\Ò\nõI¯G}÷¢þÒ¯\è©DOô´\îzôt\Øôt¤\ZdWŒž³RA\Ï/^p¨F/\äX¡º\Ñ\à€@4øÿ˜/¶[£geè• \ZôJ¤\Zz•;^ÝŠ†\Äð\Ð\ÐùV4\Ìg\r\ë?…†/œG\Ã-ªÑˆ+\Z\éˆF$ 7nø£7J/ Q¼4j\Ý4*\ÈúmƒÞœMFo\r\íDcK\ÐX^4Ž\í„\Æma¡ñ£­h‚M\\T€\ÞqÞ‰&mµA“¶ \ÉkÐ”\çB4õsš¦µM\Ã|Ð´\çh\Æö	4\ã\Ú0š1[Žfñ^£Yn÷Ñ»bWô\î»\"ôþuô\ÛRôÁ\ÅZôÁ•—hÎ¼1ú¨û9ú¸&}üq1š+\ÈCs’\Ñ\'\ßh^ƒZ°³-p˜E\r\Ð\ÂHw´ðƒZ¤g­m@‹«Ÿ %‰\áhi\È6´¬nZ.ß‡Vö£\Õe0Z£ÚŒ\Ö\Üb µM–h}A&Zÿ2mPjC‘hÓ—Vô\é*ú´6}ž¼}q5m^ˆ¶\\\ÏB[z\ÑV\Ï0ô\ÕúZ·}ížŠ¾¾?‰¶\'i¡\íE\íh‡¼\ÚÙ†¾]´}»~+ú>§\íb„¢\ÝJ\Ñ\î\ä%h÷\Ú=\n£VG¡lv =¬ƒhÏ«}\èGôÚ«u\í½\ë‹ö¡ýE\É\è`ú\ÌD‡-\ÑÏ¯-Ð‘5¡è˜¬\r\ßñ¯Z€~Iû…~tA¿+¢\ßÀ\èDB\r:ÉœG\'³\Ò\Ñ)\ÍiôG\Äô\çú¯\èO‹<ôg¾úy„þ~Žþ®¼Žþy¢³«¦Ð¹\Õ\å\è\Ü[ô\ïX!ú2@\çÉ³\èü­—T9Œª€¶RÂŽQ^¯¤.¸÷˜ªÜC]8^H]¬iL]¿Žª©®O\Õ\äGQ—Ð»¨K\Ö]¤j…Q—*¥Q—?j¤\ê¶ZRWF_£®œv¥TP‰\ã\ÚT\0› ?\n©\à‰ET’G&•\\|\n\ï8I…¯¦Â¹7©\Õ**%©–Š\ì\ÛAEò“¨\Ô5vT\ê-{*µÍ’J«±¥\Ò\Þð¨ôõ5T\Æ\êwT–B7•ŸK\Åv…P±#\ÆT\ì\ç•}‰KeG·S9À(•sn•‹fP¹mnTn\Çw*?#*ð\ÚNb*T<Ý—*V;@¯ö£J`*­Õ¢\Ê\àE\ÔU´TªÁ)ªA\êoª¡\Ë+ª‘üqª‘³\Õh(”jœ\ÚB5n]J]£\ÓO]sÄ€º.œE5ù{”jºNžj=GÝ¼pˆj\Þÿˆºe·:u\ËD\Õ\ÂqÕ¢5—jñS‰ºm\ërªÕƒƒT«‡bªõ-\êö\î+\Ô\áE\Ô5Ôž\Ô]ù#TÛ†\ÍTÛ¶/T»¾e\Ô\ÝAª=ñ4u\Ï\Âi\ê\ÞûË©ûRR×¶S»>S÷\ï\\DuVÒ¤ºm©£ºU\ÆS\Ý-(T÷ü»T÷!-ê‘…Û©/S©ÿŽP=Wÿ¢zž z6K©^FjT¯\ã6\ÔcÁ\Ô\ã=\Ô€z\"¶šzòK\Õ{h\r\ÕGý\n\Õ\ç\è7ªÏ±ýTŸ[»¨¾Ü·Tß—\ÊT\ß\áýT¿uÿ¨~iO¨þq¥\ÔSY4\ê©ú\Û\Ô\Ó=¨göLQB<¨\ç\Ò\"¨\ç:nR/\ì?@½\ÐlA\r6Qƒ\ßq©—Â—Q/+Q©W 0\ê•=CÔ«r\ÎÔ«º*\Ô\è\nõš\ç*\êµ\Óq\Ôk\ê\ÔÐ…ý\Ô\ÐotjX&5\ì›<5ül5B£Œz\ã•&5*°€\ZUºƒ\Zõ7†z“t˜zs ”\Z-S££K©1\ã\Î\ÔX\ä5Þº\ZŸ\éBM0ÿGM\Ô7¤&:†P“=¨\Égr¨)‰5\ÔT³~j\ê=.5õ~<5\Í4š~¾š¥\ÒF\ÍÚ®B½Wú”úÀ-‚ú eõ\áES\ê\ÃL	õ\á\\)5\Ç?‚ú\èjõq¤2õq.úø]:57x-5\Ï=’Z0?E-\Òt –øzP\Ë\"T¨\å§S\Ë\ÓË©\ßS+÷¼ \Ö+\\¦6¬Ž¡6r\îPó©•\Ô&CjS\áO\ê\Óü.ê‹’\ç\Ôÿ\"©Í±\n\ÔÿJjË¨9õ•\Éeê«½C\ÔW\Ý_©m\ç7Q\Û\êj¨\í\ë¾P\ÛSL¨\Ø5j\Ç\ÕU\ÔwY|ê»—«©\ïþöRß¯l¦v‘–R»6™S?®5¥~ü\ØG\í\ÝXD\í;O\íoXG4u¦…tR‡\ZS‡º©\Ô\Ïï»¨#_â©£ºG©£\Üý\Ô1û\ã\Ôq«\Ôo‡¾S\'™7¨“Ý¡Ô©iK\ê4ÉŸ:#wž:TRgÜ®Sg¼A\ê\ï¶U\Ô?*ñ\Ô?o\ë¨sE\ë©s?†©ß þ¤Pÿ¹/¡þ;ò:o\ãL\ß?H“;;B“P¦É‡·\Ð\ä›Th\nCki\Ò\è4Å˜yš\Ò\Ñ4%¯o4\åC}4\åOq4\åo\\šJƒ\rMeú8Mµ¦-¼z—¶\È\\‘¶(fm\Ñx\"m±\Í6šú\ÚIšº—¦Þ£@\Ó8¡J\Ó8³•¦‘H\Ó,©£-á½¡-‰~N[’|¦E\ÜLÓŠÍ£i\Ïÿ¥\é”YÓ–7f\ÓôLŽ\ÐV\êÞ¢\Ê\ÇiÀm\Z}¾[A#M5\Ñ\Èkœhó\Å4D‘HC\í QRiÔ¬l\ZÝ ™Fw×¡1L,hŒ–.\Zs\Ýv\Z3i7µPŸ\Æò£a÷#hÅ·4Ž\Ë$“ðƒ\Æ\Õ}I\ã¶ÿ¥ñi¼¢4\Þü\Z?øM¼&¼J§	³\ZhøÆ“4\Ñ\Òý4Q?MfA[U”@3TÒ§nw¤­;O3Jž ¥B´5´µ\Üik·\\¦­7–\Ñ\Öv ­£mD^\Ó6²\ÆhM¯\Ð6\î\ÛL3ƒ\äif\Ç3i›¾\Ä\Ó\Ì\åi\æilšy†m‹KmK|6\Íbf¹0f9.¤m[©CÛ–³Ÿ¶}I\Ífe\Í™¦\Ù\ÜÊ£\í¬k£\íœüI³]\\D³\Ó\è¥Ù‰Sh»µªi»ƒ\'hö\Ëiöv54û\r´=W–\Òöú{\Òu´ý2i˜\n4§2OšËƒ\ß4\×g\Æ47V\Í-h1\Íý´\Í}Ž@;\Ò_Oó ¡yÞ©¡y\Ñh\Þ\nh¾«\Ñ|.\Óü°VšŸS \Í\ïX1\Íÿ•<\í”<—vf”\àsƒðÈœ$¼N;ww-\í\Òóg´\ËA»hW¦]\é§…\\\ØJ)úM^IÒ¤…\å§\Ð\ÂþE\Ó\Âm\ß\Ñ\Âûe´ŒH‹¬|M»\ÑSH»ùý\íV¾5-\Ú2˜v›ø“\ÛþwÆ\×ùˆ¥\Å¦\Ð\â«\Ñ\â[ci	òþ´„\ìJZÂ³tZbó;Ú\åÁ´¤œW´¤\ÎaZ2º‰–\ì”–\ÂÔ¢¥<FK[\Ð@\Ë8oD\Ë\È;H\ËÒ’Ð²V\ÇÐ².? e}±¤\Ý=…\Ó\î)Ü£ÝR¡e\ëKh\Ùwh§Zi¾\Òq\Õh\Î\É\ÓEh\Ðrý\ÌhO˜ž´\'\åiy\0–?¼ŠVhyŒVUC+|­G+Z£B+j£›@´\âCiÅ¡Ÿi¥\ÒJZ©µ\'­´FV\î«M+OùŸÁG´ò\É7´ŠEZ\å\ÚJZ\Õ\áVZ5ù/­&2˜Vs \Õil Õ­ûDk˜W§5t =54¡=_ó˜öü\Ç9Ú‹\ÊS´—\Ú\ëh/û\ß\ÑZVô\ÒZ…Ž´Wr®´\×VŸh¯\ëN\ÓÚ¼\0Z{\êZ\'ÝŒ\Ö³€\Ö9u’ö6ÖŸööŽ\ím\Ú\Úû\É\"Z\×76­ûd,\íCk-­wûNZ\ï\'”6€¥\Ó>q\ÚiŸ$—hŸ¢§iŸ\è\ÐU¦hƒ_–Ñ†C\Òh\Ãõ¡´\Ï\ê\î´\Ï\ÖM´:@ykHg;\Ð\Æw\rÐ¾¸*Ó¾ú\×Ó¾ö\î¥}\Ó¢}÷ÿDûJ MÁWiS\é$Ú\Ú\Ì)6ssžö+CDû\çIû\ÃU¤ý)=C›•ÿI›^A›Cƒi\ã]\è\nOnÒ•”Ò•ø¥te=[º\nTCWq§«öBtµŒetµÉ—ôÅ–»\èšg\n\èK\Ü\'\éZz|ú\Ò\èGôe\æþtž]§¿™¾\Ü\ê}y\Ì	º®þkºù\n]om}@¦¯X\ÕG_yl}\åGô•m9tÀ\'‡Þ¡\ÑÁ{™tøM9EG—¤S\Íõ\èÔ€::õû\':}AžEgT=¡3§/\ÑY\êW\é˜M%\ëÊ¢³\ß$Ó¹a\":÷\Þr:oY·ó)7·\Î\×YG\Ç÷‡\Ññºûtñ­Fºt‹]v©Š®¿²€nxr\Ýø\Þbºñs”nüñ\0}M¤”¾VÁ¾VRL_û¼œ¾N\ã}¦\Ý$\î\'\ÝdÞŽnz÷ }½¼>}}š}\ÃÞ•t³Ÿ—\èf¿_\Ð\Í]m\é[†þ\Ò-¢—Ó·fs\é\Û–Ñ·õLÑ·q\è\Û_;\ÓwHl\è;v:\Ðm\èvMºt»iú\îùô\ÝO÷\Ñ\í‹.\Ð÷%\Ñ,>\Ð÷É«\Ó÷\í¼A\ß\ç\çJw\ìÊ ;\íH¦»\ÈÝ »\ìv¥<õ„~ðs\r\ÝS¤»\íûLwÇ¿\ÒÝ»v\ÒwE\ÑOLÐŒo¡=m@÷\\ð‘\îõ€B÷zš@?‘J§{\ãQtŸS\è¾øbºŸw(Ý¯6‡\îÿŽM?µÀ–~J\æJ?\í@°¼M\\„\ÐÕ“\é\Îô@ÿƒôÀ·{\è\ç÷ÿ¦\ë9\Ò/_S¢‡øï ‡¤bôt}z¸š)=B¤IÒ¬§G%\Ðo\å¹Ò£¯\Ð\ãj_\Ð\ã†ô\éñ|\èñ•\éô„z\â)wzb\Ôjzby4=qö-=\Ù)žòBO+ë£§}4 gll g\Ô\Õ\Ð3>$\Ò3±¯ô,GcúýöTz¶¾.=»¤g\î¢?€-\é\Ö|£?¼9F\Ï]\ÚO\ÏË·¦\çýxLÏ›I£\ç?]H/ø?Ÿ…ø-z¡Q	½0ÿ8½°J^|2˜^\Ü	\ÒK87\è¥\á=ô²¥g\èeÆ‰ôŠ¸.z¥¦½Š¾ˆ^U\ëJ¯þ¾™^Cl¤× ¾ô\Z·Jz­\Æ<½v©½VGD¯\Û\åJo° Ð›7Ò›\Î?¦¿<\ëGoîœ ¿‚	ôW\Ã\ß\é¯3]\é¯ß©\Ó\ÛLS\ém\Ýlz»‘.½\Ý\'\ÞB»`1ý\ã7z\×ezO\àVzÏ•ûô~\Ðû\ìƒ\é}\á·\é}	\nôþ\í\rô~\×jz…9}`óCú§£¹ô¡\Ïk\è#5%ô/\ÚNô/û>Ñ¿jŒÐ¿¯{Oÿ¾¾þ=\êý{úÿTj\Ñ\'4=\é“1Eô\É\ÄAúd÷yú\Ô\Åwô5ú\ß\íô_\Òk\ì¡ÿ\Õw¥ÿ\Ý\çCÿ‡h\Ñÿ/§\Ï\ï}LŸw\ä1\äö´2”ü^2”®72”þ,f¨–\ìd,|,\ÇP;\å\ÄX¬%e¨Ã†õ\ívõ\ßšœ{Œ%ö‘Œ%\×=Z#bÆ²mÚŒe‡Ÿ1´-Œ\Ú)†Ž‘cù³(†\î²d†.ú”±¢´•±rÁ:\Æ\Êô:kföòD¥9Pw’A\Ò\ÑcÀ&‘Jw2\ÙòŒ¼hfPG3h\î$\íŠƒ.w•AOAOSY‡Á<\í\É`/‘18\î\Þ\ï]Á8™!ø±†‡\Í3DnCtß‰!±aH~´0¤þO\Ò.†¾—±jÿÆª+šƒ\íó\ï«÷O1V§ü?\æ¤?bnˆa¥\Æ1Œ/?c¬©-e¬­ÿ\È0ýò‡aú\ëc\ãV9†W—a\æ\Ý\ÈØ”2\Ã\ØTBdlª\nalš\ß\ÍØ¼¥•±ù\Ë>\Æ‹1Æ–¿–Ë½\Ëb\Æ\ÖcúkgÆŽ:C†:Ä°*;w¿`\ìúºŒa+\é`ØŽ0v«-b\ì\Ù\Ép\è\å0ö:_g\ì-¹ÁØ¿5—±ò\n\ãÀNkÆQo†³0‡\á<\Û\Ã8¸˜\Å8˜c\Ì8X¹\èBnºnÀ4\ãð‰xÆ‘9Œ#\é7G\×\ïax&Sžo;Ç·g\ßq™qüÁo†·z\ÃÛ£Š\á#\'\Çð\Ù\\\Ïðõa2ü¬\ÙÿøÆ©¢x\Æ\éeqŒ3›rgs\ngÿe\0\ÆAŒÀûW_úA.ÕŒsŸ\ç­\ÆÞ¹2‚Õ®0‚÷‰Á\çÁ]Œ‹fk\Ã$Œ\ËsKW3®1B;ùŒ°9Fx\Í$#‚«ÇˆøÇ¸±ó.\ã†\Ë7\ÆMô\ã¦ñFôøv\Æ\í˜	F\Ì\ÚFüþXF|òOFÂ•|F\Â\Ü #ñ\ØaF’ñ;Fò\ì#µˆ\ÄHm\Õg¤AƒŒtµ9Fº¬‘ñr’‘™ù›q—\îÆ¸›\Ëf\Ü-+d\Ü-`Ü»¸q¯,ˆ‘¢Áxðö	\ãa¶„‘\Ã[\Ã\ÈiŽ`\ä®e\ä\Å,bä¯›a\ä\ß\Ú\Ä(\Ýc˜3\n3-E£¨r\'£5eA%)£\ÄfžQ\Òò–Q\Æ;\Ä(û\Õ\Ê(_“\Æ(?KfTð¢<F…\é=FÅ—fFep£ª9–Q^Æ¨Ž\ÚÀ¨Y«É¨	b0jž2j\Þ\\`\Ô.\Ý\Ìhˆˆf4bŒ¦\'\îŒg½ºŒf\Í(F\ëº\rŒV¯.\ÆkñN\Æk£Œ¶\ã\ß£=w7££ô(\ã\í£ÓŒwZW]\ÜF\×uœÑ­´€Ñ½Ç—ñ¡¼…ñ±õ2£W®›\ÑûÀ‘\Ñ÷[Àh­c|\Ê2>½œe^Vdv¥2† <\Æ\Ð@,ch(1üÁ‘1Ü“\É?\Ê5Dc\ÛŒ1/\ÆW\Êø:ÿœñõƒñMv…ñ­bˆñ}\ÇU\Æ.dLœS§¦Sù‡?\ì2~”³\Ó\àK\ÆôƒãŒ™³L\Æ\Ï\ÜoŒŸ­]Œ_\Ëú¸:Œ?\Âd\Æluc¶3—1\ç(dÌ¹§1\æÞ§3þº\é3þ6‘ÿt0þ¥º1\å\Þö1\å÷\é2d#L\Å\ÃR¦\Òø#¦r–)Se@\ÂTù\æ\ÃT­b.\Ò\æ0ý#1üe.þ\Ñ\ÈT\ßg\Î\ÔX\å\Ç\Ô\Ê%0µ>0—6ª1—É–3µi3u\ì¯3uâ½™:¿N1—\Ç&0õ¨þL=VS\ï§s…y\rsÅ“\ÃÌ•ºóL‚‘=“\àT\Ï•˜\ä\ãLx¦“	ÿ\Õa\"UùLô\Â:&\ÚV\ÊdÊ`2ÿiü.“\Åa2±K=LöÂ…LöÉ¿Lö­…LŽc“\ïñ–) f1k\ß3ñå—™x\Âr&^qŸ)JaŠf†™’õ™’ôsLýgæª€@\æªò8\æª7Lƒ\Ëû˜¥JLC¦!\à\Ë4ôtg\Z\é•0Õ¶0)IL“\ÓML\Ó%\ÃLSÝ‹L\Óñ£\Ìõþ·™.‡2ÍŽ™07¦37{d3·h\Ì2·p_2·œ‚˜[žš0-\æ3-o\Ô2-\ßobZþranó2·\åd\î\Ø`Á´IIf\îÄ³™;;\\™»\Ø;˜»¤FL»¡L»ok˜»71w;\Ø2\í÷?`\ÚJf:0˜©Ç˜o–3÷.³c\î\Õ]\É\Ü\'\ne\îó¸\È\Ü43÷÷®eðx\Îtj©b:[,d:_He\Ì™_ldº\ÃtÓ¼\Æt_x†\é\Âtÿ‚0).f\n±gzü›y¨/\éa–\ÄôH&3=^ÿ`zšžfzY3±Ú™\'öG3}}˜¾g3O\Ù\è2O¼\Ì<t”y:œy\Æ}šyö\Ìa\æÙŠ^fÀ\ã|f¯‹tc†y~P‹ügŠy\é !ór\Çm\æ\å\á\Ó\Ì+™!ùºÌ_b\æµ\Æ0f\è\Ó0fI“¾*þ,þÁ’qc32o7ó†\éaf”b2óVŽó¶\Ó36^ƒ›÷û¾„Ws™À\æ1\ï$92“†(\Ì\ä\×™)•<fj\èbf\ê­fj¼32\ÈL³>\ÌL\Û\Ég¦{t03oŸ`fu0\ïq÷3³µž1³K™O1y–1E,b\æ\ïº\ÊÌ¿Eb\æÿ\ÊcD`•¨1‹Ê™\Å3‹\ç1K4?2K^R™%½5Ì’i1³\\m„Y.Ä™•Ý»™\Õ\ëc˜5‡™5¿Š˜µ¤¥\ÌZ§%\Ìz¿8fƒ\ÆlH\Þ\Ël\è\Éf6\Þ0›ˆŸ˜MvÌ§\Í\Ì\ç\Ê^\Ì\ç}ß™\Ïÿ°™/\n˜­\Þ ³u\ì)³}óVfÍ“\Ù©\Ì|kqˆ\Ù˜\Ïì»§À\ì\ß\Í\ìŸ=\Ìp`<¼\Å\Ä÷2‡”G™C6o™\ÃV\ÅÌ‘\Ù1\æ\È_\æ¨JsL•\Êü²¬Žù%v”ù•¿šùM\ÌüP\Îü~«Š9Y\01§Ö¨1<ÎœY5\Çü• \Çüó;—9{N‰9û¬9;þš97–\Äü·G•9ß›Àœÿº›¥ mg)<–c)Qÿ°”5XJy&,¥Ž2–²\"K\åFKu\ãa\Ö\Âˆµ°b-*\Òb-^ÀZ<\î\ÅR\ïz\ËÒ€Y\Z\è<K#ð(K³`	kI\Ùk–v0K\ç(\Ê\Ò\ée-³tÚ±tß¶±Vöo`ûYD\'C0^ÁubX‹\']\ÃaQMüY´c1,\Úó?,\Ú\ç­,\Ú÷\Í,†÷m³¾\Å\Ø\Çb…U±Xþ²Xý­,¬2Ÿ\ÅÞ¦\Ë\â°8b\r/\ï>‹o±øqr,þHKð©’%4\ÞÁ\Â\Í:YxžK´Ë%Q{Â’h-`ID\ïX’$KzøK&eÉœ4Y²z,ýE–Áò^\Öjº-kõ\ç\Ë,£º¬5‡fXk\î¬d­[þ†µ®Þ‰eò\è4\Ë,À2?·eq.‡ey,Œµõh\rk[.\Ë*—\ÎÚŽþem—y²¶{ö²lŠX6O\Ö\Ît\Önd;\Ë*c\Ùmg9[°œ¼XÎ¿/°\\\Ö8±Ž@ú¬£Û‹X^^+Y\'½\ï±|µ¬Y~c®,¹^–¿\ÝR–Œ\îÿ\ìc¾b^Qc\Ö\ÑYã¬À‰&\Ö\ÝG¬wÏ².¼{Ìº$‰b]Šöe]ªna]^²®z¿b]\rNa…\äö±®\éZ°®\Ù	Y¡eº¬°-u¬°7Y\áŠ¬¨­+\ÊÆšu+\á+zQ7+z?—}/œu{9™¿.•Ÿð“•¸c5+±¶ˆ•üi)+¸\ÇJ›…X\é„=¬ôÜƒ¬Œ(ˆ•\Ñ\Ì\Ê\\²²\Þ)°\î.ÿÊº¯Ÿ\Îzà°›•“¶žõ(	a=\Î*c=9ù•\×”•ŸU\Î*½f\Ì\Ücü\Íe\ÂY…\ÅÝ¬Âš¬¢ªBV1\é«x=\Æ*‰šf•ù\îg•/²\Êÿ^1s†U)¿‰Uu0øºXU‡Ï±ª/v±jöi°jWø°jc%¬ºkKYõ—¬†ÿó\ÓtV\Õ4\Ô\Êz\Ê\ï`=3Lg=7Sg½p‹`½ð:\ÃzñÏŽõ’õ‘\Õ\\™\Ãje­a½þ=\Îz³ö\ëÍŸ\Ö;\Ú=\Ö{\Î_VÅ‚õ\áÀ\ê¹\ØÁ\ê­\ß\É\ê[·5h=\Î\Zº\à\Å\Zú\Ü\Ê\Z¹“\Í\Z\Éd±Fº¦Y£a\ïYc\Â×¬±û klcww°¾¹¨°&*XSZJ¬©\Êq\ÖTK\'ë‡škzó\Ötöw\Öô/œ5ƒžf\ÍÌ”±~šÀ¬Ÿ	ñ¬Ÿÿ@Ö¯gÑ¬Y‘7kör,kvfýU(cÍ¯e\Í\Û³æ£»19\ÓL\î\Ï &o°Sð\Ô\Äž?\ÇM³1\ÅySŽ\ÂT)J˜ª…\0[h—-_Ž-:»[Ô¶S#‡aj\n¦f/ÁÔšý±\ÅÊ‰\Ø\â¸LC\Ì\Â4\ç0Ídl\É\Úl‰\ÓlIB¦u¾\ÓJZ€-ƒ8˜NW?¶üþ.lùœ1¦\ëÑƒ­P\î\ÄVl¨\ÅV\Øù`+óå±•.bD‹J1  \æµ1ÒŠŒôv]‹Á ”hŒl\Å\Å`ž\ÒÀ{kÉ°Ç¨!%\Íù+F»nˆÑ—8bÌ”QŒ9´cmÝ‚±-`œµº\Ç\Ö\ã<·Æ¸A÷òyŒ›q\Øfb‚¨9L¸ \ê~\ÆD\Ï\Z1\ÑH&¹Ö‰I˜´`“\í·ÁV-lÁV­üƒpQlu*€\î\ÑÄŒ–i`F:f”\è‡½WÇŒ¹s˜±”ƒ¿;€­I\Ä\Ö\ÜS\ÅÖ´”a&9\ç0\ÓeN\Øÿ!l£ufö\ã4fn³\Z3O\Z\Ã\Ì\ï\ça[aV˜\Õ#6f½\Þ³\Î\Æv^a;¨0¡?¶ó)Û¥ð\r\ÛmR‰\í¶\nÁ\ì\Ã0l\Ç¶§\ê;\æp\Ç\Ûð\ÛÛ»	s”\"˜\ã*yl\çNlÿÀ!\ìÀ_U\Ì\é\\\æ¬è‚¹p¯b.ƒ\ØA\Ès\Ýü\Zs\Ç>c\î\æ~ý\n\æ^ö;\ZùóºÕ‚\ÛWß…°Ã±“#}˜\É\Ì\×ó\æa;¥Ý…ZkŒÝ¢ƒ=‚ag?Æ‚œa\ìü\ÒT,x\í2,ø£\'vI9»D»‡]:\ä†]\î7ÁBÞŸ\Ã\Âü\æ±ð\Õ)\ØõÇ—±\È;[±{X\Ý‹\n¶\Ân–a7Ëžb\ÑY±˜\î,\æ\ëS,V£‹\ßò‹wýŽ%\\‰\ÆB¶b‰Eÿ3×‹Ý¡ŽbwRcIW+°¤±\ÃX\n[Kõ„°4\æ/,\ío–¾T‚e:7c™õK±\ÌE,K¸\Ë\Úp\ËÚ£‚e¹ˆ±»‹Ã°{²S\Øýö`³3ö\à¦3öp	{\ØoŽ=\æ\ì\År\ï*cOŒ³°\'öQX~¶+ aM\æX!ìƒ•8c%\nX\é½Z¬¬¤«hÀª¦´°š\r&XÍ…z¬Vb‚\ÕecõK`\r\ç5±†B¬\á\Öð·kT\ÌÃšb$\ØSiö\ì5{\ÞÜ…5\Ûa­„\ßX+«k\í¯\ÂÚˆ¬Í¥k;Z€µ5\Øz.Ö¡Ü„½¬°·oÃ°w¹Û±÷ò±÷&\ãX×’³X\Ù\ëfM`¢c=•e\ØGµ\×X¯•\ZÖ¿\Ñ\ëwB±þc\êØ§6wl\ØHA\æ°ý\ÏØ˜\àö•²ûv\Éû.\ïˆ}_9Ž}?¯†}ŸzM¶ObÓ6\íw›Î¿‹\ÍD^\Åf¢—b3\ã†\ØÏ¬\ì\×\"\ì\×\ë\'\Øz4ö§þ5öw\ÑM\ìo\Æ%\ì\ï´ö\Ï3ûª‰ý+\×a\Ëmµg+g/\Ð\Û\Ê^\è\É^p~€­\Èqc+\ÚÍ±=·³•\Æc\Ø\Êö\él\å+wÙªZ\ïØª«E\ìE\ê®l59”½\ØÆ‰­\à\Å\Ö\Ø\È\Öø»Ÿ­\é°µ -l­\Ñ\n¶ö²=lm7y¶¶w[û½¼Ï†­ký­;²Œ­\Ç:\Ç\Ö+Re\ë\Õ%±W\\C\Ù+òK\Ø+^]efž±[6‰a\Æ&¥m`“…\ß\Ø\ä-OØ”ó8q|ÀF\âþ·\Ï?³‘\ïþl\Ôô›\ê¢Ê¦y¸±iCû\Ùô\êl¦N2›Ù¾ˆ\Í*\Ëbc\ïª\Ø\ì|M6¯Þ\Í\ë©bš+\Ù8úß¼\Ê½©e‹]Ž±\Å†\Ù\Ò%\ë\ÙÒ¤lv-k±g\Ë‹\Ùú¾_\Ùú©\rlý\æöª\ç\0\Ûh\Ç$\Ûhp9\Ûøb{\ÝiŒmr\nc›ª¦°MÃŸ²\ÍHd¶\æÁ\Þd1À\Þ4\Ëfo69À¶pa[n»Å¶‚£\ØVNl+#¶µ¹ˆmýK\È\Þ~½‡½£ÙŸmšÆ¶\é^Ä¶-wcÛ™±\íU\ì=h\ÛÁÏ…½Wn-{_h{„:{ÿ—1ö\Ø\ã\ìb¶\ÓZU¶³\ÂZ¶³›„\í2º„\íò/š}H}ûHU+\Ûcl˜}´y€}Lo–}\\\í&û¸Ø–}b½ûDvûDwû\äº2¶·\ãr¶/S‡\í[T\Èö·\ÔcŸ\â.fŸ¾ö˜}fþ$û\ì²K\ì³÷\Ú\Ø·þ²/<Ša\'³/“6°¯8}d_©\Ä\ØW½w°Cø?\Ù!¯d\ì0¸™¥ÈŽ»ÂŽ\ìPg\ßfßš5c\ß6\Ógß¾ ÃŽÁg\Ø1žq\ì˜\Ä7\ì\Ø#\Øq§W°\ã†o³fB\ØI/\å\Ù\É\r\Ã\ì4+vºùv–\ëoö\Ý\ÕBöÝ·v\ì{ˆûÞŽ-\ì{\Ñ\ìûj÷\Ù÷÷4³\ï²³•K\ÙujØ(U\ìGv$öcƒ)ö\ã\Ê\ì\'\Â\ì¢\'E\ìbù9vq]\Ü\Ï.ž\Ù\Â.y­À.}PÍ®44`W\Ñý\ØU\Å\ìjTÌ®«ZÈ®A\Ùõ›V°\ã\ìg÷\Ù/$ö÷£\ìL‹ÝŠ\\b¿\n#°\Û\äÿ±\Ûô\æ\Øm\è»\Ìn3Žb·g±\ÛZg\Ù7—²;ÿ\×\Ê[2ö;\Å:ö\ÕG\ì\Û\Ø=+’\Ù=\Þ!\ì1\ÛØ½‹\Ýû}ú\Ê[\Øýž†\ìþ`	û“\á[öð;ö\ÈÑ«\ì\Ñòbö;‹=Vq…ýmµ-û[µ*{²<–ýTcÿú\Ð\ÂþQÁþ³b	û\Ï\\,{.p{\îf{®ú5û¯®7ûŸð0{\ÞB•#gþ•#w™Ç‘w\å(0®pÜžs¼.\à(¢p”¾÷r”W\ÍsT|!Žª\Ëÿx<\à¨FsTs\Ê8ªß¼8\Ïp	s\ÔÆ8\ê\×ws4.l\àh\Äm\æhÄ¿\æh\"!œ%º-PÎ²®\í\ä\0ŽÎ’ Ž\Î!ÎŠ½œ™—8+\Ê\Ý9+Û£8+\ß28\ÄŒž\ç€!\Û9$¥Mh1Â\Þzp\Èd*‡\Ì\áÀ9™\ÆAF\ç9\è6‡º)‚C½>Á¡;\Éqº{9L\Òy3ø‡ù€\Âa\íYÀÁ§9\ì[\n\îôn/©’ÃŸ\à¨¾Að0WU\à\àKk8øfŽ8²™#3S\æ\È6§sd>‹9«^Ÿ\à¬þ°•c4qŒo°9\Æ\ÓZœ5\ÄuœuÔ¥\Ó}:œ€-g\ãzs\ÎF7Ž\Ù`(\Ç\ìKgS€³­ÀŠ³c«\'g‡\ÍmŽ\rVÅ±‰\á\ì\Ê<Ï±\ÓÎ±óô\ä\Ø]¿Ê±§\'rö6söM>\à\ìg|\æP\Î\å\Èy\Æq9\Û\ÄqÕ”r\Üj\Ò8‡\ÍVs<’VqŽn~Áñ\âUp¼\ZsŽIhœ\ãW_rN:\åx·{p|:ô8¾VtŽÿÁVŽ\ØY\Î)I9\çô¡3œÓóœ³¢P\ÎYw\ç\ì\íN\à†vÎ¹0\ç’Ÿs\é\àÎ¥\Ö&\Î\ÕóÕœ\ÐôtN\è(›®q\Â\Ë>q®+\0œˆ3Nd\ë%\Î\r\ê)\Î\r\áÎ‚­œ¨<œs«°m™Ã¹\r¯\ä\Ä*[qbo|\áÄ»\î\â$h¦q’p\ÚWr>ž\å$>Y\ÈI\Úo\ÆIšV\ç¤ÈŸá¤„\×sRnDqÒ—&q2G9YYœ»\Özœ{o\ä8÷&J8÷\å$œû†9œûƒiœ\ì#œ\ÞQœœJ#Î£‰§œ\\¯vNn\éSÎ“W_9y§~qò^Np\n´+9EF9Å”\'œ\â£\Û8%\ÃcœR­N\éúhNyøSNÅ©N¥±5§ŠlÆ©I¾Å©}±Sû\ã§~ùnN½§qœ\Èi’´qšº\×qš&pžz¤qž)l\ç<[\Èy\æ©\Ìy–ù˜ó¬Bób¯óòg§¥Ð‘ó*Ã€óªý§-\æ¼\á†pÞ¬‡8op\Ú\'\ë8\Å/8S79o·¿\â¼\ãI9\ï\Ö÷p\ÞoŒ\åô\ìº\Ì\é}:\Ã\éƒ\Õ9}ôËœþ…nœþe\Ï8ý\ä5œˆ&\Î@‘7\ç\ÓþœOew9Ÿšõ8ƒ^1œ!¿œa\Õ	\Î0k€3\Ì?\Ì•\Û\È+³\àŒ}‚8\ã\Æ\'8_\Þ\ã|õª\á|\ÛÂ™\Ô$r&\Ï7r&£9“O²8?V\àœi\Ò2\Îô\Ú4\Îô1\ÎTÈ™\åü)¨\äüyz‘«˜‘\ÇUü—\ËUºg\ÍUúp†«L\àª>l\ä.Òšåª›½\áªg\Þ\åj*|\å.\é\åjorµ\ï8su\Z¿q—\ï\Í\å\ê\ê\ésu\é®\\\Ý\æ»\\½ôT\î\n{\îJ{.a\Ûn.\á\ãK.ñu \à†l./\Çw°¹ g¬—\ã’\Úq!yw.”\Ä%_yÍ¥¨ü\æR’‡¸¨\Ñ..3S\ËR°\å²Wjq¹õC\\^m—Ÿ\æ\Ëx?\ç\n\r¶s…¯Vsq\ã»\\¼\Z\çJp%®Lq†«¿«„«ók0\Å]\íq»:£»ºz‚»zP…kˆÀ\\Ãý\\ã¼§Üµ£u\\\Óg–\ÜõÛ·s\×\ç<\ânðæš‘\ßp7»\×q7\Ç\ZrÍ¯r·\är¸–T¹\Ûv\n¹Vÿûµù\Zß¸»ûör\í?xr÷¬˜\â\îy\ã\ÅuÈ\ä:üp\å:\Ìs÷®z\Ç\Ý›Á\Ý\ÇrÃ¸ŽOz¸\ÎómÜƒ–Üƒu—¸®•×¸nŸ/pÝ·¸‡Jz¹‡C“¹‡#\Ø\\O§s\\ÏŠN®—Ÿ	÷)ƒ{l\Ó^î±¶4\î\ÉÎŸ\\¿L®Ÿ\Þv\î)6÷Œ|÷L„9÷¬\ÙS\î\ÙÝ¦Ü€\Ú?\Üócz\Üó“÷‚ûGn°\Î\î%Mî¥†\î•x]\î•)6÷ªu÷Z(›{­Û„*\È\r=\Ò\Ê\r-mã†\ÜÀ\r{·{§q#u¸}ªÜˆ!=n\Äo.7\ÒÏŽycŠ{\ã\ï$7j\ÏK\î­2÷Vµˆmuž{[yœ{;÷(7ö\Êunl\Ì?nüIWn©œ›po	7¡ü\07qW7q>€{G˜›‘\ÌM\Ê\Ì\ä&e½\á¦\ÛÀM\'+qÓ›¹H7£\æ\Z7k	\ÄÍŠ\Ë\ç\Þ5YÁ½k\ÑÉ½\ë/\æÞ­\åp\ï/½Î½/<\Ê\ÍN\Ä}@\Ò\á>\\q^\Ø\Ã}˜ø‡û\è2•ûø››[ý†ûd\Ù\0÷Éˆ7\Ì-ð\çNÜ¢\Ò\"nQó\"n1j\Ê-qr\á–Ys\ËðýÜ²\Õ~Ü²Ý®\Ü\nCSnå®½\Ü\Ê\'\Æ\Ü\ÊSÜª\Þ\Ü\ê…òÜš\×\Ú\ÜZ¡\Z·nv·Þ©–\ÛpÞš\Ûø¤žÛ”\'\à>½¨\Ç}¶Å›û<\æ3÷y+‡ûB÷;÷\Å=÷%ºƒûòH1·5)Ÿ\Ûf3\Êm??\Ê\í0\Í\âv\ÜJ\ávL[r»\äÔ¹]·\Öp?‚AÜwr{O¤q{¯+r{\ãE\ÜÞ¾\Û\Ü>ø.·\Í9nt·¿¸ƒ;ðlw`ÊšûIu÷“k6w\àI\æ/\î\ä{\Ûp‡kš¹Ÿ/\ØsG¦rG~Ÿ\áŽ\Ö]\à~Qcp¿\ÜN\ç~ùÁý\ÖWÇ\èþ\Èý\ÌsdTrq§‡l¹3¢b\î\Ìx?÷§\åþ&s~=\Îý¥úžû\Ë\ä2÷·ñzîŸŒ!\îŸO\Ö\Ü9\Êy\îü\í>žü¶Nžüû2ž‚YO\á¡oÁ¼2O1>†§\Ø\ÓÀS’n\æ)[½\å-¬\á-Š2â©©+ó/X\ÆSP\ÆSÿ~§\é\Å[²¼•§mu„§\ã\á\É[žW\Æ\Óe¾\ç\éU\ÖòV>i\æ–ò €\nx„\Ù<\Èg-|\Z\ãÁ§xˆ\Â+º³–\ÇP™\æq’Uyœ´z—•Ç·k\â	·«ó„³\í<\É\ëžŒÈ“‰ód¯vòVŸ\\\È[ý¸ˆg¨ñðŒ\"*xF\ã;x\Æ6Ÿy\ÆGªxk	ª¼u\Ù\Ï\Ôù!o}f\no\Ãö}¼\r/Bxñ¼[¯ó6\îK\ãY¬\ØÍ³t2\âYV{ó,?<\çm}D\äm\ã¦ð¶o\âYE\Åñ¶3\ßòl¢+y;/*ðv^~\Ï\Ûe|‚·\ËV·\ë¦3\Ï\Îò1Ï®ô$Ï¡õ>o\ï\ã¼}q¼}JxŽN\Z<§k,ž\ÓO]\ÞA\ÙN\ÞÁygž+o„\ç\æö„\ç\Î}\Å;ò©žwT=œwtb\'\Ï+û\ï\Äúd\Þ\ÉU}¼“•î¼“s<\ï\Âyž¯þ]ž_v\Ïý\0\ï4\ä\Ê;³Ñ‘ph/ b/(Ð‹T\à\Ä;—õŒwþû}Þ…öL^p\Ê5\Þ\ÅeOx½\\y—_\à]Cx—\rœxWØ«xWsyWƒ³xW\ïñ®¾4ä…¬YÁ»W\Åõ\â…\ÙñÂ¼2y\á^ž¼\ëÁ\Çy\×\ï\\\á\Ý8vµ#”u\"ŒMyÁ»ž\å\Å\ìzÈ‹y\éÄ‹}(\æ\Å\Ó\ÂxñN\é¼ø¼„\Ïy‰¾Þôƒ¼$“N^ò/¼ä¾‡¼Ç½¼Œdo^\Æ\\/3x/3ö/k‹	/«$w÷\Ì!Þ½Ô‡¼û¡©¼\ìoÁ¼\ì\éÅ¼‡jy\âx¹\Ûjy¹Mµ¼¼÷i¼|›¼\ÂûyEwTyÅ¢S¼\â\\”W’1\Ë+\Í}\Í+sð\æ•\Åü\à•\Íò\ÊKnó*¬žò*2³y•jt^¥Á?^t‘W\Õ\ÑÆ«¯ó\ê\Ö>\åÕ…¶ó\êI[xõ&^½s8¯\Ú\Èk¸ú÷´µŠ×¼o¯%z÷\Z\Æx¯´òºlry]\r¼®‹\ßy]\Ù>¼\îmd^÷\åÝ¼mÞ‡\Æ=¼/\ÎñzLy}¬`^ßš#¼¾©¼¾ñ¼~¥£¼Oª£¼O\ÇxŸÎ½\â\rž–òŸ\à\r“xCµ\Çy\Ã\ÄB\Þ0b\Çv\É\á\r‡\êñ>¯\äñ>¿ù\Îûz—ÁûV2\Ãû~”Ï›Xó&Ž½\åM\ÜXÏ›¤b¼)ó»¼ßŸ¶ðþ|Œ\å\Í2\Óx³‰N¼95U\Þ\ßQKÞ¿?\é¼ù1o~b-o~ÞŠ/\ïL\å\Ë_\0ù\n:ù\n\åùJzb¾R\Î¾\nP\ÌW1²\à«D\æóUz\È|\ÕŠü…\Çüø‹\Çø‹¸ò|5ñj¾Úº2¾š…¯V=\ÄW\ë2\åkð\Ìø\Z•>|._s§&_³c7Áˆ¿,\á\'_W§ƒ¯Zóõ®:ðWöó‰,3>qû>1µ•d-\ç“\ì.ó¡“–|XÝˆO¹öÿâ£„A>JûÊ§.$ó©`\rŸ\æ®Æ§]¬\à3\"I|Æ“x>s¥\nŸ•~œ\Ï\ê~\Ìgÿ~\Æ\çüö\äs«’ø¼+d>/Õ„/H÷\â\ã\Ë\ëø¸%{\ì\æ‹lšù\â³\Ö|	=Ž/5k\àK÷\Åð¥^š|ýþ§üUAy|ƒm#|ƒ÷\æ|ƒ‰?|ƒ_ƒ|\ã\ÚUü56Vü5®\Õüµ«–ó×©Lñ×­tä›˜\Ìð×§\Õð7¨?\ã›=\îâ›•ˆùfu\"¾Y}-Ó›F¾ùacþ–s/ø’;|ƒõümr*üm¾·øV\Ë\Ù|\ë3\ëù\ÖÙ“ü\íGBø;#=ø»l™ü]³‰|[~\ßö\Ê0\ß6<—¿;\ï ÷—\Ë|ûI>\ßþ\×C¾C¿–*ˆ€\ï´a\r\ßi[\ß\å\Ð*þÁs\å|7®\ß\Íú6\ß}W\ßý÷Qþ‘:*\ßc‡ß£ „ô…\ßóˆ<ß«°ŽlG\"ÿø­4þñTyþ‰uþ\É\çs|ŸXu¾O\ÂU¾\ßV%¾¿ÔŽ\ï¿Óš\ïpÿ”r/ÿ”S\rÿô›Mü@\×Kü \Èþ¹Àüó}±ü\Ð~cþu\ç?üE\Z?b<…I\ÜÇ\Ì?ÉZ\Í\àG\Íióoú*óou\ß\ãG?\ä\Ç_À™ýÃû¸’\ïõ‹Ÿ°ô0?ÁY‹Ÿó\ïD~\â\'qƒøIFùi—NóÓ—›ð3¯©ñ\ï¾ZÊ¿w®†ºÀ\Ïf\Ü\â?œ¼\È\ä\È<¾”Ÿ÷EžŸos’Ÿt‚Ÿf¿P;•_ø±‚_¤V\Ê/š±\â/\r\â?Z\Í/õä—¾‰\äWX\î\çW¸ˆø©‰üŠ&S~Å·B~\åž~¥¿-¿\Ê\Z\âW‡ókV\à×±Zùõ&~}½„\ßðÿû£\Çø\Ï[oó›·ñ›»2ø-»\Õù-3¥ü\×CMü7\Ûnò;\Ô;øûó\ß:—ñ\ß~\âwÿò?\È)ó?\è¾\ä¬W\äl™\ã\ì¬\à÷N\ß\â÷Eóû\×}\ãh\à†ò‡\Ø-ü¡ŸGù\ÃQþg1þ‹\Ä\á¤ñGfó\ÇR\Ùü±fþ—­‰ü/5#ü/“¯ù_W:ó¿¸ü¯œ\çü¯qø\ßønüoŽòüo¾¹üos+ø\ß\Øñ\'\îð\'oñÀuü^Nü™\ÔküŸ\Ì\nþÏù?\'\ÖòµŒò\Û\áÿ\Ñú\ÍÿS\çÇŸuBøs—\æøs«ù¶òÿ‰\Â\Òq\ÂP°@a¶^°\à_ X#(~¾(Pa¿¨X\èT³ª9wþ^ó,:c)P\Óð¨y\Ó\ZCGš¤{‚%®Z;\Ë\Ë¬hÏž,ÿ·@ {.G ›\Õ.\Ð\ë—	V0Á\nÛ¿\âq¶\0\ØøV\0œ|* ­½* õ¸	\Ècog\åb±\0ùb/@Xô”¥€:uL@[ðA@Kž06	˜\r÷,¢\0³]/Àn\Æ\ØRû\îs\'j\\À[Ið|#|³d\àøf ¬G xg.¶¡Ñ“\0¸{F ÉH~/¬\"\Ñ«.\ÅVŸù%0´|(06Àk\ïª\Ö\Þ÷¬K,˜¬¯˜\ì˜’p\é:o\é–3‚\r¤`Á†ƒr‚\r¿O6>:\'03ÿ\"0û™&\Øt5A`\ÞúG`\á\n¶>X)\ØÖ”!°²X¿%°~ø?7\Ûgt6¶I›Ë¦‚]¯[\Úw\íVS]ò€À®\ËS°\Ç^S°\çn’`\ï\â}‚½:û\Ó,~Wœ\Î;	œ5\nœ/o¸n\nJõ®Ò‡\×7m7ñ„Àý„†À=/BpX1Ypø‡Xp\Ä\ÖBpä¬ž\à\èþõ‚£e\Ú¯Eq/¯ƒ/_¦\àXQŽ\àx‹²\à„\ÙVÁ\É‘À;ð¨À\'ôºÀçº®À\'¦I\à›KøŽoø\Ñlþ\Û\Â§h\Çý‚sºG\ç\å\ë4\äÁ•³‚‹ðiÁer–\àraœ\àŠÏ  \Ä\"Opm¤I\Ê> ¸®¼Tp]\"ˆ\Ð\êD\ÜÿŸR}A\ä±U‚ˆ¥\à\æ³BÁ-“`Aô¾LAt{°\àv?]c‚7Hs\ÆL§\Ô\"H8E$l$f\ë	’\äe‚$\ç$ARÀ  ¹?U¢z[2öHZ¥!H\ë\Òþd.\rdrh‚ûˆ@}\ÎLóL,È™\Ö\äú\r\nž<\Ú-x21!È»z]\×ò}f‚<AÑ¹A\Ñ%® \èE” \Ä&YPúó˜ t6LP\Ö		\ÊQ;Ayƒ· òÁFAe9]Pù\ÙCPÕ’ ¨q\ÔÔ¦X\êGB\r’PAÃ¶/‚\Æ\'!‚&\Ë:Áó…ú‚\ç·\×\nž9.xñ°N\Ð*IÐš:\"xõ*xý Mð†÷GÐ¾p‘ ½¥S\Ð\á\á \è~\'\è\ìý.xg<+xwQ[ð\îÎ\à]÷ˆ\àýMÁû/‚®¤A7\'R\Ðmp[ðá¨‡ \'\Ò@\Ðs\ÏNð\Ñþ»\àã€‡ 7EY\ÐwôÃ §…\àÓ‰\\Á§´>Á\àm?Áð£‚\á\Äs‚‘}g#yy‚Ñ•)‚q\Ø@ð\Å^A0Á?&˜¸7\'˜ø\Ø)˜´œL~„Sn‚ß~L	¦›?wütIü.\èüž¦fM¯	f¯\Ì\Öi	æŽª\nþ*\Ó›‚\Ð%Áü\'‚ùX(\çvG(—n ”{pP(—÷^(\ï/T°•i\nœ\î.¸—!\\ð•-Tµ”.ºü\\¨–}_¸\Øð¬Pý}µPsñ¡Q(Ô² µ\ì\ç„ZÂ¥ö¯„\Ë~µÆ„\Úi€P;\ÝM¨¦$\Ô=tB¨›L¨÷x¡@\ë\Z?\n‰úuB	I7	É††BxK¶¾b$¤\ä5\é!µ“\'¤UŽ	{\\„¬\Î\ÓBla¤­(\ä\èÁBõŠ\ÃNr+\ï\nENšBiE(sx$\ÔM\Z\èð„«ƒw	\rç›„FDU¡\ÏXhdó^h\ìg\'\\+‡	×Ž–M2ö\×z+\\8 \\7.\ÜðŽ*\ÜóN¸ñ§‚p“n\Ðü’¡\Ð<\ÌRh\Þ\ì/´¨VZô®ZN<nµY(\Üú¶E¸m\ÂNh½´Rh}\'B¸]\ë–p‡Q¢\ÐF\í–\ÐfU±p—E¬\Ð\Öù»p·\Ú]¡½n…\Ð>eÐ¾ô·\Ðþ\ÏE\á^x³ð@ò\Ðù\È5¡Ë–F¡KKµÐh&t\ï²\ß\"<l¿Hx8\ÄYxø\íoá‘µòB@¡‡\ÅO¡\ÇsE¡\çÃµ\ÂcVy\Âc{´…\'>õ	OZmzG}úký?M	\Ïhf	\ÏÔ¯†\n„AgJ„A%#\Âs–[…ÁòK„ÁG„Â‹K„—®E	/¿\ì^1\Û\"¼’;-¼\Ò ¼2ý[xµ\ÜBx\í½Tzh©0,S$û+¼?#Œ„\î	o,[\'¼A} ¼ù\ÈSý;H3]\'Œ•\æc\Ø	5žm	\Â;\ï…Ii\Âdß½Â”&P˜VvS˜ö6O˜.\ç\"L\×\ß\'LŸf`\Â\×\áý¯…÷ƒ^³÷\ç	³o&	l[.|\">´>¼›$|Ø°]˜³\Ý_ø\èa0O¨(\Ì;Š	ó7\\\æ_¿#ÌŸ\Ìš\ÔGž‹‹¯{	\ËóÆ„•¢Qaeù5a\ÕÿÚ®^—+¬…Õ…û…56Ï…\r¦\Â\Æ÷Ë„#aÂ§€•ð\Ù\á.\áó\åñÂ–¡Â–û„­=\ÂW…!\Â×´{\Â7A«…\íf\ÂöP]a\çª\ï\Âwk´„\ï	»4“„]m©Â®\ÎJaw†·°g\ëAa\Ïn}aŸÿUa_\ç.\áP\Ìr\á°ÿv\áð©q\áð\Í\Â\á¤o\ÂÏ‹\n?oò~;±Xø-\ß@8e\n§÷\Î(\Zj\Þþ\\)üuó”pÖŒ\'œ;> œK¥\ç*\nÿž\ÉþóŸÎŸ®\ÎW¤\àr\Ú{p\ZW0½‚+œ=Œ+¼~ˆ«üV\ÇU§6\áª?ªñ…\è|\Ñýµ¸\Úýo¸\ÚK#\\­EW\'©\â\Zò]¸Æ|i(¾tr\Z\×a[\á:µør¾®Kœ\Çu\Ë\ázKúp½\Ð\Ýø\n\æ8¾R²_¹‰¯¬]€ã„„‡8\é¢\ru\\\Æa~#Ž¨\ÆÑ¥\"œ\ZMÃ©¯~\ã´.8­]§G\×\â\âÎ&\áŒ\ç\çq\ÖeCœßŠcÿ\\p\ÎJœ;ÖóÎ´ã¼š\Í8\ÛnœŸ‚½qA{<.øgŒ\ãQ«q\Ñ\ß¸˜éŠ‹÷]\Æ\Å\çGq)U—\Þ\×Áe\ä\\&øŒ\Ë\Ì÷â²Ÿøª\Åð\Õq#\ÕC¸\Ã7:dˆ\Ëö\âkL\Þ\àkÜ¦ð5S\ÊøÚ¶7ø\Úq7‘z\ã¦ö-¸\é\ÈS|=\è‹o°	\Å7®Á7º;\àŽ\àf\Û-p³ƒD\Ü,l¾)\Â7Û§\â\æ:Å¸EYn1\Ï\Â-Í›qK¾\Í)\ßV²·Z)Å­v	qk*€o?\Ë\Çmò¸M\ß\éý	ß•ƒ\ïjw\Çw\Ãmc\Ëp\Û\"\'|÷ûø\å\Õøž•‰ør/¾\Ç|\ß°wˆ\Ï\ÇF\à{5•ð½z»ñ}Ô½¸\ã\Å\'¸cõ|ÿ\à_ü€²3\î´\ï\î\äVˆ;]\ã\à.«\rñƒ\ÛpWB\îöh!\î\Ö\î…Ú°?ü\Ø?ü\ï\î!Ú‰{¼û‚{\Þ}„{V¶\ážÿN\à^”püøK\rü\Äÿu<@Æ½	¸\ï-GÜ®Žû™À¸¿u9~\ê\ÑWü,\Å?\Û#\Ä–‰ð\0x?6\í\\€\Ý\ZÅƒ†\ã\ç\ä^\ã\ç\Èñsv~\ÞH?\ï=Œ_0\'\âjÿ\áÁp:~1\Ç/5\Æ/\Êð\Ë\Ïñ«™Oð«\ÏôðÝ»xÈx\ÈtŽª\àá²§øõ\"ñÿXq\Þx˜ˆG\Þ~‡ßˆ9€GiÁ£Þ¾Ào\åD\áÑº\æx|\Î?<\ÑtO*>‡\'Ë«\â)\à?<\å‡ž\ÊÙ§¾¬\Å\Ó\\\ãYþùø\ÝÀ.üž\à-~Oÿ~|‚?T—\Ãs‚¼ðœz	žh‹?Ùƒ\âù;Ÿ\âùyð\Â3Gð¢-xQV^ô2/úmˆc?ñ’Oñ’?¼´0/­>—N\ä\à\åx\å)\n^½D¯©6\Äk\íºñº£xƒñ¼‘\îˆ7\í\ÕÇŸ\Þ;?ÏÇŸ\0x³Ÿ5\Þ\áˆ7ÿÚŠ·\Üû¿\â§\â¯\Äqøk\îiüµXo·Z€·WnÀ\ÛGn\à›	x\çò|ü­_þ6\Ï;t—\ÇÂ»L²ñ®¡z¼\ëûU¼[»ÿð°ÿxl\è\ÃûFV\àý\ãýõ¹ø€\Å>\èØ]À‡;®\àŸ‡Uð‘e©ø\È\Ï)|\Í\ÅG­ö\á_VRñ¯Ž\rø×“;ñ\ï—>á“¬\ÝøT\Ñþ\Ã\'Ÿ¦x\á\ÓÅ­øô\Z>ó\ë >ó§ÿm¶\0ÿ½=ÿ\í\í\Ï”\àsk\Î\ãÿî·Š\ä˜\ÛEòN‘ü{@´\à\É‘b(Rõ®©6¥‰\"KEOuŠ^f‹™øŠ\Ím-6\niœ‰-y³Z´dJ \Ò\âY‰´Ž\ÜiÝ½\'Zª4.Z\ZüA´ô¡T´l•¡hYn‘hY©L¤Cø \Ò	±-\ß[)\Òuò\é\í\Ê\éi‰Vp£E+|­d\Þ­¬Y#\"<; \":Ï‰@ª™Ü¡!‚&1\Ùû˜®TQª9®(Bú\ÊD\èT¨ˆ–K1*þŠ˜\çD\Øý\Ã\"Î•1g _\ÄUPqc\"\î‹\"oq´ˆÇ¬ñ2—ˆxzD|=–ˆ=òÿÁó¦H°²U$ ,	ªCD‚\Þ\ß\"ü‰H4\ê ’uu‹ô\ë\ÚE\ÚM\"ƒq-‘\áöý\"\Ã=™\"\ÃÎ‹¢5;ö‰Ö„»ˆÖ¡¦\"Éœ\È\äx«È¤\á¡h½¦§hý1™h}\È/\Ñú¯¥¢\r\\\rÑ†uƒ¢\rGE\Ên‹6vN‹6þ^(2#Ö‰\Ìv|m2	mº Ú²ªG´%¨_d¡j(²X¤\"²¿%\Ú\n¨‰¶\ÞX-Ú¶·]d\åðUd½\ÃO´½‰.Úµ¢Jd»\ØUd\'§\"\ÚR\"Ú³›(r8\Ñ-rHI\í\Õ\\+\ÚG[\'Ú·û›h_ñ1Ñ¾–õ¢ý\Ý)¢%\"§g«D®žŠ<´‚D\ÞkDE \èØ³\r¢[Ù¢e¹¢“”j\ÑI;W\ÑÉ¸w¢“\rA\"o9+‘w\Äs‘ÿSe\Ñi¥\Ñ\é–h\Ñ\ée¢3\Û1QÀ›i\Ñ9þœ(X\íŸ(\Øö…(\ØS(\n\r\ßûŸ\ÊÑ¥S\á¢\Ëýª¢k\Ý.¢P\Ó^QXò}Qø<Qø¸¾\èú:k\Ñõ¶J\Ñõ\ËD‘…#¢x€\è\Æ\îÇ¢›÷óE·n\íÝ¦\ËD1\ìjQÌ¦nQL\æ5Qœ\çQ\\P¡(Qõ·èŽ©—(‰!J\â:ˆ’+™¢”\ÎQ*ÿª(5\ßK”–¤$J‡´D™{ûE™7D™iE™U4Q–‹¡\è®ñkÑ½…gE÷|•E÷þEˆ²\Ç,D´·‹4n=ô+\å(¿\å\\û\ß&‚¢œ>%Ñ£\ïE\ä	QÑšLQQ\ÅQ\ÑügQ±ýsQ±\ëQqXº¨dÁQ‰’§¨\Ôë±¨Œ®**¯o•wNŠ*G.‹ª®ÿU\×\è‰jd?DjlQ?NÔ”\Â=\Í0=\Û/=«ñ=Ï–‰šù‹Z<E¯Žº‹\Ú\ÚbD\íÿ\Ù\Û36Š:‚è¢ŽÁF\Ñ;Þ”\è]_¶\è\Ý7Ž¨\ë,_\ÔÝ²C\Ôû\Ì[\ÔG\É\r¾ù \Zž\r}\Öw}þúU4b*\ZÕŠ¼–:‰\ÆB\ÃDckD_ø\ÇE_¶¦‰¾šªŠ¾ÝŠ¦Ì»E?¶ŠE\ÓZd\ÑL\ê\ÑO¾‰\èwb‘\èO\ÇÑ¬Š©h¶\ç¬hö\Û\Z\Ñ\é´\è¯\ç±œaˆX\Î7Y,3\'^p¿C¬Hý$Vô;(V‚Å‹öóÄ‹Úˆ“,Å‹³4Ä‹+8bõŸ/\Å\ZLw±FbˆXó\è.±–\ÎJñR\Ó2ñÒañ²%Abm$Ö±X!\Ö\Ùú^¬ûJ$Ö³þ+^‘­%&¸öŠ‰û£\Ä\à‡…b\èŸ\Ð\ä\r1,¬Ãµbx\ØMLq®SŽÿ£\Õ41µr¯˜\æ\Ó!fP11CŸ.f\Ügˆ™»#\Ä\Ìþ41«\Ð[Œ­\Ù.\Æ2|\Äl\Ñ!1{xD\Ì\ÙpN\Ì[Ló Ž˜wE\Ì\ïˆ\ïZ\Ä\Âg÷\Å\Â\æ1n *\Æ\×‹N®K2\ËÅ’ò?b)rF,›\Ú$\Ö\'\ì\ë‹\í\Å\Çc\Å7]\ÄŸôÅ«]TÄ†[ÖŠ\r“‰\rœÍ•‰…\'\Äk«*\Äë® b“{¡b“’\åb“\Æx±I—­xý\ÐVñ\åñ†\ã\Ä\Æ.‹\Í\Z¨b³v9±Ù§±ù\Â(±yœ¹\Ø\â\Ø±\Åko±%;Ll)m[þ2[\éü[7\É\Ä\Û;Î‰wŒP\Å;·®\ï|ÿV¼k\í¸\ØV\ÑNl\çõG¼\ÛJSl¿•(\Þs\ÕV\ì@t;Xˆ\\›\Äûø‰÷\Û\\X‰\à;\ÄN\Õ\Ç\Ä\Îz\Ùb?uñÁ\\Ž\ØUG vC]\Ån§Ä‡¤ûÅ‡\ík\ÄGöú‰=\Þ{=š_qH|\"VO|\Òôšød~¦\Ø{w¤Ø»û0(bŸ{›Å¾ñi\âS”Bñ©f?ñ©©­\â\ÓÄ§¯\ÜŸ\Ïx&¾°”&¾ \Ë_€R\Ä\ni\â`~°ø\Ê\ãFñÕVq\ÛZò\ãŽ8”¶Efª/û?7ª[\Ä\ìpq\×Hy+T|C\ë8\ê\ÞñÍ¬k\â\è[W\Ä\ÑYÅ±¿\ç\Äq–;\ÄñÖŸ\ÅñA\Î\âø=\âøhq|\í%qZ,N°\Ø/NH\Þ/N¤k‹=JÄ‰\â;\n=\â;÷­\ÄI\çû\ÄIwŽŠ“\Z2\Ä\ÉÕ¹\â\Ôh‰8­ \\œNŽ§_*gTEŠ3|gYÌŠ\ï\Ê3\ÅwW|\ß5ý,¾_Bg\çÍˆ¨Š\È\è\â‡Q=\â\Æañc?Xœ›ª)\Î}òGü„Šˆó8/\Åy\Î+\ÅùN\ËÅ…\Ò\nqa®ƒ¸p@Q\\4ñV\\<A\\²âˆ¸Lã¹¸üñuqy«Ÿ¸\"5X\\Ù²C\\¥øP\\\åQ\\{k½¸Ay—ø\é÷qñ3¹]\âg\Âs\âg\ïpñó\Ô\ZñK%%ñK ÷\n\Å/\Íˆ›\ßˆ›»Ÿˆ[8\â–\ä÷\â\×\ì\Ç\â×¯\ç\Ämo\Ô\Åm}>\â7{T\Ä\í\ãþ\âŽ\Ýdq\Çÿµ\è\\´FüNi¸ko•¸k8_üa¹†ø\Ã^ŽøÃ‰qOašøcÌ¨øcv´¸—²H<pÁ[<tö¸x¨\ÖE<\Ô\ã&þlõD<úRK<6¦\'‡M\Ä§«Ä“f\Ý\â\n-\â\ë\ê\Ä?ó\Ä3\Z±â™žrñ\Ì\Ø1ñ\Ï\"™øg‹‰øW^‚øÏ©ƒ\â?ÿ\nÄ³¡¿\Ås5â¿«¶‰ÿ]h\ÏSˆ\çw:K\ä\ÚK\ÈOH\Ø\ØJq²Déº¶Dé‘ªDù\Ë‰ª\ÆF‰\ê\n‘Du\Óg\É\Â\rC5_\êÿ¸J\Ôòl%‹õ“$\êg[$\ê‰;$\êowJ4B3%šý’%K%ZNY­¬cmõ‰ö^7‰ö\Ø\Éò\Ó]\ák‰®8F¢ûK_B\Ø.!:\êKˆs]hù=	¹\ÈE«\ÔH`-DÓ»%\Ô\Ý5\êž\Åº\Õq	}w„a±CÂº¶X‚qÿJ8k$\ÜÍ—$\Ü=\ÆÞœP\"\Þ\ä+‘ªxI¤›I’UZ%h‰\Ä\à\ä˜\Äpw‹\Ä\è\Õw‰1q½Ä¸™)Y#ë¬iO’˜4Þ’˜nš—˜\r˜¾]&YO\Ü&YßƒI6Ž\'J6]L”l†®K\Ì\Åk%–ûf%\Û\ÎXH¬t—I¬\rkGL²ýþu\É“’7+$6\ì›o$»\Ö\î’\ì\êø%±Õž–Øž\è”Øž.‘\Ø\ÅJ\ìŽ5Kv+zH\ìO=•\Ø×œ”\ì1û\'qo”8¨\\•\ìsñ”\È>!qúD’8[\ÕJ\\N$—J6OJöý¸NI\Ü\íò%‡Œ¬%‡7hK·\ÍH<\ä\ç$±|\ÉQù‰\çµ/KrB\ÞPrÒ¨Kròµ©\Ä[\Ñ_\â\å ñ	”ø2Š$¾\Ó\Ég¾\Ä6^rJù™\ä\Ô\Ë)\Éi…¿’\ÓO§$g” É™Û‡%g>Š%g+$\Î$	’s´’s›¾I\Î\ÙI\Î\Ýì”œ+\âIÎ«=–œ\ï\\(	¾\Ó/	.],	®%H.\ÒÿH®°¿J®Š\ßIB\ä3$a\ZÉ’°\êDI¸ùIø±äº¥$\âÔ°$\âq—$’\Z-‰”\rJ¢›$7e’›.Ñ’›ÿ¦%1Z$I\Ì:KI\Ì\è2IÜ¡’¸´`I<\Ø)¹s V’\ÌU’¤\Ô\ëKÒ 	Išû¸$]\çˆ$+3Q’õ$Hr¯*MòP\ï¸\äá¬š$\Ç\ëœ\ä‘jž\ä±F–\äqE’k²\\’}S’› \Ô\×H\nšó$…¾\æ’Â«Ñ’\ÂxSIaÒ¬¤\Èñ·¤h¸RR\Â{,)I%¥©Þ’² 1I¹\ÜCIEx¶¤2ç¤¤²÷ ¤J\ÏARm˜%©³”\Ô.—“4¬\"J\Z\\+$\rãª’F$H\Ò8yR\Òtöœ¤)ÿ´\äi¶Pò¼—¼(ó‘¼|9#i^\'iQ\ß%i)ø*i}K\Òv3Bòf\åI{ž¾¤£ú¨\ä­\ì¹ä½‹·\ä}ùC\Éû)CI\×\Ë|É‡E)’m’¼D\Ò#\Ù*\é\Ù\Û/\é\é{#é½¬/\é\í×–ð.JD_%ûH>ù\ÔK>u&J†V\æJ†7\\’[NH>J’ŒšyJ\Æ$c…‰’ñ\ã’\ï\ë\Ê%\ß\Ï\×I¾_0—LhÞ”L\Ð\Õ$“¢\Éd\Øn\É\ä­H\É\Ô?%\ÉO]\É\ÏPLòë¯’\ä÷APò\Û\Ç\\ò§óª\ä\ï¦@\Éß’.\Éß©/’ùƒƒR9\ÈT*¿­HªtRºp³•ta°DºHiNºQ—.:°]ª¦ùCªf\Ó ]ü}—T\Ã}Dªie#]¢øAº„ƒHµH‡¥Z‡\ÏIµnIµ^\ÛKµþ\\–j\ÍuI—v†Kµs¥ÚŸiR|ŠT\çe³T§Ÿ$]~ò TW’®tü,%8}F´¥\Äó¥\Ä\Î\ËRÀ~D\n¸\ëH\Z)8\â)%tKI{º¤$ÇRÈ“%%W\ÚKa8\\\n_\Ú&…+Ë¥”–)\åÿK*J©‡\ç¥\Ô[3RZl–”ž¾U\Ê\ÜÃ–b\îªR,kDŠ\r\ÆKyOÜ¤ü›{¤\Ãy©\à’§W¿/\Å\ÛöJ\Å\×¥\â¹©d•T*#•¥Ke\ÍERý§©}»tõ©­\Ò\Õ©Rã¿‡¥kònK\×]o—®+Ó–š‰•nHÂ¥j¿I7¦n–n¬Öš™?—š\Å¥›\à\í\ÒM\æRsz—\Ô\\`\"\Ýb°[ºÅ—\'µø)µ¼“\"\Ý\êÿCº\Ím³\Ô\ÊS]j\í¨*Ý¾“n¯Õ•nÿ¹GºCYUº\ã$\Ýq5@j\"µuˆ”\Úe&J\íjRûw\éžY¶\ÔÁ\ÜV\ê²M\ê„m:Y8J\\Ç¤Î‚R\Í>©Kp†ô\à\\zp\ÚQ\ê\ÚüA\ê¶mX\ê\æ“&u”º\ÓÚ¤\îüt\é¡`K\é¡_W¥\æ\éR¯F9\é1£WÒ“\Ø5\é\ÉiM©\Ï?\\\êgHý\îKýƒ\å¤þŸ¤þm©ÿôié™§Û¤g\ç¤J·¥_Ü¥\ç¨w¥\ç²J\ÏUl’ž\ß\Ô/\rþÿ,Á©¤—r¥\Ò\ËHz\Å\Z–^©I”^uÏ”^û\Ý,\rå¯’†\ÊPix˜H\Z\á\à-˜½/\ÏKo|•ÿ@\Z5,½µ¥C\Z»jP\Z¯œ#÷£KözH“\Ó^H“«ÿISU.KSeKÓ”y\Ò4ò°4ý%Cš,ÍŒ»%Íš‘\Þ\ïs“fÛ†I\Z}“>ºðFú¸J&\Í\ë-—œÉ\rI‹Ž¯–`H‹úr¤Å¶ò\Ò2tRZ–º[ZŽ\åK+´b¥‡\0i\Åi%<!­ô}\"­ZI«¼•Vo–Vû©H«\ËKkNK¤µz¥µ¦ç¥µ¯¿IkgWJ\ë€õÒº\í5Ò¦$\é‹]\ÍÒ—«Qi‹¿³´õ\ì:ik˜±´­r›´mFQÚ®[ mw™‘¶û¨I;úVHß¾ÿ!}7\è.}¯\ì+\íZ*íº‘&\í~ðF\Úý4IÚ³6]\Ú\ÓT*\í\íQöEVIû†‹¤ýŽl\é\à¦é²µtˆ·[:tð˜t(U[:\ÌN—~~{W:B©Ž:8IÇ”\ÞIÇ¯J\Ç|¥_À`\é×€5\Ò	gX:q\×V:¹Nf§KgºHžÒ‘þJ)–þ\êz&ý-¦KW¾•þ¹ðO:«»F:/S³”\ÎmQ–\Î\ßL\É\ì•)¨\ï—)\\”“)9È”r¿É”	·eÊµe*\Ø.™\ê\æ}2Õ\Ûe…±²E®›e\ê$¦L\ÝT_¦¡P#[úñ§lÙ¥!™ö\ß*™N¸²L\çO©l9\ÕD¦{fLO;^¶B\é¬l$/[±c½l¥a¢Œ–Ê€Á<xtPF\Òø(ƒ¼A×•dP\ä^yâ„Œ\Â\ß-£Œl•¡Ý2ê¦…2:å¦Œ~\ÏHFv–1\êµeÌ“‰2–Q¯Œe—&cyre¬g?d\ØG\'»\àœŒ“U(\ã5\å\ÊwKe\Â\ïwdøÿ\0½\í2±£²L|Ž#“5\Êd\Z“2\ÙõyÙª£\Ùjœ#3ô¶“­Ó»$[\Ç]$3)T’™\Ú\Õ\Ê6~{,3{_)3×µ•™WY\Ë,bd–K\íe–Î¡²mG.É¶ýº.³º\Ü(³–Ge\ÖKd\Ö\Ûze\Öm\Å2û\Ã\ïe{0_ÙžŒ0Ùž¬«22‡ð™Ó·\Ó2W|‡\ÌõÀy™«³›\Ì\ÍX,;¤\';tz‡\ìˆF‹\ÌC/óÈ§\É<Š\îÊŽzÊŽz\å\Ê<IKdžþ¥2/E‘ì¸ªTv¼ð\ìDO\æ/óm^&óý\â-ó\Óò’ù‹þ£°¾£¹|\ß8€‹PH\ÊJd5\ìT¢>\ãù\ìñ|öžI¥\"*šVöHV\"#	EYY	\É\ÌH²J¶²\"”\ê÷ýû¼\ÎûŸ\çœç¾¯\ëú\ã2‡\Ü\"!¡¾÷\ç!^:\ËY*\ÄSñ\ét†øEwCüúe!~Áÿ\×U\0§ÃÀ\ÇÚÀ\â<H\àl$\È\Ùr\î;$Ô°*|	½·~rG6r\ç\ÝHøû\È]¯/»\åzˆ¿\ÈC<H\ä»Í(]MH\Ô\åDH4-\nr’‰•:‰\Ýq\0rÿ\no›I¼w’d\Ð\nI:4I²ð‡$…[ARÔ‘”ÜƒG2žGÆ‹GdG\È\ãQ*$-\Ö’¿’^’>¥yjt’¹/ò¬<ò<ñ-$z’-ü\Éo3€\äo,C\nøñ‚LHÁð ¤P9Rø6R$BŠl\Í!E‰\Ç \ÅiŸ /»÷A^=»)“‚”\0)\ë{)[ºõŸH\Å62¤¢œy½\é¤R\Ð\n©üQ\n©Z“…T\ïx©6Õ€\ÔM)C\Z.hC\Z<`†i	H£úH£¹¤\ék\ê€¤\å¡¤¥l\Òzw	\ÒZpò‘ûòqX\n\ÒQø\Òù\ç ¤«O\Òm{\Ò\í\\ù\ëù\â=\rù’§ùª´2¸þ\r2dL†¿\Ê]‚\ë!\ÃFõa\Ëd\È\È.=Èˆ‡dT^2v¯2–_\0ù&ñò])ò·ò½T2\é›™’\ìƒLÇ†A¦ST!Óƒ<ÈŒ[,d&ûä‡´dñ\r²ðTY¤yC¯mƒ,\Þ{\rùum+\äw¿d¹\É\n²<u²j[Y\r£BVÿ.Bþ8•C6\ÌÅCs¿g!ý\Î@þ>~\rùwoò\ï\éÈ¿\á`¨D<*0ùŸ%¨ôd\rT\ÆX*ƒ×‚\Ê<S†nù“\ÝZs*¯²Ý¾kº\ãT\Ù$ª{ªg	U#´@\Õ\Û\â \Zw¡\ZŸí »\ÃÒ¡š\Âh¨\æ\åP\Í\ÅP\í\ä\ÓP\í!P\\	T§\è\nTw\ßT7\n\Õ\í/‡\ê=o†\ê\ï½\Õw\ç@÷2†î½”	5\Ôö‚šfN@Í¶©@Ž<€’:=2µ(R†Zük…½ú\nje\Þ	=\æ\á	=ö\í$ô8“\r=y\0\nI„B\å\ä Ð(ý\n{\ê…ÿbBg2q®ŠôT€b÷B±3Pœú>(þF;\rJ€þ€¢Ÿ@A\å(øDJ2;¥üj†R‰uP\Úþ(\íU	”3¥Š‡2ð\ç¡\Ì\ß\íP;\Ê>qÊ¾ý\Ê!\í€r…Pn\Ù¨@\'*|\0ö€Š>~‡ŠGƒ \â#è‰¯\ÓPk•\ÇÐ“¦/¡§Ô˜\Ð\ÓvnP[…»PÛ‹÷¡Ž2³PG|\Ôñ\ÆCè¹“f\ÐsE=\Ðº+PgŒ6Ô¹\ruQu†º¨ƒºt˜@]\ã¡\ÐKz*\ÐK¤ —¯JB//LB/¯\ÌAÝ„· \îf\\\è\Õ0,ôj•	ôÆ€2ô¦S.ôÖ·MP\ÏX%¨2zû\ã<\Ô\ïU4\à»54pY\Z4m\r6ÿ\rÆžƒ†\ì>\r¥¤BC#!\Ð\Ð\è\Ëû\Ð;£\æÐ»§f w_€F‘¡‘>\Õ\Ð\Èl\Z4Z\É\Z}ÿ94f@\0\rª‚\Þ?j;O™…&¢ ‰\Ô.h\âôshò•Bhò\Õ!hòû‡Ð‡\ÜhJ\ä%\è#ú\è®\0š*}\ì»šöð&4mvšþ@šž·š±©š!§\Íx´ú\äL*ôIB	4³\Åš•óú\ìš°\0Í¥`¡y–\Ò\Ð<\'h^|4\ï\rš7\ß\0\Íû;\Íoô€¾ˆò‡°\ïBªR¡\ÅwhqÀ\"´8h+´øq9´$DZ’¦\0-~}\é	}¥†„¾\ê\ÆA\Ë\ÂF¡e÷³ \å°h…ò9\è\ë–4h\åù!\è‰\Ç\Ð7rw \ÕÁ“\Ð\ê\Ô\Ð\Ú76Ðº‹£\Ðúsg¡\r÷,¡\r\íK\Ð&\ÙoÐ¦h³&Ú²&†¶ñŸC\ÛÌ¡\ín\'¡\í\áz\Ðö\äehû\ç‹\Ðö‘\Ð\Ã=\Ð\Î3G¡]Ú‡ ]WŒ ]\ÆÐ®!hw\ÉOh\í´Oh\rí›”~þxúyQ\rú¥E\Ú~\Úÿ½: ó:°z\r:$–€¥\Æ@‡•\\¡Ã£I\ÐQMK\èX°:ô›’ôLðÖ…N<\Üœ‡N§\êB÷Ctl‡þ\Ä¡óy\Ð™“\Ð\Õ\í\n\ÐU³Y\è\Út\í\ët}¹º±\Ùú/hôß°L\Â\Ê¶\éI7Lò¨7LòULò&=\0“jeÀ6\ëVÀ¤	\ê0™\Z$L\Öò/L–}&\Ûó	¶\å\Ìl\ËEKØ–\Ñk09\Û\ë0yÿ£0ùL˜\Ï¶\íŒ2LQ¦\r¶ýYLI#¦|Z¦¦Ry¦*u¦J;S\êS\ï…©ÿ\äÁvj\Ãv‹Caš\Z›aÚ’\î0\í+7a\Ú)§a:F]0‘¦\ë|¦w\èL¯òl; 	;\à¤3Pk‡†TÂŒ\ä¦`F¨U˜™•{\ÃÌ³`\æuŸa‡BŠa‡Fp°\ÃK\Ø\Ñ}0\Ëni\Ø1]\ØqÓ‹°\ãŸ`\ÇßAõ2`°;08¼\Z÷Ì€!?_‡¡Õ`\è˜t\æH{Œ\Ã?±‡ó90R¡4Œš²£k\ÍÀè®\Ã¯Ga\Ì\ã0¦\rcz\ïƒ1}Ca\Ìú=0j\Æ\ê¼cƒoaxŒû\äŒW…ñ±N0þ‚\rL°V\æÀ„]x˜ø„+L|÷L|?	vn;1º³v¤Á¬—·ÀN±\Â\ì\rraö\Ø!Ø™n<\ì‚\Å>˜S:\ìb²\ìòzØ•\Æ0wù×°«*?aWuR`\×^ü€]7\ß»\é´	vó³\n\ì\æ\r˜‡:\æ1{\æ¶ó†9\Ã|þL\Ãü¿‡\ê&ÀÁ;\Za\Ã)°`A8,8ü#,\Ä\Ä\ÂU……Zf\ÃBQ†°\Ð?XhM#,\ìs\ì\î6kXD\ä8,²-\Z\Ù\ß‹Rû‹i²Ý“\é‡\Ý+_ƒ\ÅYÜ…Å~‹__‡=À0`	\ìTXB\Ð,1\r„%®Á’t\r`\É\ÍÃ°G7þ\ÂRƒKa©\Õ<Xjc\ìñ@,M\Â–¶ƒKƒÜ„¥\ãa\é#c°ôj°\'’?aOTzaO\ïÀ27\í…eª„=§+Â²sXv‰-,/ –¡V \Ü+\Ð‡\0…°¢$5XñXñ1/Xñ\ÂKX	d\rV\ê5\0+“‡•~ë•\ÎÝƒ½²v•©…\Ã\ÊL|`e\è-°2ÿYXyr¬b;VQ,{]~V)Jƒ½\á\"aoòzaU\"GXU\ê3XµVý,V³¡\r«;\è«KW…\Õi\Â\êM½`\ru\ã°Æ™ý°¦[‡`\ïøq°–ž<\Ø{	\rØ‡–c°¬.XG™¬\Ûn\0öù\ë-Xÿ®/°~÷°þp#X6x¼	6t\Þ6\ì7+ÈMÌ™Á&\Öra“z°\Éï‘°)­N\ØTO<lú\ä lºô:l&z\ì‡ñ\Zì‡½/\ìGûl	À\æl7\Ã\æ5\æaó\ÚÿÁ`‹û·\Â¿\ÍÀ~\Ù\Ì\Â~#÷Â–Uö\ÃVÌ¼a+¿Va«w\Ãþ\ØÀþ„Z\Â\Ö+­a\ë\Õ9°¿\Î;aÿ&nÀ%£7\à›ó\Ú\á\Òn\ãð­\ÞFð­µcð­Ëšp9\ËE¸<R\0—o‚oÿ\0W”n…+\Â\Ç\àŠ3Zp\Åye¸\â†\\)\â+|‡F=|\Ç\È\Z|\'\â|\'ñ<\\9w®²B…«f\\„«özÁ\Õwœ„«¿ƒ\ïN‚Áw?Á5Í³áš›p-\â4\\«V¾\çœ|O2\\Û°®÷Á®\×#	×—€\ï•	‡\ïµ^†ï«Š‡ï§¼ƒŒhÀ\r\Ç~Á\ÍÁ\êôÀ\Zž‚\ÄTÀ^\Ã\rÀÍ¿™\Ãu‚.À,ž€[*›Â]òƒŸ@\Ã\á?÷Â­8pJ\rŽx»Žx_\rG=\ÞG[nÀÑ¬pŒö[8>\ÃN¨h„šþÂ™2Cp–ò~8\ëð%8÷»:œw\0\ç\ß\áÀÁ…¾p‘\ë}¸øI8ü,n]ƒŸ4hƒŸ\n–…Ÿ®š‚\Ûþ‚\Ûþ~·\Ç\ÄÁ\ÏN„Ÿ\Ý=\0?ÌŸMK„;\ÎÁ\ÏMò\àNt\Ü\Ù\Ý~qk\n\ÜUI~9\ï/üŠ\ÌGø•ýuð+Á\Óð+o\áW†¯À\Ý~{Á\Ý\É$øÕ°JøµƒøµN=øµ\røM\Ì0üf\îüf\å9ø­¥­ð[}\á^\Ü+sî•—÷©Ó‡û´…\Âý\ç\áA¡3ð`­+ð\àx(\ê!<\Ô.\ê´\ëÖ„‡À\ïz\Ù\Â\ïNL\Ã#{\Â#ŽY\Âcû\í\àñ3\ß\à	?x\â\Ó~xò˜<\åñix\ÊDüñ‘&ø\ãn]xš\Äyxš\âoxúö~x\Æ\ÛqøÓ£\Æð§ü¹b7ü¹\ÃxnV$<\ï\ämx^\Ú&xÞ‡Zx~’¼\à\ïx\á\æ÷ð\âpx‰-^R¢\ÉüyZ^:U/\ì†WU€W?<¯ñó‚\×ylÀ\ëÆðºEsx=\ä/ümr	üm½¼QŸo„ºÂ›’8ð¦9¼¹\'þŽ~þNP7\ÕoM†À?|Z·¹\Ã;z\ì\á\êYð\Î\ÇmðÎ·-ð\îøx¯\Êsx\ï&¼7\Û\r\Þ;\åÿ¢ÿü þÿr5>p¢>p…\rú\Õ.~ž\Z€ª%ÁG)uðÑº«ð\Ñ{ø˜³3|\Ìe	>V;)‡[Ÿ‡?>\nÿ|>‘F€OA›\à\ÓW,\à\Ó\Þ^ð\éJKøÀðù\02|Q˜_¼»¾[_|ù¾„H…/…\ï†/eB\à+N\á\ëg–\à\'\Ý\á\í›\ág\åM‡\0\ÉR€4>ŽxHgÀYŸe`Ë›÷€Ü•j@®m7 7ôw=	(°«…P øþ6°=õ\'°=\ÏØ¾öPú\Ñ\ì\Øg	\ì\Ü\Ú\ìœj”\r•~@e‰\0¨~ù¨õþ\Ô\Û0€zûI`Wü/`7xØ½ahÕ¿ö.{>{¾ª{E€Þ­\Z@_a\Øk=\ì4\0<;X*\nn\0FýË€±\Ù$`²\ç`’œ˜šw¦\ÙÍ€™;\Z0K¨ö\Ø‡UG€\Ã\ZA€…ôÀò\ÉeÀŠ6X]\0¬\"\ÅÀ1½R\àX\áp|ÿp¼ð!\0±\Ù@®Ž°YU\0\îRÀý>ð?\Ñ\0\Â?@~ (­,\0\Õ\æ`\êý¬»€\Íÿ\à\0x\ä%\0ŸŠ€øµ\0O\Ï`z7@²\ËH\ÉV\0\é\é @>‚\0\È7†\Ê\Ë\r€šv	 \É]\è<:Àh0˜_&Ž]À;\êð¦¤\0!­§»R\0\ë %Àº\"8Y{8-ý°•\Ú\Ø98\0ö§žö¯r\0‡3\çû€³\îù€\ãˆpþ†8_+	89g\Ì\à\\H.¢W\0\Ó(À\å\Óa\àÊ¯À\í\Ë\à6¤¸?n˜\Ô7ˆ§[\'Wi1\à\éxð¦ŒÞ±’€w\\%\àpð=ø)\ì\0üœñ€_\Þ[À¿a(Y\0‚\Ø@\È4„•‹€;¯Ÿ\0wt€\Â8\Ò\nDV16@L»p\ï};|ˆ]\â\âqŸóøxO ~QHŒ’.\ÄI\Ë ™~Hfõ\0\É\ÃH\à\ážkÀ\Ã\nE\à\á\"H¹¤r×€\Ôz7 M\ß\0Hÿ\0È˜\r\0ž\"†§ÿöYT\àÙ£\r\àù\çÀó§3ÀóC [F\ZÈ½\"r\ßzo%‚×Â…R ¨®(¶\ßwt/u¶¯£\×W[€\×óq@¥¯Pùš\nT¾¥o&T€*•N \ê¢<Pu…T\Õ[\Õû”€ê¸£@\r\n\Ô\Ê	€\Ú\ÓC@\Ýj)Ð°šôf\ÍT 9\â7Ðœ›´Em©G€ÚöñX \Óh\Ðù\'ø´`t)9\0]kš@w\ï\Ð#\ãô\ì4z>\0½ÁH\àsˆ\'\Ð_a|\Í8|•jþƒÁÀ \ÏŒK›>CÙ›Àˆ=øVµ˜ ¹\Ì5`*ò005\ÓÛ¸À´’)0}ú;0ýú\00=m	\Ìõ.?7·?5‹ú#À¢\íc`±H\rø•\íüjùü<,Áf€\å\å\ßt`e‰¬\êùkÒ·€5`ý…!°^\Ã\06HP`ƒ\å\0ü%\Ýþ4„Ä‹ƒ‰¹„¤\îBò\Å\'„´aBºð\nBv\ß„œNB\Î\çb›\Æ4b[s(BQ_¡x#±½ø4B\É$±Sr/B\å€P\ÈC¨ñò\ê\ËÒˆ]\Ò\Ó\r“\Än\Ãˆ\Ýc½ˆ=\ÃÚ¦;:/:5|„n¦B/2¡þb¯±7\î6boN:b¿£\â€\Ú_Ä‡Šƒ\r£ª‹\ê<\Â\äòQ„IôI„É£ „\éQY„™.\ra6pq_0O©@˜·œGž\Ñ@X\Ü(GX<¸Ž8j¦…8JŽB<°<Ö‹°<+FX9\Î!¬<U\Ç=.!Ž\Çö\" ž! Awð\ï\Ë\à°€ú €\È7$ž†@=Ý„@\rµ#\ÐÁ÷\è\ã-À*\Ä#°‚p\î\Ô[1 Aú¸A\ÞÝˆ _-EPô²”=µd/‚¶\ï(‚\Öì† ´ 7,}\'‚`OU!8²	NŸ	Bð\îB0º!< D]c\â´\r„5ù2\â\äM;\Ä)B\âTD\âT_\â´\è\'\Â\Ö aç‹°Í”GØ©3vu„]£\"\ÂÞ¢aŸ:ŠpP	G8¤Gœ\Ñ?‚8C²FœµA8\é<@\\œ#\\\È?.³ˆ\Ëý	ˆ+\ï:n\Ü\î\äQ\ÄÕ¦HÄµ’/ˆkkˆ\ëS/\×\"®¯\Ö\"n¨\Ó7–!n\Þ\Ñ@\Ü,ú‚¸ùý.\â\Ö\Z\áeQ†ðº›Œð\Ê:„ð†f ¼^#¼¿—\"|õ¾Sþ\æ \Z\áµ\á\ßò„€#‚¥5Á}Cˆ\à\Õ5D˜ñ_D\ÄVŽ¸¶\rqgp>¼Œˆxö\0y$9g‰ˆœ¿†ˆÁ\'#\î]¬E\ÄJC\Ü\Ï=†ˆ\ßQƒˆmB$\È\"N¾G$ºF$\æ\æ#«†I¿. R¼_!R\Êò<\Ã©?i¿¯#\Ò\Í\Ï\"\Òc²òˆŒfÄ“`_\ÄS½Ûˆ¬\Ð4Ä³E&\"ûH\"{*‘Cø‚\È\ÉðE\ä4/!r‹v!òÌ¯!ò\íÑˆ\n\';o\"Š8{%˜‹ˆ—‡Ž#J\r#¯&e\ÜD¹\Ö^D…ôoD%\ÏñF\Ê\0Q»2‰¨`ˆúˆˆú16¢Ad€hqD4<.C4µ š$kM¸pD\Ó\'KD³\Ý\Î; š_\ïC´X\ï¯\\F´¾‰@´\Î!\ÚFm\ß$ÿ³Šh7B´§¶ÑˆN<¢óA¢s!\Ñ\r\Ö#ºo¬\"º__lû_AD±ñU5	ñU B¹†¿ˆö\ÉCŒ¦\Ö FÛ‰ˆñˆñŸ.ˆ\É\Æíˆ©]Íˆ\é>Y\Äôš\01³y1h˜û!æ®§!~\Âóraˆ\ÅˆÅ˜Ä¯ü<\ÄRŽ>bÙ¾\0±\\€X¶A¬Ž\å\"þ¸=@¬/ 6,ˆ¿‡\åm!þ¾)Aü»„øWn‚ø7v)qm)53‡\Ü\Ü@G\Ê\ZHY¤6rKBrk)\'ŠBÊ¹\Ö!¶ .\á‘\Û8“H\År»²©´/©\ä‰B\î­\"w^x‚\ÜY\ê‰T–D*_ƒ\"Õ»F»ÿAjlnBj8!5F\"5/H#5_!÷›!µþ uMj‘z÷k‘{£ \ÈýG¦ûKÛH\Ò`^iðGi¨\0i¦Œ4\"\r MÕ¢‘f_7GR.!-ªu‘G»|–fH\ËgG\Ç\á1\È\ã7\"H\È\Í9$43:v	\ßÓ„s¼\0\ë#¨ø‰D¾C¢_w!qR&Hœ\ãi$.+	ÆžA’’d\Öm$y&Iy;ƒ¤\ê}B\ÒVö\"\ézp$C©Éœ1D²%#\Ù\Åd$»‚\ä v#9\Ñ\ëHNó7$3\ÉÍ‘‚‚q¤ ®)<ó)\Ú;†K6 Å”¤µ\Ûy\äi\éT\äit$\Òv\Û\Ò\Î\æ0\Ò\ÞSy\æv	ò\Ìc\ä™\ç6\È35‘g¥aHÇ«L\ä9¯\Z\äE°y1z\éRõ\éòa\éúFy©½yYÁyù\Ñgä•¯Ïnk‘È«9\äµ\îK\È›;‘7¶\ê\"o\ßAÞŒ1C\ÞJ\Æ#oM\íEz˜\Î =­—ž\0\Ò3‡…ôñû†ôY‘þßŸ Ö¯\"wB†¸u\"Cj^ Cc \Ã¾!#¶\Ý@F8b‘>Ÿ‘*LdTÁdTk2\ZÿMŸC\ÞªAÞ›|‡Œe%!c/\"\ãdš‘ñû6!h\îG&Xš!âº‘	ÿ}Ÿ¨ÚL’iD¦\Ø\Ï\"S®…#S*/ 5^E¦I-#ÓBdZ¢12\Ãb™\çƒ|\ê\ÆCf\îÞ„\Ì,¼\Ìz‡Ìªf#ŸÛœ@¾~‹|q|Qô\ZY³„,<š€,„þF–”mC¾<Š,õiC–þYE¾RÀ \Ë\Ð\È2ÀY†­B–=ØŒ¬ð\ëAV„\Ø#+R*‘•‡•Ooö5 «L\Õ\îC\ÈjŸ1dÍý\ÈúS\Ó\È¥_\Èw²!T€l\Ü7€lô2F¾‹ÞŒlyù\ÙzWùAû4ò\"ú¿•ô5òC\í(ò\ÃL=²\íø²\íª+ò£Áe\äÇ «È_§‘\íw\\\áÈŽd:²ó\ÙYŸ†\ìyƒü¤@vyU!»\Ò×\Ýw¶#{\äÓ‘½›Ÿ {\Ñj\È\Ï#ö\È\Ïÿ\å|rÀ\Ê9p59S‰ø[*2@Ž\ìCŽþØƒ\Óø€üV\ÎA~7G~·lC\ÎÜ…#gº7!\çE\"\ç\ÕÕ‘óI\È\âs\ä‚C:r\Ñ2¹˜#‡ü}uò÷ƒ\äŸ\ç÷ÿS\\cB+ÿ¦{Q%wP›v<Em2³CI:*¡$ŸK¢¤~FmŽYGmý€’N\"£d¼CP²R(\Ù\Ó\Ú(\Ù$j\Ë\í¨­\Ç ¶þ†\Ú\æøµm=¥x‰R’HG)µY£v¸5 vr`(\å@1JyŽR!!P*\Ô\Ï(•³ûPªUe(µÍQ\Z.u(Mùh”¦\Ë~”V\×<Jke¥s\Ö¥[ÛŽ\ÒS5F\é\Å¢ôcPzQúF\ÇPú6I(ý\Ú+(ýE\Ô>\É\\Ô\r”T\ÊÀ\'\neh‡2\Úk2\Ù\í‹2=2\Ûg„2£F¡>œ@™_°GRSFj–Dú¡‡:¼ù\êpR/\êˆC1\Ê\Â/eé±ˆ²¼“‡²\Ì.EYÁ ¬ü\×Q\Çø[P\ÇD¦¨\ãˆQL#\ß5†J£€\Ú$\"\Ü…\à P>\Ó(Tm7\n5·†B/H£0ùP¸û\Ñ(\\±\n¿¹…\Ï\ÊD]Î£ˆq\ÏP¤§R(RaŠ\"2C\ÑRTPôR#t\Å2\Ì@q2tP\Üð›(Á\Ïh”pT%Š9ˆ¿uC*EY\ï\É@\Ù\ì8ƒ²ÁÄ¡lhn(›\î\Z”\í\É-(;«Y”=üÊ¡Š:3n„:+“:{Žr”ÙŠºÐŠrZ‘D9— .º\r \\¬\"Q.´}(¡\Ê%—‰r\ÉA¹\Æ\ìF]º`…º\Ì{Žºbñ	uu3€ºþ,uss\"\ê¦G(\êfL*\ê3u\ë}\ê\Öø[”‡ûy”×¦”\×-U”Wz\Êk\Æ\å\Ó\ïˆò\ÕÙƒò5^Gù>Cù\ïtGù?,D\Ä;¢‹QÁ®Z¨\àFT¸\Ã*¼u‘ž†Š&C\ÅühE\ÝSÅ¢\îeG£\îNA\Ý_wF\Å:‚Š4D%HY¢\Zö£’¶ ’uP\Éw¿¢R¶Ö£RPS¨”v(\êQ\Ê\'Ô£÷T\ê)Tû\êéž¿¨\Ì\éÍ¨\Ì? *Kƒ‰zf•Žz6°õ<Sõ¼Nõü}:*[ö&*;¸\0•#ú„Ê\ÕD\å–÷ ò\è%¨<—«¨¼\Ï *¿Zõ\";Uð3U\Ü]*Q+G½t\ÕA•jY¢J›2Q¯6¢Peº_Q\å˜\\TùÀ ª|‰ª8ªœ\ÍCU›Z£ªC‰¨š&¨š\ÙË¨Ú‘\í¨:W!ª\î^ª®\èª\îgªagªu\Õ4\í…zÇ¸‡j±BµpýP­ò’¨»\ÚQ÷¹¨OjE¨.“\\TwQ,ªû\ÝST\ïfoTß‘Û¨>—c¨þ	Tÿ¢j@4\Z¸¢£gQ\Ã\ZÎ¨a\í\í¨á¦§¨‘Ã­¨‘cQ#£F)gP£§TPcSq¨ñ¸Ô·j\n\êû_\Ô\Ã	5uŽšeœBý\Ü>‰š·WD-¸M •¸¨\ß\ÝQ\Ë{ñ¨\å\èÔŠ!µ\Âû‰ZcP+)K¨õ‰ \Ô\Æy;\Ô?‹Kh‰ª>ô¦°·\èM±ehÉœ|´\ÔÁ]h)\Î´Th(Z\êczój4ZÖº½\åF8z+\ã,z\ë\ãh¹\ä´¼uZ–‚VøÐ‰VX@o[>‹V\ÌJB+¶©£\×]\ÑÛ‹\0ô\Îo´òõN´rt;Zù#\Z­RŸ‡Vé¾…V=~­šù­&w­¦~½‹5‰\ÞuS­q\Î­1=‹Ö´%¡5ï˜¡µ¶\å ÷ŸF\ë\é¡u„¡uŠh=½E´þ¿\èýû\ÑOõÐ¦\rh³”ó\èCW‰\èC\ËôaqÚ’g‚>\Þ&‰†<\ÓFC^=CCõ\ï¢a\Zû\Ñ0–\Z~\Â\rÄC)Ðˆ‚P42\Ùº2†FÍª¢1§úÐ˜˜hl›#\Z¯¼Ž&JÍ£‰\'ú\Ñ\à\Ñ4I5M*ˆB“ªµ\ÑT\îš\êKE\Ój.¡\én\Ëhzý4›ˆDs¿\î@ó\íu\Ðòi´\à{%Z”õ-úú-Î¿Œ>1GA[k@[\Ïj£O\ÖZ¢m6h›ð\ë\è\Ó\à \Úöþ]´\í³oh;Z\ÚN„¶ûa€vhy>\Ódƒv,uCŸ\'E_\Z¡/\ÝB_\È=€v\Òø†v\Ú?†vB;š£/\ÞD»¬…£]üF_¾ó\ív~\n\í®ò\r\ín\è„v_;‡¾\Úå€¾a7Š¾õ\Î\í& =ü³\Ñ^Z\Ð^ö\Ñ\Þ;\'\Ñ\Þw£o[#Ñ¾¦L´oV-\Ú\ßö2: ƒH\îG<ÙŽ|U†ü`ƒ™DS¨\èP¹4tX•}\Ç\àúN^	A‡w=FGy\Ó\Ð\Ñ\í\Õ\è\Ç\Í\è˜0t¬a:\Öø*:.’†Ž\ß„Ž…~ð\ÐÀ‰B\'\Ü9‚N˜öG\'->D?YC?ü€~¼B@§¹ü@§… \Ó=\Ñ+{\ÐO>)¢Ÿz 3\×*\Ð\Ï\à\ã\èg)\é\èg/9\è\ç‡/¡Ÿ“ß£Ÿg\Ñ\Ù\í‡\Ñ9*Ñ¹>t^«úE“úÅŸ“\è‚\ét!\Õ]h‡A—´\ïD—BƒÑ¥Á\é\è24]\Æ\ÐF—o°\Ð÷fÐ¯\×Ñ•†k\èJ\îqte\Ûiô›©rô›…Tt•¥1º*\Ð\n]U‹EW½¡«{H\è\ZQ8ºöV;ºv*ý¶B€n·F7?F7\ßE7Y\ÝD7·z£\ß!\\ÿ³~?€n\Ý}\Ý\Z%F·>z„þ°öÝ¦¶\ÝVd†no2Bw\ZDw¦ù£?	\åÐŸþ^Awƒv\è\î\0ºG¼€\îk“E©¦ ¿,<F´\Ð\ÓK\èÁ–\èa+>zxh=²==ªU÷\ÎA\Ç]F\Ûûý­[\Zý½®=a\Zž°¸Œž„­ \'\Ì\ÑS»ýÑ³*\Æè¹ªNôÏ IôÏ»¶\è?z‘0^\Ì?†^>–ˆ^¾C/{\ß@¯¼«F¯²\Ó\ÐðA\è{òè¿ˆ«\è¿(_Œ„i1f“LfSówŒô\Éi¿TŒÌ†\0³\å€f\ëCŒœ>#Wø#C£ð\áf[³fûAŒ\ÒL;Fi\áfgˆ<F\ÙvF¥\ë+Fû£ZÝŽQW\Å\ìÞ¼³ûb\ZFS«\0£6ŽÑ‚†`ö¸ú`t:\ç1úW\Ì\ÞÀ\Ì\Þž˜}G\Ú0û\'1û¢1¨Ì,KÌzUŒvc¸5cx…†1ü[1©rÆ˜šbL19\Ãó\ß\Û0‡N¹`\Ý‡9\ÔÝƒ±0ga,\Zl0Gyî˜£n0–\ß\Î`ŽU–bŽ—\ìÀ@$ú0U(n—O\Æ ó0\ÈJ\Öƒ\Ú\ÅÂ \Ä2T°\"•°	ƒ3\Ã\à\"ÿapcV\Ü\Ü\ZÁ7Lb6G1`\'CZ\Î\ÅP’\Z)CG`˜f\æ\é—ù2†ýE\ÃY4\ÄðŽebø—\Æ1\Ò-Œ J#<2}õÀX‡œÃœTm\Ã\Øô?Âœr\å`l\åa;ƒ.ŒC\ÌÌ™µAÌ™\Ì9…>Œ“\ÔYŒ“¥\Æ\éf.\æ\â—WWUkŒ›ª2\Æ-n\Æ\í\Í(\ÆýX=\æ\ZIsí¿º^\Ò\Ç\Üøl‹¹Ù˜Œ¹¹ ‰¹•Y‹ñ0y‰ñp\\Àxøb|<\ã1·µ¼0¾œ\ã_ÿ@Œo·\ÆwL\ãs\Åø—yc\"O`>dc¥\Ïa\å\Ã1A¾Z˜\à¡2L(®JºŠ¹;‰pP\ÃDNc¢\r\å0÷TLÜ¿	L|Z>&Á*“ðr“hx“x6\0“8?Is\Ã<\Üy“R™ƒIy\'‰I}iˆI\×\àa24I˜ŒWý˜ŒIOL\Æòa\ÌS5\æ\é¡L–¦/&\Ë!“óñ&gq\r“³\Æ\ä\ÂW0y™\ß1yBLþnOÌ‹ôÌ‹¿0…buL\á\Ý`LQ\îOL±™)¦„ñSr‹y¹qó\Ê\'S\ÖÕŠ)\çþÁ”{yc^wGc\Þ|lÆ¼‹Å¼™J\ÃÔŠžc\Þ:%c\ZüÑ˜†¨lL\ÃR2¦I÷¦¥÷)\æ½\Ç\æ}€/¦•RŠiýŠi]\åbZÿa>¦6a\Ú\Ã\Í1=%›1}7\'1}ñg0_†*0ý‡²0ý÷\Ë1ý%o0_Ý›1£˜\Õ%\Ì\à\Ä-Ì	3ü\Ò\r3ü÷\'f\ä\Ì\Ì(ƒ‰ó0ÅŒw`¾\Ùb&ôŽa&fr1S\\fÊ‰™Ø†™•ü‚™MlÁü”ó\Ç,ºc~±ž`~e\êa–J7c–†\Ã0\Ë\ç\Â1\Ë˜\å\Ö˜KWÌšõK\Ìúif=\r³^×\Ù\à]\Ål¼ûˆù«tós+©y\0+Å˜ÁJ9\ÅJ];ˆ•\ã™b\åT±òKý\Øm¹¿±\Û*z°Û¾ý\Ã*Ê\Æ*ž<\Ý\Þò»½½\n»\Ó\â&v§+ˆU	ñÄªüšÃª	\èXµ\è¬:\Ù«²»\ëUv÷Z4V\ë\à?¬–•V\Ëóv\Ïþ!¬þL>v\ïÿ­\Ä\î;Ö\Ý…\ÝWw»_b»ZŠ5¬‹\Â\Z•A°\ÆjVXµkX“½\ÎX\Ó\Ãç±¦U°f	X³%-¬\Ù\Æ]\ìÁ´?XóWu\ØC¶6\ØCg¤±‡5°‡\ÝÜ°G“naa+µXx`^÷,fafóX\Ä9,\â‘2\Ñ\ïŒEmv\Åb.\Zb±ˆ‡Xl‹	–pyKøpK\ZÀ~ñ°\ä²~,õf–&3Ž¥™WciªXö6/,\ÛJ\Ë1\Î\ÃrŽ\ÂrM¬°\ÜS=X0\åE`ù\Í|¬Pº+|cEaEe±\'ú„Xk\Ý¬õ\Ò öddÖ¦ü:ö”\â3\ì)\ãF\ì\éP¬\íÿ´<…µŸ\rÄž\ÙS…={y\ëèœut©Àž\×ab\ÉO±Î‚`\ìÅŒ\ì\Å\ÑX¬«%öªcö\ê\×)\ìu\Ï0\ì\n\ì9\"ö\æ—q¬¼\ëö`½&r±^k>X\ïŽL¬\Ï\ÖZ¬\Ï]>\Ög\Ö{;²\ë»;\ë{B\Z\ëŸŒ\rt\ã`ƒ\ä`ƒý`ƒ§\\±!2°!¬“ØµIlÄ¶\ØHM,6J|\Zý£	³(½ÿü6~\×GlüK\ìƒü+Ø„\'¡\Ø\Ä\n6\é\Ý;lÒ}\Ød	l²…6ù™56y<û0\Ø›òŽˆ}tS›zÄ¦·}\Å>õ\×Àf²[±™o¾`3We°906\'L	›r›?ñûbk0ö\Åþ;\Ø\ÑdlB\n¶À\ê>¶€|[ø>[„ØŠ-\î0Ä–\îkÃ¾\Â\Õa_eIb\ËX\Ø\n\Å\ëØŠ¶¢\Õ\n[1\\…­”†­¼\ÅV6\î\ÄV®·`«{7ck¤-±5\Ð]\Ø\Ú\ç½\Øú“l}m+¶~\nÀ\Öÿ\ÓÂ¾\rœ\Ã6\\ýŽmhŸ\Ç6\âý°MUV\Ø\æ\æ\ØwÄŸ\Øwÿ°-R*\Ø™Ø–%\Ø^¶\å\Ê/lK…:öýg#l\ëlk\ÊKlk—3¶MŠmgVc;Š§°\ÝW‰\ØlO@¶\ï·¶\ß\Ôûµ\Ú;¨÷;x1\r;Xe¢<\Â=‹\Ä¶a‡¯{b‡7R°£/%°cÍ¯°SŸÛ±S¿wag6!°?bagµ\Ïaç¼¾b>òÀ.¼ÁbS³°¿æ‡°KñºØ•\êa\ì\êû\ç‡\0»ö\â*nK\Z·©\Ï\'ù¬\0\'µ/\'µö·y`\'½²Œ“q5\Â\ÉFÀ\Éþ2\ÇmÁ©\ã\än;\ã¶m^\ÇmsÀm\ì\Ä)ŠŒqÛ§p;‘q;ñGqÊ‡¾\âT\Ü\ß\ãT{`8µ\×pjŸqj?\Ä8µ\Ås8õ=18õ‚Ý¸]\Òq»Ž\à´\ìup{ô>\ât0n8—;pzS\Ó8}•<œþ>N¿ÿ$no··ù(n\ï(g²\Ó\ngb~g‚ŽÁ™xÄ™ô1p¦aXœu;\î\àEwœ¹4w\è+w˜Þ†;¹w\ÔÀ\ëˆ\ÇA\Z/\ã`5\á8\Ø\Ô=ü›>™Llq¨\ÖZ†QŠ\Ãrq¸¸G8¼¬Ž`A\Æ‹p\Ä˜ÓŠ#ÙŒ\à\ÈÙƒ8Š•ŽRê…£š\Ì\áhkn8ú},Ž±\É\Ç2\×Ä±‚þ\Ó~Ç®pÆ±»\ß\ã¸õp¼A8Á\Ëû8!ó4N8Òˆ)\áÄ¯cq\Ö\ÓL\Ü\ÉÁ\"œ\ri\Zg±‚;\å¸w\ê…&\î´ùy\Ü\é¸$\Ü\éñFœm\ÒVœ\Ý!mœ}\×cœ})\îŒý\"\ÎQ~?Î‘ð\çè§Š;—GÀ9®\Æ9\ÇqNo[qÎ°œó\Û\×8\ç\Ñpœ›\ÛWœ[\æœ\Û\ëœ[-\çá‰»¦[ˆ»®’†»™ócpu–8\Ï=¸\Ûe·p~£­8N.@¥\Zpb\Ð\"tÿ¯$ýa¸ M)¸ £\í¸`‹\\°0:8‹/G\ã\"\nCp‘s¸\ÈM¦¸\ÈM¸{\Ú	¸{,%\\Ü~\\\Ò\å;¸dz5.\Ùn	—\ÜÙŠ{ø‰K¹ÔŠ{¤\ÍÀ=²Q\Å=\ê”À=v·Ã¥A¹¸\'·’q™\é¸¬on¸g›q\Ïý¯\â²¤\ã²ß\àr\Ç\àr¦,p¹§\ìq¹¡\ÇqyšP\\€À\å9Œ\âò[qZ³¸‚ê‹¸¢I+\ÜK\í/¸—{]q¥j¸W7^\â^%|Â•…\ïÁ•+¨\á*ôeq•Ù¸Zy®–9kú\ï]\Í\Þ4\\ó·“¸X<®\ÍŽk»{\×ö=×ŽZÃµO#pb\\ù7®\ã\ÓN\\×¹o¸®p\r\\\×\È=\\/‡\ë\rÚ‰\ëý\ã‚\ë#9\á>‡ù\âú=ž\ãú[™¸–-nPY7ŒÙ…>Syi©Ù‰yw7òû\Ö«^/n\\+7\î>€1\Å}›©\Æ}§ˆp.2¸‰f)\Üd\åÜ”\Âs\Ü\Ôv5\ÜT17Ca\áf¾(\àf\æ!¸²_p?¶U\â~hÀq³šF¸\Ù\ãq³\ÅÉ¸\Ùe&\îg(€[\0\ß\â’¸Eþc\ÜÒ‡VÜ²\á0n9\Z…[~ó·B‡\âVA\Ü\ê/ÜŸgÅ¸µ¨0\Üz8·\Þ\Åm8º\á6‚¾\ã6fµqÿ›±\Ñ_qÿf\Çð›®\Ü\Æozp/¹\ë^\Òf/\Ùã—\ÒÁ\â¥.PðR¹óøÍªzx\é/[—\é\Å\Ëj¦\á·\î\Ã\Ë®\à\å¥rð\ÛMñ\Û&\Äø\íeaø\Ö3x\å„ox•úA¼ª0¯:SŠW]\ÊÁ«õ	ð\ê^³ø]($~\×\ÉR¼†ñ]ün;m¼\Ö\Ó	üö^üž*9¼¶´^-\Äï»•€\ß‚„\ßo[‰ß¿T?°4‡7T\Æ™\Å\à\Æñ†qxc(\Zo|Zo|\á\Z\Þ8 oòú	\Þôˆ\0o\Úö	oú‘„77Þ‹?T\èŠ?²\Ùd­o>‚?Æ¤\àoƒ\á\Ëã¡–ñ\Ð\Â<´\Üûaƒ‡\']À\Ã_CñÀ”\Zõx\Z~¡Š\'\í\Æ\âIE9xR\Ë[<ùl+žâ¤‹§z\âi-\Òxº{?ž6‡g\ÕN\á\Ù\'òñ|œž\ïP\î2ÂŸØ”‰·nD\á­7ðx‡óøSAdüiñ:\Þ6h3\Þþ{þ\Ìx)þ¼R9þÂ®¼“ýk¼“ó6¼\Ó\Â1¼³9\Ñ)\ï¢\"¿\Üù\ïFÅ»y\Ô\àÝ‚Yxwý5¼{`9þªvþ:\'\n=1\Ã\ä4þ÷3þ\Æ\Âü5yüM½x\ÏP\'¼—9\ïUø\ï\í{\ï}_\ï+†÷óA\à‚$ð‹Qø ¶Wø\à„x|p®\0òY\æs¡¢Šh;ˆ<Ð‹5ÁG!yøh\Ã1|Ì|\Ìo|\\¡>þùþŽþÁ‘ø\Ì|BðK|\Â\'üÃƒñ³ôñF†ð©šAø\Ô\0Yüc¨þ‰\Ãü7}ü“§\Åøg¨Nü³\Ëaø\çþy\"ˆ>kŽ\Ï9¸ˆ\ÏÕ²\Æ\çÕ\Å\ç­\ãðù»\Çð¾0‘/:ƒ/¶Ø‹/~±‚/!´\ã_ZüÃ—‘\\ð\å;÷\á\Ë\êð\åO\â+ôLñ\r§ð¯“<ñoÞ¦\à«|\ÜðU\ßñÕ›sð\Õ[\"ðÕ“®ø\Z™<|\Íö9|\rÿ)¾f®ÿöÁ3ü\Û\Ä`|cþ¾y\Ókü;R¾\åh1þ½mþý÷³ø\Öb|k“;¾u\0‚ÿxm¾=†\ïÁ%\ã{>\ê\â{kø>Wþ³\"þsa\0þs\évü\çž/ø¯Pü\0\â7~°(?Ú‘Œc\â\Ç*ûðc\røq½bü÷G\nø\ïu£ø\ïmð\ß&\á\'Uñ“d~\Òö~*D?\íx?=¥ŽŸ\Ù\àgXeø9I&þ§M\rþgy\r~A\ÌÁÿ>€ÿ}m¿DQÅ¯\èø?}\'ñ†‹ñk:þøµš2ü\Úg+üzûVü?\ë›øs‘„M\Ë7’n6\ÉBk\Âfs\Â\î^\Â\ÖÁù‚\ÂW\Â6\åUÂ¶iAQPFPl› (N·”ŽCJ¸B‚R @P\n™\"\ì\Ø\\C\Ø\Ù}– \Ú5@P§\ç4Of4\Ãn´*\Þöp6ö\Ü/ \ì©%ho½K\Ð\r{AÐ›œ#\è\Û\ëôWZ{/µö¦‡ö.\Éö}\Ë%\ì\Ï~FØŸó°ÿý=‚A\ÕÁPÎ†`\Èñ&f\\\"µfŒ~<$¿\ÝE0™W$T%9F°¨+%\È \ç	0®\"ÈŸ# ÷v\Õ\ádÿ\Ê\ï3c!`À)–¦JÀ\ægpÊ®¼\ä:o£HÀ»÷ð+Aq/(5L žøB \Ü\"P+Ÿh´#Ú½›V\Õ­žG\à|«&p~¥¸·“\ÜUs? ˆõw\Ä\â$‚¸\ì\áÄ™L‚µJ!ÁúõQ‚õ°+ÁF­šp\nM8Uøƒp:*œ`»M“`\ëz`ûsÁö—\à eF8›A$8š.\ã_û\×	\ç\ã\ß.°_.Äž#8E\Ôœ…J„‹W¿\\z \×>\ÂŠ\à¾Ùˆpu\Ë9\ÂÕ˜b\Âu»k„›\å\0Á#\ê:Á#©™\àõ«ƒ\à}®…\à]Fð\î\ä|.|\î/<›\Ì	A¶Æ„\àúM„$‰RjBƒ\ÂfR	a\ë§	w\Ös	\áubBø½‰\\¨!DŸ&b´	÷do¶¬\Ó‰½ÿ\åª!iw:!‰\Ø@Hz‘²c¢OHY\ÙNxÔ²BHmxDx\Ì\Z ¤IN\Ò_&¤\ËJž<*\"d¢‚	™?žù\Ï\"A\Âs½=„\ì(5B\îýtB\îoB^t#!\ßÔ—ß¸›P°Í–PdRG(*’&ÿp&”ø’%¾„’\Ú\Â+\ÖvB¹\ÖO\Âkô\áµm#¡R\ê¡²¾ˆð\æ\ÂABÕ˜)¡óœ\Ðð9‰\ÐøÞŠÐ¸Exw{ˆ\Ð\âOx(Žð¾ŠKhu\ÝAhý)\"´þµ\'´\à	m¼TBÛ¥;„v,¡ó‘\áS–\Ð+¥K\èÃ¨ú\"\Ö_üò	_\é	&Õ„\îaÀö\naÀóa ¨0jO\Z\n$£L	#³Æ„\Ñ|\Â\ØM€0®\èJo{DøöLð\Ý\"’0ÙœK˜>¹Lø1\Â%\ÌjŸ%\Ìem%üü\êA˜±%,(û<F‹u„_uÂ¯&\á·\à\á÷[Y\Â\Ò8a©þ:\á\ÏCEÂº\æ/\Âú‡„\r9+Â†0‚°\ÑyœðšIø7\\G”pN%n\Â\\#JY#ˆ›÷œ$JGe„.D™@}¢ll?qË‘-D¹\Ô1¢|\ä¢¢£/q»cQIz™¨Tq™¸\Ãøqg”<Qùx!QUðœ¨\îœO\Üew“¨\áZM\Ôü9G\ÜóA¸\ç“Q?†O\Ü\Ûÿœx`@4D\Ä˜¯‰F‰\Æm\ëD“M2\ÄC±a\ÄCMX\â\áo_‰GJ{‰GY|\â\Ño™D«»\æ\Ä\ã`%N:CD\ê‘/g‰¨‡}DôŸ\"f‚ˆ9?HÄ¸|\'b\\\ß	\éfDB“6‘(ú@$&\Ú‰CzDRq\r‘\"ª\"Ò°›ˆ´¬D\æQw\"\éLd­cˆ\Ã7D\ÎÁb\"\çž&‘3K\änw\"r\"\ïa‘7–K\ä«ù\ÆCD!¢žh\íJ<©K#\Ú\0KD›{%D›\ßû‰§v\ÄOU3ˆ§þ–O‹#ˆ§\ÓH\ÄÓµ=D\Û\r5¢\ék¢ý\Ñþ¾6\Ñ!Ex¦þ\Ññ ñÃ‡xþ\à9\â\Å2xqLLt™^&ºÆ²‰®SÁ\Ä\Ë\Êp¢›Œ9ÑšJtg8\ÝËºˆ\îu(\âÕ‚W\Ä\ë\Ôó\Ä\â³\Äµ*DK\'ˆY¾DÏ‰/D/	¢Ÿ\á+¢½ž\è\çL$úŸ¨%úÏŠ‰AS3\Ä\à‡‹\ÄP÷0bè£—Ä°£Ÿˆw\0\râŸ\ÃÄˆ›þC%FÞ¯ F)3‰Q.£\r\Ä\åQ\â=¿b\Ü\éU\âiCb\"CL‚\\$&p‰I_]‰)oÆˆ\Zˆ©ûS\Ã^›*3?\Ó×ˆ\é_\É\Ä\Æm\â“z\Ä\'…\Ö\Ä\'\ïŸ\ÊŸW…³w> f¯]#\æ½\ÝD\Ì\×0$\æ\ï\ÞG\Ì÷zI,(/ }³&1%–T~%¾\Ä\ï!¾Št\"–…¾ –¯&¾>-K|\ív…øºÊŽø&ö)±Zf±\Ör;±î¤€X\ç@\"Ö\ï%Ö¿\Ë!¾½\ÜNl\ÚýƒØ¬£HlU÷\'¶þ|IüpßˆØ¦bOl\Û#Il›ˆ#~<dO\ì\Ø,G\ìhž$~R{F\ì‚{T‰=\Ý<b/&„ø\ÅÎ›øÅ½‚Ø¯©J\ì/\ê\"œs#\ã[‰Ã“}\ÄQ|6ql—ø-Ö‹ø­ÿ3ñ;Ö’øýñi\â÷\Õ}\Ä	§\Ä	D<q#Eœ2úJœ:[LœŠ‚§\Ùa\Ä\Þ\â\Ñ\â,T8÷‘8ûøqNSHœ[\Ð&þ,»Hœ¿\×L\\¾Iü}#“ø\Ûû5q\Ùú\0qe\îq­Â‘¸\Ö=J\\¯?F\ÜÐƒ7\Â}ˆÿd<ÀM\ÊwÀM7ºÀMÙ $Š	J‘þ€›}\Ò@Y¯bpK\í\"(¯\Z\Ê\ëö‚ò‹e \Â7;Pqh\n\Ü¼··•l@%×ƒ\à½%p§\Ép\ç_P9LTyÕ’	 Z\ÎuPF\ÕYP#´\ÔX›w_15\Å4P›óÔ¶}\ê(€º—ž‚º±hp\ï=p_‰6¸\ßf\Ü\ï&÷7ÿ÷¿;\è*\r\æAC[6h¸¾\n\ZñdA\ãD\Ðxc4)\Üšüw7\Ó\Ã;@³QUð`’h®Ÿ	\Ö\Ð-H\æ \å\Å*\Ð\êüðX\å\nIùB70\Ô\ã\Ýa±\å ,o+øš€À£ B[\"\éý \Ê\è\nˆB¿± ö\nÄŽ†øµX€ÿ\á¿Abª1nšÁ´:dSôŸI*+RL€T¯\0v\Ø¤Íª€ô­ ý(\Ò\çA¦9d \ëü Èš³\09$+8rW  \ßó%ÈŸ¸\nl¼@S5(4v\0Ežr h^K¾\0OXSÀSN \í~W\Ð63´3Ž\í,CA{\Ãÿ\\¿Ú—2@ûv1\èpÿ?•\àY:x–\Óž-øž\íö[¦ÁŸÁv 3ö!x‘\Ùº|7/\á÷€—\r’À\Ë\Ñþ\à\ÉdðŠl(x\Å9¼\êõ¼ú\"¼º~\0¼\æQ^Á€757\ícÀ›gMÀ›‚7ûž€*;A\Ï<\è\Ù\rz£[@o°\nôþa\Þ\Ö\0ý\îk‚þzv ÿŠ\'ª3†‘À°\Ök`\Ø÷0ð\Îó*0¼Ž\Þ-@ƒw‡7À\ÈO`\ÔaY0Z\ÞŒ9.\Þ[c¥õÀX‹c`\Ü\ê50^¹Lx\î\0&Z\î]jÁ$©0)\í>˜¼/|¸z|¸¡¦H7)r\çÁ½!0…¨>rüO-L\Ý\Ô\r¦N7€i/õÁ´\Z:˜öi7˜ž\Òf´YO¶Û€O¡{À\Ì¿ÀL¿Hðù&Eðù\çp0;õ(˜e\æ$•€9\Å\Í`\Î\è0\×\Ê\Ì#\ß\0óšÀüv;ð…\æGð…\é9ð\ÅII°P\âXx\Ý\n,ðgŠÁ¢tXôs,Ye‚/“2ÀRU#°´\ë	ø\ê\ç°,D|³V½ukdƒ5A£`m:¬Û³¬Kÿ¾=~\0|\ëŸ6\È€\r±!`\Ã\Ã\ã`³\Zlî‡‚\ïn?\0[;Îƒ(\Ý\à‡¼X°-?vAÀvó\\°½8ü¤\Ù~Bi€Ÿ\î¼»¦\äÀ\î\äJ°û\ÕS°·£\ì‹\èû2\î‚_\Æ\ÒÁþ=®\à\×<ø5\éøµx8\Æò\ÝÀ!g88ô>}¶\rS}Ž¥i“}tpŠ]N­\0§÷®\ÓC\àœ\ìøs~8\rÏ½›Y\àb\ÇAð\×\Ä¸¤ø\\\Ú\î.-¥ºzÁµ\Í[À\r\ÃP’D\Ù]\Ò&½ÿøl!\É4Ú‘d/ú“ä¤´Iò\\\"I~LDR\È\Ð$)¼\É\"),rH\Û\ÊbIÛ©X\Òö\ÄÒŽŒ4\Ò\Î%$ej4Iy±†´{”DÒ´\ë#i­“ö\è£I{ŠH\Ú\×%H:\È\\’.ðŒ¤ûKŠ¤\ß1NÚ§u›´/2†t€®O:P‘L:0D2t¨&G¥’L\ß#ü˜F2?ûˆt\ÈÕƒt¨ÁŒt¨\é\"\é\Ðd\éˆ\ã8\É\â\Z™tO:Š#õ#2&YB<I–\Ô	’\å´\r\ÉJN‹d5J:~n‰t¼þ\r	j²Ï­$Á_¡HÀN\"È‰„Ô“†’$¤ð	ùVŠ„\Â/P“{I˜©³$\\R	7\Ã\"\\î“ˆ½$Ò±S$ò\Ö8u\Ï~4$\ÑL’ª$¶ü{\ÛØ•Ä®\è#q´IœK;H<\ç)¯0›$„\ß\ÕI\"~#It¢tB^™t\"ct\â\ï0\éd\Ç\Ò\É!tò‡d³•G²\é\Ð%V(\"¾SI²µc‘lo“_“.X\é“.dM’.›’œÕH\ÎÁoI®©ÿH—òRI—CnJ\'’n\í®#y4Z“¼:X¤Û·±$ÿ	R€\Ì$)\à…4ð2¯F\n\íµ#…h‘¢4¾’¢\ÌHQ‹\ê¤\è;HÒ½\âvR¬±)vn\éþ]RÜ‹bR\Ü\ÌR|À%ÒƒÄ›¤DûdR’<†”¤\ÑOzHþ\ÏD\é\áO)\åJ)gHJµ\á’G“’\Ò\ÛRIy¤§õ6¤§r¤\Ì\Æ_¤¬‰E\Ò3©¿¤\ç’\"Rö11)Û•@\Êö}M\Êõ{Lz\ß èš\n\âö“\n\ëjIE;ßŠü\nH\ÅË¤B(©tYT\æ\ÒG*\ß+Az}ô5\éu2…T\é>Aª\\+$½1œ$½é†‘ª,FHÕß’j¸É¤šk¯Iuk¤·Ó“¤†t	Ro©Yj©ùt#©ùª!©û‚\Ôrª\ÔÒJjY\Õ#½?\å@jå©“Z¿›‘>l\ßCjË„’Ú²‹H\í/²Hfò¤O§Ÿ‘>¾ u=\í&uC\çIŸqOI_†6‘¾Ì®úýdIý÷¥I\çUHa\é¤Á\Îo¤!\Ñ&Ò°Ui8Ò‡41;Oš\Üñœ4™w‰49À$M\Î=\"M~Lš®&Íœ’\'\Í\ê\ï&\Íù¿%ý<cEúõ‡ôó¡i^\í	i>»´t’´h•úŸ\ç¤E<™ô\ÛH™´\ÒAZÁ±I«R*¤Õ R\Òjz3i\í\É_\Òú\Ö\Òú\å!\Òú£¤¿šWIÝ·þÝ·$K†‘%»\0²”‹6yó…d\éšd²L?…,;’BÞ’PGÞ’Á!Ëd9j;Y^2ˆ,¿\ÖJV\î +š\\$+>o\'+öÙ’·+´‘·»KÞž½BVº›K\ÞI#+W4“•ûO‘U\ì“U\Î‘Uï–‘U{\Äd5‡RònC&Y2LÖŒe’µ´§\ÉZ0Gò¤Yþ¬ó¸‘¬;F\Ö1\'\ï5\ÙI\Þû·—l\0K\"\\Y%	[\È\ÆY‡\É&wk\É&¯\È&\ã\Èfg\Èfƒd²¹m>ùððùHº\'Ù¢<|\Ôwƒ|´\ã3ù\è¯Jòñ-ª\ä\ãß!Êždˆõm2d!‰‹Ÿ#\Ã\Ú\ç\Èû‡ddHF®´‘Qrw\Èh\Ï\Z2º«‚ŒQ\Ï$\ãö\ç‘ñ”Kdr—Lž S6ÁÈ”¢x2”Nf¤ú‘9£2g\\†\Ìu.\'óuc\Éü»2dþý\r² Þƒ,Ì¸EN\Ý\"‹\Þk“\Åÿ>‘O:÷Ÿg\äu\édk\ãG\ä“+ò)g4\Ù6”O¶M\ÜF¶-– \Û\é‘\íY)ä³®4ò\Ù\"ù<¾ˆ|!}…\ì\ä{’\ì¬\ãGv\Þ;I¾\è“O¾8\ÔCv±ö\"»4\ì\"»\n!»r‹È®µt²\ëª\Zù\Ò#€|©°ˆ|YvŽ|¹~Š|­¨|­Ñ•|}óò\r”ù¦<Œ|\ËCöð\Ó&{æº‘½5\"\È>`\'Ù§B¾­‰\'ûú\"¸œ&\\^!º¦‘ƒfƒw“ƒ¿$“ƒO“C \çÉ¡\ÔprXl=ùÎŽErÌµoä˜›S\ä{Õ“\äûÑ»\Èqug\È®Æ’øf“À³\ä\Ä+\Þ\ä\Äô£\ä¤-‡\ÉI\Ú,r\ÒcgrrþUò\Ã-&\ä‡\Æf\ä‡\á8rŠTù1T–œ¶ÿ*9ý€9Ãªüd§/ùIhù©\ìKò\Ó\édr&y?9sÎžü\ìV(9›_CÎ® \çp\Ã\È9\Å\Ý\äÈ…œBrÑ–nr‘!—\\´q€\\|žN~ùÒ™üò\ã}ò+\ÔCò«\ç\Ée\í7\È\å†!\äò³z\äŠ`Cò· rUf2¹Z\â¹ZÒ‡\\½Wž\\›H®\ÎÇkT¯’ë¼¤\Èo1oÉ\Ú\äÆ¯\ÉM./\ÉMo\ÉM³³\ä\æ¸yò»Z\ä–\ìû\ä–õò{£\ä÷\Ãrk\Øù\ÃO)r[À#rG/ƒÜ¹/”\Üõ_ºý‚É½GB\È}}\ã\ä¯\æä¯¼ò\×\Ó&ä¡š\Ý\ä\á3¿\ÈÃ[\È#ÿõxô\ä	ò¨ýò\è\0–<:\r\'u\Â\É\ã~{\Èß¶¾$O”‘\'\ZƒÈ“ñ\ä\éýe\äi+yF\ÔNþ9Mþ‘Mž={Š<û5<\'xDž\ßZIžWýEžoU#\ÏzMþenAþÁ‘Ÿ’—³’ÿ\Ü\ê$¯‘“\Ékuö\ä¿+n\ä;¬)\ç\Ø©/Š4J‘¹þ˜²Åº›²\ÅY™²Å­‰²%4Ÿ¢p\ãE¡\æ1E\Ñû\"eû\Ö&\ÊösK%Š7EUöEZLQ_‘¡\ì’Ê£\ìº\ÓG\ÑH{J\ÙM,£\ì.v¥h®8R´û(:uë”½¾\Z”\Ü&\Êþ6ÊJ8\Åp—%\Å0¶šb„ SŒ’¬)FóŠ\É1\Å4=ŽbúNšbFRÌƒb)\æe\\Ê¡W”#\ÆK¯Š\åŠ}?\Å\ê­)\åø\Îz\ÊñÌ—È¥\nP§\0#|\n\"P›‚ˆ­£ ú(˜#›(øi\'\n\á\ä	\nùl>…ú_¾¬¤g/Qh\äWúGi\nc\ë/\nsHa\Ñp\ã…\åLa\' pU®…ûõ	EðÕ‚\"\ÜTD¹\ÇPN\ë´QN\×õPl·ü¦8\\\ÞM9\ãü‚r\æ%œrVÑr–|Šr\ÖZ‚r66‰rN³›r\ÎÝ“r>Vžr\á¤\å‚C\Å\ÉÔ†\âtÔ‘\âlt\ââº“\âpŽ\âºcƒ\â\êp”\â\Z\ÞO¹L¸E¹RùšrUz‘rUm„r5ŸO¹vHƒr\í|&\åZ\ì\Êõõy\Ê\r\Ó`\ÊÍº«mg(žr\ÎO“\â)p¥xzò)^½”\ÛE¡\ß;•¿/N”€KJ\ÐUJP˜4ø_\éRBj(!#Ñ”°¿)w”\ÏQÂ¹û(w6(‘º$J\Ô\étJô•jJW‡›ò’û)%¾Û„ò\0YMy\à\ìMy\ÐK¢$JR\ï±(‰©‡(Iy£”\r<%E·Œ’?By—@y¼\ë\å±\É0%­½’’\ÖË¤¤_\"P\ÒKz)\é\Õw)R“”°‡ò$Wò”«NÉ¼Æ£d\í<HyöWƒòœÏ <ÿ(A\É\É\ÆRr:\ßSr9a”|ùPJ~\ÜÊ‹\í.”‚+”BD-¥ð\Ý-J‘Ž\å%!ò’º‡RÚšIyu¯šRvð¥œ´N©x{•ò\ÚD“R©\ÛGy³û\å\r-‡òÆµŽR•\"O©\éyJ©ù®O©e¬SjÛº)u§r)õj”·‡¬(oû\Ê)\r=2”f“¿”f\ÇÊ»Ü‡”–\Û\ã”÷ò”÷Š(\Ê•~Ê‡‡Z”Ý‡(móû(g•(m?)N³”Î™6\Ê\'\ÊJ—‚ˆ\Ò#¦ô\\¢ô†)}¤PJ¹å«¾e\à&Š2ƒ¢\ÎZR†m”!N)eH¼Ÿ2t²‹2ô©€2¬*¤s§Œ*QÆ¶…Q\Æ|.RÆ¯HQ\Æ=\åÿ“@¯§|ÇºQ¦þ”©38\ÊT[eºÊ›2#sŠ2ó7ŒòÃ¢Šò\ãj \å\Ç\Í”Ùª\0\ÊhJùµg‰²\ì|„²|\íe¹9‡òg\Û\åÏ™û”µ¬g”õM\í”\ru\Ê§ò·Ä•ò~™ò\ï‘*!«@•¹LÝ”\ì@\Ýôþ.Uò¾us\êZµ©[d©òý	\Ôm]-T\ÅN&u\Ç\×T•¸½T•—ZTUõwTU·(ª\êõWTÕŒgTµMXª\Ú\Î:ªZ¸!U-ù=u\×Vª\Æ\è)\ê\î\ìª&Ù‰ª…\n¡jŸ•¤\ê\Ä\ÎPu>£\êQº©z—!TýûKTýQu\Í2uÿ·‹\ÔMTƒ­\ËTH5ù{žjºÍ“jº=—jvLšjöü=õà­¿Tó<8õÐž\êa]%\êa&õðU7\ê£\rª\Åi-ª\Å÷kT‹\ßp\êÑ¸*ªõ#\Õ\ê\Ô\Òþ›\nM%Sa«›¨€WM\0©hÏ³TÜ–.*®\ä •0œH¡4*\é\é•¼f@¥H\í¦RŠŽR©û\n©4\îg*}\Ê$ý¤2›PY=ªT\ÎA*•þ òRù-¨¥vª \â\rU;O})¥Š·¨Q­Œ¨\Ö\ÏÌ©¶S©¶9bªU\ZÕ¡Xžz\æ\Ä\'\ê™(W\ê™\Õ`\ê\Ù\äWTGX/õÜ—!\êy£\Ô\Z\É\ÔÚ¨–ÿR\ê;¨N_\ßS}Í©\Î5\êeòAª›\Åª\Û\å­T·¶\'T÷¬}Ô«{c¨W¼©WƒË¨\×õ\îS¯ÿ\ÙE½d@½‘TO½y%z«°”\êp‹\êóÇŠ\ê»#\ê\Û\àK\r˜Ô£*yP\Å\ÔÀ°\Û\ÔÀ¢%jpŽ\Z\ZTA\r\Ív¤†þ Q\Ã^¿¡†\Í&Rï´¼ †‹­©wû‚¨×™Ôˆ»óÔ˜-Z\Ô{¢h\ê½\ÌX\ê½O¨±«Ô¸\ã[¨ñ\ëz\Ô$mê£·û¨/vRÓ†¯S\Óå©\é\â÷\ÔL…š™RA\Íl˜¥f\Ù:QŸ\íW¤>?ü‹š½ý5\Û+›š½zš\ëÇ¢\æí’§\æ7GP‚¦©\ã\Å\ÔÂ“2\Ô\Âõ\ÏÔ¢WúÔ¢u9j±Zµø/Z²{/µ´³‡Z&S\Ë\é\Ô\n«(j¥n>õ\rzµJ·˜ZõTZRkù,j=}ƒúV¤O}r–úö1µ±{†\Út@mò¹I}—B}77B}£J}ÿ{µõö_\ê¤õc\ívjû\ÉjÙ€\Ú\É\åR;cj©I	\ÔÎ™ý\ÔO—J¨Ÿò\Ñ\Ô.™\"jWZ\"µ»U‡\ÚkhK\íûoús¨ým\ê \Ä)\ê`‰-uXòu\Ät–:º­Œ:^ùú-Ê†ú\ÝEH²\ÙD¾¾—:ý!…úc®’:{iu¶º•:»\âGo|H]\è¼Bý…¦þŠw¦þ66¡.\Ñ\ØÔ¥³{©\Ë÷ü¨+ƒQ\ÔUðu5òõR=õ\Ï}u\Í÷u}\Ë#\êº\Îuýfu{ˆú×·…ú·=ˆúO\ç#õ_…-õ\ßHMsš¶\ÉÝ‹&…;L\Û,1M\Û\ì¿@\Ûü­ˆ&#¡\ÉX\ëÒ¶\ìAÑ¶†\ÚÐ¶¦†\Ñ\ä>û\Ò\ä5·\Ò\äû‹h\Û\\WhŠ¯\ëiJ	4¥¤K4¥Fm\'3•¶³\äMEcž¦Ò…§©\×\Ñ\ÔIv´]2t\Ú.\ÍRš†\Â*MS\áM³qŒ¦`h{”n\ÐöPi{\Ò ´=Ïƒh{z\çhÚ¨Vš¶W	M\ç\Æ[š®a,M_!‰¶Wð”¶\×ö$m¿\Ê\"mÿ£%Ú4ešA\ËOša¤4\Í(ñ\r\Íx\ä\Z\Íd;‰f\æG3•ð§™¥\Ç\Ð\Ìzð´ƒ˜\ï4s\Ï@\Úa¿\nÚ‘y4‹š¥f¹D YÑŽ™Ž\Ò IT\ZH§[ŽÓ\Ö4\ä÷4‚\Ö\Zqû\Z>¦‘M:id\Z9n™FQ·£Q\Þ`h4\å»4º\ß<x˜\Æ\àÑ˜\ì&\Z[¯ˆ\ÆÎ§±Wo\Ñ8tÆ£n¢ñ\Ï£ñ¯–\Ð\Ï\ÆiÂ®û4:&\ne\ÓN\è<¢ø>H;y¶‡fs=vúY\Í.É\æ\ÐrŠ\æ\Ðõ‘v&þ\í\ìõFš#Ü€vn\í)\íº›v\á.šv\á\Ù]Ú…wþ4\'‹_4güIšsw\"\íb\Í(\ír\Âšûn+Úµ»6´\ëè‹´\ëqƒ´ò´›ûRi·Ž§\Ðn-n¥yd\Ò<Q\ÏhÞ™\×i>\ß\Þ\Ñü\Î| ù[\Ù\Ñ¬#i[üi¡³¦´¨WÁ´\èe:-f\ä\íÞ‡5Z\ìZlC-ög-ž\"K‹\Ï×¤=€>¤%\Ü/¡%¢i‰\ç¿\Ó¯÷\Ò}Ø´\Ä-\é¨-¥ñí±¹–™AK+¼@Ë€gÑž\èß£eIŠhÏ¥hÏ•%i9ÀKZ\îr\'-Ï¨•–wN\Ë{ªFË·§½0\ã\Ò^˜+\Ñ\n|Uhþ‡i…\ÚY´B\ê\Z­°û=­ô\à>Z©\ç3ZeR>­\ê\á+Z\Õ\')ZÍƒ&Z\ÍòwZ­\ÖYZ\í\ë\\Z,‡V—~†V7ù†Vÿ%†\Ö@h\rBiZ\Ã)ZS‚\ÖôGö®†Fû ,Okƒ\Ä\ÐÚ®-\Ñ\Ú\î\Ð\Ú\í@Z{@­}¹Ö±e/­#1“\Öù°˜\ÖY¨@û\íN\ë†\ÍÓºŸ…\Óz\ÎG\Ðz.ž£õe+\Ó>JÓ¾\ìÖ¡õ¿|H\ë\ï8Iûªw6pqŽ6ŒÔ¡D^¤Í´±š\Úøe\Úw\æ\Ú÷‹´‰\ZmØ M>q¥M\r7\Óf\rgh³6C´\Ù÷hs§hd)\Ú\â¥eÚ’\Ã5Ú’3¶TÉ¤-T¢­)\ÒVÕ·\ÓVw\Å\ÓV{n\ÐV“i\è_h:?\Ó\Ö_¥­\ß\\¡­c\éÊ·\éRhú\æ™7ô­T]n_?]¾\â*]\ád}›ü]º¢\Ë(]1Y¾cÿVú\Î\Ëte‚®¼ñ–®b\âAW\r¾OW\ÛlB×¨\ÙB\×>ZN\×~M\×~ÿ~\à\Ö\Ýp‹;\Ýð\ÑOºÑ¶º±\ßºq›n\ÒSJ7\í\â\Ð\Í.ì¥›=Ð§¼:N7—ûL7Ï¹D?”†§\ÑO¢[pb\èg\ê\éV8kºUP-Ýª}•v¦Cg“\ép¤#\àUÓ‘c\rtT÷:fñ\Zk\èEÇ†Ü¤cÓ´\é\ØZw:ŽnL\ÇM£\è¸ù5:þ\ÝN:þƒ-h¥ƒ_ž\ÓI3:©IšNŽ3£“«\èô\ÑktÆ©Y:#¿\Îzþ‡Î–þDg«ø\Ó9tÍƒ\ÎºB\ç\"ÿ\Ðyj\è¼K³tÞB:A¨4Ò…~›\é¢?1tñi5º8=—.Î£‹Ž\ÐO<«¡\Û$U\Óm\Úu\é6\Ü\é¶3út‡Gú™—ÁôóMôóo/Ó_µ\Ò/\êx\Ñ]\Ð]ƒt7øUº{y3ýšF)ý7™\îqc+\Ýc´†\î)}˜\îu\åý6S‘î««N÷ýE¥û\éß¤(¿  }\è¹\éo\Ú\èA\íAô`‰9z°\×6z\á=\ÂE\ì§G.xÐ£´\è÷N\Ñc‘ôû\ì:zÜ¿ez|pýû]úƒw\Zô\âUzB\Æ)z\Ò\Ú/z²\ë,=ù†=¹,—ž*%¤§ª\Ø\ÒG\\¥?n¿HO¤§‡ï§§\Ï\Î\Ñ3v\Ñ\è\Âú“¡\Ýô§;\æ\èY‡\Õ\éy^ùô™\Ï\è…ZfôR\Ùyzi–^\æ©I/‹	£¿\ÞaD\ãœE¯µ¾C¯-ùCo¾Å¥·„ž¢¿_§wº&\Ñ?\r£w\å_ w¯Ž\Ñ{†\íè½‚ô\ÞØ‹ôÞ„(zoÿ5úg\ÛVzr(ý«’>7GHÌ¤Àô‘òpú\è[€>\æüœ>\æ\ÞE\ß|“>±™>^xŽ>Þ¨Aÿ\æm@ÿ\î\ÒFÿ\Þ&AŸ8y>©\èLŸ¬\è\Óv5ô\é[\"úôýG‚>}ö\Ò_ú¬—}n›}.×‘¾hvœ¾h\îM_t„\Ð—Ü£/Y‡\ÐW\é+‹é«šôUCúŸ{2ôu¡}£¤‰!q«‹±i,Ž!\é°Æ²\Ù\ÂØŒ«a\Èøÿ`È¤\Â²¡¡Ù‡4†\ìbc‹aCn6C>“\Æ\Ø&z\ÄPt-`(.80vj1”O¥0”\Ï\ÒÊ•{*e•Zc†šñc†\Z\ì)Cíž˜¡\Ö+\Ç\Ø%{›±»4•¡ih\Ê\Ð\ìdhY”3´H­\Ñz†¶\Ã%†ŽMC§\É\Ð=\Æ`\è\Þ|\Æ\Ð{R\Î\Ð7c\èÿ{)Œ}$\Z\Ã@V•a\à\Ã0’\Zf…¾`÷\Þd\ÄR‡…G„AŒ£Ÿ\Ù«ú«\×ÝŒc*ŒcÿDŒ\ãõû\Ðm\ïÐŠ\\5x\Ï0¡”‡#\ÆÀ°&q·ÇžA|ZÁ\0ý2\äBõO5ƒùÀ”Á|±\È\à\Î>`·\Í3„þ2\Ä!\ïÖ¡êŒ“\äx\Æ\Éb\ÆÉrŒ\Ópã´§?\Ãvõ>\Ã\ÞÐ‡á ¾ƒ\á\0{\Çpðd8¶|dœ©1\Îó\çg®2Î¯§2.üf0œ¬_1œ:*N\\†³\n\Ãe%…\áZ&É¸¤Â¸L2g\\®™g\\\î…2Ü¼Ÿ2\Üuv0\Üs ÷¶A\ÆUr\ãša\r\ãV•\ÃcÚ‹\á=uŽ\áóƒÈ¸X\Íð£~eø«¦3ü363iŒ \Í`F°\ì#4Z–Z \Í3b„?b\Ü-0\"TQþŒ¨ðMŒ¨ô=Œ\ËF\ÌõŒ{_3\â`UŒxõÝŒ\ÑÃŒÿF\âYF\âò8\ã\á\ÏýŒ”[Œ”GŒ\Ô\Ò	\Æ\ãÍ²Œt|	#\Í\È\Üñ”ñ\ì²\ãY¾7#{º’‘½l\Ê\È1\í`\ä\à9\ç\'¹\ë§yR\ïygzù\íÍŒ{\\\"£H\ç£8.ˆQü#™ñ\ÊJñ\ê\ÕF¹\ÞSFE6À¨¨fTtU0^›92*eW•%•?õop?Ui\0£š‡dT‡z2ª\Û\\\Õ\ëŒš®6F¯„Q\ç€g\Ô}^`\Ô\Í[2\ê{“o\Ï)1\Þz2oß¿c4\ä63\ZkŒ\æ\ÝjŒ\æô¯Œw5ŒûY\Æ{\r\Æ{>£\Õl‰ñ\ác\ãÃº£\Í`|dº1>fJ1\ÚS¬†ŒN\î\ãSs?£Ë‰\È\è\nÿÁ\èúx˜\ÑM¶bôDù3z²ú=Õ»}O¢}\Ý\Æ\Ûz\ÆW‰¿Œ¯®RŒ\n1´.Á®ngŒ<\ÎgŒo¡1¾‹Œ‰Ã·wû“ö½ŒI\'[Æ”Q+cða\Ì&<c\ÌmþÁ˜\Ókeü<”\Æø|‰1ÿ\ßY<\Û\ÈX²\ìb,\Zb¬Š]«\ÉÒŒ?\ÊöŒ?\Õ\ßk®›kU\nŒ3\íŒ\r9\Æß´<\Æ?{\Z\ã\ß:™)¡§\ÃÜ”pœ)©u„)Ù‘\ÅÜŒŽaJã¤™2Ô˜²²˜[/1·\Ì\ê3·¾\È`\Êa¾1å®¾c\Ê\Ë\\g\Êk\r0d/3\\Æ™Û¦™ŠG{™ŠP¦’i4s‡þ:Sùr5S¥7Œ©¼eª]]gª•f1w]òf\îº&\ÏÜ••\Ê\Ü\Ò\Ç\Üý÷=S\ÝÀÔ¼\ÞÁ\Ô|9\Å\Ô\ê^ejý±e\î‰Od\îùs—©½\Ö\Ï\Ôw…2÷BN0÷\í\Ý\Ä\Üÿ\à.\Ó ‰\Æ4¼Q\Æ4Jqb\Z5¬1c˜&Š¿™&œd¦\É\ß¦\é	+¦Y\Ö=\æÁCsÌƒ=\ÞLóH}æ¡ž8\æ¡^\æaZ\Ó\" –i‘h\Ç<\Ê{\È<š¤\Î<Ú¢Ê´\Ô6dZ©leZg0­\ÌckL\è\ç½Lø\æ`&¼(•	ÿ¸\Îx¹L\àö&\"ÜŒ‰,\ëbb\Z¥™¸\íû™¸=;˜8Œ*_}”I\ìœe’†\àLòŸe&õ5ŠImKf\Ò%ùLz\åI&[\æ,“Ý­\Ë\ä\ÈU19³\îL®—,S(Áa\n½¯1E7iLñ\í¦\rüó”^ó´*È´¥O2\í²™vý³L{\Û¦ƒÀtðx\Îtð9\Çt<’\Í<\ç/f^hz\ÈtBW3MÍ˜\ÎõñÌ‹­\ÑL—\Ðó\ÌK¤b\æ\åMh\æL·K;˜n›™\î6\ÌkC$\æµ_·™×³˜\×\"˜7Ždz8D1=º·1=	W™žÿ|˜^‘AL¯^o¦\í¦OV&\Ów/Ž\éw¸\é\çQ\Æô\ß\Û\Çôg\\aúó\Þ3ý\Ïó˜þ¹¨ÿ¬3¶®2\ÄÌ€¯k\Ì\à\Åqf¨™3lh€yG\îóN‹93üy.3BqQw•‰MbF>xÊŒ¬d1£™1üD\æ½Cz\Ì{™±ô\"flÿk\æ}]\æ}·rf¥‰g]ÌŒsŽ`Æ¹v3\ã¯\Ä0\Ø\Å3Ä´3 ý\Ì\Ä\Êf’\ÏSfrÁW\æCw3\ÅIŸ™òM™ù\ÈÎˆ™º²‰™1¸\Ì|b£\Ì\ÌTNef^\Ïaf\ÑÖ˜Ï°^\Ì\ì\Æ3\Ì\ìÌœßŽ\Ì\Üö#Ì¼ûDfþ¥fþ\çu\æ	}\æ‹\Û\ÎÌ‚t_fÁ¸%³\ì\Ç,\\gh3Kþ\Ì1K³L™¯\n>2_ý™a¾Z[c–½b–Çœf–)0\Ë\'0+\Ì}˜¯Gª˜ož„2«sú™5QÌ·F\ç™o‹n1×‰\Ìf\n\Ù\Ô\Ìlšc¶¯evRŸ2»o>fv?Ybvÿ\Ù\Ç\ìy\Ìaö9‰™_\"k™_¦=™ýK\ÑÌ¯»™-j\Ì!S\æ\Ð^s\è\Ã-\æÐ—gÌ¡¹T\æ0»†9b÷€9’HcŽEC™ceL\æ÷¾R\æ„Cs\"J†9õ•9Y(Áœ\ÚËœv¸Çœe?a\ÎÝ™cþ¬\ÌeÎƒÿ˜‹\'<™KyF\Ì\åð\æò\à\ZseŸ¹òe7sµ\ês­Íž¹®1Àün\Ëüûp\'óŸ\rÀüªÏ’ø™Î’T.bI\Ò²¤ºûY\Ò¾±¤K±dÉ³d<n°d\nY²û\ZX²n¬-’Ž,9\ÕW,¹w?Xò\Üz–üõ/¬m2*¬mj±¬m,\rÖ¶€H–\âr7k{ÀC\Öö¦r\Ööq–²‚µ\ã\ÕY–ª\"¥¶ÿ7K\í·&K“\ÍR/\êf\íz$di\íöa\í‰Hf\é\Ì\è²t6lXz\×\ÍYzñp\ÖÞ A\Ö\ÞþpÖ¾=\çXûo¡XÀ5–AC/\Ë`ò\Ë`YŸeð§™e\ØQ\Ê2jmcC\Ð,\ã+,“\ËL\Í:øø\ë`#„e\î\Õ\Í2O‰b\Z`qúÅ²¸\Ã:*˜`\íŸaYM&³Ž5>a[&°Ž7¶±Ž/\ÑX°-*,\ØK`!d²‚3,„\Ï\nQœ\ÉBªg¡ûŸ±0†,P\'‹ŽobYd“\ç,JQ‹ªûšEõ²YŒo\'X,\r\Ï×\Å{À\â7$±\ÜR–\Ðv™%ô™a	›\ËYâš,\ë±\ÖÉ™K¬“‹–\Í\Í~–·<\Ë\æ\É1Ö©[{Y§M\î³l\ÏO²\ìUÎ³\Îþú\Îr¼a9\Ù]a¹€J,—%Ö¥“bÖ•7ö,·ü<–»e>\ë*5uu%†u­q˜uC\é\ë.Ÿu\ãR\Ë\Ïò¸\Çò\\dyC±|^<fù|+g\Ý&•°|\ÍJY¾G\ÒX~Ò«,¿wY~ñx–ÿù–\Ó<+Pc’\ìf}\Ú\Ä\n\ëwa\Ý9\ÐÊº\Ã\n/8Âº\ÛúafËŠÀ~bEt™±¢ž~cÅ¼úÀº÷už»Ë«ÌŠ?e\Å{³Yñ\Ùa¬ø±$V‚r+‰´‰•\ËJú$d¥$e¥ld±Rg\ÔXiv¶¬4_VZ„•\Þû„•‘WÀ\Êøú‰õ\Ä\í?\ß\ÊXOUa¬\Ì_YY¿\î²rŸXy>¬¼\ÄV\ÞYV¾\ì!V~N<+2‚õ‚°ŸU4ù™UŠ\Óc½:Lf½²ªf•k¬²\Êo±*†Xo–‡X\Õ5š¬ze_V\ÃiKV£;«™óŠÕ²\ï?‹¬H\ëC‰õ1Ç—Õ®¥\ÉjOðcuh°:±9¬Î‘JÖ§Ï·Y]Ô·¬n¶3«Gc\Õ\ã\Å\ê\Ý²ú\îL°úþJ°ú!r¬¯û”YW¬\Ú~\Ö ÿk°b‰5ä½“5sb\rßµg}n`M)°\ÆSüY\ß/Ø±&§YS\Ý\×X\Ó\Ötx\ëÇ‰§¬\ïÞ³f÷½d\ÍRSXs\æ\\\Ö\\“%k> –5ÿuŽµXg\Æú…\Ìú5÷‹µd+\ÏZ¦¿a­lF³Vbw±V\ç\ìYzGY\ë\ZY6³%t‹\Ù‡o±7=mdKýdKñ\ØR!|¶Tôq¶ôv)¶ô.¶´&-sÊ-s;™½¥)”½Q\Ç\Þú|[n÷[^ÆŽ-ÿ\è2[±\ÂV²}ÁVzq½£Î€½°U¤ylõ¨lõ_*l\Íj¶Ï—­š\É\Öze\Î\Þ\Ó\'Á\Ö>ž\Í\Öfc\ë(]`\ë¤²uµ\ÚÙº¹T¶žH\Ì\Ö÷´ü{_]\Û@­m`\Î6³\Ù›Ø‡¾<a±a	±f[D.²\é²\å>gC?`C\íúÙ°Zlø|3\Ég±QÒ¹lt)`³qúilœŽû\ê\Í\Æ#V\Øx¿e6>õ\0›(±‡\r¦N±Áþ\ëlR\à›ô\ã+›\"UÁ¦œ›eS¯9±©þZl\Ú=›Žwd\ÓF\Ù\Ìý…l\æp6\Ó*‘\Í\ÞW\Ä\æ€³9œr6Ç­„Í¼\Å\æf¬²ùû\Ê\Øü[O\Ø|¿E6!Ÿ-HXb{Ù¢$<[4\ãÄ¶¾f\Í>õV‰}šóŒmk^Í¶]¸Ì¶Md\Ûe´±\íž6³\í>\íc\Ûv°\íÿ\Üg;À—\Ø\ç‚\Ø™4ö™c?\Øg\í`;¾©fŸó\'±«³f8lgf2\Û9o7Û¥‚\Êvc±/5d_Ö·d_ª³/;\ïe_®˜d_QWf_\ÙmÊ¾r2›}mÒŽ}m£˜}=Ê€}Ã€Á¾\å\ÜÁö0¢³=[\Ùv²=Z7\Ø^cW\ØÞ»3\Ø\Þw\Ü\Ù\Þo\Ù>\É3l_;\Ðû;X\î;;D\Æ\Ðf‡\ÕÆ³\Ã\Zz\Ùw´\n\Ù\á\Ï\Â\ØwO±\ØwóŒ\Ø÷\ZØ‘»4Ù‘gÙ‘Y$vTƒ	;\êS1;ª÷	;:4Š}\ÏgûÞ¼ˆ\ëþ”}¿\ï;÷€ObÇŸmb\Ç\ßhc?ð\èd?hg\'Z\ß`?º5\Î~ôÚý8z7;m\Ûyvš¢4;\íø=ö“®\Ï\ì\'?ŠÙ™<v\æ‡ý\ì\ì˜óìœ\Zv®ò\'vî©·\ì\Ü\àdvn•G8\Í\Îû0\Ä\Î\ç?g\ç_\Ú\Î\Î¿\Ã~Quœ]d¡\Í.\êlgû6±Kn¹²K¼O°K\n°K\ÑoÙ¥ô\×\ìW\ÕXö«žv™s»¼³•]am\Ç~Ó³‹]eµ•ý6<‘\Ýø\à\Zû=\Îþ¨‰ewª°»\"\Æ\Ù]­\Î\ìn«û\ìÏ±£\ìÏŸ\Ø_n|b‰Mg÷#Ï²û\í\ØN8ö€ûoöÀ\Ìeö\às]öa{¨®”=¢6Äž@ù°\'\ØN\ì	\á\"{\ê\Ò {\ê\É+ö\Ì!öPgöO\Ï@ö¼c*{þü7öb\Ô\nû7£Šý›s˜ýû„&{i«<{i{\é0‰½²\ç\Z{\Åi„½Ÿ\ÃþƒUd¯é·±\×NE³\×9#\ì\r	öF*“ý*\ÇþgùŸ\è3\ì¥Ž„·G²Ã‘\n\Ö\àl\î‚q¤Ÿpd©–\Ù{\åœ-\Í\Û9re\nù\ïu™|Žb$š³ó\àGe\ëGe\àG•m\ÈQ›>\Í\Ùõ¦£…1\ãh_\â\èXpt/¶pô¯›sö*]\â\ì\í¯\æì³»À\Ù\çþ’³ÿ¬gÿ5.\ç€\ïkŽ}\ZÇ ÙŸcü\ë\'\ÇLs€cö¸‘sÐ¡”s\ÐY–cnÁã˜Ÿœ\âr\Ó\ä¹´™s\ä\ÚC\Î\Ñ,\Ç<÷Ÿ8\Îq=ut{0z@‘\×\Ø\àÀ\Ó>q\09\"H]\ã\0³ƒ„‘e±ƒ\Þd\ÏAg>\ç`x%<Ýƒƒ\È\à\à¿pR\âÁ\nñŒ‡øLJ¹sÀ{¹°ÃC\ÊrHK6r{>‡\ÜÎ¡X19”oF\ÚQ‡>¸\ÄaÀwq­õNm ‡\Ë*\åp¹,\×!–\Ãs\ì\àðýU9\0\ÍµsÄ‡\â8\â*\ç„\ã.Žõ‘\ÏkJ5\Ç:«s2õ(\çt›\r\Ç\Îõ2\Ç>ô\ÇA‡\Ëq¸a\Ï9\ã\É9›õ’\ãx\Ãq´Xçœ‹+\ç\\\ÈH\á\\xJ\â8\é<\â8K^\ç8\Ëý\å\\¼R\Éq±¥r\\*s\\SÑœK\È\Î\å¦z\Î\åž6Ž»\à\ç\êk\Î\Õ\Õ\Î-K\ÇS#\ãIM\ãxžû\Îñ\\p\äxw\Ús|n.qün\årü•\Ú8~\rœ ³DN\ÐÀ\'X\æ\'8ô7\'ø=œ\Zòˆzßƒ¶\ÚÈ¹£´\Â	\×\âq\îþ\×ÿ\èN.\'z œsÏ…É‰•8±Ëœû…x\Îýe\'\îX#\'\Î\à\ÄE\ã\Ä\ë{p\â\Ïþ\ä\ÄÿK\á<hs’¬Žq’\Þ\Ïsþ÷ž”ža\Î#\rUN*™ÁI\Íù\ÌIs9\ÊIûfÁI›W\ã¤-\â¤_á¤§Kq2\ÜœŒkKœ§gaœ,]NV\äSNV\Ö\n\ç™õ~N6§ƒ“}Ò‘“T\ËÉŸ2\å¼HŽ\à\Ù\á”\Ý9%iO8/£t8¯\Úðœò(NEn%\çu\ÇN%\í\çŒSMò\àTÿv\ã\Ôm\å\Ô]¿Í©‹\ã\Ô/xrÞŽ 8\rw|8\r\Ïe9\ÔœfE\'N\Ë3\á:9-ÿ*8­¸ýœ\Ö|Nkƒ\çC¡;\çC›óañ§-a7\ç£l\ç\ã¾t\Î\Ç\Ï\åœv\ä-Nû(—\Ó\Åø\Ë\é\â\äto\æô`\n8=I\×9=Êœ^ô0§÷þ!No\ËN\ßs#\Î\çüB\Î\çq[Î——ºœ~ŸZNÿ·Çœ¯\Ó\éœQ#gXjž3¢{ž3j‘Á½/\æŒ-—rÆ¾q\ÆsÑœo\r)œ\ï\nQœï¿–8Œb\ÎTI:gúUg&Û…33¿óc¥”3KP\á,z\Ïr~5ks~\'\'q–dÄœ¥´`\Î\ÒKG\ÎòŽóœ•ŸÎŸu\Î\ß\È&Î¿x®\ä³^®\ÔHW\Ú\à\Þþre4V¹2-S\\™…«\Ü-¡B®\\ŒW\îSWÁ®•«x*˜»}e7W\éÁw\ç¬W\\\áª\\>\ÍU-W\âª-\'s\ÕKD\\\r££\\Í€c\\­(_®v\\4W{HŸ«\Ûk\È\Õ\Ã\Ý\ã\î5ý\ÉÝ¿”{\àV\×\ÐO\È5l\é\à\Z|\á\Z)ypÊ‘\\c\è)®qT\×\äL	\×\ä\ÞI®I=Žkjr\Í%*¸\æ3l\î\ám§¸v¯¸Gõ-¸–\ZM\\\Ë½\\«#;¹Võ6\Üc°\Üc³(.B\ê=\á°\ÈEDn\ç\"oús1JI\\\á)s–\ÎÅ„^\åbªÌ¸˜\ßR\\\ì\r;.ø3œK\îj\â’\Ç¹Ô !.mûY.3\å/—ud—US\Ïe7*r9­>\\®z—{Ä„Ë½\È\ârg,¹B¥\í\\\á%Wô\ê8W|\å\"×º\ì\r\×æ¯€{*2™{\Ú+œkkvžk§ùœkG\r\å\Ú]\á:W¹ö\éÜ³¸g½Or\ÏQô¹\ç¼Ö¸\çÂº¸N»T¸\Îë§¹.«®k¨2\×õž÷Ò¾«\ÜK\å«\Ü+wÛ¹\î²\"\îÕˆÜ«o\ßs¯El\å^›­\å\Þ`[soTfp=a\\¯£\ç¹B_nÀ)Gn@\Ñn`\Ñn\à8—¼\î\Ã\r9²\Î\rI\Ëâ†¶<\à\ÞI»Ë½\Óvž{g\ã7<\î÷®\ç6n$“ÎÊ–\åF}Fq£\ÅTn\Ì)OnÌª	÷>µŸ{¿9œû`,›Œ\ä&*\å&\ê\å&{\ØpS\ì/sSf\îrS¹\Ò\Ü\Ô\Ñfnú\Û\0nz\ë]n\Æõ\íÜŒ\ç\Ë\Ü\'ª\ÙÜ§F\n\Ü\Ì(47³j€›5»‹û¬B“›­£\ÄÍŽq\æ\æ\ìv\ç\æB~qsÓƒ¹¹UJÜ¼q\n·¨ú·„E\ä–\åp_¶\à¾\Z¿\É}õ\ï7·\ìònY¦\n·\ì\Åny\æwn\Åu\îk·›\Ü\×%\'¸•)Üª¸n\Õ\Ú*·šUÍ­Ý™Ç­\íò\æ\Ö|\æÖ¯·r\ß:\ã¾\í\Ë\æ6’\â6\Ï\ç6†]\á6¹\èp›\Þôp›M&¹\ÍvŠÿi\ã6—ôr\ß2¹\í{Ý¸\Í\íÜ®ö\Ë\Ü\Þ|n_~#÷s-…ûe\Ë\n÷\Ëz1·K·ÿ\Ä·ÿe<·¿v7÷«E÷k›w’\Â|u‹;¼\Æ\áŽüâŽ®\ÞåŽI\áŽ\Ýap\Ç\ÍÇ¹\ß\ÞFs\'÷q\'ßˆ¸S^q§*\Ïqgo{sgs‘Ü¹Ow¸?÷}\åþœþÄ·ð\ç.¬\Ïr7up?\Þ\åþ>Š\äþþ»‡»|\àw5š\Äýóž\Ï]Wu\â®SC¸\ëþ0\îú\Ýi\î_N÷ß‘\Ü$\î¿\Ûr<	¦7OR\æ3O\ÒXŠ·\ÙJ·9Ïš·¹¯›\'-cÉ“žÿÈ“=¨\Ã\Û\Ï\å\ÉS1<÷\ç<ÅŸ]<¥hÞŽ¡W¼Ÿry\Êó^<Õ—\î<õ˜<õ:OƒX\È\Óø\È\ä\í\ï\à\íN\Í\æíž¼\ÉÓ„Ÿ\ái:¤ó4\Ï\Zñ4¯­ò4—ûxZ’·xZw\æx{n\Õò´«\Üxº’\Ûxº¬ÿ²‘\Å\ÓK\Î\ä\é/	yûd›yû5ð|\Þ\Ì3À‚<ƒ†<\Ãýž1Ö‘gLu\áG}\â¿GñL£<\Óû<ž\Ù\Â$\ïý[Þ¡‰\Þ\áóûy‡\ã±<q:\ÏJ\â,\ÏJ\Ï;&?\Ä;&<\Î;v\î\rþaŽ‡À²yˆ\Þ<\Ô}úl\"UÁÃ¼i\äa\êy˜¶e–\Z\ÇÃ—kðH\Ö%<2°Ä£všð¨“J<ú\å*=7Ç”¸\Äco]\ãq-Gx\ÜÁ[<á¶<q\Í4\ïD•,\ïD—-\ï\ÄZï¤¹\"\ÏfK\Ïƒ\á\Ù$\"x§;òlÁZžmµÏ®Ï³ÿ®Ás¸\Ò\Ä;‹?\Ï;[ñ™\ç([\Ås$\\\ç9>L\åÃ•ò\Î5$òÎ½?\Âs²±\â9Å¸ðœ\Ù\Ò<\Ø\Ï5z3ï’Š7\ï,ˆwYº„w¹\é\ïŠA\ïš/\ï\æ¼[„xž‡ñ\'ž\'É˜\çE\æy\Åhò¼]°<\ßðDžß–BžŸ§=\Ï\ï\é}žÿH&/@\ç/\à¥/p[%/\Ô\å…|\Ê\ã…óBgya¥h^8‚\Ë¿ýwWR‚‰›\ãE‘fyQ¼^T\Õ/Ú¦•³û/\æ¿\ÚÝ—H\ä\Ý_”\à\ÅKöñ\â#Uyñß¯ñJx.úð\Ò\Í\Ýx\éw\ßñžº\Øó2›>ð²\îVó²ª\Çy\Ï4ðž	yÏŠŸðž—ûñ²\Í\Üx\ÙLx9ô]¼\Ü\n\ïEö_^i3¯\ÐÀ†W¼k?¯xú¯Ä¸“Wbb\Ê+±”\å•\Ü\èä½”ú\Å+\ë\å½:V\Ì{•U\Ç{\Õø“W¦\Â+¯°\åUh]\ç½\Öt\ãUšPyof¹¼\Z\Ñ^\Í\Ë;¼º\ßÖ¼zh¯žð\ÞJó\ZŽœ\à5¢nò\Zûp¼\Æe€\×¨\Ëkþ\í\Â{g¡\Ì{|Ÿ×¢z˜÷¾n…\×z<–\×vÎ‹\×Öµ‹\×\î>\Âû\äö\×åº›\×\í²\Ì\ëkx}¥6¼\Ï!b\Þ\çñ·¼/:\'x_O|\â\rœ\å\r\Ý\Æ©ÿ\É\Ýýœ7Jñ\æ:œ\æ~|\Âûf»È›D(ñ¦¶]\ãMý\ã\Í\äðf	¼¹j\Þ\Ï\ä\Þo\Þ\ï\×\'xK‰xK\Ïoò–>`yK\êy\Ë\Ø	\Þ\nþ7o5›\Ï[ý\Ëû£\ï\Ë[7¦òþ\ê yñ#¼«ÿø›nð7µ,ñ%kjùR\ËD¾º/\Ë\åo\Ý>È—\í\åË›xò\å\ïl\åË·4ó=TùŠyk|Åš§ü\íþö\ÈRþöW\ßùJ\Õ|å‡ù*k|u0›¯þw™¯q™\Å\×ð\n\ãk4§ñwó\nøš\Ër|­DKþ\Ù3|m•p¾6-•¯Í¯\á\ë\Æ:óõ¤~óõ_¿\à\ïõ\'ñ÷¼\Ä\ß÷\Í\ß\ï\Ü\Í?À¸\È?\ÐR\Ê7zþ“o\Ü@\â›@~óMÈª|Q(\ß\Ìû\ß\Ümÿ°\Âþ›A¾E˜ÿ\èÝ­ü£IP¾Õ±\Í|«Û¡ü\ã\Ù\'ø@Žq…\ÌG4\å£ûø˜ck|\Ì7»U“Or\ä\ã{\Ìù„\èO|¢»%4þ\Ã\'ùó)2‘|J,„Oó\á\Ó+¾òé½‰|f¿>Ÿ{p7Ÿ\Ëk\àó7‡ð&\ã|Á™i¾]\É2Zø\Â._T2Î·\á\Û&eñ\í~\êñ\íþ|\á_X\Î\ç;Erø.£ø®#pþ•\0/¾[\Ñ%¾»ÀœSZ–s\ÏÿÖ‘¯|›Z|!\ßc²‡\ï)\á\Ã÷D-ð=ñŽ|/Ÿb¾W\íq¾Ws\ß\Ó\Í÷\Ù\á\Ï÷\É~Á÷\r\ãûýµ\äBñ\É;ùA¢1~°†!?øü?ø\êG~\ÇoN\à\ße}\à\ß]~Ïx¼ñ\î\r?j„\Ó\çGqøQmü\è\'Lþ=36ÿž¿4ÿ\Þp7ÿ\Þ\n†\ß\éÿ~˜>?N¶Š§$Ç\ß\ç\Ç_Góü\Âò–<ø‰?ù\ë%ù©\Öþ\ãIü´\ãütü>~:÷:?Cþÿ\é/~f¢ÿ\Ù\Ö$~öŸa~Ž\ÝE~\î£7üÜ†6~SŸW\×À\Ï˜\Ê\ÏO\Åñó3ø/ô\çø…osù%ø~\É÷8þK\ã/ü—¡§ø¥KüW\ÃGùe\ç3ùe¯ó\Ëù\ëüòN~\Å\Ë-üJsuþË‹üªòoü\ê©#ü\ZÝ¯ü\Zû2~¿Vö¿®~\ßñ›x\ãü\æ5k~‹/¿(\à¿ÿ¨\Ê\ß\Îo•~\ÂÿHtâ·«ù\ípO~Çˆ/¿sÜ”ÿI \æw\ÙMð»Š·ñ{ºþðû£øŸS\Ëù_®ƒüþñ]üC. \Å\ä¿\äm\æó‡\\þðƒ)þˆ>š?¦§\Ï—‰\çþ\á;A\ãsr\çO¬\ëð§\î–óg†üø³RSü\Ù~ÿ3oŒÿóÀŸ¯‹\â\Ï/\rðZRø‹\Ãü\ß\íü\ß_ñ×´\îñ\×--øÿž˜	¤0[Re(Á\æ\ß\Ë\é\nš@ºë¿œy\'\Øúû¥@\Î\"T ÿ\é‹@\áñ¸@¡ý“@Ñ®_ ¶\ßü(PºC(¥$vœ\r\ìT\è\ì4i(«ð*‘‡*žT«§j\×O	ÔŠ\ê¡úŸ‚]Ã½“L–J U•#\Ð\Ý\Å\è\ïèŽ¬	\ß\ÞE\Ü\r</<˜Ž\n\Ìô6f¼™B`n¶[p\èhº\ày³\à\à \àˆs\à\è\ß\Ïˆ¢\0Š¾.€\É\Î	\à¥(ð\"V€Y\à	°\Ö\á|¨›€(yM@¬2€Ê…P\ÕN@–P\â/\n¨ó\Z=[@gx©\×Œ@óNÀ\ÚR+\à|pÿ\îð\í6	Y†¡Õ´@ø/\Ñ~\nN8=X›¬nX|œ\nNi–l/\Ðö\\CF\àð}Ÿ\àÌ¶Á\ÙrœÀ\ÑV[p^)PpÁn³\à‚ÏÀIF,p\Ò#.\Z<¸v\Ô.\Ô	.›®O®ôû\ÜOx\Ü\Ý\í\î!$Áµ5Á\ÍÏ½-4G8K\àùŠ*ð\Õ\'	|\0_B‰À\ßò— \èt› ø:(Uˆ„z¼\Üù`*¸ó§^~RMp÷jš bR_ý\ÈH\n\î½Ä¾Q\Ü7û\'¸\Û$ˆ»&\'x°oC°\ëŠ A¿X\Ô$HvO<ün,H™¿&x\Ô\Ý$x4R H}°\"HÍ‘<F_¤\É\í¤A—¸‚Œ6¦ óW‘ \ç(\È\Õ-\ä\é	òŒ?\nòD^Œ½º«Š\Ö\ÕÅ¦‚’\Ú$Á\Ë^ª BºSPq_[ðº3SðzD$xcT½ZT\Ç\è\njö\Ô6Gê¶¤	\ê/¿Ô§§Þº!\r’“‚FkA\ãµh\Â/	š-¤-\'©‚–_ÁûS­3C‚v\ë<A§|„ ó‡ª \ëv’ 7\ÃCÐ·\ÏJ\Ðw\î’\àó\à‚\à \èW1Ø\'\ï†C3‚‘æ½‚‘¶NÁ(:E0š,|y	¾-³ßµö	¾_y$˜8-˜hG	¦<\Ò3\Û7	f*­?r³ú\í‚ÙžFÁB\ÖiÁ\ï¹‚¥µ|Áª\ç\'Ái%ÁŸ÷“‚5›%Áz\ÓÁ\ßk\"¡\Äo‚Pr\ß\á\æKBi‹?B\é8¡t\á/¡ôôO¡Œ\Òg¡Ì¹[B\Ù0¡\ìL‚p‹Z‰PN\æ¤P\Î\ÌE(×‡\Êû\'	\å_8\à¡‚ûf¡BÚpû«sB¥™x\áŽ ”pG‹pgF¬PUž&T}rA¨.qS¸û8T¨;²U¨/\Û.4r\Û)4z£(4\Ò\Z¿pš\è\èÿZ\Ê8­’\à\ÂcPW!hB\ÃM„0u\'!\ìx^#„g¶	Š\æB¤\ç†E?)D	n	QWú…˜\ÌJ!¦\Ï\\ˆ¯\Ñ’»k„{	!­%¤\ïš2i\"!\ëJ‚-²r\Ò„¢ŠBë¸­B\ë•\áI3\r¡\Ïá©²0¡\Ý¶\Ð\ÞCUh¿úEx¦iQx¶ú¨ð\ì\ÄU¡\ã‚\ÐQ,#<\'8.<×µ(<˜*<*]\è%¼\"(¼Bºe¾º\Ü^m\r^\×bo|¹)¼5yE\è1ŒzhztzËŠ…\Þ+—„~0¡ß‚Œ0pG¢ž.EC„¡Q9\ÂpSYaøo²0B\ÕZu¦G}»D£V\'Œy­)¼G{\"¼?C\Æ-N\nÐ„|\ã…	«\ÂÄ¦(a’I˜l\'Lö‘&\æ\n“7~\nSU†„iðAašÛœ0ƒ…>¹\\-\ÌT?&ÌŒ¸$\Ì\Ïf\éH\nŸk>/x+\ÌF\ífû·\ns}Â¼O®Â¼›„ù2\Â\æmÂ‚‹›„EK(aqÈ°\ä\Ìa\É\Íû\ÂÒ›\ÂWY6Â²ö2ay\î\á\ëú\ç\Â7ß„U„U_ó…µ÷Ç„uŸ„õ¦xa=ç°^\"|;E6>6|6™]6—6m6›P…\Í\ÞR\Â\æ¢°¥/|¯ûVøþ¶‘ðý\áûþR\áƒ\Â/„*;…mªŽ\Â6O_a[þoa»¤‘°ÿQ\Øþ˜-ì¨¶v‰N	»I?„½¿¶¿ù#\ìOó~=El©F\r3L„#—”„#¥šÂ‘µ\á\èñ\ÂQ_P8®²O8®\Z,ü&]-üÖ³Møm¸Mø\Ý<Zø=¡T8a!œú*œ\Ð\ÂI¼®p2þ»p*±N8sG üyüp¡ò˜p\Õ%\\“·®­g\n7¼\Ø\Â\ç–E°^‘Ä…Ñ¦2?‘drŒhs\Ú_\Ñ\æ–‘lû}\ÑÛ£\"¹=4‘\"%Rœ–m—­)½\ãˆvx8‹v<\Ù)\Ú1%)\ÚI,\í¬‰T²Dª^ý\"µ‘ú¢h—+S¤1\×%Ú¼)Ú£Ii/Ÿ\éø	E:\rd‘~\Â!\Ñþ*w\Ñþñ¢›P\"C¯\Z‘³Pd²\ÛNdR?)2fE¦_ˆ\Ì\nD\åE\æÛŠE‡´E‡†Š¿ðY´…E–ˆŽ\ßf‹Ž\çA\"«D\Ôo\"x\Ú	<3MD‰Ua\"\Ô\áJ\ê\íaZ -B_†ˆ0/\ãE\Ø}\í\"\ìH­\ß\ä#Yc\"0FGN‰Hó…\"Š\Ñoõ5QD\Ã‹\èÍš\"†\ßC£\Þ\\\Ä\êPqžÔŠø\È~¿P(ü^Y\ÛYŸ—YÔŠN:T‰l–5E§s‡Eö?GEŽ\ÅJ¢sø \Ñy7\Ñ?¦\èBž–\è\â5e‘«\ÔG‘\ëë‹¢\Ë[¾‰.E¢+t‘[Ÿ\È=\'ºvxMt}\äŸ\èÖ‡\Û\"²–È‹~A\äP$òú– ò¾Jùo(ò/ML\ÊlFªˆBôLE¡(]Q˜·ª\è®iŠ(â¢½(jo…(öNŠ\è>‘\'ºÿ\×R\ÉÅ§¾=È‹%\ä6‰\rEI.Ò¢¤\àK¢”ú4Ñ£‹\×D©²Eé‡¢œ™\è\é\î¢§F€\è)øWôôy‡(3[W”µ=RôŒ@e»–Š²_È‹²«—EÙQ\îŽh\ÑÛ½¢7JD…¼\\Q\á¥PQ‘‘¬¨¨pTT\Ô+-*šó.‰J\ë‹^]y.zøŸ¾uQ&ª¸›&ªˆ¿)ª{(ªñ\Ð5Œ™‰\Z\ÍŠ\Z‘Dƒ¾¢\æ$5Ñ»\ÜQ\Ë\ÍQ\ÛiIQ»\Ï9Q\ç¾¨ûl­¨\çÄ¸¨\ç\âQ?\ÝU\Ô\ï\Z\"úúµGôõ×²h\0Y.\Z*\r\Zû‹†–.ˆ†K–Dc\Û\ÌEcùÑ¸úf\Ñx\ÕN\Ñ÷WL\Ñ¾R4qš\"š„\ÓD?þ›»\æ·D³vª¢\ÙEE\ÑÜžÑœN¤h®iY4÷[R´ðV$Zú‰~ƒ¢\ßM<Ñ²³h•5#ú“\Ñ+\Þd\ËoZ-o¾].–VðË”«ˆeý·‹·Ê°\Å[¯;ˆ\årpbù¬,±\Â/±\âZ€xû­ý\â\íoü\ÅJÇ´\Ä;XŠwXÌ‰w\\?#Þ‘uJ¼\ç(\Þ\É++#ab\Ëy±\êú˜XM\ÙT¬fþK¬†¯«\Ç.‰5¬Pb\Ík\nb\Í!ŒX«\ï²X¥&\Ö=\'\ë~ú\'Ö›m\ë\Ëm\ëÅ‰÷n\í\ï\å\î\ï={V| \ä–Ø \ÈAlÔµKl,Rl|\Ö]l2½IlV“&6%‹–§Š\Í?;ˆ—\Þi\'¶¸p\\|´÷¶\Ø\Ê+C|l[—øX¤«z,_\Í\ÖC\ëN‹\áªZb`Ÿ¦‘¥\'F®ž\ãt¬\ÅxC\r1ž\Ð+\Æ\Ûw‹	\Ç*\ÅDg1‘\Ó,&¿\Ú%¦\à%\ÄTž—˜.¹\"f^Q´žŠ\Å\n­bñ\Ñ\\ñ	ÿ“\âm€\Ø\Úe§ø$0-¶|->uñ¥øô×¿b[ó)±-o·\Øö¢†\ØnLZl÷\ÛYloŸ.¶÷ú+¶ÿN;xb‡WbG\Î{ñ¹\Ç=\âóß¥\Ä\ç§+\Å\à\â“J\âS\â‹\Äc\âKªy\â+\áe\â+£¿\Ä\î@º\Ø}dV|M›.¾v¨\\|i(¾\ÖqX|m*¾®xM|\Ý/]|ó\Z]|ëž¬Ø£­M\ìi -öŒ7{\Z‹½€$±×“(±W\ÅN±÷±Ïÿ1\\ŸñXQ\0Àe§a\Ù\"Ñ”d”\r´Ð³÷\Þ{?v\Ù+-+\"’¥‘­\"”™†ŒE\Ê\È\èÿñý\Üûòw\Ï9÷w\Î\0H–\0!!;\0!\ïÁ€°Ol@\Øx œ(„?\"6¯\"|\ê\0þ7‘z7\0Q\ÎJ€(\Ðu@Ô›Í€¨¾e@4?sBˆ{b>*\0b?S±²€¸^ ™H\é(\\\'­\0n0\Ü8c¸A\r\0\Ü\\™\0¤/h2ü[™y€l­À779\ê¯9EI€»¸)@Aö@\á\Í\ã€\â^ $ð D|P2…Tl\"\0*†þ*÷e*_|<\Ú\âx<\åx’\Ý	xJ³<M\Þ¨®ø¨ÉŸ\ÔüŠÔ¬%ž]=¨u³Ô¾þ\n¨k\0\Ô€\0\êÃ¥€\çu€F\Ý@£\ÑC@kV$ õc% \ÝE\ÐQ\Æ¼4\Ü	xu\Þ\Ðõ$\Ðmm\èFª\0º__ô(–\0zY\î€>\Ä^@\ß,	ðvc\Ðÿº0\à²0h\ÉN†N¬††”\0CŸ#I\0#¿÷\0\Þz\0%€eþ€\Ïx	`,Aðex\Z0™L+&{ø€É¥eÀ”\ÇfÀ\Ü0\0ð=\ã=\à‡R4\à6ðó\Ò\'À\Ï&eÀœ¹\'`\Þ\î3`žOüºs°P{°(g\0X\Ü\ÛXv\ÛXA\æVVÏ¾\0¬vö\0\ÖÖŽ\0\Ö\0Ö›&®DÀFm(\àß¡À¿c;€›\ÜÁ@9(_ Ê¿\0®þ*\Ä\Ú›\ï\0•ž\æ•s€\Ê-€›æ›ƒÕ€[,\ï·ª\à[-\ØÀmzw€\Ûn€jI€Z\ÚR –\Î\nP\çšP÷\äi ÁÀ(Ð¨ùÐ¨_h|ö\Ð84h²·hv\Ç¸{ô\Ð\ÊP´29´:phÅŽZË…­;wm_,\íM1@\Õûÿ{tà¢û¸Ÿ€FŽ\0˜²k~*\îñó:h:u€N\ÓIÀ£-²À£ó›€\ÇþÂ€.ög®\ËI@7ý\Ï@·\æs@w„ð¸R8\Ð\ã\Ío \ÇG \ç\ÕO@Ï¦C@/6\èõ[xò\èÓ·\èKžÚ›<\ÅžýVt€þv€þe`À\×Às÷\çmö=\0^t\î^|g¼8£¼”ÿøü0Hõ,0\è\çI\à\åñ@@·ò\ØM\Û¡{\î\0¡\é@h\Õ3 üf)\ÞõˆŒaQ\ä ª¸ˆ\ÞbŒ¾±\Åh \î„Ä»|\â?\ÊÓ€„\ç•@\â\Ç@ yhHº¤\Î\ÇiJ7€´XK m2H[2‚º\Ìf*m¥\rd_\0²œ€\ç-@Ž\à=g#ò§€ó?@K>Pr\Þ(ù¾”\Ú=J7º€!ao!õJÀo€!\Ó\íÀð¼cÀð7>Àð÷CÀß­À+>\ï€W\Äg€1žŠÀø$0þz0¾´˜X<\0L*=L\ÖI&CñÀ\ä\è7À”>Àk9G€i‡¾¯\Ï\Þðò\Þ\Åoþ‹¦«c\é1ßYõÀ¬p`öùÀ\ì`v\É0\çùq`®˜+\È\æ1\ë€yI›€ys\ÚÀ|\í_À{\ÄEà½¨5`\ÆX¨©\n,¼(,Lù,lþ	¼\ï˜¼:,ªþ\n,ö÷–ž\Ñ–>»,¿š\n,\Ï\ÌV\Ú2€=gU¡À\'ýÀjK°\æ2\rø¹XN\Ö\Õw\0\no\0wþoô;°™\ï\0l\ÑG[l\â€\í÷K€ÿ\×S§ŠØ™ûø²7øŠ™\ìv\n¾ù|\Ø¥	\ì\é~\ì\Ý5\ìM>\n\ìû\Ü|§—|—k\ì\ÏD\0D?\ÏGvš\ßÿµŽ~}ü\à´ø±\ã$ðo	øy\Üø\Å;\Z8±\épb&8Y\Ûœ\\\Ûœ2\Ýüšœ®¼œni~¯°\0~ÿ\ÝœÙ•œ	\Çg’\ê€39‹À™µ$\àZ]\àO\äg\à\Ï(G\à\Ï[nÀùù·À_r²À…—\ëÀ\ßzõÀ\ß\'Àß´À?‹´§À¥7ýÀ¿m×k—\Î7šœA2¬7 £û \åõ\' Í¶Q Í’<\Ð\æ\Þ \Í}& -¹% ­b%Zõzýu†\é\Æ%\æ:Vù~V{H›ž\0\Úq\É´#þHwS7Hwg1H·a¤\çµ¤÷\0\r\ÒO4\í<\Ñ\0\Úùþ\'\È4\à\Èödú¦d&x2/e‚v!‡A°ý K\ç.%\Z\Ú}‚\Úc¢\ÚsE´\ç´g\Ðdmb²\Îv\0\íS­\í3U\íû‰\íŸ:\è\äkB«•~€wIAN[UAN\ÇAÎ \Ë%U«\Ü?û\Ä7\Ðñ“# \ãe\î @GÐ‰¹ \ê\Í ñb·B\0\èdq\èd»=È§Yòú:#Œ…Ú\ÎVö‚ü7VA\çmt@\ç\Ò@\ÅÐ¥^((ð4\ÈÂ‚Sƒ‚$S \à\Ê00\æ&B\Ú‚žA_½Á$\ÛAˆxC\â·\r±D!I© ´`„i§ƒp\ì= Ü­n>g„_šD·A\ÄSª b¦,ˆbW¢8Q\Î\ãAT‡W *\í>ˆ:›¢\á½@Œ1ˆi™b(Ø»nƒ8Z@\Üü þmÁ\n$LpIr@!‡\ì@¡‡›@¡•Ñ \ÐVyPX\ìQPd8t\å\ÆuPtc(f\é(V2ŠCƒ\â/\çƒ\Òû@	¯•A©r­ \Ô($\èšz\"\è:ü	\èz\Ñ\èú\ÇYÐ\Ï<\Ð\ÍÀ\Ð\Íi\è\Î”\ã\Ê\Ø2Ê¼5\Ê*leßº\rºƒ\å\ZðAyQf |&(ÿ\ÆPþ‹iPþr7\è^¯1\è\Þ\Ä9P\â	PTPrt\ß\Ât¿\ÍôÀ\ÊôÀö0¨86TRÿ	Tje*½•‘>€N¸*¼@•\àQP\å\ÚÐ£S\Ð\ã\ím *u è‰·\è\éw?Põ­S ºP\Ý\ê/P£\Ô\èQj\\¸	jzXj~jþ\êj5rµ&µQ™ ¶Œ P§\ê|ñôJøôjp;¨\Ëj7¨\Ë\ÕÔ•ó¿#P·O\è\î\èÍµPo5\Ôgš\ê{µôn|ô\î_¨ÿV:h0\à	hð\îc\Ð\à’h¨*4œ•\Z±z\Z\Í~\n\Z³ü\rú²õ*hü\Èc\Ð8ù)h<\Ý\r4\å\rš¸aš\È\ìM\ÚG‚¦B‘ ©„Ÿ \é\ër ZN \0!h¾ó\è·\Í\Ðo\Z	ôýYd‚\rw–Ÿ­<‚þ¾°ýV­\ï{Z¿­ÿ¾\Ú\èvm|ü\r–q9–%É€e¯+‚\å\Ù`…\êR°¢¥X1\rV\ì,+A\ÒÀJ5\É`e³ð\æhxË¡O\à­8_ðVñ:x[@x[„#x[jxû™i°ª\Ô¬ú¯¬fVƒŠÁ\ê\ë?Á\Z\Ï‚5>\îk:€5µ¤ÁZ\á`\í\Ó\ë`”°Î‹°Î›x°®QX·\Ö\ãÙ‚õR‹Àúš\á`}ûI°~½;X\Êl¨\Û\n64À€\r—.‚XOÀFq/Á¦ˆý`\Ó\á\'`³{T°ùðsð®\Ìdð®O½`‹˜;`«\Ë\ã\à=\ÏzÀ¶!\ÏÀ{_Y\íGºÀöß’À\ìN°\Ã{ð>´/ø@ŠøÀGU°£øØ±¶\r|Ä¶|\ä\Þ4ø\Èò	°“\ã ø\èŽdð1)øó,\Øeµ\ìú9\ì¶l>^{|B„{`Î€=-–Áž­À^jÁ\Þf¥`\ïÀ°w\Åy°w/	|²R\ìÓ¢\nöY	\0û&Úƒ}ö€Oi3À§\Ú:ÀgŽ&Ïª†‚ýþŽ‚\Ï#wƒÏ‡Ëƒ/,‚=šÀ\Ë!\àÀ\ÕYp°\î~ðeº¬ž\0†ä¹€!¯¸`(b;G\ÃZ\ãÁ50‚\èFi½£ŸAÁ˜o\Ö`|@+Ÿž\Æw^d\ÕÁD ˜\\T¦ý0\Ó\í\æÁô&˜ñ Ì”§€™E0û˜\ß\r\æ<~\æy¼ówlº~€Å¾?Á\â%`i‚=XÚŽ\0KÇ®‚C^pÁ!C\àP£:p(Áú\å8l\Ç8\"b‘§\rŽŒ4GN.¯*©€¯<_ý\ÛŽ1Ž=y/~Nˆ\Ö\'zn\'ñûÁ\É§Á)8\Z8\ÕCœ\Z¹œúù*øZÿ&ðµECð\ÍSÀ7\ïEƒoƒÿ‚o\'Lƒoß›§—D€ïœ¾¾S1Î±\ç”&sÝ¢Áw!\Æà»˜dp>\n\\°\r\r¾\ïw|Ÿr\r|¿.²>.r:.fe‚K\ÚÁ¥\Êù\à\Òepùwp¹mÀÿªÁ\å6ƒ\"ŸƒFƒ+\Ü\0?ÖšWý\É\0?ñ\0?9—~\Ê`€«-Ÿ^?\ë*?[k±\æ\àº9)ø¹\ÇSðóK5\à\ç\Ä)pƒ\×mpC[3ø\Å\\¸i­\ÜbTn=ÿÜšlnýH·Ý¬·_\Î¿² ƒ_­=w}\î\"´€»fGÀ\Ý\ÃwÀo\Ü\á\à7,pOÁop\ï\ß7à¾€ð;3&ø]\é4x\à\äx°f+ø½y<ø}¥\0<Ú§\0þ\àbþ\ÈxþXþø´<–vü±<þ\æ0xbð#x’KOfè‚§\0\ÛÀ_\ÙK\à™\ÛÁ\àŸ¸vð\Üð\Âþ,ðÂ›\à%¹(ðR-¼<¶ü÷zx\Õ\0þ·‰þ—ÿ²IŒ€\È]Öƒ\È_‚(€nB4@”#_B”o\ÕCT\Ø\ï *BT~\×@¶x\n![®„l©…l\ß\Þ	\Ù\Þq¢f^Q\Ë\ÃA\ÔJ\Ê \êuS\r™6ˆ†ü&ˆ\Æ2¢¹ü¢…‘B´Hÿ :DKÈŽA4dÇ§ˆ®»6Dt\0¢Wÿ\n²óR-dg“\Ä`i\'\ÄP—1\Ìÿ\01ª:1ê‰…kUBL(\å“ªIˆ\Ép4\ÄtÿuˆY\Î>ˆ¹9bNy\Ù\åÅ‡X\ÍWAö,¦@¬ïŸƒ\ØÝ­€Ø•AöZþ†\ì½g\Ù[k±\ïƒØ¯B¶„Cö]û\Ù\ÏCCöª‚>Dƒ8¶„8y@?ŒBŽˆ±§ßµc\ìs\×5\Ä=šq¿}\nr<À\â±ò\â©<ñDjC<\Ã5 ž\r\'!ž3ˆw|\'\äd\æWˆ\ç:\Ä\'õ(\Ä÷\íQÈ©Ö3\ZË3™ gm& ~ª{ ~V€\Æ$\È9\Õ\È\Åm6K\Ö!UZ R¬\ë\Ë@`\êL3!ð\Úý¼ÁD}†`ª\\ ˜eOn›>/¡@ðE;!„C\ëÒ‹‹ò\Ï:\åBçœ‡05f!LÀ*„W\ra?AC\Ø‘Žÿ~ˆ þ6D”›	óq„„_\ß‰0PD„m…Di\Ô@¢>¸B¢\rS!Ñ»\á\è˜Ã“Ø€ƒ\Øw(H\\»7s	¯y?™‰Ÿ®$l\n$\ÊP!\Ér$HJû:$UJ‚\\“ñ†\\¹V6¹• „¤» \é\éhHú]kH¦±<$k+’\Õ\Ô\É&@\î\Ð\Æ!w6‚!¹9‘»g+ yv|È½‹‡ ÷n˜C\nN³!—\Ã …J­%HI-¤t\Ó)H¹¼:\ä\á•gGüý\ÇnV\ÇLy\È\ã»\ç UlGÈ“½Ê\'v\'µZ§ÀTHõ¡‡\ê£\Zþ3\È3\ÚfHm\Þ+H]/R\ç%¤\áF\Z\ä\ÅõH\ÓðKH‹ü3H‡B>¤£›yy\Èò²¢\r\Òõ;ò&ú1\äM\n\Òc\Þ\é5q„ô†î¼5¹ygƒˆ\ÞC$¡(Èˆ[	d“\0­¨€Œ~øùøü$\ä3÷\'\äK\n\r2~ûd\â9\r2\Éõ†|=…†L\ë„C¾ÿ\Z…\Ììˆ€\ÌfdA~R\n ?\ßyB\æ7\á!óA-_\Ç\ç ¿µE²˜Yü\ÔY.xY\î?Y\ÑK„¬ˆ!+\ÅÝ¿\ÎÓU\ÙKU\È*$²\Æ\áC\Öýö@\Ö!\ß!ÿJ.Ce¡½P¹}÷ r³P9¨Â—E¨¢šT±fª$ƒ*\ågB•šPPeeU\è\æ6\0T¥Ý’¬\ÝNÎ‡ª:)BUƒ>@\Õ4EPõŒ¨F´T#\Õ\Ú\Ö\ÕY8\Ý8\n\ÝÁAuEw¡º¥Ÿ z\îÇ¡zm>PýøH¨¡‰\ÔHý0\Ô\è|7Ô¨ÿ\ÔÔ¼j.\ßµ°Ë‡Z:9A­h‰Pk‡\ßPk±\Ôö\Ö>¨m•\0º]\Ý7¯\Ý\îô€c6ô`\Ùk\è¡À\Ý\ÐC?¡‡;¶@_\éA<@CžÒ8=šcu¦ý‚:p\ã\åC\Ý\Ö4 \Ç3ˆ\Ð\ã¥.\ÐòzP\ã¨§s4\Ôk\ÓS¨÷nu¨÷\Õ\"\èIžz2†=9q\0\ê\ã\ã\0õ½s\êûú\ZôÔ>\è„,ô%\rz\Îg;ô\Ü÷¿\ÐK%Š\Ð\ËA\ÃP@M=\ÂCaÙ· ð\Ô,(‚´E–Ü„\"×™P”)Š‚7C1CuP\ìšŠ)…\âÿ%B	\Ù(\á#JJ\Ù%¥Ÿ‡RP\Ú\ÝPft\'”£ÿ\Ê\ì‡\n¡JPñ‰‡Pqy<T²9*µ)ƒJ&\Ð\Û5hˆ‡4\äòKh\èM\'hh\ËahX?\Z®\Zþm74R£\Zik\ìx¼\ÂßFUŒA¯lü†^Eœ…FûhC\ã¦G ñ—¡‰\Ö\\hb\×4	XMEC“\"ª¡)\Ðk\È2\è5üô†®ô\æó\Ð\Û\Ùn\ÐtYUh:÷¿EhFX4cž\Íôð„fiiC³Q\ÐðmhLš›\í½{\æ4/lZ€x-hñ…XB‹Bü \ÅTGh	\ÅZ¶\ÓZùrú¨2ú\Ø\ÛZEû\r}B\Ý\n}’¦\r}ò~?ô\é§XhM€´fzZ{HZwñ6´>ù5´¾¡Zÿ\Þú<÷´\áR´ñN0ô¹\Ú\Ôm>º\Úö\è\r´­“\n\í05„vŒ\Ù@;\ÏB;oX@_ÝŠ¾ª\rƒ¾j¸\0}½5ú\Z’\0\í\Úd\íbŽC»Bd¡ÝŸR¡o\æ; =m¦Ð¾i/\è[£³Ð·\ÎÏ ý\Ð\æ\èûý©\Ð\ÑkM\ÐÛ®A?ý„8\0ýT†‚Žm©€ŽùBÇºû \ã‘7¡\ã7¾A\Ç\ïD@\'O«@\'	[¡“O’¡_Ÿ=ƒ~¿|\nú½­:sEÒ¡?\Ðù\í÷¡ó\Ë ¿\nžA3 y!\Ð\ßfb\è\âX%t	\ï	]>º|\'\Zºüœ–ß¡¡\Ëk†Ð¿6<\è\Zq+t­]&#Œ‚m\Ê Á6ý´\ÉY¸\Âäº‹a\nƒƒ0Å«\Z0\å„\Z˜JqlË—\ØV¬6l\Ûþ£°m#\Øvb5Lz\r¦¾+¦‡i^4‚i)\ÄÀt¾ˆazr\0\Ø\ÎÓ¹°Q\n0Y#˜ÁŽ˜Á\Õ&˜±	flS3N<3³`¦ûK`f\ZJ0³>˜ù“°]‘Æ°\Ý\ÍP\Ø\î\ß\î0«ùV˜=E\æðð\Ì\á¶\ï¬\ìÀû.\ØAò%Ø¡¶˜“¼\Ìy\Ðv¨s9–s\Û*s³þórVyÿ„´½\ró	7ƒùVÀNMDÁ\Î<Š»ó\ãÀü\Ãaþ0ÿ¹—°st=\ØEKX \á\à\Â€;\rD\Â\0¹%0\àž`\ì§\á\rCVˆ`\È\Ú[0¢†>¿\Ã\Þ\ÜÃ¶lƒžŽ\Â(\ådõT!Œš\\£\é®Á˜WÀ¸\êO`\Üw\Ö&ônƒ	?í‚‰t¦a¢k0±\Öi˜˜m\r“¢\na\áZ`á–›a\0°È£\ßaWN\ÍÃ®\ÞDÃ®þ1‡%ž{K¤¬\ÂR¦žÀRG«`×ƒ6Ã®¯ŽÀn¸\î€\Ýt2‡ej>€eÒ±°,‡c°,\ä}Xö\Ö>Xö2,‡p–{\ì(,\ï‹\ìÞ+¬ \ê8¬ÐµV(\Ø	+ÿ+,ø¿j+2¼+ú\r+¾ü	V\\ò\0V²õ\Z¬¤\ÇVº\í¬´\ÑV.\ä\Â\ÊK\Z`¡:°Š¦0X\Å\Ä:¬òº¬Ju¬J	«‚OÁž”NÀžThÃž’\ÓaO³oÁª‘c°\Z2ö¬‰{öŠ\0k¸kh\Û\rkxkþµu¾„µ\rb`\íñ¥°>\Öq-\r\Ö9zö’S\ë\Ù\"\ëýl\ë‹R„½­cÁ\Þù\ÄÀú\ÛÁ°Áw®°\áhØˆ{#\ìý\Ê5\Ø\èv\Âÿfa£‰¿`\äN\Â>¼Ï}t­…}y<›°»›´ƒM™¶Ã¾­?†M«<€}\ßûn}\ÏbÁf=a³s`\ØCØ#°¹\È|\Ø\\—:\ìwð\0lÑ¨¶x2¶J…­‰°u\ÞmØ¿±­ðM±à²¼U¸lŒ\\\Þ]®D¼W\Ùq¾Å»¾¥¡\0®š\\W«ö„«õ@\àj¿~\Ã\Õ\× p\Í)_¸\ÖM\Z\\û½\\7j7\\¯ý\\oA×¿Ÿ7	€¹7RŒ„=\Ù	7\ÖJƒ_»71˜„›>€›\ÊÝ€›:•ÀM\É\'\à¦\Ã\Ñp3“Sp³W¶pó\Ú)¸ùŒ|—\áÜ²_·úq¾R·\Î€[ÁmŠ‡\àv8,\Ü^·no÷\îÀ\ÇÁ»?¦0\à‡W\Í\áŽ\Æ¸£w,i™tƒ;\Ý=\nwúË†\å8Á.í‡»š\Ã\Ý÷À\Ý&\ï\ÃÝ·l‡¿J…{\Ñ\á\Þ1~pŸòl¸¯\Ý\Üü~¦M~±ª	h	¶\Â»¿À\'\áÁ\í\Óð\Ë\É\ÍpÀù68½‡9™Â‘³fp\Ôw;8FCŽ¿óNˆ‡„\ÂIºpWN“«3j\ç\àŒù\Z8û{œ·£Î¿ªM‚\áb<.f\ÏÁ%“kp\é¿rxH\ÈixH÷x\è¹Px\è\í@x\Øþð°,<\âº><\ÒK¿\ê\à¿\Z¯\05ƒ\Ç,®\Ãc/\ãá±nð8\Ç]ð¸\É:x¼\Î2<^\â¿w?¡O8O(<OLÒ†\'¥\à©!û\á7kÁoŒ\î‡\ß\Üû	~óeüv\Êwø\íz#x–m;<—üž›.†\ß\Õú¿§/øx^(FÀ\ï\ã\áÅ›€ð\â\Øð\â´ð\â5?x\ÉP+¼\Ôõ:¼\Ô\×^>\Þ¨i¯¸š¯X¦À+MQðG\Ø\ÏðÇ‘sðj‰#¼\æA?¼6\Z¯\Ëo”\\‚7\r”Â›|„7/ü7ÿ[€·Ô¨\Â[8ðV“ÿ\Çó½:ðNU¼ó8\nþZ\Çþz¢\nþz#\Þmq\Þ©\ï@Áû\Ä÷\á\ïœF\à\ï\Z3\à\ÆBø\Ð\×Løp|$\í\Z|¤\Ï\n>\ê¸\Û\Zÿ\"÷þ\Åh>\Ñ\nŸ¬&Ã¿~ƒ\Ãg@ð™\â\Ïð\ÙCþð²\Ñð9­Aøœ·\'ü\×X>|z\r¾€‡/i</}ó¯\è·\ÂW3\ák\áDøz\ØKøFPü)!\Ãx-;“¹‹ß´Œ?Rˆ_ \Z\'JÁE\å^o\Ä\æ\Êÿ’[T_ ¶\Ýþ…P5µC¨©C\ê\'\ä\Z\Ì­¢„¶…B\çDb\Ç\ë;ˆWºnûú\'4;Ã«;3m‰·+&C+m„a¯\ìÿD“\ã&³še„y\âQ„ùC\nÂ¼Va\Ùv±ûóe\Ä\äM„u\á,\Â\æX8\ÂV†‹°m?…Ø»ÖˆpPA8œ-D8<ŒG\ì‹\èE\ì\çû!]ÝŠ8”\éŠ8ò\Ð\á´ù$\Â\ZŽp® \"Ž…\íA¸F#\\¿\è \Ü\Òk\î#%3„Ç³Y„R\á•\æ„ðšƒðµjCø~\ä\"NMŽ!Î¼Bœ%ò—”Ñˆ@9\"ŒRQ@\ÝC\0\\J@b28ä‡€»ðszt\Í>f­\ný\à…ÀÁUø\è\×\ÂÅ±AIf!(óT\í¥‚±\'ÁüD°\ÂSE‚S<‡\àj\Ø ¸\Ý¾\r!‚\\Aˆr¬\Å&Dˆ›#\"TJG„…¾B„W1W\Í\×1ûF1\×.!b±\É5ˆ\Ø\êD\ì\çvD\ìd=\"\Îõ\"®«ú	‘\à{\0‘X˜‰Hb\É\"’nC$w^@¤†&#R°\×\"­i+g7ün nÜœC\ÜŒE\ÜÆ¶\"Ò­’\é)\é\íýˆŒ\ç$D\Æz=\"\Ó,‘\r¸‚ÈžÚ„\È!}DÜ•\ïFÜSF\äýiA\ÜCy#\n\Ó\Ú…¯z^$#J¬%ˆ\nM3DÅ•y\Äc¹D\Ä\ã‹{¼O?\Ë!ªs³Ï«½\r+¹ˆFø1Dcd=¢±h\0\Ñø\Ìñ‚wÑ¤hr– Z.˜\"\Ú!uˆN\ÑUÄ«¶ \Ä\ë\ã¯Wš]rû\ÝO5o\ÞAôü\ß\Þ\ß\Ê}A¼\rtC¼\ëWFô=sˆA®1Tkx\ïc…ø ôñÁ\Ðññq\â“\ÂvÄ¤Ebj?\rñµûb\Z²Œ˜ýÞ˜\Û9˜?C\Ì\ÇN#æ¿”\"~9mF,¼\Ô@ü~˜X<YX\ä7 V,1ˆ\ÕKˆU±&\íG¬ýÞƒX×¹Š\Ø†\"6Šmÿ_!þ\åX\"eT/#eÊ”òvJH…\Ó‘Š\Ó\ä\æA\nr‹\ìNä–¾)\ä\ÖX:r\ë½	\ä¶¤j\0©ú\Ô\n©n‚T\çª\"5š\ZSH\Õ7H­¨³H­\è\Ï\È	&H½=¾H}~rgz?\Ò`\ç?¤\á/u¤‘i\Ò\èh1\ÒXŠ4\æ\×\"MüG‘&“5H3w1\Ò\ì÷&¤Å¶d¤E¦2\Òr¸iõ$¹G\Í¹‰GZ.#­Y¿6QH[\í\ã\È}{!¤Š‘‡\Õõ‘‡«þ!“¤\È#›N\"Ì\Î?W.9úH—þV¤+_\éfõ\é‘OFz:¾BzÅ©\"½2®#½Ö‘Þ³¯>ösH\ßz1\Òwmy\Ê&y\Ê<\ÝøyöÀò¬¯1\Ò,ƒô‹\"ý—o \Ï\Ù\ìCž79<\ïúy^\0E^4!…/A\rH\àŽH`\0	‚\É#A\â$\Ø‹; ÁHð&òv	\ÕWCBƒÍ0\Â\Æø‚D*–\"‘®H\ÜñQ$þ°’\\£Ž¤\Ê9 ©a\ãHj	’v+I\ç‘ŒS}HFò^$£\ê\r’×»\É[{‚\ä#‡‚Bƒ³H\Ñ¤8¤)±x”ŒBJ\ÓÒ²‡\Èmod\è.2d:\Z¦ƒE†¿GFðAYÈˆ|d\äöÈ¨ô_È¨{6\È+Y\È+O°È«F\×ÿ7ƒŒ»$DÆ½òF\Æ\"\ãó‰&2Í¶\Z™V»™62‚¼\í/ƒL\ß\"A¦\Ûõ \Ó\Ãô‘™˜pdV\à5d\Öø\ä2WP„¼{H„,E©,!‹´lE\ÇCE\Ý$\äù\ä5yd±\ë,²\â¢\0ùx\Ï>\ä\ãðt\ä\ãñ}È§\ä5\ä\Ó\Ô9duK²vYK\×E\ÖJÝ‘u\×#^ _4Z\"_ŸG6=kF6­6 [´Ž [hQ\ÈI7²5\ßÙ¶»\ÙN\ÎGvº\×\";a{‘#‘¯.ÿC¾%!{]\î!ûŽ}™oå’‘oC. û5\ãýÞ•\Èþû\Èþi]\ä°\Â,rdñ2r4\á6òƒ\Öi\ä‡\Öd\ä\ÇTò\ÓGc\äg,òóE+\ä\çš\äX29Ö”‡|FN22“Á\È)¹(\ä\ÔWo\äô\Â\äw;1r†E\ÎB_ Âš‘s\ìq\äok,ò„ƒü\Óø¹HÙ‰\\ªUF.}ÿŠ\\q>Žü;\rB®¦\"×µ\'\ëûN\"ÿ\ÝD\É*£d·¡dÉ¶(y‰\nJ¡y\Zµ™R\ÙR±¨F© 4Q[\î¢¶®~Gm»†\ÚVö¥\nNG©–\ãQj\ïVQ\Z	¨[\ÆQºN\Õ(\Ý^O”ÞŽx”žù.”€\ÒK¸‚2\ÔÜ„2.\ÊBE™›£Lý¬P»\Ö\"P»\Õ\ÝQV!¨=r\n¨=*¹(\ë\Ú(›c¨ÿ\ç=\Ô>³ƒ¨ƒ›\ÛQ=\íP‡6\íG\Ù\ËA9Mw¢œ³=QÇ¶–¢ŽA¨\ã©s¨·P\':-P\'&†Qž\ïQ^\ß[PÞE(\ïV\ÔIG\ê$=\å\0¢üBP\çÍ¨j\'P\ÏG]úœ‰\n)¢‚~Ž£‚ƒŸ ‚_@¥ñ(\È\Ä\nš¡€‚\é\å `­\Ã(Œ&…ù‹A\á:Pø=\çQø© )\ÎEnqGQ6šP\Ôb6Šv&E\ë7@Ñ™WQ\Ì*(±gJ|­%IAI\Æ\äPÒ”/(i%d BŸÚ¢\"ö¨¢\"û¢b\\mP1§\ËQq/\nQñ€ß¨D…pT’\Æ(*\É\í*\âŽJ‰‰C¥þ®B]ƒ¡®I\ÚP\×\êÿ¢®õ	P\×\ÕZP7®W¢nFÿE\ÝØŽJ‡Æ¢2¨Œ©VT\æ\Þ	T\æ¡tT\æ\ÅZTfª*k[*\Ë-ug\Ø•ûD•gW€\Ê+IB\å?­Bå¯žF[W¡Jž„¢J»²Pe¾\ÛP\Ó]P‡¢* Z¨Ê¸:Ô£\Ë8\Ô\ã×³¨ª+QO\ZbPO\Ñe¨\ê\Ý7P5i*¨ZgTU\Çc¡\Zj·£^\ÐQM;ÿ š÷\ÝA5\ç¡Zõ¶£Z\ÔP8]T\Çr\n\êed/ê• Õ¥\Õ\å\í‚\ê×¡º\ÖsP\Ýù¨7J¨7˜¨·\êA¨·÷i¨·n¨wÆ¨w\Ä!T¤7ªÿ~6j\à\Þf\Ô\à\Ñ\Ô\È\Ù}¨‘œ¨÷&¯Q£fn¨7P\î/¡>\ë¡>\'®£¾\ìE}Á\r£¾PQ_B/¢\Æ¯¢¦zo¡¦«ÿ ¾+X f*P?µkQó¯\ëQóo#Q¿‚“Q¥ÿP\Ã!¨?O²Q‹\r›P‹\Ã\ßQ\Ë_P\Ë\ã\ë¨\å?‰¨\Õ\ëq¨õ¦¯¨\èMq\ïÐ›ú†\Ðrg\'\Ñr;´\\wZ¾¡­GG+žc •~D«ô\Ñ[¶õ¢·8\ÞFoyy½´\r½5\Å\r­êž€Vý´­±\Ö:QŒ\ÖoB\ë5I\ÐúE\Åhýe\Ú@fm˜ICV¡\r_œ@\émE7\á\ÐfŸ\Ñfg´¹s\ÚÜ£mq\ÝmQ¤…¶(Þ‡¶ôø‚¶¼\àƒ¶\ÄCïŽ¼„¶	E\ÛL\Ðö\'z\Ñögž£÷\Û\Ñ\Ñû9O\Ð,ˆ\è\ï<\ÐÏ»¢&9¡ªÉ ‹m\Ñ./\Æ\Ñn[Î¢ÝŽ§£\Ý~ô¡\Ý\Ý\Ð\îhoôñj9ô‰–Q´—›\Ú\Ë\'}rG:\Úg\Z\ÚÚ†ö=­‡>¥•†>JAŸµ\×Fû“Eû\ÛüA_<i‡¾˜IG_œ\ïA_R\ä¢/\íy¾T\"E2î¡ƒtß ƒl4`À\Z\r¬\á A%ûÐ Žh\Ð\ß#h°¦\Z\\èƒ†|8†)lEÃ•2\Ñð=\Éhxù\Z¡\î†F\î\å \Ñ|4Npûõ\Ï\×A8h\âöq4Ñ¦\Î3\Ð4chº\Í/4}Œ‚fÚ†fz!\ÑÌŒ}h\æ+4‡F³(_\Ñ\ìo{\Ñ\"\ÍM*Fó\0fh\å&ZP\çˆôE¢…\ãhñA=´ô¬2:4„ŽP¶GG\\ù„Ž\\þ¾\Ê\ÊFG7q\Ð1]t\"\"rj:VN\Õ\ÔB_WA¡o\Þ\ë@\ß\ìŒD\ß>®N\'ýCg\ïUCg³:\Ñ\Ù\å\"tn~-ún~:OE/¼€¾gõ],@—ð\Ð\ÅS\ÏÐ¥\í†è²¸Qt\Ù\Â]t…\ÉWt\Å\Ï\ï\èJŒºò\Ïô£g\Ñ\èG?x\èÇ‰j\è\'\ÒnôS\Õý\è§a\è§)t\í-t-!]\Øý\Üg\Ýh@7\æ$¡_Ô¢\ÑMš£\èf\Õ\\tó$\Ýþwý\êY\Zú5ñº\Ëúº«3\Ý]ÝŠ\îq\èA÷p\è\èžº×‡\î\ãÿF÷õ\ïA÷¶¢\ßYlA¿+g£‡–\×\Ð\Ãò1\è‘@!zg†\ÍþŽþ°n†þ\ÈCA£\Ñfô\Ä\ÛNô”ý\í:ým9=ód=ó\â\0ú\Ç\ÖFô| =?sý[\Éý+‡^Šƒ W2\Ñ+op\è5ó\Ý\èu\åiô†dý/Fý¯\ãúß¼#\ãö#Û‘\éÀ\ÈÌ®bd~…a\ä-Œ0ò\îƒ…£\åÿÁ(]\àb”\Ïc”—vb¶ø·c¶Úªb¶«tc¶KOb¶?¯Àl_wÇ¨]Å¨/b\Ôn`\ÔzoaÔƒ1Z”\ã\íg\Ç0:\ÞXŒnª9F\ï7£·´€\Ñ÷ªÀ\è\ß\ÛÀ\ì\\J\Ã\Ìöcm1#,c*AbLG¸˜]}ŠK¥½KMuŒU†c²\Å\Øl\Ó\Ä\Ø\Öý\Æ\Ø!aöÊœ\Ã\ì\Ã\n1û\ã\n0¨9˜ƒÓ¯1‡ö¨`«)a[e0G‚Z1Î›²1\Ç]\Æ;9öc/\Æ%¦\ã™ù\ãM}Œ9ÀÇœì¹…9ß‚9«9=vs\Æn;\æLa\Æ\ïõ.ŒÿZ\æü^]\Ìù¿˜—>c.Ý‡c½\Ïb%˜ qU\Ì\åSK€ˆ\Éb1\àG#ð\Ël\ä);×\ßÆ t\Ý1¨¤0ª\r‚A+þÆ û1˜^\\\Äs¾¾Cr­Ã\Èg0¤«w1”ÜzC¯ôÀ0—0\ìc%ö*\Ã5\Âp»bx\Î0ü±RŒðHF(¡cD†û1b\Ü\rŒ\Ä\Û¶¬ˆ	\Ï\åb\"\î¿ÁD!\îa®\ì\Â\\¬`® v`®´.b®š÷c®’µ1\ÑWp˜¸\ÕÍ˜xLü?L‚m/&±\Æ“¬6ŽI•\ïÇ¤&R1i#9˜ô°Lú$“ƒ\ÓÁ\ä…V`ò\Ã\Í0ù¥˜ü®#˜\Â\æþ¼7¦)3VÄ”¹€)\çLaŽ£0•8˜Ê¿ñ˜GD\ÌS\åí˜§÷‘˜\Z+0\æ™óõSk÷SkÀÔ•¿\ÇÔ½Á\ÔoÛŒi•`^˜0/õ1MzL“K*¦ù\Ý*¦E”ˆi}Æ´mi¹Œyu0óú\Ó\Õ\Ãtõbºþ(aº™(Ì›€vL\Í\Ó#\È\Äôúž\ÂôY\Åbú\Ãô}}yk\ìŒy\Â\ì:Œpù„˜[\Æ=‘\Ç\Ë\Ü\Åeb†¾Ã¼R0£~\ï0Á˜O\×0cc‹˜/\Ç\Æ0\ã®`&•1Mý˜I\Í\\\Ìd€f²mf\nU™ºï‡™Z;ƒùz‡ùZý\róu9ó\íL<fz«ff33ë¡€ùq[3—†ùµ\nók\éf\áûoÌŸ&=\ÌbFfñÁk\Ìbµ?fY Á,g»aV1kš&˜µ\ë0\ÌZ™#fŒÙ·\ÇlØ£0ˆƒ˜—®˜B±2±²p¬üyM¬|ÁV¬\ÂH>V)f»\Ù\Ê\0»y©\r»µ\å4v»#»}\íV5•UMûƒUŸ\Ãj<\n\Äj:\ZauTc°:þo±;¶ªaw˜\Ûc\r´Õ±†>²X\ã;¬I\É\Z\Öd\à\Övk\ÞX„Ýµ8‰µ<i†µ\ÊBb­\å°\Öj\rX\ëª\ì^W¬=^»Ÿ¬Ž\Ýÿj{`\Çm\ì\à~\ì0w\ì\Ê;\ØCMaXg\Ó\n\ì1\Íÿ;\ã¥p¬\Ö\ë¦Ýu‹´Äº\Û\É`\Ý\éb\ì	|¬§òw¬\ç\rÖ«\Ñ\n{2\Õ\ëþ\ë3r\ë{\Ö\ëûú%ö\ÔE\ìñ)¬_\ës¬\ßlÖ¿&pj+6\à\Õ\r\ìÅŸ\Ö\ØÀÏ\Ø\Ë3¹XÀ·,¨ü\"š¡‰…¶±Ð±!,|g:á¨…E\ZÃ¢|±¨&-Bc1[\\±½óXœ}6\åc‰87,ñ\Í,ù·\'–\Òb…eþŠÂ²\â°¬Y,;\åPna¹e…X\îw9,Œ2Ã±\"ùT¬‚\ÂJ\Ô~b%,V\Z†•~8ˆ•\ÎÄ†f\ßÁ†\0`Ã†IØ°y46\Ü\È^¾ˆP`#¿\ÇFrÆ±Qi\Ø+(}l\Ì\ÞBlL7ÕŽMò\'a“É…Ø”–Ø”£9\Ø\ésl\êÿ9»¦×ƒM;‘…½y\n{#\È{\ãuö\æ\Î\ãØ›+™Ø›\ë\ë\Ø\Û\nÿ°·ŸÁfdûc3«J±Yav\Ø;^SØœ/&\ØÜ½ý\Ø\Ü\Êln\ÓNl~š#ö^¹¶`¯\"¶À\å¶°\Z…-6\Ï\Â\Ç\Êc‹—ò°\Å\ë\Æ\Ø\ËmØ’˜»\Ø2p2¶œ^ƒ}x[[\áÞ­¯\Å>Š½€}4=‡­*cŸ¤2±\Õ‰\Ø\Z$[\ëñ[·±[\ßj„}\ïˆm4¼‰}¡÷\Û\Z×†m\í+Â¶¸b\Û\êR°mK°Z›°A\ÞØŽ\àl\ç\í}\ØÎ‡·°¯¼€\Ø.\Ô{l€\í\ê¥b»¿Mb{w\Ö`\ß:\ïÂ¾’`\ß\Å\Ý\Ãö§Yaû§|±ý_cŒ±ƒv°CN\ÕØ‘¾›\Ø\Ñ\Õ5\ì\'‹£Ø±8\ìXû\r\ì\ØHö‹q+öKT#v\âNv\Ê\r‹\Ê\"a¿Z~\Ç~}×€ý\æ\éý¾ÁÀ\Îˆ\Æ\ÎM`g†}±³\ÉI\Øo`¦8b\ç”8\Øùx{\ì|¹vÁp\0»`2ý]…\ÃþÁõ`Ò°«M}\Ø\'G°ÿ®¸cÿ-oÁÉ˜+\à6ñŸ\âd‹ûqÊžU8\å©tÜ–\âZ\ÜV\ÕE\Ü\Ö\Ý\çp\Û.)\â¶oRÁ©\Û\à\Ôv“qj¢9œZf?N\í\É!œ†^N\Ã\Ñ§\é\Åi­Ž\âv\è\Ã\é\Þ\r\Â\éö|Á\éÇ·\ãvR\Î\àv–`q&Î °g00Š3ŒÛ3Œ\Åc\ãŒ?bq¦‚Bœi|\Î,ö \Î,i3Îœb3O<†3¿»€\Û5\ÃY\ä\Î\ã¬|Ÿ\â¬(\n8«$mœÕ£Ÿ8\ë\æƒ8m2\Î6ƒÛ«e‡\Û;ñgÿü\ÎþO\ÎÒŒs˜«Á\\zˆ;ô\çx\Ìw¤%\0\çt+\Zw\Ôn\ç,\ãŠs\á\ÜI\í8\Äœ§s	\Îóöoœ÷n?œ÷\Þ,\ÜÉ’w¸“¯¥8_“e\Ü\Ù\Ò\Ï8¿cœŸW\r\Î\Ï_\çG\Î\Çù…ž\Å]hø»Ø»‚,¿ˆ^\\Á]\Þù\rwyWT\ÍÀA¶/\â jó8\È+jP‡ƒN\ÂÁ¼q0F?qP‡@>\Ä!>2p\È}\ïq\È[x\ÊP‡ù\á\ÃNh\âp\Ö8\ÜuW~:\0‡ÿ¥…#H_\áˆgpd\Ý\'8ròE\×G9ê‹£\ê\àhÎ®8\Úõm\\Ç¸3„côU\á¸\ën8\Þúœ@%\'8ˆzù\â\Ä.8ññ\Ë8q\'ù¿yJ>pa[4q\á)pÀn\\Dr.r²	UŠ»\Úð\Ó„‹=Rˆ‹M¸…‹Í­\Ä\ÅU\í\Å\Åõm\ÂÅ§©\álšp	p	w\Î\ãÿ*\ã’N*\â’ðj¸\ä—ûq©\êa¸´œ¸›Ê¸t\ß\n\\úu.#ƒ\Ëòú‰\Ë\Õ.\Å\å\Õ\Ì\àò–O\àò÷û\áò=qù“Á¸{A[p\Ö\\A\Ï>\\Á\Üv\Ü}\×\\‘\Ä	÷`bW\\Ö€+›\á\Êggq\ÇVp\ã\Ý1\Ä=þ\é‡{z W½õ®\æŸ=\îYz®\Îô\"®\ÎuW_®‰k\Üs\×x\â®ñÁy\\ý®ù\×›Çµ¨¹\àZ–òpm¸vùp\\{\Îg\\gýg\Ü\Ëz\Ü\Ë\éû¸W÷~\à^Í›ÿ/÷ú\Ü\Z®Û¿\n\×}\ë\î\íŠ<\î\Ý\Êo\Ü\0§7{7´)7\Ôw\Z7\ìq7\Ì\ÖÀ\rG\á†\ëo\áFVq\ï=\Ãp\ï‘!¸÷þ¸÷Y¸O^,\ÜT|=\î\ë7†û®¡ûÞ·‚›”\ãfÐ¸Y\ÍS¸Y\Æ)\Ü\ïs¸¨yÜIs\Ü\\H\×ÿÏ”Q\Üßº2Ü†³\nn£u3\î\ßCm¼L\êi¼l\Ìm¼G\r¯˜]‰Wºô¿\î\Íø\Í\Æð›\Í\Èø\Í/‡ñ*œSø-‰\Çñ[[¾\à·Y\îÂ«ú\àU\Ë\æðj¨½xõ}X¼ú\Ô^c\Z€×”y„\×)p\Æ\ë,´\ãuV\Ûð;búðzz9x}X^?ý+\ÞÀropƒ7\n;Œ7úFÀH\Çûð\ÆSxE¼¹‹:~×¾l¼\å\à~÷>-¼\Õ\íL¼µ‰=\ÞV\ã\Þv\Ì¿~\ï W€wH5Á;”‚ñûƒ/\à÷÷\Ç;d\à\Û[ðGvJðN¯ö\àgeñÇ{ñn^\'ðnóø\ã}ø—†ñ^\ê\rxßš/x\ßYü)¿³ø3÷w\ãÏ¶=\Çûik\âýL®\ãýŸ\Z\ã\Ïk^ÂŸw \à/À\ÓñAV®ø I>øzþr\Ã\" ôp÷\Ã\Ø\Îx`c(‚1\ÆC\rôñ°£}x˜OB\â\á*ñpg	qQlÇ£RSð¨f3<:\0‹\Ç*m\Çc\r‰x\ÂT2ž°úO\Ô;…\'Áœð\äƒWñ”ƒ—ð\ä<\å\Ï<Õ’„§\Î\Û\ã\é¡rxú÷r<\ãò<“#‡gM\è\â\ÙN\×ðl\Âc<§\ÇÏ‹\Â\Îx\â…Àkx‘\"/z\æŽ+\ÅK\ì]ñ\Ò\Å\Ãø\æ6|¸¥,>\ÜJž\êÏ¥\à#\ëƒñ‘Syø+7\ÌñW\Ëñ	Z|‚ÿ\0>!ù>\áO>qó,>ñÀ%|rŸ\"8ƒO…á¯¹h\ã\Ó\\“ð\×9Eø\ëO\âo´©\áo¿!\à\ÓsXøŒµø\Ì\Z&>‹µŸýð>þ®ñ>\Ï\ë$þ^_8úÿk2þ÷¾\Ø\Ä_ì—/a7\à\Ë|\Ìñeþ³ø‡šzø\n\Þ-|¥ÿø\ê¾Z\Ç_\Ó`Š¯s]\Ä\×\ácðõñõøú\Ñ\×ø\ç]ø‡ôðÍƒð-‡¼ñ\í\ã\Û\ÓLð\Õø—\ë·ðÿ\ß1|÷¶<|w±þz>¾w[3¾hŒ°¼’\â‡~\Çÿ,\Âp\Ô\Ä´ \â?\Þ\Ò\Ä\ÒQ\Æº\ãÿ¢?ƒÿ–ÁOœ¯ÁOI\ÂOž\Æ\à§>ñ_\íœñ_ñ\ßþÀ\Ï\Ê\Þ\Å\Ï\Z>ÀÏŽ4\âH*ñ?²\î\ãd‡\á\çr—ñsu[ðóið\âBð‹\éQø\ÅW¹øåƒ‹ø\åŸzø\å•møô~¥©¿ú¿QžG\Øt•KPF”\ß\Ü&(¿?GØ¬_I\Øp† Rp—°Ý·…°=ý*a{ \ê\\CPMŸ#¨ö9T‡‡j¢^‚ºA!A3b† õÞŸ =\àJ\Ð	L\'\ìût/“ú²‘„—¾v–\êŒ\Z£Š~‚¹s9a—[=Á²B@°¬\×$\ìF\í!X5hl6y\ìüC	{ƒµ{…„½¿2û‚Y„}\Ï6Œ\r?\"ú‚#8~\'Q&Až#\á°G\"{	Gß¸œy^„cL6Á\å¦\ZÁÝ¹šp\Ü6p<õ1Á£Mðh8Kð,\ê\"xÝˆ$x=3!x\ÛU¼Iw	\Þ%`‚S0\á\Ôþ	\Â\éWw	§ßˆ	g´~²q?­)‚¿‡Á¿v•\à\ßô’pnx…p¾zŒp¾õ+\áu…pQF™pñ˜\Z!¨D‹ô£‹\Ü\íB¸üB‹\0¸iK\0–©`¸¯¸s\n1\Ê! Õ«È·Œk/[N%\à\Ò\'	„k^b@ryJ ]#:,	d«<yœK øv¨¿´­\ç	lýHû\Ñ%p\ç#¼\äh‚± «„ù£Q¬%AºbMˆT\Ï&D\ß#D’o¢”ªQû¢\Î+®¸v®Ü©&\\)9O¸²aG¸Ú™NˆŽ¸Kˆ^\"\Ä{+\â•„\ä<2!%ú3!¥~ƒp]Å‘pó€2\á\Ö\æ\Â-p\áV^	!\Ý\á\n!=\ç-!ƒšN\È4‹ d&-²³\ÙÙ¡„;ËŸ	w1­„»s=„¼²\\B~L(¡\àÿ|n{C(.\ØE(5F(•\ê\ædÑ–„\n¤¡¢R‹ðÈ¾‚P\ÕYOx2\ÐNx\Zu–ðtú(¡\Æ>‘P¬J¨+i\'<?:Ghd¾$¼\èT!¼x%%¼Ò±\"¼ªQ!¼.yM\è~&tO\Þdÿ ô<CzG“½_¢o«ÿ¸\Zü	ƒ¼R\Â`z:a$\ì&a¤Î•ðþ¢”0úºƒ0:L$|8\ÖMø°~šðññuÂ§)8\ás\\\á\ËÑ“„ñ%„ñ±n\Âd½*\á\ë%\Â7\îeÂ·\ÂUÂ·j6a\Z\ÜIø>[@˜\ÝK˜#»\æøz„¹\"_\ÂÜ‡Ÿ„y\Õ\Z\ÂB\Ðw\Â\ï\Ý\Â\ïGò„E “°¤\ÓGXZð#,û\Öþ&\Ö\ç¾6@ˆ2»\"‰²¯˜D¹=`¢|\ï9¢¢MQiú>q\Ë\Ñc\Ä-Dg\â¶ýŠ\Äm\Ç\ê‰\ÛH+\Äm<8QõQdB\Ô\Ð j\î\ØA\Ô4ùF\Ô<I\Ôºµ\Þn\"j[ð‰\ÚS\íD¡Q<D\ÔmÀõ!\ÅÄW>w®™\r\Â÷\rJ{ˆ†\ÕD£‡¢\É\Ì0\Ñ\ÜÉ˜¸Ë—I´¼\ç@´òn\"Zý»G\Ü\Óth½Ç‰h}f‚h\ã\'\ÚZ¨m³Sˆv-\ï‰{!\\¢ý\æ\r¢}š\Ñþ.¸o\ëU\â¡c_ˆ‡2µ‰‡ô\Þ#ù¡OtúiHtŽ\ÜKt\Ñ{Ety½@t»œHt‹?G<\î C<±-‹x\âò1¢\Çu¢§rÑ³Õ—\è½õ\Ñû}ñ$\ï8ñ\Ô\\ñ,A†\è\ç.%úaƒ‰\ç¦\ìˆ\çE±\Ä»‰ž\Ç/¼—\'^TGUâˆñýD\0c’\0A:Dˆ\Ú4\ê\"$\Â	ˆ³d\"\â\ÌYp„ˆÊ˜$¢•uˆh\ç—DÌ±D\\\Ú<÷¢’Hˆ\Í\"R…ˆ\Ô;\"\ÍtHkw\"2\Ìmˆ\Ì!:‘•°\È\Ê$\Ùrgˆl·DNü\"‘[\éN\ävùy‚<¢Pº(\"½\'Š\Í\ê‰\â cDq.ˆ()X%J!‡‰R\ÂKb˜Z1b\×bØ—Q‘IŒ<=CŒŒüGŒŒ\×%FE÷£c‰1±Hb\Ì8†\ÝIŒEn!\Æ9\Ü \Æu$&›>%¦\ÜQ\'¦üˆ!¦ÒˆijöÄ´[‰\×\Ç.o\Ô;oÛº3‰b&e‰˜\åx„˜­kC\Ì\Ö7\'\æ\Ì#‰¹\çwsÁb^n%1\ïn1¯ú ñ¸ƒX˜.\"\ë<’\'>xO,~¸—X\æRM,§$VÞ½L||\á0ñ©”C¬®\Ë%Ö˜7Ÿ)œ!\Ö\ZÑˆµÁ\ÑÄ†â‹¼Db“l,±ù`±eûbË½Xbk\ÍKb§F#±\Ó …Ø‰\ï\'¾²h#¾¾;J\ìf§»£z‰=*÷ˆ=vÏˆ=³/‰}iaÄ¾%4ñ³#±¿Ûœ8ðgq(:Š8ôþ+q$»†øþ\äE\âG\îñc\ÜG\â¨ž8öü7q\"h?q\äGœ<¦AüŠ	!N{¥¿¿#þ«U~#þ\ê7!.Pœ‰‹\Übâ’Šq‰˜L\\\Ô ®¨Wv&®k×·º×‘B\â\Æ\Ö<\â\Æ\Ç\â¿\"iÓ¦¤M\áûH²E$¹G’ü	IiFRp\")´^!)\"\åHŠ\\Iq,ž¤”@Rº‘”H¤\Í÷p$•\Ëb\Òÿ’\Ê+’\Êx#i\Ë\Ûó$µ²D’z¬I=½—¤iûˆ¤\åEÒŠ\Õ\"iÕ”’´\ë\nH;¸ó$½­C$ýi\Zi§ri\çY’ªdrKB2ùK2ý[M2óP&™!.‘veg’,Ð¾$¬\Éb\í7iwXi÷\r%\Ò\îú’H²z\Â&\í	;E²¾\ìL²þ* \Ù9ž\"Ù‰\"Iv\r4’½¾+iŸ‘\é@\Î\é`±\é0¡tD=†t\ïOr©&¹4×“\\º‘\Üô\Ü}_“<»y$oÝ½¤“ÇµI>—\ï“|\îh|\ÛBH§˜H§·Æ“N›>$qð\'óP ]P‹#þ[%½zL\nú¼F\nV¼L\n\Þ]Lº|Ý’\Ü{<p€ŒºF)õ@FI ¨}˜±\à“ Žƒ$\Èx-	z\á	:¼„°U%¡óH˜\Î1¾ÄD¼2H\"t!‘a\Ö$òO¥Ô›D…G“¨\\%=÷#‰\ÑTAb\"±*“\ØVGHœ\Þygf™\ÄK}Jul\Ä\Ã\Þ$\É\å³$I¡)IRò…\Z7D\nœ\'…_Á“\"°XRD\ÂÒ•@\"\é\nFºúr\')\ÚÜ–½CŠ\ÆZbþ~\'\Åe‘&I‰GŽ’šII/ýH7ûH7†«I·&Ù¤ô¢ó¤\Ì\Ü%Rf	’”}{ˆt\Ç\è%\é\Î\ÇrRnõ\Ò\Ý_\ßIy~Hy\×UHù&¤ükq¤ü\éÖT`þ€T\Ø|ŽT\ÔhGzp6„ô \"‘T¼‹C*¹\Ê •ô\'‘J&óHegHežE¤2\È\0©,GT>óTqjˆTÁX%=\Úü†TE\ÛIz©OzJS$U[=$\Õl\Ï$\Õ,&=\ß>Mz\î@%=?ÿ”ô¼\é#©É¹”\Ôô\í©yO!©ù +©¹˜Gj^¤ZeVI­û!¤V¨:©=N\ê`ý¯q;\é«„ôª\ã.©«\nA\êš\Z\"½ñ\â’zL”H}i¥¤¾\rWR¿-žÔ¿¸@\Z\àþ$\rž%\rm]\'\r\Ý\ÜN\Z>r•4<PA\Z•&\Z†’F·’F[\ÂHþ¿ŸP\Z¤O\ÜË¤±ö\nÒ„O%i\âk%i’Ošü\Ô@úú¯„ô\í‡.i6÷inþ\é÷7\ni\é\çY\ÒÒ‚1iù\ï=ÒŠ´R7LZ\éøNZ™-%ý½hCZ\ß\ßJZ™‘\Ö{¬H\ØY\Ò?72YvSYnÂ”,7gG–\ç0\Éò	,²Òžbò\æ\à¿d•k\É\äm\ÚC\ä\í\Þ\ÊdM§d­\ZY;Y¼\ã£	YoBHÖ·ž%ë£dýµKä¤\"²¡\Â²¡ø#\Ù86„l\â€\"›Zû’M½‚\Èf6L²™s.Ù¼Âƒl\é\Ë [ž\Ï$\ïa­ƒ\Ó\È\Öw\È6^\ç\È6c&d\ÛwÈ¶•\ådÛ‰l²B Ù¡i\Ù\á%¼oöù\Ðg²£\Ò²\ã\Õ%òQ\Å/ä£Ÿ`\ä£k\äcQ\äc\Í\ãd\Ò\Ùep7\ÙuM>¾ÝŠ|<Å‹\ì}þ\Ù;‘C>9\åFöø’}÷‘}‰…d\ßOPò\éÇ·È§{w\Ïl{@>\Î ŸEZýöôýNùý	8ò9pùÂ¡£\äM\äKGŠÈ—’’o·ƒ+\á\ä\àúrpó_ò\å\ØT2\ØS‰1‘!\Ì:24iš}C!\Ãc‚\ÉðØ‡d\Ä))1\ãNF¾\Ø £Þ¨“\ÑU»\È\è÷zdL°ˆŒ¡9‘ñr02þ°*™ø¶Lfÿ#“£“©F©d\êP-™ú}?™¶QGf¦¦‘Y²)dVH8™5iL\æ\\‘¹-\êd\î|™÷û8™¿’C†\È\Âk«di\Ôo²´Êšò\ï/9¢\ì\r9’ùŽ\åôŠ|%ƒD¾R¾DŽvûBŽYˆ\'\Çjg’´“.“\ÊDÿk\"\' §)Ô¯ô‘¯ÿ%\ßÎ’o/ÿ%g\\O$gŒ¯’3w­3ïŽ’³\àýä¬®dò\Ô`r\Î\å%rŽÈ”œS G\ÎYýL\Î\Ð\Èy©0r^…9\ï<9ÿ\Ý4ù\ß/rI‹ù¡¾ùQE¹ÊŽA®:¬C~ƒü4ü9ùiV¹ZÞ™ü¬(\\Û†!\×y¬’Ÿ“O“ŸW|\'7LË‘¾!7–fG\å\ÈMh>¹\éÜ¬`In\éD“[\íÞ‘[/\í%·f\ÂÉ­+\È\í*§\È\íE¾\äŽoö\äŽù*òK\Êù¥\ä\"ù\å\äW~š\ä×½\ä.`5ùM\Ø\'r6\ÜsgŒ\Üß¾J\îÿŠ\'ôn%ô¡Éƒ˜òf\Zù\ã™(ò£ò—©\Ë\ä\ÉRmòT\á?òŒ\n‘<£QAþQSKþ\énHþ)\Í ÿ¼sŸ¼ ñ\'/z-“—\Z“\ÈËŒc\ä\åiò\ÊA?ò\nö$y#m/ù_|.Eöo%EN;\"\×nF‘·°¢(U¡li¦l3ò¦¨~Ê¥¨\ïÎ¤¨\×ûS4vP´\Úò(;®©St1-\Ý>#ŠžP†¢—»—¢¯¤A\Ùiö?sŠ\Ê	Š\á\Z\Åðþ.Š&‰bL¹I1þŽ¢˜wPL\Û\ÎQÌ»:(ß¼(V‚-k7\Åú‹6\Å\Æ\í6\Åf˜A±\rt¡Øn¦\ìS…Rö½“¡\ì÷~@9\0.¥˜õ¤Š\ÜF9,€r\ØK\â¸ó\åh\æ7\Ê\Ñ\'ú\çÀ”c{˜”c\Â1Š\ë\ëŠ[øŠ\Û/<\ÅC&‹\âyqˆ\â\\F9¹iŽrò\ê\åd\æCŠ/f†\â[\×E9“{Ÿr¦q\Å\Ï\à0\Å\Ï*•\â7	¢ø\çÝ¡\ìP¦p¢(\å&”s%E”‹úÊ¥€\"J`óEJ\Ð!\n%¨\î%X°´•^j¥@PG(0v(>:JAüÿ}\Èk\Ê\Ô\È\nö†=»¶›‚«X§\àk)„\Ý\n\á\Ö0…XlL!‘s)‹‡J\ä\nU@¡§fR\è¿wS¬(Ì—ÁÖ•N\n÷÷y\n¯t3…ˆ§/¼ ˆŒ\æ(\â»&ñlE\Â\n¤„\Â\Ú(a%üb%ü‰\åŠ\î_J\ÌÀ8%\æ“7%6j–w\à%®d–’è°›’8Œ¥$×”SRe()]”k¦¾”k‡•)\×<G(i\í\ß)\×i)×¿ZRn|¤\Ü\nQ\Ò\ãžS\ÒR²\ç+)¹EJ\î‡?”»÷œ(y(\n%H¹wbžR M)°Í£<\0£”lºO)\Ñ¡”m«¡”Y¤R\ÊÒ„”²{Þ”òE<¥|ù\'\åao6¥rŸ\'\å’Fyl´—ò¸ÃŽR\Õ4HybmA©\îbSj\Ù÷)u\nw(uÁ\0JÖŽRÁ§\Ô+†Qê·Ÿ <¿ñ”\Ò8¿ƒ\Ò$/Ki‚\0)­z(\Ú?(c)mª”Î™\"\ÊK\É\å\å ,¥\Ëþ.¥\ìJ\és¯£¼uÎ¢¼Û·‰2˜mKyÿ0ƒò~ˆCùx{œò\é-eL¬HùRp“2y]•2ù:–2U\'CùºB¤|û—@™\æC(3\ç¼)?,ª(svU”_\r”_ÿ\Â)\Ô(F\')‹\'\Ö)\Ë&•”•€=”Uo5\Ê\êˆe­k‰²nð•²\Þ@§l\è\ÌS6XÊ¿\Ê9ª\Ìo\ê¦/¯©²(>U–{*OJ§*Ø¸Sp\éT¥3öT%\à3ªò	U%Ïº\å\Õg\ê¶_¨j¨j>NT\íùTM…\ÏTí«½TÝ†cT\Ý&U\ïtU/\í#U/ÿ)u\'%‚ºó\êªÁ\î5ª\ÑU\Õ\Ä\ê\ÕTÓ˜j:>L5³{M5o8L\Ý–C\Ý\ÕL\Ý\ÕdAµ,9M\Ýýl–j½ÓŽj}7˜j“}Žj›	¡Ú–8S\íŽ,QžQ\Ü, \êDR{P]~n¡ºº?¢º^üCu\Í6¦º®`¨\ÑöT\Ïuª\×z\ÒR™\êSº•zZdM=«½‡zö‹\êO0¥úÿð ˜ÿ¢^P»@½@Ù ^\nÌ¥^B‹¨–[©y\ÔÀþl\ê\å\Út*Dk†\n}\ÑGE¸%Q‘±©\ÈG\åT\Ô\'e*j:ŸŠ\Ö£b.S¨Ø‡©x/ŸªB%¸ü \ZQ‰¨\Ä^1•:¹…J³ð¦ÒŠd¨´vs*\ís(•~b•:J¥K®P#AT–Ÿ\"•´\ÊAP©œP2•\é¢\nƒG¨B*V|B?T¡J\ÎTIw(5¤Ê‹\ZzN\rO}K\rI\roºHô+¥FW¯Sc{¨q`j\ÒA25¹Â‰šr€JMÝ©OM…\ëRÓžRo¥4So‡úR3²\ÏS³\ß§\ÞY*¢\æˆÂ¨w—3¨ï¨…¹g©÷_TQX€©\Å\î`jIø.j\ÉwCj©^µ¥F-¿õú\Ðm’Z•£VvS\é\\¤>\ÅSŸ\Ê >}B}úÊúô\çYjmC=µüú#¡6¸©/\ÒP›jÜ©\Í\ï7¨mª…\Ôö>µ£cµkÒ™\Ú{´Ž\Ú_dM0¨¢<±¦\Ö] ¶ˆ©ƒ_S‡=\èÔ‘\ížÔ‘´z\ê¨Zu¥Nýò‘ú¥=Š:¾ÿ=u|1†:@~E¶h¤~kPg´‡©3\Ò9\êL€ú\Ã%‰ú\ã>“ú£ú\Zõ§\æm\êÃ‰:WžLGÜ¡þ6u§.q\ÏQ—øÇ©kwP×†\îR\×õ#©\ë›©S\"\ê?‹c\Ôõgi›p4YSM^H§\ÉgbiŠ)4¥\'Ž4¥o\Ú\æ\ãã´­ñr´\íjiªrBšjB!M\í¦y\'Msl”¦\Ã|E\Ók~D\Ó\ß\âD38\êA3\0\Ñh0šÁš¡§;Íô•fH™§\åyÑŒ\Zv\ÓL–\âi¦¥tš™ù \Í|s*m\×5Eš\Å\ëZ\Ú\î4\ëûe4\ë\ÎW4\ë•\Û4›Ekš\\?\ÍnÆ˜f·øœ¶Ï­”¶ˆv\à\Ô\í`Ž.\íðú}\Ú@\ÍI#š\æ¤w—\æt\ê\ÍYÃŠ\æ’RHs\r¿NsZ§¹\ç_ ¹ÿÙ \ÏyJ;¡¹ƒ\æ\é:Cóô©£y!Kh\Þ\Ø34o&‘vr\ß(\í\äL.\ÍG\ÜDóY…\Ð|·,\Ñ|­Šh¾)\\Ú©ð+´\Ó^–´3:Ú™	(\Í\ß\\Jó/<Eóþ‚ \Ñ@;gL;GÑ¦‹½J;oÍ¦\Ú)Ó‚\å\à´\à»0\Ú\åMQ´Ë¦i—!x\ZLö#\r\æs†m¥Á\ï1iHY\ryX‰††\Æ\Ó04Œ\×\ZZEÃ­w\Óð1_hD\0F{¹\Æ\Ð\î¤1u«i,\ÇX\Z‹ñ‡\ÆV\ÒØ¹Ž4Î•\Z§h3²™\Æ\Û&¢	7ˆ4‰ýqštÚ–²MJE …Ñ´ð™#´‹iñ¿\ÓdZd\ì4-jÔ†v\r \Å8\í \Å\\ \ÅF|£\ÅW§\Ð\ä\ÔiI>bZ\Òõc´k\âß´kJii»\Ýh\×_™\Ñn\ìõ§\Ý`V\Ñn\ÝO»\É:IKW\0\Ð2\ß\Ò2)ÿh™}´,®-{cvg\ïZN­-—‚ \Ý=TG\Ë‰¢\å1¥\åC\ß\Ó\n6li…[©´Â‰W´¢€\ÚüfZñv/Zq°\n­D¯‡V\ç\ÑJ‰¿h¥©£´ò¸_´Š‹´\Ç\Ñ\ßio7\Ò{C«Òš¡=¹?A«nI£=s³£=Ã¼ ={¯E«\ïÊ¥=W|Ekð\Ó\Z\àõ´\Þ ­az/­ae‚\Öô!”\Ö\Ìo¦5¿m¥5½Ok‘\r µä¼¡µ»ö\Ð:HZ\ÇT\n\íe\Ë\Ú+UÚ«i­k\çZ\×>>­+Üš\Ö](G{C:D\ë\Ñ\ÛO\ë9\äE\ë}}\ÖwœJ\ë+»L{{.ƒö–¢F{glK{w\\“ö.|…ö\îš3m@ß’6ð~ƒ6¼F§”\Ë\Ó\ÞK\Âi\ï+\ëh£\'Y´\ÑÏ¿hX\ßh{RiŸtKiŸž¿¢}š¶£}®~Iûüa6XK\ëÿH¤·\Ñ&¶lÐ¦Ž\ì¦McÒ¾A\Ëh\Ó\Ô4\Úw™\í´\ï\ël\Ú\Ì\"6[,Oû\É}A›ó†\Ó~]¢\Ò2\Ó~\Ï\ï¡-=9J[j}I[>\åB[y¥­š¾§­YÀhk•ž´uýz\ÚÈ™¶‘\ÔD\Ûh{L\ÛXh§ý³§\Óþ}u¤Ë•i\Ñ+°t%­jú\æºJQ:}+¤¾\Ý	D\ß\Þ4D\×\Ø_G\×hÿE×˜—\Ò5\Ël\èZ© º\Ö5º6L×–¢\ë*Œ\Óu{­\éú\'ª\èú\é	tCSº\Ù\Å,ºhŒ¾k+‰¾Ë¶¾Û£—ne§O·ú¦B·\Þ\ZG·L§[ƒ~\Òm\Ì\Ö\é¶T#º]\Æ8Ý®7’n7J·[\ÛG\ß+I¡\Û\Ç\0\è2^\Òóu\éG\\At§ø<ºSoý\Øô\Ý\å®	\Ý=h\î>w‡~(¢{šN\Ñ=)w\éž}ƒtÏiº¬”\î°N÷\ÝdL÷e\×\Ò}Û°t\ß?·\é§”\ÐOKEô3¢\Íô³À£ô³=\éþ\Æt¶&Ý¿ŒHP¤\\»M¨ë¢Ÿ÷¤\Ò\Ïd\é\ç\Ã3\éÍ¨ô‹{+\è\ïO\Ñ/);\Ò/%\Ä\Ó/\å¡Z\ä\Ò\ÆÓƒòS\èÁ¿yô\ËA\Ót\à+:˜N·¿¤#7\ÓÑ¡^tLP	3x‹Ž½\èK\Ç>o£ÀD:\Ùð7ýÿ/\ì¯N§~ \ÓZ\àtº\ÞU:\ã‚?qû-ñ(“Î¡„\Ò9\Ïþ\ÒùøtÁc}ºpAgW\ÒÅ…£t\É\ÞaºT)‰.\ÅLÓ¥-9ô—hz\È\Ûz(ÿ$=ú‚nr”Î¶£_™\ê£_½I‘_¡\Ç\Í\Ó\ã?=£\',ü¡\',\Ê\Ð»­\é©{\ÞÓ¯™€\éi¢Aú6=ýø\"=ý²==e=\ãW\rý\ÎN=\×f„ž[\r£ß½}žwp\'=O§\çq\èù“û\è÷\î\ï¡´\á\é\Ç\éE“ô>²ôÒ¡ôòó(ú\Ãd?z\å´\'½\ê\ßý\É\áú\ä_ú“o3ô§\nNôj³mô\ê“öôjt&½\æL<ýÙ©iú3I=ý¹u\n½ÁGo8žEoÀj\Ð_\Ð\Î\Ñ_¤p\è/\Æ\ã\è\Í\×\Ñ[\ì\Ö\é-\Ù\ÉôVjz›‰?½\í\ÎNz§½.½sñýe„”\ÞUªF\ïù?O\ï6—\Ñû×¬\èƒ\Õ_\éƒ\rô¡\Øfú0aƒþžkNŸw‚þ¾,˜þAþ>ý\Ã	mú\ç—6ô/;~\Ð\Ç\åþ\ÒÇ\é\ã\'ƒ\é\ã7\î\Ò\'«\é\Ó\Æ\îô\ïPú\Ï}^v™þGñýü\n}ñŒ¾|Ó”¾\\B_Q\ä\ÑW\Ú\í\èú\ÒW¯\ÑW\Î\ÑWÁ\Õôµ³^ô5–\n}\Ýh•¾\îz¾¡SJ\ßXf\Èx#2õ\n\Ù}\Ùw;r\Û\nÁ\ç\n-R†¢\â†bñI†RbC9\å+cs\"c‹M?c\ë2c\Û5e†ª„¡úÜ…¡y\ÍÐ¨û\È\ÐLeh¸3t6\Õ1v„_g\è\Ñ\×úž\Úý1ƒŸ»F/¯3Œ‡Á“ôH†\éõE†iv\Ãlù!cW˜Ã²c·|Ãªn‚a}}˜aýðÃºòc¯3”±whˆ±wÃ‚aó%Ã¾ú+Ã¡uc·š±ÿ\â\Æ~¾\r\ã\04‡qð\ÝS\Æ!«G\ï^\Æ‹4Æ‘\è$\ÆQ«J\Æ\ÑðH†óKÆ±kW8\áŽ:\Éð\ÆG2|<¾2|}\Û¾1õŒ³Ž3Î–¹1ü†¿ä¯Œ€KÉŒ€+&Œ€\æÛŒ€™=Œs’AÆ¹<\ãÒ¹%F\Ð\\(#ø\ä>\Æ\åJP\Ý\Ã\0þ 3€QØ‚õ\Ä3`\É\Û(\íST¹;£9\ÅÀþ~\ìºg_\ÍÀ=´d\à?Œ3ˆ”NQ|Aò\Õf\ÞV1\È\Å÷4\Ø=.›Áð`0>1sGl\ß-N¤#ƒ\ç,C<q‚!mA3B/1\"œ·3\"¢£ùíŒ«Y“Œ˜ù|F\ì\ÖËŒØŒFükEFJ³#\ÆH\01\ÒTŒŠÝŒ›öÖŒ›ûw2nP`\Ü,Ke\Ü\Ú,f\Üj±e\Üz\ÈH\ßñ–‘~\é#ùˆ‘‰¾Ê¸cg\äô_b\ä‹¹¿8Œ»öŒ\ÎWF¡•\r£0Áƒq\ß;–Q”³•QÔ•\Åx\ÐúQ\\þQ\ÜqQbš\Í(½Á(m‹e”2ª\Þ\Õ3ž\à¬O5J-ŒºN1£\Þ!\Ñð¡†\Ñx\Ãh¤üf4Æ´0š¶\ä3Zw¸0Z]ƒ­\"cF{\ËwF§5’ñ²ü!ã•Ž\ÑÝŠf¼QŽg¼^c¼¹†eô©u2úð§\ïö\Þgô¢CoIŒ\á§åŒ‘m!Œ‘‰;Œ‘\Û\ï\'	Œ÷¿\Ì£ZrŒ\åÞŒO?ŒŸ1>«3c\Ï\Õ‹(Æ¤\í<c:P‹1\ëÉ˜I\ßÆ˜½\Äø‘¥\Åø™»À˜\èeü2³aürº\ÃXŠ|\ÄX\ÙY\Ïøû³•±zÊ™±ú{ƒ±Vgl@v3e«‡™²Ï­˜r\Ïö3™g™*Võ\Ì-{>3·F~en“\ß\Å\Üfš\ÈTß•\Í\Ô`gjT15\Üfj²•™\Ú\ÆÇ™:õ\Í\Ì\\<sÇ+L=\ï_L=€©ÿ÷$s\'Â¹\Ë`\î¤\íf\ZNc\Z+m0wi¤2­v\ßgZ\Ý\ÔgZ_ 1\í&\Z™ör;™ö\'™öD¦C$‡¹¿óó\à<•y\ØÉš\éh\ë\Ë<rÇœ\é¤w‡\é´Át\Ö>\Î<&cºø\é0]ƒ´™\î¦÷_LoD\Ó;Š\ÎôN{\É<\Åfúx‹™>Â˜>K\ÖLß’¦\ïû\ë\Ì\Ó\Çü˜g\ÈóL‰Ó¿ÿ*óÂ®·\Ì˜l\æ¥?™Á\é$\æ\åO©L@3™	Ä³˜`n\"¶™Ç„‰J˜poe&<K†‰X)a\"}Ò™¨\'MLt\Ù£•Á\Ä–1‰k£LºžI\Ö\ÓgR‹Ó™´¸E&\ÝÁ¤Ÿöf2Ho˜\Ì“L–’“\å•\Èd™e²‚²™,¸“\Ýö–\ÉS\Zb\n>ú3%\Ò\\fH\ïyf(\ã3”;ÁŒ8s–`Ì¼\";ÌŒ®ÿÎŒy{Ÿ3¯ÌŒ¥=d\Æ¼e\ÆU\É3\ã\Æ™q;˜ñî—˜ñ]™‰}õ\Ì$\å,f’Ÿ93\å\îof\êm&ózð7\æ\rsó\Æ\Õ\Ç\Ì[òÌŒ™\ë\Ì\ÌN\rf6]\È\ÌN<Í¼ó\È\ÌÁb™y\Î fþT.óžN\r³À\ë-³Ð¨•Y8\ãÌ¼1\È^g>Xg–\è\Ö3K`\ÊÌ’šrfÉŒ-³ô\àWf¹{1³R\á\n³r)ó11šY\å\ìÊ¬\Ê[gV\Íf1ŸÞ‰`\Ö\äÃ™5?¢˜5«G™\Ï\êJ˜Ï\ê˜\Ï\Ûh\Ì&o\"³\ée³Yv\'³ù¤3³Mÿ³\í…/³Ý¸\ÙNrgv\'1_mQbv™^cvA¢˜]Yƒ\Ì‹ef¯–\ÙKšböÿ_›™ƒ÷»˜õ\à\ÌOn÷˜cVÌ±*\æ—o™Ž8\æL9/ôaþ†—1ÿL\ê1»¾2—¦_0—^Ì¿#‰\Ìõ‰1–\Ìc(kS˜-Kö;“%wøK‰ù¥ü\Ì\ÚZ{µMV‰µ´‡¥^«ÁR\ï\Ù\ÍRŸ÷bim$³´ƒˆ,m2›¥ó§¥³\â\ÂÚ‘¦\Ë\ÒUaé©¯²ô¬šXúý\çX;\ÏÄ²Œþ\îf™\àÏ±L\ïù²\Ì<,³\ç–¹B&\Ë\ÒÙ‡e\É\êdY\Ö\'±¬L­XV	b–\Í!u–\Í\ç«,;÷(\Ö^ûDÖ¾ýU¬ý§\ÆXû	‰¬¡\é¬\ÃÖ“,§\Ç/YGV³œ\ÃN²Ž\éXÇ°YÇ¾›²\\R+Y\Ç\ÂY\íÃ¬“\É\Õ,\Ê\ë”…\å7t—\åß’\Ë:G3a“L°.&gžà²‚ó;Y—7e².›JX\0S]\à ‡x6\Æfõ²€\åù,\Ã\äý\Ôt…s:\ËB\Zú²\Ð	wY*Š…õø\Ì\"\ÄÕ³ˆ\ßÞ²\È\â19ÃŠEùôŽE]\ÎbqY¬\Ûa,V\áA{;˜Å¹¯\È\â†°x;\è,\Öv–\0øŽ%tmb	³Y\"ŒK\Ô4Á\nóteE ³\"wÚ°¢›YW¼¦YW5Å¬«I\ÏXÑµlVœ±€wÅŠ;ž\ÍJÖ³’w|`%\Ûh²Rþ±RªY\×\ê6X×ºcXi[óXi£¬\ë*Ù¬—ˆ¬[¦Ú¬\Û\'%¬ôÃ™¬L¹^VÖŽV¶œ3+û~#\ë¼ž•¤³rm¬œ¹HV^‹6«`\à+«•\Æzq‘UlN`•¨Ö²J.Î³\Êä¸¬2\nœUn\à\ËzØ‘\Ïz¸\ÞÄª8·Èªxd\Ïz$ûŒUušÍª	Y\Õ7Ÿ±j\rôYµ’«¬f™¬\æ{BVKB«\Õp7«\r5\ÏjªcuDmauôg½\ÂO²º.±zY=Ž\'Y=\î&¬\Þ\ë­÷\r\Ö;b?«ß€\Äê¯–°úk\ËYCvy¬¡•Ã¬\áù6\Öð\êwÖˆ\îN\ÖÈ¡dÖ¨F\nkôW\ëC‡õ\Ùö\"k¬Þ„õEFŸõ\å_/kü¯˜5QYÇšXA±¦4\\XS\ÆY¬o]m¬\ï‚\Ö÷ªR\Ö\ìi\Ö\ìC\ë‡\ÏU\ÖO\Ö5Öœ\Î<kþ7‰5ÿ\ç5k~ÅŽõg\ç)ÖŸx\Öß‰\Ö\ê§iÖšdk=ÿk½kŒµ\áŽõ\ï‚½iv€­ðv­\ä¼ÀVú‘\ÏV–“°•\"Ø›7±7\Ã|\Ù*‘ª\ì-ûM\Ø\Ûô\Ø\Û\Ç9\ì\í²l\ÕS¶&Ä“­…½À\ÖZB³µ-\Ù;v°wV\ße\ï\ì\Ù`\èay	Ù¦Æ›Ù¦®l3\Ï\Ýl³‰ló8Û²¯ž½;Ážmcz‚m»p‹mg\â\Æv¨	f\ï+b\ï\ëªbª_gJd;	«\Ù\Îôlˆ€\íze‰\í:y—\í&w}Â“\Ïö(²a{v~e{)H\Ø^;lom[¶w\Ê%¶w\íNöi\íg\ì3v@ö™\Êì³…=ì³•û\Ùg±ý.²ý®Q\Øþ\Îö\ìsg™\ìKrc\ìK:\ìÀ\ì`b&;ø\êsvð\×\Ï\ì\à\r?6`UŽ\rô“²!³[\ÙP›l\èy6Â—ÁF\\\Ía#U¦Ù¨ý³lt\ÒG66Z‡W­b\ã=Î²ñ(96AužM\0k°	M\Ãl¢\î16\ÑYMvªfSj\Ø,i0›\Û7\Æ\æ\Ç)°c½l\Ñ\æl¶h\ä[¼ö„-1‹eKƒØ’’sl\ÉH[Z\ãÍ–v³CÉ‡Ø¡­»\Øa·w³#ž÷±#o°£\â¢\ØQ«lö\Õ/“\ìhõýì˜¿e\ì\Ø\çG\ØqS+\ì„P;ñ\ÕCvòfUv²Aû\Z\ÎNóæ²¯[ \Ù\×\'m\Ù7WmÙ·¿F³³•\Ü\Øw2 \ì|o);ÿ»pÞŠ}?\îû~úv‘¥»¸|™]br™]òÉƒ]–[\Ê.W·g?Ôµ`?l\ÝÂ®°sgW0&\ØUöXv•\Ã~\Z¶›]c¯\Â~†¿Â®eE²\ë\ä†\Ùõ£Ÿ\Ø\Ï-Ÿ°U±›^f7_f·‚\ÝØ­ŒZvÇ‰-\ì\Î.!»\Ï\îúV\È\î9®À\î¹S\Ã\îû\Æ~k\Ìa¿›£²û‹²ûŸµ³\ÍN±‡Ln°‡ô³G>y³\ßÇœa¿¿‘\Î~ÿÀ†ýþ‘ûÃ– ö\Çc2\ì\Ï6\Øc\r§\Ù\ãG³\'\ïÏ±§Š†\ÙSÿ˜\ìo\Öÿó1`O\ÓQ\ì\éø>öw³6ö\ì§\ZöÏ»¶\ìŸ}\ì_Aµ\ì_Irì…³7\Ùì¥‘·ì•¡0ö_eSö\ßc±\ì\r›‡™­\\ŽYŸ##üË‘iµ\âlJO\æ\Èe\ær\äQ8ò\íù\ÄjŽ‚«G!²‡£½•£P{Š£¬üš£|\è6G…R\Å\Ù\È\çl5»Á\Ù\nŒ\âl¥}\æl{0\Å\Ùn\ÄÙŽ|ÀQ\Óas4\å¢8Z·~q´\îst·¾\ç\èb½³78z?Z9ú679ú\à`ŽþTg\'\Ã1f\Ñ8fŸ­9–!:+7g\'˜c]\äX?0\á\Ø\0?sl\ï\Ùq\ì4g8v	ög¿\Îg?\ç\ç\Ð\ÑwœC\Ò\Î\á÷#\ÇE\Z\ç¨`/Ç¹Ðƒ\ãR\Ñ\Ïqy\îÀq\Õl\â¸ad9ne›9\î²\Ï9\'\Ê9N¶/-Žw\ìuŽ\ï9\ÎiY\ç´K%ç¬§\r\çlÁ \Ç\ÏÄŒ\ã\çS\Êñ#8püO›sü\ç\Z9\äN@o/\çRP=\çRL\'ø\Ï\àõ‡\è\ã€ð<\Ô\0ÉÉ8ðG\ß8¹\×\Ô\'úº[‘Á!\ËyqÈ–Š2‡ª*\æP÷\Ös¨WW8\ÔuWM5ŠC›”\å0†i¦\åMsO‡\ÙC\â°-\Ô9\Üc_9¼eWŽ ù*GD7æˆ¾\ésBgÿpÂ¤jœð\×O8‘“œ«g8± [œ\Øt2\'öG3\'!³”“òÇ…“x\ÏI\ã>ã¤s97-87Œ³9·§\Ç8\é¾Nz›ˆ“>(\Ï\É(z\É\ÉN\ØÊ¹ƒ1\ä\äž\Þ\Ì\É\í£pòž¤rò\ÞZqò_£9÷\n‹8U\'8…\Îý­O9E\çœ¢\Ö\çœ\â41§üS(\ç\Ñå‹œÇ²\ç9\Ño9\Õ\',95\îœ:·1N#Àyqò%\ç…O§Å†\Êi‘B8-É9-7z8-\Ó\æœVGNkœ§\r8\Éi+}\Êi[Ž\ætœ9‹•œ—¯b9¯\n\ç8¯/9¯\Ã\Ö9]Í–œ®noÎ›»LÎ›_#œ^²€Ó›Z\Ã\é~\È\é3¸\Åykã¼\Ìä¼£pú\×^r\Êosúr=8CÓœ¡—®œ‘\îX\Îû+_8£‘œ\Ñ8c\Î\è—ó!!ó\ás\ç\Ãò\ÎGOY\Î\Çg\ç9Ÿ‡8\ãg\ã9\ãeÎ„5–3y:‚óõ[\r\çª‹ó\íÿœOoI\à\Ì\ìzÊ™ù\Î\à\Ì\ÞÍ™=¥Ä™½\Ì\çÌ²ÿ_S-8o÷q–¬\îs–\Ï9K_\ßsV,ösVNpVðƒœ¿9P\Î\ß\Î\n\Î\êŽ[œÕ°3œ5§Î†9‘óp˜»)»€+A\æ\ÊÞ¬\æ\Êþ\ØÄ•«_\áÊÁ¸òŒR®|IWÙ¿«<9\É\Ýü\ÂU\á®s· \Ü-ñÜ­	ª\Ü\íNB®\êW8W½›«þ³Ÿ«‘ù—«ñ\ÄÕŽò\ä\ê8©ru\ç\Ïpõ\Ês\rBV¹F\rv\\£\ÉX®IB%\×<Äµ\Ï\äZ\î•\ã\Ú\ì%qme“¸v\Ú_¸{Ÿ)r÷~r÷\é´p÷E¹û>krB¦¹‡XM\ÜCÃ¹‡Uk¹ŽHo®\ã›ó\Ü#£­Ü£ˆ&®sð^î±³¹.„ƒ\\—\×Mo\×\Ý\Ë=¾§‹{ü\Ä?\îq\ÆC\îqi.÷ø\Û\Ü*»¹\'ž^\ãzx—p=Í¹žI\\\Ï?ú\\o-9\î\É\ÝD\î\ÉÚ“\\Ÿú­\Ü\Ó\'?q\Ïôzrý6©qýqý¹þ\ZŸ¹þ¦\\÷X®ÿ›°mˆ ¿\Â\r°½À=g2\Î=×¸\Æ=/P\å^œó\ä^\ê\Ö\âš\åGFpƒ\Ë\n¹Á?¸`\Ý[\\ˆ\ä²xš\åc¹Ð¸8.² ‹ª\è\â¢\Ï¹˜¸»\\l\Ê_.ù\Þa.¥]À¥Q£¹ôó.\ãÇ¥S\Þp™Š¹l/.»ú —ý&€\Ë),\àr/	¸¼F-®ð^\0W8\Å\íQ\æŠÍ®q\Åyd®D;‘+­­\æJ_irC\Ö\Ü\Ð\Ô\Ü0†#7ò\Å$7rˆÄ½Bs\ã^\á^}¿™ý ˆ#\Ã\à\Æ(\'rc\ÑÇ¸q?\Îq÷s?\Æs“ô½¸\É 9nròsn\ÊnÊ¸=÷\Z>„{mµ›¦Ê½¡t…{“\ßÏ½\ÞÈ½ÕÌ½gÂ½\Ý\áf¸_\çfÚ¸·\r¹YVmÜ¬\â\Ó\Ü\ì	%n\Î\Ó!n\ÎP7OÎ’[°^\É-<\'\Ï-\ì[\å\Þgõs‹ðm\Üò˜4neF·Š÷ˆ[•)\Ã}‚ò\å>\r\å>1\ä>3Z\ã>s°\ä>W\Z\ã6œ!r[¹­1e\Ü\ÖB\î«\åG\Ü\×[r_r¸¯†¸¯?s\ß\Ô\Ís{Îºp{§¹ §\ÜÁ`y\î\à]gî°w¸\'Ÿ;bƒ\æ¾\×m\â¾w›\ã¾?“\Î}¿\î\Èý`\å\ÌýDL\à~úò‹ûù\Â\îø^+\îø!\îx\ÄE\î\Ä\îû7wjÝˆûõs7÷ý3÷[a#w¦{•;«‡\çþLgqþÛ¹qW\î|f9w\áZwac\'÷÷_\'\îÒ³=\Ü\ÕsÜ¿\ZO¸«y(\îÚ¡\îZ‡wý €»m\Ï\Ý(ú\Âý·½Ÿû/\ä/O\ÆxOf\ào\ÓWž|õAžB\íž\Ê+e\Þ6t\'o[vo[{2O\íO\ÓtŽ§\Å\æ\íð­\ã\éu>\à„lð]•y\Æ®<Sµ<ó€_¼]ž\Ïy\Ö\n÷y\Ö\0\Ï:t˜g³¼Ì³­\àð\ìªò\ì\êdyöû ¼}{y\ÍfxGd»yN†Š<W/\ïxM:\Ïc7’\çyy\Ïó[\Z\ÏsyŠ\ç…\ï\äyUøó¼:3x§^òN\ÓNð\Î\0\îñÎ A¼3\ïL¨\ï¬\ïžv”°1Ã»0\à]T\Z\å\Én\åwó‚ýöó‚Ã²x—\Ý&x—½{y—G¼y€\ãP ö%P\Ý\ÄbyÀû<E4\çOZñÀ\é#<ô+jÂƒþ\Ò\æ! *<\Äb¯\Û\Ì\Ã\ßH\åN\ëóU:<bt\ál1\Ë#W¨ñ(øc<\ÊôC\ÕJ›\ÇL•\á±\Ä4\ë\ãwÃ\'ˆŽ\æ	^˜ò„jŸxB\æ4OøÁ¥rx\âDž¤úO\êŽ\à…Œþ\á…|1ã…¾\Þ\àE¤\äE\Ü)\åEŒ£yQp>\ïJ_\ïª\Êe^¬g/®\ÏK\ÚL\å¥ZòRƒnó®/OónDý\â\Ýh~Ä»5µ…w;ú2/\Ý\ï/½\ë:/ƒ?\ÃËŠ¿\Î\Ë\Æ*ñ²¡¼;º“¼;Kxw­ò\î™\ã\Ý=±\Â\Ëkñ\ç\åû|\á\Ý;yƒw~”woþ¯ x…w\Æ+ò‘\ã=H<\Â+£\æU^ˆ\åU>¸\Â{\ì<Î«rùÂ«zŸ\Ê{z0Š÷ô\Ñ~^5§šW\Ýð“WÃˆ\äÕªñ\êŽDò\Z‰^\ã¸=\ï…b¯iÀ•×¬õ’×¢\Ïk±—\áµ$ð\Ú0y¼¶L\n¯\ì\Ã\ëò†ñ\Þ\0yoH¡¼ž\îh^o¹”\×_H\ã\r¼ž\ä\ry\Ã[y£1Wx˜\Çycý\í¼/\Zx_\æxß£Kx3Éy³Æ“¼›‚x?2è¼Ÿ ·¼Ÿù\Þ/\ÙÞ¯òo¼“2Þ¢\Âs\Þ\Ê\×\Þ_8†÷w\æ\ï\ïz&o½ Œ÷\ï’/\ï\ßTST\"S\Ç4_.Ä†/Ï®\å+xóe³ùŠ»ùŠOeøŠó`¾Ê·\Ëü-§lù[\"õø[\Ê\'ø[–óù[\çœù\Û\î~\ço{¿‡¿\Ð\ÈW\Ý\Èä«·*ò5¾…ð5=ýø;Ž;óuw\ÃøzŽ£|}\Ò6¾a‡o\ØSÀ7ò¿À7\Êfò\å;ø\Æjd¾q’o®‹¿\ë|\ß\"\ZÂ·T‡ñ-/\çó­\Ð7ù\ÖñF|O<\ß\ÖX™o[r“o§¯Ä·»²‡o7Š¿\×S“¿\Ï\à-ÿ€ýmþÁF<ÿ\Ð\ÞAþ¡\Ódþ!1”X\éÿðô-¾£\Ùi¾\ã+&ÿ\È\n\ï\ä¶\Îw\ê¹Á?ªù\Ô?ž\ï¼Å\ïÜ\Â?v\"Ž¬y\ß\Ó>‡\ïÙ¬\Ê?upŒ\Ê5ƒ\êúÿô\Å\Ýü3\å–|¿$?\0\×\Ë\Ù\Ç?\'¯\Ä?¿\'†>®‚>Á\Ü6\Ä¾\Ë¾õ‰y‹”\Ùûÿò\Õ#|@\çY>˜\åÎ‡~òaO\Îð\áZC|¸\Þ$“\á\Ç\Ç}=\Å\Çýú\ÈÇŸO\ä\ã36ó‰‰>©NOò)†·øTù“|Z<›O÷Œ\ç\Óñ|†‰3Ÿ³\ã0ŸóD\Ï3dó…½ù¢Á\ã|)\ê	_ºz†²-š’\Ë\ró\ÃÔ“øa«™üHð;~\ä\ÒþÕº\íü\èû™üX\çE~õ?q²”Ÿ´7•Ÿ,y\ÇO®¤ó“W²ø©\ÏTø©¯ø\×N,ò\Ó\0ütˆŸ™\È\Ïbyó³zuø9\Ôy~\ÎC8?w¦ƒŸ\Ä\Ï/3\â‚ù…\Ï>ðK¢wóKýFøe\Âür¼?ÿ!$Ÿÿ°a–ÿð\Ï2¿\Ò=_\å\Ì\á?\ãóŸj$ó«/\Ôòkrø\Ï\à_øµžü:›N~ý\Ô2ÿ¹ò1~Ã¼\Z¿ñ\Û~~\ã:\ß\"·\ÊoY7\á·iDðÛ‡øµü—·7ó_Ë¾\à¿û\É\ï\Ê\ì\ãw¾\Æ\ï\î\Ö\áw\à÷/\à+ùY\ÃüÁ—Lþ\Ð!sþpp0¤¼›ÿ¡\'€ÿa@žÿÙ\Ç\Û|€?á…\ß\äñ>ÊŸH\Ñ\àLò¿Ž»ó§—5ø3Sù?\Ænñ\ç\Îûò\ç\å\íø¿þóÿ¼z\Í_„¸ñ—µCù\Ë\ëoù+—ø+CBþ\ZB‡¿Fà¯½¬È•^È•AŠ4\ÒX@õ]°}3@ †i¨÷X\n43Ÿ´\ÔMZŽ.ðw\Þ\'þí‚„%Á\Î‚?@mBµÀ \Ò\\`\è)0¤¢†wFr‡F\äR±%[`ªüD`\Ê\Î˜«ŒÌ‡‡Ù‚Ý¡—V\Åo{”6\Ï¶}p>J`\å °{N\Øu\Ü\Ø_z+p\ÐO8ˆ·ö\ë~\ìws\ìŸYô·ú\è%8\Â\Ó¹Z/p\Ú2(p‚\ÂG:.ÀB\Û`«À½G\àNü-ð\ØIxž¾,ðüô^à­º,89¬(ð)÷øT=œi$\ÐYœF\\¸2\"¸Dy.\ÔO¯	—À¡\Èù©\0\ä(\0µý€™\à\È¸fU\0±=$€x 2R\ÔxA\0z	\à‡­3\âO…\0µ°,À\'%	ˆ:TñW€,£  ^NP_:\n÷\êŒ±sá³€U\î\"`¥8-ª\ÎH‘€gø[Àÿ¾W ðþ*@„G\Ò¢\ÐN(ó­@\ìm\"‹\Ût\ï”{U\Ú.ˆ²\ÓD…›®ªý\\=´K\ËÄŠ‘‚8òŠ \îN± ®FC¶Ið|BHX$fn’~ \ÉÏžR†•©ó‚\ë!‚\ë_\ä\×gy‚?/\nn»\Ó\é\Ò\é\Ñ[™‚NA\æZ­ «t‹ û|—\à\Î\Û$ANP ÷„ ÷kš\àn\ÚA^\ä1A>vŸ \àf› \àK³ `$(\Ä}Ü·\ÍÉ¿yf	ŠJ–¥‰·e\×\åõ²‚\në·‚\Ê\n¾\àQ°@ðøaœ \nLT\nª$»Õ³û\ÏN£»^\Z»\è‚\Æs‚\ÆOY‚&:\\Ðœp@\Ð<µG\Ð\Ö÷K\Ð.x.\è\Èú,\èx¦ \èdr¡]‚—\Û/\'/ý™‚W?A÷´Š \ÇrX\Ðkt^\Ð\ë\á \ècˆ\ïš5ýOWy~‚A‘`¯#^QŒX\å	FúG\ïs\ï>¸?|8/|–\íŒQ\Ëco&>‚É£‚\É\â-‚¯F…‚ogv\n¾õ\Ä\n¾s	‚\ïüß‚¥NÁL\0]0-\ÌTzf\É>‚ŸùbÁ¯¶@ÁBhŒ`á«`\é\Ò_Á’\Ð_°,”µ¸%”½\Ñ&”A„\nPo¡\â\èS\á\æ`ŠP\å\È}\áV›Y\áö\Í\Õ\Â\íµ4¡ª\\’P\Í\Ð[¨ö\Ë\\¨~\ØQ¨\ÙvX¨\Í\Ø)\Ô.j¯š	u´™Bž\'\Â	\Â\ïõ‚iBýFK\á\Î\×CB\ÃKyBc½\ÃB\ã\\¡	¢Hhº 4×©š×ž\î28*\ÜUo%´\0-}	B«¥váž§…Ö»o\n­SIB±«\Ð6¸Nh·¹]hwZWhw®F¸÷ŒH¸·(´O\Í:xB…\É\ë\Â}»t…ûS„ûûg„‡de„‡ÎŸ:^\Ü#t\Ä…N§\'„Nþ6B§2žÐ¹H,t¡y	]\ÝyB7W\áñsx\áÉž½BŸ˜³B¿¤\Ð?=_\è?†ú¯X\nV./\ì^œ^\ÚR\'¼fÝ…A.Â \Í\Â`¤º€®V´…À»BP\Îm!¸ñ§ò.P™BUnawBØ»GBø‰\ÝB¼Wˆ$¨\nQ\Î\êBT¢Pˆ¾\Ø/\Ä\Ä±\r_…Ø}B\\.Iˆ›z-\Ä\'V\n	‰_…$\Ý!‰i!$\Í\"…d§óB²\ÔLH~R¿O	Y‚.!++\\\ÈM¼&\ä)\nùªBa‚™P\ÄnŠ/‡C–f…¡=„aaøJ¬ð\n\ÂHxu°Q­!ŒÉ«\Æ\âv\Î\n“«†„\É/	S…©}×…ig\Z„\×7O¯;U	o˜b„7so\Û\ìf\ìf\å\é\n³\Ù:\Â3;a\ÎIyaNj¹0OFF˜O\Ó\æ\ß6\æÿ\ÞKšZ	ë«…÷\ç\Ä\Â\"\å.añ¡\Â\âò\Â\âúEa‰íŒ°¬-DX%jV©	kb±\Âgog…µ+a}m›°¾\×Vø|W°\Ñåœ°iò°å¹¡°ÃŠ\"\ìx$\ì…/K}…/_;ö_¿™v?\à{v\ê{½„½\ßò…o-	öI„ƒ.L\á XC8£$%:?:m~”\Þ~ü÷Fø©\ì–pl\ÄR8\ÞZ _\Ú-œr\Ù$œº\"üÚ‘(ü\æ\Ö*üû(üþüpöŒ“pvñ”ð‡ÉŠð‡w ð\Çi±pî ‘p\Þp\\ø+/ü}*üÝ­$ü£rQø‡µ,\\šHþM~#\\E\í®…¯×¿©	ÿ}=*\ÚÔ–\"R85.RøðP¤0ñN¤xð‹H1%V¤X1\'R:)RÂ¶Š”Ê“DJß¶Š”~m©Œm5\0‰¶;‹¶ßžmO©ú5‹T\Ë>Štˆ_E:¼\"|¢hÇŽ¢«‘¾s¡È€\Ë¬=Zë‰Œ{~ˆL;ŠÌ¯Í‰v\r\Z‰,ŽÇ‰,-\"‹\ÌN‘Å\"+;]‘UHdµ²[d\r‰l|­D6,‘mXd»,\Ú;¼Kdo4.²¾YdÿöhC¿\è@e¨\è\à¸\èP\ìª\è\Ð\ã}¢ÃŠË¢Ã¨‹¢\Ãñ¢£\ìi\ÑÑ¡\0‘sõ?\Ñ1Éˆ\ÈUy§\È5&R\ä\æ\è&r‡¾¹\çÕŠ<’@\"\Ïs¢“\ÞÕ¢“cY\"\êf‘\Ï?„\è”o˜\èôþ>\Ñu¬\èl\ï_‘¦H\ä\ßùMtN½JtÁ|Ct©ò®\è\Ò\ÂCQ°,J\\š-\n~\Å]\îQ]þ¬.ÈŠE@ùr°f›d¼GŠk\ZšD`/Œ\ê».‚*Áš/‹\àº]\"\Ä9R.S„Ì¿*BGD‹T\î\íá”«ˆˆŠ\ëªD”\Ø&%=CD\ë.\Ñ\æˆØ›\\E\ì6W%E\ÄñFDü”\Û\"¡Š•H\ÄC‹\ÄÎ\"‰\ß‘d\ÖUeX%ºz5PSzK\ê)Jðú J²°%WˆR.NˆR³/‹R»Ei©OEi?zE73o‹nV-‹n>Ý¶6¥me´ÀEwŽÊˆ\î”l\å4Š\î¤‰\nŠ\ï‰\î_\Î\Ý/\r¹TŠŠ;ÿˆJ–\è¢R\ÜWQù•K¢ò;‹¢‡«f¢\nž·¨\â\ævQE^T1þ@Tñó¨\è±ò\Ñ\ã¬eÑ“\×EO.\Ý=\Ý|Zô´!ª\æ D\Ï^Dõu1¢\ç2¢÷?¢¦$yQÓ¢³¨E­OÔ¢_&j]:\"\êP<&\ê¸,\ê½\äŠ^‰^PE¯~w‰^\ËrD¯\nD=ƒE}‡wŠ\Þ)Èˆ†>\Þœ6„%ˆFb¢÷$S\Ñ\Ç\Ãò¢ç¾‹>>\Í}!¾\ëõŠ\ÆÍ¡¢ñ¸hüÝ’h\â\Ò1\Ñ%šš}“\×}³i}+< šNˆ¾«qE³†)¢Ù¿í¢Ÿ\â4\Ñ\ÏW¢Ÿk¢_*\n¢_GzD&\äDË¶OD+÷¡¢•…*\Ñ\ß\Ãk¢¿G>Šþ†­‹þ\Þ\ç‰V¢Õ…v\ÑZÜœhmH Zû6&Zg¾­¾&\Þ\ä.Þ´lü¿P±\\ðm±\\s§X\î}¶X¾¨L¬ P¬Dˆ•\âw‰·’‰·ßƒŠ\ÕIbM/±fYƒX+²X¬u,\Ö.4ë¨¿\ë–\Ó\Åz’bý¸\Ø(¸Zlª©.6M‰M¯cÅ¦E†b3{%ñ®!b‹\ÒN±Å‹U±\å·Uñn%w±\Õ+¡xOA†Ø¦PFl33(¶Mñ\Û\Þt\ïU-\ïÅµˆ÷\nR\Åö~–bû\Â±ƒ\ê˜xÿ\ïK\âƒuw\Ä\ßÍ‹ü?•y–+v\n\Ú#vúõS|ô`Žø\èE±3$J\ì’ôY\ìšf*v­[»Ö§‰Oì–ˆ=vË‹=¾‰\Ä^nb¯\ï\Û\ÅÞ°b\ï»hñI\ÒW±\ïö\ß\âS‘Dñ©fSñ\é©>ñ™]»\Åþ®ˆý	½\âsš\æ\â‹\ì^ñÅ¡q\à\Ôq\á³8(\í°8øG8{UDŽ‰ÁÆ…b°¯¦ü‡/†T\ÄP\\†\Z?+†t\Ã:¾‹asnb\ÔfŽEº%F+÷‰\ÑGÄ˜i¡\ë¼\"\Æ\rÄ‰	A¿\Å\ÌM1¡(&++‹\É\Ýþb\Ê\íy1õ\Äq1Í²]L\Ë}+¦k.‹™~›\Ä\ì@k1û÷W1\çð€˜sO]\Ì\ëjó>6ˆ…Û¾Š…¼X\Ø.¶¿»¿ˆÅ½\Íb‰-q-‡^\ê‡æ•‹Ã¶ñÅ‘{µ\ÄQ•\×\ÅW\È\ÄW»—\Åq‡_‰\ã\Z\Ê\Å	MHqR„¥8\Å\ÒSœ\ÚY\'¾¦§ø¿ò‚5\ÅiÿŽ‹¯\r\ß>ß²§\Ë[Š\Óz‹3ÿ·\Ò+\Î6sg\Ûú‰³{~‹sFNŠsþ\åŠsµt\Åy²qQº¢¸\Øz^\\|\Ü[\\\\9(.‘&ŠK¢Ï‰+ßŠ> ®b\Ñ\Ä5\ä/\âgÔ›\â:q}\Í7qý¿5ñó\áBqƒ§¸\ÉeUÜ´b/nñŠ·\Ò \â¶c\ÄmL°¸\íÁq‡s£¸#PGÜ‘ ¿„üwÿ_s½—~‰{[\Ä}Î¦â·¼{\â·W¿‹ß–ð\Å\ï¶¿CMˆû¿ˆûg\ÄC‰}\â¡\ÔLñð\Ñ\'\â\Ñ\"¬øƒ\â!ñª¹ø\ã\nDüÙ’+þ\â:,ž\èþ)ž\\pO…ž›¾(ž>µ$ž¾rVüý«—xflV<{&K<›¨*þ]\"þ­&žk}!žkgˆ\ç]ƒÄ¿\Ò6‹J\Å+ñ\ïúŸ\â?˜qñ’i©x9\'PüW§\\¼ö+^\ÏSo\\&ˆÿ­8I6ŸIä¯œ(\é\ì“(Q†$*V\é•/9’­›¸’­öG$[C\ä%\Û~Ü“lŸú \Ñ\Ø-Ñ¾rI¢ý8W¢\ÝwO¢cóU¢s\"Ñ™É”\ì°\Ú)\Ñ\åJôP};¡D%1ôxý¿a‰Q5Obôf‡\Äh\ÄSb4.1–Ñ’c{%\ÆBˆ\Ää…\Äd\È[b®úGb8,\Ù5}Vba\Ü.\Ùm‰“Xµ\í–\Øh\Ã%6ˆ‰Í»\í[3‰\í\â‰\ÞM\É^u/\É\Þ\ÆU‰½Rbº\\²_÷ \ä\0¤KrdjF\âl}F\â¢Z$qóH–¸“¸_	‘x\Z`$ž\Þ\ß%ž>‰\ç\Ù,‰\çu˜\Ä\ëT·\Äë‘\äT\Úu‰\ßü1‰ÿ19‰ÿ\×DIÀ)‚\äü^\Éù\Ô×’\ÞÝ’\Ó?%¬${\ÞK‚\\\ÞH‚.«H\0Æ‰ÐŽ?ó ‘+\'A)ü•`2_J°þ|	Ž—n%dð\'	e.¡\ï\Û.¡7p%ôn˜„ùX\ÆÖ¿]vŒ¶„+a¯>–p\ìH¸rQ^¼¬„\á›D\0\0IšD y-Ô„ID7$\âðU‰\ä\äœ$dO®\î+‰èž•\\i\r“Dm•\Ä\é<•\ÄDH\â¤G%qubI¢º±$yGª$u~«\äÚ‹³’\ë\â_’$7»F%\é“I\Æ\ËnI¶$SrgAM’K\ä.“ì™”89H\n¾K\n\æI\nš%…§’ûF$÷\Ú%”l$Å²I±÷gIY+ER¾Ž“<¤£%76Iª\ÖI\ê\'$õ{\Ò$õy’†«0Ic\ÂIcý¢\ä\Å\Î%É‹â³’¦3O%M\çð’¦ZwIÓœ¼¤Y÷²¤%#i•½+iS5´9B%\í~\'$/\îK^}“t\'VH\Þlz#\é)¾\"\é)é—¼¼û´(pcH¨\'%ƒ¾	’!%¡d84F2‡”¼¿h!ù\àT$ùügT2&|!Ž|¡|”|)˜“|5”Œ»|”Œ‹«$“v.’o*’\ï~h\Éw‘ždFÿ¨d¦\é³d\æm—dV\éd\Öý˜\ä‡Án\É\ËxÉ³Ã’Ÿx’ù\ë’_;e$¿z’?ýY’\Åb¨d	8/YJ\áI–%‡$\Ë\îHÖ”~IÖŽVKÖ®¤JÖ¾€$kS.’ž%ÿ€cR™i\ÒM¢\ãRYA Tö³†T\Ñ÷¼Tñ¥TIó¶t³u¶T…c-UiL‘n\ß\ã&U\ßÇ”ªÿº\"\Õð\âJ5ò¬¥Z·¤\Úo¥:¼T÷{ŒT/IWª/{Nª¯Qªú…TÿÃ¢t§›±\Ô$2SºkÇ€\Ôr\ï©\å•y\én9©\ÕU®t\Ïþ$©õ.€Ô¦p\\j—= u˜aJ÷¹·K÷\ç\ÌI|Ž‘\ÔÌ’r•:¡b¤G¹£\Òc®S\Òc\Ù\rR‡n©›Û€ôx‹‘ô\Äé‰•\íR\Ï\ÒF©Wû{©·\\½ôdVž\Ôw£RzÊ JzŠ¿Gzú°«ôL\àM\é¹í·¥\çü®IÏ—\â¥\ç¿ûK/{K/Ù–J/5\ï•\ÍJ»‚¤\0{)\ÈcJ\nB5KA\Ò3RXÆ n~VŠ\ä	¤\È÷O¥¨f\Ð/E?	”b\åRl¼¯û\ÄHJPt•\Ï–’”ˆR’Šƒ”luPJþQ*%ÿ©“Rjj¤L)s\ÔC\ÊÒ¬“²,Ã¤\\°‚”ûø÷Í…÷\0<”\É*QFI¢’\"Y™©ˆDf!Qô\Ý{\ï½GeSv	%£ˆ†\n!‰ŒH‘øÿ\Îÿ\Å\ç</\î9÷\Ü{Ÿ\ç\Üñ\æ²s\Û9{³\09_U\0·ýØ€;=–€\\\Ø{@n\ã}@\î\äK@žY4 /np÷\0X¿\0(¾\0r³À\É\0¸\î8\0¶ó\0\Ù\Ð@¾ó ¦1\0L¥\0k˜À\ïñ©\0\âŸ\Û\0\Ò\é>\0\é~5€R1 \\\00Ú\Øq‘\0n¼€û¥À$0\0Bd@b\ä\n\\\ß\à\Î\0¤_\Z\0ò®\"À½ˆ4À=ô5@\á–\"@\á\ÝÇ€\"ŒPô¨\nP\ì,”¼\×”n¿(\Ý\ã\r(½\Ð(\ã\ï”3\r\0JV½Š€JMg@\åT7 ªò: v½:\àñ>(\à\Éb0\àic	 !¬\ÐL\á^¤F:N‹‘ÿ\Å\'|@g¢\Z §\0\è2E\0\Þ;x{u\'\à-Fð\î\Ô$ \Ço\àƒa\à£\ÉNÀGš\àS\ï3@o\Ø< Ÿv\Ð_­\n¨»hkŽ\Ä\0†PHÀ°\ì:`¸\Ã0<‘øR7q:©{Ó•\0¾^ù	˜\ØL\ÞñL2\'Sû/¦×»¦¹\0scJÿ\Ùø¹\í\à\çò\à·J?\à÷§+€\å\ï§\0·]\0¬V\0V/ø\×ý¼T¸T\"ûüw\"i7_n8x¸\á¤¸\ÕÜ¤^T1÷n>\é\Ü\\3T\ÕúTMüT³¿\Ü\Â\Èª_¤\0\Õóf€[cÿ\Å·v}jujm—·w8\ï\îp9ÔƒÓz/€;Ÿ\0\Zvvƒ€FK%@\ã¿YÀ½þ±Àý\çý\Çc€ñÀ/@Àƒ\Ð\íÀC OÀ\Ãn\ê@«w½À#õ§\ÖNm@C{\à±.\ÐÎ¨xü¨Ð‘\Ü<ct\Ö\Æ\0Y‰ÀS¸õ@w\Ðc G\æc\à™ðcÀ3Ÿo½¶…ý\ê]g·\Æ\Ï\ê¶ý5—€þI§ÁúŠÀÐ¹MÀó\ëÛç±¯€·\Z/6^l\Ü¼ØŸ»\é[ý‡\Ã+Š\áN/‘À\È/`”S:0\ê\ço`´\Û0º¥c Œñ,\Æd¯nf¯†Ÿ^¥k¯>˜^}\çŒ\Æ\áÜ€	\Ñ0`\"\î>ðºcðúI\àõ‚?À\ä)0eL[\ïL‹\Ú	L\ß\Õ\Ì(ÿ\Ì–\03Ÿ\ì\Þ\Ä[o\n;€Ù¯\Þs^›oW2€y÷³€wl€\0P(°l\0z\Ö\0A\Çs \èX ˆ§ºÁCO\à\ÅE \Ìþ\ÆrÂ­lð²k@xˆx\È\"A\r@Tˆ^Mâ­½D-K ñ0H¼®\r$b¬\Äg…@*h:¶ÈŠk²À@\à%ž\änœrmš\\/)÷\äù&€‚\Ãö@Á‡—@ñ:)P|’\×\ä%Àn t\Ï& L«(;:¼oh\n|p­\nXü\æ+°d—3°¤ó?K§¥5\ÆÀG·\ì–‰ÀjÏ£ÀZõ»ÀÚ“D\àco!ð\é¦E\à\Ó}FÀ§\â\ÏÀ§ÍO¿\çk{€\ÏÂ¹À\ç\ÏpÀf\Ü\àg\'`+\Êør\Çu\àK<ð\å“H`\'\ä%°s\å9ðõý`Wù\Z°kp°û{<°{\Éøf\ã°g\ÓI\àG\Ç\à\ç 9\à\0)øE¿\Zø%ñ9ð\Ëpd›\'p\äöu\à\Ø\ÖR\àö7p¬ò-ðk\ág\àø†T\àø\Öp\à·\Ôy\à788¡\ÉN|\Ê~\ßhœ¬\Ûœ:N=oþXZN\ïƒgþ¨n^þœ{œ?#\Î|€ó÷¢€úë¿zÜ€‹\ÍÀ?!*À•-	À³»À5K{\àÚ¿\Û …\áX\Òý2\Ð_hC\ïeòIC2\Ô´\ÉD´\É¤’9\Ú\Üv¤Š\Ü\0R3ºR\Ë©Uw€\Ôy\ê õšxzûI\ÐV\Þ†>¤9\Òx\nÒŒ\íiõR@\ÚÿA:>n¢¤\Û\ã	Ú¡ÿ¤o\Òû\n\Úu`dXºd\Ô\ÏÃ˜ \ã\ÆX\ÉúDÉ©\ß )\È\ä_$ho‹>\ÈôüwÐ¾<Y\åI\Ðþ·Py\á:EtÐ›\r²4YiYmý²z´dµ\Ð:šö\ntô\æg:\È\ÎGdÿ=t¼K\ä 4¹¢€Ü ¡ ·_gA§µA—·<¯öƒ¼x /ÿ\nW°\ÈûI5\È\çh\Èwý(\×\n\Þ>u\0§€‚\Ü|AAµ\Z \à¸÷ \Ð7pP\èr$\è|³\èü\äÐ…g\ëAa»®€\Â\Ð@á›‹A\á¥ P\Ä)(\Ê\rº\â\êŠVPEÿŠ¹šºjº\Ú\ÕŠ–þþ\0%ªÔ€7\ËAI\ÖW@)0PÊµû \Ü%PŠ`”ò\n\0J=z\rtcö,(ý“3(£\å1(£/\Z”É‰\Ý|\å8o\å\\ò\ÝYô\å™-‚\0\×Y Às+\Ðj\è¡>½‚ðgA°\Ç@°¼¦„¬5aŽaò@Ø‚^nü/ˆr@Dµ\Ü¢–ú‚h]A\Ìa\0ˆ]\â0I þsŸ\ÆñCABµa(#$úö$6P\0\É6s@r¢”\ßS\r*(oV:‚\nAÅ§·‚Jé‘ 2D¨¼ª\Zôð¢5\èaòK\Ð#`?¨ú\ÄOPm\Ø)P-OÔˆ\Ü\rz¶¯ô\ì|¨\àz¡\nz!¯½([j_+uün½·2õD\á@\ÏYz¸ ¾öP¿\à\èsnh\à4—ú²ÿ<hd/\n4º\Z-þúj{ô\rõ4ñð0h¢þ(h¢54ù\Â4\ålú±}4}\ïhÆ¥4{:\04\'ºú=\Óú\Ã\ÎýµŸ¯\Ë1¯#ž¯üVM	V}º¼\Åô X3\È¬™´¬­T\r\Öñð\ë$\ÈÁ:·ÁÛŒ[Á\Û[‚·}[\0o/\n\0\ë À>`ƒþ°\×l|´l¸¼û\Z\Z¼û¶¼û\îðž+OÀ{füÁ&\nA\àý¿\Ä`‹“‹`‹q{ð+\Ñ\à\Ã\Þ÷ÀVw\ìÁ\Ö/ð`[\Ãn°mþØ¶\ç\Ø.¦||\Ã=ðqÀð‰gB°Ã•B°C\ì81\0>iH;m€O	a`\×\Ü`7\Ü[°{\ì2\Ø\Ãñ;\Ø\ã¹2øÌ­`¯¼X°\×\Ø\çR\Ø\×5\ìK*û> ‚Ïºý\ïÌ‚ý\'ýÀAY­\à \Ê^p\Ðh\n8\ä}	84o\æ—/UGz\0Á—\ÝÏ‚£ü€cN×€cðŽ\àXo*8ŽœŽ\ßF\'Zÿ\0\'¹~_kf“—>ƒSÀi§d\à4ºøQ¾ñCœ~\ë\n8£J|óú8ûø?ð\í”m\à\\\ä,8·¹|w~+.VBÀ 08\é^CgÀ\Ð|º\n†®€QGö‚Q\Ö3`\Ô}F\×;ƒ±s¯Àø©0\áZ,˜\ä’&[º\Éýù`Šg\Z˜\Âü¦\ê2À´²«`ú\Ù=`:¨\Z\ÌØª\æ˜\Þ\0sÌ­À\Ü\í`þžÿ°¸`AX\êi\0–-%ƒ\åjn\à{­ÿÀ÷Ÿ®\ç[<nH:l\ÑÁe©\Ñ\à²[À\å*\ã\à‡y\àG_<ÀŠTp…h\0\\|\\\åHWÇ¶‚«§!\à\Ç8øi$üT¾\0n²xn: \0?Ù›­€›¡`p3³\0\ÜúT\Üú\rn\Ëk\0¿”\ß¿RQ\0w<Œw\Ì@ÁZ»À:A\à\×IÁo5\î€?x‰Á\à[Á\á\àOÊ‘\à>x\n¸O\îWX÷«½\\º¸¹<\Øz³ü\åüxd3<¢-`mÁ£›\æÁ£\È.ð\Økx\\Cžˆ_Or.ƒ\'_÷ƒlO÷zƒg\çÀ³ƒÁ³\á¹\àY\Ñ9ð\Ïx\íž¯:þ¥öü‹\Ûþ•/\Æi€ß€€—×šÁ‰Ÿ!\ëÞBL$E…yˆ\"»¢XÅƒ¬?\Ù\Ù0i	Q¶üÙœ‰‚l®\ÜQcMC¶ƒ¨›}„¨\'/A\Ô\Å`\È\Öw‹õ\Í;úM±2D»õ;DÇ±¢Ë¼\Ñ[?\Ñ3¨…\è<\ÑwÉ„\è\Ç÷C\Òu †»V {¶®ƒ\ì\é†ALœ\Ü {¿CL\ï-Böm?	1GC,^¾‚ú±\Ü\0XöGAÏ¸C¬6‡=9Z=±nQ\Ø$)AlC- ¶‚ˆ}\ê\äx\ÚÈ‰Gg!\Î÷j!n{÷\Ð\Zˆ{=\Ä#|\0â«œ±C\Ît‡A\ÎLtB¼lý ^¨\ï’\"ˆFña©@|3Œ!þ•HÀ›\\H\à^2$\å	\Ê)†\\2Žƒ\\JC.ýˆ‡DôI!‘_k —\Í?C®„´@¢;-!qkF„¨0HÂ•„kº¤%9\äZözÈµŠy\Èuƒq\ÈuHZ\Õ6È !\ä\ß\n’	¥C2r 7\ã!Y\Õ Y3¾ìŠ­\ÜqHNk8\äv«\äv?rg;\n’«ý’\ë\á\É-y\ÉÛ¦\ÉC¿‡\0N@€£µ	ˆ…@\È`Ú²ÿlA;¿†`e\ì\ïsü\Þ!xôCˆ#ñ\ç(„Tl!7@¨\nKªA,„úL¡y\åAh‘§ t\Å!\ãøOƒr\Âj~	a\ßA\Ø	›\á\È\ÎA8£ ¼*DÀ^„ˆ´f \"§\Zˆ42\"ýû\"3¼	‘¿¿¹y°‚\ä\Ç# ù=\Ç!ED1¤\Ø\ã¤dRš¶Rfyò\ÈXy\Ä6‚\Ôl€Ô¼þ©µ÷„\Ô\Ò#!µ\r>\Ú	\n¤®\Íò¸½ò\Äi¼x\nÒ”V	yŽR€¼°I‡´\èXAZW!­\Ïÿ@Z;\ï@^\í\'A^‰{ ]\ÒHW/ò¾ò.\éan„|jS€|ú—	\éÕ£@z}4 ½OAúŒ!>Ÿ\\H_\Ò÷°\Òÿ¹2\ÐU	\Úù2Ô‘Noƒ|9/†L\n=!“ß“ ?´: ?B.@f~\êCæš s«\"\ÈO\ßMŸ³My[m\Èü\ê\"\ä¹ò;y/\äwýmÈŸá“¥œ\åõé¿‰q¿?r ÿ¢\ã!«>d\Í\ï\nTq\Ý/\èúJu\èF\ÙT…PU[‡ª­O€ª\áy\Ð-™¡\êG@\Õkc š‰»¡\Ú\Z\ÙPm-$T»›\Õ£A·\íQ€n÷ª\ëñº\ã—1T_\å\"t§itç›«\Ð]°H¨Ab	\Ô5\Ù59„špwB÷†ºAM< ¦\Øè¾£ý\Ðý\Ö¨…\Å9¨-jÑ„8~zð\Ì=\è!\×\è!¿\è¡ô°=jEp‚Z\Ñs GlÐ£»ÁP\ë‡-P\ëo‹P\ë\ßP³dè±ŸiP;‹7P;\Ú \Ô~½7\Ôa—\Ô!,	\ê\Ò	u½:Uü†:o>uÖºu=¼\nuvºÆ»C]‹í §\Í\ÏAOúu\Ûauÿ¨õ\èð†zn|õT#BÏ°”¡Þ±\'¡¾\ãP¿´CP?.\êW‚ú;›@dnÐ½%\Ðs\Ú=\Ðs¦ \ç¯CÃ´·@\ÃA/]J„^þ¯¿(\Âôª\çwh\ç-4!šMò¹Mú~z]óôz4š¢?Mõ.‚¦~r¦¶Coøj@3R´ ™\è[Ð›\'b Y[j¡·.ÿ…\Þ\Êþ\Íy¿½½;8¹iAA\ÐýPp\nIj†\Âö¸Aaÿ­\Â\ÎŠl‚b\Ý ø+PB\å(\Ù¥\ì¿¥\âZ¡Ô·:P\ê´.”32\\‚²¶œ…²t‹¡¬?@(§Ž\åŒß€r÷ƒ <\ã\ÝPI*Ô«ƒ\nr¨\èüO¨x*\r*Q*‡JnhA¥oiP9¦zòšÿð.´È´Z\Z\â-}m\r}¸±úùZ\áµ­\ÒC«2hU´Z+	Z£­=±­\å` u\Æþ\ÐÇˆF\è\ã5ôÉ–\×\Ð\'\Õó\Ð\'Ÿ„\ÐúŽ&\è\Ós\ÐFm´\ÑB\0m\\†>ƒv@Ÿ¯\Ù@[´|þ\ÛZò -\á\Ê\ÐVy\r´µ4\Ú:½Úº²\Úö4\Ú\Ö\rmÿ=}9\å}µ}ô•X\í8\ß\r}gÇ‡ö\Ä_‚öd\í€~ò…~jÿ\ní½ªˆ{\r<²:¤¡bÜ‚cœ \Ãow@G #\Ôq\èˆ\Ü:\Zh\r6‚Ž.ˆ¡ce\èX	ú5\ì1tb:y\r–XBgbÿB\çžüƒ\Î\rúB‡zB÷\çC¯e@—f=¡+\ì\èZ]t­c¦\àµ¦t¦¦\ä¥[¯[¯w¶¡òlcžl#s¶i\ï\'˜J\Æ^\Ø\æ¶C°\Í+\Ñ0\Õ\Í\Ù0µm/`jÏ˜0µ\æqØ–d0lK)¶\åñL=U¦Nø	Ó¹“\ÓU˜‚\í?†\í(ý\Û1>3°+‡”‰a{¶mƒ\í!a&Ž\n0\ÓÛª°}s\Þ0ó\×a\æG)0ó¤6˜ù5\Ö\êa\æ™°ƒ\ì`\ï,\ì\Ð,vh%vX³bÜ‡Y\'ž€s0„\Ù\Éôaö7ra\'Ž\ÖÁ\×;ÀS’aN\Þoa§.`®û^\Â\Î$À\Î|€yÿ€ùÁ^À\ÓaA™s° \Âß°`x=\ì§Z5;·vA¡\Þ4‹\Â\"k\'aÑ‚û°˜M—`16°« X¬ž,Ž¬‹+³…\ÅUƒ`q³XXü\íyXüüCXü²–(#À’´W`I§$°¤n ,\Õ –\Þ\ËðYƒe\Ô\Ãa7eÊ°¬æ°¬\n°¬4,;B–³§–û­\r YÁ gÿ\Âà¿œ`G-‚G†!¦\Òa¨\Ï.0\Ô÷<ú…g\ë\Ãe*\Ãù\ça„\ïa0\Â?%	óFVq†‘“nÀ\È9\ëa\äú9%­F\Û\êclûc\ÖÁ\Ü\Z£WÆ¤j\ÂX\çô`\ì\Ä{0öws×¸\r\ÆÅ»Áx\Ë0¾FŒ¯c” `‚\Þs0Ár/L¨u&šòƒIF00iuL¶\îLæ‹†É¿¿„\ÝS^†\Ý\×K„\å¿†\å;}‚Ø‡\Ã\nŸ„À\Ê\æFa­\íaðŠ°\n7eXÕ§°\Z\ã.X]ú\ì1«ð\0\Ö±\r\Ö‹5\åNÂš R\Ø3»n\Øss¬\Ù~¬ù6\Ö<À‚½T\Û	{io{y/\Ö1ôÖ½û \ì\r{7\ì½#ö>\Ù\ÖS…}¨~û\è\Ù\nû¤\ë³,‡}Þ¾ûœs6|\çlTý\'l\ì_8l|\ËO\Ø\Äl2·6•7\0û!‚Â¦wö\Ãf\\½`3\Ðj\Ø\ì‚lN\Ùös°\r¶`„ýzq\Z¶xV\rö\Û0öû\Ýi\Ø\ß;•°•OØ¿ð\ØZyl­¡¾\ÎX¾\Îw®”_?·W\Þl\ßD\Ý\ßr\á\\s\n\×\\›k9	\×5+ƒ\ë†[\ÃwœŠ\ëûÞ…\ï¼ü\nn\à’74Á6$Á<\á»\ìà»ƒl\á{Á÷Ž\\†›*\äÀ÷\Ål‚\ïk„›=?7\ë¿\r7\ÇS\á\ÞX\Â\ÌÀr\Ó\á‡\í\ßÀ\Ç_„\îÌ‚~\í·²=·š\Ø?²ñ\ÜZ¬·±º?V\è·k·\àö\áö³pG|¸\Óö¸S\×9¸{\èÜ½·\îv\î\â÷¦nû\ì„Á}ŽƒûdNÀÏ¾«‚Œ\à:w\áA™ð/<ôˆüB1~‘•¿X2\0¿\Øþvþ\r<,\Ú	¾\á<\ê@&üÊ‚üj\å	x\Âaøµ£w\à\Éz?\à)\Ë%ð4<\Íož\ÞË…g¾\Û¿‰u‡gù^…\ßò¾\0\ÏfK\à\Ù÷¢\à·sZ\à¹wx\î½+ð<\àcø\Ý\ÑT8€¸¦\çÀÁ›/\ÃÁ¿OÁa!¿\àˆ\Ý 8òcù¹ŽŽ”\Ã\Ñû\à»$8v÷—¿\ÇGßƒ\ã±pü»8ñ»N:…‡“xFp\Ò\0N±j€3úM\à¼02\\&†\çðp\á¯¸9\0—Ø…\Â\å\×\Ã\å,c¸\\\Ôðkž¯\ÏgÁll\á\Z\à\Å9ð\âÅ‹ðv:¼\äW¼œû^y\å¼Zt^\ã¾þ8÷!¼^\Ñþô\ÞDX‚7\ßø19\no9†·\Ü\Â\Û\Z’\à\íf¯\á/W‡\á]\åŸ\á\ÝOÀ\ß8¡\áoÊŠ\ào¾ú\Â\ß\Þ \Ãß‰*\á\ïšó\à=›\à÷§Á?\Ê,\á½u.ð¾<|¨\é(|Ø‘ÁG~^~ì„½\Úÿúù>|ü÷\Züû\ávø\ä>*|ò\ÄIøT±\'|Z÷|f8>³z>{p>Zÿ\Ô\Þÿ¹\Í¾\Ðÿþ\Ëö ü÷\ÕpøŸÿ\êjyŽXwt¡£ƒP\ÔPG(:ÿF(û\ë/\è!\Ö\ßqBl¸hƒ\ØKA¨¢n\"\Ô0\ë\ê’\ê\Zl\'„&\Ï¡ù1¡£ŠBl{Ðƒ\Øl\Ø\Þ|¡‹©@\è™L!ôÂ¢z\á—úŠ½ˆ›¿!v¹|B\ì’ú!v5\Ô#œ¥ƒªX„¡õn„q¯=\ÂxB±\'ª\0±‡…0¹‰C\ì­|Š0µ³A˜½º…Ø½0_~ˆ°p!È¶ ,mHˆ\ÃjIˆ\ÃZQˆ#O Ž\Õ#Ž6W#¬DXƒ\Í\ÖDmÄ‰ó¯‘\ï\Ø\r\Ç\ç›\'K„\'Ÿi„óñ)„\ë)g„kN\n\ât;\áy\Õq\ÆŠ8Bx\éó¾„oñv„\ïo\â¬\ë#„ÿ¶mˆ€•*D\àa.\"ð\èID\ÕuDP\ÑDpX\"D#q.¾ª\Ã@„\æB„N\é .ToE\\¼\ÌD\\”Ba^\îˆ0Œ\0V¾¾‰Ž?¨„¸ôŠˆóBÄœˆC\Ä\ÄX#®žC\Ä\îIE\ÄE\ä \âòñ\ç‰f¦ˆD\ï.D\â\ØiDe\nqÝ§\Z‘¼g‘²%‘–ŸH\ç#\Ò\áˆ\×qDF‘q\î\n\"³L\rq\Óø=\â&\Ã‘\å¿\r‘u7q\Ë\è<\"\ç‘\ëÁF\äY_B\ä\á\Íy#Eˆ»wS\Zw¹)`|x\Ë­G€f#À\×UP\å«øn6q*:t?E\Z¬Dù_E8† ò\áš\Â~m\×]ðÁ<\\†`2¯#X§\Ü¬È¿N\ç?ƒn9ƒQ\â7¦©š\ZBšHFHK¿!\äž*ˆ{\Â÷K:\äº\Ò…þIˆBˆ¢ðg.¢\èñD\Ñ\ZQm„(~=(h#J~†!J!pDYœ&¢<¡\0Q^„xXp\nQyªñ˜¨ˆx\\vñø‡ñ\ä…ñdrñTy\Ñx \r\ÑXõ\Ñ\ØHG4~‹E4\å#š~; že Ïˆ™ˆf¬¢\Õ|/¢\íx¢\ïŠ\è0m@tl@tß©Et\ã%ˆ·gôoI:ˆ·«\Û=û\ï!zJ\Ã=‹0\ÄÄ‡\ÈýˆO\äˆ¾{0\Äg\ß/ˆµe\ÄP1ŒYB¿@Œ(\à£+)ˆ¯‰«ˆq³Ä¸\Í/\Äxñ\Ý˜šÚø1¯ƒ˜=\ÏE\Ì>­A\Ì]ôG\ÌGu#\æ\ë>!~M»#~;‡\"–\Ô\r¿Bÿ\ìÿ\Â%ˆ\Õ¿k_k—¦\ë›A\ÈõÿôNœC*¯KAn<©\ÚÕ†T\ÓEªM ·@\Ï\"\ÕUš‘ê«¡È­ŠÇÚ‘ÿ\é{†\Ô1ÜŒ\ÔD\î\Ú‹4LX‡4Œ!k#÷,@&t,Ò¤E†Ü»•€4\Õ>Ž4o=Œ<”=Š<¢!D\ìD\Õ\ÐAZ«K6MµH»‡sHûÇ­\È\ã-¤ƒ\Ð\0\é\Ô\é¼%éª‘‚<­\ì…ô\ÜX‚<ó\'\é\åB@zù˜!½þ.#½\Ûb¾ûl‘¾l¤\ïRò¬2°ñ2 €˜€!C£42Èª\äùµZüy~\Â\ny1\îòbV12\ì\ãF\ä¥+\á\ÈK·\È…d\Ä\ìcd~\Åg!¯_ ¯,9 czqs,d\Â\Ã\È\Ä\âTd\Òyò\Ú\Û]\È\ë 3\Èdôd\Êt62ug,25‹L»9ŽL+ù€¼!ý„¼\ÑGf¾\Ã#o\Z«\"³Ž¯Gf5^E\ÞN2A\Þ\ÙC\æ\ÞvGæ­—\"Y×@F†tDÂ˜û0\Éc$\Ü3‰Ø¹ŠDv ƒ‡‘H»)$2\Ë‰f\\C\â\ÜÕø¢5$\át’\Ðßƒ$•r‘\ä[‘”½Û‘\Ôk\íHÚž$-\î2’žc†dÔŒ#\Ù9¯œo-H^\æ’\'\rFò•l‘‚cP¤\àf=R0y)\ä>AŠ¿!Ep4R„»€—ú\Ï¤ø\Ù\"R\Ü+FJ_B\Ê©!eI±H/)ÿd‡¼’…|p|ù€xY°\ï ²\àT²\03„,h@!Vi\È\Â\ÈxdQ”YµY\ÌhE–hú \ËvN \Ë\"úrô‘•Y‘UI—‘U¿#«\Ù\È\êø\Û\Èj`²ºY\çb‹¬c\Æ#\ã\Þ#\ëÐ\rcRd\ÓU&òY\ä-\ä³\ØN\äóŸ\Ï]Æ\ÏA†È–\Ó\rÈ¶›3\Èvc)²}\îò%\Ôù\n’\ì8òùZgò5¥\Ù\Åyˆ\ìz†Ev+Bo«o\Û÷#\ß,#\ßýWó\ï±ÿ\ï¿\Ô!{\î!Ÿ\È?½\çG}¯¿6\"‡¯nB~\ÓóG~;=‹œXÜœ\ÛOFþl& \çga\È\Å\çQ\È?-uÈ¥}zÈ¥?\är–rùžò¯®\'òož*rm\Ä¥´p¥KF©´Œ¢TMO¡TL¢T\Ï5¢¶\Â&Q[\Ç`(\Íõ(\ÍûGQZ{!(­7j¨\í\Æ\ê¨\í=6(\Ý\ÌÔŽ\Æ\Ó(ýÚ‹¨5Q†Žž(£ó(\ã–Ý¨=!ŸQ{·P{ý\ÇQ{‡¬PûNÔ öÁ(3\Î\Ô~{j?\Z„\Ú?¶e\áõ\Zu°\î\0\ê\à{M”\åu\'”\ÕøI”Õ¯c¨#]¨£s‘(k‹\×(\ë‹X”MñÔ±|”­\ä/Ê¶a+\Ê\Þ;u|\ã\êDK\êd\Ï8Ê¹ü\ê\í\Ê\åd-\Êe\à\0\Ê^€r\ìD¹‡\æ£\ÜpPžF;Q^\ÒV”Ïºe\Ô\Ù-E¨³K\ÛPþ\ê\\T@\ÝT\à>KT\Ð5TP\î8*\Ø\ä*\Ø\â	*ô4ºªŒ:¿\í\n\êBG,*lvuIŠ<úu%\0º\"Â b¼†PW3mPñûw \âF\Å?Ç¡z\è¨$ß«¨¤©0\ÔuÇ¨\äk9¨\áWP7ù \Ò_(¢2L\ÝQ™¯£2\Ç\\Q\Ù\ï\ä¨ù\ê\ÎùXÔDKÔ\Ô÷¨\Ü_•¨¼m j€û @…\n(pôMx‚€‚Ö¿EA_¼DÁÓ¯¢†\Ö(ä››(Ô¡z\Z;ƒ\ÂJ®¢(Š(Ê\0E5¯D1zx(6¬\Å1(@q‡Q¼\à7(¾¡ŠO\×E	­C	JQ\"\ê$J¬ù%\é{„’&\ËQ\Ò\î\ë(i¿%J®[…º\ç @Ý»ÔŒº¤„z@/B\Îj¢Š¯:£J\Ö\ß@•\Ø&£J7£\Ê(¨²‰¨‡\Ò\"Ô£\çÖ¨J«T\åý2T\åt0ª\Ú>UP€ªn\n@\ÕlþŒz¼\æˆz\".C\Õ_”¡\ê\ãP\rðhT\ãu¨Æ‚xTc¡)ªyñ\ê\Åª¥\ê\0ª-¨Õ¶ü\Õ€£^>\Ë@u¸N :žŽ£:\Ãß ^{½C½¾\ê‹\ê\ÚÜˆ\êzöõ\æn\ê\íˆ\Z\êƒg/\ê\ãû#¨PŸ\ÏQ}.¢ú†D¨\Å$\Ô\àV9\ê\ZM[A?@M\0¯¢&Ý­Q“´¨©“Q¨©G\"\ÔT\×ÔŒ\Þ]\ÔO·u¨y\Òn\Ô\Âò\Ô/\å=¨_y2\Ô\ïº.Ô’\ã\"jù°õwû>\Ô_ô\ê/±µ²)µ²f‚Z[pE+½\\Vú\ãÞ¨v½©U½iõ+zó™Iô–z,Z\ÝH	­\î\\ƒVod£5ò\'\Ñ\Z­hM.Z³\É­ù‡ÖŽBkCþ µ\Ë\Ñ\Ûb\0h\Ý\Ï\Û\Ð;\ØôŽ9+´^­G\ïL\ÑE\ïR®GÄ§ \rÞ¾B¦8¡<&\ÑF\É\Ê\èÝ°rôž*\Ú4\Ñ½/1\r½o­m&¿ÞŸ2ˆ>h±mœ…¶zÞ‹¶\î~‹>\æFEû&C;¹¢Ž‰\Ñ\'‡\Ñ\'\'F\ÐN–Q\èSQ™h—KhWû\ç\èÓ±R´›B?\ÚýJ9\Ú#ƒ>“·Šöª\ZB{—Ú£}Â•Ñ¾F.h¿´_Eú¬E\Ú;\n~8ü$ú‹iªDŸ[Ú‰\Ý;‚]>€¾`G_ˆ¢/\Ä.£/,‡£/ú¨£/f[ Ã‚û\Ð\á6ý\èK&\èKtÄ¬ú²?}9²}¼}y©\0%¿ƒŽV¢c\î ¯\ê_F_-ÿ€ŽMy‚Ž]þ…ŽS\ÉD\Ç\ßA£¼¢M¾£¯]i@\';‹\Ð\É\ÑG\Ñ\É\×\è”ßŽ\è\ÔÕ·\è4ÿZtZE4:môú\Æ±™\Î8\Z†Î„}F\ßt*Aß¤/£o>ƒ£oØ‚\ÎþŠA\çlÞmG-2\Ð@K\ZÔœŽ§×¢Á\ÜD4¤¿\rõD\Ãyû\ÐðÁ“h\ä•óh\ä\íb4*–…FÕ—£Ñ‡£1\Çþ¡1h¬\ÝI4®Y\çžG“ \ÉÆšh\n§\nMyæ‚¦Ã»\Ð,\æ{4\ë¡\Í¡\Ù\Ð\"4G\åšs±Í¹\ì„\æ½SCó·mG÷¡\Å\'«\Ñ\âR´x\Ä-©*CK·¥ ¥/\è{’Ð…ñ<t±]‚\ÓC—m\0¢\Ë\Ðc\èòM\Û\Ð\å{³\Ð\åfs\èGû\Ì\Ñ×¬\Ñ\ÕÔ­\è\ê\rtM\Î&tm]÷€~¢÷]ÜŽn\Ôÿ\ÏÝ„”¡Ÿ%¾G?»\æŽ~vg\0ý¬j\Ý,UA7Û~a³	ý\Â\î!ºjnE,£Û¾ù¡;C\ÊÐ¯Ež\èn¥{\è7—\Ñoµ&\Ñ\ï“\é\èžû\è\Ë\è\Þ\ètÿñAô@—+zð\Z=Túýesú\Ë\îô÷ zÔ°	ýõª1z\\¯=\î5ˆþ–\ÄB­EOš|@Oþ´BO®ýCOÿ1F\ÏXŸEÏ¼T@\Ï\Æ;¢\çŽ>Aÿ\Ü?€^8ÔŽ^LE/DF¢\ê?¡i,¢\ÈÑ¿/r\ÐKž§\Ñ\Ë\Ð+\ÌŒB«F\áG6FIõ)f½i+fc\Ûf\ãH>f[ŠQŸÀ¨1\Îa\Ô]‚1[Ûº1[»\ï`4\íµ0ZÇ£0Ú¯M1:3$Œ®fGðcŒ^¨5F\Ãf\ç\æÌ®ð*Ì®›\æ˜]\Ìo\ãkÓµx\Ì>\Õ5ŒYE+\Æ\\1s@Ð…±\åc_>‹±jÚ‰9‚ó\Ã\éž\ÅX³\Ék©;Æ¦Yc{¾c{cg2‡±_ù€9þ´ã °\ã@\ÒÀœLõÅœ:º\ã:q½q»ŒqÏb<v\æ`<üV0\ç\Ê0g¦·c¼\æb|ž9`|ÿ`ü1þH_LÀP.&P\Ê\Ã~\È\Ã7\Ä:`‚7+cBÔ¯aB\Þ\äc\Î\émÅ„2h˜ó\Z™˜m˜°ŽbLØŒ1\æRm(&B©s\Åý\n&zû2&v²Wµ“¸~&ñ\ÓL’¡&¹ö&\Åþ&õr&5I3z‰IÁ¤›—b2ô_c2\ÕNb20™¥‡1·\0L¶6“üŠ\ìÂ€\íu1ñý\È\ß@Œ|)\ÇÀ+|0ˆHrýI²?ƒu\Ä`+\Þbð\Ü\ß¯\0C½\ÅPo\Õah\éz\É)\ã÷“.Ä°\ru0l®3†\Ýq\Ã5p\Çð0B¦6FL+\ÂH\âf0\ÒÁEŒl\×1Ì½\ì;˜û+É˜×®`0»1*˜‚\'LIº%¦´ð¦\Ì.S®˜y´\ÆTœ	\ÂTÝ±\ÂT\ï±ÁTw´cj\å˜:\ë\ÌS\Ï˜§I˜\æ3\×1\ÍUPÌ‹\íS˜V\ÓLkûUL;ró’ôóJ\Ù\ró\ê\Ý#LG©¦s%\Óå¡ƒ\éz^Œ\éNÙ€\é.À¼©\ìÃ¼ë¾y7ß‹\éyõó±¡óñ«¦·\í¦o)Ó¡búÙ˜þ\ÂM˜\ÏC9˜¡ke˜/‰0#;ú0£s©˜¯¸\0\Ì7Qf\â*3ñœƒùÖ†ùþ\ë$fjƒ3u%3\Å!a~q˜\é«|\Ì\ÌEg\Ì\ì9%\ÌÜ˜.\æ§v:\æ\çí·˜Ÿ²k˜ùõÁ˜ynf^Á,½ƒù¥>†ùeI\Ä,\ÆOcþœ˜\Ã,\raþ\Zc0³1+Gl0ÿ¢!˜ÿ”0kS\ë±\ë¤G°\n¯±Š\ÇwaCj±Š¿ža•X\ï±\ë=Æ°\ëa\Ê\Ø\r]7±–Œ±*ûô°›]\ÞcU\Í°ª\0K¬j­v\Ë\ç¬v\Ì6¬vö4V\Ç\àV‡ð\r»-\ív{\ã7¬®5«\Í\Â\êö…cu¿\Å\ê\åüÁ\êÁ¼±;öbwy\Æ`wµ\Þ\Ã\Z<\n\Æ\Zj¬`w\Ç±{>~Äš„\ë`M>·c÷.½\Ç\îû¾k¦\ï5{»€5\ëßˆ5ÿ\\ƒ=tòö\Ék™ë€µºñ{ô\Ý4Ö–\Å\Å\Ú\ß\Ã\Ú>ÝƒµKð\Æ\ÚoH\Ä¯l\ÃŸ\ÕÆžðŸÁžHHÃžX)\Ä:„™`À½X\Ç\ØT¬#A„u6vÆºŒb\ÝÎ„`\Ý7(b=\rwc½zš±¾Ûª±¾?€Ø³NØ³Ø³E0¬ÿ±6lP\ÎlP›=6x¥šƒ\rac/\Ìc/†$`\Ã6b\ÃF»°aó\Ã\ØH˜*6r\Þ{y]8ör\äyl”\Ézl¶]×nž\Ç\Æðf°±´_\Ø$[lù)6i®{\í¼769$›üþ\"6\ÍC{#ô&6C.ÀfZþÁfú¼\Å\Þüh„\Í\ZØŒ½•\0\Ç\Þúp{\Û\ê67¥›\Ë\\\ÃD:X ù{,ÐŽƒ\Õ{c![V±ð\É`,b\å7i#Â¢?þÄ¢®a±w%X\\\Âa,xKðo\Å›\"°d;,§‹¥w\Û`\Ä6,\ãY–i£‡\å\Ô÷`y\Ú\ZX¾\çW¬ðXVx\Ý+ü†•œY•©\ï\Æ\ÊñŠ\Øû»®b\ï?¨\Ç>P_\Æ>Y‡-;Š-[sÁ–\ÛecfLbµ\ï\Æ>zS‡­TLÁV\ê.c«2\ßa«\Ö\Øj«Øšª\ÓØºbl]n¶{[‡»‰­{í€­›üŠ}ü\èöÉ»+\Øúü\Ø\Æ3±1tlÓ¡\0l“¿öUˆ}6ªû\ßj‚°\ÍE\ë±-©LlK\ÉlK\Ë\n¶\rÞƒ\í\ÌÜ„}­\í‰}·»ûž\î‡ý°?ûQ•Žý(˜\Æön-\Åö\Ý)\Æö}\Ç~\æGacG±\ÃúJØ‘\ïç±£û/üÿ\Û\ÒÑ¿&Ø±s<\ìX”-v\nfý±c\'v&\É\0;Ÿö»P7‰ý¼…ý•c\×)a—–³±\Ë{Ò±Ûž`ÿ¾\Í\Çþ\í\Åb×Š­p\n\ÐœB§xðn\Ã\Ó)œ²qn\ã\ÈKœŠh	§ºŒS]Å©mD\á\Ô÷¨\á\ÔOòq\ê^\Ù8\Ëe8\ÍS•8\Ío¿pZSqZŸ\átò¿\â¶õ\Õ\ãô¶›\ãôŒšqú¾Q¸]±,œÁvœG6\Î\æŒ3Ö\Ãö\ãŒo\æ\âv;\î\Æ\í)˜\Ä\í=‘„\Û\ÛÝŠ3M:‰Û§e‚\Û\Ïú†37z3>Œ;hÿw=‚;d>ˆ;\ä3‹;\Ï\Ã.½‡;\Âg\âŽ\î°\Æ=ôw\Ô=\nw4«gÍ¸„³\Ù`Œ³i³\Â\Ù>yŠ³ý\ÃÙ­_‡³Ë§\ãŽm\Ä\×\Ç9&v\ág5qN\âFÜ©G8\×i=\Ü\é}\ïp§\ãRpnº\é8w§%œ{^,\Î3\Ôw\æöAœWU7\Î\ë÷Î¯ý\î¬\âœ?¿p\î2.°f.\È÷\î\\¥%\îü=\î‚ö1\ÜEv8.\ìY!.¼¤þ‹_ÙŠ»Ô¾wµ\å‹»’ÿý ýlC\ÈÁ\ÅÿÀ%\Èsp	¯tqI÷®â®‘Fp\×ñp×Ÿ q\É\Æ÷q)jÞ¸ÔºÃ¸´+i¸\Ì\Æ¸›gšqY¸[{\Þ\ã²ÿ”\árJ\Zp¹¿7\âòV\à\0Á…8P‚©À!z3pH\ÕXr÷6\Êþ$=S„\Ã?ã°Œ`.\æWo‡ÃŸ¼‡#œn\Å¢}p„¯\Î8¢¦ŽØž#\îÂ‘>d\àÈ´\Z\Í\ÏG*ÀqŽ\ã8D§§\ÇK¿Œ\ãÃ±8Á]œ\ÐûN(1Ä‰u…8ñ•w8™Hˆ“\Ûpd®¸\ÂX.®8ƒ„+qÁ•\Æ\Ï\àJ¿\r\ãS\ÂU4k\á*õ\â*ŸNãªµh¸š¨\\ô*®v\ë*®–\Æ\Õþc\â\ê4p‡†pOþ\Ú\â\ê÷[\à\êo®\âžú}\Ä=MÀ\ážþ½Žk‹\Ä=;u÷‚\ï†k¹Õ„k™ôÂµª\ìÀµ}\îÅµÏp/]jq¯*n\â:®„\à^WŒ\â^ÿy‚\ë2S\Ãuù9\ã\Þ\éd\à\Þ?š\Ç}¨\Ã}Ü®‚\ë5|‚\ë-z‰\ë£&\áú\Üg\Ôo\Ü`+7`€&;â¾¤Šp#:0Ü˜l7\î\ë+\î[’?n¢…›¢Áýxq÷c\Ð7]«›~v73›)T\ÅÍ†u\â\æ?\'\á*Rq¿ö‘q¿Üªp¿~ô\ãýq¿Ç¸¸?\Z—pÄŽ¸?\ËOq\ßi\ãVõ\àþýW\Ëkùx\Å\Ñ\rx¥/¼²“¯œ\ß\ÈIÄ«¼†\áU7^Ã«>lÁoù\ãƒWÙƒßš}¿•½Š×¼\Ãk,\Åkú\ãµ6ý\Ç\ä^\ÛR¯\rú†\×9„\Ã\ë\Ø\Ç\ãuÜ¼ñ:)VxL^§\ê^·\×¿\ã\n~\ç‘sxC½<¼\áõ‡xÃŽh¼‘oœÖ7f=\Ã\ïyk„7	ø€7¹¢‚7i¼7¥f\âMkøxÓ§\Õx3\ìÞŒÁ›×\ãþ\á\á½³\Â[^³\Ä[¦qñ–€Rüa\ëx+\ÍGx\ÛMÁx\Û6W¼=’…?\Þ:Šw0ñ\Æ;D\ãa\Ûñ\'Y\âO\ÚU\âO^\ãvˆðN‹`¼ó;%ü©Àü)¤!\Þ\Å&\ï\Ú\ã†w«/\Å{ýH\Ä{›¬\á}³\âýž1ð~_?\àAðA”ø \Z\\D\Ã7}À·9\áƒ¼Ç‡O\â/®\ÜÁ‡k\è\âÃµN\á\ÃC\Zñ—\ÎÁð—\ÂZðEøH­=øHk|\ä\á	|TŸ7þJS4þJ»\r/\Ã\ÇD+â¯ºl\Å_}À\Ç\"\ã\ã›Uñ	wFñ	3­ø¤Û—ð\×Õ¿\áSµxø\Ìø\Ì,w|¦¨	øKû>[«Ÿm¥‹\Ï\Î\ZÀ\ç¬ÿÏ©\ão\Þ\Æß†·\à\ï\\Øˆ\Ï\Ý]Š\Ï=\Z‡\Ï3¾‰\Ïó®\Å\ç=¹Ž¿´÷µ¸û4©ÇƒN,à¡µúx\Øy\n¾\ç\îO\Ã#N\ã\ëx”\åC<:\ä\0«s›`\àñ¹\Çñ„0žðÀOXÞ‚\'F\å\ãI\Ì\ßxR\É8ž¦7§÷\Ú\á\Å<c\èž\Ùý\Ï\ÞÏŽœÀó7\Ù\ã….^X<Œ—ü{‰—2÷\á¥.x\é„*^†\"\â\åkü}\ä.|e_ðo3¾tý|yy4þa\í!ü£4\"¾\Âj_q\ã5¾2\Í_¹v_\ëþÿ¸!ÿ\äÿ4³\0\ßp\é\'¾\éÿluÿ\\ù\Z¾Y/\0ÿ\âò3|Û›q|û°?þU®\r¾{÷Gü\æü›ûoñ\ïð=\Î\æøO\á\×ðŸªøøÞ½-ø\Ïy\çðŸ\çã‡Ž\ÑñCnñø¡E{üˆòüX\æ ~Lþÿ•t?n\rÿ\r¸?\ÑjƒŸ,º„Ÿ\n(\ÂO•–\àœ¶\Å\Ï ~\âgD\ßð³oBðst	~a‡þ—“7þ\×\ÝOøEJ	þ·Ÿ6~\É\Ø¿ôYŒ_\ÕÀ\ãWO<Â¯^UÆ¯Ù„\à\×ü9Eš°þp6aý›v\Âú©6\Â&k!a<€°©\âAµ–NPG\ÔBþ4®…4 —Z\ÇC	ZIš­\'Ý„m\Ý\Âö§(\Â;‚^ù1‚^\ÍS‚þ¾J‚\á\ÎU\Â˜°§6”`\"v$\ì\åö	¦ö½L0û\É\'X\ì•,\Î= XÀ+ü\ç·	“\î>¿G8d3I8l&\"~\'^~D8\"¦Ž\Èj	6\ç:	\ÇT\ã¶6$‚ý\Üy\Â	c	ÁüŸ\ç#\'¼Á…¯Ip™œ\'¸\Þu#¸\ë\Üÿ•<\ÎBž\éQ¯§.¨/Á–Ið-\é!ø™¯§\ÙBP™!˜\ØJ~~‡ÜŸA}šG¸0\ãF“\á\å@Bä›»„\Ë;+	Wöµ¢›+	±\Þ|B,Nˆ=#\Äù1q.\âÚ·*\Ì‰£Ÿ×´š	\ÉL!Y®@H¡¸RÛŸR?\Ò\ì\Ó4.!«~+\á–\ÂBÎŽaBŽØ‹ó¾ƒ\Ó\ßF¸­\Ø@\È\ÝL¸\ëõ\0\ä\0\ã\à•Bp¦˜\0\ÂNÀD˜ó\0\ãP\Íótˆ€Ó‰&\à©h.#>V\ÈZ!²I W«( QeB@;ö€@+»K ¦\è_ô\ÙW†ö\ni´•À2\Ã\Ø}¶^ñ-¯Ä… ÈŽ\"HôxizAZœK¸·”D(ˆ\È#vrEn.„\âN„\â;Bi\é?B\éç»„2½u„r\ÈV\ÂC#9\á!šPÁŠ$Tv•#rBõ¹ÿD\èªŸ\ß TO>\'\Ôu\Ü„ºy,á‰‰\áIA\0\áI•/\á\Ép¡¡3‡ðœ\"!´0-—mù\Û	\í\Ê\ê„Wÿ\ÍÿÕ¯jB‡\Î,¡S\á+\áõr2\á\Íd2\á\í™^\Â\Û\æDBŸ¡ŸJHW!\æ8¾À®¾oFÌ¦	#w£9alw\n\á\ë\ÏÓ„ñ\Ì×„i„\é§ú„<a†\Ç%übGé£„?ù>„eÀ\á_\'”°6ó€¨À\Ð&*ýc\×Ò‰Ÿ—U¬+‰**D5\Ç\ÝD5^¢\Z¦¸e’ETßŸDTg•ÕŸœ&jô²ˆ\ZKûˆZkG‰\Úg†ˆº‡uCW‰º‰µD]¦„¨ûØ“¸CVJ\ÔË½E\Ô\ßnLÜµñq—–qW\Çc¢AÀs¢\áœq÷ô¢\ÉK\Ñtœhz}\Ñ,\ä\Ñ,J\Ü\ÑFÜ¿¬O4\Ç‰\æ\Í\áDó_§‰=\Zˆ‡<ž%\Ú-¡‰–R_¢•Áz\âŠ\ÑF™K´¥>#\ÚMí•–‰\Ç÷\Ú{›·¼\":šM¬t‰\În\ÄS£ID—\Ä&¢«\Î¢k\Þu¢k\É\Ñm}\ÑÝ¯†\èž{‡\è\Þqƒ\èqo?ñÌ¿!¢÷\ÊÑ·µŒxö]\Ñ\ß\î\Ñ?§ŽrÝ“2ŸI<÷A•ºÏš:­H<¯UO<oeA<_G\"^„ü%^¬zM\ë$F\\zKŒh\'FüI\'Fšm%F\íþF¼² \Æ\ä—¯ŠŒˆW[¬ˆñ®\Öû“8™\Äk:R\âµ\Õ(b\Ê\É6\âRb:ó1\Ãö\01£\é41ó°ñ\æEk\âÍ´<\â\Í)1+C¼õ·˜3ü™x»`˜x»k?ñö\×P\âm«\Ä;¹\Ý\Ä\\\ßb\ÞñGÄ»N»‰w‡@DÀ¶l\"D\ÔA„L\ì$B=\íˆ0§;Dñž\ÕDDð…Ddµ7\ÙPJDN\×ñZSDB´ˆH¨Y wI¹:Drl\"‘üv™H%\Ø6·ˆ\Ì\ÐD\æ£&\"ó5Š\Èn\Ã9z§‰\Û,¢ÀC•(\È#\nDÁ/¢ð\â¢ðkQr*‹(¹:G”fe»Ž\ïÝ$Þ“\î!\ÞwI$>\íìˆ±\Ä\n\ïÄŠebw±â‘”XQ\ÕL¬Ü–A¬Dvk\â¾k\Þ\Ä:£b\Ý%±A©˜\ØH\Z\'>×½N|\Þ\íAl6] ¶¨®[÷Q‰\íN±\Ä\Î\îj\âkMñõ\Évb\×=-b\×7Mb\×\Ô\Z±{:ñ¿&\â[ø¶{Š\Ø\Ã ~º\Ë%~zøØ·#‘\Øç»\ØWò…\Øª…Ø¿2Jül£A0M%©¤G\ì]ˆ£¾\Ç\êÿÇ§	\ÄÉ€\â\Ôñ‡Jq®pˆøs›q›LüUiFüõ;–¸Øˆ%þð%þF!ˆK[f‰Kv=Ä¥g†Ä¥•z\â2Î˜¸¼\ìNü»CD\\±±\"®œ?FR8\ØCRX­\')jPIŠ\×ôHJ÷×“\ÖGü$m8ªL\Úp@\Úx¿’´ñk*ióxIU\èIR;H\'©¹þ\"mY\ì!©34\Ô´|I\Ú%‰¤j(\Ò.6’d ®B28À$¥’\Æ$$\Ã\Ò$\Ã\Ê$c5*\Éøi	iw\å$\É$¶d\Ë ™SH¦5ƒ$3{\Él!›´÷Q\Ò~‡’ù\á«$ó¦$\ÔO’Å³aÒ\Õû¤ƒ9\ép\ØG’Õ¡\'¤#¸*\ÒQ;\0\é(õ\é\è\Ó$k¦\Éz­Œd³³št,\\‡d«L$\Ù\Ý+\"/ûN:ñB@:y}žtr\ä8\é\ä´>\É)8„\ä\Ì:Hr.À\\£\Ð$7m	É \Ñ\å’|>†“|\í¦H¾A$¿\Ä\Ò\Ùÿ\Æ\ì¿É‹ ðxÖŸœ¥E\n\Ñ\í!³#\ï\Ê&]\àóHubHa]\ÇH\á\ìH— ú¤K²qRd§3)\ê\í<)úŽ)\ÆB…tÕ”FºzÌû0€÷·\Ï<FJ\ì\ßMJ\êºFº\Æ~Dº^\åIºþ\"•tý»*)y[)U?Œ”¶\é\"\é\Æ …tò‰”Spžtû…/)o\Û0)/¤twýP\ï:	x\ê=	ˆùD&ßº“ ¾›Hp\Z	ýù	½œA\ÂVD“pUHøs½$R‰|»œD\Ý!\Ñjw‘\èEõ$fH‰\í§Db) q\Í\ÆIü¬0’@ÿ*I2úš$µ“\î¿xCz\à\àM*\0·“\n]²HE\ëI\ÅöûH%°AR)ö2©lg\r©<WƒôHº‡T‘>Eª¬\Ñ\"U/Iµ{ž\ê>\âH‘KD¤\'»ö’\êö\Zp±¤\ç¤\çC‹¤–­¤¶\ïn¤öƒL\Ò\Ë\r¤—y»H#é¤®¯xR\×\Â\ÒYÒ›\Ò¤7\r\ëHoWHoO™\Þe4\Þõÿ%õôˆInŸ\'}²ˆ#}º®Kú$\Ö%õÍ‘úko“>›<&\rl@‘Ü¯“d$\Ò@¾6i\Ðaž4ˆ$\r[‘Fc£Hc‡\\Ic—©¤±¨t\Ò×ºV\ÒøQ3\Ò÷My¤\É\ê¤\É~é‡§	i~GiþöižJZ\Ð\ÞEZ\È\ÜAú¥µ@ú§Cú·Mú7û´ºN…´–’NV^¤7\ß\Ð!«\Zü&«RDd5ŸOdˆd\íò¶²&ò¶·7Éº\ÓO\È;\Þ‘õ(d½N2Y\ßÀ¬\Î!\ïÜ¦L\ÞùÏ“lŒµ&\ï.³\"\ïn‰&\ïž’÷D:‘÷@pdTy\ïw-²\é¡U²Ym\Ù\äB6o\ÞM¶x©E>ø\é\ÙRŠ%þ\ÐK><\ÒM>f\Ì óV ƒ¾\"Ÿøpì˜‚ Ÿü1K>®@>E¼Avý½ƒ\ì\î\Î!»4Èž\Ëöd\Ï\Õ\ï\ä3—³\É\Þ\×\È~¾\ä³7\Éþ\Éþ_¡\ä€\0%rÀður…*94 ”|þ@-ùBö&r˜	’6w“~<Ÿ\"_I›%\Ç\Ô\È\ÉWþ‘¯h“c7G’cU·‘\ã/‘\ã5‚\Éñ\Ñ\äxor|šœ\àEN,úLN¬\É%_\Ó\É\×\Ê\Ô\É\×\'7““+\É\É}\á\ä´H9c’œ!\ß@\Î\Êö#\ßrª \ßz½DÎŽ™%\çj¸’ó4Î‘\ïzf\ï¾{F¾û¾šP\ÙMT‘Md¸\Íc2\â\Øu2\ÂmšŒ8·ƒŒä”\ÑM\ÑdÌ‰\çd\\¼#ŸK&˜y\É\å¿\È\ä¶P2\r…$\ÓO¾&\ÓE}dúò%2C¿‰\ÌT“™2ù’\Ì\\) ³\\\èd6&–\Ì@‘¹_“ù±d~ó%2L˜ü$…6dI\à^²ùˆ,yµ,õö$KÁ\ádÙ›cd¹òùÞŒ”|ÿ\É%rþ.	9È™\\p°ž\\bG.¨›\'ªÉ…*\ä\â\àJrI›\\\èG~ô¢‡\\\ÔH®\Ì\0“+{\ÈU¿†\É\ÕrMru£	ù	ež\Üp\á¹ñL6ù™rùy_\Z¹¹ÿ¹\åòKrKž-¹6In\ÝúŽ\Ü ¿T©!¿<I~\ëF~ù\ì ¹#ŸH~m3O~\ÝO~“”C~gM~7»‰üs–üi\Ý<ùSk¹÷E\n¹OIN\î[~H\îM&ú\ß&\ë×“‡-Ç¶¶’¿q\Ô\È!\Ó\ä‰\\4y\â—<u·ü\ãGyú\Î(yúŒ<ûZ<¯Hþ…\î /–Ç‘\×\ì\'ÿ™\0—ò\É¯j’Wÿ»9­{’JQ¨úAQ¤P”\ÍQ”žzQ”¦wQ\Ö/P”-T)›º‚(*Kcµ“õC\Ê\Ög7(\ZM\nm£ý”\í(º;R(;¬\Ð}»»”jó”S(»öøP\çRŒR—(F\äc\ãY>\Åx‰N1±\ÚM1»©@1››¦\ì?{‰b±ö–b¹\î\Åò\ÂŠe\Ö \Å\ëK9¼\äL9j I9jiK±Ž0£XS’(6^(6u\Ý›–iŠ\Í\ÚkŠm\Å;Šýš>\å¸V\Þ\ÞPŽ¿L 8h>¦8NZPNJ\Ü)N\r\É\ç\äu\çw/)§ôvS\\6I).µ&”\Óú¯(n0}Š{@\å\Ì\ÍÊ™§¿)>‡\ÎR|\Î$S|\ã(~¼‚ÿ´S\Î\Ì)g>Rƒ”ˆ8Jü8%4È†&ES\"´\Ü)‘”\ÈK…”È¤yJdû\Ê\åñJŒJ7%ff€r\Õ0ƒr5t’rõ\ß(%ñ\ÓyÊµ\ç\ß(Éc”e“”ô3J:LI¿O§Ü„NRr¾øSn\ß\í¥\Ü÷£\äkRî¦¨R\0²(\nÈ¦v5¦@l\Ç(\Ë]h\Ø7\nÌ“KAXS\ïM(\È^O\nŠœ‚ù\ÞHÁ‹bT9…8=@¡\èR(WŸP()\\\n51™B\Û~†B{™C¡_±£0T(Œ\Û_(\Ê\nc5‰ÂŠ}IaoW§°¥\ãö£\n\n{ŽN\á\î=D\áW)ü7w(‚©QŠÐ¼‘\"$¢ˆöS\Ä\á‡(\â›(b€\"\Ý=A‘:‘)r\áMÊƒ\ÕvJ¾\á_JÁ„*¥p\ZI)ŠeQŠ±”R¼¥li˜R\î\ëGy(³¥<\n8C©8hO©Ï¡T.n¥T·¸Qª‹)5&\í”\Ú\êJ\Ý\Î J]“\"å±½;\åq\ê6Ê“„5J}ù]J\ÃyJSJ\n¥©¬„òŒ\ïJy6²ò\ÜJi%ó)m\Z”vw*\å\å\ÚMJGþ[J§n¥\ÛÉòž¸\ÒÓµB\éYŒ¥|˜Í¢|\"\\¤|ZPz·‡SúvFPúh4\Ê\ç3»(Ÿ½I”ÁKŠ”Á\èU\Ê\í<Ê—}½”/\×Q¾LS(£\ç\å”\Ñ\Ôx\Ê\×[§(\ß {(\ß\n\ÎQ¾\ã\æ)“Nµ”\é]\ï(3)s\Ê|†ˆ²\ÐZEùµ\âOù}W•ò»<„òg\Ó)Ê’™*e‰OY\r¤¬½U¢*D7S–Ò©Š[†©Š\ïT¥#\Ô\rn\ÉÔh-ª\ÊVEª\ÊÁ\'\Ô\Í\'û©›ßŸ nƒPU}U¨j\Öû¨[§¨[dÔ­1¨š¥_©:-\ç©:/ù\Ô\í\nñ\Ô\í‡/S·çŸ¦\êž>I\ÝÁw£\ê5UPw*Ê©;oS©»ò¨†:›¨F\Ãc\Ô\Ý1\ç©{¾wS÷,¸S÷¬`¨{UvS\Í\ÆvP-¨v§R\íûHµ\Ü<O=L0¤öR­+Ì©6¯\ÏS\í6Š¨v~bª]\\\Õþ\Øz\êq\0õø³ª\Ã\Î?TG0\ÕqN\êd¿Fu\ÞÈ¦ž‚Q]¾A¨®»nROo¥P=l\ÎP=\nÀT)\Õ3ú\r\Õgd/Õ·ÿ+\Õ\ÏEõ[Š£ž\rM¢ú\ëo¥ú{ž¦ú{R6¨P5\Ô`Š\Z\\8L\r?L=b@=WM¡†-šQ/ms£F\ì?ArøJ½¢rˆ\Z½S\Z£Ì§\Æl£\Æ\ÄPc¨q\nó\Ôø\ç\Ôûj¢õ\Ú.}j²\ãajò;,5\Õjœš:IM‹Ñ¦fôúS3¦OQ318j&§ˆš9ô–zóZ\n5K+†še\'¢f¡Ê©Y\â\ãÔ¬û§¨Y?6So=ñ§\Þ\Z>M½µ¬E\Í~QM\Í\Ó, \æ½\ÇP\ïrs©\à\ÓiT(a\n3]¡Â’Ò¨°\Û\îTø\å£TL\Öe*¦ô»Í˜Š_J%\Þ\Z¤û©dU\r*9všJ!p©T •\ÂS™Ž*³g;••K\å #©\\\r8•\ïuƒ\Ê÷£\nŽYR³O¨\"\Õhª\ØñU\ìT@•™;P\å\ç;©÷œÔ©÷\È\Ë\Ô‡?Qº]¨…7.RA¨EF¨Å»*©%òC\Ô\Òµ,\åµ\"5›Z•YI­ñ¼O­;G§Ö·\í¡>½\ØLmÀVS-P›’±\Ô\ç3$js£µyRú\Â1ˆú\"²•\ÚÒžOmSž¤¶/R;P\á\ÔN\ÉK\ê\ëdSj—\çgj\×\0‡\Úí‚¦¾3ï¦¾{¯Fý ùšú\ážúgFý‡\ÚVO\í›0¡~¶®§~Ž¦ª\ÚQw;Qû§¨\Ã/\Å\Ô/Ÿô¨£\ä\êh[õ+\ã7u[D$\ÄQ§4\îSl¸Iý1\ÐIFm¥\Î=ù@]¨1£.\Þð¥þ&|¡þfþ£.¥•R—YG©\ÕxÔ•\åo\Ô¢C´uš4E\Ò$M)RHS]¤­o?F\ÛP˜N\ÛP¦O\ÛXð‹¶±\î\rM\åœ¦öÐ—¦VO\ÓØº@ÓŒÊ§i\Ê\Ó4;‚iZl]šö\à\Úv\Éš®`¶ccM\ïLM¿\ì	m—m\rm<…fh”D3?¡\í™\ÙO3\éô¢™\â\Âiû\Óö½I¤™y*\Òö7ž¥™i“•´a^´OWi\ã§i‡!Hš\Õ\Ö,šÕ¶c4«S4+*žfõ\ï/\Í\æ›\íUf«±f›=H³ûov4û}Ÿh\'¬\ÑN’i\'þÝ£9\ÚÐœƒ4\ç¸{4\ç\ÜQš«­/Íµñ\Íõµ1\íôS\ÚiûÃ´Ó‘i§_inÊ­4w(\Í}¶˜\æQ³…\æù£Œ\æ=±ž\æ·\î<\ÍoŒ@;{8™\æÿ…N\ì¦£ýh!–1´þZ¨\ÊZ\èž\Z\Úy\Ä$\í\Â\ÖBÚ…„L\Ú\ÌOÚ…ºC´‹\×kiC´‹\Å9´°Zx\Ñ(-Bk’“üŽƒŠ \Å|u¡\Å\ÞL \Åœ¦Å­ý£\Å \Å÷i‰zwiIû¾Ò’Ü¬iIœO´¤\'\0Úµ¨M´k±Oh\×Þ¬§¥\ÔÞ¢¥^½J\Ë@Ci™þ´,\ÍDZv®-[ø†v»¨†v\ÚJ\ËÝ‘J\Ë\Í\\G»‹P¤\Ý]\Æ\Ð@/­h\Ð\ìX\Z´»‹†H´¢!\Ê7\Ñƒ4\Z2œCC9í¢¡2h\è\Ð5\Z\Ö\ê\r\çû€†·¢\Òðø\\\ZÁ|7p\èôRŸF-ž¥Ñˆ4º“„\Æ\ì;I\ãX~ q-h¼\ÐXšð™&\\!\Ñ$f\Å4\ÙF!M¦¶‘V¤F+š\n¦•˜¦•\ï¤•g\Ñi\åeá´‡ªiljiU\Þ+´*úñVûSö8\á\íñ°œ\Ö5OkLœ£5Žl¡51ôh-UbZk´­-É™\ÖN9C{i£½,§½œ\ßN{X¤u,o§u–\Ñ^ø\Ó^Ÿ»I{})”öF;†öf8›ö\Ñd•ö\ÉCû\Ä\\£}š\Òúú}iýJ\ã´!g(md´‚6û‹6Vz„6\Ö}ƒöµ$–6^šIûöA›@®Ñ¾\Ë´\É\r\Ú\ÔU4\í\Ç<–6KT¡\ÍJüh³\ëhs\n´Ÿ\'hó%Ý´E÷T\Ú\ïâŸ´\ßKiµ/\Òþ\ê\ÐV^\Ï\Ñþ-u\ÒV³šikWºhk] \Ú\ÚL.}=ý	}Cƒ6}ÃŸ(úg,}kµ˜®qÍ€®©¿B\×tH£\ë \×Ñ·™\î¤oW÷¤\ëNº\Ðõ\ìR\é;\r=\èFDSºqU}Ÿ{}¿ùú~\Þ-ºE\Ògº…´~0\è4Ý’”F·:¹‘nõ ‹nó#”n§ŸJ·;¸“nWK·?XN·O¦\Û3\Ë\é÷\Ã\è\'™w\è\'§<\è®\ë€tW\âOú\é„9ºû\ÍEº;Ï‘\î¡ZI?³ù\Ý{\Ã[º\Ï\Ø\ÝWq\Ý\ÏÕœ~6)Ÿh\ÔFñ¢‡$N\ÓCF\è\çô¶\ÐC/\ï§_\ÐT¤_8B8O;\çM\Ë¥‡·\Õ\Ð/]§G\Ød\Ó//eÓ¯h>¡_	©¡_9WO¿ò\ê5=öJ=\îõEz¼u=r†ÿ[L¿]MO¶{NO¶o §\è3\é)ôI=¥\ï5=õD\"ý¦\Æ,ý¦®ý&ø6=\ë\ÐFú-\Ífú­ýöqeú\íMúmI=W°@Þ£ƒ\Þ&\Ñ!W\éÐ•:G\ÇDÞ¢c™It.†N<ô“NŒÏ¦“6¥SC\ï\Ñi•¯\éŒû\ntf¼¥¨Ogo\ØF\çø\Ó9\×*\è ‰\Î\Ý\îL\ç\íÌ£óN\Òù_\åt{+]¸{]”TN—\ìr¥K\É\é2/Eº\\\á-ýµ~_¡~\ß|œ~?ªž¤\çË›\èùu\Õô¢ƒ…ô\"˜\n½X=^\â‘H/§—³–\èS°ô\Ê\ïdz\Õn%zU\ï?z]¶%ý‰\â)úƒkô¦ý)ô\çEô\æTWzË®ôV=mzn½=!‚þj9ýgŠ\ÞùƒGò•þú\Ü½k/†þF¡‰þ6©þ\Îr†þ\Þp?ý\ã…yú§¯pz\ßFSú\çSôÏ¥Xú€?}\0\ÚE\Ö[¥	ˆ¡\×\ÒG\é#@ú\È/cú\ØfgúW­uô¯>\íô	ý;h3ýGõúôðAúŒ‡	}\æS4}ÎIŸû\âIŸ[n¥\Ï\ç/\Ñ€ú¯§\é¿C›é¿»{\éKO¯Ñ—C\è\ËU\ß\è+¹púÊƒNú¿X}¿‹¾*ë ¯~ë£¯\Î÷2@ †Â§†\Î\Ø\à\'cl¸u†¡¼û\0CyÐ“±‘2ÀØ”8\Ì\Øôœ\Ç\Ø\Ü\ÅPµµ`¨\ÈU‹¡fòŒ¡öÏŽ¡\Îk`¨eh\ìóbh\\ª`hð734;K\Ú\çŒm\Û2t\Óo3vL]`èµ°;µŒ‘;c»\0\"†%\Ã0w\×˜\Ó¦Ež\Ó_\ã³\îT\Æþ‡†9Z•a\Þ`\Ç8 ¸\Ä8 «fü®\Ì8d\Ë84Ì°Ü„fXò–Vå™Œ£JG	%\ë)› £›k\Ç\Ç\"l\Ç\ê®3\ìbvO÷3\ì\åúŒ\ãÁ*Œ\ã‡&\Ã1¨•qrT‰\áth\á\Ì\ß\Äp^›gœ2¨d¸úfœ~\Æp¾Áð\Ì~\ÍðD\àž$s†§ Œ\áùxž\áU¥\Ãðš,bx{2|.gøždœ•\Ø0üõÿ0œ„Œ\àF/Šj’qa5^šÊ¸tÃˆœG3.gÿdDY\ÜaD÷j2b\Ôþ2b“w2bsDŒ¤ð8F\Ò;cÆµ³ŒT\íŒ´\\F\Ú\È8#ý\Ù~Fú»+Œ›o0n\éžgd\ÒûO\ãŽO\"\ã#7ò#—yšq÷r\n¨\Äf€ñ?\ÆEÜ¯\Þ{ˆ}ø‹Ë™e™$i\ÇF9‚È þ»\Â`¸{3ytc…Á`º\Ýg0¯fp\Ó\\@ƒûc;ƒKeð\ïG3„C”²…!º‰dHÜ¡ù5S†ü\æ-†œšÆ¸¯l\Âx°\í:\ãÁ½Œü¯þŒv£`h£ø#›Q²¸™Qþ¸Šñ\è\ÑF¥²£Rÿ7£\êŽ£z„Q}‡È¨‰xË¨!\âu\×÷U3\ÓuõŠHF½\ßFýCF}û4£\ák\Z£q€\ÆhR.f4y\Ñ\Ï[Œ/h\ç­VÆŒ—Œ\í|F§’5£s›1\ãu´\ãõ÷LF·f-£›Ggtw2\Þ\èš0\Þ$3\ÞfY2\Þ\æ\ç1z@Œž?ÍŒ¾F\ßWF\ß\ÚV\Æ\çGSŒ\ÏñŒA;\Æ`—1¸²•1œûƒ1RfŒ\Ýa|;\Ò\Äøv#”ñ\íac\"šÈ˜X¾\Çø¾\ï+c’‚aL10¦\Ø\Æ,Î˜½a\Ì\ç\é3->0cÿ0Ss\ÎBKNŒƒ«Õ½\Ìuû™\ën™\ëšZ˜Šyw™Š˜X¦R ”©\Ôw–¹>\Ï\ÜPfn\è²f*+h0U<r˜*c]\Ì\Í3	L\róD¦&§©£xŸ¹\Ýh†©«t‚¹#ôS\ïH2sgA\ns\ç€¹+{Ó M‹iˆŠf\Z²1\rG&˜F¤X¦±Ø—¹\çòs\æž\ÞLS\á,Ó¬Ñš¹?I‹¹ù3\Ób\äóÀló\àL\ró0\á?\0¦¥\à9\Ó*¹™iõ»‡im¼\Ì<¦6\Î<fX\Âtºq—\é\Ô\Ý\Ët¶ù\Ë<5\ä\Èt9\Ât»ü•\éöùÓñ›\é\É)bžqšbžy\ë\Ìôþ÷…\é£ÀôÁ_b´\Ï0c™Œ\ÌÀWf]\ÄÙ¢\Ä9cž»zŠy®7’\ê\ÓÉ¼hö˜y1%ŸvjžöZ~¤€\îòŠqÖ™yù´3\êƒ\×%b\ÆOD2\ãÿ\ê3\îô3¯Mg3¯¯ÿÊ¼~;™™|O‡™BWc¦Š<˜iŽ`\æ$f\Æ|>3so3s\ä3k¥›™Mµf\æþ~\Í\Ìha\æ\å\Ö1\ï\î0#qLF?l>\É\ç0!Û¨L˜ý[&òf	ùd‰‰™h\æ\n“GbbMÔ˜¸\Û\íLõ>“0w€I:\Ý\Ä$]D1I\Í_˜ô7yLVB\n“}\à	“}fŠ\É\É\ÉerÛ‡˜Ü‘5&\Ï\ì(“?T\Ëeð˜¢?W™\â\íb¦toSžEc\ÞW\èg\Þÿ\Ì|P´\Â|ð„\Î\Ì÷5a\Ê~3‹ŽX2‹O\æ1K÷]b–¿¾Ã¬l\Ö`V~D0«\ÜJ˜µ©\'˜µ¯Í˜\Í0\ëC¿1Ÿ:¼e6ª‡0›ªj˜\Ï=ú˜Ï—2›s™/¶3[Î¼`¶\Ä(1ÛƒÝ™¯{™¯ú|™\Ühf· €ù&\éó\í–&\æ\Ûs\ÞÌžó\Ì4C\æGmgf/ “\ÙO­g~ö÷fl|\Èp\Êb\Ä<`\éª1‡2·1¿:\Û3¿f#™_óó™\ß6¸0¿…b™\ß&X\Ì\ïô\æ¸s\ZaÎ™1nÀ1n1\çQ/™¦ë˜‹\È\Ì\ÅO\æo¿æŸ­\Î\Ì?º³\Ì?\éQ\Ìeƒ\ÝÌ¿*˜+¯™ÿ”š™«\ÏYŠ7&YJ\ÂX\ëHXN7±6\\\íb)Ïžf)/`m}\Ë\Út¾˜µI \Ì\ÚTƒ`mZ;\ËR‰.e©LV±6\Û\ïgm†^bm\î0`©>\Îe©­“±Ô”…,5¿,µ4K\rŒc©uÍ°4#¶±4‘/YšY,\í–K,­¬]^J,Cú6–¡\Ë2úf\í¹b\Ë\Ú3\Ü\Â2‰©b™<ÿ\ËÚ»¤\ÉÚ·\ë6\Ëì”œµ¿\î!\Ë|Ñše‘•\È:°C‰u ÿ\ë Ôuð¹ë›Œux±e\å`Y1:XGŒXG*-YG\r±lT‡X6=\î,›¾\Ö1½\\–m\æ#–-;€eû\ïë¸Ž)\ëø6\Ö	\ß8Ö‰r\Ë\á\Ìz–ƒ@›\åL÷f¹ü£³\\ß¡Y§\ä¬39.,/\É\Ë¡\Ïò.6fù\Ä(°\Îú„²\Î^D±)¥¬ sVÐ\nVp+‰’S\Å:—\É:¿¹Šuž¯\Í:?oÈºðÌƒu±e\î—\Ç\nÿ<ÌŠ|t‡}ÌŠ\rs`]\r½ÅºÚ˜ÄŠ\íºÀŠýxŒ•H°®¿—±\ÒfY\é\áoY7\'lY\Ù\í¬\ì”$V\ÎË—¬;5¥,À5ð\ã_ô\Ï’l\ÈB1X\è\ÖI6\é	›óš…«¾\É\Â=\Ña\Òw³(™Y”±pe\í1‹úÎŒÅˆta1X\ì”qGþ—\Å]›eñ´³Y‚¡e–\Ðú?YfK¾É’ÿIaÝƒÌ°\îcŽ±\î?°t\ê±ò_@YX­¬‚„+¬‚—u¬\"·[¬\"b«¸\Ä*¹Žc•9À*\r\Ü\Ë*ý²\Æ*ƒ±\ÊòƒY\åam¬‡\ê›Y,\ÇYo±*ð.¬ªC6¬\êcV\rÏ”U#Ç²jF¬Ç…§YO:úYOóX\r\á+¬†DV\ãFEV\Ó6eVSP«)^ƒ\Õ\Ô\è\Îz\Õ\ÃzVƒc5¹\Éj\É?Àjm}\Çj©euôqY\ã»X\ÆL\Ö\ëƒ;X¯k¬\î°a\Ö\Û\íWY\ëRXŸ¬KYŸ>[°z›Y}\ás¬}kÀ\Ï\Z °†<O³¾|\Ü\Í\ZùÀúº\é\ë›\á\"\ë\Ûu\Öd¹)kª8‚5\Íg\Í<\"³f}{Y³\Ü¬\Ùo\Ö\Ü\â8k!É‰µ€y\Çú\åm\Êú“c-a„¬\å³¬\åK\Ø\ë€%l…ùlEk[)\è[\é²-{ý‹B¶ri:{£Ÿ\"{c\"Ÿ½±ËŒ½i\Ã\0{ó”[uÕ˜­¾`\Ç\Ö\Øš­¹SŸ­yÎž­ù\ï+[s‹­Õ„`\ë\ênb\ë:U³u\ß°õ\r?±w2|\Ù;\ÅlƒOoÙ»u«\Ù{\Õ\ÍØ¦mlS¹”m¶«’m\åÀ6\â\Øgª\Ø){\Ù™elËf\ì£\Ì1¶Y\Û&\ë	û˜\Ï\Ûö†œmûž\È>,eob7\Â>±úœ\í°CÀvœœbŸ\Ò\Ý\Ê>Ub\Åv\Ùö”\íúI}º\î,\Û\ÍAƒ\í¾\ï$\Û}Ìœ\íyd/\Û,d{{H\Ø\Þi!loI>\ÛG\'‘\ícMbû»e±ý\á]\ìÀ±Rv\Ðö%vð¶\0ö¹¿\×\Øˆfì‹¾‰\ì0±#;\ì\Ùû\Òû÷\ìˆu\ìÈŒÿn6±vT[!;\ê\Ó&ö\È1ö•ESv´\é\n;FE•«\ÚÎŽwlf\'\ì	b\'ä©°“r,Ù©G;Ù©öz\ì´\ro\Øi¼\Ø7\â\Ù7:÷°\Ó~³3‚K\Ù\Í:\ìŒö\Ý\ì›zdö-Á$;û\æ1ö\í˜NöØ½\ì¼\Ýtö]m\"x ˆ\rô¯fƒ)lH›œ\r\Í5bC6¼\æ:mö‘1bc¦\Ò\Ùø\ÓMl\Âb›8\Âc“›Ù”¿\Íl\ê\ë—lÚºlÚ¶h6“\ÌftI\ØL½ClNÁ0›G\×aóZ•\Ù|\à%6Ÿv•-Š³a‹›¿°¥:	lÙ›P¶<?ý€j\ÅÎà°‹\Âc\ÙEJ\ì¢\ßk\ì\â3v1\"Ÿ]bû˜]®’\Ä.ß©\É~xÙ†ý(Oƒ]%bW¯«gW¿/a\×la°kg\×~9\Ì~\ì\â\Ë~¢Y\Î~B²Ÿ\â_°ŸÖ¹²¥\Þ\ì¦\í÷\ØÏ¨+\ìg\Ç\Ù\Ï\ë„\ì\æk®\ì\ÕS\ì\ÖB$»mÕŒÝ®\"`¿¤\ì`w\ìå±»\Ó\Ùo\Z´\Øo\Þ}a¿·\Îg¿.f³ØŸ7°óŒ\ØC\r\î\ì1\îöØ‹\Çì±…\Ë\ìñ,wöT²\Z{n\Ã>ö\Ï\ß+\ìù\ØöüT{ÁÄ‚½P¶…½\è*gÿÙ´›½z¿ˆ½ö\å+{m\Å^ûöš£\à\Õ\ÍQX.\á(¥n\á(\åŸæ¬·\ï\æl\\˜\åljT\ålv^\ál~\ÅQ»œ\ÄQ«\Ý\ÊQ\×s\ç¨GVq\Ô\Ówq4Ž~\âhjq´eÞœí©§9ºq¯8ú,G9c(>\É1\î\ï\ä˜\á˜,Nqö\ÚGpöo\ÜÁ\ÙÏŸ\ä˜\Ó\Ùóö9Ž\Å\\\ç@øÎ¿+œCœC$\ç\ÐC\r\Îa\ï\n\Î\á”SœÃ\ê9VÍ½œ#\ã8Gº\ÎrŽ:erŽ==Ç±;¢Ê±÷¦qŽ“%G+(\ç\ä¸\Ç%UÀq}P\Æñ\Ù\Ïñöp|^\ì\äøÉ¯p\Î\îù\Ä9Û¹—ˆ8\Ì	¹\Ã	\\¦s‚Šœ`‡“œs3RN\é	\'lbˆþ)€a8Å‰n\äDJ\r9‘¿8—Í¼8Q\Úmœ¨(\'ª\ä\n\ç\Ê™se9†MY\àD·„pb§\æ9ñ~¿9	ˆœ\Äñœ$ë—œT†9\ç\Æ\éaÎ9GNú\ÆmœŒ §œ\Ìñe\Î\Í\ÙCœ[?\ë99ö*œ\Ûo\ã8·\ç9wröpò\Ò\Öq\î†iq\0\ß#9‚eô\æY\Ìü8[\â`\'¡œ¥W&\ç\ào\ç†\Í8D‡\ÈùÀ!¶¬qˆË¶’˜CŠ	ç•ý8”0‡z9™C£\á\Ð÷\Ùpn\Æ\í½\Æò;{ó%\Ûþ\n‡;X\Ê\áþ\Ê\á\ÄnQ®G|ó0GÌ¥r$£œ{g\ßsò\ïip\n†8Ec¦œ\ÒufœR•N\éq}N\Ù62§sSþ ƒS>°‰óhø5§òc5§\ÊÖS¥Â©;3Ï©\Ò\ä<ya\Æy\Z\Ï\ã<¥\ä4f„p\Z[9Ÿ\Ös\ZGwpž)ˆ8\Ï;[9/˜Kœ\Íúœ¶Iœö€-œ—\Î+ûœ\Î]Mœn\â(\çŽ\ÓsÙ‡óñ\à:\Î\Ç\ïyœ\Þøkœ¾\Ç*œó\0\ÎPi<g˜Áù¢\æŒl¸\É‘8£	œ1\â\Î\×\Ô@\Îx?‚óm\ï gBÃ”3i#\æ\Ì\â8œù\Î?œ…G\Î\Â\Â#\Î\âl1\ç7‡\Íùs\ËY\æ¡9+\êg9+‰[9+C8«.m\\…›£\\…\Ñ÷\\\Å}\îz³—\Ü\r£¾\\e\Ñkî¦ˆ5\îf«Q®šüWSù\"W3\ÈÕº&\áj£¸:„a\îöõŸ¹º\ë\ä\\]\éwÇ¦—\Ü!Û¸\Éú\\CB\×pÀ5\ny\Ã5úñ…»\'›\Ï\Ý3\í\Ê5IüÀ5ù°‰»·Ý»/y…»o\ä9wÿ™q®yž2\×\"Ì‰{ð›÷°G%\×\ê\Ä\îQö.®uðA®­ö&®mª\×^Àµ\Ä=þ\ã\'\×!d3\×aº\ë\ØX\È=yz™\ë’tŸ\ëÒµŸ\ë:f\Ë=sÝ†np\ÝI\\]+®‡‰ë© \ÇõÜŽ\äzú\ép½6=\æz\ë3¸>\Õb\îYý]Ü³Sª\\ÿu[¸þþ®ÿ•Y®ÿ;Mn ‡xõ+7\è÷\'nð\Å8n0l„{¾\Â\r5r\à^¸pˆ{Ï½ \Ó\å^üö{q\í7œ”\Ä\r6r/}\\\àF¶³¹—\×s£4?p£\è\Ü\ÝYn¬\æw\îu™!7%Ü’›z¦‚{\ãe7]|Œ›¾ü{Gõ!7\èÄ½ó¸±ž\Ò\Ò\ã‚\ÏFsa¶u\\X\ê5.\ì\ß./\àþ¹s‰Q	\\’b—dñ–KŠI\å’þž\ã’\ë¹\\J÷~.µ|žK»¹“K\ã›q\éq\\D\ÎeôÂ¹,\ZŽ\Ë\Î\Þ\Î\å\Ê¹\Ð®PDãŠ£\ÎqÅ ®TÁ+]J\æ\Þ3£r\ïq\ïõŸ\à\Þ\ß\äÞ§esóŸ¹ù“­\Ü\Âø“Ü¢ˆn1µ„[\nR\æ–÷\Æsn|Ï­°&q+lös+¦¯r«vNs\é\ç>ñ\â>™|\Ì}\ZgÀm¾ÀmŒY\Çm\Äq›œz¸\Ï6xsŸ+¹ÏµpŸ\Ïr›Í§¸/,¯r_´\å¶\ä\æ¶\ä/q[\ï‡q\Û÷³¸/‹vq;4¿r;&np;w\Æp_\ßo\æ¾]\Ï\ã¾Ýµ•û\îŸ6·§h–ûa~û\ÑRÀýDù\Âýô9œÛ«\å\Ì\í\å¥rûw\Ïsû[º¹Ÿ\Í-¸ô`\î n’;\Ôš;´6\Í®)\ç~™t\âŽ\Õ\Úp\Ç&ª¸_ƒ#¸\ãFh\î\Äz\î÷X2÷;`ž;yN›;ù¬;¹rŒ;»pˆ;¯	\æ\Î\ïYÇ¿\æ\È]ˆó\ä.ô^\à.ü\Õ\à.\Ú7rÿ„¾\äþ¹\ç.i\í\æþUô\æþÅ¤qWwð\Öñ;x\ëªðj\íxŠ\í¯yJ{ZyJ\Ã(\Þúu\Î<emO%ñ#o\Ë\íHžz¹œ·5½…§°…§\ÝW\Â\Ó){\È\ÛK\çmKð¶@<]\æ1ž~œ*Oÿ®\Ï@Ž\á~¶\âIyFÀIž\É3öu\åW\ï\ã7*ñvm\à™\ØXòö‚¿òö}v\ç™Qµyû”óÌFy\æC<‹\Ã?xŽ0ž…_:Ï¢Â‡w\è\Ä;„\Õ\àYª?\ãYž)\ãöCñ¬\ê®ñl¾Bx\Çÿ\Ìð.<\ÇüÇ¼“\ÚC¼“:¼“v¿x®Ò­¼\Ó&y§\Ë1<÷b0\ÏC=ˆ\ç\É\ày\Äð¼\ê­x>ûvó|„\Þ<9™€\åp\çxA\çuyA‰5¼ì¼\è4/\\.\åE|<Â‹XñbzfyWÕ½yq›²y‰—fxI\ÛVxI${Þµ\å¼\ëþ§y×¿\Ý\å]_ó\æ%\ïù\ÈK‘bxiJq¼4e/Þ½\n¼ôý­¼ôÀÍ¼Œ)/£[\Ì\Ë\ì\çón>¬\ãe9»ó²»óy9–ÿx9÷òrF»yy_ÿñ\0(\ÐZ\Ã\îõ\áSºyà®£<4Ïœ‡yò–‡µu\ça»[xø`-i\Î#sŒy”C{y”Lº6È£ýL\å1nþ÷ W:\Ìc[»ñ\Ø\ã‹<>‹\Ç)«\áq»\Ëy¼{\Ê<~ œ\'8{Š\'¨j\äIÍ¶ð\ä‰{y÷vy÷¢²x÷ûñ\î{¸ñ\îW^\æ\Ýo:Æ»¿¬\Í\Ëÿf\Ë\ËÿûW\ÐuˆW8\í\È+žH\å•H¾ñJûð\Êþ\rñ\Ê/tó®\Ãó*F-x•\ë,y•\Æ9¼\Ê%$¯\ÚpˆW\íý‹W}i=¯ú\ï&^\Íé§¼\Úì³¼ºS¼º8 ¯nÆ«O\ä=%\rðž\ÎxOWOó\Z´\Õx\rŸŽòš:2y\Ï,ûy\Ïo%óš5\ä¼f°€\×\Ú4\Â{uÌ”\×Ñ™\Î\ëTV\áu:uò:;›x]w7ðº>ž\å½9&à½‰\Ô\å½)\Ù\Ä{+\Û\Â{·÷\ï]´&¯\ç\\¯\çY¯O\Å\ëøOñO\Þ`¾oX\é=\ï‹q\ïŸ\Ìc_\à_l\çÏ©ñ¾÷;ñ¦\åÕ¼\é¹T\Þ,tŠ7W\å\Íû}÷)\ï\ÏV\ÞÒ”o\å\ÏÞ¿\0Þ¿c“¼y«U¿x«¼5S[\Þ\Ú9!o\íœ¿Ž»\ÄW8\ÒÀWXY\ÏWq\âo®\'ñUmY|Õ¼Z¾*0Š¯v]\Ä\ßòÕ¿5Ò™¿µû\ë\n€¯q,—¯i*\ák)-ðµúðµ£?ðµ__\ä\ë,òu»ù;\Ôù;Ú¶ðõ\Ì3øú‹®üþ)|ƒTG¾Ag\ßø½-·Ž¯…;ÿvK¾Å‘.¾Ë· wò8ºòœ¬\ç¼\×\Â?´ýÿp´ÿ\è½E¾µ†1ÿX‡\n\ß\ÖgŠo·\î	\ß^a\ß^i/\ß~þ\nÿ\ä‹ªÿ\ß5ß†\ïZR\Èwý\ÒÁwK\Ò\à»M£ù\î\ïuø\Ûa|vÿLf\rÿLV=\ßK\Ì÷²_\Ç÷ÞŸ\Í÷±˜\àû„hò}Mùþ;ù!:ù¡W\Çù\Zùðrþ®ÿÂ§0þ\Å§ùkùù\áIfüKiQü@??¢ÆyË‚ù\Ôÿ\Ê\Ímü+2	ÿj4™»ÞÊ+\Ñ\å\Ç®\á\'\è«ó-ù	Ÿqü¤0o~J\ã~j`%?µešŸ¶\ã;?}\â=?#•\Ë\Ï\àhñ3O\Íóo%gño\Í\çg_~\Æ\Ï~|•\ç–%PX\Ï=\æƒn\åðÁ¤f>¸\ç22YÀ‡,%ð¡ðT>\\y^›\ÉG+\æðñþ||«ŸppŒOXv\á“tA|\Òþn>‰‘Ï§2¦ø´~/>ý†ŸqÁg:ñ™•r>s)Œ\Ï\Ò\n\çó\Âø¼4>;ž\ÏÏ›\å‹w8ó\Åw¿ñ%§Oñ%Wø’%=þ½\Ôoü{¬~þ}¿nþýHÿA‚ÿ3€_m\Ë/4®\çvAùE§\ÛøE—ð‹\æ¶ñKÀ¶ür\å~\Åp$¿\ê\Ø_~uŒ_\Ý1Ã¯\í\ÞÍ¯3¯\å?ñL\æ?‡ðŸ|ó\ë¡+ü&,•ÿÜºŒÿ\âZ¿%6›ß®xŠ\ßnv—\ß~ñ¿óX6¿\ÓÍŸ\ßù\î>¿\Û\ë;¿»tÿÍ«ü·\Ñ/øo\Ïð\ßjò\ß;Áù=¤ü]3ü\á\Åü>«U~ÿF}þÀöüÁ#5ü/;€ü/\È5þX\âþ\×þøC:ÿ›¢»™?±T\Ëÿ\î\Ð\Ãÿ\îõ–ÿ\ã\çZ©†?ý^…?q‚?›\ã\Ç_\è\\\Ç_xû„ÿ{{ iø6ù%Œ¿²4\Éÿ§\à\É_ý:\Ì_ýM\á¯Õ¼¬ûN¬[9 P:õC 4h(Ø <)Ø¸\ÃF V\"P{Fl¹U >ºM þý¼@}q¿`\ëžzeL }[O \ÓôR \ë)\Ø\áøI`\à÷W`µS`°tR`¨\å-0.˜p&c¦\ZZ‚}cOfù³O)‚Þ‚}@Á¡s9‚Cy£‚C\ÕB¥cŠ\à\è¶\à(*G`s\îŸ\à˜V«Àn®Z`·:+8þ(Hp|9Rp‚‘,pH³8\n\'/œbs\Ês\á°\à\Ôi¬Àõ\Èu—†¶Àû±£À[)8ÛhAÎŠ‚œ£ TtPp1\"Jj+ýQp\éd¹\àRh° rœ%ˆ©z$¸j^*ˆeö\nb+o\n\â?¶\nj8‚„\îhAR\ç¬ ¥\ÏGz>ZZ\È¤>¼.HW6¤[	2\ì7-\r7[Y\Ü\"A\Î\î,ANúÁ\í­3‚\Û$”\àŽ Apgú  ÷–š\àn\æ\à”\0\à*\0„<\0\Â\Û@¿œ.€*`\ë+°›ð\ëb\"$E€ø2 @n\Ð7\è²\0ó&Àü	`¨Bú?\Ñ\ÑV@t¿8	\È+ò\ê	M)V@sF	h‚%½LCÀ8;(`\\˜0`÷L¯Z÷ü&\é,¬…	„®‹‘I IòHjb’‰ \ìl‘@.\n\Ü3—	\î\Åf\n\Ð7…ŠU‚\â\ËA‚²#\å=‘‚Š„AAÅŠ¥ òœ® ò\ÎEA\åH‰ zî» Fé‡ &\ÛCPƒ\Ë<\áª\n\ZŠ\r*_\r’õ‚Æ¬\\Á³lº\à¹+RÐšÿVð\Ò%XðjIQ\Ð\é½_ðúÛŒ\àõ\ÒfA×„¿\à½\ÉÁû:kAÏ ­\à£Þ€\à“o‚ ÷¨•`\à¿<\r­j	F¢]#\É\Û#ÁHÑ¸`”ŠŒ=SŒM}ŒCð‚\ï/tS‹W?Ž~LL\nf€³‚Ÿ»F¿ôm¿\ØÁ¯Šß‚E\ÇÁb\Ò~ÁR.T°¼q¯`\ÙR_°\\¦*ø[«-X94.X	j¬H/Vš­+ŸY‚!G«/o¾	7n\ÈªÒ„›?U]Ì…[‚:„\Zs¡V)R¨õ\ÛZ¨\í\è)Ô¾S)\ÔZ·³\ê*…	w˜´wÀÊ„;\Þ	…zž®B½\Øz¡¡·¿p÷F¡\é©Ð´/\Üw¢A¸ï¼§p\ß\ìW¡Y9Fh\Ö&4Ob	´\Ô-6“o­”d\Â#m\Â#\ß\n]Z\Ë{„Ö¿’…\Ç\\\ì…v\Ím\Â\ãiBƒ¡\ÓLšð”\ï²ð\ÄSxŠ°_xŠt]\è*\Ôº;•=¶X\n=³n\n=©¹B¯c¡×«gB\ß\ÏþB¿ˆU¡\ß\å)\áYaœ\Ðÿ\ìCaÀWÂ \Ò&ap¸¿0ø‡›0\ÄgQr)<¿øWx\áøŠðB\ä 0¬h§ð\Ò(O\ásD1^yW(Œ±n\Æx\Þ\Æ\Ù\ãrs…ñ‘\Ý\Â\ë…i¶¦\Âô¸Â›—„Y\È\ãÂ¬–\Â[.\á­&‚0û`­ð¶\åv\á º0—£&\ÌûôTT<%T¯¦\n H!($N~5.„^ò\Âö‘\×3…\È\É;B|ðe!qC„øs«,\ë’Ÿ*\É3\îBÊ‘e!\å]Hµ	Y—¶¹»Ê…<¯·Bú†\×\Õ&\ä‡\Þò[Ê„B+¡˜1\'”>ý\'”ûn\Ê„÷&Ë„\Ü\Ïó3…5c\ÂBóa\Ñòea±aƒ°˜\Ú/,²„¥k\å\Â2\ÆNa¹¾Ÿ°¢!,\'>,º*|4\ß%¬\Øb*¬\Ä\Ì	+KJ„\Õk¡ÂšgÁ\ÂÚ£\Í\ÂZŸ7\ÂZš‹°öCŠ°vXWX\'c\ëjYÂºŽ­Â§›…Í¾w„/þ†	_\Å…¯Z÷»/¥	»£‡…o\æ:„o•‹…Ÿý/?ÿKØ¡„©„ƒëš„ƒ*û…Ã¾\Âa©pøÕˆpøXø…þJ8ðE8j Ž\ÝRŽ\Ñ\í„cM§…c/Ë„\ã>_„\ã“K\Âo(\áT\à¢pºr½p†e,œõ]¸p\ä‚ð\×þá¢š¢pñž»pñ\åC\áŸc@\á\ßË§„«\ç£E\n,ªH\á^¤ð&K¤x«_¤¼\ÉQ´±©F´±™ÿŸÿ\â=‘\Ê/S\Ñ\Û‘zn›Hóñ_‘\ËW¤c\n\éF‰¶ÿ‘‹t3–D;Žl\éñDú7Dú7‘4]dT©\'\Úý´N´G­_dZ\Ù)2[,\í\çZˆ¹ˆ,/EŠ,¿%‰¬ŸäˆŽ]ŠlDvj\'D\'\Ï\ÐEN#~\"\ç#e\"—R‘\Ë\Ú\Ñ\é\ÕX‘‡U\ä±MK\ä\Ù)ò(yžšyYy….‹¼\Î/‹|ùV\"¿ 8‘\ß;C\ÑY\Õç¢³f½¢³‡D5BQ\ÐÁÓ¢ «Q°I„(x\Ô[²\ÕXò\ÉGt\î\ÄQhògÑ…EC\ÑE•Q\ÌAt¥\ÂYUü\ÏQŒrˆ(¾²H”\à*%PsEI*£¢ëº–¢\ä@°(y\ÊW”\ÂŠÒ™¢´\'E7z\ZE™x\Ñ\Í*{Q–K½\è–\Ê.Q¶÷eQ6\ÊPtû6Ot÷\âV §W^Á÷“D\Ìubü»µ\ÎS„v\ëa\×aiE\"l1V„mŒ\á„A\"¼\Ö:\á^—ˆ¢\\\Äfoq\Ê~ˆ8¯BEü„qÿ\æy‘ø¿±H¾ÅŠdð\"\Ù\Ó÷\"y0Et?2O”Ÿ´I”‹\nÀ@QÁ\Ã\nQÁ¢XT(™\Ãw‰\ÊpM¢rF›\èyLTÁ*U\ïl\Õ^Š\ê\Öm\ÕmJ\Õq•Eõ!¢§\ÔQ}V\Ô4ðMô\ì\Ú\rÑ‹K|Ñ‹\ÇE/D-«oD­‹Z‘¢Ö–‹¢¶{\0Qû6¶¨½8Iôê—¡¨‚uJ«E¯Ï¯uûžu´‰\Þ$‹\ÞL¶ˆúnÅ‰ú½\ÂEý…¢\Ï\ã/Dƒ‹D\Ã·Š†Ë”D#²Ÿ¢‘¯¿E£qŠ¢¯\áD\ß\"™¢	Vh\Ò\\A4ù\ÝB4uð§hê§‘è‡ž“\è‡\\4\Ì\Í(Í½÷\ÍM‹~b\'Eÿ\åk¡\ÕU´ðöŠè—ƒ¾h™\Z+úûs§\è\ï\ZOô\ïd“hõù&\ÑZM¬\àøQ¬€¹\"V¼õ|‡Xé½·X¹\ØQ¼Qª\'Vq‰U®½«)DŠ5h\Ã\âm\r¶b½c\"±žh‹XO>$Ö¿c,6xöTlð\ÍVl°\Ø!6RBˆ\×\Ä{Û»Å¦ûPbó\âW\âƒA¿Å‡\íö‹%ŠÄ¶‹Áb;Šž\Ø^A*¶°„ˆO,\ÝŸü`(vNÿ.>µ\Z,vQ\ê»X•‰]2Q\â\Ó1\Ë\â\ÓÏ‹\Ä\îJ/\Ä\îj\ãb÷\Ïb\çcbÖŒ\Øë½™Ø»ðµ\ØO^\"öW^\Ñ\Ä\ÝoÄÀ@q`\Ý^qðYŽø\Ü_‚8\Ôþ„84\ÕHZ\É_P~\'\ï|/ŽVG°S\Ä‹7Ä—7Ÿ_\Þ(Ž\Ê\Ø%¾2› ŽK4\Ç‘‹\ã¿Ö‰RÅ‰\á\r\â\ä\Ïi\ât‡\âÌ·\Ú\â,\Ã9q–\Ñq\ÖAMq\Öñ-òñ­2-ñ\î qn´²8¯&Tœ÷¥C|—\ç,@Å€\'\Åb\à\å3b°¹ŠšÃœÿ‰a\ä1¬qNŒ\0Œ‹Qnýb\ÔEe1z,WŒ\ßb$\Æ\ßJÓœCÄ´¾˜Ž\Ø/f·ˆ9n{\ÅŸy1?’+•¹‰\Åõ9\âÂ“>\â\"|‘¸¸ô¼¸\ä\Þ]qy^ƒø\Ñ%‚¸RsH\\i\ÇW”Š«\î€\ÅUŸ¿ˆ«F¬\Ä5ýÄµfw\Åõg\âú’HñÓ\ÄO›•\Å\r\èlqCíŒ¸Qó…¸ñj‡ø™‚’øy\åOñóA²¸™_\'~ñPK\Üz§_Ü†¤‹\Û\Æ‰_\îü,~\Å6wh¢Ä¯uó\Å]:â®’_\âwW\Ê\Å=\Å÷\Äi\Ó\â¾\ãBq¿†½¸?\ç£x\àt¶x0U<¬výOHBÄ“Cñ\â\É\ï(ñô}Žx6\áxvŠ*þ¹&þi~Güd$ž\'z‹\ç9–\â…y¶øWØ‚ø\×}°øWõMñ¯÷xñŸK—\ÅK¿\Û\Ä\Ë\r…\â	–\âÕ¾Y\É:gK‰¢=O²±\ÆC²q\ê­D\åiˆD\íˆD¢vmH¢6\Ü/Q7;(QÎ–l½3-\Ñ\Ød\"\ÑÈ°”h`‘1‰¦zƒDœ)Ñ¿\ä\"\Ù\å\Ô,\Ù5^!1ˆ\ê—\éK$»—-%{4Hö\Ìþ”\ìt—\ì{›\'Ù¿:*1·>!1Ïº&9\\xYbµ\'Gb%o–é®’Kÿ&±½J•\Ø>J\ì>˜HŽWü‘œ %õ7$Ž¯\"$Î“6’Sû’S\×þH\\«$.U‰\Û=u‰ûˆ\Äý\Û&‰kR\âõB&ñúa)ñ¶uøÇ§I‚vJ‚“-%!\Ç\Z%!\åÉ’sÁW$\çO`%\çQ’‹\ÉE©\ä\â\é[’°¬$I˜°Nö€ ‰Â®“D•ŽK®`p’\è‚QÉµƒ\Éõ>’d§	I\êýƒ’Ô†I\Z(Ikð–¤FI2Ž%™ôBIfF’…} ¹U%\É~\Û!¹½[\"¹C2•\ä\îPýO’û \É3U•Ü?#¹û\ÐNô;(`%À	d÷	L\ïž&^‘À3t%ðG¤úF	Z#C‚¶Í“ \ÓÀô¯z	ú«\Ëõ’\ànKð—‹%„„ýBE\ÂÈ¦I˜\ßc%\ì\Í\á¶!@\Â—°3#%œËŽÎƒnC¼„÷bT\"\Z9,\Ã\r$r+{‰	“È›7J\îP•Ü‹R—\0¢%	’\Â\ÛI\ágI\áÀI\É\í’’\"IiA‰\ä\á\Þc’Gþš’G)	’Š=¯$ƒÅ’ª3‘’\êT\rI5¬JR{%MR¿\'it(‘4¶Jšz2$\Ï4þIžIž…J%\í\Ñú’öš¤£ð³¤\Ëú‡\ä=F\Ò\ë{NÒ›h#\é½;\"\é7ž–ô[`$ý\ÑÅ’Ï€>\É@\æ’dt•/·Õ—L¼H’|/•H&ÿH$?l:%?J\îJ¦|—LC\îH¦\ç$3=Ž’YZšdö»¢\ä\×wÉ¢šd±\ØX²8!”üÉ¥Jþ6$+N7$«=RE÷mR\Å@_©b˜µTñ~¸t½\ât}\Ï\é†6}©Š<Oºùñ”T­¡Cº%gYº¥®\\ºeÀ]ºe¼Wªn¼&Õ„Jµ\ìðR­•‹Rmƒ¯R\í?=RJ·t{¨štû\Òg©.e“T·”#\Õm­\ê\Ý\ï–\î|¾Oj”#\Ým\Ø$\Ý\Ýc.Ý£\æ.5y\â\'\Ý\'JÍ¤mÒƒ³~\ÒCZR+µR+\Ó©­­‘Ô¶_(µŸ–\ÚJ¥Ž\ÞjR\ç\'S\ÒS?¤§¿8IOOÿ–zœ˜•zª\æI=1\ÊR¯.ž\Ô\Ûð´\ÔG\å“Ô§a@zöÁM©ÿs®4$\ä›4D\è*=\×tG\Zz\"\r+	^šu“FlM^\Þ)NIc·JcRPÒ¸\Éai|Išd,M¹n\'M[Jo`Â¤\é¦\Òô\rÒŒ\íb\éM“;Ò¬‹‘\Ò[<7iöN˜4ûV©4[øBz;˜+½\ã\Ø%Í›dH\ï\î\î“B\ï\ÆJaOiRTD©\Å{\"\Å~\ê–\â×¤„#R¢SJ>W(¥4ü’Rm\ïHi–VRºgƒ”!h–2ª<¥L\ÛV)§rF\Ê\Í\Þ\"\åõI\Å\ç…R\é«©\Ì;C*W™–\Þ\×þ\"½¿GQúÀû4¿zŸ´ÀtEZ’ýIZj¡\'-m’–)¹IË]¥Þ®H\rzH+N8K«ú¥5÷¤5Q½\Ò\Ú\Ü[\ÒÚ™õ\Ò\ÇÛJ1‘\Ö”K\ëk9\Ò\Øké³‡2é³¶\ã\Ò\ç#•\Ò\çós\Ò\æ§|\éP‹ô\ÅD\Ú\âzP\ÚûC\Ú\Ê~,m«\n’¶õDJ\Û\Ëó¤/Ïž“¾\Ä ¤¯Ú·K;Ž\åJ;µ<¤\Ö{¥öN\Ò\Î/ý\Ò\×\ç¥\ÝxôNŠôÝ¥;\ÒwY¥\ïA;¥Ô¤=4¤¯8I{I¤ýöc\Ò\Ï_—¤[¤µÒ¡¼\Òá‡¯¤£>)Ò±\á½\Ò	\é˜ô{I:s,‘–\Î4¼”\Î6kHgW¥sK\ËÒŸ{:¤¿¶Jÿ¤HÿTªHW=®JWkÓ¥k\âe\n\ËX™\Âj­Lùx¦l£«²l“\ÄG¶Å¥T¦~\ÄK¦Ny)S_x\"\Ó\\-–i©\rÉ´œ*dZWA2-’§L[sA¦\Ý\ï*\Ó)–m·\Ø!\Ó5È—\éº.Ó¯N•\ÚøÉŒ•5eÆ¨\\™I\éW™\é¯k²};5dûoø\Ë,,Å²ƒ\ç²ƒR=Ù¡\Ý{d–±V2«¯2+øz™\Õl¿\Ìjž!;\Ú%‘Y¿‡\Él`eÇ²@²\È=2§Í³2§®p™‹g°\ÌõO\æ6wN\æö÷†Ì”¹÷Ü•yþ	–y\rŽ\Ê|m4d¾¶|™\ï-#™o9[\æ§)‘]\Ù,ó\ßñW\æ_¥,P\r d!G3e\ç†^\ÉB\ã\Âdçƒƒea[\ß\È\Â\ÎD\Ë\Â\ßl”EžÌ—E¶\ç\È._\ÇÈ¢—e\Ñ3—e1Ás²˜ó;d12¦,¶óš,N\Ò/‹›÷%$\Å\ÉòeIñ\ëe\×1²dp½,ù_ ,\Å\ËB–Ë‘¥<Z\'K\r˜–¥&\nd©T_\Ù\rDŸ\ìFŸ®,ý\Ã9YvK–\rQ‘\ÝyxU–\ËQ’\å>Ð\åµ\Ëòz‘²»\Z\Ù]\ÜIØ£PõG\É`•2´|U†M*—\á®•\áó2\\M³Œh¤$#&f\ËH¦¦2\ÒMy÷9*£¦»\É\è¦\09%£’1\ì:d\Ük&PÆŽÿ \ã‹\Óe\Â*]™ø¢£Lœ\ï$“|€È¤%s²{’hÙ½k²û6\Ëò\é\É\n\Ê~\É\nÏž—9$ÈŠ>\Òe\Å\Æs²G¬\Ô «øö@V\rO”\ÕX\Å\È\ê\à;dreO·\Ë\Z‚e¡²Æ LYc\ÓC\Ù3ºŠ\ìy¾Ÿ¬µã»¬\ÍG,kÿö]\Öþ\ÃAö\Ò,{I…\È^·Ü•u\Ýh‘½½\â%{gsXön²Aö\é\ÄaÙ§²{²¾C²¾?Y¿bŠ\ì³vŒ\ì³\ã\Ùç¥Ÿ²Áƒ\á²\Ñl\Ùh\Ë\'\ÙøS\Ù\Ä.€l\â{„lò]“\ìÇ½½²™å²Ÿ\ê¿e;üd¿7iÈ–¾\ÈþºO\Èþù8\Ëþ…½“ý‹”­©•\Ë‚\å\n}ªr…\ß\Ýr¥¶“r¥©Oòõ}\Ñò\rù†r]ù¦\é@¹Jb¼|s\Ú&¹*\í­\\µò‚\\í§§\\c]¬\\ã°“\\ƒ+\×LÈµý\äZ9	rm#š\\»|³\\\Ç“\\tC¾­\åƒ\\\ïXŸ\\\ïÔˆ\\\ïU“\Ü@mTn ¹\'7h¸.7\n*—\ï~óP¾\ç\Ð>¹‰N¬\Ü\äJ²\ÜT±Dnj¶*7½B›\Î}‘›w\ÈÍ¿\à\ä\ßN\ÈœI”8\ÊmY\'?4õJn©š#?Œÿ)?b´$?z\ÅUn·÷¥üø•ùñ¢¿ò\ãò\å\Ç1åŽ¼2¹\ã`¹ü\ä6sù\É\í\Îr\'L±\Üù>Fî’‘\"wiV”»\"!r7\âg¹{\Ê:¹—\ëv¹\×\Ý\\¹W\Ï	ù\Ùrwy\ÕyP:Bô^W´\Ô/¹ôX’\Ó-K\Þ,cž“‡q\Ó\ä\ád¾ü\Ò\Û%ù¥\åy¤\Ý:ù\å¦Vy\Ê[óôü*f@›\ç*\ç\È\ãG#\ä‰\'<\å\×Ï²\ä×‹÷È“\Æ\åixù\rI«<\Ã\ß@ž1²]~S9@~\ëT¡<û\Å%yN\âoy]I~{\ØK~û\ïyn¶«<\ï\Ëq94\í¬Ú“\'G½?#G#9rÌ¶Krlˆ¢Û²NŽ3“\ã\Ð9^+\'\ä$ø?9¯#§¬¶Ë©.UrZœªœ¥ g\å÷09‡g*\çy\å¢\Í9rñsE¹\äCŠ\\ú&U~|ó?\å÷ZR\ä÷G\å~\Ä\Ë=\Ç\ä\Å\Õ\ä%›\äF\È+Š\Î\Ê+\ê\\\å•\ïM\äU9¾ò\êÙ»òšB¦¼–pM^÷\Å]þx\èŒü	\ÞO^? o|…’?ó{,v\ÎPþüï˜¼ù\ïUy«õŠ¼\íùy;JAþò$ZþRb$EC\Ë;VÊ»\"\å]÷W\å\Ý33òw\n½òw&ò÷\ÊYòú<ù£Iù‡°^ùÜü\ã\ç@y\ßì¨¼\ÑI> .ˆh–*¿“¡È‡2ŸÉ‡\È\Éò1òQùX½\\þU\ÛE>þô¸ü›\Ñ\'ù·\Äÿ1\\Ÿ\á\\pQ\0À)#IeF\Û(J’\ÈJ•M‘‘Jf¢\É*Éˆù\ï½÷\Þ\Ó*)…H¥Œ¢x\ß\ç>¿\ç|»÷\Üs\î‡só;¿Üˆ\ìœ¯\ïœj\Ü\Ð9­¾ªs::¾sºÇ¯ó»q\çwÖ\Î\ï¯\Ïvþ8µ\Ôù#\Ýù‹} sV£¼söÚµ\Î\ßñò\Î\ßð¡\Î?o\Ú:—¶Ot.¥œ\ïük	\ïü›z ²° \ê\É¬\Òò¬š¬–¿¬\î\0¨U\Ô\0\Ô\ÛE\0\\>@\ãƒ@Su e½ \í1X\×\É\è¼m\è¦\\l\ÜDœ±lª­l>|°¹D	ØŒ90RgŒ|\ÞŒ\Î\á\ÆQó\0# À\ì‰`Kf`K»Àü\Ä[À¶&`{©*`\Ç\èIÀ\î]­€\Ý\ï\0–÷€\0+ý€\ÕSK€5°y÷	`—]°«\0\ì\ç\ã\ZM\Ï\0ŽðÀ¡?b€“ÀpØ¿p8ÿ \à0pQÿ\0pK=	ðøYðd\îx©\Þxi¼ò\Z\0^3Àq‘-À\'V	ð¹x\àC1\0ø\èüt4~EB€Z	8\Ù}pJ?p\ê^2 HU	üœN\ÔœqK\0DÝ²œ›}ˆÎ†\ÎÇ¾\0\\‡\0b”«±-@œd >ò\0 ¾´O#.Q˜€„V\Z ¸\Ü\Ü¸\â¦\n¸\"H\0$:\ì$F?\0$þ›$ŸùH=s\r\n=H\Û|pýûg@põa7\à&mp‹\Ú\0\Èµ\äTn\ïü\0¸]¨(È¹\0(¸\Û(\Ôy(\Zz\r(ax\0\î9]Ü¿ºp_zP\Ñ\ÊTü°\0TÁU1l@ÕŸx@õmCÀ\ã/€úˆÀ¤\n !\\h\è¿\rht\Âž¥fžM$\0ž—­4£¤€\æñÝ€–,[@ûWu\0P\n\0š\Ï@ñY\07\0’œ@Zcû@\0j3\0€–\0\Ø,\0û\r •Hó\n\0õ\Â]\0=”\à\î\Åx\r\0‚w\á\0\á\èw€\ÈE»=\Èò\0òôÿ=\Åä°«\0Eÿ.€r­@ix ƒ\0”7\0”8@wg& \ßô\à\íP\r`d\é*\à£\î`ôo `|µ\00±30ud`Š\Í\0L\ë\Î\0¦÷ \ß(`À·)mÀ\â<`f˜™Y\0ü\Ìú\0˜~˜³*\0,¤”þD\í,©Á\0K €%|\à\ïºdÀ¿ý Š·Põ\ÝPu\Ñ¸ªh?P­\Ü¨6T\0\Ô\ÜU\\C\Â\0µ:³\ëðo€:F@w!Àõ‘\ÙÀõ·^7\Ú\07ø@³C@³7W€\Ö+À­«Ç;¶\å\0w´\êwGü\0Zúª\0-\ï\Ï-{T\Ö\Ã€6\Õ ­o3Ð¶\Ñ¸\Ï\êp_€*Ð¡\å\Ð\áo\ÐQ¨	t\\‚.\rw‡C\ç\Îx7 Ë—X\à\Ö] «\Ý_ Ç³\ã@Ï­AÀ£\ÏÇ®\Òú¬\ÍúªZ}\í©@¿\æh\à	õ\Ó@— T\á®\rÿ\ë†¼œ†\Z>†>)†Jõ¡_þ\0Ã¾<†_\éžöOƒô€§§¿\0\ÏX|ž\éýŒ\Êñ\0F§­ž/^8S¼ yŒ]G\ÆBlq;€ñN\ËÀxŸb`|xðò–n\àU\×R\à\ÕtC`bóW`\",\0˜º\nL\ÖÓ¯a\éPS`:²\nx\ëöO`¶\êg`\Î\É~`®\ß ð¶ÿ~`\Þ\ØC\àS¥À;\í/€þÀø	`ap)°\Øy°ôú#\à½G#Àû‘\ÑÀ²\ÖgÀ2Xþ\à%ð!­XYÿX}o°ºþð±\çðq·5ðñøE`müz`­<Xw3ø¬ñ°Iª¾\0ó­«?[-¯[ag/™\ÝÀv—ƒ@\ìq¸\nˆùbwY\0ñ«¶\0	#™@b>Hš\è\0R&\n€T— \Ã\ì ¹\åc\ä\'‰‚õZ@¡\ãE øûZ ,ð:Pö·¨¼½\Ø\ê\ì.^vKþ\0»¿ö{¼\ÉÀ¾\Ì!\àÛ™oÀw\ÅL\à0,ø¾yøžhüPù\ZøQEü\È|üTóøy<8n¨\r—,\'.½NU\ä¿\Îd¿Ù„ð¢€?÷‰?\ÏR€?\ÉÀ_úÀÙ£o€³oœóÔÀ\ß\Î~À¥Á\à¿{2\àr\á	\à\ÊÁz\à\Ê\ÊH\Å\Â¤\Ú©\Î^­¢ô‚V½\í­¶ƒ\Ô<öÔ…\ê \r\ë†\í7†´¤\Ù­aˆ@k÷\Ý\é´\É@hAº¿ôBò@ú²\Z\Ðf\ßa\ÆoQ\ÖiOh\Ë#\"h‹\â\Èü—\ÈBd¡²\È;\Ú\Ú;	\ÚvR\ÚÖ“\Ú\Öo\r\Ú^b\Ú1—²Š~\Ú\É\íÁ`@{?l\Ùi\í\×€œ,MA‡é \ÃR?óe&\È\0Y]\0:2ý\ä\Z\èr¹¹”‚\Ü\Òp w\Î+Ç™u X\Ð\Ñ\à|\Ð\ÑA\ÞÚª \ï÷Á Ÿ\å>Ÿ¢\ä¬\äÿy\èT\nr)\Ï…¸Ô€B®.BÏƒB^m…}*ERZAg9XÐ¹G2\Ð9>t\Þj=\è‚1t\á‚/\è ó\í/(–ü\ï\Ö\0Šòt),”´t\Ù\Æt¼\rtù_\èj\Ì\è\ê\ÅP\Ò\årPò9(\r	J\×\Ìe\Ø\ê2\\\ì@YO€rB\ìA¹)- \Ü7 \Û\'‰ ¼\Ð <F(¿ý\èN\ï\Ð]\ßP\í,¨\n*þ•‚\îRA\åÿ\ß\ãÁžÏ ‡EGA•{«A•Q¯A}CA\ßoÕ„^\Õ^Å€j\ëü@u\ÝPƒ\ÆNPyÔ¨]j¤…€š>A\ÏsU@\ÏY§AÍŸ\Æ@-\ZAm\Ç( ö\çy Wn@€8;\Ðb\ØJ\Ì@ ó ð\ä_\ÇAøTl‚¯¾B˜\ÓAÈ­\ï@¨«»A¨¬&V&\á\Ïeƒˆ\ÐtqDªŒ‘7¼‘k÷(½`­¢D“´€˜Ÿ{Alµ§ ¶V4ˆ\ã\Þ	\âjqo€xù@ügM IŠ=H\Úh\0’\Ñ\Õ@òŒE\â:\Ô\ÕýÔ½FÔ·ú\èuª7\èõP#\è\ÎYPÿE¨_1\Z\ÐZ\Z $€µ\ÂAƒ5A\ÃDS\Ðû¹ \Ð\È\ÝË ¯\Z@£Q ñ<hü­;\è\Ë\Õ$Ð·:4\è»ùC\Ðw\î\'\Ð\Ìj#\Ð\Ï(]\Ð\\®hA\Ï´¨\rúý-´”¹´T\ÏýK–\Õ>‚–»\0 •\n\Ð\ÊS_°\Êv6Xe\rVm<^½¾¬vñ=X\Ý8¼¦+¼nm9X§\r^¿6¼1&¬o¹l°\áxu¼¤\0›„±À\æ‡ÁV­`‹•ðbð\Î]ù\à“¥\à\Ý\Ý/À–¢£\à=ûÖ‚÷\Ì€mo\è‚÷=\ë\ï\ß}¼(l?| \Ù| !|@v\ìhs\ì”\æ	>ò\â\Ø\Ýödƒ=jÁGs^€~¾>~5\ìm\Üö®¸ö&Äƒ½»ªÁ>!oÀ~%\àÁ\'H\Þ\à\ÝÁþ…¾\à s)8(µ¼\ç2øŒ[8Bý8²ý\"ø\ì\éeð\Ù;pTþ 8z§8ú÷$8>~øRD3øŠ\É	p\Ò\É\Õ\à\ä¶)pŠš	8e‡œrõ8}ý3púÅ‹\àt\Â[p:9	œ?\Î\Ì÷g¾#³®\ÑÀY/Î€³P‰\à,\évðÍ‡\é\à[\æ\àl8;\ë-8\'÷:8‡Y	\Î}1\Î]©\0\ßvó \à{¡GÀ÷\áÁ•\ê	\àJ\Çip\åk}p\Õ\Êupõ;p\ím0¸¶\Ý\\w[\0®dnH›7\Ô\âÁOUþ‚Ÿ©ƒŸýæ‚›RÞ€›X±à¦¹Vðó7Z\àf\ã/\à–³“\à–¨fpkófð\Ë\äc\à—yý\à—’Á: p\ç[0\à¶„ƒÁk®ƒÁ\ï»À¬ó`\ØN?0\"¬Œ\ÄD€‘¯gÁ\è\ë/Á\Ø\âh0®ŠÆ¯‹“/S»\ëÁ´}\Å`ZR	˜±©\ÌBƒ™)]`\Ö\ä0»n\Ì;¥\æIO‚ùU`~X(˜\Þ<\r\r™¥ü4°tùX°,\×mw]IwUý\0w»:€ûþ¾÷;Ø€ûIPðÀózð\Û_Áoÿ¬q—Á#\áOÀ(C\à\Ñ\Û÷ÁŸ4õÀŸ<±\à‰mª\à/¡Lð¤\rüõ\Ôð\×ùð·gð÷^ø‡J3x\æ \0ü\Ë=<{žkWÿ}dþû1ü\Ï\íø_û?ð?bxY\å\nx…¾¢‚)„¨ºhAV\Ýn†¬’@V\ã’!jq~#/ šƒ!Zwaµ\ê\È:Skˆ\Î\Óó\r*!º³¦\Ý9\Zd\ã¨>\Ä ½\0bˆ(„\'ûBLK ¦\á\rSùZˆ\Ù\ÎLˆÙ£)È–G\"È–\ê~ˆE<²õ‘6d\Ò²K\Ó²+\â\Ä2s\ÄF\Ùù¿\ëÅ½\Öw!vÙ¶}\ïú ÿ®…8þ\ì‚8.\Õ@œ3m .\ëþ\ç÷\â\ÒSqM)€¸¦¶@\\¡\á\×þvˆ»\æQˆG\ë*ˆvÄ³˜9\n–B¼>\ÌBŽ©¿†x\ßN…ø;ñ\ÉR‡øv¼ƒœý‚œøª9\é\Óño…øCŸ@üAiÁ\Ð\È\\È™o Éˆ§\"Hdf$\ê\Ã_\Èõ%\È\ÐwHlO%$.¢÷\é+$>Ur\íú#H\Ò\Õ\\Hª\Ð’f½¹~\\r=i$£O¹ñ¤’yü\ä–\Ï\È-t\ä\Ö\âOH¶V$§º\0r{õyH\ÞÞ‹ü¥S‚Hm\È\Ý4*\ä.\0)’ï„”<5…”\ÄB\Ê?C*i§!U\Èt\È#ýU\ê	\äñƒ\çZ¤.\è3¤\îö-H}\áIHC@	¤!yNT‡4W\Ð!/‚¶A^\Ô\ÕA\Ú&¢ /›ðŽÿ{\Ð9’¸$@€œýý	¨q\'ž\áA\è¥@\Ð!Òe\Å\æ\r„\Z\Ý	¡‹€0\îeA\Ø\ÞU\Î\ÍQ÷œ-„o*„ð¯k@DiG R\Ûˆ\Ô\åD\é…\È\Æ\Ê!Ê‘w\î‹Þ›,Hß¥s7ù÷v@Èˆ\Å0d\äòA·2ºM{\í>ùt÷\ZdLCó\äB&Wl Sw} _O´A¦l…üð%AfL·@~öªC~\å ¿*\Ç!³\à9}3\È\Âz+\È\ïwG!½ \Ë¸\å\Ë!\åi\Èòb)dEUQ@U¶l„ªÄ”@U< ªc j\×f¡\êƒPõl¨\æðv\èÚ§P\íöV¨Ž~T‡e]\ïóª·%ªg[\Õ÷ÉƒnvH„n®@\r÷\äC·ÜnyIƒšgî€š\äA·\Î\'@·m—A·¥ùA·ý9Ý¾q+t\×\×)¨•\Ö)¨\Õò¨µe,\Ôúøv¨uñ>¨5\nµùûºg[t\ïŒ?\ÔvW7Ô¶\è\Ô\Î\ì\Ô\îþ[è¾­\å\Ð}B¨}¦ô€\Í*¨\ã]G¨K\È¨\Ë+¨\Óz¤\Ø\êZ\Úu¡´Ð£\ëb GCÒ \Çt\Ðc¯@½c-¡Þ¹\ÆPŸ».P\ßgfP¿“›¡\'ýNAO\ß@ýŸf@ýß‹ !G ¡y#\ÐÐ‡» ao¼¡\á\Ð36NÐ³K[ \çlg¡\ÑzC\ÐhOô|²\n4\Æ=\Z\ãYý\ì½ˆaA/’B\ãz·C\ãû‰Ð„\Ñ$\è\å–^\è•\Õ\èÕ¼1h\âB+ôZøôZ\â4i÷[hR\áhr\È7h\ê‹(h\Z¼š~\Îš½~	½i€\Þ\ì\ÇAsö·Co;@ó\Ö\n ¼J\è]­Iha½´\ÈcZì¦€–<|-y\Ô-i[½ß¸-Ÿr‡>j†V¦žVfB«£\Ðj²´Fÿ\"´\æ\ß}hm]´öU=´\îv´¿\Ú\0\Ú	mdNAŸ~œ‡>·5€>\Ï)„6#„\Ð•Lh‹¶\r´¥3ú\â\Úz—m³ùmž‡¶\ß/†v¸ŽC;.\ì„v¦p¡\Ð\Õ%PØ…ŸPø\Èc(*\ã£B±y>P\\Àk(ù¾7”zi\0JýpJ?uÊˆˆ‚²{B9\Þ\æP^ù~(\ïy\rT¨¾Z€Š\\ \â\æPñg\'¨4r*ûb•_\ßU\ÞA»¢c \Ý\Í\ÐþAôÝ•4\è\åthˆN\\9_ýh\Õ\ným[	…ŽUB¿DC\'5;¡“Zv\Ð\É,\0trþ*ô\ë\ã2\è÷5E\Ð÷ó¡³\ãO¡sÕž\Ðù}; óñ¡‹\è\â	\è\â\\t©\Äº4Ê†.}†.ýz]f\äAWú-`ªhLuü+Lu\Å¦\Þü¦¡±\r¦­\n[\ãù¦\áÓ¦vÃ´?Þiÿš‡­û\r[,¶~\Ñ¦\ç°¦\ç³¦þf\Ðu¶\é\è[˜‘\ão˜ñs\0\Ì\Ä\ã*\Ì<\î5\Ìüºfž\á³Hƒm\Ë\Û\ÛE‚Y\ÆýY\ÓaVm\ßa6ú¦0›ga{Ò°=\ì`{]E°½\äk0\ÛûŸ`v\à\Ø~§B˜ýƒ˜=N\æ\Ð\\;ø\æ)\ìø=\ìðšl\Øa\Ãx\Øañ˜³Z \ÌyDæ¢­sá­idÀ\\q\Ú0×¯\æ07O˜ûƒ³0\È˜\çr\ìØ¿.\Øq\Ç0\ß¿a\'º­`þX€G8,Hc\âúR\Óµ›‡…\íw†¾Ä€9tQ¹1Q‹ô¹;[²‹:È†›0‡]HÖ„\Å\é\ÅT\ä\Ãb\êÁ.\n\ÎÁ\â»\ÃañSË°„¼\ë°+;\Þ\ÃU\æ`‰\æ\Ça\×vmƒ]‹:»öõ.,©K=6\Ëx\ã»ñ¶v³=–s²v»ª–›»ãŽ†\ÝA­ƒ´°a¨vXÁÇµ°»iP\Ø]¾\r¬øI!¬d­-¬t\Ê\rvo=\rVvÁV\Î\Û	{\àV	ó…Ui\Ø\Â\Ù`j`\ØÀj@A°úy}Xƒ\ï\ZX\Ã\ÒN\ØÓ¸X\ØÓ‡\r°ç¶°\ç!‘°f–¬e}¬õ‰\Z\ìeöA\ØËªÐŽ\0%ða šiòX£ÿ†¹~†\Ý †\á¶\è\ÂðZ†0üK1®F\Ê…QL«a”`ô·¯`Œ\Ï`Œ\ä¯0¦\æuóv1Œ\Ý\×~<	¾…\É\ÎSa²\Ó0\â1L\é¹S.ß„u—Áº`}›°¾\×i°\×Î¯aý›¼aýÿ\Ö\Ã˜7`ƒ¯ZaC\ÔØ°)\rö\Þ46²7öq\Õ>\Ø\èqu\Ø\èe8l”\Ùû\ä™û|­6\ç\r¯\\›\æÀ¾¦\Â~<ƒý¨ûõ›}][\Ü7û§\êûW`\0[6”\ÂV†¨p\ÕðRøjcc¸fe\\\ë\ÐI¸\Ö-\0|mf*\\;\×þz\0®Sl_Ÿ°®{<®\ç,ƒ8§\Ã\r\Þ‡oZ_7‰ƒ\ÂM]Á·avÀ·;a\á\Û?Àw0WÁwE5Á÷\Ô0\á{j}\à{\Z0ð=\ï^À\íü\ßÀ\íB¿\Â÷í°ƒ\ï_\ß\î‡\ïgªÁ\íMð	Žp\ÓWðƒ\îp\Ç\éY¸So&üpP/Ü…ó\n\î\"m€\Éý\rwo¢\Â=ep\ÏÖµð£\ë¸ðcw\â\áÞ«0ðV_\à\'|ŸÀOj\ÂOy†Ÿz½8\íð¿Tx@a<\Ð\Ò˜zX]	z\n\Ét‡‡`øð/\êð?½ð0¾fþp\0~º-\r~\æp<\Òp~þ\Ý,üB\ã/xŒf<&\Ìós/<þ\È<>^~	>\nO˜¬‚_sÁ“\ínÁSF¡ð4SwxúŸøõd<Có-<cóIxF›=<£\ã9<c¶~£%ž¹–¿)p†gƒ\á9\çXð\Û+nð¼\îHøuO\áw‚\ß\Ã\ïä¿…\ß!\Ã\ïH+\à:Rx\ã=x‘º-¼øüCø=kUxÙ­óð²G»\ác0ø\Ã¼òûAx\å/{xm\çAx]E=¼A‡7„7\Ô\Ãð§~4xSW	ü¹\î*øó\ÞxKD3¼\åa\n¼µ\ØÞ¶½\Þ^ö\Z\Þ)\Û®5€ƒr˜pð\Í{p\è)\ÆO‚#š4\á\Ø;p¼ NHÃ‰ŠkpŠœ\Êÿ§=N„3Rö\ÃY»\èpkœ]\'„s\È#p~\ÓY8_þ.°\ÃE†G\áb„\\b•—zµÁeNÀ\å&p¹b/\\Á…+XKpe¢¼;\Û\Þ÷8þ:£\0ÞŸ­\ëoõ¿Dø°E\0|\ç	AÁ?œušî:\ÃGkðO÷ÿÀ?=ü3rƒm„\r¶ÀÇ†´\á\ã[¶Á\Ç	>ð/±‰ð/\É*ð/•\Öð)‹\Ûð©q\røô\ÖUð\éFð™“ð9»yøÜƒø\ÂW0üwS=ü÷‹õðß¿\á\n¦\à\Æý\àK\Ö5ð°B\Õ1¡\êt	¡\Æ\ÌCh\ì}€\Ð<‚@¬ñt@¬u{ƒX{\Î¡³µ¡ûR±Ió\Zb“€0\0\"Lyº3\ÓL„ù¾I„y¦aþ\r±³c±ûj%\Â\Ò{aY\Ì@XÅ€Vƒók,±7ò!Â®]a7t±\Ï$±\ï¶&bf±ÿ0±ÿ\Ø0\Âþ\Ý2\âÀ\n\ÂÁº\á°ÿ\ÂÑ±\áø8qh“\Â	b‹8\\¬p9¼€p™a#\\=\Çn\è\Ëw”\áa¹\áQ1ðÀ?Bxp#G#\Z\Ç:þ ŽŸ_ð\î\\Aø\Ø!üMŒþ´	„¿\è7\"@’‰™\Ã!Â9!Â¡[§§#\"v\"\ÎVT \ÎBb\Ñ\ë1™ˆ\ÄD\ÜWD¼\×FD|+\r‘pu‘v	q¥\î-\â\êz)\"Qu\nqm8‘tö\n\"5h‘ZÖƒ¸n›Œ¸\Þh€\È\ïDdu\Å\"n&\È·W#²\ã¯#²ñeˆ«hDÎ¾\ZDŽ\ãSD\îYMDþÁ>DÁ\ÏVD\Ñ\ß!Dqÿ\n¢d\ÍFD\É\Ì\â¾\ÞE\Ä}Y¢\ÜU‚(¿Ø‚(©DTD#*\î=BT°;vnB<@¯ L•\ç#U\Ö~ˆ\êC\ïžG<ö!j\í<O®e!žü*B<\Ýú	\Ñ\ävñü\ê¢uG!¢ø\Ñb…x¹Œx9uÑ®6‚h‡‡\":ž|Ct0^#^MZ#€\\¼#fBÀ§ˆž\Ôi•C e\éŒG³2‰À¿“#ˆö`‘5Ž \×\ìGP\"\Õ¬‚U~ÁB|D°\äkœ\É]\îm‚+\ÎEð(Xß Á\ÏX\ä«#„¡\Ï1„0l!\Ì<‚ôu#¤\Ì\'\Ù\Ö\Ûù¼B\ËF(\ÈG]™NˆT¢w¦\Ñ7ž…\èw:„\èŸ,A¼õƒ\"†\ì\ÝC=\Ä{fbpñ!\Ó\nñ±:1:IGL¬­CLJ_±ùˆ¯\ÓÔ»ˆ\éõˆŸ› ˆ_\Î\ï¿ž\Å\"~½Eü¦\"~\r\r f\ïas4\Ä\Ü\×}ˆù\Í¿?x ~O¸!ó[«\Û+ü¤\ÊF#¤šò;R\Ó#©u\È©•\æƒ\\»\Ù	¹\Ö1\Z©\Ów\Z©G)A\Zp©H#Ÿe¤…ƒrt¹sür÷¢\Ò\æ\Âu\ä\Þ\n&roO\Òvw\Ò\î\0i\ç?ƒ´\ëA\î;G\îß¾¹_‰´÷½ˆ´ #\àH§\Ù<¤ó\Â¤‹¯òˆK-\Ò\íW\Ò#†‹ôø=<\æ>„<\ÎWGÿŽ@_.Ez\×+‘>³¯‘¾\Ö(¤\ï\Ç¤\ï¯È“Û½\'Û¢Cd°\"²>\Zú&yº\áòŒ†ò\Ì\è+d\äy\î\íd´y\Î@Æ¥¡‘q7cñ™\ã\Èø\Çe\ÈK6\È+3ýÈ«‰-=\ÈkúdÒ¹$d²¿;2¹»™¼ø™\n3B¦1\ì\éÁ½\È\ë‘\È\ë3+\È\Û3‘7‘™Wû‘Y \n\ä\Í?d¶\Ígd®œ‹¼\Ý…\Ìß¡…Ì¯?Œ\Ìo9…,x¯‡,4öB]9ƒ,vžG–\æ\Æ K\ï®A–Ó½‘†1ÿ{|ð\×YiR†||EÖ©ø \ë\ë\rþ†\È\Æy)òyg5²9}\ÙÜš‹l]\ZB¶\ÍA¾üÛl­C¶C¿\"_¦\"{J€\àHp^RBB(\"$4\ë&ö¬\0	C\Ô#*NH\äO$\Æ\å*\ÇEbrL›)$½IŒd|¼Žd\îA²«m‘œ>Hþ\åv¤8h	)¾\ì†<”\0\Þ ¥—3‘\ÒÜ‡Hi\í.¤”†”~úƒ”‡\Ì#\åŠ|¤©\ìHBvy\å »\ã\n¯¯‘ýÎ‘\Èº1rD¾soA¾\×\0 Gÿ?\ãS\ÜIä¸ƒrü\âMä„§ù¥ŠœD\ïANE\"¿\î\ÈEN\×\"g\Îs‘?\rò?\ã\à\È\ß_1\ÈÅž%\äß\È1(\ÕK”\ê\Ç\r¨Uj§P«<QjA1(u¥qN†\ÒHWCi®¶Bi¢•¨µ§ýPkÙ‹(3F(G\ÛP\ë/C­…Z?CmÈ¯C\é\ìBm4ý„28MGm\ÒùŒ\Úô\Ôe|x5\Ê8\Æez\èj\Ë!Ô–ûI(}m”Å¾\ç¨Ì¿¨]/\ÛP\Öù\×Q\Ö2C”Í»XÔž¨u¨}«•¨}Þ£(G¶\êP\ã\ê\Ð\Ü\0\êHI=\êH¿\Ê\Õú;\Ê\íd\Ê-†r\ëoGy3Q\íP\ÇÀ(\ß\'Q\'\æ&Q§\ÞDù{†ò+P©6¨\à£GP!þ‰¨Œ*<\'>?„:\í\ËEñy:Sµ	u¦Á±|\ry\Ëu®/·}\Ç§…Š»÷\r÷\Åu‰¸\r•½ý;P—=V¡.w\ËPW¢MPW\ËÅ¨kÚ£¨”\ÒT\ZA\r•ö\Ëuý†*ƒõ•\éñ•u\æ2\êfd$\êv\Ý?Tžõ-T>\î2*ŸÞ‰ºóµUtoU\ì\ë*®_A•ù \Ê.´ Ê·¨ \ÊO¡P}e¨›ŒPZ1¨‡k\ÜP!“¨Jv	ª:2U\Ý@=n.D\Õl\Ð@\ÕGÕ´\ë£jK j•~¨zH)\ê\É\Þp\ÔW$ªÁ›ƒjø†jÔ¼Šzºa\ê)´\nõt`õl\ÓqT\Óø\ê¹nª»ˆj\Ñ\à¢ZôP-ƒ[PmŽRTu\Õ![B½Ê¾Š\êÜ´€«¢@GƒQ {Z‚\ê \à:\ÏPð‰\0\ÂR\r…6mC\á\ÆBPx\ÕQþ¨>\nÿû!Š D€(’KŠ¼1E\í@Qg×£\è‘Pôgps\ÛE«0\0\Å\â>Eñ,> O\\P\Â\n\'”p~%:±%¾§@‰·¢dŠ”\\¹¥ˆ\è@)À6(%ª\Õ\ÕØ‡\ê\â<Du{ÁQ½\âM¨>\Zõ&´õ\æô$ª_«5 Vƒ\ZPB\rn\ëA\r&\ÑPƒ\ÍY¨w÷H¨w¿ªQ\ï²Q\ïcsQ\ï™P£:¨Ï•|\Ô\ça jŒ¾€\ZW±A}‘£¦rQ\ßT³P\ß\Ó7£f\ê§P¿â™¨_	4Ô¬6õ»uõ\'(	µt.µ¼n/j¥\åZ%\Í­‚^B«Z%¢Wq˜hu©.Zý\ï{´\æ\îhM\Ë\è5•\Ç\Ñk\í‚\Ðk_¼Ak»|F\ë@\Ñë¿½Bo:R†\Þ,¢¡Žk£¦ß¢=\Ñ&¸:´\éª´i\â=´™AÚ¬\Ú½\åP	\Ú|½mž3…6/«G[L%¡·®±Do·}ˆ\Þþ&½#\ë(z\ç]?ô®÷ô\îÂ‡\è=J9zogz/\é:\Ú\Îözÿ\ãm\è-pôoh‡_\Ãh§x5ôa\ì5´óÚ»h—ô‘±5\è#\Ë\0´«¡5\Ú\Õ+\í\Öd‚ö ¡è &G{=Ä }©h?\×Tô‰pôI\'\"úTv8ú\Ô\Ô´ÿúX´ÿ#:p¬$ CFó\Ða\ÏÐ§µ5Ñ§ÿø¡#‹\Â\Ñ\ç\n7¢£¯½BGÿ3C_p\ËD\ÇšF\'\è­B\'üÄ ¯4nC_i\ZA_£‹¿¡Ñ§\ÐIQŽ\è¤Û…\è¤\ÅDtZûNt:¹¾Gg¨ŸFg\â^ ož@\ß\ìÚ†\Î@gcÐ¹¶|tþ\Ã3\è;mbt\â$º(L]T\Z‚¾W&@—Oy¡ò¤\è*ÿ6tý\0ú(]]\ÉB?\Þ-G?¾>‡®YLG×Ÿ)E?QœA?«1C?¿þ\Ý\Ü A·¨\ÜF¿8ƒn¤¡_-|GQ\ë\ÐÀ\Óh°\ÛU4ü‘\r¯¹ŒFj8¡‘ù\Ýh4\r‰\Æ4=@\ã4¼Ð¸\Ãýh£Mð\ZC“\ÞoCS\Òo \é\Ð4\ëy/š{º\Í_þŽ\0\êÑ‚·¯\ÑB\Ð(Z¤ú?\Æ3´¸3\n-9Ùƒ–m*D+X{\Ð\ÊP-´’õ\Ý\ÅþŒ\î.Dw·¢\Ð=‹z\è\Þ\Ð}¡\èþ“›\Ðo‘tô»…!ôû0#ô£\Í\èÏö£?\×\Ñ\Ðcö\Ù\è1OôøN\rô„\Éiô 5zJ¥=•SƒžzˆD¸„þÖ‹F\Ï8\îAÿ\\Aÿ\ZBÏ¢¡\ç||\ÑsuN\èùŒ\èEƒ½\èE—ô¿\É+\è•Öƒ•0/ÌªcZ˜\Õg¶`\Ô\ì\äõDcŒzcfM£\Õ~³Ö´\r£]\ï\Ñ~–„Y—)\Ç\è¬#cÖŸ	\Æ¬ûˆ1¨«Ál\n\Ó\ÂlŠYÙ”ô³Y÷fsn0\ÆøU7\Æ\Ô\ï7f\Ë`<\Æ\Ü1\Zc\î…\Ù\Z{³UP±4\Ì\ÄX&\\\ÅX²?`¬b¢1V\\ fE1\Æö*³Ï³\Z³Ÿ›‰±¯\Ô\Ã}Š90f‰qP\Ä8\ìÁ8\â\â1‡R–1‡ˆg4\Æù\ÇmŒ‹\ÅŒ\Ëi5Ì‘ðEŒ«q-\ÆÕ²\ã~HŽñŽñø\æƒ9jdˆ9V\ë‹9ö7\Zs\Üosœðã£›‡ñ±¹ññÿ‹ñM<ˆñ³ó\Âø]0\Å\è0ñÍ˜ÀŸ™˜\à\ÏÉ˜\Ð\ÚL˜\ÅLxó^L8ø-\æö&¢\æ&b\å>&úñ&\Ìyl\0\æBŸ&F¯[cŠ‰[·“((\Å\\S?ƒ¹\ÖŠI:þ“|,“…Ä¤ha\Òm1\é\É\Ç1U17ú\ã0™z{07o217\Ç\Ïc²‹bòw\Ìb\n‘L!ú¦‚Ám¿ƒ)\ÚñSÜ‡Ä”\ä¶aJª1e1—0e¿¤˜ò\ï0\ÐVÌƒ\è\Ì\ávL\å–O˜*%\nó\È‰y\Ä&c-_\Æ<>kŽ©1\è\Ä\Ô,cj\îý\Å4\ìÚ‡i¦bžyÿÁ4\ï\ïÄ¼¸ù\Óv\Ýóò`9¦]\'\ÓN;„y¾xDÀ\0\Ð5\à\ÂD\ï;rz\é\é\Å@CL10n59ž…Ay\ÅcP^T,	ƒŠß…A«üŸð–&lƒùÜŠÁüþ…Áùbp9\ÓÜ†`ðCŠ»‹¡ôl\Æ\Ð_`1\Ì-NA†O\ë\Çð‘\ã{Œ¢À\È’0²\Å;¹\à;¦\ë\Âk\Ì\ë½y˜\×M+˜I8f8\Ò3üa7\æ#’Ž=ˆù„Ø€™\ÐûˆùBŸ\ÅLžý™D»c¦ò]0S=˜¯\îN˜\é\Ìôœ\n\æ@Šùu„ùõðf®‡€Yð¨\Âüù9YüÛƒYn\'`–¶˜\å7w0+\à	¬\êùµ\ØU°«\ÃS±\êOÜ°\Zx¬\æqvÍ±CØµ}&X\í\Í#X\í–\Øõ\rXýšO\ØMœl¬¡°k¼A5.:5þ²‚5E\Åb\Í^øc\Ísc\Í\Ñ]X¿&\ì¶\ÊN\ìö\Ø\ï\Ø\ä\Ë\Ø]·z°VK°Ö»†°Ö‰NX\ëd¬d-\Ö\æ#»¯[Ž\Ýo†\Ý?¬…=`ÁÁ8\æ†=è´„=x\í:ö`÷m\ìÁ\Þ3\Ø\Ãy™X\ç´:¬3ü1Ö…û\ëz_„õ\Ì\r\ÅÓ¾Ž=\æð{,\â\"öø9öø²:Ö§Ž=Æž¨²Æžœ2Çž\ê´\Çúw-b`Câ—±¡\ê-\Ø0\Z6,€\rÃ´c\Ï8&b#œl°½%\Øs÷8\Øs\Ð$lô	ö¢b\Ç-À^ò\Â^J¸ŽMH3\Ä^9¬‹½Jr\Â^\ËXƒMúmŽM¾\ëŠM.ý†M{í½¾ð\Z›Ñ–½1p›Y–\Í\écsóK°¹m¯°¹\Ìz\ìm\ÎUl^\änlþ°1ö¿[\è-j»ˆ-\Âa±÷\Ö`\ï/a\Ët>c\Ë\ÜÍ°\åyll9P†­\È*\Å>(½}¸~[i!ÁV%?\Æ>\Þ5­W_­‚°\Ï\È!\Ø\ç\×°Ï³‚°-¦óØ–Ì»\ØV|lke<¶­\Ñû\Ò\áöe\ÂK\ìKð\ì«Nc,@ohõtzŽcb¡‡R±PŸ\ßXXüf,~‹\Ê]ƒE\Éwa±/Ë°XKHø‹%\Æ\Õc‰üX\Ò\â0–\"ð\Å\Òÿ\Ä\Ò~°t\r,\ã~–5¼\Ëm5Áò¼j°ü°f,ð	+¼Ÿ‰ðÁŠ>\Îc\Å	_°RM¬ôª\ZVö)+â‚•‹ê±Šðh¬QŽU\Þ6\Æ*;Ø®\Ò9lw\Älwc\'¶g~\Ûw\àöõ1v€$\Å0¦±&ö\í½0\ì\Û\ì»15\ì\Ð\Ø\ìûsØ‘v\ä¹\nö\ã™F\ì\Ç\Ï=\ØQƒ5Ø‰«°_©Ø¯t°\Ó\Ç*±?\×ý\Äþ\Ä+°sÓ³\Ø\ßV\ØE‘5öo\Ó\ì¿4uì¿‡b\ìò‘³\Ø\å!\ì\nÀ§R9ˆS\ÕÚ‚S}”Œ[e3ŽS÷lÀi|JÅ­y=ƒ[{ò-Nû\ËœŽX€[¯g[·€[OH\Â\é”\âô(H\Ü\Æ5Ù¸s†8ý«\ßq†N`œqg+\ÎD\ß·EŒÛ¢¯ŠÛŠ\Åã¶’\Ö\à¶_Q\Ãm¯\ã\àvcq»…q–o%8«oWq\Ö	wq\Öb/œ\rŠ\Ûsø8n\×n_®>\Îq³)\î\Ð\Îi;w¸\î!\Îùi:\îˆ^.\î\È\Þ[¸\ã‹\é8\ï}»q\Þ\Ç÷\á|/\ã|¹8¿‘ƒ¸“eopþò\\€ö.\\\0*ø„\">\Æ	\ÃqÁ=wq¡wv\ãB;2paz@\Üi««¸3,\\Ô¦\\t@\'\î|P\î|§\îüd\î‚\Ä“¯ÀÅ­nÁ]v\Å]\Î[»š®ƒKlvÁ]»ÿ—l¤KNK\Â%\ßû…K±ØŽK\ßx—^—‚KÞ»~ý\î\Æ`.2†»Y¹	—\Ýw—\ë\ï\Ë7µ\Æ\å\Û\Â\åGj\á\nŸ˜áŠ®\ãJ&ºpe¾©¸²;\n\\Å–6Üƒ£TÜƒSûp½V\á*Oãª´}q5ö\á\êV©\ãê±½¸\'\ãú¸†m\\ca7®\ÆÀ52†q\Ïo\Êp-†0\\Ë®\\^÷\â\×7\\\ë\Ú^\\›ýQ\\›d\Z÷\í\ëm\Åu\Þp\ÃRp€R(Hd\á \ÇpP‹ý8\è«,b\æ!\Õ?‹C¨\Åa–\Þ\á(Q\Çq”¼“8\êQŽ¾\×\Ç\Ø\îcZPpÌ”Fs1\Ç\Ò[Â±6\Âñ\Ó\Þ\ãø\Åpü\ÇN8K=N,]ƒ“(<q\Ýn!¸n+\\w\Ò3\\\Ïd\r®÷\×(®_\á†\ë_šÂ½=t÷–<ƒ=\ÈÀk\ã\Ædþ¸qv8n|…Ž›\è}ˆûr&÷†\Æ}‘g\à¾>\íÁMŸ£\â¦o\\Á}»2„›ù\ÆýTG\ã~ºG\à~F¸\ã~\æY\à~\n\î\áf-ö\áf/U\á\æ¢p¿p‹&c¸\Å}Ë¸Å‡†¸¥?\Ïp+\Òp>x•2^e\Ñ¯js¯–û\n¯6¡‚×°\ÆkN\Âk\â\Çðk.¥\âµ66\âµ §ñZó0üº€0üú,¼M!~S\×#ü\æt\Þ\Ðû(\Þ\è\è \Þ\ÈOo¶†Œ7›c\â·4\ÞÃ›\ï”\á\Í\à·nÛˆ\ß*D\á·{F\à·3­ð;4Tð;²eø]Ž_ñ»5CðV\â\n¼¡\nÞ†Ÿ„ß“¸Œ·­5\Ä;TU\àþ\Æ;ùX\â]tŽ\â\ä|À».\ç\à\ÝÎ“ñn#½x?ñžžø£óx¯ójx¯IGüñƒx¯8¼\ÏñN¼¯\Ðb]þ¤\ÖAü\É\ÝFø“ø-ø€õ=ø \Ó)|\Ðð-|ðþ<|ð]|\è\í%|˜ª->\ìe	þô\rø\Óagñ§\ÉX|‰<óµf>\êeþ\Ü|ô¶\nü\â(þb\âN|\ÜN>\Î5© 	Ÿ°?Ÿ½\ZŸð	+)øË§\á¯X|\Ç_ñe\á“L\\ðÉ‡QøG|†ÀŸE·\Ä\çt\æ\às¤©ÿ«\Æ\ç:­\Ç\ç\r\àÀWñw\'œðEQMø\â¦|i†þ\Þ\ÏBü}ý›øò\àz|ù\Ý|\ÅY|ÕŽ/ø*—\n|•k&¾\n†\ÆW	ÿ\à\Ý~ƒ¯ž–\àk\Ë3ñu^Qø:˜¾®…o¤¼À72Ÿ\áy–ø§§jðO\ÃKñO\Û øÖ—›ñmcªø¶Ÿ^ø—¶ø\Î	3<À*\Üm‡‡\Þ\âaa\ÍxD¤\ÈÁ#Ú¶\âQ‰cxt\É4ž°\'\rOjWÇ“\ÏlÁSU\Ðx\êžP<õ/O\Ów\Æ\Ó|\â\é©-xúJ7žY‹güP\â9vx^À¼ÙŠ÷,\ã¥N~x)\Ô\éžx\Ù[^Á\ç\ã»2—ñ\ÝN\ã{vrð=®Ÿñ=c%ø^p1þ\Í>w|ñ-ü€›þ-\ïþ\íkü\àö\ÛøÁ\á\Zü°w\'þý\ê{ø‘\Õ?ñ#\Åbü\'Ýƒø\ÏY±øÏ—ð\ã\ßñ\ç\éø/‡ž\â\'S·\á§.o\Â]-ÁOÏ–\â¿À\Ð\Å¤†ÿQu?“}?\Óú¿Pp\Z¿ ±Áÿñ}‚_Œs\Æÿµ\Í\Ãÿ\Å]\Æÿý‰_ùOPybJP}\ZBP3t\'¨+a-\Ûs„µ—\âk“l	ÚŸ?Ö8AX¿ö!aC\Ð=ÿ› ›\ÖD\Ð\Í\ÛB\Ð3ô\Þi6,ôA\Éý™,Â¦\Û@\Â\æü·\Ãu±\ÃôW\Ã\Üi‚Ñš!‚\Ña‚±ù‚1\áÁx\ìÁdE…°\Å1˜°¥\æ2Á\âV\"a\Ç\êi\Â\î\Ì‚õƒÂžƒž„=•I»O†ûø‚=ªšpÀ@…\àpƒApƒ	ß¢´‡S?\\\Ýþ÷ò!Á\ÝfÁ\ËÆ‡\à\å\ÓKðJi\'[\È$_s˜p|0‹\às\àÁ§f€\à;\ZEð\ëN#œØŸE8u\ä!¨µ‡l\æCÝ•BWN›\æN\ç\êNÏ¼\'œ\Ùø‡pf®\åºH8¯\Õ@8[BˆBb­G±ˆ„‹µ<\ÂÅº(B¼)!~4˜p	dJ¸«F¸ZSK¸ºKH\Þ\ãIH}2EH‹YG¸þ<¡\ZK\È\Ø^O¸±$#dVœ\'d\"b7¿&d¯9@\È~¾\ÝfE\È)8O\Èó_C\ÈL\'\Ü1A\nwž&³\ÅKxBÉ¥\ï„RB\é-6\á\Þ?\Âýž9B™\ÉKBÙ®BY:¡‚D¨\è!T,~$<8ø“P¥jBxt$ˆð8>–P«5K¨\Í\ßD¨wª\"<{J\"¼((\'´\î¦Ú·\Ú\Ü«.:ƒ	„ŽÏ„W—v\0ƒ\êÀ\âQ(&€o	\à‹C°\ì	À#@>d\à?-\è_\Ö< €Ÿ›\'Sþˆ\íMòös\Êj=\íž\ãE`®\Ë%°\Êk	ì‡šŽú g\×G\à\ã¶„\ÖC!K› ~ƒ%H«\ï¤½û	2OB\×\ÃÛ„n+¡s†\Ð\ã\Â!ô®…zO&zS>\ÞL~%ô¯ùH¬M%¼{•J\ÚDªýFV\Þ/‹	}“	¯IŸ\Ö<&|\nR\'|®ñ\"Œ\'¨&»ûSw	SÌ­„©®W„i\Ï_„\ïÑ„\ïw\æR\n	ó\rÞ„« Â¢\Æ_\Â_³K„¿iz„ÿºØ„\å\Üß„•¥)\âªkA\ÄU%Ç‰kôŠ‰kô_µDp¢vc\rqý^=\â‹h\â®q\ÃT\nQ7{€¨~ˆ¸±TN4Hb\ržV7ú\r¯x\ZoˆÆžµDs;¢™\Û¢\Ù\Í1¢\ÙŠ¸µ\ê\Zqûš\âöSsD\Ë<9\Ñ{›h\ÕjJ´öS!\Úxo#\î\Í&\î-_O´\Þ&\Ú\Ù#‰všD»†&\â¾O\áDû½ŽDû©\âŸ3\Ä³‰W›~K%:\É$:\Æ\ëºWˆÎ“»‰n¾·‰n\ázD·6\Ñóz\Ñ[œ\è]\áJô†[}qÁ\ÄSI\Ä\0\Ûw\Ä\0øZb\àX%1¨Ü‹\ÄýN‰\ï †ôl!†žŽ#†^\Ö#Fª}\'FAöc\Úˆ1\ÓÄ‹®º\Äø$\â\å¤+\Ä+\ë…\Äk€%b’m:1‰$¦<G¯Ã®3i­Ä›/]ˆ·p¯‰\Ù\îÏ‰9\É\ÍÄœº?\Ä\\“‹\Ä\Ü>\âmÍ¿\Ä\Û{\ÑÄ‚k\êÄ»vF\Äb\Ë\ÄR\ß6bivñ\ÞD6ñ\Þ7ñ\á†)\âC‹UÄ‡\Þ6\ÄG\Ä:ôb]ÿ6býþG\Äú\ã\'ˆõÍ¡\Äz\é$ñ\É\'\âÓ+\Äg\îgˆ\Ï\n¡\ÄgM\ë‰M&pb\Ó[b“\Ïb\Ó\ï½\Ä÷<ˆ/Z#‰/¯©\Û\ëŽ\Û{Òˆ.³\ÄôE\â«\ì³Dõ2\"ºB„	‰P\Þk\"\ì\ÄF\"<\èùA\ÄMkñ·´ˆD\ÝoD2p7‘üÎ‚\È\ØfMd1‰Ìƒ7ˆL\ç.\"ó\å3\"³w’\ÈÒ¼BdA	DV÷n\"gú‘Û¯I\äþúE–X\Å\Óo‰’\rD©\ç=¢´·ž(\Ë\Ó&\Ê\×»’\çˆ]\Ü^b7=ˆ\Ø\Û=M\ì£È‰¯\áX\â[s7\â;“g\ÄwADâ»¤Z\â;\É(q\\B¾‘G|__O¹Lü@¿Düü!–øyf#qÌ§ž8\Ù\âNœzu‹ø•¼“8M¹Lü¶Y@ü¾\Ð@œ9Mœ\éK&þ÷ÿ$\Î\Õl%\Îoô\".\Ü\Ì$.üûJü3<H\\<VG\\d´ÿnýIü[FüÛ²Ÿø\ïG\Zñ\ßoM\âr›¤Å“T\âHj\Zú$µW9$u•õ$õ\'\Þ$>)I£?’¤i]H\Òf\ì \é3H:ŒI\ë_%m0.\"mHº?<H\Íþ6&\î!mš¢’6òH†µOH†BG’Q”dbgO2Á\Þ%™>¼@2\Å\ì!™E®&m\É\Ï$™{Y“\ÌÃ¯,n–‘¶t‘v?ºH²4\í#Y\é\Ü!YÑ…$kó{$›\Þ^\Òþq*\Éqú \éP\0št˜®E:¬ø@r¾…&¹l>Fr1õ#yT“<@kI>«}H>¿E$Ÿ\Å\"’\ï±l’\ïøk’ß-$¿¤S\ëÖ“N…ZÎƒI\àvRp\Å/Rhx\n)´Ä™\Ú3@\nC’NûÏ‘\"6:\"\"\ÕHg½I\çõŽÎƒ_‘.\ÌKI1GÏ“bž\ÓI±õ`Rt\')þA:)\ÜDJ(¾DJ #]±÷!]]ŸCJŒJ!]{FJÊ™%eD˜’23\rIYHY<I·*³HÙŽ\nR\ÎD\n)—\äEº\íUI\Ê\Ó\ÝK*Ró#•D“J¶‘J–ž\î\ï;E*ó8Cª8ó›T¹Ù‚T\É#Uõ›•-jTIµS§I\r\í-¤Æ·÷IO[–H\Í\æ<Ò‹o2R«hŽ\Ôf­Kj³¿Ej\ß`Nj7ºDj\ßGjÛ“:´O“:\ÞÆ:†\ï‘^¹i’^ý\ê\'u6>\'u¾°!LŒH€V%	ø\á>	|‹Og«‘À¯·“ ŸgI\Ðÿ{	{ƒ$Á¼#!³$\äu7*.š„¶M%¡Ï·“\ÐóOHx½Lþj ‰ˆ(\'‘~z“\ÈÆ–$r\Èõ‚\r‰¶q‰Y\åHb]‡’8WIœ7&$žÁ@\â\ë,“ø\ÛI‚«oH\Âf$I´\ê/I\\qŒ$\ÜE’©ú\ä	I!ÿBR^0$)™¶$\åÀmRIN\ê\Þö\ÔóšM\êY#\r¥Ú“†Øµ¤¡\Þ0\ÒûžO¤`1\é\ã\èGÒ§Œ\Òøªó¤ñþ\nÒ—»i¤¯Û¾’¾4H\ßúŒH\ß7óI?·\ß\"ý\ê\ÜKš+<Cš\ëÿ@š\ßOZX\ÝMZ\È\ê\'-@ú·Ç´|0ƒ¬&«t+È«\íÉ«‹Ž“Wÿœ&«E\ë’\ÕÃž“Õ¿Y‘5\ÔN’54´\ÉZ\ÃO\ÉZ¿g\Ék\0\È:f~dVòú³®\ä\ryÈºšt²þ½-d/yS\Þ Ù¨ÅlDâ’³\É&!\Ï\È&“ždS^\0\Ùô\Ý:²YV\Ù<\ç\ny\ëfò¶8còv\ÙGòµ\"ò\Î\ás\ä\Ý÷È–§.‘-‹\Ê\ÉV9²!…lM¼B¶–U‘­ÿ@\È6‘w\É{a\åd[\r\Ùn\Û*²-™l\×!#\ï×™%\ïç™\í\ß\ÉEAäƒ‡Þ“^\";\ît&;*\ÈGJ×“\Ý\ÖÎ’Ý†u\È\î7À\ä£CG\ÈG¨’\Ý9Nö†›“½\Ædßš\ç\äVx²À)r h59ð\ÓMr“„³\"õe’ƒO:ƒ‰y\ä˜9Ô¥’vª\îpŠ|:Ð‡|úþZòizùŒ±	ùì‰µ\ä¨\É\ç.§“\Ïÿ!_(‘cþ™\ãò^’\ã‡\ÓÉ—X\ä+\Øò•\Ïä«¥tò\Õ\çK\äk·U\ÉÉ·~‘“+Þ“SôšÈ©flrúzrº+9\ÝW“œ>òœþÅ‡|½*ƒ|ýQ79\ãj/9ƒ\ìK¾\Ð!g\Æ_#g>„’ož½K\Îþw›œó¨œœ°@Î­}A\Î;\ÜNÎ£\ä‘ó=$ß½jC.,\É&V-\ä\Â÷\"r\Ñ\ÅyrWJ.\Þ\ÓN.Ý­G.\r¼A¾o{‡\\\æ:E._\çN./X!?\0= ?¬1!Wö\ß!W{\Ã\ÈÕ\é\ä\Ç÷\É5¿^kµ‘\ë®\á\ÈõD¹žD~Z2K~&R#7 \È/|[u†È­g\ÉmºW\Ém·ò\Ém\Ó\ä—\î]\ävCr\Ç:ù\Õy4Ø–@\Õ\\$C”D2d€@†\Æ\Ó\È\Ð10¦ú‰Œh½H\ÆVµ“qo\É\ä;2qŸ=™T\ÐD&#^‘)&\Éôö82&3x¶dvû;2\çˆ5™óõY°E—,<˜,,‹\"‹c\Èb\ï\Íd‰\æYrÿYz3€,‹V!\Ë\ÉZä®±Jr)\Üü›üH&”f‘ß‘J\ÈC~E\ä\ï\äQ³,òg×»\ä/‰\Ý\ä/CÁ\äÉò”³ù«\×sò{`ò\æ\nò3\ä­\ë\É?\È?6¢®“m\"ÿ\\l!\Ï~úBž<DþE^Z“N^zx€üwQAQ\ÕQ§¬\Ò9LYµa‰²\êš²\ÚKQÛ€¦h¼Ÿ¥hüdR4÷ß¡hÒ‰”5R2eÍ#-\ÕZŠ–Ôž¢ûª‰¢÷’N\ÑùC1hÌ£@\ßR\"(›´S6CöR6c)›gŽRŒ¯|¡˜¸o¦˜L0)¦u)¦\ì(¦òg3½!Š\Åe[Àm\Ên/#Š¥OÅ²\nF±\ÞA±vò¤XWGPl\éRlÐ”}z(ûn(ûa”ý¡G(öf”\Þ\ç(ˆG)A)Ž\æ$Ê¡/)‡ ±0\åHóg\ÊJ)Å­4ˆ\â\Þð‡\â¹;ˆ\â\å\ïEñ:—M9¶³r¼%ƒ\âGÓ£œ,\âP¤0JÀû½”\Ð?O)aM”3”È“µ”³¡­”ó«R)±Q.”8•û”8F%!N“’0žrYc†r\ÙO¹ü ƒr¹\'…r\åh\åJ\Ì\ÊU7k\Ê\Õ\Îl\ÊUøJb\á(%±HI\æ·RR>úQ\Ò\Ì\ïP\Ò*¶P\Ò8”ô7J\ÆYJÆ“\0J\Æ\ÐvJ¦o\'%óŽ’)½L¹\É\ï¢\Üêœ¦ä…’(y\ÏT)w>q)c”»7Q\î>\ÝF¹;\ÐH)Œ{L)2Ð ð£”x(÷m](÷¿\ØQ\ÊAJ¥k5¥Zý6¥\Ú|ŽòX/ŽòI©ë‹ \Ô)\rö[)O;)\Ï\â])M\Æ\é”&¯fJò$\åùÁ\Êó\\<\åùýiJ³&ŠÒ¢SAy!²§´\é0(/Š(Ž/(\àuYpý LM¥@¶\ÆS —\Õ)°ö}~%€‚¨k£ \Ö}§ \â·P0Ng)\ØL\Ë@Rð%\ç)„\na;B²\ÙJ!k ÷fP¨[7Ph\Å-†\Õ\n{\å\r…»ÍŸ\ÂM«¦p\ß7Rxû‡(¼¤{Á•QŠ`\é0Et¹\"m?I‘þ¾D‘yR\ä=0J\Ï\Å6J¯\ç¥7÷0¥—Oy]’A8~Œ2´Dø ¼¢P\Þý¤¼\ËfSÞÀ(#g²)#7ó)ö9PF\Ï¥|¾±…òYlJ_u–21bKù²L¢LuÞ§L¢(\Óv¶”\é\Ã8\Ê÷Z\Êw\Êc\Ê\ÏMu”Ÿ\Þ\å”Ù”,\Êü1c\ÊB\Ç\Ê\ïôJ\Ê\âU=\ÊR‡1e\ÅJYùRAU\ë?I\Õl‰¤jNRµ¢V¨Z}0\êZs	U;Ã•ª3ºŸº\áa;U÷\àU÷Á\nU\ïƒU?Ï„j°!‹j\0\ØB5Xj¦n^mF5\"\êQ\×RMŒ©f\Ë\é\Ô-}©æŠ·T‹/›¨Û¶¤P·¹]£\î\Ì]K\Ý\åt›j\éŸGµLÎ¥Z\ÙP­µ©\ÖQm\Ô=%\áÔ½Ÿ-©v+ÁT{÷\Zª=\àÕžE¤\È\ÙI=ðxŒz )zp¡‹z(e˜\ê$þJuC©nÁÁT·\Ð.ªû‘ST÷À1ª»À\ê¢z–&Q½R/P½P}2iTŸª\ïa{ª\ß:\Õ\ï\Çz\ê\É=ó\ÔS§+©§\Ô\à\èU\Ô¨>õLòjT†z\îcõ\ÜujôiCj4žD¦Sc~¥S/n\\G½˜\ÐI/Ð¥\ÆW|¢\Æ/ð¨	zS\Ô\ÄòpjÒŸc\Ô\ä“O¨\Éü$jº¡z}\×{jft3õ\æû‡\Ô[«‡©·Žþ¡\æ\Ún¤\æŽPsùw©¹C«¨·B¨y\á~Ô¼K¨ù¼\Ô|EõŽûIj\Óµ\0ñ†z÷\Æ$õnþcj	džZºË”Z¶\é,µ\ì\ê-j™²‹Z6ü‰Z~É„ZñH}pÝ“ú\àÁC\êÃ‹\Ô*\ÃU\Ô*Àgj÷µ\æ\ÕµÖ¼–úô‚\rµ©öõ9Ä€\Ú|¥ŒÚ¢-£¶|\âQ;7­¢NQ!FUT¨\ÑI*ô…œ\n\ËK¦\"ª¼¨\ÈûóT\Ô_*Žó˜Jd¥’|{©\ä\ÅN*5ºJû¾™\Ê,q òa\ÃT1JD•8•P¥ô¨Òº»T\é\ìjªŒ„¥Ê¦\ÖP»\ê˜\Ôn¢µ[~ž\Ú–O\íA…R_Ã®Rß¤\ØRû¿¾¤”USšQ\ßfûQ?l+¦~\ÌL§~\ÞO\ÕùJý´6‚ú\é\àW\êX5:\î\ÒKð§NR¦¨“oƒ©“Ÿ(\Ôoˆ*\ê7\Î	\ê÷\É\êJu¦ŸBýµùuùR:u¥lš¦{@S\Õ1 ©~‘\ÐVí¯ ­zPISó\è ix=¤iö£­ñ\n£­yÌ¥i\í.¥i¶£i¯&Ñ´·i\Úÿ’i\ë\Ìiºva4ƒ\ïÓ´M¬š\Ñi!\Í(\î!\Í\è&f\ZC ™Ê\Ó\ÌJ7Ó¶hShAc4‹¦(škš¶õ\Ô3\ÚVLmûú´\í3_h;}¶\Ñv\Ò,›,h–ýJš\åDÍªù<\Í\nSA³þL\Û#\ÚJ³U}K³\Í \Ù]zL³+F\Óö­w \í{\×J\Û©v\à\ÍÁv˜\æ\Ð\\Js\ì B{ÑœÀi.üÚ‘ò‹4\×S4W\Ä$\Íõ\ë[š\Û=2\Í=>˜\æ^ý\æ^¯Kó¨cÓ¼Ž^¢Wz\Ð|ô\Ñ|\É´“Û\Ò\"h\rž´ ŸJZ0h=-X|’v‘H»v”>¤¹ûŠi­ E–w\Ò\"9L\Úù\Úy[Z\Ìk*-\Ö4‡ûü9-þü\í’Q \í\êB\íÚ¾\r´kcdZ\Ò,-)…LK‰\ßBKMÉ¢¥¥\Ù\ÑÒ«/Ð®_˜¥Ý iY‘´›#$\Ú\Í9´[¤c´¼‰´<\ç Ú\ØHZ\á!­Tø‚VúF»\ß`@+“—\Ñ\Ê7Ch\å,CZE\ê\ZÚƒ5{h5\Ó*-fh5\É=´\Z\á­\Öý­þú0\í\É\Ù%ZƒY5­\á¶=í©·\í™\ÖEZÓª/´¦#Ú´\çá½´\æ\Ä|Zsœö\ÂPN{a¾‰öb·­UPA{\éöƒ\ÖañŒ\Ö¦½RýC{Eq§½šj¦\Öo¦O\Ò@EWh1\Zô\ÇA\Z:Oƒ\ï§Á¿y\ÐC@\Z²ˆO\ÃNu\Ñp4rùn\Zõ½?z‡F\Ã6\Ð\è%L\Z#J—\Æ\Üûž\Æôþ?†\rÑ˜J\Z«t\ÆÂ­§±·ü/¯ŸÆ‰‹£qh\\\Þqš°J\Ñ\Äk„4\ÙÁšŒ„¡\ÉE4EY\Z­\Ë=‰\Ö\Õ5L\ëÊ¦u7m£u/®\Ðzki}\ÆÞ´>\çk´>o­/Ox5Cô‰¡\rÞºA{—XE{\'\'Ó†L{hÃ¥´÷«Á´\è\ÚN,\íjš6ÁCÓ¦Ì¹´o{X´o9»i?^¤Í¼¶¢ý$\Ô\Óf\rúi³¥\á´Y\ìI\Ú\Ü\Æ>\Úª—ö\'©ö7•Cû+]C[I¤­<,¢«ô9\ÓWIû\è«u:éšƒ\ék¬@t­\í7\è:v\Ò\×/Q\éD	ô\r=éº±³t\Ý\Û;\é=ÿ\Ð7&L\Ñõs\\\é;\ç\ès\ë\è›ú=é†™[\é†\Ï\ÖÑ‹\è\Æ9ýt\ÓYCú¾\Ý\nH\ß!ÿK\ß1ó¾\ÓI·ñ¼K·[\Ñ÷\îK \ï¦\Ð÷‚\0ô½¿\î\Óm½k\é¶\Úô}ŒMôý\ç\Ñ÷Ï¸\Ð\í2\èö18ºýý}t{l.ý€\ãqºÃ„\ZÝ±m‰~H´Hw2_¡;=}K?œ€\î¢QB?²cÝ•3IwýWGw{¦{˜[\Ó=õŽÑ½^N\Ò}jEt?0ýDS=7NüC‚Á\èa”dzø\èezø‚.=ü¯\rýL¢-=\â¤=bù=²Ëù«µSA?§öŒkH½\ÓL¿XÉ¦\Ç¹A·9O§¯\Ð\ã§N\Ñh>ô„Á\Çô\Ë<ý\Z‰EOJøKO*\r¢§\íl g˜ñ\è\'Áô=³ô›¯v\Óo¹Þ£ß‚û\Óo1ª\é·~a\éÙ€;ôœO\ÉôÛ¼ô¼Áô<x=ÿ”\rýNö\'zAm8ý®\î4ý®û}z¡\Ù]za½°ñ3½ø„\'½´•D/…z\Ñ\ï\ïR£—ó¡ôŠ\0MzÅœ½jG½Z¨C¯~¿Hl¡×½( ×½d\Ó\ë†9ôz\ç?ôÆg\é\ï·ÓŸI\åô&GzS*½	VFo¢÷ÒŸ=£?Ÿ~JoŽn¤7§z\Ò[š?\Ñ[ ©ôVƒ\íô¶ý¥¿=½\Ý÷/½ý\Û8½£w™þ\Ê4‰þ\ÊÖŸþ\Ê#“þ*f;½\Óh3½³I“@\Æ\Ñot\éÀ7Qt†D‡ÆŒÐ¡B0:nE‡i\Ó\á	Ut\ä\Îf:ò\ç{:ÊK\ÇD|¢c*ú\è\Ø:%÷G\Ç`\éø–tÂ“·t\â•x:iG>fB§©iÐ™\Û\èL–Œ\ÎJûEg\Þ\Ó9tW:\ßMB\ç\ç}¦ó›At\á\é·tq\Ègº˜º.9r†.½§K§S\éò›\Ùte·½\ë4‘\Þ\Ë \Ðû6G\Ò_G¾¦¿‡\Ñû\r\ë\èƒ¬\é#?\é\ã:.ô‰Ý“ô‰®ô/ùú‹>õw/}ú\ÊCúwwoú\Ãô™šhúLþs?˜þë‰’>\ïñ>S…>_FŸo=Oÿý¬‡¾\ä£ÿK²¤/s\ì\é\Ëo\Æ\è+˜W\ÕCŒU\Å\Íµdc†º\ÉS†z\\C=ý\ZCý\æC«pC«ÿ6C\ëŠ¡³\ËX†36\ìú\Í\Ø\0qb\èþ\ÐelL^bl„~`\ègk2BŒ\Í\åŒ\Í=†¡\Ú\n\Ã\Ð\è\Ãð¥Ã\Ú\Î0=šÌ°8\à\Í\Ø:z”±­T…±½4—±³0™±«\í\"\Ã\êM	\ÃZ‡É°>dÉ°\ä3ö~d\Øö\ç0ì‚…ŒƒOY\ÇuŽýAŒÃ‚-\ç#O\Îƒ\ÎEC\×_†ka\Ã}\ßu†û„\áqcÃ£i‚qtg2\Ã\ëC\ãX¥\ãXŒq¼#ƒ\á+\\\Åðó\Å2N\Ê\'ƒ!ŒS5wþFŒ€\ÂjF ýOFð¡FˆŽ*\îd„›ó§\×ýdœ3\"\"Ÿ0\"^Œ³ÿ(Œ(Žqn\ÕGÆ¹ô\ÆùÝ1ê³ŒØ­¿=-qVƒŒK¿T	¹Œ¤\ÂmŒŒ]FFx #ƒ\Éa\Ü(B2n|b\Ü*qf\äm~\Ä\Èe\ä/\Å3\îþa\Å<g” /1J‹º÷œK÷7\Ù1\î\çq÷ñ:Œ2@!£\ÜBƒQ¡1È¨$ô3jn\ìf\Ôý 3\ê\ëÀŒú÷\îŒ\'u»\rµM…ÍºŒ6\Ç/ŒWmÆ«{û€—\å\0lž^»…¾lÃ€¨ob@Þ˜0 ÷°+VD\å6\ÇÀ\Ç0p\éSÂ›bN1ƒôð\'ƒºÞŽAo¨eÐŸe0F\Ãœ³\Ú®Z3ƒ·Ñ–!ð\îbˆ\Î\å2DW¯2$\ÏO3¤\ï0\äay.Ÿ!Ÿ¹\ÆP4Š]EŒnH8£GSŸ\ÑÓ›\Íx½9˜ñfO%\ã\ì:c°$€1Hg}û\Ìx¯µ•ñþ¥„1’\ï\Ë{ú‡1á½šñ…n\Ëø\Â+`|:Ì˜\Òú\ÄøÚœ\ÎøV\ÞÌ˜\Å1\æ0wW;‹‡Œ¥œa\Æß€4\Æò\Ï|\Æò\ïl¦\n\Ê\\\Åòfª\ëüaª\ß\Û\Â\Ô\ÈRg®•%1µQw˜Ì«™?$1\rO™›z1÷v2[™\ÆK\ÚL3\ËN¦y¬s[‘ˆ¹ƒ\æ\Ç\ÜY\ÜÈ´l 1­JW˜6\Õw˜{&‹˜¼62\ß_f¾üˆy8\Êtþù—\é\Òj\ÍtA˜.K®\Ì#³½L×–³L7»\Z¦{€%\Óýƒ7\Óý\Û:\æñ\ë\Ñ\Ì\ãùiLo\'\r¦G!\Ó\éÁôyý‹\ég\0fž0=\Ç<{—yÒŠ\Åô7ieú‡½aú\ç¤2\Ê&˜z[™\æ÷™A-$f¨\r–yº\æó4÷ó\Ì\Äf €\Ù\ÐÍ¼Pf^À˜±[n3¯¬=À¼š\Ïe^}²y¼\ÈL²ve&I˜\ÉQY\Ì\Ô÷>\Ì\Ô17f\ê„3\íB;3\ÝÃ‚y£\è3“”\Ê\Ì\"|g\Þ\ÚÊ¼5t™\Í\ÊdfOlc\æ¨\ç0o0ó\Ï0ó M\Ì;²qfÁ‰\ÍÌ‚ªXfax ³ð5Y4c\×\ì`÷1K_~f–\Å\íf–I¾1\Ë	\îÌŠW™¢\æƒ\ê»\ÌGŽÏ˜^²™Õ˜,\æ\ã±\Ì\'\ï\É\Ìg­-Ì¦[\Ã\ÌçŸ®2›k˜/F2˜­\å×™\í{_2\Û+O0\Û\ç\Ö2_nb‚:\ß0ÁúL\è¹L˜)š	?ûˆ‰\ê<\ÂD_²c’\Ìì™¤\íºLRŽ3“È¤~ÿ\Äd=f3ÙN1…[™\"Ÿ›LQ\á]¦¨_ƒ)^eJÆ˜LY\Î.¦üSS\á^\Ï\ì\Ò?\Éìº¬\Ê\ìJ)avG0{\Ã\Å\Ì\×\Û!\Ì×µ_˜oRt˜ý­\Ú\ÌÁ\È\æ\à\ëc\ÌwX\æp’sø¡s\ä\ß\æõ\Øÿ%2?\Z3\ÇtW˜cN½Ì±·Ì‰!óKp(óKø\æ\ä&>s\Ò,ž9\ÙNg~E®eNG€˜\ÓŸ˜\ß\ÔB™ß\Î0g´™3\ßO0\ç`=Ì…\ÕuÌ…Z/\æ\Â\Ë&\æ_\Â\ær\Ø<s%|„¥2‘ÁZUm\ÃZõ6ƒµ:OÀZ¶d©Ÿb±4XU,M\æ)Öš·XkúµX\ÚkD¬u•­¬õ\×\î°Ö—\ÂY\ë_t³6»²to\ßa\éþ(f\éi\å±6ªº°ôq%,¿¬Í‡\É,\ã÷\Î,“²8–\é\Ç=,³.Ö–\Ï–ùd<\ËB-‘µ5\çk\ë‡\"\Öv\æ[\Ö\rG\ÖN\á4k÷\áó,«–UZ4ËŠ«Í²ymÀÚ“Î²½È²…V°\ì’Xv\í9¬}\ïkXöÿX¶L²W\í`9Z˜°\ÍÀYNo6°\ï\×d9\ësY.)¿X.MB–‡Â’\åµö\Ë\ë\Ý*–\×ûÖ±\âj–ohË·8‰\åd²N®°N\î<\Ê:õü/\ë\è+\à)Œ\è“Á\nhf&­°BÚ”¬Ð¦+¬PI+¬L“&´dv\ÏcE$\ê²\"`Y¬s§úYÑ‹ö¬óö³.L­fÅ„\àY1ü¬\Øu÷XqG‡YW.}e%\Z²’µUþ7\ÆJ¶Hf¥–‘XiþlVzóGV:Ç•u½<‹•Q´Ìºqð+3W\Ì\Êzy™•õ&•5·ÄºuFu+ƒ\Ê\Ên\0²²1%¬œó\æ¬\\óIV®\ì%\ëöv<+¿^“UðÈº\ës‰U\í\Ì*\\~\Ç*zi\Ã*¾±Àºw4Œu¿ñ«Œ\ç\Â*Wc•?ü\Ì*o³b=ˆ/d=È¼\ÍzøÙ‚UIA²ªlX[\ÒXµýþ¬zùV\Ã[]\Ö\ÓsGX\ÏTmY\Ï\r\ÔXÏ·ë±ž£¬6%\ÖKKw\ÖK\Â«½z™õ*¡\Õiš\Ä\ê\\¶c^f\×(X`óv„Ï‚n° \élx…ºÏ‚\Î²`\rr8…²\Òc¡\Z\ÚY˜Ç‹,\Ì†…m\Î\Â=´e‘–ž²\ÈYd‹¶\ã+‹yZ\Âb™F³\ØA·ùK¸¾‡%Ü›\Èc‰§YŒKZÌ’¶;±d	,\Å\êY–\Ò(˜\Õ%qg½þ¾\Èz³[ƒ\Õ\ß\ê\Ì\ZÀaYƒƒ¿XC÷X\ïw\é°>n5e}>cn‘³F½-XŸF6²\Æ~¸³\Æù¬	”kB\Æe}aœdMöN±¦°B\Ö7y.\ë;ø\'\ë\ç¿BÖ¯¥O¬¹\É\Öü\í¬ùkQm\'\ëŸ\ÆSÖ¿“«Y+\ÒY¶j\èO¶ºš’­±w+[#Éž­iô­YS\È\Ö\ÚÀÖºIek=ck§±u6*\Ù:M¶\ÞÁ\ël½–IöÆ°vö&¤\Û\ÐÔ˜m(­a…;²\Í(Il³I8{Ë­¯\ì\í\Ï\ÙÛ§\î³wbw°w¹Œ³w\á²w¿e[†²-\Ø6¡\Ø6g\Ù6¸‹\ì½*þl[2\Û.Ú—½/ù%û\à\Ó¶£\æy¶cYÛ‘½Ž\íä¿‹}øS\rÛ¥„\Ïv£\Üe½&fqdûä–°ýœR\Ù~\Ù\ì*\Z\ì¿\Ù\'\ï°Oé¸°ý_°ýh³\"±c²I;\ØÁjLvð¡:vð\Óìµ†ì›N\ì°Ivø§yö\és›\Øg\\¬\Ùg\æ2\ØyJvÄ³+\ìÁvö\Ù9	û‚\Þ1ö70;f´\ë\ËNd^b_Koe_{\Îg_û³Št‘\ÃN¾¸ƒ2ôŒjø†úL\ÄN]x\ÈNKªe§½:Ç¾!ag\Ü\ìa\ßzcgû“\Ø9\ëô\Ø9ºoÙ·¯,²ó\r‹\Ùùòtö+¦\ì\Â\ç®\ì\â»¤Í¾‡\ÝÃ¾Ÿe—…²«¿*Øù>\ìÚ¿Ÿ\Ùõ@»ž·]¯ø\Ân(õc7Ü¯a7\æ<`?M²f?%ý§<\Ù\Ï2\ä\ì¦\ã<v\ÓD.ûy²\r»9%\ÝüÆý\â\Ùö‹¿\Ý\ìÖ°\Ë\ì¶Wþ\ìö¸v{	Š\Ý\ÎZaw\Ä\\ew4\ìawô¾bªþ²]\îl\àH0‹bÃ¾S\Øp€ý!“‰ö`c†¿±ñ;^²‰;­\Ù\Ä\ë^l’w\n›”\Ë&•²\ÉW\æ\Ø\ÔaC6­Á†MkúË¦\ê±Yðq6ûj\'›ø–\ÍCó\Ù|Ÿp¶Àö[€ña‹Î½`\Ë=.±å¯Š\ØJ=v¶Ý\è\Í~\ã\Ê\\ýšý\î‹{(\ä>{\Ø>Ÿ=\\/a¿O\Íb¿/¨a„ª±?\Üú\Âý§\Æþ|u€=i5\ÌþúAÊž¾\ß\Çþ–\Õ\Éþa²Âžñ{\ÃþYžÌžu\ÙÈž‹yÅž+>\Íþ\í“\Âþý¤ý{Öœý\çIû\Ïôö¢\Úvö\"Þƒ½4\Êþ\çˆc//¼\ã¨\ìrT\íd\Õ#8ª\è|Ž*Aƒ³Ê¹³j–\ÏYí¼–³\Z\à\ÆQûº£Y»š£òŽ£uõ,g­úgm¾1g\í\ÏQŽ¶\êj\Î:[>g]zg\Ý\Ë4\Î”	g\Å\Ù0®\ÃÑµT\å\è¾\ç\è~ý\Â\Ñ\Ë;\ÍÙ¨\Þ\Ê\ÙhŸ\Í\Ñÿ¸\Ì1x+\åòS9\Æ\ÎpŽÉ§\×\Ó\Çqs\Ï]ó\ã«8JŽ\Åyg»Jg»™g»§gg¢;g\'y€³“Š\ç\ì^£\Ë\ÙýÍ±¬\é\æX%\Ü\âX¿ûÃ±ž˜\ç\ì\Édsöv\éqöuþ\á\Øgò9m\Ñ\à\ÎÁ©%Ž#bÇ‘±™sØ£œs8ÿ\ç0Œ\Íq¦\Ü\çùò–\ã®#\çxXn\ãx¦@9ž•¿8G8p¼6r¼\Îÿ\âxµpŽ\í5\åx9>Ãž_i\0\Çô—\ãÿ\Ã	ø©\Ï	lû\Ê	r\à}_\á_p\â„V˜s\Â“œp\Ã`\Î\é„6NDŠ?\'òI0\ç¬\Õ\Î\Ù\Ãk9g\ëq¢\Èÿ8\ç®C9\ÑV/8\Ñnsœhx\ç‚\Î_\Î¢Œw:‹—\íÁ‰Ur.©\Ý\ã\\:\ëÇ¹t#‹s©Ï–“pjŒ“\05\ã\\­\Ær\Ò\Ì\Õ9iå¹œ\ë—\ê97š[8™fœ\Ì;\ß9™@\ÎM¸‚sSD\ç\Üz¬\Ê\É\á19¹®œ\\6’“—¸‰sg‚S47\È)Q—sJ·frJwúsJ™‰œ\Ò\îœûGwqÊ›_r*\â\æ9b\ça\à\r\Î\Ã\Ø^N6”S%3\åT·xrªaO9O¸=œ†õœ\ßËœ†•z\ÎSÿ!Î³•œ¦t/NX“Ó¢S\ÏiÙ¢\ä´X\Úq^\Úùp^²M8\íOZ9}Î«_¥œN•@ 9\0\Ñ0\ÝÁ¦­\ç€\Ötqà«—8ˆ]	dZ(õ´ˆƒ3½\ÌÁER8\É^\á\Ý)Ò˜C\Ê\Ö\ã\ÐN\Zs\è9%†Ã´:\Í\á¨s8œ_8\\w\ï”#¨u\ã¦¡\×Žð†	GÔ­É‘¦r8²›`ŽLp‘£<\ßÀ\é)\ìâ¼†Mr6[q\ìŸp29ƒ\ÅÎœ¡UUœ\Ñ+žœÑ¬a\Î\'\ã\Î\çX\Î\Ø\×@Î¸ø#gb\ë\Îd\éf\ÎW‰„3­&\çLoýÎ™~V\Äùó3\ÓE\ãüj\æ\Ì.\ä\Ì·sæ®­\á,˜P8‡\0œ®G8\Ëüœ·_\\\ã@®Š3Wš\ÍU\ç\Ïr5¦_sµ^\ì\åj‡§s\×}I\æn(@sõ«r7=K\á\Z\Ç\ésM^r\Ít\îs·\è¤r\Í]\ê¸Çœ¹>•\Ü\í*ý\Ü\íNr·\ß\à\î\Ø\Å\Ýqù\nwwôe®\Õ;®dˆk_\àÚˆœ¹{€Ç¹{+G¸Vc¸úÃ¸Ju®Ó™z\î\á\Éa®\ëú®ko\×u0…\ëYQ\Ì=ör/÷x\'‡\ëcÿë“º\Ìõ{°‡\ë‡M\åž\àpý•\Ü T87øòn\Ø\ÎinX7ÅÀþ\ãFuq\Ï\ãË¸ì£¹1«µ¹1a§¸1\éÁ\ÜX“ûs„{Q?Š{±À½\Ì\å\ÆË¾r/Y¾\ä^\Ê\Ï\á&DqRÍ¹	w¸	¤\î\å#\î\åL6÷\ÊA7\é›rg57–\ÌMÝ\á¦&1¸i\åÜ´•Zn:À\Íø¿f7b¶r3\ÉÇ¸™\ÊTn\Ö,7k‚Ë½iWÊ½¥6Ç½õÿ)û¶7g-››Ÿ\Ì-„‘¹Ev£\Ü\â#Tn©c	÷~3‡[™³›[ù¼”[\ÉH\çVG8pß¦r\ëFU¹\r>¦Ü†€\Ü\æN\îóµ/¸ÍÂ¹Í£G¹-ñw¸­¿¹mk;¹/\Çx\Ü®‚H\'p\Í\\\à\é\'\\\àkS.(—\É\É\\¹ÀD.$m5Â»Í…­\äB}C¹°¸M\\XU+†•r\Õç¸ˆ>g.òB3)\Ù\ÏEIŽs\Ñ\n8»ó— \ì\ç#R¹$¿$.ùE<—\âóŽK»”Áe±U¹¬\ï$.ûó5.÷\ï.o\×s.\ïu\n—?\ß\Âœ\åq…¯¹¢n®\è¯W–ñš+\ëõ\àv\'¸]\'nu·\Ç\í·\ÏÐœÛ—XÁ}m\ß\Í}¥\Çí¿‡\åöKÂ¸˜~\î\Û\ÔD\î !ûNº…;\ì1\Éü\ÌÙ¸™;r	\ÉýpxŒû©pû\é\×#\î\ç£\Üñ\r\îx\És\î\ÛX\îWµ\î\Ä=\Ü\ãý\Ü¿`Ü™{ö\Üù]?¸ë´¸—Ë¸\ÆWq\ß\à.-pÿ®û\Ãý»-€»üÛˆ§Nþ\Î\Ó\ØC\áiÝŠ\çi\×ñÖº\èðÖ¦Pyk¯{ðÖ¥ðtÖò6lò\æm8n\ÍÓµ›\å\éK~ðÐ‡xFf<“ŸHž©}\Ï\ÌA\Ê3_÷gncÊ³À\áYŒ¸ñ¶\×\Zóvt\rñvÎ¼\à\í\ÞÎ³\Z\Æð¬&\Îòl*\Êx{5sxvÀ¼}\É!<û5|žý\ÎT\Þf\ï@_\ïÀ\ç.žC«#\ï \Ã;Röw„š\És­\í\à¹\ânñ\Ü?\Ôð<\Ç<xGO\çe$ñ¼ó¼’ry^ðažš\Âóš\Ñ\âù¼bòNXHx\'2!<ÿ\×xþqv¼\0…9/H\ã/¨Œ\ËI‡ñBG‰¼ðºµ¼p	\ït¼€w:=”\Ñ\àÂ‹\\gÊ‹¬X\à}À\âÅ¶kð.n;Ê‹³¼\ÂK0Y\ä% ¼y	?By—_ÿ\â]þ\ÂK\åó’t\é¼\ä5‡y\×\ßhñn\æý\äÝš§ð²£{y\Ùõf¼\\\á6\Þ\í»\ëx·\ãyù_Nð\n²<yS¼»1“¼BS8¯È€\Ì+úšÊ»W\'\äUD\Ùð*\Îwð¦|\çUŽ»ò©\"x\Õ÷x5OCx5+¼ÿ1^o\r\ï¹e¯¥3“\×2‹\×vl„×†x\Å{ù\æ6¯¸\ÈkcÁk;\Ë\ëøx€\×1{ˆŠJ\àÁ\Âjx°Iõ¯’‡i\Õ\æa&by˜&O\Ð\â\á{<b\ÇSq\Ã#uiò(fOx”…\ï<\êlõœG+‡óh¤$\ã\Âh\æ1$yL\ëY\ËÓƒÇš¶\àqv\ëð¸%©<\î×ƒ<¾iOX\É*ñ<Q9Ž\×uø7¯·Š\Ì\ëS=\Ç{\íj\Ï{¾‰×\Ó\á½u\æòg§yƒÿ¬xC¯öð†w\êóFœ¶ðFp\Þg“\\Þ„I;o\Òý=o*°‡÷\Õö/\ï+7#o\çý\ê)\å\Í>\ë\ã\Í\ë\\\å\Í7wð~Gðþ¼}\Â[òÀó–¹ñU7òU¿jóWªóWg\×òWƒ®òW#‡ø\Z\Ïoò5\Ã\'økR¾òµCø\ë\î\èð\×;ü\æ\ëE\Ïð\r²³ø´+|\ãS|\Ó7i|\Ó_5|³\É\Íü-÷žð\Ís›ø[WWð·\Î\Þ\âo[\'\äoó\r\â\ïôú\Ì\ßÍ¸Î·0ùV\Þ?øÖ—=ù{ª|Û¿ùû_´ð\í}mùüƒŠc|\Çz\ß¾ƒ\ïlªÁwvóƒù.C\æü#\ï’ø®M,¾+\Èwýý‚\ïþÌˆ\ïñ¼‹\ï©ú™\Ô\í\ZÿxHÿx\Ý+¾|ŒJ\í\r? \à3?0ÍŽÈ óƒÓ£ù¡~öüˆ‡Rþ\ÙS\ïø\Ñ\ç¶ó£GNó\Ï\Ó\Þð/HVóc_uð\ã0~|\è?~a#ÿR\ã!þ•ô^~bE:?¥œ\ÉOû\Ì\äg(>òo|\àgz´óoš=\ä\ßj.\äg_:\Í\Ï\Î6\ãg?\Ë\äg“ôø9›ø·\í>ðo“.ñór¼ù–ü»™ªü»c~ü¢^ü{\æ¾üûºø‹\îü‡ü‡\Ãþ£uþ#›_j\È\ì\ÕÁ¯¹œÇ¯ðk·ñk›}ù\rW±üFC¿qÆš\ß$?\Ï~\â\"¿eÊƒß¾i+¿#À\ßY\Å5ó!c?ø\Ð\ä6>,ö6K\ä#ŒI|Ô\Í|œÈ‹O\Øk\Â\'P\Þò	3\Ý|\â“>9cŸ¼\"\ç\ÓŸð\é\Úøôõt>=\ç*Ÿ\ÞÀgv]\æs‚&ù\\\ìF>—>\Ä\ç\r\çò\r£|Qv7_|x˜/\Ùp’/\Éñ\á\Ë\Ä\0¾l´Ÿ¯\Ø\ÅWˆ\nø\ÊIu~oªˆ\ßW@\æ¿v›\á÷{¨ñó›ùƒó`þð0Ÿÿ~÷Fþ?1ÿ\Ã\ãþ¨&ô³\Zÿ\Óöþg•4þ\ç%ü1•ü±\Ûøc=\Åü‰û¯ø_ÖŸ\à­\ì\ã3Š\à§NñgŸ\ç\Ï!\îòV]\åÿ‰8\Ì_rðÿjUóÿ†õñÿ­\à/›\"ø+ªzü•\×*\ì&\ê†/Õ™(Áª\Íµuºµ\ËE\äFC°\Æ\å¡@Ë³U \î%\Ðz\ä.\ÐúxP ôN°\Îù@\ç·T°¡÷ƒ@—h.\Ðý\Â\èÁôú ½‚\Í\Zax«Àˆ\Ó(01\ß*0Y\È˜\Ì	v\Ú\év]\ìz,\Ø}…%°§,ß›\n¬96»l{6l÷­Ø}&°«\Z\ìwN\Ø;¨Œ8¸L	2\Þð_NIkn?<µ\Û*8ºtN\à¥3+8–Z-8\Ö÷Epl¸X\à½\r-ð¾vP\àýnI\àý+D\à\ã:/ð\Ý=*8üW\à¿ñ¦ ðj³ l„ ò\ÛfA4U\"8??!¸`fû¿*Á…Í‚˜5\ß1[	.>¹!ˆÃ“ñù\Ç—ºñ‚\Ä\ìlA\ÒY” 9ÀQt¤|W\nÒ£M\×Q§×‡\Ü\×\'\à‚Œ\Z5Á\r‹HÁ¸6A\Ö\Ó\ï‚[ˆ=‚œu¿9]A\Î\ØeA®p ÷\í’\àvðyA\Þi© `\Ã:AÁ\ÎÁ\Ýñã‚»j‚B\ÕAñ¡Ÿ‚\×Ó‚®¶ tw¯ 4Y ¸÷$Vp?–,(3\Ô”¡\Ö\ÊuŽª/\ë•\Z	²\ï‚g‡þ	šü	š-\ç2-õg\í¢AÇ©»‚WS»þW€¾t\Èj·\0RµC\0Á\Þ@ƒ£¨\'·¨g‘ôe}Z(\à²N	ð\ë\Ã„¬€P\Þ! \Òj\åñ €~\ËGÀ(\n˜¨T‹S(`CN\nø3zÁ¹¿Ñ‘*ƒˆ	\Î±ò¥@<i)1H\ÙttŸ@6—,P@hÅ›4A…­ WeY\Ðwÿµ\à\ÍÁÀmcÁ@J04CŒ\àS+·F‰‚qó\'‚/I?“SVÓƒÁ7ó£‚¹\Ýó‚¹ðÁ\Ü^°x°[°xŽ(XZw@°ôÿûþ÷\Ò\\¨z\êºpõ6m\ájßBõ±¡FL±P+¯Z¨]’&\Ô9\î \Ü¥!\ÜP\Û&\Ô\ë›\êg|j…\ÆÁ‹B\ãP{¡	N(4\ÕšE¹	\Í*„fd-\á–Õ·…\Ä0\á\ÖÂ\Â)[„»\îh	wÁb…»\Ãr…6{ƒ…6Â½ýw…v.óB»VB»`-\á~«|¡=,WxP\'t<#tšðºø\n]l…®\ZR¡kô¸\ÐõZ¿\Ðme•ð\è\Î]Â£‰mÂ£k…\Çl‹…\Ç7œz—L}\\Ë…\'¦Û…þ;\ß\nº|„ÁHa\à9Ž0\èùAa\à©0h*¾þE’¬%Ý²\"k[\'<mOžŽ²žY³Nx&bBx\æÍŠ0\".Ai\Ñ#Œ´?\"ŒŒ\êF\ÅFx	£Šÿ/ùc¤#\ÂØ¬0a,\ÚXx1aE·h&¼\ì¬#L\\^ó\Þ L¹ L\Ý\ã.L\Å.\Ót…\ém…\é²\Ã\Â\ëÛ±\Â\Ì\Ì{\Â[Gx\Â\Û+\Â\ÓkÂ»*„EWž\nKm…÷.–I«…ó>«vg\n­*¬¶V‡þV\'¼V\ïVw\à…õrðIo¶°±j@\Ø‘Ÿ¥<>#Ž›<…-*±Â–\ÆRá‹ŠDaû]a{vž°\ã l§\n;\ÏP„€+¿…À\ÍB!\è\ë˜<|Mþ‘ „E~\"Ÿš\nQºû…ØB\ìgG!žüLH°œ÷DI.„4¨Ö“*dŒ…Ì‡±B¶§§“\Ö,\ä\Ý:#\ä\å•\nù\0m¡P~L(º³$”\î\'¥\Ã\íBY0U(¡•:¿„J\ë¡’µS\Ø2v	¿	»=.\n{xU\ÂÞ´‹\Â^\Ôma\ß}¶°o\ä•ð\r½DØ¯c$p8%|»\éŽph\ÈQø>+Aø1 Zø1\Ï]8\Ê?(ü\\%ü<òM8f,Ž;w\Ç\é\Â	G]\á\ÄO8!²N:N\Õ>NAO¿i~<\"œ~\"N\Ãv	§™d\á7·\á·\Æ\á·	Špf^[øó£›pvS¿p\îJ—pþS¸ð%\\\\»,\\,\Ø/\\B^þk	®HDªn?DªÙ—D«<BDj:f\"5“r‘úC‘úC¤Q\ÊiN‹4>\è‹4‡¡¢5\ã^¢µ1\r\"½\'kDõ\çDDú7Dz­¢Mª¥\"#›§\"#\à5‘I\Ô~‘Ù¹\n\ÑÖº«¢mµK¢-m¢\Ý\ÍA\"\ëÿk“Šl\Z%¢½¸A\Ñþõ?Dû·KDE\'D4Š\r\ÓEŽò\Ñ!ö‘‹¹\ÈUöB\ä\Ö\ï#r7¦ŠÜ]E\îo\ãE\ç2E\éEžÁm¢£\r6¢c	ŸE\Ç5	\"\ï€\Ó\"Ÿ\rX‘žª\ÈºY\äW\ë\":™\Ú(:e\ä\':µl%ò\×ø\'òŸ°\îr\âjDAGv‹‚REÁfE§üE«ŸˆÎž/ŠN\ZE\ç\æ‹.O\Å/f‹xp\Ñe”(Q±O”8)º\Æ\ê%\Ý#‹RóD£¢LO”…x%º¥‹²-wŠ²\î‹rUJE¹šË¢\Ü¢\Û»Dù±%¢»–¢»—·ˆ\nß¿$‹ŠUwˆŠ•¦ž•\"\ÝD÷¢Š\ÊÆ¿Š*l=D•;7ˆE£Dº\ZE\Õ\Ï3E5ÿ×¥fw³¨öz­¨Žý]Tÿ\îš\èI¥Hô¤…\'z\ì5\\:+z¦úCô,¶FôòXÔ´\ÙS\ÔT\Ð+z\î\'z‘!½À‹Úž6‰^J;E\í»7‹\Úd¢ÍŸ¢Ž\×E¯òW‹^-¶‰\0¸\"p\×W\ì\Ù=L^(Bð¢E‰¾\ÍfŠ0\ë\çE˜À\"–ûZ„\Üaÿþ‘\n\ãE´õBzI\Äø\'qPE¼2;\ï!D\Äû^#\â\ë[‹þ\"aU$$‹EbˆB$\Ñ\Ü!’\àGD²\Ê}\"¹Õ¬H‰GŠºRå¢®(Q·ª‘¨\'\ÙD\Ô\ÛEõPE}8G\Ñkž\\ôz,zQ-\ê +\ZˆÿŸ\ÂMôÎ•(\Z\Úh/\Z²g‰\Þ\ïS½\ß+\ZY¥+\Z5\È¾1}\æG‹>O\ÐD_^ESõ\ßD\ß#Nˆfª¯‹f ¦¢™·¢9c\Ñ\Â÷_¢?H\Ñ\Ò\×|Ñ¿›}¢\åñ›bU³\nñ*\Ãñª¾ñª%5±\Ú+‚X=)\Ö@]¯9ðH¬µ\ã˜x¾E¼!p§x\Ã\é^ñ†¦\×b\Ýû±.-\ÞhŠ\ë‡\r‰õ(±þ»f±[§\Ø\àœ¶x³šº\Øhž 63y+6\Ûn#6‹ÆŠ-ˆ¶\âm—2\Ä;BßŠwö?\ï.*[nž[¶\í[M\Þ[ýv\ï\Ý7!¶*\ÛÅ²\Äû0k\ÄûAk\ÄöqX±ýScñ\ÛB±ƒ»@\ì\0§ŠV‰ú*v\n:!vo;_p»þ¿\Ü÷y‰\êm{\Ñ{\ÄÇ½º\Å\Þ*h±÷KŒ\Øž*ö\Ú\'öÛž-ö{‡ŸÈ«Ÿœþ$>µ_M|\ê4K|\êQ‚Ø¿þ§Ø¿\ßQ\èzÚˆƒ\Ý\Ë\Ä!\ÏgÅ¡=/\Å\á»vˆ#6Æˆ#þ”‹£~½G/<Ÿ¯:\">ÿ4T|qDUÏ™_Šú)NX÷Nœ°\ÑJœPtT|¥¦\\|µ\ÐLœü\ÙFœrhQœº¾\\œ\Úñ[œV\n§Q²\Å\éahq:fZœ\Þ\Û%¾®{B|]!\Î<\ng–•‰³.ˆ³>‹\Å7þg?+\Î\î¬g,‰s(\âÛ‚	q~Dªø®e´ø®5Q\\”\Õ#¾_\Êß§\Ë\Åeû\Ä¤•â‡ž\âÊ˜Qq%x½¸êŸ‰øQ·¥¸n­‰¸¿G\\q\\ü\ä,M\Üh\å%~vyL\Ü7?\ßwCü´I\Ü<ºG\Ür+T\Ü2qW\Ü2÷^ü¢\ÝS\Ü\Úe+n»—+nû”\'\î(Å‹*T1@{A\êœƒpób°§\Ú\ê\"†U«Š\á¢1\â\ëz1r_•\é‡#S]\ÅH€BŒ¤^£x\Û\Å(i—],Æ™8ˆq\ÇÄ„\Ú)1Q‘&&iÅ‰If\n1}TL/\Þ\"f¤Ù‹™W7‰™€b–Kµ˜­W$\æ¬\ës\î×‹ÿ<Å‚:˜Xl$Ÿú¿H„X:\ÎË½\ÅÝ‡¼\Å=›V\Ä}s\×\Äo¢J\Äo¦§\ÅFS\â·\"\Å#ÿ¿‡&=\â\Ñ\Älñ¨-þ4„¥`\ÅS=\â¯6Š§_(\Å\ßW{ŠgF¡\â_\\ñ¬ó^ñ\Üó)ñB­©x¡cFüûp¸ø·h^¼–$^\Zü-^3”¨8­–¬V¶I4–\í\îF‰\Î*M\Éú\éh‰n:O¢\×óH²ñ\Ô:‰\á¾‰û‘\ÄX7MbŒ\\Ê–˜Xÿ’˜\ÜbILG\Ã$[ª-%[\Æ%\æû%\æ|‰\Å/\É\ÖZ¦d\Û>”d;\ÉX²£ñ†d\Ç/Šd÷ú—’Ý¿A\ë„l”dO»d\ÏHˆ\Ä.´Zb×¹Ub\' \ÙwEW²%9°¯Ä±dŸ\äðV;‰ó}¸\Ä%\Z(qy\n—i´—¸¢²$®?%nU%ža\ÅÏ•#’£\ï\ÏH¼\"\ÎHŽe\êJ|\È\Ý_\ï\ß\â\ß{¿óh‰\ß\ÌIÀöß’ÀÁRIð	sI(¹]\Ê\âJÂŸœD\éDnW‘D\â<$‘\â9I\Ô\ÓÕ’suIt\è€ä¼‘¦\ä¼b‹$öd¥$^öQr\É*Zriš%¹\Ê\r•$úõK®9H®\åKRú’$)¿\è’T\0E’V•¤‰8’ôH?\ÉuõH\Éõ˜|\É\r±$Ó¯@’	•\ä~j–ä›‘$wŒ\ÎH\n\Õz%E\ß%Å»7HŠ_?‘”%÷jZ%÷m~J\Ê\Î’”s$\å\Ôk’\n\Ï7’‡5¾’\Ê=V’\Êwù’*\ß’*ø;É£‰\É\ãFmI\rê‘¤F¾\"©=.©½,‘\Ô9­—\Ô!\Z$õªA’\'‡ÿI\Z¦\Ó%;Œ%Ïƒý%\Í\írI3v¿¤%\×@\Ò\Êï‘´=’´ÿH”tÀ<$€À`	 «Z\ÞÿFNÿ(~I1\Ñd…¿\ÅÊ• ¦\Õ$\èŸ}L±„ g !¾”\Î9IHyq\Òó\n	UsIBƒ\rH’	*’pfoJ„\Î-¡E\">zH\"\é\ÄId:Sy‘¾DÁJ–(W­•ô4WHz\Ãr$½\É+’¾³±’¾¾ I\ßw¤\äu`˜\ä5E_òF—)y3a y·<!2®½VJÞ§î’Œ¨JFü[%’:$£zU’\Ïk,$co5%“ô[’o)–’o¯$\ß\rµ$\ß\Í(’Ëƒ’\Ù-7$óó’\ßF’\ß\ä/’\ßK\É_™\ävH²\Èh‘,¹¯–üý‘%YöJ–,ûý‘¬ôHU\ìI\ÒUZIRµ\à6©ú÷/RMÿ	©\æ+¹T³óTË¸Bªuwt­3Gª\è&]7n#Õ™¦H7`\í¥F6J7L¤zwI7N­’\ê¿\Û\'\Ýt:Iºy\Ýÿ\\¥›;W¤†\È©±£†tKÁ}\é\Ü!\éVt²t÷Þ‡RË¨“R«\Ï÷¥Ö‰³\Ò=?\ç¥{¾R\ÛDM©\Ý\á½\Ò8\éa\íRg ¦\Ô%ý°ôW)u\ÝÉ”z¨o—z\Z‚¥ž\Ö2©\ç\Ç(©\Ï=Šô„~¯ô„\å!é‰UÒ“v[¥\'/ý’\Þ\Þ$\rä¿—µ9KC°\nih5M\ZÚ–&\r\Óì’†-úK\Ã1¹\Ò3\Zé™µŸ¤(Œ4ê¢·4Z¹WzA.½@N“\Æ\îÑ”\Æ\Êt¥q…»¥ñšI\Ò\Ï`\é\å™ôz\áui†ó¤4s°Jš\Õ\Ô-\Í\Z¼-½iùJš=vUz\Û\Ö[zS\"\Í\ÛñQšo‚“\Þù»,-ø\í,-ø\ë&-¤n‘Q\ÏJ‹¾÷K‹U‹¤\Åó]\Ò\ífi\ÉP§ô)Lzo¬Bzï«¥ô¾û‚ôþµFi9ü–´Bë†´bzôAûCi\å\á\ÒJw‚´:·\\Z]\ì#­Ñ’Ik¼\Z¥5†\Ò\Úfmi]B±´.SUZ\×@‘\Ö;¶J\ë\ÝKŸ\é†J›¥\Íc¤\ÍeÇ¤-\áFÒ–…K\Ò\Z¤/Ê¶H[Ë£¥m„\Ò6¥§´Ý¶D\nˆú#‰¤\à­\îR¨\î‚\Ú\r—B=¥›4)\"¦[Š)×‘b«š¤Xòc)¾Z %f\ÍI©ƒ+R–°_Ê¯¹\'\Ý—JšWK\å\ç,¤ò_-R\Ågg©rnJÚ›\ï,\í£ð¥\r7¥o¿\ÆK”KÚ¤ƒ\ÞK\ß\Õ(¥C#P\é\È]\é\ÈaG\éÇ˜Ò\å$\é\Ø¢t¼ý–ôK\'Lúe\ÙY:M‘NfJ§§2¥ß® ¤\ßUJú\ëI\ç\Éy\ÒùŸP\éÒ“V\éò¹\Z\érÆ¨te•–texX¦rrJ¦\Úh,[=óM¦>­”iH\âd\Z\ïºdšS2­t L«–&\Óú–*\Óú“/[§-Ó¶f\Ë\ÖùSdºõ\ÛdzV\Ù2½=z2½_™2}‹™~–¡L¿!S¶\ÙYKfp^fü› 39\Ô\'3³w—™¿´–™\å2s\Ê\Z™…5EfÁ\Ã\ÈvØ®‘\íú»Wf=³\"³©’\Ù\î2“Ùº\Êlƒ/\Èö\Û\Z\É\ìw9\Ê\ìG–d\Ó Ù¡–Ç²Cíš²C¿\×\Èß¸#sVK–¹Œ‘dGÊ³e®o®\Ë\Ü4\ÇdŒd76ÊŽ•yekÈ¼þU½&ŽË¼§®\Éü\Þ\ç\ÈN\Âÿ\ÈNmŠ–JP\È¯[È‚~_’Û±eÁû*eÁ¾0YÈ+²q,\ä\ß~YhG\Ú’Þ¥‰ð‘En@\Ë\"wg\Ë\"Ã¶\È\"§\ÌeQ¾7dQOÊ¢uŽÊ¢¯´\Èb,zd1n¹ÿ£\Ëb¸I²\Ø¬,þL÷cN¿£C_&»T»E–\0‰”]=ôT–ø\Ý_–T5/K­“¥*”¥\\¿+K…#d\×7\ÌÊ®÷±d`o\Ù\rÙŒ,\Óó•,k°Tv\ëó´,[,\ËÁòd·…WdynYž\ßÙ@Ù|YA\ZKV\Ð.+RM½}\Z”Mm”•À\Íe\åAY¥žª¬2£JVIÎ=z${ô´FV=øTV›ýFö\Ä\"^\Ö0Ê–=‹ù.k\É\Ú\î”µ\ÉN\Ë\Ú.²ŽnK\Ù+•ZÙ«\ÂRY\çªaYg\Ä^@‡\'MeÀ±a\èH”ô|rmŸú,L[„\É0û\çd¸‡d¸	;>\ÎTFH\Ù\'#9!edû¥á„Œñ\ÛK\Æ\äþ“1Kd,ÿ\nG½N\ÆÓ£\Êø|™P÷°LTU,“0œe’\îG2i\ÞN™t MÖ…L”uaŽÈºª\Ëztƒe=ÿ\ï\ßk\ß%\ë\í+p\â\Ë\\¿\ÊÞºþ•\r½“\ËF|Wd#\ï¶\Ë>\Ä\ä\É>\\Y#et\È\ÆÔ™²ñk\Z²ñ2ºì‹ª½lr\Ç!\ÙdOŠlr\ÂG6u\à‹lŠ–}}\æ,ûuXö³ªU6›½$›-\\+[(?)û]c+û\ã¶Qö÷p¦\ìŸTö/\ç¬\\Å ]®\Ò\Ü+Wþ!W¿Z/×ˆ¡\È5²Täš½b¹\æ\ç\ßò5OU\å\Úù\å\Ú/\ß\Êõ,rýv\r¹>™.7\ØöPnð\'On|?Nn\â<\"79õBn\ÒN–›\06\ËM¾\\–[8H\åÛŠº\å;„\Û\å;•?\ä;K\ä»\Äò]\Æyò]–öòÝ™ä–\îr\ë•$¹\ã-¹‹šÜ¶TEn÷¤D¾q@n{N~0·M~ØªO~˜‘»:<•»\íZ%÷\Ø\ä.÷B,Ê½·.Ë½\ÏO\È}6ù\Ê}º=\å\'V/\ÉOE”\Êýý¿Êƒ\ì\Éò\à\Â,y\èZyX‚…<L9#w[”‡\×\Ê\å§{\ß\Ë#¶u\Ë#Fú\ä‘Á$y\äó5ò¨cJù¹¤­òhûòóôuò+òØ¸:y‚e‡<Á\ÙDž0\ë$¿²öŠü\nõ ü*lQžh2&O<%¿æ‡‘_û\×*O^‡’\'\Óhò\ä!ž<\å\äiy\Ê\í\'ò”…\ßò4£ûò4%Už\ÑöH~\ÃG_~\ã\ÂùzùM\èIy¡I^XöV^øL /BR\å\ÅG_\É\ïk¸\Ê\ïÿÐ‘—¯1”W\éS\åU&>òj—\çò\ê²ýòšóSò\Ú>Ky]Ç°¼q[¶¼±zTþ´k•ü™\ÅNy\Ëõ-ò—…,yÇŸòÎ¡\n9@‘/º\Ê\äÀT9\èÇ¤†±\ÃW”Ã±Nr\Ä\æ\Z9b\å›iW,G…\ÉÑŸ˜r\ã­\ï)\Ç\çß‰÷å¤¶e9yO°œ,{*g®¯‘³ÙŸ\ä<ÒŠœosT.¸\"\î…Ê…óNrÑ¹»r‰o›\\$\Ê\å\Ç\Èõ\ÙreqŸ¼;©WÞ“¼$\ïm‹“÷7V\Éž\È\ßò\Èòa;´|˜~Qþ\Þ%ÿ\Ø_\"ÿ8n\"ÿ\ä¡%ÿ|G]þ“\"û@–O¤™È§\êoÈ§Ÿ¨Ë§W°òª ù0ù¯òRùœ\Êwù\Ü\ìnù\Âb‘|±pHþ/2Uþ/;J¾\ÌMV¬.¬S¨\Û\ë+4\×Ph­‰P¬Mx¦X·c¯b]òC\ÅzU˜bC\Æ.Å†¦}\n\ÝeU\Å\Æ\íIŠe»ú·\Ã¾;›V«+=û&nX…\Ù\\„b\Ës#…\ÅMk…EûQ\ÅVU°b\ëv¦bk]“b›J±cÇŒb§w½bg\Ük\ÅNÁy\Å.³…ÕŸr…u\Ùn…Í•…]L«\Â>µKaÿù²\â\à\æ,\ÅÁ%[…£z‚Â‘:¡8žŸ¤ðÁ!>\Ü…o¦‘\Â/;Dqb­XqB¿Kq\âs»\â\ä93Å©¿\Õ\n³\"…?¡R¸\ËW\è{Cü\ÐLò­;#S„ei*\"\ÖN)\"Bf‘´|\ÅY—mŠsúk\çþª+.pr—\Ö0—/(ý(®]þ®H\Ú#P¤\è¿Q¤…e+®ß*nlžWÜˆ­QdÁ\Ù)Šœ®ZE®­‘\"÷fˆ\"W	Wä­¼R\ä‹þ)òGw*\n£\ê\Å\ÆÚŠ{6`EY\ÂzEùÈ¨¢\Âê©¢rö´\âiAQsõˆ¢\Ö\ÛBQÛ°¤¨KÝ©x¢_£h\Ð&)š¼\ÚM),E›¹½\â\åª5ŠNd•\äuHš&* ±ü\Ã:ò\á3Î¶K;\é¤À7½W\àÛ‚xô=^é¬ –;+\è8k#±FÁ¸ª`ö+Xj\n#NÁ\î6Rp}ò\Ü\Þ[\nî˜Š‚·Z ¬öV¿*D–\nq\ã‚Bü\ÜU!9Ñ«]‚)d\"…ü\í…²DªPV_Pt*^ß…*†ñŠwz¦ŠwØŠ¡\ÛG\Ãb¤b¸‡¬\ÑQ|À\Ó¸b\ÅÇEŠO÷\éŠ1ðœbüLŽb<½T1\ÞuW1±\ÉGñeCŸ\â‹S¸brÝ¢b2§øv\æª\âÇ¹CŠŸ\âr\Å\ì\Î}Š\Ù4w\Å\ì«/Šy¶b^+J1¯¿]1ÿób9ub¹©L±2S¡T?ªTðT®.òQª5ô*\×(…\Ê5_+\×B•\Êu„J\Íõ\Êõ\'þ(u§\ï*\r^*7K•†_÷)ð\r\Ê-‹”\Û-6+w}MSZ\êVZ¯RÚ´Q\îq(÷5”û—”\Æ\ËJ.Ly\Ðh­ò`–™\Ò\ÑfVyH©t\nB(ž½W¶ªR:G7*]®/+hžTô)]\éKJ·h\Òc×´\Ò\Ë\ÝQ\éõZWyü³—\Òûƒ›\ÒûGš\ÒOyJy\"«<iUžŠ4Rž¢²•þút¥\ê¥\Öse ]‘20Œ¤q{¯9õNz{A:œ¡\Ãf)\Ãf¨\Ê\ÓV0\å\é\Ì\Ê3q×”Q\Ù\'•\ç¸~\Ê\è¤\Ze|ƒ¶ò’\Î\å¥*±2\áó]\åe¼@yÅ¦Eyu\ì„2q‡™21\ê€2±p»òšù[e’v˜2IJQ&·*“—¯(Sc*S±\Ê\ëg\ß+3E%\ÊÌõÊ¬…ò\æ\ËZå­”!eö™eNÜ´2ç‰µ2÷ô#ež\Õ>\å\"Ž²À¤,hW t•w7;(\ï¾kR‹•\Åþ\r\Ê\ân\'e©\Ê[å½“\ÊûQ\ÊûyÊ²¾teù%¡²œŽS–Ú¥|?«¬`+ŒUV³¥\ÊZÀce½\ÔSùd‘¢l<¶¢|\Z\ÌV6}™S6{(_¨÷)\Û8—”\ík|”\í\É;•\í\Õ	\ÊvZ¿²½»Où\ÊV¡\ì<vV\Ù\ÉQS±•àªƒJXQŒ.G+\ÓW”È­ë”¨ýX%ú,L‰ù¡¯\ÄŒU\âüž(ñ\'\î*ñ‘l%þž‡’Ø²_IjIWRd))#cJªW½’¡ý[\Ép&)©B%3SW\É9a¤\ä_+94¨’ÛŒUòrM•¼÷R¥Ð—¬~/SJ!J\É\ÍV¥\ä÷s¥ô\ã¥|q½RQt_©Œ\ÓR*Ÿµ(»\ÃÂ•\Ý}Á\Ê\î”½ùÛ”}ÿ\ïý6\î±ò½\Å\åû\åó„ò\Ó\ãCÊ±\Ú)\åD1Y9_PNe\îVNµ\\QN-\Z+§?h+¿»(¿ýGqy‡s\áu\\()¡!M¥BFÈˆPF	‰ŒR¡”(«l*Ù²GT¢¢R\É\ÉV’\Ñ}÷\Þ{\ïiôþ\Þ\ç<Ÿ¿\î½Ï™÷\Ü{\ÒÿrQ÷ÿrÉ¶ùW¶þ~:üWtj\ç_QOþ_ñ¿’¿‹\ëœÿ.\Êuþ.õ’þ.)\Ûÿ.|ðwEôw\Å\Â ’ð°\ê@@5. \Ú7P³·¨\'\Ô\çwV‡ºV\âkúM\Z%¾€µ²Àº‰=€õÁÓ€\r‰\0m\îE€Î´=@×’\ÐõQ\èV\èN66hlj¬\0l~°õ\0°}\ÓUÀö\á%À\î‹€\ÝoB\0»ù\ß\0´^ÀÞ·r€!¸°\ï~1`_%p -\n`Œ»j\0ŒS\Ø\0‹\áû\0›O.\0›\Ï\æ\0\Û5\0\ÛJÀv&`\×p8ø\à8‡808\Ý{pñ\î¸œŽ;<8V”8~nÀ\Õ\í.Àµ\Ü\àÖ·pr}Àk­À\Ç+\àóñ.à´‘\à¿\à›Q	8³8óª\àw€	ðsœø/H\0A\Çs\çŸø\0B\Ô^\0B\Z€‹P€‹\ãRÀÅ©‡€Ðºó€p•Ë€uS@„m\' ‚\\]¿¸¶s\à\Ú¹Š¸®`n4_\Ü4ó\Ü\Ñ\Ü|º“¹\Zwsß»\Ø\ì\rH3$\Ï’eM€\Ô\Äß€ŒsL@\æm5À!#@–Lµœ¸ÿ6p\à\r \çs\î\Z \çI4 ÷\Ë ¨u/ ø\ÖN@q\Ûf@©\nP6T\ì8¨Šdªy\Ïµ€\Ú\Ïu@À\ã¬9À\ãwõ†n€§9î€§mw\0\r?g\0\Ïj÷žkž7=¼8üð\"\Þðb\Ì\Ðtù \å\ë~À\àMI\à\ÍóM€·6€w·{\0\ïþ´\î´FÁ\0\ï\ÍòmýF€_O@÷þ0@·\ïq@wS.\àCF \ç¿|öm=øxD\rðñd\àc\Ëà£¸ð\é\É$` ;\n0\æŒ|‰|©­|-|³\Ýø6c˜²0L§Nfü€™A%`6•\nø;ø¡ð\Ã,ð£†	ø©üvp\Ìý)üÉ·\0ü™»\0˜7üø»Oøû÷\0$<€t— k\î \ÞWH\Ò	\0J¼	€R ¿N0\Ü\0B¹€¤® !¯\Ø,4€³\0\à‹\0ô=€0¹ ¾i\\=p­2X\"@~\Æ Xµ ø4X\Ü{°x		X\Ñ2¬Ð¼*žº@•ppÕ±T Z\ê$Pc\ì-Pk\Ð\0¸‹j7mŸnŠn6\r\ê;¾\0\ê¿H\ê/|n+9Ü¾¯¸g_p\á\'phx\çp\ßk:ðÀ6ð\0´h\âøhº\Æhº3h¶\Â\0Z´\åN\å\ïZ\Ú%-\ÓZ€VÇ€‡[]6\çF€¶\é\í@\Ûþ·@\ÇG5@G\Â3\àQ“ S\rè¬¦t¾|\èr`\rðøR<\ÐX\nô°\Ý	ôHŒztgO\Î\é=·oz\ÒT§z;€^5aÀ\Ó6\ÖÀ\Ó^†À3Cž@j0\àþm`p\Ôs\à9Ÿ\à¹Zkà¹†\ÛÀó¤`ˆ\É+`9\rBý¼h§@€W\áR`\äw`\ä\ï`\Ô05–\nŒ>\ÞPñ\Þ\ïÆ¼}Œõ8Œkœ\Æ€·``\âž?À\ÄkOIi€ÉýÀ\ä:ÀLB#ðÎ‡\0à½„ûÀû%Àl»^`v 0;\Ä	˜ýj\r0wi˜—ý\r˜_Œ\æ\Ï\rN‰€\Ãß…O0À¢žÀ7–%I“À\Ò\raÀ2…°¬:º\røPOø\Ð.Xw°\rXŸ(>ý\è\n|:uø,dð¹‹\0ø\Üûð\Åð\Å;)°i`\Øl\é|µ|M-¾q\Z\0¶þ\Ñ¾Ÿ,\0¶yM\0;\ÜÓ€\Þ\ÝÀ\Î\Îd\à‡ú`\Ïþ~`-\Ø7·øQ<\ì×±W\ÜŽ:ŸŽ%®ŽµRc€_ûG€“5P\à·q+\à\æ\"p†,\Î^\Ùü±±ø\ÃQø+3øk®økyø\Û{ø›œ\ë~\\Àmþ\Ý„D¡ñr \ì\Î ¬ø\rNr\"\Ù.@”þ# Z½ˆöþ	DŸ\ÞD\×ùñ×	$@\"r;\Ô;¤}º¤sÊ€\Ì0AJ2€\ì«€\ìV §€\ä,oò^X_r€¢Gs@\é\Ù@Y¡-PþcP±k¨dc&€KFÀ¥‚ýÀÁt\à¿Ëª U®Lz”´z\ë\Ð\ZbHcbh¹hý1h}d#h=\Ï´Ai	\0é†€Aª€6—ƒ¶ô<\é\éAz€%\ÐV\Óg ­_/ƒôO¶=\àƒ¶ý4m¿\á\r\Ú»\Ú\ÎÃ€v:¬\í|q´³U\0\Ú%û\rÚ­w	´ÇÚ»Z\Ú\ëR2´÷\íó>	: sd£€™yœ™¶‚Ì«mAC¯@‡ÔªA–ôu \Ã\Ç\ï?\ã‚lŸƒŽ0\æ@ŽGg@\Îÿ‰\Ë\èX\Ê9\Ð1\ì+r³h¹\çöƒ|.4€|†×ƒ\Î<\Ø\0ò\Óù\Í@þöi ³\Ïƒ‚Î„ƒ\ÎU\ïg\ÓA!\ÏcA?\í\0]¸\0\n½4\n­¨]q]³½ŠŒ\0ºÁ\0ƒnNN‚bWo\Å=I%0Þnƒ÷‚’\ï%\Ûý%Ÿ\r%W˜ƒRm·‚Rÿ$€Ò?A\é©* ;1s ;·k@wª‘ ¬¦ û/A97r\ß÷€òŒ×ƒ\n&@…\ëAEŠÏ \â§N \âW\ëA%_ö‚J\æ\ZA%$¨T	*ý­*\Û*³@¢AU­gA58}\ÐC\nT\ëôTû\rzü¨T\ïz\Ú\âj\Ê}z\É\r½¾¯\rz»qô\Î\ÊÔš+½\ï\Ô½Ÿ;jórµ\î‚\Úy q¨s­#¨“Y\ê6Ç€º\ë\Ü@¬ÿ>T^õ\ÆñA½21\è\ãúm A\×\n\Ð`\æ\Z\Ð\ß4ºþ8h\Ô\×4\Ú)¾\ZŸ½š(W€&z\Û@“>/A\ß\\E ©§\×A³N\ÐwY\èG£?\èÇ—Ý _„\r ß¬} ƒ? …/ \0IÜ·	¼\Þk-‚ oR@Püú\ÏK«ÁñL\n8¢\íÿ	¢ý~bt½±@l`ˆ­PqÞ¼qC \Þ%ˆ\çž\æ\0A\Â§@\â\0Gu$}~$s&ƒ–;‚–Q?Á*«wUs¶\Õ\ÕÀ\ê;¶\×ÌŸk8€5Uu¼`Ýƒ\ßÀ›w‡‚·lýÞ–ƒo›g€·-Æw\Þ\ï*¬€h`\Ã\Ï\àý‡Á&ª\æ\àƒ\\\"\Ø\Üi\Øü.l^¶d¶€­«Á6:E`Û›`{\Ñ øHù\Ø\á6\ì°`v\î\Ö;\Ó\0»Œ_»\íó{¬*{¯?ö.ƒO7y€}kgÀg®–€ýY\É\à\0\í\×\à\0z68p&H]\\¤€ƒ¥n\àó\Ù\à\ÅkÀÏž_9ö|%GŽ€]G~\\_\×ÂƒodÛƒof6ƒcŽcòƒÁqep©\'\'\ì\é\ß26\0\ßRFƒo_²\'n¤€\á\ã\à”µ\àÔž\ßà´²0pZ\ßpú„\'8]f\Î\\7Îº0Î‚~gÁbÀ÷\ï\ÂÀy\â(pÁ6{pA\Î!pÁ“\à/pi\Ísp™\\~¦\0\\q\×\\kg®ó\\×¥\é\Ý?þ¸~\nö7\ÖO€‹\àg\Z¹\àg\í,ðsO;ðó°§\à\ç7gÀ\Ïkw‚›¶6›Œ\ÕÀM\ÇY\à\ætð\Ë+\á\à—)!\àW¸%\ÑüNq\n\Ü\n£\Û/‚;l\ÃÁM\0p\×	¸ûb3øÃ—)p5\Z\Ü|\îW8€?ýxXž?;Y˜WG.—‚G*\àQµ\ë\à\Ñ(kðhûgðgKSðWU.ø«¯:xò!ü\r\ÏODƒ§£·§\Ûx\à\Ï?\à™{»Á3‹\nð¬\Þ+ð\ìnKðÀpð\Ïp*ø\ç—\Ç\à_¢³\à¹\ípðüõðÂ™\à…»ÀÀ\é`\à\ÏG`\Ð}6^\áFg€Ñ‰;À˜«00~ö5O)\0[¸`\Ò\Ñ\Ï`R_˜\ì6	¦®©S·ú\é»VÀô[\Þ`†öC0óD4˜µ¾\Ì:°\Ì6‘\Ù.OÀ\ìz(˜-lóƒÀür0;U\r€\Å[’Á’ýú`…ÿW°¼üo\Î¢šmQ\í¸Q3;	Qg~høWA4\ÇL š_‡ ZšLˆ¶E=D·R²±\æ!dS\É1È–‡U½3ºýC‘}‚d[X.d[\ã)\È.²‹\Ü\r\Ùcý²§\n1l\Ü98¡1ýøb†˜…˜ûƒ˜£Ds¡#\Äb}\Z\Ä\"¯bù\é)\ÄJ\ËrX\Ãb“e±Î‚\Ø\ÝbC\ìõ?BŽ¬¾q¨÷†8z\ì…8%/Cœƒ\Ú!.\×ò!\Çÿ\ÌB\Üp· n\Òˆ{øA\È\Évˆ—‰\Ä{\çÄ›ºr:\á$\à\ÌH`I7$\ÈdTD‚œ[\ß¹d€\\²ƒ„\ÚP \á2!\áƒ\ë ¿öB\"\æ\ê W¤«9ök\íi\È\Ôd\Èõ˜¨gHTr;\äFG8\äf‰\n\ä&þ\Z$¦P\rS}w\á<\ä–z\äVñ\0\äö\ÕW¤š$G#HÒ™»\ä}H\êH*$=ñ$½k$\Ãz$S|r\ÇtäŽŸ+\äþºN\È}\êzHv¾/$o\0É¯Œ€\ä³J!…û!…— …¹é¢\×b‚1¤ÄŒ)¹&”>\Ü)\nT.Bªœ9ºñ\È\ã\Ízýú?¯!Oml!O=[ O«÷C\Z}!\ruA\Æ\Ñu\çyxÈ‹Z\'\È\Î(¤IOÒœ\ày9›\ny\Ý>i‰s¼Ù¡yóù.\ä\r\ni}}\Ò\îQ\ritÒ¡¥\é\ä	 ];!]À\îü³\îŠ^È‡UMžƒùžC…ž£o =\é$H\ïS¤/\è¤ÿ“2\àö2ð12\0¹|ñ2ö÷$dŒ_™Xÿ2i‚|;™òX†L—…Bf«r!~¸C,‡ _‰!S\å¨\Æk,1‚x{‚:\ÝÁ\Ü\ß\nÁ¼»	Á›©Cð6\rmB\Ôû\n!në‡6d@¨;L!ŒS\ß!\î „ù€a=N‚pvü„\å$ˆÈ¿\"\Z@Ä´-i	D\æ’\n‘[kB\ä·WCzE¯ý\Å?\ÎP•õ,¨ª\íc¨Z=ª\áo]\ÃCµ\ÍAu=U y\æ\Ð-û«¡[Ž@·<\è‡ny»º\å\Ó-¨\Þø6¨¾ñtú t{«:\Ô\àcto\Ò\è\Þ\'\Ð}–\ï û¾&C÷9\r=Ø­5‚šþ\r†šÝ¬ƒšý¡@ÍjA\Í36C-j.B-¡ –\è+\Ð\Ã\ç^@\íbP;q:ôˆƒô~\ê”Zu	ö‡\Ûûz\ì¹\nô\Ø\ë\Ó\Ð\ã\ÚPWó\ÇP\×Yu¨0\ê\Â@OÀs¡\'¿\ÏB=û; >\á\rPôg¨	=“÷\êwv\ÔoüÔ…„”„\Õø@\ÏÙ¨A\Ï)^AC¬¿CC~* —ž\ÍBÃ¾¶C\Ã}\Ðð+2h\Ä\æMÐˆ¦÷Ð›–ª\Ðh4\î\É;è­‡\á\Ð$û,h«\nšù\ËšeZ½\ï\ç	½ŸV\Íþ\é\n\Í]‰æ…´BóB ?f¡\Å~\Ú\Ð\â\Ù\Ç\Ð\nZÖ«„V>C«d\îÐ‡\'\ßC&¨Akµ.Bk•&\ÐÚ•%hÝ…ih]F\Z´n<ú\Èø\rô‘ú¨	­”CŸ«/@Ÿ\ßv¾\ÖC[f’ ­»^C[§Û \ïõª \ïýS¡m3xhû\Æ\ÐöƒÐ® `h·\ê9hG:´¯¡\é?8Ð \èÀs.tpe:bk\í¢B\ÇbT¡cµ3Ð¯\ç¶@¿¯@§¯@gï£ ³\à\Ð\ï{Ô ?}œ ?oFCÿT¯…\Î_ˆ.Ö….\Øð À\Ý((H†€B>A!}P\è–V(|h\0Š¼nE\'A1R(¦dŠ™©‚\â‰g „\\<”\è´	JlN†’$PÒ­PÒ›\ïP²\Ú(e\ÛV(µm=”þW\Ê`H –”µSe½K…r\Þ\â¡\Ê\Ûòf PÁ™WPñR2TJ€\Êv|€\Êb¨ü…)T±\×ªˆk…*€¿¡‹õ+Ð¥u— KÕ¡Ë¾\Þ\Ð\åG-\Ð»B ÿN\Ø\ÂTò<aªÆ¹05\ï°\Õ`«\Ñ°µ\Â\ÖE0\Î\'\Ø\Æÿ&\â\Üý0=Ãµ0=Alki#Lv7l\ÛùØŽ“°‰‡a{l\Ö\Ãöœvƒ\íAÀöF\Ö\Ãö\ÎÀö­;\r\Û÷Lv\à	v\à\å˜\Ñ]\ÌØ½f,ÁL4\Òa\003óo0ót˜ùé›°C\Ñ\×a‡\ÊÿÀ¬¼~Ã¬®\Ëa65}0{\Í9˜}f?\ás°ˆ‡9û©Âœ_aÎ¤#0——(\Øñ	0·O¾07\Ð,\Ì#\Ä\0\æ\ß\0;qñ&\ìTþ˜\ï\ÂG˜/7æ»¸ó»]\nóƒ\ÅÀüe@\Ø\ÙÀí°€4,€§Ëm\Øzò´”Þµ	vnv.\é#\ì|!vþy\ì<\à\ìB§v¡\ÇvI6­……E>‡…M>€…)\"a\á\ß\ÜaOK`WwGÂ®=¿	‹\Òÿ‹¶\n„E¤°oÐ°ß½`1!JX¬¾,¶\Ä·\Ó\Ç|K`hÁn\å›Àn[[Â’o\ÂRüv\ÂRbB`)\ì)Xª•,}»	,£»©	»S»÷\í*\ìx=\ìž4–µº	–Eù\ËŸ…\åv0a¹Z°¼¤rX\Ð–\ßý–Ël\Â\nÿ\ÔÀŠ\ÊC`E\\2¬¸\à¬xTVª¢+5€•f©\Ã\Êö]„U\Âaô!XeŸ&¬¦ô7\ì\á\ØCˆ/\ì‘öŠƒ=©¸\r«_•«8{:Ÿk*€5:a/6Àš\Ça\Íñ\Ç`¯ü6À^\Ã\Þj5Á\ÞyÁÚ¾.Á\Ú\Ý>\Â:l†`Ÿ`]þá°®\æ°n\ßõ°«°[¤°µjX\Ï37X_†\ì#\ë\Z\Ã>‡\r8[Ã†N„\rÝ¸Js€\r=T\ÂFò\Ç`£]ó°\Ñ1}\Ø\çñ»°‰5>°¯¹\Ø\ä.l\ïû–uöm:6µú=l\æ6\0öKû\å·ö\ëöKn›;­„ýI_„\ÍWß‡ž¼Za\'7\ä\ã\r´g\n\ï6‚!\n\Ëaˆ‡—a\è6x›·†ûS\Ã	\á/þ…\ÑSaÌ”,ûð#GÎƒñ\ê>Àx\ÓJ˜\à\Ó^˜\ÄòL\Ò“¹\çÀ«{a\nI&LÙ¿¶ô>¶r±¶’¾®\ê>W{Ë‚«\ëD\Â\Õ\Û\à«uð5»#\ák\ÒnÁ5Ÿ\Ó\àšløº·\Þðuƒ\Ñp­n\r¸¶ý(\\û\ã.¸Nÿ\n\\÷N9|cq|S\Â,|S®¾\éù)ø\æUW\à[\ê\á[~m…o·µ‡o÷ûß~\ß¶\ß½¾w\ã#øÞ¿¿\áû‚vÀ÷µ9À÷wyÁ<i†\ÙÁ<\r\àF\âN¸‰G6ü ü&Ü´W7k—Á\Í\äO\áæ¾¥p‹®:¸¥\é	¸Uv\Ü\Ú+n}ž·\ÙnwanÁ	~„‡;\è”\ÂtáŽ¯T\àG›vÂ¶OÀþÉ€;û]†;\ß;?\î+»Z•\Â]›\Ö\ÂÝ§t\á\'\Ô\àðv\Ñð\Ù\rp\Ï\Üst~jõmø)ô\Üwó¸ïŸðÀ«Lx`eü<¿\n~q\Æš6}\n\é\ÂC™\æðË‹0øÿø•\"<\â\å\0üº!\r~}rE‡À£g\Î\Ãc\Ãc\nl\à·\âÀðDðD=x\"\ç8<¹\Þž\Üxž¶ŸO»ÿžë‚§\ËF\à{\àð~Wµžzž«Ÿ\Ï™>‡ý~J€?\à–\Ã\Ë÷û\Ã\Ë\ë\èð\n“?ð\n÷\Ïð\êöRx\Íþwð‡·\Ò\à\Ç\ÏÀ\ëµR\á\Ï<7ÀŸu<¿L \Â_+S\àoj\èð\Ö+ÿ\à\ïý\ám\'|\àm[x\Ûò5x»a:¼ým	¼\ã\èxÇ½ðÿx´þò\Øú˜þ‚€P\Í\à£#{\àcG\Æ\ác!.ð±ÿô¾†‡±ûÿÊ…O\ÖõÀ§NºÁ§\Z¶Â§É½ði\áWø´\\>½ü>ó >\Ã*‚_—ÿ«ÿI„\Â[¶\Â–\Â\ç2\á\×öÁ\ék\à\àm\Ï\à\à\Ë\'\à\àœUppMº+õ¥À±.&p\Ü\ëp|\Õf8\'\Ù[\Â\×7Á¹«\Ë\à\\\å&¸`\í¸\0r\r.6ƒ‹iÁ\ÅD\\¶®\Ðô€+Oü†+\Z\àJ\àuø\"d¾ô_\Ý.1u\áK\Ë\ï*6„ª)bõ†xÄš\Ê\ÇŠ\ÄZ¯q„fIB³w±¡\Â¡sÁ¡ók±i\Í$B\ÏM¡÷x±m›±­w±ó\Æ3„A^!bÏ‹Cˆ½\Ïc{I%#h \Âxd\r\â\à—=ˆƒ\\¦¾WCù\Ë7„U\×q„M\Ùk„\ì0\Â«‰8òG\á\às\n\áØ¼qt¹\ál\áŽp¶\ÕB¸.!uˆ\ã\îÿ®\ì1„[§\á¾ñ-\Â=Z„8y\Ä	q²<\áyl\Âó_\n\â”^#\Â\ër\0\Âkð\Z\ÂÇ¤\á\ë5ˆð]¡\"\Îhq~§8ÿ¹d„?\É¶8†AmºŠªúŠ’E\"‚EIˆs9\Ö\Æ\".\ÐV#.ª—¶\Ì#B\ÍÈˆÐ¤›ˆ°µ)ˆ°‘fÄ•Ä•a\âúº>\Äõ«`D\Ô*)\"\êR#\âFD\"¾\Â‘ €HðùŠH*ñ@¤\\@!R\Þ3©§*w*wˆˆ»\É#ˆ,ƒ(DV\å\Ä}\Ó\çˆÜ›¾ˆ‚sˆ¢\â\î¢8Ÿ„(~(¯F”NŽ\"Jù`DEZ9¢ò\ÈoDu\ÑD\Í\Õ\'ˆšÇµˆ‡\ÖnˆZv\Ä\ãu\Çý†\ç\Î \êkôõ\íEˆ§«Š\r`\'\Äs\Ð\n\âE\Ú¢©\ì9\â=ñJþñúŠ¢e\å&\âA\â\×>D\ë\ÇDû\ÍD\çþËˆ®Û£ˆ®Gqˆ.¥¢»ö¢~\Ñû\ÌÑ‡F|™Fô\íG\\\ÌBfd!†Š~ †9»#Q7\ã«\n\ãauˆ/\ÞR\Ä”*bb¯b\âöW\ÄDõy\ÄTfbŠu1CûŽ˜ýbŒ˜ŒAü\0]F,|\×E\0Pú\àŽp\ÅcD÷;º¥	½ß@o¹‰@\'‹\èOµü±û¬A×ŽA°Xþö©<»¾Ái>‹\à,E~g#D+_\âA[„tr!\Û4ŽT!–\Âøˆ¥ð\Ä\Òü0by\×Ä²+±pCüKÀ#UòF*KHu\Ø\0RG®\Öy\\ë¶ˆ\Ôr/Cnx¤…ÔŽ5G\êNýF\êþüƒ\Ô%E#u—â‘›8H=YRÿd	RŸÓŽ\Ü\î°¹ð¹\ã]r—Jr—y\ZrWò$r\Ï\íb\äÞ…\ãH\ã\ÌkH“ƒFÈƒ›–‘¦½5H³ý(¤\Õõ%¤õ“U\ÈÃ£sH\ÛM\"¤mH6Ò¾¨\é\èòyÔ…tJ\ÔF:e¶#ó’.\'\ÑH—{vH—ŠI\ä±\È\ç\È\ã;µÇ¯›\"]\Ó_ \Ý®#=º‘½žHÏ­iHÏÿ§\Ö\ÞEz©\è ½ºf§\rš‘gba\È35_‘gúÁHÿ§}È³J2\àB2¸\"rm-ò\Ò\ã\Ã\È\Ð§‘—O, /_øŽ¼ü»yÕ¤\nyU¼V×€¼\Æ\ã\"¯\'g\"¯?¾Œò\éBFOüA\Þ\\¹ˆŒ\ÙV‚Œ)hE\ÆÆ®F\ÆN\Ç#\ãµi\Èõ\ëÈ„=\ä­dJI2¥J™ò\Ê™\ÉtE\Þ\ÕJA\Þ})EÞ+Df%	YH2?þ52_yY˜Ž,\ßA\"4Eb\Ì¥\É\É\È\Ò¯eO¥\ç\Ø\È\Ê3W5	9Èº4M\ä£# ä““»OB-‘õ7#õ\ã.È§±\È\çbdóþZ\ä\Ë$U\ä+_òÍ†\È73\Èw}k‘­«®!ßŸ‹B¶¯yŠ\ì|¡Š\ì>Cv\ßlF~`¨\"{T¥Èž?doÙ—5‡ì«²Fö¡\â‘ø\"‡^¶#‡Û¾ G’ GP\Ö\È\Ê\ä\è\åg\È\Ïkx\È	‡\ä\×C\ä\äQ5\ä\äT\äÔ—7\È\éùm\È\ï46ò‡Ÿùó-ù+„‡üUB@þ>ò9÷|5ò\Æ0òüržGþ5A‚\nT ©Ü®ƒ„uw#\á7\np`ö‰ºQƒD\ë‘\èKöH\ÌT\rÄŽ5!ñŠ$\Ññ!’¸2$/<F\Ò{„H\Æ\ÝQ$c\ØÉL\"™òY${\\\É!\ìFrS+‘ÜŒ¯HÞº¤ ùR<þ\æ#\Åc×R\r¤”ŽBJWF‘²\ÍHù§sHù)—\Å!\Þx¤r3©ÜŸù\Ë\È\Å5ß\Ë¶\È\åh\ä2\å\rr\å\ß3\ä?¥\'JE @­ÚœˆRHD­Æ©£Ö¨EihrQk·Y 4·~Biº- Ö‘x(-¾j\Ã>jCdJ\Ç\éJg\ì;Jwõ+”\îd	j\ÓzÔ¦j³fJ\Ïô+J\Ï/¥—ý¥7òµ•}µ•ƒ\Úö™ˆ\Ú\ÑP€Ú¹·\Zµ\ëò_\Ô>L	jÿôn\Ô\ä2\ê€ƒ2Ê“ Œ]Ö¡Ljo ¬\'\ÚP‡\Ã7¡\ç Pö!/PŽ½¨£\È(÷\ÏP\îÆ§Qî‡µP\îTw”Gt2\ê\Äj&\ê„\Ô\0\å¹6\å©k‡ò¼r\Z\åI\È@Zk…:%hAy \Î0lQþ\àË¨€\0* \ì,*\Ðö*ð\\*hšŠ\ni«E…@o¢Bö B?1PW¥7P\×47 \"\×\\B]À¢n$P±{w£\âv\ÐPqT$*~\Õ•5x\ru;TJŒá¡’š?£’\ÝP)¦¨ôÿöÜ™£\î._Ce\åE¡\îg}De;@\å„\áPùlT\ÊTÑ½QÔƒ=2T\É	ªLòUY\ÏBU½¯D\Õ\è: \æÙ¢j{$¨Z\ÒfT-Ÿ‡ª;-A\ÕÅœB\Õ\r\ÞA=rA\Õ_.B5<¡\Z¨¡\Z3rQ\ÏR¡šþE¢^mùCq¨–M7P-!TK’\Õ2tõv‹6\ê]Gªõý\ê}\è+T\Ûiª\Ë\éª\Û‰úðŸÿ€<TW\Zª\×\à#ª\ï@?ª\ï\Æ)T¿„úôü#jÀt58 ‹\Z^&£F\î\ÝDR…¨1\"\ê³V\ê[|#j*I€š¾V€ú\îwõ=\Èõ\Ëú.jþ\ê/‹zë¡€\é«QÀ÷1(Ð»^x<\ÍrDÁ¶£P°6\n¡\ÐD!M(\äó\Ç(\Ô\Ðyút\n3Ý€\Â\æJQØ¡·(œ-…e¡])(²þ\Ù‹¢\\ ˜[\ÔQÌ–ûW-ŠƒDq0Pü]`\ßJ%ð\rD	¢zP\â‡=(\Åö/(Å°5j)Fµô\î.j…ÚŠZar\Ñ*ë£Ug¿¡\Õw¶¢\ÕËž¢\×L” 5ö]GkXZ£58\èµI\áhÍž{\èuI\è\r@ô†±J´ö¼ZÇ©\r­smZw\à/z£\íz\ãø$z³©*zs\ê>ôl>z\Ç\Õ0ôŽ¿\ç\Ð;\'÷¡wi%£\r\ìò\Ð#\í\è}[=\Ñ\æŽoÑ–¯c\ÐVõ\è\Ãö7\Ð6\Û\r\Ñ67Ž¢\íÊŒ\Ðv\Ý\rhÇ§\æh\'KK´ŽvQò\Ñ\Ç\Ã\Ç\Ð\Ç_´£]µhh\×h÷ñhV.ú\Ä\Ú\ï\è_~¡Ošv£=.¡=\åÐ§Âœ\Ð\ÞMh\ÜO´¯–\'Ú—¼\r}F\Zˆö\ßi€ö¯‹Bû²\Ñ¿V¡ƒ¼ƒ\ÐÁ–\Ï\Ð!{\Ð´\Å\è\Ñoÿ×–@ó\è\Ëe›\ÐWn\Ü@_50AG\î²FG«ŸDG›=BG\Ñ7.¢\Ð7G+\Ðq^/Ñ·¶\ÑÑ·L\ÌÐ·ˆc\èÛ›\É\è\Ä[-\èÄ™1tZñgtº\åitzC:#\ÑA\Ï@gš\ïFg\Ëi\èœ\Ý\ï\Ñy­V\è<Q(º@#]”¸ý@\Õý@Cˆ.=Õ‡.}ìŒ®LwBW6•¢+±Dtu}ºf>	ýðTºö\é,ºV9®‹x~‘†~|+ý6Œ~‘S~A<€nÚ«n¢£_÷¢_½{ƒ~\Í1A·œÝ‹ny]nx¢ßªC¿]·€~û¤ý\î/ýþXº}\ÝRA÷­ô¡?F× ?V=CZ“…Xg…\Ø7øŽLoE-I\Ð\Ã*Y\èaõM\è§³\è\Ñ\Ë\í\è\Ñþ2ô(\Ù=\æ@EmCO×£?\Ïô ¿jŽ¢¿*3Ð“Fc\èoN\Ñ\ß\ä½\è©8z*\Ïý\Ý~ý[‚þ¹cýóvú—\ßMô\ï=›Ð¿—\ÑóG:\Ð’04p\â7\Z\ãŠ—\íACT¼\Ñ\Ð÷\Ñ0H\Z±½x‘ŠF¼ ‘z~hŽÆ¤d¡1\Ã\Íhþ(\Zkó?€@\ã\ë8h\Òw[49\âš<Š¦\Ü\ÈBS\Õ.¢™œ14s\å3š}fÇº¢¹¿.£ù†\n4?†ˆ	\ÃÐ²1<Z¾.-\ßÒ‹–ûš •n“\èn7\Ñÿüu\ÑÿP@ŒJ.³j„Q›CaÖ¬a4b\Ç0\ëvŸ\ÂlX>€\Ñ5ÝŒ\ÙÔ·³\åÁP¶`¶P«0zt\ÌV\Ã~\Ì\Ö\ç)˜\ãÆ˜$fç­¯˜ )f°³§\Õ³w!c`bö_¥bö+S0¬\\0Fýfãµ¶\ã\íC“s\ï0&iw01¦†\ß1¦W0ï¨˜\Ãe\Ûú`Œƒñ<\Æi\Æ\éÀŒóT Æ™¸‚q\Ùi†9¦Á\ÆcwaŽq/`ŽŸ\"c\\U\îcÜŒo`\Ü…þ4Œ\çL/\Æ\Ë*\n\ãó\ã£\Ä`üž20~J)Æ¿V\ãß¡†	p\Ñ\Æˆ\ïb‚½¿`‚\'V0\çD0\çGô1\çe[0!\Ùe˜z¿1·‚1¡Ý—1\á\'va\Â\ã0—‡™˜«\ËÝ˜(`\æ¦ó.LŒw&ž\Z€¹p	“¨ý“\ì‰I~­I‹I¯ú„\É\Ä`2»\îb\î\Ø\Ûa²>`²\ê<0÷]1\Ù;·arÊŒ19o\Ü09¿\ì091yArLÁ¶˜{S0\ì\0˜\âmY˜\â\Û+˜\â+Lñ\ÌeL)ö!¦\ì÷Lyc(¦r7\0SµÒ‰©ö0\ÂTû7cªgó1M\Z1a]\Î\Ã<\Z\Âc\Ë˜\'QLý\îrLÃ˜\Ó?‚i”\ébž\ÝÞŒy^ýóœ`Œy!.\Æ4k`š³;1\Í7Ì«ýs˜\×iL\ËL\æÍªdL›¤\ÓŒ\Ät­\01¾eaúJ}0}=6˜~Lÿø\"f\è\í)\Ì\è÷d\Ìød\r\æ\ËRf\â¸\æk´5f\Òv3ù¶\n3e~óýd&\æÇŽý˜\0\ÌÏ”o˜_›,1¿žc\æ\Â\Þa\æ¾À0s¤O˜?0:Z˜o]\ÌBx&°\Ê°\à`\0N`\Ñ,t©\Ù\Â@\Z0Š\èVkô¾\îƒ2ŸÁ`•¡œC%ß´	CQ‹\ÂPF±j\Í4†\æz\Ã\Ønƒaþ2Â°ºF1Â¹NŒ¨õ\'F„:ŒG˜`Ä‘@ŒôR/F^}³Tt\r³L\è\ÇüS+Äª\äVbÕ¯^Ãª÷OcW¯nÆ®žZ‹\Õp\Åjœ\Ì\Æj‚\Ø\Øu\Ö\Øupk\ìz«*\ìú¸5\Øõ¬N¬¶½\nvsE8V\ï\É{\ìÖ›O±\Ûûbw?À\î\î¬\Æ\Z¬\ÉÀ\î1=ˆÝ¿§»)\Æ\Z\Í\Ý\Ç\Z2±&C{°¦\Î\áX\Ó\ÄF¬)°k~\Ç{¨YµZ|µnõ\Ä\Ú\èjcm\ä°¶\æ\ÙX\ÛT\Ö\Îú\Ö\î>kOu¸?†uÚ¥†u9V…u+ù‹u=ˆ=õ\ê.\Öw\ëí¢õQUÁž®C`O3¢±¾–b¬oŠ:öLu2ö\Ìk\ì\ÙUg±gM\ÅØ€†½\Ø r+6ø[6øûfì¹¼^ì¹®.ì¹Ÿ/°NUb/\Ú\ßÀ^Œ\ë\Æ^\êó\Â^BWaCñ°—¿ž\Ã^a5`¯¾ÝŽ½v|/6ú\ÝC\ì\'O°7Y°±a\ØX\Ü*l<\î6ö?›h²›\è\ÍÁ&¡K±©w/aS\ÇÜ±÷²¾a\ï\Ý\ÅÞƒ8b³ž9`\ïo#a\ïû½Á\æ˜:as\Ê\ÑØ¼Cl®#ö)[òw-¶\ì®¶¼“-\ïZ‹­\Ë\ÃV\î[\ÂVqÁV7›ckŒb±µ·wbk?\'aŸc\Ú\'°/a›\í\Ç63µÿCûú\Ô]ì›“\ÚØ·—¼°­¶\Ø÷;p\ØÃŸØŽ˜½ØŽ\Ù\Ø\Î÷ï±]e\Ø\Î/\Ø.ClW\ÅClw¶!¶›]Š\í¹\íÕ¹‚\í5Áö\æ‡aûž%bû¬°ŸÁØ¡—Ø¡™Q\ìpPv8R;rñv\äEv\ì,\0;VÙˆý|–Šýò®;á¥†¸’€ˆ?ƒ˜\âc¿f\ìÀ~ýõû\í¯;kJÀþ‹°?³¢±?Ÿ½Áþ:÷û;Hû;&û;—[u;\çÔƒ]¸6Šý{\ä2ö\ï\Ñ \ì\ß(,€AÀ?^Ã‚N>Ä‚o\Õ`7Žc‘\ï±¨s‡±x\Ä<–`qKÈ‹Ä’o¡°ô	Xö*,{@\Ë\ÙSŽ\å\Ìb9ü÷X®­VbP…•X\ëa%Ó©XÉ¯\ïX©\ÆQ¬4\Û\0+K8„•~ƒ•\Ûfb\å\ïa•;l±J\è¬’\å„]ü\Æ\Ä.]\Ô\Å._Ú‡ý‡\ÔÇ©:¾Â©¾WÁ©u¾À­yV†[\ëÂ­#X\á\Ö\ï¨\Æi=ñÁmV\ãtž\à6Š£q[\â\Î\ã¶dY\ã¶j5\ã¶^\ÔÀ\é_n\ÇmS¿‡Û¦Ám;ý\Z·ý¶;nû—\\ÜŽ\ïq;ú\á\â\Æq{¾\àö\ÇmÁ ¯\Â‡pÆ³+8cÁ9\ÜAû8\Ó\Z)Î¬Ÿ‡³\ã»¼\Æ\ÙyqöF8û°\Ã8F-\Î\Å+\çÂ¸;~¾wüB2\Îu\r\ç\êò\çÝs\ÏYÂ¹K\ãp\'|ôq\'h#8\ÏH=œ\'Twªp\0\ç³y\r\Îg\ç?œy(\Î\';\ç›Y;»¹w¶õ\n.\è`.h\ê!.x\ÏM\\ð™2\\pù\îBý\ÜEo1.ô”.4°šù	Þ»wÙ¸wE¯wõD.òh2\îz\ÊY\Üõ/\0\\”«.j\Ú	u\ÆEsºp\Ñ+…¸†.¸=ó¸›C¸›¿\ï\ãb\Æq14.N\ç.®ñ.>ƒ»u\ßw«÷#.ñ]).i\æ#.9-—šÕŠKÙ€ËˆØ‰\Ë\ë\à2\ÍO\à2Ÿõ\â\îi%\ã\îw\å\á²g\æq9Æ¸œò\\N/—ów—û\Ë\æ\ãò[\ãŒU\ã€ûq%¶q¥\ÄU¸2O\\yH®\Âô%®ª.W‘ƒ«¾\á{d^ˆ{¢~\0÷¤9W?k‚{š¼\×À‹\Å5,;\á^¬!\ãZœp\ï’õp\ï\n\\q\ï\ä\ã:\"pIÕ¸®\à Ü‡xs\\\ß]\\OÀK\\\ï¡\\\ï¯R\\\ß3\\_ûm\ÜÇº7¸ ¸þ\0=\Ü\'M\Ü@„n0¸7Tv7ü…1:‚\Ý\éŒ[\â¾,[\à&¶º\à¾N—\â&\Õûp“®\à&K\np\ßF\Î\á¦n¿\ÄM«œ\Ç\ÍXX\âfpwq³‡Å¸\Ù\ÉK¸\ït\Ü÷ø=¸_{V\á~¿\à\æ\n\Õqök\à€Gq@-ð~#\ä6Žƒq°”885‡\Ô:ŽCnÀ\ày>8d“>9¸‡¶IÅ¡“òp›+8LE\rCY\Æ\áY8\ÂG|sG\Æ\âÈ8ŠG[w\ÇZ»\Çéº…\ã\Ù\r\âø\Ò4_6ƒ\â·ã„¬8QK\ZNüœ„“lÀÉº6\â_\á–7\0q\ËxÜ¿#–¸³Fx\ÕùxU¯–XˆWOñÀkX\â5\ÜFñš¯cñh¼¶¹^\Ç)¿ñ[~\ã\Ü*ü¦\Ûñ›M³ñ[\×i\á·\îD\âw\Ö[\âwk2ñ»}\Âñ»‰|ü^•cxC7*\Þ0´o8ôoø5¿\Ï/\0¿¯÷\0\Þ(t=\Þ\è‘\Þø´Þ¸.o¬lÂ›¤Y\âMžu\âº?Ä›¶\à\ÍZ­ñ\æ\Õ ¼ù\"Þš)Áž(\Ã\Ûx\Í\âm7–\à¼D\ã\ï\ã[\á¶\âÖº\á~:ŠwYul1\Þ\Ýar-\ït\ïšŠ÷“ˆñ\å›ðJ| w\n>°v	”ƒÄ‡|\Ç_ˆßŒ¿\È\ë\Å_u\âC·}À_ö2ÁG¬+\ÇGØŸ\Ç_\r\á¯*4ð\×ò«ñ‘¹9ø(½1|T}|M{Ž‰\ç\ãck“ñq\æûðI:~ø\ä\ÛOñ©j\×ñ™:[ð™ƒ\'ðw#‡ðw\Ñð÷Jlð÷Cnâ³—­ð9\rø‚¾¶_H8ˆ/\"?\Ã)ðÅD|\Éöø²\æ|™HŠ/Ž¯ð»€¯\0‘ðU\ã\Öø*Á¾®\ä¾\îY.þ‘Yþ\Éú5ø\'÷ñO\r[ðO‡ž\ãÄ¶ø\Æ#‡ñ\Ùhü³¼füó42þy–þy\ã|\ÓS_|ó\Ç|ó\Ì;ü«{/ñoNøw”¯øÖ—\åø\ÖAüû±p|{2ß©®ƒ\ï´!\á?¾½‚ï¿¾\ßÿj?òg	?ºõ,~tð<þ³ùWü„—~rs~\Ê\Ã?\r?Ÿ…¹\á\Ø\Òñ¿^u\à«M\ãõ™xÈ¡cxh‹5†Á\Ãurðð«\ÞxD\â‰YÄ£_\Ù\ã\Ñ\äxü]<ž{OÞ¯‚g:añLJ6žUò\Ï\ÞõÏž*À³‘ÿ-\Ï|\Çó\Ö\âùi%x\áÀ6¼%À‹6Qð’•\íxyš^9¿¿Ø¦_ºq¿Tý¿„7À¯œô#¨tþ\"¨ªTmMªŸ\Ô\Ç5	\ê\ÔV\Â\êH}‚†ú Ak;Ÿ°A\Æ#è†Ÿ\'\è>\Ð$lÌ™$l|9O\ØüBÐþH\Ðo…¶1ž¶»…v¸~#\ì2ûG0üò…°o´Ÿ`¤\ÙE0òüM0ŠUŒ¾–Œµ\"	&¯\Ì\Ë\Â	¦\ß\è³²M3ô Á|Ù™ph8œ`iz–`µ¿Ž`½Ù—`]¦F°\æ 	‡©ú\ÛwR‚-H`7\×Jpˆ\ì#8m\0œOn!¸\ÛE8v\ZMp½=CpmzEpýªJp+|Lp\'\ÄN\Ü\Ó!œü\ëM8õö$Á\ë§*\áô;\Â\Ë„\0k!8È…p>d5\áüÅ·„óoa„¡¿Z›ºm	“\Õe	„Ð®B˜\ÃNBþ!|[4\árK!‚\ØA¸ž{‰5\Ë$D«¢7r	7`¶„›±LBŒn!&«˜»Nˆz\â\Î\áñö÷	ñˆBB‰!¡t†.!¤l_EH\ï¬\"d\Æü\"df\Ì2DB&§™pGÁ#\Ü=B\'\Ü=ö“p·ˆE¸7\åE\È>-%\ä¼o%\äo.$p„¢)¡\Ì_—PF\Ï#TœF¨˜µ\"T®n\"T-Zª\ïijú#ú	Ž\çk#<ö¼JxüfŽðxnžP¨\'Ô³üù„w·\Ü	\ï\îü&¼\Ã\É­\Ý\ïyZ„6­=„nC„?»	þ}$ô@±„¾½„¾\ëz„OY\ë	ŸÞœ ò	C•\ê„a\Ë4Â—\Í\ÂDôY\ÂW\Õë„¯„\Âd60sDN˜¹Eø¾Ñƒðý\ç\n\á;)‘ðcõ\"a™Gø\\$Ì»º\æ#?þÞ¯&üm<D\0\Ô ü7M€Î\0\ÛRI€\Ù\ÕeZD\ß	®\' BwPY\r\ì\í‚\Õcñ\àñ\ëK\ãZ\é¡M`Fò	¬\',gD\à¸üû\Þ\n ¤\Ë\Â{‚hAdNAeñz3‚ô\ÔO‚´W‹ ‹¿G5\äa‘E¶*a1É°4þœ°l\\BX)\ÅV&Cÿ\ìŸU\\`\ÄU6_ˆjST\âjñq\Í\ã¢†‰)QR@\\{¨¸.\å0QÇ»¨\ë\Å%nþ\ÐD\Üb¬B\ÔÏ¿A\Ôo\ç·o!n¯ö\"n ˆ»W9w×½ \îFu\r>\Ì÷t÷fˆ†û\ì‰ûM¢ˆûO­\"8dN<P\ÒE4ZH4Qÿ@4ù\ÖI4¿·H<4G´\Üx’h¢ ZÊ®­â–‰V5\ÃD«ŸND+`ñpt1ñðŒ\r\ÑF\îN<rõÑ¡Ùˆ\è€W#:FM]zw×’‰®núD‡D†‹\ÄC\â\ÉóŸ‰ž®`¢\ç;u\â©4\Ñ+¶†\èýF—\è=w‹\è\ã?Jô¹+#žV¿H<\íJô½D\'ú>I%úv¤ý*Êˆ^G‰\ç[µˆ&7\Ã\"†¹[\Ã\'D\Äpl\"ñ2M¼jŽ$^‹$Fj\ï\"^ÿú­{‚öx\ãI1ñ\æ\Ç\"bŒS1\î\ÏbB\Äñ¶ò\01\éY.1ŸEL\Ë\ÞGL/\ÚK\Ì8|„˜9\ÓB¼³Ë…x¯h+1Ë€D\Ì\ÕL\'\æ\ÂsCˆEÛ«ˆE¹¡\ÄbW,±x‰N,\Ñq#–òqÄŠ\ÓzÄª½_‰\Õ!×‰5‰·kŸ\Úm<F|”½B|TPN|¬^N¬ŸXO¬ÿu†\Ø`nGl(ñ%6¾xO|\éA|s\ï*ñ\Í+3\â\Û{ˆ\ï.ô[\'\ï\Û\ß\Û7W;\íF‰w³‰\Ý÷©\ÄÞ\Ä^Á;b\ß?-\â\Ç \â\Ç\Ùb¡±¿\ç±ŽJü”YE¨\í\"ª·‡y{‰£¾m\Äñ\â\Û\ÄÏ¼\âñ›÷#\âôw\nqú\×&\â\Ì]q\æ·.ñ\ç‹\íÄŸˆ\â\ïG\â\èqqšüVI…|\"‚.Aÿt‰0\"\ìñ\ã$©®BD\Z¾#\"¹ß‰˜¥=D\Â\ç)\"QœO$1\ß\É\"O\"\Ý\é&‘9£Md¯‹#²¿\ï%r¥QD^¥‘\Çh\'ò·\ëùþÇˆb=w¢\ÜwQqù-QQ7ATš]\'.>{N\\\ì\Ï#.\íñ .õ\'.o\Ê%.ÿ\"W\ìfH*u9¤U¨$U ImMi\Ý{’†aI\Ópœ´n]\'i\Õ’–“7Ika?i\Ã\í\Û$m²=i3\æi\îI\ÏS•´õ\Ñ\Ò\Ö	\Ò.\Ýu¤]£\Ò\îM\0\Ò\î˜’Á\åF’Á/\Ò[=Ò\×\'IÆº¡$S\çC$\Ëü’Õ£7¤\ÃPU’\Íl9\ÉÎ‡I²oó!¥œ!^%9wÎ“\\ß’\\ª‰¤\ãAv$·\Ö\Ó$Ok’\Ç7\ÉšHòX^O:…\"4\ï$¬\è&:‘JòR}Jò\ê8Mò~9D:j\'ù¦#ù\æÕ|»mIAUHw¯&]\Zˆ$]¢¿%…\í­!…\Õ\Ý!]\î,#]1\Ì$]!;’\"\ÕH×¼¡¤ÈÖ¤H\ÓK¤\ë÷BIQ\æ|R´\×~R4¼ts¾†“»‹\Ë*$\ÅùW’\â“\ÆHñƒU¤„u\Ò-<)©È…”²´”O$¥ñ#I\éfH‡’Iv­¤\Ì†¤;‡9¤;G’\îý)\"eU¹“²Õ½I¹ä¤‚=Rw™T¨cAzM*\îœ&•»]!U\Ä7“*›7’j6GjO¿ =Òž!=¹¤Oª/2&5{\í$5_t&½\Äv‘^úAjit ½I¨%½\Û-\"µ†\é’Zÿ“Z1\á¤÷c\ÏI\íVÆ¤\ÎSR\ç\Ô;¥O\ê;O\ê“ú“>2IýU:¤±oA¤1Y\éó­¤¯oûIS³¤\í`\ÒÌ¤\ïbÿøMúqJúMŠ ýaÙ‘\æ\ïY“\ÐûI\0)	øA\×“`‰K$Øˆ:	žü‚\ÒIÈ”F–¾D\"x%\æ\é$\âþ\ã$¢)‚DžùK¢:Ø‘h—_‘h1P½VHb\ßi!q\Âo‘8\È\0¿ßš$0%	µI¢µ1$1–$ý-\'\É\\\à$¹l‰$WÆ‘”R’2º´¨~†´˜_JZ²–‘VbûHÿœIÿNzþ•Å’Unl\"«Ô”‘U\ÓÁdµÀ²ZY1y\ÍÁ)²Æ¤YUN\ÖüD\Ö~!¯\Ã;’µ|\É\Úgþ’µ{ó\É»\È[Ô­\È[^\"o%õµ‘·m¿E\ÞV¸•¼#\'“lH6úM6~K6}€\'›m5#›\íK\"›\ÝA‘\Íi©d+{>\ÙúV!ù°o%\ÙÞ ‘|\ä™&\Ùa\Ã²\ãüK²‹I\Ù\ÅÞ’|¬¬‘ìŠ‘=\ådtù$ŸDöô\'Ÿ\Z\Ò$û@¢È§\×m\"Ÿ6M$Ÿnq\"ûZôýÛ’Ï®’’\ÏJ•\ä€hr \ÅrP2›´t€l}„üÐŽüF“|®ø/9\ä`,ùByù’\Ú.r\Ø\Ær˜#9\ÌÔƒ\îHŽ“¯`.‘¯\Ð\ä«¦\ÈWÝ“\ÉW/ù¯9ê’¯¹µ’¯þ&_¯ù@ŽRQ£œ0\ä›fkÉ±«\Û\É	g\Ð\ä[‘\Õ\ä[\ìÈ·¿…“R\á\äBrj\Ðir\êµ\Óä»=\ä\ì\Ø6rn\Ó5rA„\\«$1N’Ü­\'—˜»KZ“È¥f6\ä\ÒxCr…ý!r•y5¹\nJ®¥“k*]ÉµoRÈµý(ri(ù\É0žü4q˜üôŽ7¹!\ï¹\á9ùA…ü|M~\á&%7o\"7\ï`_)Þ“_w°\Éo¿Ž‘Ûž\'‘\Û=É\é\ä\àjr\ï\Ö`r\ïr\ïù\ã·4r\Ð0¹¿f7¹\Ò@¼%%]\0’‡rÏ“‡“\È\Ã3\å\ä‘\×\Å\äñ^Mòdi\'yªbù{ÿ^òÏˆzò¯\Ù	òoO8ùwT.ùÛŸ¼\Â%.\n\ÉÀÁ@2(·Š¢3\É`\í.2\ÌBŒ®H\'c¶rÈ˜¿ód\ìs2Nµ“Lˆ\Ï!OL‰¸_d’ýW2ùƒ™nI¦(-\ÉôK†dF\Ú2³ò%™õ!‘\Ì	·%s5G\É\Üc†d~±Y°Öˆ,\È8G\Ì:‘²ð\Û0Y(j!‹YT²d;–,[h#\Ë\Û\Z\ÈJ•Q²2#œ¼È†“—ö—“—þ«™\å\ÝRòŠ\êy%`E…MY“-¡hL\ÍQÖº\Ó)šS)š²”uw¶R´jþP6¨_¡\èü»@ÑxO\Ñ-AS6\íS6ô¤l>mA\Ùüûe‹/™²£Ô™²\Óbe×©k”]-Ê®\ß(»`-ƒ\Ã\Ãƒ_\0\Ê\Þø\ÊÞ¢$Š\áFO\Êþ”ý\Ù”š)ªz)F1ý”ƒg7S\Ìƒ)‡‚_S,ñ=+¯«W|Š:‚r\Øj€b£C±m¦\Ø=Ò¤8„\rP\×fRuvQœz(.‡\Ó)Ç´3(n\ÒJŠ›Añˆ9J9a\äH91½…r\Ò/ˆ\â\Õ\àDñP¡œ©ùJñ{p—\â×—Mñ_¯E	ô²£ÆºP‚3§(ªS.öS.¢\"(—\ÊK(\áGR)\áƒ]”+\Õ2\ÊU:†r\í¬	%ò 3%\Ú#Ÿ]H¹y0ƒrsÐžCs¥Ä’Ä”„\Ñ1\Êm÷”D\ËU”ô \'J\ÆC6%3\ä$%SlO¹£¤d\í\è¦dYÜ£d\Õ\ÄS\î\ç¶Pòb¯Ròˆ@J¾…?¥\Èj¥\È\ë!¥hd\åÁ{\Ê„„R¶J)·§TlÉ¡T¦=¤T™¡T¯r¥\Ôl¤\Ôø\n)5’”Æªo”g~”gð9\Êsa\r\åÅ†”—«(\Í9bJó\"‚òjKyclOy{±œòN#‰ò.\è=\å]”!\å4•òÞ»…\Òö\çú\ÌS:üþR:½F(]A•”˜¥wC\"¥/ÓŠ\ÒW°…\ÒÑ“\Ò_$¤|¢ß¦n)¥žò¡%iS†òŒ)\Ã\0*e\äœeTe\reìž‚2öð-e¬m‚òùD\åsz9\åsû\r\Ê+Ê—\03Ê„ÿj\ÊD\ç^\ÊD·\Z\å›\Åm\Ê7·4\Ê\Ô\îË”©\ê)\Ê€D™m¥\Ì.ß¢|\ÏK¡|\ïM¦,ø-Rþ\Þ¥\0£(€o\n0\ë8ôy\â–JTwS ‡(0ý\ßØ»\Óxx=q÷AO¤ \Éx\n\ÚÍš‚%S°+O)\Ø,…¬yB>6J¡\ÜU§\Ð_£0ûS\ØIcŽG\áb\Ý)ük¿)ü\êO\á–0Š\Ð_H‘\è¤S$¦I^\'Er–\"\'½§(4ª)Š²\Ë²²\èEYLñ¦,\'R–\Ò(KEA”•U”•]Ê¿ŠÃ”‚Z\êª\ìKTõ±\Ç\Ô\ÕU%\Ô5»8\Ô5W?P5R+©šS4\êú¶\êz\ÆyªŽ\ÖU÷W9u“\Þ9\ê\æªO\Ô\Í?4¨[v.P·\ì{G\Õ+m£nõ÷§n¤î„šPw{•R\r6n¡\Z¾\\C\Ý7ú…ºo¡†jd¡I59®E5ñ¢Z\Ô_£Zõ‘jEœ¡\Ú’¨¶\Åw©v^¨v\ÚTP\Õq\Ý9ª\ã›ûT§–\ÝT§y3ªË±I\êq\Ï2ªkð*ª\ë\Ï1ª+\å(\ÕMÏ…ê®’Cu\ï	¦žüdD=Õˆ£z[°©Þ´aª\Ïðõô>#\êi§W\Ô\Ó	ª\ï˜5õÌ¿6ªŸ\Ñª\ßG&\Õ\çª¿\Ïk\ê\Ù	\ÔÀ\Õë©ß©\Ý\Ú\Ôs›\Ôó¾i\Ôó\ÝG©¡£\'¨¡tMj˜\íSj\Ø\àmêµ`\ê5\ë\Ç\Ô\Èÿ\ÎFN7S¯\ë^¡^÷­¥F½°§\Þ4 Sc\\J¨±/Æ©ñjb\ê-‚5õö\änj\âº\Õ\ÔÄ„ijò¥_\Ô\äÁ}Ô”“\ï©)\á%Ô”–,j\êsWjš³.5-IM+\ãQ3\n^S3\×FS3\r¾Rï¼›¢Þž¡\æ>Só~Póù\Ôja…Z8X@-œ+£mÎ \å< >\Ð\ì¦>ð½D-=J-Yð¥–õ-R\ËO¨»©\ïNQkQhj\Ý‹ú¸\íõqûf\ê“ýL\ê“\ëÔ§¸v\êS²’ú”óŒ\Ú\0¸Om\Þv\Ú\Ü\r ¾º7Nm‰j¥¾\Û\ØD}Ÿ\äOmTS\Û\í\Z¨]»\ÎS?\ä™QûôŽP?ú^£~*ø@°Õ¦<Œ¢=<A>½:ü*:ŒQ‡%¨£†>\Ôñ8*u\ÜFý\êJýZ\ÜDý¦B\"\ZPgí¨³\'©³\\\ê{3ÔŸyÔŸM©?—žQç€«©Ç©×‡©À\äT`\Í)*XG…˜\í§\"Oí¥¢\ß< b\ìú©˜ú*–\ÝH\ÅuyQq\Ë\åT\ÂL•\ÈH¤\Ò\ÜTúV*\ÝHen›¥²F\ÎPY²\ÏT\Î7•\ßaJ¬M¢\nt¨¢\ÙTY\Û{ª\Üm\'U1yŽºxFº˜øˆº¼W‡ºòMý˜Ký\×7KS‰6 ©\Z< ­ž²¡iºM\Óh9LÓ„Þ¡­»8A[ú‚¦•fN\Ó\Z#\Ñ6´2i0/i°ž4\í~m£·\Zm³Ášž\Ú4m\ë­|\ÚV‘*MÈ¶\Í\ê*m[½	mûK?ÚŽžM´]š–´]Km´\Ýwòh{\ï¥\íýQH3\Ä\ä\Óö\n¤7}§&\Ò\Ì÷\r\Ó,¶¼¡R:\Ð,\ë.\Ò,\Ù4+—‡4[ò\Í>\ì\Íñ¼”v´p„vtA—\æ+¤93i.Õ³´c]z´\ã\Ú8šk†:\Í\ÝqÍ´B;Q™F;y–E;ù•Jóôô§yþZM;õMó\Þý“\æ}ð:\Í\ÛiŽvšhM;cw‰\æg\ÓIó»LhÁÓ‚b*iA‹oiÁ‘´óX]\Úy˜v”J»\ä—N»$í¢…¶¥\Ó\Â]\Êh%\æ´\ë\Íc´\ë\â8ZT}5\í\Æ\ádÚ81-FTM‹½³‡Û¬O‹%4\Ñ\âH´øL\íö±/´Ä¤9Zò\ÙDZJ¶-\ÕH–j\Ù@K\Ë\Ú@Kj\Ó2v\í¤e\Z&\Ñ2\Ý\î\Ò2‹§hw\Öi\Ò\îT®¥\ÝCœ¢\ÝÐ²\Þ|¡e!\Üiù§/\Ðò\Ï$ÓŠü¨´\Û6ZIv­4e™V\Æ÷¥•gÐªÞ¨ÑªÓhul;\Úc\Íc´\Ç\Ô[´Ç‚‹´\'‡šiõfZƒl–\Öøn€ö,þ-\í¹Q)\í\åöPÚ«\rÚ«B8\íµ\á­e$’\Ö\"¤½ñúA{óÐŽö6Ðœö>ÜŸö^\á@\ë|3M\ë*cÐº\×W\Ð;hCt\ÚHnm\Ì>š6Ž\ßJû’ôŒö\å]m¢ôm¢¬öu\Õ \ík‡9\í[L	mŠ¾‘6m\ÛCû\ÑKûyò\0\í÷ñs´?‹i€“«iÀ\Z®F¢¨4\Ð\Ù\Zd\Ó\Z$\â\röÖ\'Ð’1\Z¡wœFþxFõDÐ¨“`\Zm-‰Æ°£1=\Ëi\\›]4þ\"°L§	?\Ð\Ä\æª4±_Mf7I“\Åý¥\É\'„4\Åów4¥6†¶”0H[Ž<O[\Ø@û—ÿŒ®2\ì@_µð–®ª‹®\n¤\ÑÕ¾\æ\Ó\Õbú\Z\åzº†XŸ¾ög#}½o}}9…¾¾®•\ÙM×ª¸O\×\îyK\×I¡\ëÀ–\éºgû\éº\ÄbúÆ[ôM\Û^\Òõ\ä\Ñõ\â\é[ÿ\ÓõŸ \ë/O\ÓwØ‚\é;\Ë\ç\é»\Ä\Ç\èYô½roº!Ê‘¾\Ï\'‚¾¯\ä.Ý¤žI?¸=˜nš7K7;QK?dœH·,¼O·¬Ö [M\è\ÖQhºu\ÇQº5Í–n›õš~\ÄAJw\ÜEw´,¡;z\Â\èŽ#\éGu\Z\éN«\Ã\éN4ºó\Íaº3û\ÝYaJw‰(£y\îzq;\ÝM?qoý\äŸtÏŠ(º\×A=º×ºO\Âºoš˜~Ö¸Ÿ~\Ö\å=ÀW—ÐF´zH<ûž\Äí¥‡´:\ÒC~Ÿ¤_¸rˆ~Qe„~\åó4=\"ó>=\âù=\âkýšt3=R·‚~}õ4=*ö=šò”\ÜIµO¥\Ç%\è\Óã£µ\éñ©)ô„_\Éô„\ßuôÛ\í\é\Éô”\ÍZôI=m8“ž.W£gœ_EÏ¨-¡gLb\é„Zz\æ# ý¾ùqúýzöP\'=›C\Ï\ÙC¤\çª&\Óó\Öd\ÓóL\Èô‚»ô\Â\é…e–ôBx\0½\Èy=½\ÄT“^B\Ò\Ë7”Ñ«’\éµ\Òù¤?#–\Ñ_¨O\Ò_h\Ï\Ñ_@xô&}czSZ½ù\ÐNzóû\çô—§-\è-\ê^ô7Zóô7{Œ\èo²\àô\Öz»\ãIzûG&½ƒø˜\ÞùÇ˜\Þk£÷ƒ»\éý\Ø@ú§•HúÀ\Ã\×ô\ÑP0}tú!}\ì´ý\ËX}\"É€>eRDŸ™¡ÿ\\_Oÿ™Aÿ5\ïDÿ;3Mÿ»XL‡¤Ð¡Ÿt\Ø\':ü\Ê:b\ãC:\Êf‚Žú{ŒŽ\Â\Å\ÓÑš:t´þk:z\è:\ã“@\ÇD\è\Ø\ç\rt,Ú†N,5¥\Ç-\éDb$H\'\ÇT\Ò\É\Í\Îtò\àI:µC§.U\Òi{\é´_>t†~\'‘~•\ÎxD§3(\Ít&@g¥l§³\æ>\ÐÙ‹:\çY\r[I 1\è\Âù]t1@—­?C—…¶\ÒtÁš®dm¢/†}£/\ÅEÐ—\Ú\í\éK\ã^ô\å\èE†J\ÍW†\êóf†j‹\'C\Í\nÀPK\Ì`¨u\ã\êüb\Æjc­\Û#\ÆZön†fò c\ÝE\Æzµ\\†v\Éj†\Î	.C\'@\É\Ð=®\Ê\Ð\í1t\'\ç\Ý\Ó›5*úó?\ÛN0vDE2v\Þ_\ËØ»û+c¯°›axÍ†a\ØbJ…Œ}ýw¦C\î³³\ßf\æ§\Ì\æÀX†ùòQ†\å£3›õ\ë¶gŒ#\ãŒ#Ž\çG4GR60Ž,2²†\ãO†\ÓYo†s©?Ã™®\Ãp9¤\ÆpI>\Êp)û\Î8.|Áp+†3\ÜPŸ\îó\r\ën†G7•q\Â5q‚ù”\áy—\ÊðÚ…`xeex=þÁð±0NO g`/~¦ƒÿÁŒ³¦“Œ\0#PŽd eYfœ{¡Á8_2\Í)ud\\\ÜÁ¸t\î#TNc\\s~Î¸\æNfDº3\"“\åŒHe7\ãzQ3#Ê£Šc\ãÄˆm¤0\â\Zƒñ•ÚŒ¤5Œ\ä{¿É¥«)ƒ9ŒT“‹Œô°3Œ\Ì5óŒ»Nw}\Çw…û÷9]Œœ{Œ¼ÝŒü­\éŒ|\ÙFÑ¼\n\ã\ã£x\ï\0£xô£\ä\ÃFÙ¾ûŒ2\Ú£ü‰\'£bÅ¨¸¿šQqgT¬\Ô3ª=¯3jgÔŒ%2ju\âµŒ×ŒGTuˆŒ\'»>3žjE1\Z\â[MZWMM0Fó†@Fs£¹{Ž\Ñod4c“Í‚Œ·™‘Œ·„nÆ»]?\ïr“­ÁŒ÷—‘Œ¶8{F[ƒ£=\è£ý–%£#¸\ÑÁü\Ãøp*ˆ\Ñû\0\Åè…•1ú5Ž1®2š\0Œ°c€´1y’1t\Âv\ØÀÎ¹À~¾–1ò³š1ª_\È}ö”1¶\ã%c\\K\Ê§80>»j3>—M1¾\à—_¢_ó™ŒÉ–F\Æ\Ìq\Æ8œ1·³–ñg\ÂXðú\Î\0œº\Ë\0ž\Ìe€¶g2ÀH\äû%p•wþ\Ê@nü\Â@=00»¶20Ü,`‹\'1p«ø[\×´ƒ|žA–·0(7t4m!ƒv\ãƒVÃ \ÍN0\è\Õ*†Ü•ÁþFbpLZ@ƒ;™\Ï\à|a¶½c\Ò\rR·1†ô†!ýP\ÏP\îf,F82›f+Ï²+”gŒ/\ÙL•OG™«n1U/\Ç0U\çŽ0U•fLõ\Â\ÃLuX sõ\Î~¦\Æ#0s­x\'S\ÓD‹¹Áeˆ©dnn<\ÎÜ²~¹\ÅÙŒ©?pœ¹ƒ—\ËÜ­¿‰¹g\às\ïž¦¡ö+\æ~­\Z\æþ=ÿ˜\ÆÁML\ã\ÂA\æAX\Ótµ\Óôži®\rgš\çÒ™‡\î3µG3\áN2-\Ó\Þ1­sL\Ûw¦m\ë¦-Iiw\ë\Ó>~=\Ó>w’i_õ…yd\ìóhˆ\é\á1\Ïk0K¿1,3»72]õ73Ýž\ïcº[µ2O(T™ž*L\ï™¦ÏG\Ì\Ó!×˜gT\ç˜g0UL¿){\æY=3\æY\Ùf@¾>3°¦y®Æ¼˜e†ž?\Í\ßKd†[˜\áGŸ1\Ãi@fø\âór\Ú?\æ\åû™W-õ™W‹.1¯b1¯÷`F‰\"™Ñ›¾1£c[˜Ñ™uÌ›\Û˜7k˜±i\nfü\áf¼\ï3AÄ¼ú„™<:\ÂL\ïžafžóc\Þ1úÀÌ¾SÀ\ÌnyÁÌ†™ÙŠ?\Ì\\q83\ïX&3º‘™\'¹\Ä,Rób9w2”<f>$1K<©\ÌR\É5f\å¡m\ÌJ\éCf•‡:³\ê}³ZÓ‰YS\ÐÅ¬)^b\Öúo`\Ö~1ë‚¿1?º\Î|r\î³þ\ì\Æw‘\Ù\Ð0\Èl¼/g>‹z\É|öw³)\Â|½e;³\Å\Íl¡$0\ß<š`¾=Bg¶~Kb¾_\Ë`¾<\É\ì”}f~8¸›ù\á\ì³\çT\r³§«€\Ù{¹”Ù¯y’9¸*›9|Ž\Í;Çœx±Šùµ<™9\ÝwŠ9‰bþø1\Çüùt+ó\×Ek\æ\ïú|\æ¼c\"s>}š9ÿg€¹\à)g£¬˜ ó(&µƒ	\Þ\éÎ„\Ù1\á\ÐwL8\ï#!‘0q‘<&þø;&¾ —Iˆ\È$\Ì{2‰\'˜DŠ’II\å3©æ™´\Êd&\r c\Ò`\ÆLº8“þ\Ìû?2˜Œ¿\ÍLNe“Cù\Ã\ä\î˜gr\í\'˜’°0¦¤¬’)\Ýòš)[eÂ”\Õ`\ÊZ2•»\â™\Ê!sE\Ø\Åü—»†¥¦\ÂR÷¹\ÅZ½=›¥\Ñý‚¥Á\ç±\Öy°´ªÖ²´/6°´û¼Y:\ÙV,\Ý\ëXºt3\Ö\Æ,o\Ö&c$kSªkS\ÍŒ\ÐY\ÛOmf\í\Ý\Æ\Ú\ë­\Í:`q†e2¿u0¹e\ßÂ²¸}uH}ˆuH+še£\Ã`\Ù\ØY¶j,[†!\Ë\ÎÅ“ej\ëHúk–£‚\å\ä\ÇrzÀr\"€Y\ÎYS,g\Z“\åR7\Îr!N²Ž—Ø³Žy\Ïr\í?\Ãr\ë¶g¹\êYž¾“¬S1Ë¬S#,¯„–·\å}\á\0\ëÌµ§,¿“&¬³\íV@\Ê+\àý\Ö9D\Z\ë¼\ÛUVH\'+$;R7Èº4Íº4\í\Æ\n_©e]þ9ÇŠ¨¨eE€6²®\ØÄŠ¬n`E\âW³®\ï±n®5b\ÝÜ™Ìº\éõœ›ú›\ç\\ÂŠ£?`Å¿yÍŠ_4b\Ý\Æ^e%fü`%5ÁX\É~Õ¬”\äqVJ\ãYV*(ž•ö8œ•~¢Ž•i\ã\Ê\Ê,\Îbe	˜¬ûŸ³Y\ÙsY9mÁ¬¼µ‘¬¼T+ÿ¤«Ð²‰U8_\Æzð\è;«t\Ï=VùñlVe\ÄwV\å[{V¥°U5°ŸUõó2«Š`\Õ:*Xµ¿o³\ê\Z®³\ê\0Xþ³ù\É92\ë©\ÅO\ÖÓ’U¬‚«q’õ\ì‚«)ó«ù€	«¹~€õ\ê1\ë\Õw\r\ÖkW\ëõ…«¬7©I¬·O‹Xo•_X\í\ÌW¬Ž¸S¬ŽºdV\Ç\"œ\ÕÕ«\Â\ê©ù\Ë\ê¥>fõ\ÑcõU(Y}Ê¬Ák“¬¡+;X£«¢Y£•¬q»^\Ö\ç®¬/-¬oõ\×Xßˆ6¬©7XÓŽ»XÓ¤‹¬™‹¬™8]Ö”W¬ŸXÖ¯‹e¬\ßUP\Ö\\Hkn&õ§Áúó§…5\ï\re\ÍG|d-ô\Üg-LZ°\0ž;Y€\Ö,\à\0†ª~\Ë\ßdi\Ù,h\Ï~’…XY`¡¼±P¾7XƒY¶3E¨—°ˆµÿÁ`¥ž,r\Ã\r%Ë¢n!³˜\"m+v‹•\î\Ë\âªM°¸^‡X\Ü{WX\\Àq‹\ZKPý„%\Úý†%r-g‰\Î.²d\nM–\\k\'K¾²—¥4Ç²7º±3°–,\ÜYKø\Ör‰/[\åt{U\à¶:^\ÉV\çýa¯†³×„³\×\äq\Ù\ZZcl\ÆR¶Æ³`öZ\ëöÚ‰9¶\æW2{óm¶–Ô‡­ý©€­ƒt`\ë&M²7\æleoö\Ïgoý˜\Ï\ÖÏšcoß´–½¸\Â\Þý¦Œm`¤\Í6(>\È6è–²÷ø&²÷–:²÷ö´°÷¢\ãØ†\Þ\Õl\Ã,&û@ÿ2\Û\ÄT\Â6)+bŒTa›þD²Í¾¿f›û\ÜeòºÎ¶¼/e[E[³­bž°­\î`Û˜u±m¤l»p=¶]\"ƒmd\Û\ßHdMub;>e;…R\ÙN&l\' 9\ÛÙ¶}Ü¸’}BeŸ\ã³OLeŸÄ„°=™\ÇØ§\È\Ål¯\ä*¶w\î;¶¯\Ì>ó/žðjš¸ù*û\\\Ã_öy\ÕLöùñzöù¥{\ì\ãE\ì\×!\ì\ã\ìK€v(\ã;\ìe;|ûûŠ³:ûJ€?û\Ê\Ì$;\"ÂœQÇ¾zx…}möûÚ¿3\ìH«\Õ\ìh…/û¦œÉŽI\Ìc\Ç|mf\Çë«³KÙ·ŠØ‰À¿\ì»^vê›­\ìŒ\í0v\æ\Úv&¬Ž}Gr—}gy„e²‡}qž\ÍKb\ç¾a\çwO²ó¿\"\Ùùˆ@vj»ðx»ð\ÃIvÑ¬ûO1ûÁ\ÏW\ì—3\ìò+Ÿ\Ù\å­Y\ì\nO/v\å	svõ\Úzv\Ít-û¡œýp\Ï~8\nc?œa?r˜e?òhd?\Ýa?‰7b?\Þ\Æ~ªý‚ýt\Ï;v\ã-5ö³ó^\ìgI\Ù\Ï\Äì¦µf\ì¦ôöK\ãHö\Ëó\Õ\ìWv;Ø¯g^±[²?²[ò\Øo®*\Øo\Íß±[#\ÙmH}vG.†\Ý]\Ð\Ì\î®ø\Çþ\àÀ\îõ\Ù\Ïþ\è\Í\î7re÷3\é\ìO6;\Ø\à.öð!\'öø§!ö—\Ò\\ö\ä\Ö{\ì\ÉúQötÁ)ö\ÌMölZ7{¶%‚ýk\ê,{\Îrœ=—}‘ý÷¡+ûoˆ\rx\Âžü\ËöÛ°Á?N°¡;\Æ\ØP¿6\ÜÁFlƒ±§\ØHJ>…\Ý\ÅFß¹\Í\ÆÀ\n\Øx­q6\ÑC“M6\Ôd\Ór\Øô\Ø\rlö%›ùƒ\Í^~\Í\æ\àS\ÙÜ„&6¿¢”-°hc\ï²%žÿ\Ø\n•Ÿleú4{i¾ˆ½$\Ø\Ë^9µ‰½2y‹£²ýG}\ãgõ¦ýœÕ£û8\Z\Æ\Ök8kÕ‡8\ëœqÖ½tå¬dp´\È8º\Þ\"Ž\îó\n\Î\æ6ŽÞªŽž\ì*g+(”£õ%g›\×g»m.gÐ†³“~“³W±“cT½…cô{\Çø\çŽ\É*%\ç \Z‹s0;spv\Ç\ÜmˆcþÃ•ca;È±¼\ÖÏ±|~œc\íüc\í>\Î9,{È±\ÙPÊ±1›\ç\Ø¨slWš8vÇ²8vi‡<Ž£ñ_Žc]/\ÇxŒsô«\Çù†&Ç¥Â™s|\"‚sü·-\Ç\Õ$Šã–š\Æqÿ\Ù\ÇñB=\çx¯\Ñ\çx\ßq|,9¾>\ß8¾\éÎœ3\çº8g\Ê9~&f¿\ÐŽ¿l\çlö9N€\ÞvN\Ð	}Np\Ín\Î9š\çó\çü\'\äf\ç\Ò!(\'I\ç\\¾\àÅ¹\\\ØÍ¹üÊ‘sE3ò\å\\\Õ\ã\\MZÃ‰òl\á\Ü—snf97=œ›/rnŽý\åÄ€ª9ñÃ­œ„ïœÄŠÍœd\×=œ”\Þ;œ\Ô5DNªñ\'\Õl\'õd\'ý\ëmN\æ½,\ÎÝ±\Î=¿d\Î}|\'ûü]Nö`\'Gtˆ“_\Å)ð_\Ã)ˆ\âòb8EÂ½œ^}œEvœ†§ü¼§<ƒÈ©xyšóð&Ÿó0>ŒS\ë{™S½SgVÇ©N\ç<Z.\à<Y-\á\Ôkž\â4Xœ\å4®ƒqž‘Ÿq^qš´‹9M\rœ—6IœW•78¯\rœ8-ö\'9mW\"9mmœv\ë`N»Ô“\Ó\é¢\Æùð_\Üz¶}\ãôXÁ9=/ƒ9½—Éœ~¿\çœO÷Xœ×œ¡–œ\á\èJ\ÎpWgtl+gl#’3¶{ˆ3>;Ä™˜!p&x\Î7]\Z\ç›,ž3\ãÂ™\Ö~Î™n\é\àL9Ä™ñL\âÌ„œÙ¶`\Îw\è?\Î8\ÎO¿­œ_Å¦œ\ß\ïùœ9‹Ÿœ\ß\Î\ßuO9\à\íG8\àw¯9­—8¶ „\éÁAÀ¤]8-\ã`^rp\êº\Üy\Ãou\ã\Zbƒ9‡l[Ë¡ô94}mp‡y\á+‡9z†\Ã\Zˆ\äp\Ë8¼!Ž@û!GP‘\Æ`œ9ÂšŽ8\èG²W#þÈ‘ r92¶‚£Ø´Š£\ÔûÀùw\é\Z\çF\Ä]eB\ãªVr\Õþÿ\Ü\rs×­½\Ï]·oŠ»®Ó‡«¥ª\Æ\ÕÚºƒ«ur…»Ácœ«sg’»	£\É\ÕsþÀ\ÝZd\Ã\Õ×¡põÍ’¸\Ûš¸\ÈJ\î\Þ#6Ü½\ã\Ë\\C\r®!ž\Ì5\\\Î\å\Zý\Ó\á\Z·sMÖŒsMX@®©\ÊA®©™3×´\î(\×t¾‚k¦j\Æ5SFrQ³¹Vi\ë¹Vm‡¸V|×®\Ïu0º\ÂuÈº\Ïužçº†õp]ÿ˜qÝŠþq\Ý#¹\î\Ð\î\ÉK&\\\ë®o‡\ë\ïú‹\ëZ›\ëÖ‹`P\Ï\rB\Ûqƒk\Üsy—¸\çP\Ü“X\î§d\î¥#¥\ÜÐšC\Ü\ÐFKn(6Ž\Õ\æ†\Çâ†ƒ\è\Ü+g\Ïp¯4p¯M¹EÜ«)xn¤Á7nÔ«‡\Üh\Íõ\Ü\è\ê+\Ü\î¹7\ß\'rc§”\ÜXô,7\á\à6\î-.—{\ï\ÏM<+\ä&\Ê}¸\É+×¹i\ã<nºŽ7ý\Â9n:Ç“›\Î5\àfl5\à\Þ\Å\\\ä\Þ\Çr³[Z¹\Ù3µ\Ü\Ën\Î\äin®J7\ß›_\é\Î-:V\Ì-šrH0\Üb±·\Ä/”[~ò<·ü\\>·²IÁ­\É\â>:\î\Ç}ü…ûd#šûô1…ûTò™\ÛP\ã\ÄmXª\ç6\æ\ä6Rm¸\Ïý)\Ü\çMÁÜ¦C-\ÜW‚+\Üw•\ÜVV4÷=m™\ÛþŒ\Ûþø,·\ËËšÛ•\ï\É\í\á%q$R\î`.;2š\Ë\Ûü™ûY]‡ûùŸ!÷‹¶„;Q´–;\ÆýzÅ†;	\ë\ä~s\í\âÎ˜jqgMqg	\ÜÙ¥ƒ\Üï›§¹?\"¸?\"M¸?w\áþ÷\åþZ½–ûK²\Èý³Î;_t“;\ÏSpNü÷\ÚÀ–s]>\\ ò\ã\ÈUã‚‘H.\Ä~’\ßw‡§©p\áK_¸\ã$.¢Ñ›‹TTr1\àF.>:ŽKtû\Î%À¹dþ.\ã\Æ.‹¼\Èeqƒ¸\ì~.§w—§•\Ì\å\rjsù“\Æ\\ñ\Î%®\ä›W\"s\æJ7K¹²\ç\Ö\\ùš^®\ârWÁ\ã®P¥\ÜZOe\é3o\åOõ\ÒUžÚ´	oõÁr\Þ\ê\ÄK¼5\î<’³<\r\Ô=\ÞZ²!o½j?O+\å.O‹\Ý\È\Óö\åót\ã\ÒxºbosJ:OÿIo\æoûŸL\Þvƒ·ƒ\Ã\Û\éð„gª\É\ÛóÖ—·\Ê\à\í];\Ê3Ü¾g(\Ù\Í\Ûw\'Ž·?\é\rÏ¨Mg²…\É3i]\Ã;˜)\â¬\Ú\Ä;ø(w°\í+\Ïøgö.‚g¾\'ˆg¡oÅ³ø`Ï³ücÄ³‚eó¬”<\ëõ‹<››—y¶«~ð\ìnzñ\ì\ïòŽ¼Š\å9\È\æ9&iòŽ¦ðŽ–MòŽV\èóŽ\â\ÍyNh \Ïi)—\ç¼\Æs‰r\àÿ2\Ëó`m\æyˆóx\'\Ìýy\'75ñ<\ëŽò¼*Ÿò|_©ó|¿¼\çù¹›òü®Ÿ\âm%ð9ò.¨ð.Y#y¡—\Ëya¿žóÂ˜m¼+‚yWi¿x\×\Ãúy\×\ÓKx1\Û?óbd½¼\Ø\Î5¼X‘w\â/Á\á\n\ï–U:\ïö¥\Þ\í«ûx·ûÁ¼\Û+f¼\Ä\Ö^ò^0/uð/\r<\ÍË yñ2³\êxw^ó\îyž\ä\Ý\Ã\áxY\ÏxYƒ»y9Iq¼¼Íº¼¼ür^b/¯põ^\Ñí‡¼b\Ë\Z^©\é;^©\Ë¯¯\Í+Û\Æ+“\ç•c\nx^Å»*^¥¾+¯Ò†Ë«\ÖùÈ«&Œð\îo\à\Õþ\Ó\æ\ÕIþòõ:ñ\ê½\îóž²\æy\r\'\ìx\rm;y\rÞ‹#R\Þ\ßK¼&õ\Þ\ë\ì#¼\éi\Þ¢\ï\í·Q^›¡¯¿\×t–\×1$\ãu^*\á}\Øg\Îûp.÷¡´’×ƒ$ó>ð>1My\ë\"x>_x%º¼Ag\Þ\àµF\Þ`Œ&ox²˜7S\ÅŸ\äA\á¼ññ{¼/‡®ò&öPx\ßB\Íy\Ó\Õwy\Ó\Ò`\Þ\Ì\'9o¶\ç\ïûm\Þ/\í\ï¼\ß\Ûø¼9|1\ïO\Ì\r\ÞB\Äo\á„÷W+‚÷w1›PAð\0±y€P„\ç\çA<PøVøf\0ºË™E–ð\àzHz\ç~zb+z¡”G«\æ1\Îl\ã1ªñØ·\Êyœ=v<N\Î/c\Í\ã\îþ\É\ã.±yüÍ‘<~HO°ÿO\ÐZ\ÊŒ$ðD\Ì\r<±AOª\ÊSh‹y\n1’§ü¹‡·x\ïoñeoQ,á­”yñUvYóU>“ø*b_þªºw|U-_…\ã¯\Ñ_\ä¯9†\ãk\Ìð5Íªùš‡Tù\ë6.ó×‡òµlNñ78MòµÃŠù\ÚFü»‚ø\Êø[7\äo½B\à\ït\ß\Ã\ße\Î\ã\ïú4\Ì\ß]¢\Ãßƒ\Ð\ç\ïýwŒo¸q„¿_^\Ë? j\Ì?ðÅ‹\0ð”`‘\Ä7\âù\ÆM|“¬\'|Sÿ|óý¯ù*m|\Ëß¥|«<\ß\êƒ5\ßúü2\ß\æ\Ôv¾\Í\ãŸü£’l¾ó•«|g\Ò\ß%rˆ\ï\Þ\ÅwKQ\á»\Çfð=ŽZð=òø\'\Ö\ÙòO2nòOJžòO\å\Úò½³øÞ‰Rþ\é²\×ü³\Ú\ãü€\Z#~\0Ð\Ø1\ÄÊ¾\È?·\ë1ÿü\çþù™+ü‹¿ºù—ñ/mûÅ¿´OŸz ‰*¹\É6\â_N\ï\å_þ„\áGlž\åG\Ôn\å_\Ûûù ýú\0ÿzò~Lc-?v·€Û¼—;\"\áÇ¢®ó\ãQü„Ÿ\Íü\Äü1~bu5?é®‚Ÿ¤ô\å\ç¿\ç\ç\Ã;ùùK\"~\áþ?ü¢mûùEY;ø\Ötñ”Ÿ\â‹pü’M\Ëü+<¿\â\î9~\Í*\Z¿\Öq#ÿQtÿIjÿ)FÁoˆ\Ô\æ7NJù\ÏÒ·ó›,¢ù\Í[Lù/¿\Ý\â¿\ÒZæ¿¾þ“ÿ\Z•\Åc\×\Ä\ë\Ý\Ïd€ÿž½\Ìo_\âw\ì\Ò\äw\Øzþ…\ßñ\Ë\ïL«\áwû\Øò{Õ—ù½¶h~ÿ¦&þÈ³ þh\Çcþ\Ø<˜?\Ù\ÝÁŸŠ\Í\ãOý}ÁŸN¿ÉŸ~RÅŸMð¿\ï\Ú\Íÿ	¯\âÿ\Ê*\åÿNð\ç‚\Ãøpþ‚Ò‹ rù £|Ð“>øñ5>tM	Z\Ã\ãCQ\ïøpB\rú\Å\Çø¿\çcž_\æc­øXû§|lÿ]\Ï\'\ì1\áEðI±\×ø”¦\ß|š<‹Ï ð™O¸|\æ«e>\ë³=Ÿ5ù€\ÏÕ\ãóC_ò¥ð«|\å_#\Ê @\å\Åej¨L V\Ð.Xsy·`Í“\Ë\ÌÁ\Ú-kwi\Öú>¬].h\Ö\nš¨U‚u;=\ë>k\n\Ö[\nº\\•‚Í®o[\î\íl\Í~/\ØJÿ#\Ð»!\Ðg¥¶Ù¦\n¶\×}\ì\Ì)\ìj\"	v›½\ì.\Ç	vwiö®W\ì\Ý\nš&\ns\ê\Ì>Œÿ˜\ìz\Æ	LO„Lÿ»¦¦ŒZ™\Û.yAºÀ\\‘$°xóK`¹ýµÀ²ö½Àª…)°^¿,°\Þ(°¶\ØXl9þY\à\ÐvZ\à¨uN\à˜j\'p\Ä\ØŽnu¸®—\\m\Ñ7û·{\Â‡G\à8#ð\èN]x-8\ÕùZ\àÅ¢¼aýÏ›7‚\Ó\rþÁkAÀK]A`]»\àÜ±(Á¹˜\àüz\Ïo)œ_\\„¨\å\nB¯B``A–#¸\Ø(Õ¿%ÿw@p¹´KpU\ÇYpõ€¡\àzt‚ zµƒ\à\Æ\ÑAL¾¿ F’)ˆ½\Ü~ ¤ð÷	R®R_CiN:‚´`;Aºc€ ýQ² \ãø² S‡&¸S\Ñ*¸{ò”\ànA„\àþ\Ñ<Aža“ @#BP~{¯ 2ã¨ Æ·JPóU*¨ù‰<œ<¶©\Ô/H\rvY‚†÷PÁ3U\à™õˆ\àù1sAóvÁ+½ZÁ«}ñ‚WvF‚\×Á	‚–m•‚–ŒjA\ë%A«G¬ ­$hoLt¬)t>§	ºcmnh>>\nzŽzŠ}=µF‚ž\Ñ:A(D\Ð\Çz(LhU¯û]_½*U\Ù%³†\n\Æ\Î	\Æ.´¾„1_²‚¯¥`r\è¥`Rj\"ø¦\Þ(˜\Ù.ø±!Kð\ã,HðK\ÝI0\ßwF\0Œ\nÀiW\à;&(+€\ç`Oºpóa\ÜyI\0ú+@:\ëÁ”U€’´;„+\'„\Z™€d´C@^\Ó-  &Ô·\ë4Cª€fW\'`¦—X÷ö	\Ø!>v\ÛU¯´X )},f\Èt,²\ï\Ý%¨F°¤G,9,kô	Vc„j\ç\ÏÕªVÕž\Æ\nÕº\ÈB3k…šá—„šQ\Â\r^p¡ö¯³B}Â.\'…z—œ„úz…ú§ý„;;„»¾…\Î}\Â=\æõB#øo¡‘LCh²\ÎQh\"\Ø\"4\r+š\êÍ“M„_3…Vž	B57¡\r°[h\ëQ&´_\Ï:nù&<ŠsºÀl„\Ç\íºi½º9\Ô	\ÝX¾Býd¡‡\Ãq¡L$<q{Vx¢ <¥f.<¥œz‰…>zzB\î3\á\é8žðt\æf\á\éš9á™¸|aPÕˆð\ÜûaHA…ðb6Oxq.Yx\É\æž0Ìµ^n&¼<\ç*ŒŒ^w^Gö£\Ü\'…Q\07avLxC÷Œð\ÆKgaÌ¾taÌ©\ß\ÂX\×,a\ì…}Â¤\ïú\Âä¶«\Âdn™0™Ÿ#L¿R.L\ï{+\Ìx\ì,\Ìüb\"¼{»JxO7_x\ßK(Ì†œ\æ”\íæŽ¯æ¯¬DE	‹l$Â¢w>\Â\âhka\éI¶°4\ßBXÍ½/¬Ö¢Í…µ‚[Âº\r„u:@a~DX\'¹*|œ\Þ)|º¨6†c…Ï«¶_¯¾F\n›\ÊU…M‹\íÂ—“\ÂWy\ÂVc¨ð}f¡°\Íéº°mz°}[¹°=x“°\Ã6\\\Øñ‰\"\ìü¡)\ìõ\Ñö\ÎW?\ítl \ì„#*X\á\ÃR8ÂGGû„£\ÌC\Âñ\áø;\áTô°pš\Ù*œq»(üžñ\Í„?\Öþ\Ðiþ>Nþ¾k)œ£\å\nÿ¸¿þ¹\ÊþÝ!œ8&>&ŸZ‚£ÿ	Á……(AŸ\Í\Ü$\Äl&1	6ÿ\Ñ#\Ä:)„\Øk§„Düy!©ê€|\ÖZ\Èh|\"dm\éò…ü\Ü.!ÿ\éQ¡`\Õk¡°\ÌW(üŠ\Î\'\n\ÅN“B\é]¡”\é)”½\Ê\Ê~ÿÊ¿\Ç\n+KB\å›p\á\â¾g\Â\Å\0\á\"³N¸tjT¸„‡W¨,‘\êže‘\êu‘ªrE´º}Y´öF”h-\â–h-eQ´>-\Òòi[\êŠtdS¢M\ÞlÑ–#ž¢-+q¢\í‡‰ö¾{ 2¹¼Ut0¿GdÖ¶Ud±\å\È\âZthS¨\È\Úó³\èð•8\Ñ\áW\Ñ\á\'D‡9\"{\Â-\ÑôN‘ƒ×\è¨-Lt”¢)rz*ržQˆŽ¹ÆŠ\\wùŠ\\\ÝD®\Í9\"W\Æe‘[°¡\È]õ«\ÈC£Etjð·\È\ëò?‘÷G‘7\ÆV\äM\ã‹Nž(™Kù\ï¸(:›#:;\Ä\Ô<‹ö‹‚\å?D\çnùŠ\Î\ï°…¬)]H@‹.Š.ý\ç\Ç%„PZ\ë/ºÜ»FñqTA\ß$ŠN‹®Ž¼];T#ºvU!Š4\Ü-Š2|!Š\îEgéˆ¢q\ÇD76†ˆn„‹n°EqtŽ(ñGŠ(q!J²z)Jv\Ì¥¼ÃŠ2ñ2\Ñ=\\ž\èþ¨(;fT”ûh(·ÿš(¿,*tM\ÂD\Å‹D¥úñ¢Rë‹¢R\ç¢Ò¶¢ÒŸ¾¢²h5Q\Ù\ï¢r=²¨ò×œ¨Š=)ªú·OT}>_T\Ã\Ô=L? ªM.\Õ\Ë=YZ\Õ©=uƒŠž\×h‹^ly#zQŠµ<ó½\Õ+½+9+z‡}\"j=^\"jm>&zmµÍšŠ\Ú3»E^Ë¢.ó\r¢.·¢n@™¨G¯]\Ô\ç–-\ê?\ì!\êw„Š>==\'úD9/\Z<\É\rm<-\Z._\r¶ˆÆªtE_Œ‰¢É£<\Ñd|è›±¹\è‹ šväˆ¦=D³\×A¢\ìß¢\ßø¢¹`¨hna\\4\Ç;-úó,Gô\×\×FŒo“LEÀ¹§\"pPœ~A.‚\'ˆ\rX:„%\Â\Öa¢uD˜\Þ¾±^D\\\Ù\'\"}ÿ&\"?\êÑ››DLK„ˆu\ÈIÄ¶9!\â®\Éñ6{ˆx\ânÿL‹HÀ\È	8a\"ÉŸt‘´i@$-RL×Š”¦š\âU™™\âUõS\âUmŸÅ«~\ï¯¢9ŠU5\ÍÄªqb\Õ\0±ú3\'ñ\ê„÷\â5;õ\Å\Z\ÔzñZ›±–FµxCùw±n|§xc\ëQñ\æ\Ãm\â­;\Ä[§\Í\Åú¥·\Ä;\âÄ»\ìÄ»mOˆ\r¾\ï_{VlŽ››+†\ÅŽ…b‹´Cb\ËSqb« ­b«ò\çbùz±­\ãg±-¯Bl\Ï)\ï;ÕŸ;¯\Û+vù‹O†<Ÿ,¹#öS\Åþ]š\â€\Ð4q gƒ8¸\ÈJ\\\æ.–­ˆ\ÏigˆCDc\â¯ˆ/?_J9!û±C|¹\ì€øò[ñµ\ÙyñõùAq\Ô_ø†÷¢ø\æ2A·J&Ž·\Ú\'ŽŸ‚‹oŽ‹o‹u\ÅIs¶\â$Cœ\ì\í$NNM\'?8,Nþ»Zœ¢_œ\"-§%‰S—\Ò\Åi¨·\â;ñ6\â»eBq¶^‡8/tXœ÷\ÝC\\xIMü \"I\\Œk—¤˜‰KhqÙ‡Nq#®88$®\è; ®øtY\\9e+®rÅ‹k>l×½x-~\\¾^\\ÿ½U\\O~+~Š:)~º$7Ô”ˆH½\â^µ¸\Ñg¿¸ñl©ø\ÅÁfñ‹\ãâ¦…O\âfÿqsL™ø\åqWñ+“¿\â\×Y8qË¶_\â–+«\ÅoŸŸ·jœ·½²·‘ŸŠ;J\ïŠ;û\Ä\Ý~“\â}Uq\ÙMq¯ç¸¿ý§xp6Y<\ì.W\ï[øˆ\Ç\'\Ý\Ä_4‹\'‚k\Å_\×Oö\\O\Î\\O¿‹g÷GŠ¿³£Ä¿†<Ä¿WÎŠ\çm\Åó+ñÂ¾1Ð¨Fœ‰C\â»\Ä\Ð\í·\ÄHR®]¼JŒ¹~VŒ÷Š\ã\Z\ÅD\È!1y{¹˜Ü³Y\Ìò…‰Yw%bVI\Ì>!f—Í‹E±\è)–;ÀÅ‹\Ý|ñ\âüIñ{R¼œU+^¦JT~LIVGI46\ÄK4\r\ÍJdýp·D\Û÷ƒD÷\ã¼dS€‡dóQ7É–\ïA=A°Dÿc¶dû¦k’]ö\á-C‰A\Ú>\ÉÞ‚\n‰\á¹’}Yc#Vbz@ ±\èY+±LN—X-\\–.CJl\Z]$6¿L$¶×Hl“\îKl\Ë.IŽÀ7I\éÓ’£õ›%\Î|´\Äeqµ\Äu»\Ä\Ýi½\Äý\ìS‰‡\Ês\ÉI[K‰gk¼\Ä+k‹\Äç˜£\ä¬]—$À\×@8–\Õß‘}*	ž2•³Ø’ib\ÉòC\É\ÅL \ä\"k­$ô\nQr-·Y\é¿Qrf+‰º2-‰ª\ß$¹\Ñ\à&¹Y±Yû-‰¬•\Ü*aInµ–Hn\çhH’\Î~—¤\Ã$é£«%™Mó’;ö’;Ñ¯$÷þ…Hrn.Jr\'$yFþ’ü\ì.IÁQSI\á\ÙI\áóIakž¤¸P.)nð—”\ÈwHJ‡\ã%oK*=I*r$U}a’\êÕŽ’\ê8I«DòD“\ÔfÜ“Ô¥a$u¹Ú’º–I\ç»\ä\Ñ\ì²\ä\É:„ä‰ž¾¤\é8V\Ò\Ì\Ý#y¹æ”¤¥<T\Ò\Ò\à i]AI\Ú\é’N¹Š¤{ø“¤G\Ô)\é-N“ôƒs%Ÿ\î$H\ÆVa%c“%’ñ¢d³K2±\í³d2ÁE2µdºò³\ä{À²dn9T·€wo’@\ÞYJ\àð=8\ÂJ‚jBH0\'%üž*	\Ñ5VB:°EB\Z_\æ³%”c\ÖJ\à˜„rëŽ„:£!¡’žHHX×¯J¸—¿JD\å?$bõi‰\äÝ¨D2a+‘7J´$‹·p’ÅºC’¥]Ö’¥Cw%ÿÀ\î\ÒU®M\ÒU\å©ªU¦T5\Ú@ªf\'Uƒ}–j@÷H\×J\×.\èHµYKµ™^\ÒÍ·~I·”©I·`Ì¥Û¦	RN§tOv¼Ô°\"UzÀœ/5\ã¥&w–¤&\Ä\ËRÓ§R©Ù†ŸR‹\á\é\áÕ¾\Ò\Ã\Ëw¥¶X©½­Bz:/uü\î&u\"˜J\ÆKýÐ‘ººK\Ý\ÙW¥\'”¤^\Ò©Ï¸½ô´ó/©\ßG©\è#\é\Ùu¥šþ\ÒÀU…Ò Ñ\ÒsQ!\Òó}§¥!¿I/UKÃƒþH#Š“¤W}¤W¥õ\Òk¼·\Ò\ÈuÿÁp’F_9*½é¨”\ÞLÑ’Æ‰f¥ñ7B¤	MÒ„n\é-/\é­&u\émý`\ém¿.\éí¦ƒ\Ò$·Ò”˜\\iÊ‹jijb‡4mRWš\ë%M\Ï\Û-Í¼óNzÇ§Wz7ð‰ôžI˜4‹²Yz\ÇVi^}Š4¯{›´è–•´xs­´\Øï´˜¸_ZÚ°NZÞ‡‘V¬H+wOK+[J«,Ó¥Uñ)Òª7\Ö\Ò\êóZÒšž\ÏÒ‡™\r\Ò:\íFiO±´®©Yú¸xô11Gú\Ä%}\ÂJ\ëu+¥õ÷ŸH\ë\'¯HŒþI\îôK_¬aK›W©H›?ÿ‘¾\êr‘¾ö^‘¶œ,‘¶¤dH[x\éþG\é\Û$Ki\ë­k\ÒVü:iG\àgiÇ­`i\'®W\Ú\åp_\Ú}\ÛRú\áM¨´7¥@úñBú±¢]ú\é?GoHjZ¤ƒ\ãÒ¡G:Ò¡A¶t\äp¶tD0-õ©’~‹ÿ.ýV,ýö,Cú“þ¸tPúk£»ô—Û¼ôWš£ô÷]º`=%]ÀHÿö¥J1RÈµ\×R`I\n@H\áðP)\âE¼\ÑþEŠ¬ð’¢jt¥Xó)6ew€,\Å_¶”\â\×I	¥\")ñ\æ;)ù3XJM;\"¥Vž”R§:¤Œ§o¥!_\Ê\ê\0H\Ù\àR¾F\Ê\ÍÓ’òû\ì¤\"ûoR‰	]*­Ke7\r¥Ê„5Ò¥G¤KP\éŠö™ªþ)™ZóŒlõCÙš\r­²u«e\ë\"‚d\ë\Õ\Ë\ÖÃ¦e\ë…\Þ2­ò/²\r\ëûd\Úù\ê2\í—÷e\Ú\ãv2\Ý\å»2½@²l\ëõ£²­À;2}“q™>r³\Ì\à\ão™T!3L˜“&_‘N6\Êö1\æeûo\Ä\Éö+ 2£u­2#‚\Ì\Ø<Vvðn´Ì´Œ+3;\Ð!3\ß3\'³H0–Y¤¾’\Úz]vh·³\ÌJ\ã„\ì0AOf_\Û/³_ËŽð\'eð2\ÇW)2\ç[Q2\çÞ2W\Ðn™›÷™[9W\æý-ó˜•T7”\Ü/•y® ;Å¯‘ù¸ú\Ê|ZO\Ë|¤¥²3\Ï\Î\Èüð52ÿÉ²@§bYð| \ì\\X©\ìüž—²óÍd—S¼e—³h²+\çQ²+HGYk·\ì*\í¼\ìª\"Rvm\ß^Ùµ’Ÿ²\È\ã·e‘±õ²È¦<Yäˆ,:ö·,:ù¥,˜(‹%¬•Ýš|,»\r~&KlË’Ô£d)\Ãeñ²˜º\ì\Î\Í²;\Ã,\Ù\Ý\rº²,\ÝYÖ»]²œ©²\Ü\Â!Y.2L–W—\å#—e<dÅ³BY‰šHVò\ÞIV:\Ñ%+»–)«ø\\(«¼{KV­\Þ$«\Ñ,—\Õ\\\Ëj\êKd÷¿‘=l”\Õn\Ê¹reªN\Ë\ÓÅ²§?©²§\ØrY\Ã\Ú;²g·\Ýd\Ïz2d/=\È^5–\Ê^\áe¯•»eo\ÒY²6k°¬ý\ÄFYû—eY;›)\ëd\Õ\Ëz’7\Êz1²¾ú\ÙÀeU\Ù\0\"L6¼ºI6¾&ö’}\ëÖ”}[Ì“MUÈ¦iWd³öu²YX‡l–Ã”ýø´Eö\Ók¿\ì\×n¾\ì\×D±\ì\Ïé›²?µÃ²ûb\Ù_\r ¨’·—\É \ÎÉd¨{e(?C¦¯M†\ÍW\Èp7;dø\Ð¾§NF¸+#>¨”‘U/\Ë\È\ë\Âd\äþpÍ¢FFÃ’dt\Üz\Ã8C\ÆZ›#c­\Û+c1÷\É8;d@ŽŒ›Q(pjd¢ƒ\çe\"k[™\èUƒLú¨Q&›J“\É/\çÊ”\re‹jt\Ù\ÊmÙ¿|3Ù¿º;r\ÕA²|õG¾\æ`–|…|MN‘|í¤‰\\óýnùº½òu‘\ë\å\ëw¨Éµ¢dr–A¹žƒ—\\ïž—\\ÿ½‡|›þqù4L¾c\å»|÷`²|¿\\¾wPMn\Ø#‘\ï›,ß¿n£ü\0\î±\Ü\È<VnôG[n¼=Wnœ•/7ž˜–<\Þ+7\Ý~GnÖ-?\äl\"·\\;+·ü\Ñ,·2\î‘[\'\Êo÷”®·”\Û?ü#?¢~[~\Ä6M\îPû\\\î@\ç\È\álùQ‡ƒò£\ï?ËN4È\ßF\Ê\Ý^\ÉOŒj\ÉOHÿ\È=7Ž\Ë=‡\n\ä§&f\å>µ<¹Ï‡Pù\éŸr\ß\ï&r_\ÆgùY¶X\\È—‡\Ü\Ý+¿TxF\æ Cž—‡\ë•_ù)ø¼Iñ‘Gj\Û\Èon“\ß<a ±Ô“\ÇTŠ\äqE\Ýòø\Ú\Óòø:¢<\ág‹ü¶Až¨±Jž$¨—\'\ï\Ã\ÊS~?—§@\Ë\Óò\ä\ÏS\å÷À\å\ÙÛ£\äyIpy\ÞK¦<o\ÑD^Àü,/’÷G\ËKöø\ÊK+\áòÒ¡!y…ô¼:\ÍOþÈ³Yþ8ó¤ü±ò¾¼þIþ\Ôk•¼!¼YþZP\Þy_þ\æU¦üm\nYþ\ÎX ×± oe™\É\ß¡\äm.½òv×ƒò³fy\ÇÀ¨¼C)\ï\Ì\Â\Ê;+;\ä\Ò\Ýò®n¶¼\Û\ÄYþA£Zþa\ÆIþ\é}|ø½µ|¤ÁS>*!\ËÇ¢\í\åc?ñò/»\ßÉ¿\Ô\í“OlŸ‘O˜Ë¿žÈ§R\Êg÷G\Èg“nÈ¿÷u\É—\É\Þ\Ê\çÝ‘ò…ASù\Âb›ü¯	\\þ×”*^¾ ‡´TÉ¡emrè¤³–\Ò$‡J\åð­1r¸~¤žp^ŽzC“£_ÿ’cw1\åXw\å–Ð”\ã‹\å„l´œ˜R&\'Ñ³\å\ä\0;9u&g¬N’3ÿl‘³<\É9Z29/ë§œ÷aŸœ7Å“û\Ê\å\"­¹HT,‰ý\å\â\Ñ	¹˜5\'—Ž’Ký§\å‹w\Ú\ä‹\ÏË—\Î\ä\Ë\ÖDùJ¸»|\åv•B¥\ÂC¡20ªX\ÕþY¡6‰U¨o> P?¨X»q»B«8D±a»Ÿb\ÛD±ic‚bK-X¡¯ÿK¡Ÿ}H±-ô„b\"I±36S±\Ë0M±{U†\ÂÀ,]±çµ§\Â\Ð}D±/obß§«Šý\Ë\n\Åÿ…±N¿\â ý’\â\à\ÔK…\ÙH•\Â\Ü{Taþ\ÐHa‘Q«°=Ü§°=æ¢°ß´¢p¸R£p\Î)Ž\Þÿ¤pR½¢p\×5Vx˜7+<€9Š¯C^>\Î\n/?m…\ïpˆÂ¯ªC\áï­¦ðŸ*\Î^sT¬yª@<S\înU};£\âg)Î‹ró).\ÝG*B+S\á†bExœ¦\â2\ÏVq\ÅcJqe(Xq½ýŽ\"ºn\âFq\"v\È@÷ ˆ7lR\Ü\ÚôYq\ër‹\âv½\"±q@‘tô¬\"\Ùü´\"EU¢H•>Td\0ªÿŽ)²òR÷¯~T\äÌ„*r34¹\ÜËŠ¢©\âk®¢¬\Ö]Q¾IWQnŸ¦()\Ê\ãŸ*\ÊGª•¢•^CŠJ¿\"Eef¾¢²u‡¢ê¨¨nü«¨þ™¡xüôª¢\Þó®¢±^K\Ñøì±¢¹l½â¥Ž¡\âUõM\Åk3\Å\ë\ÛŠ×\ç-$¼\â\Ý\å\Å{o[E[tŠ¢3?N\Ñ\Õ¬èš¹¡\èÞ¨©øp\ÃW\Ñ#\ÍSôù\Ô*>–§+ú\Í\ß(jl½ŽŠñ)\ÅñµbtŸ¯blú¥\â«\ê}\ÅdØ²b¦¥˜y©˜ýÕ«øwVü\Ù=¨øû¤\0¬õT\0\Z”\n ñ„\Zb­@žR O)PK¯xŸ\ã\nü6aý\n\"ç¯‚**\È)k|ƒ‚\Ã~¦\àFg*¸´\Ï\Ù]Ák\ÉV±\n\íŠB\Î;¤PÞ¥P”œR(fš‹3jŠ¥—\0ÅŠý7\ÅJ#M©RP­\\u%^©j—¡T\ë\Â+\Õw\Ì+\Õ]t•\êü^¥º¤D¹ša¨\\czN¹\æ3N¹\ÇS®·œS®Ø£\\Ÿ5¬Ô¢?U\ê\èW\ê5+u\æÕ•º—ü•=+7\×\îQnn²Pn\éLVnJW\î\Øv\\¹\ãÕ¸r§TO¹\Ëv¯\Ò\à\Û_\åžôOJCñˆrŸ\ÆK\å>-¦rŸ³³rßµ*¥±¶£\Ò8\ã„ò\à¦ò \r¥<È‰Všž\ÉTšQšõ¼TšžS*;¦´tRZ\íŽVZ\í¦´ñ‡(mÎš+\íN*\íc•vüE¥}U†ò(#N\él-P:SÝ•.\îT¥\Ë\Ê¥k\×/¥»\Å\r¥»½\\é¸©ôrØ¦ôBžPúl\\­<$Vž~}Ry¦¹M\é\'½ <+¿©pWÔ…*°©\Ê`§z\å9\Ót\åù¦Ê‹\r\ÞÊ°˜÷\Ê\ËAG•W[_(#\ç\×+£\no)£K\Ö)of\ÞS\Æ\å—(o™T*“\r”\Éõo•)K\Ê\Ô+…\Êô5š\Êt\ç)\å\Ýy®2\ë\ê²2§1[™\ÃmV\æemR\æwø*ß¤(‹ú•\ìó•Z¿)KWù(K\Ù}Êš\Û\'”5,o\å\Ãov\ÊÚ•|eí‡²NT>ªÝ©|’{Mù´è ²!¼W\ÙHR>·8¯|~­Gù\"gVùž¦|µ6Uùú¬Ÿ²\å\à€²\åî²²µ\Ç_ù\Þ\æ­ò}T£²­\ÍO\ÙnÐ­l¯\ëWv¡R”Ý‰iÊ¾È«ÊeBƒr Ÿ§?¬ôTŸUYQƒ\Z”#¦”#\Øp\å-_ù%ú™r\"õ›òk€ƒr2‚ªœD~UN\ãÓ”\Ólu\å\ì†W\Êk®)ô\Î)3µ”s”m»”€-.J\0õ‰¸\ÚJ	¶ø«„œWBnø)a\ÌKJ8\è®ñ\ÐU‰Ü¥P\"[•(£JŒ\ãq%¡ì•’$\nP’m¾*)&\ë•Ô%ó°\\Éœ¸¡\ä\ëu*ù‰h¥À¶C)\â\á”O\Î\ÃXr\Ù!bq\Õÿ\Z \Ïx >€\ãECƒ+‰r‰Ji©4.¥¬8\\CK\"B	—”º\ÒN\éII‘H„\ÐÀ¥T$\r¡%‘PŠT$RtÒ¥ÿz\î\Õ\ï\í÷ó³\ËÑ Pzº\én‚ng@·(%è™³z…\×C\ïó§ \ÏQeè»£”­ª@\Ù\ë(¨«ƒ\ê\æhP-/\æ¤Ë yôü\ÚgüšZ³“`\È|Wò³´•\ÌA;¤\èö¬=]Ð›©zôû,ý~ñ _R\rú•`ñFª]„Q}rÁp`<¹=£Û¹`ôc$L\Ð5€i%\'aú—50cš\'˜N\Ñ\Óyf`ú\æ1Xt\ë÷À:eXŸ÷\0­°±]¶Áöðy°ûm\Ø-=vÿ»\á`Ÿkö\Å\å0¿e,P+Gõ‘°ø»,}4\n–\íô…\å®n\àœu\\\Ï\å\Ã*\Ãe\àn1\Ü_<‚\Õï¯\çðRý^“`\íö³°ö\ÕtðY±|\Þ€\ßñdð;iþC€}¬\èg\ÂF}?\Ø=6–ª\Â&\Ý°\Ùq:l\ÞU›\ÏD\Â6u‚ Nm\Ø9ô\ì>\é»\Â\Þqýaot*x¸B D\'B\Üo@H\ãø\ßô*84J\ÂL…°œ÷p\ì‚Dýg?9eD;\ÇA\Ì_eS}bÿ,‚Ø½…\ç \rq\ëVB¼\ÓEˆwU‡\ç\ï8b$N2‡$µH\ÚRggŽ‚”P#87k=œŸ}.ø\êAz\×\\H_<2\Îl„Kw‡\Ì2o¸¼~\\ù–\nWÕ•\á\êš\çpÍ°nV™@\Þ\æT\È;·ú\Â\í\Ìp¸3´7\ÜId¸\Óþòc.À=}¸\ç¿\nŽ\æBQX)<ðM†G\njP|ù<<q_¥¡\Ìø=”yöƒ²TCx¶\'\Zž;~…\çI\ï b\Ép¨\\«\0UGWÁ\Ë_Á+\'x}\Ñ\êF\ë@Q&¼\ÓúïŠ´ \á‰4j\ÄB£óh¼ù_‹@ó¬\åð©p´\ìÿ­Ÿ2¡M2|w¾ƒ:[\ÃO•wðsµü|z 3\è\Ñ*`v\ì\â²»ÖšaOY†JÁ\n¨tB\r{·.À>NÞ¨|\É\ZU~t\à/;Î¢\ê\å8`¬\'üþ\Õ/\ÌA\Ý¨q!vùŽš›’Q{P#›7õ÷W£ÁŠ«hp\ëŽ\êöGeþ†ó£qô \í8Æ¬\Ç\ØtG£KG\Ð\èJ>ŽkU\Ä	/\"pb®\Z/î‡“Vt\Å)½\Ý\Ð$\ÌMš£I‰6Nµ±\ÆiW4púh\rœñûQ4µ[†¦\áƒ\Ñ,`\ÎQª\Ç9C\ß\àœšWh~\äZ\\ú-²\Ñ\Òÿ)Z^|‚–izh­2­\í\ÑFû2\Ú*œC;·l´/:Ž†\ßpK9.ñû\r—„U\â²!û\Ði\É=tz:W\æMD—wQ\è\Zú=\\Ž G\Ü\ï\è‘8=ßC\Ï/\ÑKw5z­rB¯ÀV\\\Ó7\×L\n\Ã5¢÷?{\ÐgøôM«Cßœzô­ßƒ~\çñ\ÏI·1@µ?nL²Á@\Å+¸9ún±x‚[½bq«_wò°Á\í\Ëp\Ç5{\Ü\åo{ö\Ä\á\Þm^¸\ï\í4¶4\ÅýÁ_p?´\ã3—ðÀ›\Õx0ý\Zr…‡6õ\Ä\Ð\à%x8¦\ìªÃ£ñ®Nv•‰\Ñq›0\æ[\Æöš±ºŽw¢\n\ã}\ÔðŒ²#žyñ&<\Ö\Æ$C˜”œÉš\ã0¥©?ž`„\é=1cý[\Ìøú/5\áeW+Ì²ŠYSðzK=f\ç`Nb\Þ\è²oì†7ÿ{›÷\ÝoM™Š·?Ç»5˜\ï±\ïe\ì\Æ{\×ý±Àe%j,ÁBÿXd\\‹÷\íñþ\Ñ\n|¡‚ÅŸšðI?G,\Ý\\eÏ»ã³„h|ö¶	Ÿ\ß\r\Ä\n¿`¬\Ü5+k¯cÕ¸]øÒ¿_VÁ\ê”X]½\rk<W`­\âI¬½‚o¾b]¦¾5ž‰?N½‹3µð\ãó\ØžŽ\Í\ßn`Ky~VÙŒŸ\É\r¿¼\êÀ¯FI\Ø~d¶w~H\Ãóú\à\Øù3\0\á—t$«{È“£I\Ñ4œ?¿¦n.\Í\Ô}Àr\ê‘\\E=\í3Iiüg\ê5Ë”z¿¿B}\Ü:H9/Tö\ÅP¿Ÿi@ŸÑ¤œMƒÒ q\Çi\Ðõr\Ò\\[Bš\Ç’\æ­ú5ü\"i]J!\í\á“H{Yéœ‰§a]7Ð°­wIož	\é=n&ƒ«d\è\ÜL†!/È°v>\r¿L\Æª\Èø\ë%š4\ã0M*J¢)š\'iÊ¢d¢^J&ÿ$\Ò\Ô\ãhÚ{4­|+M7/ ™ž¦dº¦æºš\Ñ\Ü…dn\éLH\r&d9Í\æ¥“m\ÜEú}S9¨,%‡³6ôG\Èš•Bó¿‡\ÒüB§\í¤E»\ÈñF9–Ï¥\Å%\Z´ts-M;LËœ\Ã\Éyw­ts U«¯’û\\Z\í@ÕŽ\ä¹eyÅ‡\×eZgN>\ášä›¹—|\ïO%?¯0ú³¡ü5•\È\ß;”6X\Ó\æPÚ–@»\Æ\í¢}Ó‚hŸ\ßÚ‡(¸ ?˜\èK\Ö|¢õ\ï\é\àXc:¤¤M‡¼\'P¨5…–\Ù\Ð\á2:ž\ÑH‘3/PTk\\	tj\ÅdŠ­+¢\Ó7\Ë(n\á1JP$JPk¡„E”¨ó”’l\Í(\éº\í­Bg‡­§³>”ò¿J-¦Ô†:?£’\Òbœ)\íQ¥5\éS\Æ1oú{A]ŠJ \Ë\ç<(kv\"]u¿@\×^\ÓõŒ \Ê6L\Ùv~”“\ãB9¹\ç\èF\ÊGÊ|…r¿ÿ¤[]\Ì\é\Ö\Ï2\Êò‚ò74Pþö\ÅT\Ô\äDz™\ÓÃ…:ô\è\Ì*þöJ\Þ]¦§£OR©g_*\r2§\Òs*\Ó\ZHe\ë\ÞP¹²-•ÿ\ÞF•\Çs¨ª‹=U;¢\êü2ªu\éIµGÒ»\Õô\îL ½·\ï¤÷?fPÃ”ú(-\Ô¿‡šo†Rsó~ú\Ôòµhí¦–Kmôù\ÅKj_º‚Ú«¨£Ou¸U\Ð÷\Ô\ëôs@ý\\Ù‹\ÄÊ†„\Æp—\Í\Ì];-X!²‘rSYq¢÷?–•Î¦r¯=V\Îög•§U\Ü\Ï.‰û½yÉª]G°\êSVmV\äuXm~\'«e\Þ\äA}‡ò\à¦<¸Ñ™µ\æùòÐJ\ÖYpƒu÷M`\Ý\Î<\ÌÚ„‡eO`½¹\Ï\Ù`ô56\È\ë\Í#V­\æa<\âx	ø¤Á#\r\×ñ\È\Æ\é<º[½l\Ï\ãÌ–ñx\ã¾<a–:Oÿ„\'ºÚ°±\ïdž<Ã\'‡\í\ä)\Î3Ù¤L‡§ž^\Ì3—&³i~ÏŽW`³ªM<\Ç\í[&\Ýb+\å,ž\çp‹\í\Ç{²½\ï^0¶œZGò\â;5¼ôt/_WÀËƒ?óŠ²\r\ìRmÅ®ó&ðª_\ÙÍ«‰\ÝN]e÷\Óyu-\ìqÙ=¯®c¯±±¼&Bx­e(¯½¶\×Õ²·§&{\'ñº?ö™bÊ¾™£\ÙO÷oPÿ‡f.\â@-\\~€ƒŠ¬9¨]wm±\äÝ£ð\ç¼¯Q•ƒ·˜qð8~µƒCŒ¢8tq9‡Þ©\ä\ÃO{pØštË¨\æ°6|´s&»Ù•g#G\ä_\áˆ¯8Ò¹‘#\ëð	c\r>¹Q£S?sL\èO>\Õx‹Oý[Ã±Š9V«†Oo\ã\Ó\â\Ìñ+\ïpüÝ•œ\à“\ÄIƒù¬\ÞN\Þ\è\Í\ÉMyœü§(\ás³¾óyýÁ|q®§¯h\äô}…œ¡®\ÆÃ”ùï‰‡8«þ&_¨\äœöf¾ñk-\çª\Õð­ò£|{\ÈN¾Ñ“\ï®\Æw}þ\æ|\ï|\ïø..(\ÚÌ…;\êù¡\"òÃ¼(~Ø–ÎÛºó“\Ý\Õü\"ù\épu.7I\á\ç¥E\\ñÐ+^\çs¥\ßa~i;ž«ûÀ¯nü\à\×#fò\ë†g\\\ÓÅƒk5–s­\åN~SØ…\ßü;\ënö\áº;ƒùm\ã®Ÿ\ì\Îõ\Û>rýµHn¨|\ÌC\Çp“\á}þ4@…?­«\åÖ¿¶ò\×\Ü%üMÏŽ¿Y~\ä§…ó±^Œg3÷b\éÚ¯QòP\ç‰\Ò6]Q>Q\'ý]¾ˆ\êjQ«}!\êeWdð\è\å¢5!Q†ä„‹v€¿h\ÇgŠö}O\Z8Wt\"~XO\Ñ)\ÎÝŽ2ì¤±\è\ï*\Ã\Ç4‹þ $\Ñ?³Cú_ƒ¯ûÄ€ú\Ë(\íE‡\Ä\Ð\ÂH\Æ<8(c*AÆ™d\ÊDj•IË£dJ¢ºLm6—\ÛÞŠ\é5±\ÈV«Q±buJSlUŠ\Å6Ä¶¦‡\ØÖ¾\ÛwŠ]òT±Ÿ\Ú)ó[\ÌdA\âHYx\ÚU‚£8\Î*”%\æÊ²ÔŒeiL”8¹«ŠÓ«4Y5t¤¬\ÚT#«;‹WIŠ¬õñ\ï\áÉº\æñ)	_+KY?{Œø÷W¿4L\ä¯\àÙº3M¶(J\çz\Ùi¥(;ó‹%\Ø\ÓXö\'»Jˆz›LÒ’ƒÿv“Ð˜>rx‡„\rkˆx+‰´\è.‘W‚\ä„\ÆZ9ñ£‹D5õ–˜\Î?\äT\âP‰\ÝX-	+NHâ‘‹’XV()k^KJ`„¤\ì\é\'©cý%uFœS“ói#$Ó­H²„I–\ËsÉª\Ø\"Yµ%rõ\Ó¹6\'A²\"$\'*Rr\í­%×©@òÞºÉœR\É?T$ù¡\îR01J\n\'Î“BUyV*u\n\äq“<þ\ÞEŠwIqM ·¶HI\Îgy:\ÐJž\Î<$¥cÊ¤´­@\ÊŽIù~y¾þ‹Tx{HÅ¶¹RY Uw\äe[­¼ú­BjÞšKM\ÛZ©=~B\ê‚\×\É;…\ÙòN\ËE\ÞMÈ“ú9(\rý{K\ÃÛ\ÒÐž%.½¥i¸‹|2\Ú -“µ\ä\Ë\ÙfùR‘+­»H\ë_i½>G¾fÍ“¯g\åk{|í¨•ö\íÊ·ÁQ\Ò1\Ý]:¶™HGü\"\é¨n\ÎûK\ä\ç\ZSùù Mð•¦Ð§$a‹­\ÂÍ©\Ãflÿ?\ÉwZjÈ‘\0','no'),('manualScanType',_binary 'onceDaily','yes'),('max404Crawlers',_binary 'DISABLED','yes'),('max404Crawlers_action',_binary 'throttle','yes'),('max404Humans',_binary 'DISABLED','yes'),('max404Humans_action',_binary 'throttle','yes'),('maxExecutionTime',_binary '0','yes'),('maxGlobalRequests',_binary 'DISABLED','yes'),('maxGlobalRequests_action',_binary 'throttle','yes'),('maxMem',_binary '256','yes'),('maxRequestsCrawlers',_binary 'DISABLED','yes'),('maxRequestsCrawlers_action',_binary 'throttle','yes'),('maxRequestsHumans',_binary 'DISABLED','yes'),('maxRequestsHumans_action',_binary 'throttle','yes'),('migration636_email_summary_excluded_directories',_binary '1','no'),('needsNewTour_blocking',_binary '1','yes'),('needsNewTour_dashboard',_binary '0','yes'),('needsNewTour_firewall',_binary '0','yes'),('needsNewTour_livetraffic',_binary '1','yes'),('needsNewTour_loginsecurity',_binary '1','yes'),('needsNewTour_scan',_binary '0','yes'),('needsUpgradeTour_blocking',_binary '0','yes'),('needsUpgradeTour_dashboard',_binary '0','yes'),('needsUpgradeTour_firewall',_binary '0','yes'),('needsUpgradeTour_livetraffic',_binary '0','yes'),('needsUpgradeTour_loginsecurity',_binary '0','yes'),('needsUpgradeTour_scan',_binary '0','yes'),('neverBlockBG',_binary 'neverBlockVerified','yes'),('noc1ScanSchedule',_binary 'a:3:{i:0;i:1652731200;i:1;i:1652990400;i:2;i:1653249600;}','yes'),('notification_blogHighlights',_binary '1','yes'),('notification_productUpdates',_binary '1','yes'),('notification_promotions',_binary '1','yes'),('notification_scanStatus',_binary '1','yes'),('notification_securityAlerts',_binary '1','yes'),('notification_updatesNeeded',_binary '1','yes'),('onboardingAttempt1',_binary 'skipped','yes'),('onboardingAttempt2','','no'),('onboardingAttempt3','','no'),('onboardingAttempt3Initial',_binary '0','yes'),('other_blockBadPOST',_binary '0','yes'),('other_bypassLitespeedNoabort',_binary '0','yes'),('other_hideWPVersion',_binary '0','yes'),('other_pwStrengthOnUpdate',_binary '1','yes'),('other_scanComments',_binary '1','yes'),('other_scanOutside',_binary '0','yes'),('other_WFNet',_binary '1','yes'),('previousWflogsFileList',_binary '[\"template.php\",\"config-synced.php\",\"attack-data.php\",\"rules.php\",\"config.php\",\"ips.php\",\"config-livewaf.php\",\".htaccess\",\"config-transient.php\",\"GeoLite2-Country.mmdb\"]','yes'),('scanFileProcessing','','yes'),('scansEnabled_checkGSB',_binary '1','yes'),('scansEnabled_checkHowGetIPs',_binary '1','yes'),('scansEnabled_checkReadableConfig',_binary '1','yes'),('scansEnabled_comments',_binary '1','yes'),('scansEnabled_core',_binary '1','yes'),('scansEnabled_coreUnknown',_binary '1','yes'),('scansEnabled_diskSpace',_binary '1','yes'),('scansEnabled_fileContents',_binary '1','yes'),('scansEnabled_fileContentsGSB',_binary '1','yes'),('scansEnabled_geoipSupport',_binary '1','yes'),('scansEnabled_highSense',_binary '0','yes'),('scansEnabled_malware',_binary '1','yes'),('scansEnabled_oldVersions',_binary '1','yes'),('scansEnabled_options',_binary '1','yes'),('scansEnabled_passwds',_binary '1','yes'),('scansEnabled_plugins',_binary '0','yes'),('scansEnabled_posts',_binary '1','yes'),('scansEnabled_scanImages',_binary '0','yes'),('scansEnabled_suspectedFiles',_binary '1','yes'),('scansEnabled_suspiciousAdminUsers',_binary '1','yes'),('scansEnabled_suspiciousOptions',_binary '1','yes'),('scansEnabled_themes',_binary '0','yes'),('scansEnabled_wafStatus',_binary '1','yes'),('scansEnabled_wpscan_directoryListingEnabled',_binary '1','yes'),('scansEnabled_wpscan_fullPathDisclosure',_binary '1','yes'),('scanStageStatuses',_binary 'a:11:{s:13:\"spamvertising\";a:4:{s:6:\"status\";s:7:\"premium\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:0;}s:4:\"spam\";a:4:{s:6:\"status\";s:7:\"premium\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:0;}s:9:\"blacklist\";a:4:{s:6:\"status\";s:7:\"premium\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:0;}s:6:\"server\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:5;s:8:\"finished\";i:5;s:8:\"expected\";i:5;}s:7:\"changes\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:2;s:8:\"finished\";i:2;s:8:\"expected\";i:2;}s:6:\"public\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:2;s:8:\"finished\";i:2;s:8:\"expected\";i:2;}s:7:\"malware\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:2;s:8:\"finished\";i:2;s:8:\"expected\";i:2;}s:7:\"content\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:3;s:8:\"finished\";i:3;s:8:\"expected\";i:3;}s:8:\"password\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:1;s:8:\"finished\";i:1;s:8:\"expected\";i:1;}s:13:\"vulnerability\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:1;s:8:\"finished\";i:1;s:8:\"expected\";i:1;}s:7:\"options\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:2;s:8:\"finished\";i:2;s:8:\"expected\";i:2;}}','no'),('scanTime',_binary '1652698586.7591','yes'),('scanType',_binary 'standard','yes'),('scan_exclude','','yes'),('scan_include_extra','','yes'),('scan_maxDuration','','yes'),('scan_maxIssues',_binary '1000','yes'),('schedMode',_binary 'auto','yes'),('schedStartHour',_binary '3','yes'),('scheduledScansEnabled',_binary '1','yes'),('serverDNS',_binary '1652696037;300;172.67.222.159','yes'),('showAdminBarMenu',_binary '1','yes'),('showWfCentralUI',_binary '1','yes'),('signatureUpdateTime',_binary '1651865372','yes'),('spamvertizeCheck',_binary '1','yes'),('ssl_verify',_binary '1','yes'),('startScansRemotely',_binary '0','yes'),('supportContent',_binary '{\"top\":[{\"title\":\"Blocking Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/troubleshooting\\/\",\"order\":0},{\"title\":\"Optimizing The Firewall\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/optimizing-the-firewall\\/\",\"order\":1},{\"title\":\"Wordfence Web Application Firewall (WAF)\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/\",\"order\":2},{\"title\":\"Scan Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/troubleshooting\\/\",\"order\":3},{\"title\":\"Wordfence and LiteSpeed\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/system-requirements\\/litespeed\\/\",\"order\":4},{\"title\":\"Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/two-factor-authentication\\/\",\"order\":5},{\"title\":\"Firewall Learning Mode\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/learning-mode\\/\",\"order\":6},{\"title\":\"Scan Results\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scan-results\\/\",\"order\":7},{\"title\":\"I am locked out of my site\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/#i-am-locked-out-of-my-site\",\"order\":8},{\"title\":\"PHP Fatal error: Failed opening required wordfence-waf.php\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/#php-fatal-error-failed-opening-required-wordfence-waf-php\",\"order\":9}],\"all\":[{\"title\":\"Wordfence Free\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-free\\/\",\"excerpt\":\"Wordfence Free is an all-in-one security solution for WordPress websites that includes an endpoint firewall, security scanner, login security, alerts, centralized management, and more.\",\"order\":0},{\"title\":\"Wordfence Premium\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-premium\\/\",\"excerpt\":\"Wordfence Premium comes with real-time firewall protection, real-time scan signatures, an IP address blocklist, country blocking, and Premium support.\",\"order\":1},{\"title\":\"Wordfence Care\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-care\\/\",\"excerpt\":\"Wordfence Care is for business owners who place a premium on their time. Our team installs, configures, optimizes, and maintains your WordPress site security.\",\"order\":2},{\"title\":\"Wordfence Response\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-response\\/\",\"excerpt\":\"Wordfence Response is for mission-critical WordPress websites that require 24\\/7\\/365 security monitoring with a 1-hour response time and 24-hour remediation.\",\"order\":3},{\"title\":\"Incident Response Services\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/incident-response-services\\/\",\"excerpt\":\"Let one of our Security Analysts help you clean your infected site or inspect it for vulnerabilities.\",\"order\":4},{\"title\":\"License Key\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/api-key\\/\",\"excerpt\":\"All Wordfence installations need a license key, also known as an API-key. The key can be a free key or a Premium key. \",\"order\":5},{\"title\":\"Account and Billing History\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/account\\/\",\"excerpt\":\"How to navigate and use your Wordfence account.\",\"order\":6},{\"title\":\"Wordfence Central\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/\",\"excerpt\":\"Wordfence Central provides a powerful and efficient way to manage the security of many WordPress sites via a single interface.\",\"children\":[{\"title\":\"Connecting your sites to Wordfence Central\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/connect\\/\",\"order\":0},{\"title\":\"Setting up two-factor authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/2fa\\/\",\"order\":1},{\"title\":\"Using the Dashboard page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/central\\/\",\"order\":2},{\"title\":\"Using the Configuration page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/configuration\\/\",\"order\":3},{\"title\":\"Using Wordfence plugin options Templates\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/templates\\/\",\"order\":4},{\"title\":\"Using the Settings page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/settings\\/\",\"order\":5},{\"title\":\"Using Wordfence Central Teams\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/teams\\/\",\"order\":6},{\"title\":\"Viewing scan Findings\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/findings\\/\",\"order\":7}],\"order\":7},{\"title\":\"Dashboard\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/\",\"excerpt\":\"The Wordfence Dashboard provides insight into the current state of your siteâ€™s security.\",\"children\":[{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/options\\/\",\"order\":0},{\"title\":\"Alerts\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/alerts\\/\",\"order\":1}],\"order\":8},{\"title\":\"Firewall\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/\",\"excerpt\":\"The Wordfence Web Application Firewall is a PHP based, application level firewall that filters out malicious requests to your site. \",\"children\":[{\"title\":\"Optimizing\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/optimizing-the-firewall\\/\",\"order\":0},{\"title\":\"Learning Mode\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/learning-mode\\/\",\"order\":1},{\"title\":\"Statistics\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/statistics\\/\",\"order\":2},{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/options\\/\",\"order\":3},{\"title\":\"MySQLi storage engine\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/mysqli-storage-engine\\/\",\"order\":4},{\"title\":\"Brute Force Protection\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/brute-force\\/\",\"order\":5},{\"title\":\"Rate Limiting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/rate-limiting\\/\",\"order\":6},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/troubleshooting\\/\",\"order\":7}],\"order\":9},{\"title\":\"Blocking\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/\",\"excerpt\":\"Aside from the firewall rules that protect against various attacks, Wordfence also has custom features for additional blocking. \",\"children\":[{\"title\":\"Country Blocking\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/country-blocking\\/\",\"order\":0},{\"title\":\"Blocking Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/troubleshooting\\/\",\"order\":1}],\"order\":10},{\"title\":\"Scan\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/\",\"excerpt\":\"A Wordfence scan examines all files on your WordPress website looking for malicious code, backdoors, and shells that hackers have installed. It also scans for known malicious URLs and known patterns of infections.\",\"children\":[{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/options\\/\",\"order\":0},{\"title\":\"Results\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scan-results\\/\",\"order\":1},{\"title\":\"Scheduling\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scheduling\\/\",\"order\":2},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/troubleshooting\\/\",\"order\":3}],\"order\":11},{\"title\":\"Tools\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/\",\"excerpt\":\"Wordfence Tools include Live Traffic analysis, WHOIS Lookup, Import\\/Export Options, and Diagnostics.\",\"children\":[{\"title\":\"Live Traffic\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/live-traffic\\/\",\"order\":0},{\"title\":\"WHOIS Lookup\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/whois-lookup\\/\",\"order\":1},{\"title\":\"Import\\/Export\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/import-export\\/\",\"order\":2},{\"title\":\"Diagnostics\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/diagnostics\\/\",\"order\":3},{\"title\":\"Legacy Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/legacy-two-factor-authentication\\/\",\"order\":4},{\"title\":\"Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/two-factor-authentication\\/\",\"order\":5}],\"order\":12},{\"title\":\"Login Security\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/login-security\\/\",\"excerpt\":\"The Login Security page currently contains settings for two-factor authentication (2FA) and reCAPTCHA. In a future Wordfence version, existing login-related features will also move to the same page.\",\"order\":13},{\"title\":\"Advanced\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/\",\"excerpt\":\"If you want to know more about the technical details of Wordfence, you will find the answers in this section.\",\"children\":[{\"title\":\"System requirements\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/system-requirements\\/\",\"order\":0},{\"title\":\"Changelog\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/changelog\\/\",\"order\":1},{\"title\":\"Remove or Reset\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/remove-or-reset\\/\",\"order\":2},{\"title\":\"Technical Details\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/technical-details\\/\",\"order\":3},{\"title\":\"Constants\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/constants\\/\",\"order\":4},{\"title\":\"Wordfence API\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/wordfence-api\\/\",\"order\":5},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/troubleshooting\\/\",\"order\":6},{\"title\":\"Plugin \\/ Theme Conflicts\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/plugin-theme-conflicts\\/\",\"order\":7}],\"order\":14},{\"title\":\"Wordfence and GDPR - General Data Protection Regulation\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/general-data-protection-regulation\\/\",\"excerpt\":\"Defiant, the company behind Wordfence, has updated its terms of use, privacy policies and software, as well as made available standard contractual clauses to meet GDPR compliance. Customers must review and agree to updated terms in order to continue using our products and services.\",\"children\":[{\"title\":\"Sub-Processors List\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/general-data-protection-regulation\\/sub-processors-list\\/\",\"order\":0}],\"order\":15},{\"title\":\"Login Security Plugin\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/login-security-plugin\\/\",\"excerpt\":\"The Wordfence Login Security plugin contains a subset of the features found in the full Wordfence plugin: Two-factor Authentication, XML-RPC Protection and Login Page CAPTCHA. It is ideal for sites that need login security functionality but either canâ€™t or donâ€™t want to run the full Wordfence plugin.\",\"order\":16}]}','yes'),('supportHash',_binary 'b9a5e3270c767a1d17907b99082ec09327dc3822964570eacae8033d846446d4','yes'),('suspiciousAdminUsernames',_binary 'a:2:{i:0;s:46:\"/^wp\\.service\\.controller(?:\\.[a-zA-Z0-9]+)$/i\";i:1;s:55:\"/^(?:wordpressssadmin|wordprestadmin|jaime.besser56)$/i\";}','yes'),('timeoffset_wf',_binary '-1','yes'),('timeoffset_wf_updated',_binary '1652696028','yes'),('tldlist',_binary '|com|org|net|edu|aaa|abb|abc|aco|ads|aeg|afl|aig|anz|aol|app|art|aws|axa|bar|bbc|bbt|bcg|bcn|bet|bid|bio|biz|bms|bmw|bom|boo|bot|box|buy|bzh|cab|cal|cam|car|cat|cba|cbn|cbs|ceo|cfa|cfd|cpa|crs|dad|day|dds|dev|dhl|diy|dnp|dog|dot|dtv|dvr|eat|eco|esq|eus|fan|fit|fly|foo|fox|frl|ftr|fun|fyi|gal|gap|gay|gdn|gea|gle|gmo|gmx|goo|gop|got|gov|hbo|hiv|hkt|hot|how|ibm|ice|icu|ifm|inc|ing|ink|int|ist|itv|jcb|jio|jll|jmp|jnj|jot|joy|kfh|kia|kim|kpn|krd|lat|law|lds|llc|llp|lol|lpl|ltd|man|map|mba|med|men|mil|mit|mlb|mls|mma|moe|moi|mom|mov|msd|mtn|mtr|nab|nba|nec|new|nfl|ngo|nhk|now|nra|nrw|ntt|nyc|obi|one|ong|onl|ooo|ott|ovh|pay|pet|phd|pid|pin|pnc|pro|pru|pub|pwc|red|ren|ril|rio|rip|run|rwe|sap|sas|sbi|sbs|sca|scb|ses|sew|sex|sfr|ski|sky|soy|spa|srl|stc|tab|tax|tci|tdk|tel|thd|tjx|top|trv|tui|tvs|ubs|uno|uol|ups|vet|vig|vin|vip|wed|win|wme|wow|wtc|wtf|xin|xxx|xyz|you|yun|zip|ac|ad|ae|af|ag|ai|al|am|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cu|cv|cw|cx|cy|cz|de|dj|dk|dm|do|dz|ec|ee|eg|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|sl|sm|sn|so|sr|ss|st|su|sv|sx|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|za|zm|zw|aarp|able|adac|aero|akdn|ally|amex|arab|army|arpa|arte|asda|asia|audi|auto|azure|baby|baidu|bananarepublic|band|bank|bike|autos|barcelona|bbva|beer|best|bing|blog|author|blue|bofa|bond|book|bostik|buzz|boats|bosch|build|boston|banamex|cafe|call|avianca|bnpparibas|bradesco|boehringer|barclaycard|booking|boutique|bridgestone|camp|care|cars|casa|case|cash|cbre|citi|city|cyou|date|dclk|deal|dell|bharti|cern|bestbuy|desi|beats|docs|beauty|bentley|berlin|dish|bible|bayern|data|diet|barclays|cloud|barefoot|bargains|bingo|cards|basketball|black|click|baseball|bauhaus|download|blackfriday|chat|chase|cheap|cisco|cool|loan|blockbuster|coop|citic|bloomberg|canon|club|loft|meet|meme|menu|mini|mobi|moda|moto|airtel|mint|play|vana|airbus|surf|town|toys|tube|viva|vivo|agency|visa|agakhan|alipay|amfam|maif|talk|alstom|love|taxi|alsace|luxe|crown|ltda|team|tech|airforce|amica|allstate|teva|allfinanz|tiaa|alfaromeo|tips|alibaba|vote|africa|academy|zone|coach|abarth|zara|zero|abbott|abbvie|audio|yoga|codes|abogado|abudhabi|xbox|accenture|aetna|accountant|voto|wang|weir|wien|work|accountants|wine|actor|wiki|adult|apple|archi|amazon|cymru|americanexpress|aquarelle|nico|nike|ollo|open|page|pars|pccw|qpon|read|reit|rent|rest|rich|aramco|athleta|name|ping|associates|navy|pink|plus|pohl|auction|news|pics|porn|post|prof|attorney|next|prod|audible|auspost|room|dabur|delta|rsvp|safe|saxo|dance|sale|sarl|save|americanfamily|ruhr|deals|amsterdam|scot|analytics|seat|seek|sexy|shaw|shia|anquan|apartments|shop|silk|android|show|sina|site|skin|sncf|sohu|song|sony|spot|star|drive|career|broadway|casino|center|chanel|college|comcast|commbank|company|compare|computer|comsec|condos|contact|cooking|corsica|dentist|cityeats|direct|country|coupon|coupons|courses|credit|design|cologne|dvag|fail|circle|clinique|clubmed|clothing|equipment|erni|eurovision|fage|fans|farm|fiat|clinic|fast|fido|film|flir|ford|epson|fire|cleaning|food|claims|fish|free|game|chrome|coffee|etisalat|gent|church|fund|gbiz|estate|ggee|diamonds|email|gmail|events|ericsson|gift|gives|glass|digital|gifts|emerck|energy|globo|gmbh|here|forex|hdfc|forum|homes|horse|host|final|dupont|help|hgtv|house|hsbc|dubai|honda|hyatt|icbc|phone|pizza|place|datsun|photo|dating|poker|praxi|press|prime|promo|quest|radio|rehab|reise|ricoh|rocks|dunlop|rodeo|weibo|cruise|tours|broker|camera|delivery|deloitte|weber|dealer|degree|dental|doctor|total|trust|tunes|tushu|ubank|volvo|durban|gold|haus|edeka|faith|golf|gallo|expert|cricket|cruises|earth|exposed|fedex|express|extraspace|family|fishing|exchange|firmdale|fairwinds|fitness|firestone|goog|games|guru|hair|ieee|guide|loans|skype|sling|fashion|guge|smart|ferrero|democrat|farmers|smile|vodka|watch|ferrari|feedback|financial|green|finance|fidelity|gripe|group|gucci|rugby|salon|sener|seven|sharp|shell|shoes|vegas|video|wales|flickr|ikano|business|george|gratis|jprs|kddi|juegos|bugatti|discover|jobs|kpmg|land|garden|joburg|domains|kred|frogans|fujitsu|jeep|kids|koeln|builders|jetzt|gallup|health|java|futbol|forsale|kiwi|lego|discount|kyoto|giving|kindle|latino|lease|kinder|flights|global|google|kosher|lamer|lawyer|lefrak|legal|media|miami|mobile|monash|money|kaufen|mormon|movie|nexus|nikon|ninja|nokia|lancia|moscow|music|museum|mutual|nagoya|natura|nissay|pfizer|review|rogers|yahoo|nissan|rocher|ryukyu|brother|capital|florist|school|flowers|safety|sakura|capetown|sanofi|schule|gallery|itau|irish|insure|genting|imdb|immo|info|linde|hotels|lidl|kitchen|lgbt|life|like|limo|limited|lincoln|football|lilly|link|lexus|lipsy|hughes|london|macys|imamat|locker|locus|luxury|komatsu|live|lotte|lotto|mango|living|lacaixa|lundbeck|mortgage|nowtv|monster|omega|hiphop|party|brussels|paris|parts|hermes|frontier|hockey|intuit|jaguar|latrobe|madrid|maison|lanxess|leclerc|lighting|makeup|market|lasalle|nowruz|photos|pictet|markets|mattel|norton|reisen|marriott|office|physio|mckinsey|olayan|online|oracle|osaka|orange|otsuka|quebec|racing|realty|merckmsd|repair|maserati|memorial|report|search|shouji|caravan|secure|careers|soccer|channel|charity|social|viajes|xerox|travel|unicom|viking|villas|virgin|vision|voting|walter|chintai|world|engineering|godaddy|cipriani|citadel|engineer|toyota|voyage|enterprises|vuelos|grocery|guitars|hangout|hitachi|holiday|hotmail|ismaili|ipiranga|select|hamburg|hosting|hoteles|hyundai|hospital|jewelry|juniper|neustar|origins|rentals|infiniti|netbank|netflix|holdings|network|oldnavy|organic|observer|okinawa|partners|philips|recipes|pharmacy|realtor|trading|pictures|pioneer|plumbing|politie|reviews|rexroth|sandvik|schmidt|schwarz|science|shiksha|singles|works|samsung|walmart|wanggou|watches|xfinity|catering|catholic|goodyear|graphics|guardian|hdfcbank|youtube|grainger|helsinki|istanbul|jpmorgan|yandex|yamaxun|directory|education|yachts|zuerich|property|winners|reliance|shopping|wedding|redstone|webcam|whoswho|services|website|xihuan|saarland|security|softbank|weather|windows|zappos|samsclub|showtime|software|community|hisamitsu|homegoods|homesense|immobilien|industries|store|study|style|sucks|homedepot|institute|insurance|stada|panasonic|passagens|healthcare|photography|playstation|pramerica|redumbrella|solar|productions|richardli|restaurant|progressive|properties|space|protection|prudential|realestate|republican|sport|sandvikcoromant|schaeffler|scholarships|swiss|construction|cancerresearch|tires|tirol|tmall|tokyo|tools|christmas|today|calvinklein|international|kuokgroup|lamborghini|lancaster|toshiba|capitalone|investments|landrover|lifestyle|kerryhotels|lplfinancial|toray|lifeinsurance|management|marketing|marshalls|melbourne|microsoft|mitsubishi|tatar|kerrylogistics|nextdirect|northwesternmutual|olayangroup|kerryproperties|motorcycles|trade|consulting|furniture|supply|support|surgery|suzuki|swatch|sydney|taipei|systems|taobao|tattoo|theater|theatre|xn--node|frontdoor|tatamotors|tennis|supplies|xn--p1ai|xn--qxam|contractors|fresenius|target|tkmaxx|goldpoint|shangrila|solutions|tjmaxx|staples|statebank|statefarm|tickets|tiffany|stcgroup|training|travelers|xn--90ae|stockholm|storage|stream|studio|tienda|temasek|vacations|technology|ventures|travelchannel|travelersinsurance|vanguard|foundation|verisign|foodnetwork|woodside|xn--80adxhks|yokohama|xn--80aswg|xn--90a3ac|xn--80ao21a|xn--80asehdb|xn--8y0a063a|xn--80aqecdr1a|xn--90ais|xn--fhbei|xn--nqv7f|cuisinella|university|versicherung|yodobashi|creditcard|vlaanderen|xn--vhquv|xn--3pxu8k|xn--p1acf|volkswagen|williamhill|wolterskluwer|xn--qxa6a|xn--11b4c3d|xn--1ck2e1b|xn--1qqw23a|xn--2scrj9c|xn--30rr7y|xn--3bst00m|xn--42c2d9a|xn--tckwe|xn--3ds443g|xn--45br5cyl|xn--45brj9c|xn--3e0b707e|xn--3hcrj9c|xn--45q11c|xn--4gbrim|xn--6qq986b3xl|xn--e1a4c|xn--5tzm5g|cookingchannel|xn--55qx5d|xn--55qw42g|xn--6frz82g|xn--4dbrk0ce|weatherchannel|xn--c1avg|creditunion|xn--d1alf|xn--9dbq2a|xn--9et52u|xn--c2br7g|xn--9krt00a|xn--cg4bki|xn--czrs0t|xn--czru2d|xn--fiqz9s|xn--czr694b|xn--d1acj3b|xn--pssy2u|xn--q7ce6a|xn--cck2b3b|xn--efvy88h|xn--fct429k|xn--fiq64b|xn--fiqs8s|xn--g2xx48c|xn--o3cw4h|xn--unup4y|xn--fjq720a|xn--flw351e|xn--gecrj9c|xn--fpcrj9c3d|xn--gk3at1e|xn--fzc2c9e2c|xn--nyqy26a|xn--q9jyb4c|xn--gckr3f0f|xn--ogbpf8fl|xn--otu796d|xn--cckwcxetd|xn--eckvdtc9d|xn--h2brj9c|xn--pgbs0dh|xn--y9a3aq|xn--zfr164b|xn--qcka1pmc|xn--wgbh1c|xn--wgbl6a|xn--rhqv96g|xn--rovu88b|xn--s9brj9c|xn--ses554g|xn--t60b56a|xn--vuq861b|xn--w4rs40l|xn--xhq521b|xn--h2brj9c8c|xn--j1aef|xn--j1amh|xn--l1acc|xn--kput3i|xn--j6w193g|xn--jvr189m|xn--kprw13d|xn--kpry57d|xn--mgb9awbf|xn--jlq480n2rg|xn--jlq61u9w7b|xn--kcrx77d1x4a|xn--ngbrx|xn--io0a7i|xn--hxt814e|xn--imr513n|xn--54b7fta0cc|xn--b4w605ferd|xn--fiq228c5hs|xn--h2breg3eve|xn--i1b6b1a6a2e|xn--fzys8d69uvgm|xn--5su34j936bgsg|xn--bck1b9a5dre4c|xn--clchc0ea0b2g2a9gcd|xn--yfro4i67o|xn--ygbi2ammx|xn--lgbbat1ad8j|xn--mgba3a3ejt|xn--mgba7c0bbn0a|xn--mgbab2bd|xn--mgbbh1a|xn--mgbbh1a71e|xn--mgbgu82a|xn--mgbayh7gpa|xn--mgbi4ecexp|xn--mgbpl2fh|xn--mgbt3dhd|xn--mgbtx2b|xn--mgbaam7a8h|xn--mgbca7dzdo|xn--mgbx4cd0ab|xn--mix891f|xn--mk1bu44c|xn--mxtq1m|xn--ngbc5azd|xn--ngbe9e0a|xn--mgberp4a5d4ar|xn--rvc1e0am3e|xn--mgba3a4f16a|xn--mgbc0a9azcg|xn--mgbah1a3hjkrd|xn--mgbai9azgqp6j|xn--tiq49xqyj|xn--mgbaakc7dvf|xn--nqv7fs00ema|xn--mgbcpq6gpa1a|xn--vermgensberater-ctb|xn--vermgensberatung-pwb|xn--xkc2al3hye2a|xn--xkc2dl3a5ee0h|xn--w4r85el8fhu5dnra|','yes'),('tldlistHash',_binary '556564f0a4c34c6c7ca2f561da14c76676b6d60ac18c36ea4ffc37fc56212ff1','yes'),('totalAlertsSent',_binary '1','yes'),('totalLoginHits',_binary '5','yes'),('totalLogins',_binary '1','yes'),('totalScansRun',_binary '6','yes'),('touppBypassNextCheck',_binary '0','yes'),('touppPromptNeeded',_binary '0','yes'),('vulnerabilities_plugin',_binary 'a:12:{i:0;a:4:{s:4:\"slug\";s:7:\"akismet\";s:11:\"fromVersion\";s:5:\"4.2.3\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:1;a:4:{s:4:\"slug\";s:14:\"contact-form-7\";s:11:\"fromVersion\";s:5:\"5.5.6\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:2;a:4:{s:4:\"slug\";s:11:\"hello-dolly\";s:11:\"fromVersion\";s:5:\"1.7.2\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:3;a:4:{s:4:\"slug\";s:24:\"nextend-facebook-connect\";s:11:\"fromVersion\";s:5:\"3.1.4\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:4;a:4:{s:4:\"slug\";s:32:\"products-compare-for-woocommerce\";s:11:\"fromVersion\";s:7:\"3.5.7.4\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:5;a:4:{s:4:\"slug\";s:23:\"ti-woocommerce-wishlist\";s:11:\"fromVersion\";s:6:\"1.44.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:6;a:4:{s:4:\"slug\";s:11:\"woocommerce\";s:11:\"fromVersion\";s:5:\"6.5.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:7;a:4:{s:4:\"slug\";s:24:\"woocommerce-multilingual\";s:11:\"fromVersion\";s:6:\"4.12.6\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:8;a:4:{s:4:\"slug\";s:29:\"woocommerce-currency-switcher\";s:11:\"fromVersion\";s:7:\"1.3.7.5\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:9;a:4:{s:4:\"slug\";s:9:\"wordfence\";s:11:\"fromVersion\";s:5:\"7.5.9\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:10;a:4:{s:4:\"slug\";s:24:\"yith-woocommerce-compare\";s:11:\"fromVersion\";s:6:\"2.13.0\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:11;a:4:{s:4:\"slug\";s:25:\"yith-woocommerce-wishlist\";s:11:\"fromVersion\";s:5:\"3.8.0\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}}','yes'),('vulnerabilities_theme',_binary 'a:4:{i:0;a:4:{s:4:\"slug\";s:14:\"twentynineteen\";s:9:\"toVersion\";s:3:\"2.2\";s:11:\"fromVersion\";s:3:\"2.1\";s:10:\"vulnerable\";b:0;}i:1;a:4:{s:4:\"slug\";s:12:\"twentytwenty\";s:9:\"toVersion\";s:3:\"1.9\";s:11:\"fromVersion\";s:3:\"1.8\";s:10:\"vulnerable\";b:0;}i:2;a:4:{s:4:\"slug\";s:15:\"twentytwentyone\";s:9:\"toVersion\";s:3:\"1.5\";s:11:\"fromVersion\";s:3:\"1.4\";s:10:\"vulnerable\";b:0;}i:3;a:4:{s:4:\"slug\";s:15:\"twentytwentytwo\";s:9:\"toVersion\";s:3:\"1.1\";s:11:\"fromVersion\";s:3:\"1.0\";s:10:\"vulnerable\";b:0;}}','yes'),('wafAlertInterval',_binary '600','yes'),('wafAlertOnAttacks',_binary '1','yes'),('wafAlertThreshold',_binary '100','yes'),('wafAlertWhitelist','','yes'),('waf_status',_binary 'learning-mode','yes'),('wfKillRequested',_binary '0','no'),('wfPeakMemory',_binary '53862400','no'),('wfScanStartVersion',_binary '5.9.3','yes'),('wfsd_engine','','no'),('wfStatusStartMsgs',_binary 'a:21:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";i:7;s:0:\"\";i:8;s:0:\"\";i:9;s:0:\"\";i:10;s:0:\"\";i:11;s:0:\"\";i:12;s:0:\"\";i:13;s:0:\"\";i:14;s:0:\"\";i:15;s:0:\"\";i:16;s:0:\"\";i:17;s:0:\"\";i:18;s:0:\"\";i:19;s:0:\"\";i:20;s:0:\"\";}','yes'),('wf_scanLastStatusTime',_binary '0','yes'),('wf_scanRunning','','yes'),('wf_summaryItems',_binary 'a:8:{s:12:\"scannedPosts\";i:86;s:15:\"scannedComments\";i:0;s:12:\"scannedFiles\";i:11139;s:14:\"scannedPlugins\";i:12;s:13:\"scannedThemes\";i:6;s:12:\"scannedUsers\";i:2;s:11:\"scannedURLs\";i:1612;s:10:\"lastUpdate\";i:1652698577;}','yes'),('whitelisted','','yes'),('whitelistedServices',_binary '{}','yes'),('whitelistHash',_binary 'bf3d76dc05caf8623cb3fe01c1fc9e308e2f2ea37b826937d850fde361cdefd4','yes'),('whitelistPresets',_binary '{\"wordfence\":{\"n\":\"Wordfence\",\"h\":true,\"d\":true,\"f\":true,\"r\":[\"54.68.32.247\",\"69.46.36.0\\/27\",\"2605:2400:0104:0100::\\/56\"]},\"sucuri\":{\"n\":\"Sucuri\",\"d\":true,\"r\":[\"97.74.127.171\",\"69.164.203.172\",\"173.230.128.135\",\"66.228.34.49\",\"66.228.40.185\",\"50.116.36.92\",\"50.116.36.93\",\"50.116.3.171\",\"198.58.96.212\",\"50.116.63.221\",\"192.155.92.112\",\"192.81.128.31\",\"198.58.106.244\",\"192.155.95.139\",\"23.239.9.227\",\"198.58.112.103\",\"192.155.94.43\",\"162.216.16.33\",\"173.255.233.124\",\"173.255.233.124\",\"192.155.90.179\",\"50.116.41.217\",\"192.81.129.227\",\"198.58.111.80\",\"162.216.19.183\"]},\"facebook\":{\"n\":\"Facebook\",\"d\":true,\"r\":[\"69.63.176.0\\/20\",\"66.220.144.0\\/20\",\"66.220.144.0\\/21\",\"69.63.184.0\\/21\",\"69.63.176.0\\/21\",\"74.119.76.0\\/22\",\"69.171.255.0\\/24\",\"173.252.64.0\\/18\",\"69.171.224.0\\/19\",\"69.171.224.0\\/20\",\"103.4.96.0\\/22\",\"69.63.176.0\\/24\",\"173.252.64.0\\/19\",\"173.252.70.0\\/24\",\"31.13.64.0\\/18\",\"31.13.24.0\\/21\",\"66.220.152.0\\/21\",\"66.220.159.0\\/24\",\"69.171.239.0\\/24\",\"69.171.240.0\\/20\",\"31.13.64.0\\/19\",\"31.13.64.0\\/24\",\"31.13.65.0\\/24\",\"31.13.67.0\\/24\",\"31.13.68.0\\/24\",\"31.13.69.0\\/24\",\"31.13.70.0\\/24\",\"31.13.71.0\\/24\",\"31.13.72.0\\/24\",\"31.13.73.0\\/24\",\"31.13.74.0\\/24\",\"31.13.75.0\\/24\",\"31.13.76.0\\/24\",\"31.13.77.0\\/24\",\"31.13.96.0\\/19\",\"31.13.66.0\\/24\",\"173.252.96.0\\/19\",\"69.63.178.0\\/24\",\"31.13.78.0\\/24\",\"31.13.79.0\\/24\",\"31.13.80.0\\/24\",\"31.13.82.0\\/24\",\"31.13.83.0\\/24\",\"31.13.84.0\\/24\",\"31.13.85.0\\/24\",\"31.13.86.0\\/24\",\"31.13.87.0\\/24\",\"31.13.88.0\\/24\",\"31.13.89.0\\/24\",\"31.13.90.0\\/24\",\"31.13.91.0\\/24\",\"31.13.92.0\\/24\",\"31.13.93.0\\/24\",\"31.13.94.0\\/24\",\"31.13.95.0\\/24\",\"69.171.253.0\\/24\",\"69.63.186.0\\/24\",\"31.13.81.0\\/24\",\"179.60.192.0\\/22\",\"179.60.192.0\\/24\",\"179.60.193.0\\/24\",\"179.60.194.0\\/24\",\"179.60.195.0\\/24\",\"185.60.216.0\\/22\",\"45.64.40.0\\/22\",\"185.60.216.0\\/24\",\"185.60.217.0\\/24\",\"185.60.218.0\\/24\",\"185.60.219.0\\/24\",\"129.134.0.0\\/16\",\"157.240.0.0\\/16\",\"157.240.8.0\\/24\",\"157.240.0.0\\/24\",\"157.240.1.0\\/24\",\"157.240.2.0\\/24\",\"157.240.3.0\\/24\",\"157.240.4.0\\/24\",\"157.240.5.0\\/24\",\"157.240.6.0\\/24\",\"157.240.7.0\\/24\",\"157.240.9.0\\/24\",\"157.240.10.0\\/24\",\"157.240.16.0\\/24\",\"157.240.19.0\\/24\",\"157.240.11.0\\/24\",\"157.240.12.0\\/24\",\"157.240.13.0\\/24\",\"157.240.14.0\\/24\",\"157.240.15.0\\/24\",\"157.240.17.0\\/24\",\"157.240.18.0\\/24\",\"157.240.20.0\\/24\",\"157.240.21.0\\/24\",\"157.240.22.0\\/24\",\"157.240.23.0\\/24\",\"157.240.0.0\\/17\",\"69.171.250.0\\/24\",\"157.240.24.0\\/24\",\"157.240.25.0\\/24\",\"199.201.64.0\\/24\",\"199.201.65.0\\/24\",\"199.201.64.0\\/22\",\"204.15.20.0\\/22\",\"157.240.192.0\\/24\",\"129.134.0.0\\/17\",\"204.15.20.0\\/22\",\"69.63.176.0\\/20\",\"69.63.176.0\\/21\",\"69.63.184.0\\/21\",\"66.220.144.0\\/20\",\"69.63.176.0\\/20\",\"2620:0:1c00::\\/40\",\"2a03:2880::\\/32\",\"2a03:2880:fffe::\\/48\",\"2a03:2880:ffff::\\/48\",\"2620:0:1cff::\\/48\",\"2a03:2880:f000::\\/48\",\"2a03:2880:f001::\\/48\",\"2a03:2880:f002::\\/48\",\"2a03:2880:f003::\\/48\",\"2a03:2880:f004::\\/48\",\"2a03:2880:f005::\\/48\",\"2a03:2880:f006::\\/48\",\"2a03:2880:f007::\\/48\",\"2a03:2880:f008::\\/48\",\"2a03:2880:f009::\\/48\",\"2a03:2880:f00a::\\/48\",\"2a03:2880:f00b::\\/48\",\"2a03:2880:f00c::\\/48\",\"2a03:2880:f00d::\\/48\",\"2a03:2880:f00e::\\/48\",\"2a03:2880:f00f::\\/48\",\"2a03:2880:f010::\\/48\",\"2a03:2880:f011::\\/48\",\"2a03:2880:f012::\\/48\",\"2a03:2880:f013::\\/48\",\"2a03:2880:f014::\\/48\",\"2a03:2880:f015::\\/48\",\"2a03:2880:f016::\\/48\",\"2a03:2880:f017::\\/48\",\"2a03:2880:f018::\\/48\",\"2a03:2880:f019::\\/48\",\"2a03:2880:f01a::\\/48\",\"2a03:2880:f01b::\\/48\",\"2a03:2880:f01c::\\/48\",\"2a03:2880:f01d::\\/48\",\"2a03:2880:f01e::\\/48\",\"2a03:2880:f01f::\\/48\",\"2a03:2880:1000::\\/36\",\"2a03:2880:2000::\\/36\",\"2a03:2880:3000::\\/36\",\"2a03:2880:4000::\\/36\",\"2a03:2880:5000::\\/36\",\"2a03:2880:6000::\\/36\",\"2a03:2880:7000::\\/36\",\"2a03:2880:f020::\\/48\",\"2a03:2880:f021::\\/48\",\"2a03:2880:f022::\\/48\",\"2a03:2880:f023::\\/48\",\"2a03:2880:f024::\\/48\",\"2a03:2880:f025::\\/48\",\"2a03:2880:f026::\\/48\",\"2a03:2880:f027::\\/48\",\"2a03:2880:f028::\\/48\",\"2a03:2880:f029::\\/48\",\"2a03:2880:f02b::\\/48\",\"2a03:2880:f02c::\\/48\",\"2a03:2880:f02d::\\/48\",\"2a03:2880:f02e::\\/48\",\"2a03:2880:f02f::\\/48\",\"2a03:2880:f030::\\/48\",\"2a03:2880:f031::\\/48\",\"2a03:2880:f032::\\/48\",\"2a03:2880:f033::\\/48\",\"2a03:2880:f034::\\/48\",\"2a03:2880:f035::\\/48\",\"2a03:2880:f036::\\/48\",\"2a03:2880:f037::\\/48\",\"2a03:2880:f038::\\/48\",\"2a03:2880:f039::\\/48\",\"2a03:2880:f03a::\\/48\",\"2a03:2880:f03b::\\/48\",\"2a03:2880:f03c::\\/48\",\"2a03:2880:f03d::\\/48\",\"2a03:2880:f03e::\\/48\",\"2a03:2880:f03f::\\/48\",\"2401:db00::\\/32\",\"2a03:2880::\\/36\",\"2803:6080::\\/32\",\"2a03:2880:f100::\\/48\",\"2a03:2880:f200::\\/48\",\"2a03:2880:f101::\\/48\",\"2a03:2880:f201::\\/48\",\"2a03:2880:f102::\\/48\",\"2a03:2880:f202::\\/48\",\"2a03:2880:f103::\\/48\",\"2a03:2880:f203::\\/48\",\"2a03:2880:f104::\\/48\",\"2a03:2880:f204::\\/48\",\"2a03:2880:f107::\\/48\",\"2a03:2880:f207::\\/48\",\"2a03:2880:f108::\\/48\",\"2a03:2880:f208::\\/48\",\"2a03:2880:f109::\\/48\",\"2a03:2880:f209::\\/48\",\"2a03:2880:f10a::\\/48\",\"2a03:2880:f20a::\\/48\",\"2a03:2880:f10b::\\/48\",\"2a03:2880:f20b::\\/48\",\"2a03:2880:f10d::\\/48\",\"2a03:2880:f20d::\\/48\",\"2a03:2880:f10e::\\/48\",\"2a03:2880:f20e::\\/48\",\"2a03:2880:f10f::\\/48\",\"2a03:2880:f20f::\\/48\",\"2a03:2880:f110::\\/48\",\"2a03:2880:f210::\\/48\",\"2a03:2880:f111::\\/48\",\"2a03:2880:f211::\\/48\",\"2a03:2880:f112::\\/48\",\"2a03:2880:f212::\\/48\",\"2a03:2880:f114::\\/48\",\"2a03:2880:f214::\\/48\",\"2a03:2880:f115::\\/48\",\"2a03:2880:f215::\\/48\",\"2a03:2880:f116::\\/48\",\"2a03:2880:f216::\\/48\",\"2a03:2880:f117::\\/48\",\"2a03:2880:f217::\\/48\",\"2a03:2880:f118::\\/48\",\"2a03:2880:f218::\\/48\",\"2a03:2880:f119::\\/48\",\"2a03:2880:f219::\\/48\",\"2a03:2880:f11a::\\/48\",\"2a03:2880:f21a::\\/48\",\"2a03:2880:f11f::\\/48\",\"2a03:2880:f21f::\\/48\",\"2a03:2880:f121::\\/48\",\"2a03:2880:f221::\\/48\",\"2a03:2880:f122::\\/48\",\"2a03:2880:f222::\\/48\",\"2a03:2880:f123::\\/48\",\"2a03:2880:f223::\\/48\",\"2a03:2880:f10c::\\/48\",\"2a03:2880:f20c::\\/48\",\"2a03:2880:f126::\\/48\",\"2a03:2880:f226::\\/48\",\"2a03:2880:f105::\\/48\",\"2a03:2880:f205::\\/48\",\"2a03:2880:f125::\\/48\",\"2a03:2880:f225::\\/48\",\"2a03:2880:f106::\\/48\",\"2a03:2880:f206::\\/48\",\"2a03:2880:f11b::\\/48\",\"2a03:2880:f21b::\\/48\",\"2a03:2880:f113::\\/48\",\"2a03:2880:f213::\\/48\",\"2a03:2880:f11c::\\/48\",\"2a03:2880:f21c::\\/48\",\"2a03:2880:f128::\\/48\",\"2a03:2880:f228::\\/48\",\"2a03:2880:f02a::\\/48\",\"2a03:2880:f12a::\\/48\",\"2a03:2880:f22a::\\/48\",\"2a03:2880:f12f::\\/48\",\"2a03:2880:f22f::\\/48\",\"2a03:2880:f11d::\\/48\",\"2a03:2880:f11e::\\/48\",\"2a03:2880:f120::\\/48\",\"2a03:2880:f124::\\/48\",\"2a03:2880:f127::\\/48\",\"2a03:2880:f129::\\/48\",\"2a03:2880:f12b::\\/48\",\"2a03:2880:f12c::\\/48\",\"2a03:2880:f12d::\\/48\",\"2a03:2880:f12e::\\/48\",\"2a03:2880:f130::\\/48\",\"2a03:2880:f131::\\/48\",\"2a03:2880:f132::\\/48\",\"2a03:2880:f133::\\/48\",\"2a03:2880:f134::\\/48\",\"2a03:2880:f135::\\/48\",\"2a03:2880:f136::\\/48\",\"2a03:2880:f137::\\/48\",\"2a03:2880:f138::\\/48\",\"2a03:2880:f139::\\/48\",\"2a03:2880:f13a::\\/48\",\"2a03:2880:f13b::\\/48\",\"2a03:2880:f13c::\\/48\",\"2a03:2880:f13d::\\/48\",\"2a03:2880:f13e::\\/48\",\"2a03:2880:f13f::\\/48\",\"2a03:2880:f21d::\\/48\",\"2a03:2880:f21e::\\/48\",\"2a03:2880:f220::\\/48\",\"2a03:2880:f224::\\/48\",\"2a03:2880:f227::\\/48\",\"2a03:2880:f229::\\/48\",\"2a03:2880:f22b::\\/48\",\"2a03:2880:f22c::\\/48\",\"2a03:2880:f22d::\\/48\",\"2a03:2880:f22e::\\/48\",\"2a03:2880:f230::\\/48\",\"2a03:2880:f231::\\/48\",\"2a03:2880:f232::\\/48\",\"2a03:2880:f233::\\/48\",\"2a03:2880:f234::\\/48\",\"2a03:2880:f235::\\/48\",\"2a03:2880:f236::\\/48\",\"2a03:2880:f237::\\/48\",\"2a03:2880:f238::\\/48\",\"2a03:2880:f239::\\/48\",\"2a03:2880:f23a::\\/48\",\"2a03:2880:f23b::\\/48\",\"2a03:2880:f23c::\\/48\",\"2a03:2880:f23d::\\/48\",\"2a03:2880:f23e::\\/48\",\"2a03:2880:f23f::\\/48\",\"2a03:2880:f0ff::\\/48\",\"2a03:2880:f1ff::\\/48\",\"2a03:2880:f2ff::\\/48\",\"2c0f:ef78:0003::\\/48\"]},\"uptimerobot\":{\"n\":\"Uptime Robot\",\"d\":true,\"r\":[\"69.162.124.224\\/28\",\"63.143.42.240\\/28\"]},\"statuscake\":{\"n\":\"StatusCake\",\"d\":true,\"r\":[\"103.194.112.70\",\"104.131.247.151\",\"104.131.248.65\",\"104.131.248.78\",\"104.156.229.24\",\"104.156.255.184\",\"104.206.168.26\",\"104.238.164.105\",\"107.150.1.135\",\"107.155.104.182\",\"107.155.108.234\",\"107.155.125.29\",\"107.161.28.219\",\"107.170.197.248\",\"107.170.219.46\",\"107.170.227.23\",\"107.170.227.24\",\"107.170.240.141\",\"107.170.53.191\",\"107.191.47.131\",\"107.191.57.237\",\"108.61.119.153\",\"108.61.162.214\",\"108.61.205.201\",\"108.61.212.141\",\"108.61.215.179\",\"125.63.48.239\",\"128.199.222.65\",\"138.197.130.232\",\"138.197.130.235\",\"138.197.140.243\",\"138.204.171.136\",\"138.68.24.115\",\"138.68.24.136\",\"138.68.24.207\",\"138.68.24.60\",\"138.68.80.10\",\"138.68.80.173\",\"139.59.15.79\",\"139.59.155.26\",\"139.59.190.241\",\"139.59.22.109\",\"139.59.26.85\",\"139.59.29.167\",\"149.154.157.61\",\"149.255.59.100\",\"151.236.10.238\",\"151.236.18.80\",\"151.80.175.223\",\"151.80.175.226\",\"154.127.60.23\",\"154.127.60.59\",\"158.255.208.76\",\"159.203.182.22\",\"159.203.182.60\",\"159.203.186.225\",\"159.203.31.18\",\"162.243.247.163\",\"162.243.71.56\",\"162.248.97.72\",\"162.253.64.104\",\"162.253.64.87\",\"176.56.230.110\",\"178.62.101.57\",\"178.62.104.137\",\"178.62.106.84\",\"178.62.109.7\",\"178.62.40.233\",\"178.62.41.44\",\"178.62.41.49\",\"178.62.41.52\",\"178.62.65.162\",\"178.62.71.227\",\"178.62.78.199\",\"178.62.80.93\",\"178.62.86.69\",\"178.73.210.99\",\"181.41.201.117\",\"181.41.214.137\",\"185.112.157.185\",\"185.12.45.70\",\"185.47.129.168\",\"185.60.135.86\",\"188.166.158.224\",\"188.166.253.148\",\"188.226.139.158\",\"188.226.158.160\",\"188.226.169.228\",\"188.226.171.58\",\"188.226.184.152\",\"188.226.185.106\",\"188.226.186.199\",\"188.226.203.84\",\"188.226.247.184\",\"188.68.238.79\",\"192.241.221.11\",\"193.124.178.54\",\"193.124.178.61\",\"193.182.144.105\",\"193.182.144.147\",\"199.167.128.80\",\"209.222.30.242\",\"213.183.56.107\",\"217.148.43.188\",\"217.148.43.202\",\"31.220.7.237\",\"37.157.246.146\",\"37.235.48.42\",\"37.235.52.25\",\"37.235.53.240\",\"37.235.55.205\",\"37.97.188.103\",\"45.32.128.80\",\"45.32.145.79\",\"45.32.151.21\",\"45.32.160.172\",\"45.32.166.195\",\"45.32.171.24\",\"45.32.192.198\",\"45.32.195.186\",\"45.32.195.93\",\"45.32.212.56\",\"45.32.36.158\",\"45.32.7.22\",\"45.63.121.159\",\"45.63.26.78\",\"45.63.51.63\",\"45.63.61.213\",\"45.63.76.68\",\"45.63.78.84\",\"45.63.86.120\",\"45.63.88.213\",\"45.76.1.44\",\"45.76.192.50\",\"45.76.3.112\",\"46.101.0.24\",\"46.101.110.32\",\"46.101.110.43\",\"46.101.110.45\",\"46.101.20.96\",\"46.101.238.182\",\"46.101.238.189\",\"46.101.240.208\",\"46.101.27.186\",\"46.101.61.83\",\"46.101.74.251\",\"5.45.179.103\",\"50.2.139.16\",\"82.221.95.161\",\"91.236.116.163\"]},\"managewp\":{\"n\":\"ManageWP\",\"d\":false,\"r\":[\"34.211.180.66\",\"54.70.65.107\",\"34.210.224.7\",\"52.41.5.108\",\"52.35.72.129\",\"54.191.137.17\",\"35.162.254.253\",\"52.11.12.231\",\"52.11.29.70\",\"52.11.54.161\",\"52.24.142.159\",\"52.25.191.255\",\"52.27.181.126\",\"52.34.126.117\",\"52.34.254.47\",\"52.35.82.99\",\"52.36.28.80\",\"52.38.106.97\",\"52.39.177.152\",\"52.41.230.148\",\"52.41.237.12\",\"52.42.126.166\",\"52.43.13.71\",\"52.43.76.224\",\"52.88.96.110\",\"52.89.155.51\",\"54.148.73.118\",\"54.186.37.105\",\"54.187.92.57\",\"54.191.32.65\",\"54.191.67.23\",\"54.191.80.119\",\"54.191.135.209\",\"54.191.136.176\",\"54.191.148.85\",\"54.191.149.8\",\"52.26.122.21\",\"52.24.187.29\",\"52.89.85.107\",\"54.186.128.167\",\"54.191.40.136\",\"52.24.62.11\",\"52.88.119.122\",\"54.191.148.225\",\"54.191.151.18\",\"52.89.94.121\",\"52.25.116.116\",\"52.88.215.225\",\"54.186.143.184\",\"52.88.197.180\",\"52.27.171.126\"]},\"seznam\":{\"n\":\"Seznam Search Engine\",\"d\":true,\"r\":[\"77.75.74.0\\/24\",\"77.75.76.0\\/24\",\"77.75.77.0\\/24\",\"77.75.78.0\\/24\",\"77.75.79.0\\/24\",\"2a02:598:a::78:0\\/112\",\"2a02:598:a::79:0\\/112\",\"2a02:598:2::0\\/96\"]}}','yes'),('wordfenceI18n',_binary '1','yes'),('wordpressPluginVersions',_binary 'a:12:{s:7:\"akismet\";s:5:\"4.2.3\";s:14:\"contact-form-7\";s:5:\"5.5.6\";s:5:\"hello\";s:5:\"1.7.2\";s:24:\"nextend-facebook-connect\";s:5:\"3.1.4\";s:32:\"products-compare-for-woocommerce\";s:7:\"3.5.7.4\";s:23:\"ti-woocommerce-wishlist\";s:6:\"1.44.1\";s:11:\"woocommerce\";s:5:\"6.5.1\";s:24:\"woocommerce-multilingual\";s:6:\"4.12.6\";s:29:\"woocommerce-currency-switcher\";s:7:\"1.3.7.5\";s:9:\"wordfence\";s:5:\"7.5.9\";s:24:\"yith-woocommerce-compare\";s:6:\"2.13.0\";s:25:\"yith-woocommerce-wishlist\";s:5:\"3.8.0\";}','yes'),('wordpressThemeVersions',_binary 'a:6:{s:8:\"flatsome\";s:6:\"3.14.3\";s:7:\"padmini\";s:3:\"3.0\";s:14:\"twentynineteen\";s:3:\"2.2\";s:12:\"twentytwenty\";s:3:\"1.9\";s:15:\"twentytwentyone\";s:3:\"1.5\";s:15:\"twentytwentytwo\";s:3:\"1.1\";}','yes'),('wordpressVersion',_binary '5.9.3','yes'),('wp_home_url',_binary 'https://demoweblinks.in/padmini','yes'),('wp_site_url',_binary 'https://demoweblinks.in/padmini','yes');
/*!40000 ALTER TABLE `wp_wfconfig` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfcrawlers`
--

DROP TABLE IF EXISTS `wp_wfcrawlers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfcrawlers` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `patternSig` binary(16) NOT NULL,
  `status` char(8) NOT NULL,
  `lastUpdate` int(10) unsigned NOT NULL,
  `PTR` varchar(255) DEFAULT '',
  PRIMARY KEY (`IP`,`patternSig`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfcrawlers`
--

LOCK TABLES `wp_wfcrawlers` WRITE;
/*!40000 ALTER TABLE `wp_wfcrawlers` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfcrawlers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wffilechanges`
--

DROP TABLE IF EXISTS `wp_wffilechanges`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wffilechanges` (
  `filenameHash` char(64) NOT NULL,
  `file` varchar(1000) NOT NULL,
  `md5` char(32) NOT NULL,
  PRIMARY KEY (`filenameHash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wffilechanges`
--

LOCK TABLES `wp_wffilechanges` WRITE;
/*!40000 ALTER TABLE `wp_wffilechanges` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wffilechanges` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wffilemods`
--

DROP TABLE IF EXISTS `wp_wffilemods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wffilemods` (
  `filenameMD5` binary(16) NOT NULL,
  `filename` varchar(1000) NOT NULL,
  `knownFile` tinyint(3) unsigned NOT NULL,
  `oldMD5` binary(16) NOT NULL,
  `newMD5` binary(16) NOT NULL,
  `SHAC` binary(32) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `stoppedOnSignature` varchar(255) NOT NULL DEFAULT '',
  `stoppedOnPosition` int(10) unsigned NOT NULL DEFAULT '0',
  `isSafeFile` varchar(1) NOT NULL DEFAULT '?',
  PRIMARY KEY (`filenameMD5`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wffilemods`
--

LOCK TABLES `wp_wffilemods` WRITE;
/*!40000 ALTER TABLE `wp_wffilemods` DISABLE KEYS */;
INSERT INTO `wp_wffilemods` VALUES (_binary '\0\ß@uœ¥œ2¶\îX\ç¶','wp-content/plugins/contact-form-7/modules/date.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@¶A¥ü¤7UD\ÞMilS\î£',_binary 'Y\Ò+¦\ì÷ƒ.m ¼Yw{Ç”a\Ä7önÇ‡\ä)\äõ}L','',0,'?'),(_binary '\0\Z\È\'´¯(¬—	õX!','wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-init.php',0,_binary '¤v&EG\Úü.-[8',_binary '¤v&EG\Úü.-[8',_binary '…ñiñ·\Ñ\ÉcJ/}/»pfwX·\ÖhðO!6ñ¯','',0,'?'),(_binary '\0\æ\Ã~\É\Ã1\\·ˆ¶I\Õý','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/test/with-product-variations.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ø0Ù¨Ú¶a¼‚\Z\ÜÑ—»w',_binary '…òsˆ=¶*ó­@û«Š~¥¹ÀZ!DK/P…øz','',0,'?'),(_binary '\0?H\ê\0\ÊE}ý¿¦³\ç\"\â','wp-includes/sodium_compat/lib/namespaced.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '01\Õ\Î\èø”vnGœ¬\r ',_binary ']/r~úÊºO‚›‡C\îc§xB…€j/\ëoµ˜U\ÙI*\Ù','',0,'?'),(_binary '\0)4\nTYü¡d4G~¶','wp-includes/images/w-logo-blue-white-bg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0öIÌkò|ûÑ¼\Ü\Ó\Ç',_binary 'OœÉ— oµ“ñ\ÒC«ŽA\Ò/xŠ‡ \Í<\ê•\Ü%4=?','',0,'?'),(_binary '\00öñ#Š9ýœ¬Z4\Îj$','wp-admin/network/user-edit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\Éd4VÚ‹S~tÉ±¬Åº',_binary '˜o\ëá•‘°\"t\Îy¼S‚¶°¦M8!9/·?Y­X\Ë','',0,'?'),(_binary '\03/lû°$M a¹\ãj‰õ','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/jcb.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\r%1¬$y…¹‚\\«¾­',_binary '/GO>*œ)±:M¼«‹Gòi’b	›\Ü\ÈL\Ì&','',0,'?'),(_binary '\05=	7`AH\0-½²| <','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/grouped/group-list/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³\â…\Ùòá¶¬V\'SùB',_binary '«ýjt²ª,Ÿürþ\å`\Â\Zo	m’œ‘T ^1‡','',0,'?'),(_binary '\05gÀ\Ë\Ïê«”c‹0‰\"D','wp-includes/css/media-views-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DU¨|úV³=<ã±²¹\ê8',_binary 'u\Äû˜yÚ¡TšE\Ì\ÎÐ¥w\ÝÔ–y‡\Ç9Ea\Å9{\ÞË ','',0,'?'),(_binary '\08§<lc\ÏËŠ\ègg)9','wp-content/themes/twentytwentyone/assets/images/roses-tremieres-hollyhocks-1884.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\È ^¥\ÙL¾U\ê\nŒ\Ëi\Û',_binary '%LIfÍ•\Ð}½™Yñÿ©µ9¬€‚&yHƒŽ2nh','',0,'?'),(_binary '\0@8¼6\ë@\0ó\'T¿ž','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/order-summary-taxes-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Eµ44¬˜¢¶–L7­.´\Ä',_binary '\îœ,A\ë\âñ\Ú÷úx©P\Ð<¶F\Åi6y|\"\ã¾˜Œs','',0,'?'),(_binary '\0C_\n\ì\ÂjD¨\é@k','wp-admin/network/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª((¿+tÁ\çIŠ\äú“z®',_binary '’\ä\çô\Ð\ÏÝ¤Ž,De·	tw|ýî®ŠªtkJ©ƒ”','',0,'?'),(_binary '\0D‚oÚ˜\ã›\"ø\á7f®','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LÄœ\Â\ÒL¦Èr4òr',_binary 'Á“’\ÎŠ\rº\É&sð÷3û\å÷HŸ)CN\Ñ)’1\nJ¶','',0,'?'),(_binary '\0G¸¥\àM(\ç\ÒYlWz\ã!','wp-includes/sodium_compat/src/Core/X25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pZú˜£\Ë\Ä:!„Ù¼\Ñ',_binary '3\í³l¦@\Ù\ä™ú—o£-\É3ö–ýS¦\Ì\àÕ&\Ê!\Ð','',0,'?'),(_binary '\0Ids)6Œ.m¶¡Žs\ÕZ','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-palette.php',0,_binary '–©ª´;•L\æ’\Ç\Zý2',_binary '–©ª´;•L\æ’\Ç\Zý2',_binary '`^\Ú. ¿?³¡\ÃöŠ@U-\ê;8±½\Ö\Æ&5¿õ','',0,'?'),(_binary '\0R\ë)\é„{#~ ]<=t:','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ó…uÌŽ¢¯#!?5—',_binary '£˜\à©ÿpiž\Ë=’\Þ\Þz+#±8\Â„=\×\íný~±½§}‚','',0,'?'),(_binary '\0\\s\èÁTÃ«½Ö˜8\á\Ã','wp-includes/blocks/post-excerpt/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\éœÓ£\ê»ùñú¥\î6›ñ',_binary 'L(òÆ„õ}\È\03’\Òt9v~<\â{Šü~»\Æ\Ñy1','',0,'?'),(_binary '\0`Y±Ï­rG¦¦”„','wp-includes/SimplePie/Restriction.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\"\Ó\é~\'\Ì\ÕòúŠ$|2*¾',_binary '\ã>«3\Ö	vj¯¦\r|\")\"÷5SR¹\0\è{k\ßý\Ë\ä\ã{6','',0,'?'),(_binary '\0mA}=­\ØI#\íª\×o¹','wp-content/themes/twentytwentyone/assets/images/villa-with-orange-trees-nice.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\ÉB\ß9¬ž›¹Ç¬®',_binary 'Î“\ä&[Ž\âfþˆ&Š\'’8\ë\äˆ\ÒI,Aû¨','',0,'?'),(_binary '\0n¢m&y…@Z&š±F\ï','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-best-sellers/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Û\âS\ÂtßˆV(\0k}•',_binary ':O4+ó\Z~ORÁR\Í\í^¦cÍµ0!¨b\ßu\Ê','',0,'?'),(_binary '\0q>‘f†\ZTŸö³ú­þ','wp-content/plugins/woocommerce/assets/client/admin/components/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´€‹]ö#Rk$\ê÷\Ð#b',_binary '|\Ê\ÔýzSŸ\é\á•X\0›?\Þ~‹½¤j\ÚPe\Ëj˜®)%\Ì','',0,'?'),(_binary '\0z™<\Îq\ê¦M*šV’¶','wp-content/themes/flatsome/assets/img/payment-icons/icon-quick.svg.php',0,_binary '>°\\¼%\Ï\É\ìH\Ï¿',_binary '>°\\¼%\Ï\É\ìH\Ï¿',_binary 'ÿ\ì\íýŒ[³ù~Ÿ\à;\Øi\ßM\åJš\ê,Ï½','',0,'?'),(_binary '\0zúFªb¼¹ž ?$·ó§S','wp-content/plugins/yith-woocommerce-compare/plugin-fw/languages/yith-plugin-fw-es_ES.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é8\Zƒ„\ï\Òø4R\Í+~9¶',_binary 'G\ä~y„\ÙWÚ‹aù\×†¤G—{r\Ç%S\ïö©[¨\í','',0,'?'),(_binary '\0„U¯žd½ð(^\Î\Ø','wp-content/plugins/woocommerce/packages/action-scheduler/classes/migration/Runner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'üC»|UnŽm\Ög–w¡\Ç\"',_binary '¸‡ø\è†Djl9ó%K­B\ÚÉ‘$\'­HÁ6˜\ÉgM','',0,'?'),(_binary '\0Œþ\æ;fóúQ\î=*Ç•\Ã','wp-includes/js/wp-emoji.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*®—š‹\Î×¶H;†q.½',_binary 'º¦‹\ë©\æO´\î)`5gòD?5F’!–\È\È\Îõ','',0,'?'),(_binary '\0ž9ó¿k5&\åÙ™ 7N','wp-includes/sodium_compat/src/Core32/Curve25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\ÂkÝ¢A™\ÛýD¬5zúyj',_binary 'BQ©e!‹R±il˜\Ðs\Ìnq¡\ÒR41x\ë¤x\ê…Q!','',0,'?'),(_binary '\0 ²\è™\Z?®Bn\ß\0\ÔKa','wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/marketing-coupons.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þR4pža\à\ÍÀ]@V\Þ\\',_binary '\Õ\â\åiS&8FgßŒ©—X\'J-\í6hf8km','',0,'?'),(_binary '\0£\â\è•l\ê™Qg®l\æ\á³','wp-content/plugins/woocommerce-multilingual/classes/Rest/Exceptions/InvalidLanguage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v¹G¡\Ú\ï]žM\é~»\rÉ·',_binary '’\Ú}ß¸j]\ÚY„fœl©¬\çH\ïE\îgk\ìZ','',0,'?'),(_binary '\0¦dk´\ØKW!\ß\ë“d\ïTš','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-shipping/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ¡f\n¼o²I­’ÿpOš5',_binary '“öAv<.\'vú\Ù\Úý¡ig\è`ÿ¨ö\é\Ì\Ó\n±','',0,'?'),(_binary '\0«^ˆˆ[£f\0·\ëùš\Âhú','wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-custom-files-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\êTv\ç#¼\ËÏ»\\s\éœ',_binary 'À\ßøtEY\áx‘ /\Çð	–hg j“ùj\Ün.öGI\ï','',0,'?'),(_binary '\0¯\ÎM5–.\ÆMphø\ë\å\á','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/rest/Push.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'úòj¿\à—E\Å«ø\ÌE+$',_binary '‚yò9ßŽ•E!\à¯Cº\r=”Fe\Îyõ#=„<ôAC!','',0,'?'),(_binary '\0\Ç|9\è\×u…e\äñ\á–@ƒµ','wp-admin/includes/image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' >Œ=‰E8\âÓœ­N\ß\Ù',_binary 'Žôh4¿R\Å\íil©Ò¹.\Z¹^“\Ö\Â<ò\'„\åž8¾','',0,'?'),(_binary '\0\Êú9_ýEš\×$/9’Z','wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-fr_FR.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W½™£}$v7[ñ\Õß±°',_binary '`–·1\î{wf96\Ë}jÆŠx\Ã,Ke*\Ç\êØ¨','',0,'?'),(_binary '\0\ÐDø`ø8R¦\ÇÉ²%†','wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—\Ò}\é\à`i½\æ\Âyô–\È',_binary '\Ü\Ä\ÜTÜ¯¶øœ\ë19^Õ»½P\'„L d%òk|\×PØž','',0,'?'),(_binary '\0\Ñ)šÙ½V‹\ßz½ón','wp-content/themes/flatsome/template-parts/posts/featured-posts.php',0,_binary 'z/¾ó{\çr\åþ‚|ø\ÃHW',_binary 'z/¾ó{\çr\åþ‚|ø\ÃHW',_binary '@ªšqµ\"”\éU\Î\ã>Û¥&F\Ö\í{œ5—aTˆ¢','',0,'?'),(_binary '\0\ÑKô°÷%¿5,\ä¼$Ë£','wp-includes/blocks/video/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o^TûŽ´\Í\ê\Ñ+RZ—1',_binary 'Þ•Gû\é\ëN¾\å —ŒZ\Ú\ÎW\Å}\Ö\Û^5}~§U6°v','',0,'?'),(_binary '\0\à“\Ï\ÝÀ\Öñ2];\Ö<ž','wp-content/plugins/woocommerce/assets/css/helper.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X7»XJ0\\\\÷¬P>k',_binary '®+Å’_1~mzÎ‡÷pV	\Õ‘–V@Pw…5\ïPG‰','',0,'?'),(_binary '\0\áÆ²\Í\\\æŽeC\'\Æ;‚i','wp-content/plugins/yith-woocommerce-compare/assets/images/03.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿ]\ßòXs¯™*‡d¤‰',_binary '\Ï%\Âts°u\ì³ú¡¨Ä¿4jþ	>ˆAcW\ÇP`9','',0,'?'),(_binary '\0\älDdƒ\Óýu^\â\áY¬\â¤','wp-admin/user/privacy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þd‚Iº\áòU{x1·A',_binary 'Fª\åu†X\0¾og«:~”\Èh\Æ\é_”„5\Ò\Ëp\ít\Ò$','',0,'?'),(_binary '\0\ç#j\Z¿EI©\ëˆE$','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-promo.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸\å3¤N¾3¬C\ÐùI›Qw',_binary '	\ãf6·U\Ú\É\ê\ç\ç*.ˆ\çR#Ÿ\Zª\Ë\Ò\Z³\ë\ân\Ð/¸','',0,'?'),(_binary '\0\ç\Îü\ï\Ä6¿uY‘\æ\Û','wp-content/themes/twentytwentyone/assets/sass/05-blocks/button/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+ú‘\Îò¯D¢\Åyc\Öõ',_binary 'f³?ƒ®©(‘\ËmŒ\å\Ù£÷Zn´Ò³\Ë„\àh;ÞŠ','',0,'?'),(_binary '\0\ë„\ç\Ö\É\Ó\Ñ\Þ`b›Óª¨X','wp-content/plugins/woocommerce/templates/global/form-login.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷\Îa›\Ê\ä\Èlð\r“*\î',_binary '%\å\ëy•½V2\\Õ—D\äNe`Mÿ>­ÁŽ6\Äw\Òÿ','',0,'?'),(_binary '\0\ív¹ˆ®‹Ø¦£\Þñ÷Ýž','wp-includes/blocks/post-template/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÇÄŠq4b$C\"> Žt',_binary 'ogS•¬}\ç2Kò	rGHú2ÍŠ\ï\Â\Õ ’3ûC\à','',0,'?'),(_binary '\0\í\Ó\Ï0\É\É\Þô`¤¶»','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-terms-block/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h$¨VPH\ÖE±b\Ó\×J',_binary '¤\'\çq\n …ýr\Ü) ûµ¨ð0N9©Zt\'^¦}\â','',0,'?'),(_binary '\0\í\î¡)»\Ä\Ñ\ÃO	²\Ñ7G','wp-content/plugins/woocommerce/src/Admin/API/ProductsLowInStock.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$!‡š–ct˜¬wl',_binary 'ºÁ²§ö\è\"´\ëög*(œZ“\ä¦d@.É©S\\·ô›','',0,'?'),(_binary '\0ô6ß—\Û\Ø\Ö\n\Ð|Ì¾£œ','wp-content/plugins/woocommerce/includes/class-wc-customer-download-log.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':±d½Qƒ.\Êú›.\ïœò¿O',_binary 'd‘a\î)\Û\ê¬\×2l·Y|!(1u*ŽnV	\Â|\Ëó‚‡÷4','',0,'?'),(_binary '\0ûö$ X\íóG-¸tUÆ¹','wp-includes/blocks/navigation-link/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.G¥\Ï\ê;:1RØ¬=}\Ú/',_binary 'œý\Ê]ú«×—\rvd\èÁ=·R>ªo:^\r$œ‡‹§N','',0,'?'),(_binary '\0ü $\É\éð¦Ó™\0Ö«','wp-includes/block-patterns.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ë\ÌmJ8ü¤‡öñ„Tˆ4\Ä',_binary 'T½ZX@	†n\è|¤|{”etA\Ó?(,\Í•´\Z‹\ãg’','',0,'?'),(_binary 'x,PõfžF\ÛCµ$','wp-content/plugins/woocommerce/includes/admin/helper/views/html-main.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›,pÁ\çK…\é\ì©4=tY',_binary '\ÇR\é\\û™?\Í\ÉY6‰ô,4£¢\ÏxK©¿|\Âx­m','',0,'?'),(_binary '\rx+¦U\á÷\áÚœ\Ý“¼','wp-includes/css/dist/list-reusable-blocks/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õ—z=T?økŠö¯sI¨',_binary ',\è¹]w—‡o\0]½ù\'‰\Í\æz1R)\Z`†›]°0§\Í','',0,'?'),(_binary '/>“\çü\ß»(\È\æ3Œ','wp-includes/blocks/verse/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y†\Ëû¦\ÜVqY˜\n‚',_binary 'MbO<W\'8!»‡ˆ\éAø€Sô\r\áG_n0‹ùùs\ì','',0,'?'),(_binary '<‡%:\Ú\ÝGJ™ý±Ÿ\×=','wp-content/plugins/woocommerce/vendor/symfony/css-selector/XPath/Extension/ExtensionInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷}’÷`8Ü¯”.ò&\Ü\î3',_binary 'X?\nh-\×Ó•Jl²\íŽ\ÊÜ¨Flw\Ò[\ÖÁR','',0,'?'),(_binary 'E“þ9!b\Ë=VÓ‡¥Œ]','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/chip/stories/chip.stories.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Î—\rqñ0¾¹CpK\Ñ\ëõ',_binary '©\'¶\á«0•¹!ýŸ>\ÞSc«¸°ñô)sCó\ì·\Ìr\æ','',0,'?'),(_binary 'NQž\"*hzªr\Ãw|\Zø','wp-admin/images/media-button-other.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥Q&T^‚]BB™g\'ù\Ã',_binary 'ý¡B\Z\êr¶FÿÐ’\Ã‰Pv-^fT¿,\ÊÁ_\Â\Éi','',0,'?'),(_binary 'XýÉ˜y_ñ7¥XN/','wp-content/plugins/wordfence/views/scanner/issue-diskSpace.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç\\h\Ï\è¤”\'\nä·º',_binary ' ”7\ß\ÜRG\ë$/Á‡\Í\æ-i®\ÝNm(\ÎW\Ø;Ì…','',0,'?'),(_binary 'YGª!‡%¡{÷7–úE~','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products/attributes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(ZóZû%“‘—?´\Ù',_binary 'm%T÷/ŽôG­öÚ³½\Í!¼³™X}]X\Ï\Ï(Æ´','',0,'?'),(_binary ']³\Öj‰\ÇR¤þ‰X','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/AddressNotFoundException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷´//R·„‚\á\Ìj\ã\é\É.',_binary 'ö¥3\'X\r\Ëo‘`/\×\ÓD\Øù ½\é/òº3\Z','',0,'?'),(_binary 'c¾|ª¡‚˜÷º\Ñô¨','wp-content/themes/flatsome/template-parts/portfolio/single-portfolio-top.php',0,_binary '!»·\ì\ß\Ã1Ž€W\Â3˜8\Æu',_binary '!»·\ì\ß\Ã1Ž€W\Â3˜8\Æu',_binary '´€šÈ®ù!\':‚ó£9¨¤AL=\ælRs\'˜}…${ù','',0,'?'),(_binary '‰”›ü:\Ð\áQžc\ßQ˜','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-zh_TW.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w|ú¥j\êq•¨\à”¤Z',_binary 'F9\Ö|³ƒ\ä$ý\îžw_]C©:ˆ\ÝSµª\Ô4¦\Üt','',0,'?'),(_binary 'ˆ´8G\á}R¡DZœ','wp-content/plugins/nextend-facebook-connect/providers/google/google.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\ËO#z\"vk!pLug?—',_binary '\nøF¼µ´(dÖ€½²¯\Â__b2Rž[v¥þG¿\É.','',0,'?'),(_binary '‘—\ß\Í.ð‚_!tª\\','wp-content/plugins/woocommerce/assets/images/onboarding/pinterest.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ûs4)/«^úõ,\ÓpQ\Ñó',_binary 'mõˆ%¾\â#ž°ß‹\èAz\Ðo†»N\Ðå§°\Ú0ø','',0,'?'),(_binary '“h€d\ê\ïR1cµk\nxNb','wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/class-php-autoloader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9{ºlý{Žm¼\Ä|a^wóý',_binary 'i•†¹‚\Ï\Ã\å\Ú\Ü\nSý\0À0\è·\"¸’±;;yS‹','',0,'?'),(_binary '—\ëŒ,]\×H–4ˆ£1','wp-content/themes/twentytwentytwo/inc/patterns/footer-blog.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÐT\î\×\ÈJ\æÔƒ\"ÑŸk´',_binary '\îh­\'\Ë \Îv\áüfGE‘\"*˜\ç\ß,\é\Õ\Ü\ß	 |\æ','',0,'?'),(_binary '™T\êh\Ë\Ô\ìzPŸùr\é','wp-admin/widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\Ê\Ô,m¾•¹®;‚\È\n',_binary 'UD¸#?Å·wÙ»$#Ø•ûC\à*X€º7´N°V²','',0,'?'),(_binary '™Ï‹Ð”\'OtûÊ—M;','wp-includes/js/dist/deprecated.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•Ë‡÷%[i\ï\ç·»\Ó',_binary '”Ö\ÎögDvöq,tº¨~\ÙQ7\Ø\Âwx¬ä’ ','',0,'?'),(_binary 'šˆÓ­\ÈK¶D9!KÅ·','wp-content/themes/flatsome/woocommerce/single-product/tabs/sections.php',0,_binary 'vl¦\ïV,\äoOŒ³\í5’',_binary 'vl¦\ïV,\äoOŒ³\í5’',_binary '\ì\Å{‚ˆ¥ò,; RÔ“‚<Ks¼M\Ã\"ŽT\Ü\\è‘ˆ\ÅÁ','',0,'?'),(_binary '¦ë‰Û¨ƒ¥\Ê*\ê$e','wp-content/plugins/ti-woocommerce-wishlist/wpml-config.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ë\r\êõ‡E“\ÅRN_‚1ù',_binary '¶-Šÿ\ÝTQnhtÒ¥\å\ÄXU\ÈCø\æ‹\É¤\Ägÿ‰\Ê','',0,'?'),(_binary '³X\\º«\ï	¿pk™Ä’‡','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-list/product-sort-select/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\Ó\î\Ä\Ù\ØÐ€ª\ØÏ›8±e',_binary '·Ÿ¯ný[¯\Û‰å¡ª\Ó5JùÀ}×ŒG]sµbt“','',0,'?'),(_binary 'µi2fÓ™†\Ò5581s','wp-content/plugins/woocommerce/assets/css/reports-print-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xhXQu\åA6µ)\ÙúÞ¿',_binary 'ý\\I‘\n4P7f\0µ3\ë¦3ö,óŸ\ã¢\Í\ÏTœ\ÝWSü','',0,'?'),(_binary '\ÉX|_\Õ\Èwc\Ó:©j‚\ÑÀ','wp-includes/blocks/search/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oõlŒ\È\î=-n)X\Ó',_binary 'N®©<\Þó¥8Ä‘I)TžðóJ©¥\\\ß\àp»RÐ§','',0,'?'),(_binary '\Ì#ÿd§§\æ‰„_S','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/blocks/icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z?\í\ÓÏ›Ô¬ö³€*\ÃH',_binary 'Ü®»e\Æ5\\ž¾9j¿\ä,²|“\Z4\í,²Pƒm	«\ZÀñ','',0,'?'),(_binary '\ÓXN“K¤¸•}\ËA¸F\ä?','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/hu.js',0,_binary '\ëq¸\Ütt¯™\Z\Ñ<\0„´',_binary '\ëq¸\Ütt¯™\Z\Ñ<\0„´',_binary ',·@¹\"wS³]lž:Ñ¤\ã$´¨¾ö;¦>§ªð','',0,'?'),(_binary '\ÝP*v\à*Sû¯¦z','wp-content/plugins/woocommerce-multilingual/inc/template-classes/status/class-wcml-status-products-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\âIºõ`}†\Ê\ÅÚ¨Á\í ',_binary 'tØ­›\Ç\èlT\á¤V(\Ïh;Zœû½Ïˆ\ÏÍ­\Æv\á\Þ','',0,'?'),(_binary '\Þ\ì1SAl.´\Ûe=±‹','wp-content/plugins/woocommerce/includes/tracks/events/class-wc-theme-tracking.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ö€»\Õ\ïXhÛ©fD(—Špx',_binary 'ñ„²ôM9Š5¯^G|%©\n}[š,±‰K	j©?EKè’¿','',0,'?'),(_binary '\ä\èE?tB9b—vF`1','wp-content/plugins/wordfence/modules/login-security/img/loading_background.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬ô\'\é2û”p\nK‹X´\ì',_binary '\ÍÎŽ%X\ïÅ–F¼ÿ\ç\Üò1s\Ï;À\ÎL\ëzrç’»','',0,'?'),(_binary '\éW‡8ûUdO\Ù…›\ÖK½','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/autoload_classmap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4Ì•òt,ÁIr\Â\ïiF\Ý',_binary '÷\ã%‘\rKxcŸ‘‹._o\É\ï3t–¨&\×Õ…\å@\Ø|ûi','',0,'?'),(_binary '\í­\Èvq~}u‚õ:x¼ú','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-code.php',0,_binary '¸ñ\é²\ç\Ãjm¥!\Õfýœ',_binary '¸ñ\é²\ç\Ãjm¥!\Õfýœ',_binary 'xói\êš-ƒ\Ê\æ	ã…Ÿ…Ð–eK\ÑCé‰¼4y1d\Ø\'õ','',0,'?'),(_binary 'úó5J[A)=\Ú\í©\á\ã\æ\r','wp-content/plugins/wordfence/js/wfi18n.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i&XDE\î\Ìò®p/N\ï',_binary 'GU	š‹*Ž\èköP,¡:\Ó?+}xHb·5ÿ\ä°\á¬#','',0,'?'),(_binary 'ÿ\Ù\áw\Å=\Ô\Z;|õ\ÉW„ÿ','wp-content/plugins/woocommerce-currency-switcher/js/jquery.scrollbar.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'žÁ¤ˆt “\Ä',_binary ' ŒˆñBò¢\ïˆÂ°™C\ÃA\í\ï5Þ„\åT“\Û³Ke@','',0,'?'),(_binary '\0T–¿õˆ\Èöoqe\Ò9U','wp-content/plugins/woocommerce/assets/client/admin/chunks/analytics-report-customers.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õa\Ý\Ã\Ì!»©´Šô\Ì',_binary '¶Ÿƒ r’¿Kó5‰®>Xc$<\ÖÐˆ‘x³\Ó|iö+_>','',0,'?'),(_binary '™qý¬˜û˜7“\èÜ‘','wp-content/plugins/woocommerce-multilingual/res/js/exchange-rates.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\í\Ê\Ç^\0—q‹‰¶\è?Gq\Î',_binary 'oAT\è]Š•\äÓª\îP;\Zx›Du\Æ;Ñ·?„±Õ°ô˜»','',0,'?'),(_binary 'ŽF¬|Îµš¿\" »…','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-block/slotfills.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8<\ØXŽ0Ð„h\n\à\Üpz',_binary 'Y¸\ß*}°ûÀ^1¼ \0ýbÁ»v\å\ì%­šþIm6','',0,'?'),(_binary '	(\Ì9^¼\é#W“\Èo¯\É','wp-content/plugins/woocommerce-currency-switcher/css/images/ui-icons_222222_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘)\à†\ÜH‹\ÊøQ\ÆFº',_binary '?C\Ð\â¢mB\Òy]ð,G\Íc·\Õ$lSá¸¬R0\Øþñ','',0,'?'),(_binary '\ç\á\ÍyU\ç\Ü±˜„\Å','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/TastyIgniterInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„‹ý5 \ä#6¸¯\ïlž',_binary 'w‡\r	‘Z\Ä\ÄÏŽ‘]?YxaPÀRn/A\ÙðQ\ÌM\Ì@¾','',0,'?'),(_binary '\r/O\Ãfœÿ8²vaO\Ñ','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/codemirror/codemirror.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<ü\n`Ë£\Ã\È\0ƒFø¡¾°<',_binary '­\ÑÂ…7 *Kfì–‚\æñ¤ªõ(\Ò`@ðg¢az¬\ç','',0,'?'),(_binary '>A\ÞX\ê\Éa¶s(~','wp-content/plugins/contact-form-7/admin/js/scripts.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€\ÉQ\ìm`ÀœN™\\Z',_binary '­?\É\ÌÜ…©AC—U…\Ü\Ñô\ÇÁŒˆ|RÊ»TØª|\n5Œ','',0,'?'),(_binary 't]•ÙŸu\Ã\Õu\Ûü\åjû','wp-admin/images/menu-vs.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q™€òLð,_¥;1/\ïE¬',_binary 'G²iH|ü\×)¶E;³½\"_\ã;Ô£4Ô»w”lyÁ','',0,'?'),(_binary 'Ë³JôC\åK\âú\Ò=\Å\ì','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/text.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iAiEh×\ã(ô#\Ô\ç¦',_binary 'ËŽxQ\çZÓ”­D©þ\ÚvJ/Ñšö\ådŒþ(\Ô>á„»','',0,'?'),(_binary '¨‘~¸w`²5;Fã®®','wp-includes/js/jquery/ui/effect-size.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^:\Ö–j#/\Ðr‘ðJû',_binary 'Uˆ\Ç}\Î7À\ËY^yòv4ù\ï§ZKù±\Ò&ÜFqy','',0,'?'),(_binary 'ô=üðq¯\rljA+','wp-admin/user/user-edit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<D\0\Õ\n#ª\Ã\ÙE—ð³ö',_binary 'Xðx no÷{\0Á¯\\²Áäž¿\Øòe[\íý\ãjZN','',0,'?'),(_binary ')!á £h!pC|ƒ@','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hooks/use-container-queries.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ár2j5\å ›^ô²S¥š¯',_binary 'Lv¤üi[Ë°…ò*G|X7q\Ý\Z[€¨\rbÀ\Ï\â%\nH','',0,'?'),(_binary '&\ÚS\Çy\r¨;ðg¦õ¯','wp-content/themes/flatsome/inc/admin/customizer/img/search-icon-fill.svg',0,_binary 'Š¦^û\ÎR³d]i',_binary 'Š¦^û\ÎR³d]i',_binary '}#‰s\\1õ$„ôžö\âþƒœuR6q¯yƒ®\\f','',0,'?'),(_binary '*&5,qV×·0vµc','wp-includes/blocks/post-template/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ\âò¢’¾yŒNSFu`\Ô',_binary '~í¿º-v6%i2\Î\Ä\Éú@–ú€}¿Àf\0ªk°=','',0,'?'),(_binary '-°E\åd\"TŒbfµœx9','wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-tax-data-store.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'È¨Hö‹Ÿ=2µ\Z\æ\ß',_binary '×›k+”J\\h\Ú\ï\×Á9CŒN÷mµz\ê\Z|Ä¨ú','',0,'?'),(_binary '5×„F¸\ÛAd¾`wnŸ9','wp-content/plugins/woocommerce-multilingual/classes/Reports/Orders/Factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷p$±>ª\á.»»FÛŸk+K',_binary '‹mGnÒÿQ\Çt”È…:\Ü\æ-6ª¶ô§_8ûó','',0,'?'),(_binary '7JÊŽ>€s*?Á¤\â=»N','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/onoff.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©\r¨ú+-*Š´{µdj\Ì',_binary '„·…¾\ä‚\Î\Ë_:ÊŠ\'›\ÎÀ¼Mz\Ð\ã¦dÚ½-','',0,'?'),(_binary '<)8T*.SuS\ÒÄºŸ','wp-includes/SimplePie/Cache/MySQL.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬) ÷\Ûfz\ì\ÉC\Ã0¤',_binary '	\å\ÍW¿\ÇA¶ôû2LhÀ` ®\âi²%iv\ä–2þ\Ã\ëÞ´','',0,'?'),(_binary '?iH\ç,ü\îJ·\Z­Ž!','wp-content/plugins/woocommerce/assets/css/jquery-ui/images/ui-icons_2e83ff_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ä<QJñ\É,yÓ£ð»R\Ô',_binary 'B¢j¤0=\Åb\éW]F\è|þ\åh	Ÿ\ïø\ä\Ò5Rn³ö‡','',0,'?'),(_binary 'FÉ”R<”\ê\í\\ªŸýCE','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductOnSale.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\ä÷‘ûšX\Õzô»',_binary '/˜À\'\äÀv\Ìe	ó¼‚f²ž@‘˜c)Æ’;š\ÙY\Ìi,','',0,'?'),(_binary 'HCƒ\ì\Ü!ó«ª\"(ˆ','wp-includes/js/tinymce/plugins/compat3x/css/dialog.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ªwyB\å´\ï•o\Ã|\í\Ø',_binary 'Œ\Ãoš\èJj$²þsc€ÿR\í\ÇQ³\éc\Ì\Íä¼F\î\î…','',0,'?'),(_binary 'Jó\rÓ·G>û‚„õ','wp-includes/class-walker-page-dropdown.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\Í\Æ\Û÷¯ü¥L	óQ~OG\×',_binary '#	\Ò\Ú\Ë\'\Þ5hH^˜¼ìŽ«f=Rd&&9·Z\Ð2','',0,'?'),(_binary 'R\Ç&9\Â,\å}H\æöoþ›','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/arrow-down.svg',0,_binary 'ö\ro-G\â~\éÐ¾ªs!÷—R',_binary 'ö\ro-G\â~\éÐ¾ªs!÷—R',_binary '§(‘Û¤S3\Ê\ã0¾gp¢sûIšÍh\Å~Z\Ìu§r\Ê ','',0,'?'),(_binary 'R\Ñ\æõÆŒ/œMô.,vm','wp-content/plugins/woocommerce/legacy/js/admin/meta-boxes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°q2(#¿ß²\n0”É˜p',_binary 'ij\ÄvðŒ\Ïk;+ù#xQQ·¤\Ë\ZJGÛƒn™*™\Ã','',0,'?'),(_binary 'T2Uu8iúÆ¦JRS','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/utils/validation/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñ[›/°¤	~\äÚ„+',_binary ' \n…My4\ÜûñYp$r£„½\ì’`n´\Ý\Â¸wœSy','',0,'?'),(_binary 'en˜<œ £Î›–U\Ça','wp-content/themes/flatsome/template-parts/header/header-bottom.php',0,_binary '\Ìòð\rG\è>M€@<Œ÷ó',_binary '\Ìòð\rG\è>M€@<Œ÷ó',_binary 'ÿH>ª:J\Ü\â¨n·P¬\r”•>¹¤±>u\åi=!M  ','',0,'?'),(_binary 'rHhM²·±€ZBXúF3i','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/payment-methods/payment-method-data-context.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õs\Ú[*ö‰‹õ\n\n/sG($',_binary '÷¥ ê©•m®MÊ»z›*¹\Î0D†\Ô\ÈÁV\á\Åa','',0,'?'),(_binary 'u\Þ\Çs¶›y6\'v,ª\Þ=','wp-includes/js/tinymce/plugins/wordpress/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9µ…ô\Ñ\"@rXò\å\ÝX',_binary 'Œ\Çm´jñ\Â$]÷^±Iœ\Ï\'¬ŽG\ß\éû —[»¦\è','',0,'?'),(_binary 'v\ì\Û=MbÕ‘\Ç\ØýE\Ïm/','wp-content/themes/flatsome/inc/shortcodes/ux_products.php',0,_binary 'õœC®»\Ü\Òôdõ‡¦ÿ·',_binary 'õœC®»\Ü\Òôdõ‡¦ÿ·',_binary '¦ª¯%&kQ‘“·:—¾q¿am,ü\á	Ge\ÆƒL\ì\î','',0,'?'),(_binary 'ws\æù‡›8\ÉÈ‹bO\r{','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/store-notices/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’\Ï:¦žöGÎ˜\Òt·£A\Ý',_binary 'Àm;YT/k#ª¶\å	V\Ö8\ßSEˆ\É=Æœ\Êq-0','',0,'?'),(_binary 'ö\"\ÅqUy„„£9\ì%Q¦','wp-includes/class-wp-matchesmapregex.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°¥Q·„\ÝdÌšw$<é¾¦q',_binary '9\çl\Ì~ø>S5]8óÙº–Éž£©ºFiJ•±‘¦\ØZ','',0,'?'),(_binary '…ß‹\Ã\ZG&ÿ\Z‰ºÓ˜','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/simple-text.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷P2s*;6$\È%\Íð‰òi',_binary '\"OD¦\Ê9 TÒ¥~Ë™$Œû•÷\ì\í@=ÿ 3´C\ë','',0,'?'),(_binary '†\è­d÷(44Ä¯šš','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/map.svg',0,_binary '\"\Ôj”ýNù»C¡ž¨~a',_binary '\"\Ôj”ýNù»C¡ž¨~a',_binary '\ë{\íü»fCv¯ÄK#\\6\æ\æ\ÜA\ÜOBK\ï§77”','',0,'?'),(_binary '†\ì,i´€·\Ðø˜\ÂŠ§','wp-content/plugins/woocommerce-currency-switcher/languages/woocommerce-currency-switcher-es_ES.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gg^-+	¬S\âk\ãa\ëTž',_binary '\ë¨t}\'¥ö\ê4ÜŽ0›z\É\Ù`«=\Ä\Îv7\Ü%‘\ÜH','',0,'?'),(_binary '‰ö=®§Gt‡øþ\è\nó²','wp-content/plugins/woocommerce-currency-switcher/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0qx\Æ7š¬ÑŸ‰\Òv¨j',_binary '){ˆU’nw¤aú’\0 6h«·d¦™5\'}&¿\à@D¬','',0,'?'),(_binary '‹½«c\r…\å#\ÑS˜2J','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/codemirror/javascript.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®\á>µöJ³=³)Z}¨',_binary '¥m\åw\ÉJÜŒA\ã\à\Ãb.–³›ó\æFk…N‡\Ý0L°','',0,'?'),(_binary 'ŒÑˆˆ\åÖŽ\Ý\Ô\à~z\è~','wp-content/plugins/woocommerce/lib/packages/League/Container/Argument/ArgumentResolverInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›š\Ø½\ÅvŠÿT–ÿ',_binary 'zœk»õFN\ç\å;F\Ê82tÜ‚\à<üýi§F\Ð\Ú\åm','',0,'?'),(_binary '\"‡·.}}Xö\ç1\Ê\Z\Ý','wp-content/themes/twentynineteen/template-parts/post/discussion-meta.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Î\âO^ƒkZžlnK œ#',_binary '´\á\ê\ßòK£j\ëÄ³ñq°2²i²º\Îc^%Ü“K\ØO?','',0,'?'),(_binary '²\ËO\Ü\È}\ë^dBLOPi\n','wp-content/plugins/yith-woocommerce-wishlist/assets/js/jquery.selectBox.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FJ“\ê·ûb§ó\æ¬,',_binary '6\n\Ë \é{Kh\í¨\Õ\ïiŽ„vZ+\'K\\Jˆ9š\í\ã\Ä','',0,'?'),(_binary '¼?~R×˜nB»ƒš6\\\Ë','wp-content/plugins/woocommerce/assets/js/admin/quick-edit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'À¯‹\Æ0\\cÀ\Úl\Ã^>Œ\ã',_binary '7]“!ú\çs\"\ßyq-õ][\Ö\Õ\0ZûÀ\ë\ïÃ \ëm~','',0,'?'),(_binary '\Ã\×\Î°¸˜ù¥*dÀJ\"\È','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/blocks-checkout.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'öc˜ðS9\Æ\0‡º³@',_binary '\')x¸A²õ¨F7\êý©¡\ß\nÊ«\Ý\Ô\Û\Ø\ÎDH','',0,'?'),(_binary '\Ç\è†T¶’f>Çº~ÿ','wp-content/plugins/woocommerce/includes/walkers/class-product-cat-dropdown-walker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰\ÝOy\ÑÙ¤7\ç\Ø\å—eûK\Í',_binary '\Î]\ÐO–ž°rVE\è\â~FL\Âƒ\Ü\àð¸Ì¦ƒD€','',0,'?'),(_binary '\ÉFójJl\Ì*8\èI\Ý]','wp-content/plugins/woocommerce/assets/client/admin/notices/index.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ü¨¢VDÙ£¸¥À—\Ûk‚R',_binary ' qan¿™y\×`uw–.Gl¥”‰£«V´W¦¯q%þ$','',0,'?'),(_binary '\Ì ˆûþ\ÈK i–D“Át','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Salsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ø\Ê\æ\ÍÁZzš#H\è\ç²',_binary 'n]¨\ëx“\Ë¶º«¤\Z_Ñªk\ÔB³-a½&½Ìƒ','',0,'?'),(_binary 'Ì‰%;}\å8 	‘\Ý3','wp-content/plugins/ti-woocommerce-wishlist/assets/css/theme-rtl.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¶œ¾ù›þ\\\Ù\nœzu\ïA†',_binary 'TqÜ’8Š@:=aª#\îk&1ñyI†‡<m/Cl\ßx\Ê\ç`\ä','',0,'?'),(_binary 'Ìª6¶ð¶“ gA%','wp-content/themes/flatsome/inc/builder/core/server/actions/iframe.php',0,_binary '<µ\ã²Wà¸¡Øƒ!õ:\\',_binary '<µ\ã²Wà¸¡Øƒ!õ:\\',_binary 'E\0\çQW6\Ér²\Ös\\x<ÑŽ©óü …Fövòú','',0,'?'),(_binary '\Ð$­\ZL+•‰&\ë\æù','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/metaboxes/field-row.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Äl~ —†\Ä%3¯p¶¬\Ô*',_binary '{\Èkƒ\ë\\\Z¹l»\Ü\â“Àòÿ[†”¾\á\î£n²]¯ ú','',0,'?'),(_binary '\Ò\ä9\Ïx>V\ï¸Q3¨=','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R#tX\îÉƒtÀ}7FI7',_binary '1ø…xk_,•_{‹pÂ›µ\Ð\'½³-ŽZÊ»','',0,'?'),(_binary 'Øš÷ðA\Û\Î\Ò\r\ï\àZ\Ê','wp-content/plugins/woocommerce/assets/js/admin/settings.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9û\Ä|›eÞ\äÏ³\Ì$¹',_binary '\çgû\è%ºmÊ ÷_ö?‚\íŽ?‹t\í@?Ø”gN½','',0,'?'),(_binary '\Þ”\ä¥\ê7™&‡òÈ€','wp-includes/js/tinymce/skins/lightgray/content.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•¢•\\PIýÉ¥\Ø\Ø<\\ˆ¹',_binary ')õY@\Æu&\åKg¯¨\0?«Š\Ñ\\F\'\ÈX0\ÃÇˆŠ','',0,'?'),(_binary '\Þ\Î*(³“*­+¯Wj”cp','wp-content/plugins/wordfence/crypto/vendor/autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œ£3Ô¿:\á“V«	˜ŠU\'',_binary '“»ö|<\Ñ\ÔþP*tg«3dYs\Ï\ß/‘€û\Ðø‘','',0,'?'),(_binary 'å«±c”Ý²zy\Ñ;O\Ì','wp-content/plugins/woocommerce/templates/myaccount/downloads.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ú<pH™4šgÑ˜š\å<U',_binary '¬}„§06Ã*Ñ±·	\Ú\ï\×ôÎ‰luÀŒ¬Y\Ôú\é\Ç\îk½','',0,'?'),(_binary '\ë85\\R­¤qoò-©³\Ù=','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/WebServiceException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h‚\à\Ñ\â$x /™\Êó½\é',_binary '\Ï<b®\ïob¸‡²—nA\Ë\à\çE¶þ\í7_\Ê\ïGK','',0,'?'),(_binary '\í_–¡\rmª¨\ã\â¢E\çŠ\é','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/payment-methods/reducer.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{…·¶Ÿ¾?dÿ`Ü\0«',_binary '·¨µØˆ\ÂMt/²e¤‡÷€Š’4z,\å\ßûej­\Êþ\Øü','',0,'?'),(_binary 'ö_qcc\Èiux\â¹ñ\çŽ','wp-content/plugins/woocommerce/src/Admin/API/Reports/ParameterException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™Ž\ê½e\ÑÃ¨þ¤;¨‰Š/z',_binary '\åaYŸh\Åÿ\ã¿q=K\ï	y°zqˆ´±Füy\×Eõ\Òô9Á','',0,'?'),(_binary '÷­0r\ãˆH\"\áYK]T·','wp-admin/css/site-icon-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'øüúšLDR‚\É*™',_binary 'Yin>jœ#\íKõN%8TP†³\Ý\íO_ƒ\à\ê,','',0,'?'),(_binary 'M!Ç¢Œ«F‰…:/\0±','wp-content/plugins/woocommerce/includes/interfaces/class-wc-coupon-data-store-interface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…\\2¡%…e\æ\Þ\Õ1žh\à°',_binary '\ïU,\Í\ÇBv¶\Û–A{0\Â)\éÆ¹ý‹\"V”;','',0,'?'),(_binary '?\Ø\á~¯W;ò\ã(\ï','wp-content/plugins/woocommerce/includes/data-stores/abstract-wc-order-data-store-cpt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å–žQ\äp=°®¹\Î\ï\Ü',_binary '€\é¸ù7dnµ\ÛØº@¬Á§E\Èr9w\î£\ÔK´\Ð-','',0,'?'),(_binary '\Ú\Âqd®á”»®\â\Ù\å','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/attributes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qñ\â\æÿ†‚²ÁL¾\Û°',_binary '\èÍŠõÎ—8ˆóÀ:¿@‰\Ø@\ï*(·^òÒ³\Ü8ò\ä/*','',0,'?'),(_binary '¾„‹zD.K$~IR','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/radio-control/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\×\Î419÷·\Ï\ÝY\à\Ã',_binary '\ÈG\ËJË¤ù\Ä3_lýÒ–sL,Ë©h\êE\Ó','',0,'?'),(_binary '€=‹E\ãu\0G`X','wp-content/plugins/yith-woocommerce-compare/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì\Ç³j‰:-\ZG\ç\"\n4i>',_binary '³\ç\Þ\â[\áZ5\ì\çÿ.1êƒº‰m\Å÷Hý›\Û3\Õo','',0,'?'),(_binary '?,û»X\á^\ï\È\n+|','wp-content/plugins/ti-woocommerce-wishlist/assets/css/webfont-rtl.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jÊ›k\ÚG{\Ç\Æ2z€',_binary '\à&hû°A;\æh\î1g*ôŽ‹D/\'%<˜ô@0	I=*\Ù~','',0,'?'),(_binary '(€9l1¡\ï5nq¬\ä»','wp-includes/blocks/button/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K6	\çÿHaQz\éG\ï',_binary '\å	\Ãøz¡˜[\ÉL\í‘n±c…Œõ\æOq|!]\é\ã\ëõ','',0,'?'),(_binary '(¿€—Ñ™—\É\Ú\0H<_','wp-admin/includes/nav-menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ä{\è8|NK(\ë‡:2j',_binary '\niõ¹{«Jó~dœ\Æ\àŠHñ\ËÙ‘­\è\n\ï”yo\×g\ì','',0,'?'),(_binary '3x2ŠÂ§®¢h\ê_','wp-includes/blocks/shortcode/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Í»ô0E\Ì\Ê<\í¨\ï#\é',_binary 'ID\ÒWó=\Ú~7÷¦Áõ(²­¿3E»¼ôb$@x`\Ñ','',0,'?'),(_binary '<.¦\Ø4v·\äc™\"`¦t','wp-includes/class-wp-simplepie-sanitize-kses.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0s‚7\Ì^õGU\éö\Æ_',_binary '\íEJ\í\'{6i¢º\é|\ì«~ñc¹\Ê/òl','',0,'?'),(_binary 'i)*\è\Ã=±O6µq\nA\Z','wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-zone-methods.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«*‹a\'ö¹¯½©gY',_binary 'Ý¤\Ì \êž.}´ðNH\â\È]&\Ú5Ž¾“\Z×¡\í\ê*\ß\ì\í','',0,'?'),(_binary 'iô¢PÃ™û–ld\0ú‘','wp-includes/css/jquery-ui-dialog.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÌbšGþ-_f\Å\çkqT‡',_binary 'v¦4ÿ8p»nf•òZ«H\"Õ¼\\³;j‘R&NÁ','',0,'?'),(_binary 'kñž¯4cí°µ\áó\Ð5<\"','wp-includes/js/dist/autop.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ35:\Â`}\Zù\ngdø=',_binary 'L{N°f¿1—z§¾¡Ol•ñ\Ê\"\å[ý(A{\à','',0,'?'),(_binary 'r\Ã\ÆÿP)‚f\ÍO²\"f›','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/payment-icons.svg',0,_binary '<½L^+ö:\ÒU\ÄÑ',_binary '<½L^+ö:\ÒU\ÄÑ',_binary '@¯¯Z‹I¥~£¹²³CLêœ¥…¨£”›EV\Z9\Ê3 ¥','',0,'?'),(_binary 'uK°i>c™ýBŒŠ&.','wp-content/plugins/woocommerce/legacy/js/admin/wc-shipping-classes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b”²=3\Â\æx(Ð¯¼',_binary '‹t¢€²OiS_‡ó´>!¡\×r	d4Lap\Ï\à\è','',0,'?'),(_binary 'ŒQ´¡Y0›ý3º*','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-list/no-products.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯heX\çœ¤\'‚\ßr\Õ\á\ì',_binary 'h[%\èXø\ÍE»;NY^8\Êj\0\ß\Ý8Y\æH $z¡ ','',0,'?'),(_binary '”Ô¹\î¥B\Ðõüw<ø ','wp-content/plugins/woocommerce-currency-switcher/img/woobe_banner-old.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þÒ°ªƒ\Ñ\Ä\ÕNn\äƒ&\nv\ì',_binary '{Š\ÃryTS\Ø\çe‡\ä\ã\Æ1©FC\Î\Êð\Õ\Ú…Oþ#','',0,'?'),(_binary '¨\Î	8j\n7J‡»O<Œ5\Ô','wp-content/plugins/products-compare-for-woocommerce/berocket/sale/friday.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸)’Xc}g\ÙA);Œf³',_binary 'Lx~ \"pÁCJR(Q­3†\ìN5 ‘S9\Ûzl\Ü<_','',0,'?'),(_binary '©k:j	^Ÿ(H?\í1','wp-content/themes/flatsome/inc/builder/shortcodes/templates/ux_banner.html',0,_binary '\×ðlD\Ñ\á\åôÛ‡xYœ',_binary '\×ðlD\Ñ\á\åôÛ‡xYœ',_binary '\Æ\Ï\Ã\Ë\ÞM\ã\\Ùœv\Ò\çœwK¸]j\Ýfˆrn\"\Í<6','',0,'?'),(_binary '¬H‚\Î+ƒ\"\ßco\Þ\ÅM¤','wp-content/themes/flatsome/assets/js/extensions/flatsome-swatches-frontend.asset.php',0,_binary '½‘\ä8•ð\Å,±\Ñ_',_binary '½‘\ä8•ð\Å,±\Ñ_',_binary '™‡\ì\ÛÆœ\"\î×©˜øÐŒµ²t•»\Õ\åš7\ì:Œ®?Ù‹˜','',0,'?'),(_binary '°\ß7\Ûß£Ycx÷‘\'²','wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_Compatibility.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\Â\ähüU\í	†F…l‹',_binary '(/) \ã\Ö\0|3•©”\0\êbôu\ç˜x•t\àwqSµ\ÑÛ¾','',0,'?'),(_binary '¶Û£\ÊN\ÐBti½J}Á','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/pt.js',0,_binary '$’¾\ß\ÜZ% \æ¾\Ëô\éôÁ',_binary '$’¾\ß\ÜZ% \æ¾\Ëô\éôÁ',_binary 'µ\ïS¥\Öf×¶þ\Ñ\Ö@V¯lü\Ô)/ù\ØùA','',0,'?'),(_binary 'ÁŠô©e\ê\î§\àôu%+','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-ui.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\âj.½\nL\â—\êN³\ÅF\Ð',_binary 'XôÀža<\Ë\Ö[	+e\Æ_YV9h\Æ\á¤w]<n\Ý„','',0,'?'),(_binary '\Ç\ã£pCy\Þ)\î§	\ä{—','wp-content/themes/twentynineteen/sass/forms/_fields.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ûX¤\rm\ÈEöZ§“\Þ=',_binary '„\çH\í\ä (˜šX·¼\æJœN5°\\<*m®\0\rŸ4±\ë','',0,'?'),(_binary 'Õ™ÿ„x¶\ÜX®\rHºB','wp-content/themes/flatsome/inc/admin/customizer/img/product-gallery-vertical-right.svg',0,_binary '°¥´ŒK’+sŠwTí„',_binary '°¥´ŒK’+sŠwTí„',_binary '\æ·opÇ¿Fd\Î\Ç·P$÷Ckþ½•Ÿ‡Ñ–¿…¹ñ¨^`','',0,'?'),(_binary '\ì×¼\Å\0û¹q”¯6\É\Ð','wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-twelve.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j–\ìý1Sus\Ï\Õ%ýýš\\',_binary '~_?\Õ\În³þ€LóÉ‡\Í_\ÙÇŠƒ\ÑN’ùò`ešü±¶','',0,'?'),(_binary 'õx#¥„*W`PšÁÀDž','wp-content/plugins/wordfence/modules/login-security/views/common/revoke-grace-period.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a&\ç\Û:^\ï\ß!‚„y\Ì',_binary '\í\éŠ\ì“y¹Ó‘4UVÈ¡F>/\ê\Èm®\ç# <{\ïžr\Ò','',0,'?'),(_binary ' \É$V\ç\ï\ÉÅ…S`„','wp-content/plugins/nextend-facebook-connect/admin/templates/settings/general-pro.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-5®\ß\Z±®Ñ¯B\Ö\Þ(öLŸ',_binary '•/“U\ÅðG\'\ê%FÈ¢º¢\î\ÔFñ¦±\Ý\'D\È~\ï„4mþ','',0,'?'),(_binary '!~ù+÷1X˜Y\Ú?¨C','wp-content/plugins/woocommerce/legacy/js/admin/network-orders.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Æ\r˜\ãŠ\ãô`¤T\nQl\ä',_binary '\ÝT—Ú´¼¦:Ó¿\Æôò®z+{¶ñ®7³Ô¶‹\ä\ÛO\Óu','',0,'?'),(_binary '!›”\È@|˜4«°n­ô','wp-includes/class-http.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ+Œ1Ô©I,ŸøB%G\ÌÁµ',_binary '^¾\Ù&_•\Ï\n\ÚV\ëy\æ&96$c\çóUõ\rn	h’\Èt\n','',0,'?'),(_binary '\'Úž\0;¾¿?\Ã+VÒª\Î','wp-admin/network/edit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’­÷\Æ=¤\Ý#L˜H\Ý\Ä\Ê',_binary 'qµ/*ß²3ñ \ÜxþS¤¥¶~‹.\']w\Ê\ïk¯,W','',0,'?'),(_binary '6‰ewOo)&­\Ç\ç','wp-content/plugins/nextend-facebook-connect/admin/templates/providers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\á÷¿P\Ö5g[g\Ë^ ª%g',_binary '\æ\ã`ü€†úýzlÙžzK?øHD·\Ã\à}ø\n·o˜','',0,'?'),(_binary ';pR9²¶+óqpÕ®','wp-admin/includes/options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ëp´;Žý\"ˆÐ‹\×',_binary '“YXµ\ê®i4+\Ö\r¼A\ä©Sð†F/\\Rú\å~\åÁ\Ú_¸','',0,'?'),(_binary '?ð\Ë|êº¯÷\×~x“\Ð\ë\Ö','wp-includes/blocks/query/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VY‰û\Ù8B´¡K—)½{',_binary 'ûj\'\Å™Û‰\Ï>MOB¶\éUZû\ëÂ–\èh¿\Øfy\r®','',0,'?'),(_binary 'MpqE¡™H·a\'p,§\"','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/WinterInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':@\áGxŸª\Ñs£V\é=',_binary '­\Í|¼¹û°\Ø\ÍÔ’?L¶e¢„ŸœGU»\rp˜\âs','',0,'?'),(_binary 's©¾¨;\ß\Í`\ê,\Â]>\ã¨','wp-content/plugins/ti-woocommerce-wishlist/admin/base.helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ž\ë¸\"@Œ\æ¬\Ë=ÿ?',_binary '\ÃÁfø\ëùb•&$‡L ©”n7ôtþ\ßtg\â˜]ò\ï','',0,'?'),(_binary 'x\àó‘mü€¥\0\Þ~¶\Â','wp-includes/customize/class-wp-customize-nav-menus-panel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ððŠA\'|ð\'h\Ã',_binary '¦”:óÀZ¿ˆ\ÑisC`¢üªk“d0­\0\Úg`hQ','',0,'?'),(_binary 'zµs\ÒxŒ#>q0a\Ó','wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/eway.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*¸£\'*—·^\ë\Éh',_binary '6	‘E?\"\ê¶zM›\Éks`\rXŠG©\Ù++N|\å','',0,'?'),(_binary 'zÝ–÷ñ`× ö\ÎEkŒ·','wp-content/themes/flatsome/inc/admin/options/header/options-header-sticky.php',0,_binary '¹sýcý«Ya0—\ÂR\×\Í\n',_binary '¹sýcý«Ya0—\ÂR\×\Í\n',_binary 'ñ÷¨`kzò\'\ßh÷\ÛÄ¬*¹:’Á0\Z\æp‚F\Zr6\Þ$','',0,'?'),(_binary 'ŒÜˆ\Òy\âô7@©µ˜\Ö\"','wp-includes/blocks/audio/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨¢\ÑL‰\n>o¿`¦Á¢¹\æ‘',_binary '3\rù\ÝµgK|’P35­õ\Ô\ïEõ§\ä¦=ªk²','',0,'?'),(_binary '„ló¿g<\Ð\ë¹\É=\Æl‰','wp-content/plugins/akismet/class.akismet-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾†&xõ9• V$´s²\rI',_binary 'p~$\î³)¯wn¬E\éaeeýiFK}\r!ô\ÅðÀ\ÏYt¾','',0,'?'),(_binary 'œ‘É´4¤¹)?ã¹´²','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/AutoloadFileWriter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Û¤÷\Z\àû\ç\æW\Þ(\0[¦\Ñ',_binary '±É™8\Æÿ\Ò=-št\ïô\Ñ\ZÇ•\ï\à\Â|#¾UÅ¿\0º','',0,'?'),(_binary ' ú\à\n\î#T¨\ê?×»\ì\Ë','wp-content/plugins/wordfence/views/scanner/issue-publiclyAccessible.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2W«L°\Ã;m‡06—¡',_binary '\ÔÐ„ <¹EHm`^\ÜwôÁI\î‚úŸ«¢b¾¸À\æðM\æ','',0,'?'),(_binary '¡/%=\àƒTw™þ\Ð\n','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-uk_UA.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÑrY!&¬o\Ïÿ&',_binary 'm5DHÿ(_#\ä0>G‘nmÇ\ÔbEQMj7¦rj¨d','',0,'?'),(_binary '¥¬Œ˜\"@OˆwQ_Ü¨2M','wp-content/plugins/contact-form-7/includes/contact-form.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o&b’L\"N%\æBbB\è\\¼',_binary '\0\ÜWn&Šó/(C[è²¼x·}v†–ê¢‰u','',0,'?'),(_binary '­¼ƒ¢Ž*À¾l Ÿ\\\ä','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader/class-autoloader-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\E\àS\í¥è»¡m\ÆX\ï\ïPZ',_binary '@_\Z@>œ6³AmO7Œ\Í\éy\ZU[0\ÎU²¾/-','',0,'?'),(_binary '°Ãš2\â±ûd\Í=','wp-includes/rest-api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Á$6d9\ØOh\ä\î˜7‹',_binary '3\n\è–-¹Ë—°\ã\×|^\âC—+¸^¸ny€\Zˆ','',0,'?'),(_binary '²‚\'\ä“a—\Âa\Âó¨Y\ï–','wp-content/themes/flatsome/inc/admin/customizer/img/product-title-push.svg',0,_binary 'ú\ÐÓ‘(\ßUº\Ãzª\ØŒ\Ù',_binary 'ú\ÐÓ‘(\ßUº\Ãzª\ØŒ\Ù',_binary 'ž\æå†¯-»­\ç\á\'³€$&zo ô.\çi0 n†!','',0,'?'),(_binary '³o\ÄAð\ÊcIú\èÙª[:\Z','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/reviews/review-sort-select/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ûŸÉ¡ñP\ÐY,ˆºù†',_binary '%¼ø£^‹1Mz~¾.‚*%Sw\Ò.VV\0¿\Ó\ÆXU','',0,'?'),(_binary '³Œ\îO…\ÕT?£\"3Áþ\×','wp-content/plugins/woocommerce/src/Internal/Admin/Schedulers/CustomersScheduler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DÂ°f{Q&þ\0\ï	\ÇqÀBG',_binary '˜¢,½+d\ï\Ñ\Çl}^\ÅÿwtùPõñC‡Zc\ÍY','',0,'?'),(_binary '³\á\Ð\ìô?6Œ\Ú|‚0\âÏ³','wp-content/plugins/woocommerce/includes/wc-order-item-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v,\×fÝ¬´c\ìT‘C\n\Ü',_binary 'š´ž¾oC®†‹°xú˜U¤Â¶	l\ãI1\é','',0,'?'),(_binary '·P\0\'\Ø0l§Ÿ¯v\È#J<','wp-includes/js/jquery/ui/effect-fold.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÊÁC\re(ÿ\Ñ\Ú\Ïj‘«\"',_binary 'W	¶Å©Y×§V³\Zÿøã¹Šf‚¹\æ\î±$3&\äO·‹‰','',0,'?'),(_binary '¾ÿ˜BR|‰€d=i\à}Ó‰','wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-setup.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v÷÷J\ï8-«\Ô®$r]',_binary 'Ø©A¹$$bØº„,­”5\n\Ó[Ei5;\ÕÚ˜öv\æJ¯~','',0,'?'),(_binary 'È„”\Î\Óxy¨\åõ‹\Ö','wp-includes/js/tinymce/skins/wordpress/images/embedded.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õª p\ÝN¢\Öy~\Ãn\"',_binary '¿{ó¹u\Õx\Ó\'‹À\Â¡J¦Âº@i\"H;ò]6h','',0,'?'),(_binary 'Ï´ 3P`#8^\Ý\ÖZ','wp-admin/css/colors/coffee/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'øž:[Ûžø\à\æ„IFÿÄ–',_binary 'X\Ì#®À¾ñ_W\n\Û\Õbnò«wþP¢#W¹¤¦h\Ô\Þp','',0,'?'),(_binary '\ÒG¹#ô;\"L\É%„ú\Å','wp-includes/blocks/categories/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ëˆ`·Ï˜\Ó\Ê\Ô\rTs\á§',_binary '±´\å©tbðN˜^\Âùþ\àCƒ\\ž¬jpx/!*²?‰®','',0,'?'),(_binary '\ØönlN÷ÚŒeÿ­uŸ','wp-content/plugins/ti-woocommerce-wishlist/assets/img/icon_menu.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿ2FC\äÈ¶\Ë;z~\à¼÷',_binary 'µK\ÈT`aŠ\Ïö›U\ïªH½ºñŠ}…üVÀ\Í\Ë™','',0,'?'),(_binary '\Ý\Ë\êY5­½)Î¶;D²\Îs','wp-content/plugins/woocommerce/vendor/composer/jetpack_autoload_filemap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$ô	¹\×Gýz\ã•|÷',_binary '”y)\Ý!…D²\Û,\Æ1˜\çòqBõ\î\ÜÎ”1¥','',0,'?'),(_binary '\Þ²\Æöü\ÊøÝ®\Ùp«\Û','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/nb.js',0,_binary '>U?\èWs=¦\â\ç^\ê',_binary '>U?\èWs=¦\â\ç^\ê',_binary '¹Â–·©\0~lÕ¯°\ß\ÑW^)|\ã\äg(tw1A','',0,'?'),(_binary '\á=÷\ÑVjúüÖ‹¼b','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/query-state/constants.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ó™0>M(\Ç&\Ô4˜‰ª„',_binary '2*ô\Ã.”\Z\é·\Õ/kqúwk5\Û\'ß Ê§\ÉÇ­¸\Æ\í»','',0,'?'),(_binary 'ÿ¶Å™\æz[	;¬eô“\ã','wp-content/themes/flatsome/inc/builder/core/server/src/Options/Custom/ImageOption.php',0,_binary '?8e\0ù\Ü~³c@RJºF',_binary '?8e\0ù\Ü~³c@RJºF',_binary '\×\Ä\Ü=±ó‹ea”\Û\ÒcÔ›Zü†\ÊWU @\Ø\ÄSX','',0,'?'),(_binary '\0›,¾#µheLGº(}','wp-includes/blocks/query-pagination-numbers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì\Ó!ög \0©jDiø\Z',_binary 'Ÿ~Àx—X\Ë\Ã¿%\"\ã>Ÿ\"Ý¡\Í\ß÷Š[','',0,'?'),(_binary '?¾8\røA§V\ÝQ\Æh','wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/core/cssclassname.js',0,_binary '\ÔFbˆI¯ZûûÏœ]ÿVJ',_binary '\ÔFbˆI¯ZûûÏœ]ÿVJ',_binary '|dØNý—™\æ`\æ([Šlz÷<ù/eü^\Ùs‹/\"f','',0,'?'),(_binary '!N\â\"i½\ä\ç+n©\ÄF','wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-container.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\Þ˜_T!HœYeÁ\Îq',_binary '£P›u\r÷ô3XF\Þ=ÈŠ\È\ÑLš^\ï”]ÀÀ\\Òš-˜','',0,'?'),(_binary '\"’ŸNß¬jj)…Ÿ\0Œ•N','wp-admin/images/menu-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jGÿõþ\âù{¿>¯^;$‚\Ó',_binary '–2]y\â\×#h½\â\Ä2ö9ø> ^s€\rH\å	\n\Û\Ügš\Ã','',0,'?'),(_binary '3’„¿X´G%<!>','wp-includes/blocks/pullquote/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BIÅ€Àÿ‹C}M\ã9¯\Z#x',_binary '°a 	\Û~a¹UlbG²AHbY®i18žb\Ð5Áˆ|','',0,'?'),(_binary '4œ\ìN˜Á™,´Þ“Aw\æ','wp-content/plugins/yith-woocommerce-compare/includes/class.yith-woocompare-helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\Øó,q]F…üô•.¦=ˆ',_binary '\Í[Ákž\ãZD€þ‹\\\ÄPÚ£F\Ë.\n \Æ\Õ&À\ß\ß\í','',0,'?'),(_binary '9*I§±œCc“ºŸô','wp-includes/blocks/post-excerpt/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\éœÓ£\ê»ùñú¥\î6›ñ',_binary 'L(òÆ„õ}\È\03’\Òt9v~<\â{Šü~»\Æ\Ñy1','',0,'?'),(_binary 'B‰b\Ò0\Õ1(l°’\í\Þ','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-update-plugins.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"VÈ¿Ã„Ð¢u,ø/-\Æ(',_binary '\æ\Ý?\ác\æ\Ç?\æ‘\Çd“\×|²\Ôdku\î\'\á²\Î\ê\èa¾—','',0,'?'),(_binary 'o	CBº~CŽ\Ý\îwO™­','wp-content/plugins/woocommerce/includes/admin/settings/views/html-settings-tax.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0”n\í#j\ç.„Z\Øðe0û/',_binary '\ÞJf\'¶\'—X‰‚o 3%\Äiª˜\âE1øŸÇ\Ð`\Ã','',0,'?'),(_binary 'oD–\àˆ(˜\á;QŠ§','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-contents-block/items-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\áÀ±¦¥\0C>ómÁT\Ãs8v',_binary 'Id>+@®\Å\ÌR¥wû\Ë(8\ÍO}¿\àËŸSr—\ÕNO','',0,'?'),(_binary 'oÀ\ÛÜ‘\É\ì/5¯¾\×\'','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Formatters/DefaultFormatter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ë´\æä¥¸\Ï]9„ùo³l‰',_binary 'ŸEœ/þ›Ž\Ù#d¨«¯2\"-\Ä,ñpL#T\Í]2','',0,'?'),(_binary 'q¨ˆ\ã_\"ñ1\ÉF','wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yŽø\è˜h¥RÀ;#\ìzö3',_binary 'jô2\êúA\ÌN*”/[¤k5\0\ÝÒ•¯3Dl>>&\Éò','',0,'?'),(_binary 'tZQ¥Yz0…ú½\ßè·«','wp-admin/images/wordpress-logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Æ°ùy¹\æo\Ã8ô\Ë8S¥`Š',_binary 'bx\ÃLüPÍ°\é\â=^’\í\å÷¹aõm\Ï\Åñº»1i³\ß','',0,'?'),(_binary 'u\à\"M:ðl÷õ±Xƒ+','wp-content/plugins/woocommerce/assets/client/admin/chunks/store-performance.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/^„U2L$Z$.\Ô?\ïºN',_binary 'hXL\íaGz\Ú!„óB\ÏÂ’i4+úF¾\è³é‘¥°,ƒ','',0,'?'),(_binary 'v\'ˆ@DMÅ¨ûpsš','wp-content/plugins/woocommerce/templates/auth/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õd%yþ‡\ß`[Ë Ypr0',_binary 'ý.f@\Ê6Ì±õBeôº”·)IXŽŠ•³\ê>ŽŠ$\Ú9>','',0,'?'),(_binary 'w\èÀnª\ä£n\Ø!%wë··','wp-content/plugins/woocommerce/packages/action-scheduler/classes/data-stores/ActionScheduler_DBLogger.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡\ÄøRD’\å1.e°6‚',_binary 'E®¿¯\â¸cüÁ· Œ´9™~ÿ|\r\"<	\î:j¨‹ù¨—','',0,'?'),(_binary '|q¯´\ÖBl€mr\Úñ\Ã0','wp-content/plugins/woocommerce/includes/admin/views/html-notice-template-check.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨|)tXk\ÚA\ÑC\Ì\'xÄ–',_binary 'W}.ô½\á¶fW‡×¸£2ivS¼\Ü9¿\Î\ß+°Ü¥5J','',0,'?'),(_binary '‚EÚœ\Î\0OR\Zzõ\â','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-requests.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹w†Jª{0x\Å\×CÿÕ¢·',_binary '¦\Þ\ê$5­h\Ò\ÐBw5»·\áN\É-.œùa&²_r}','',0,'?'),(_binary 'ˆ4vT¾\'´¿ø5v\Ýh\æ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦ó³\ïº6g«O5|ð\ï ',_binary 'pƒns¦\Ã#dóÁF$ˆ—\ÏWÍ•Á\ß\Ù(QŒ¡7Á6','',0,'?'),(_binary '“¢Á”4øì®¾§\åŠ|\×','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-totals-block/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J²è•™/òüh@ü^·\Ù\Â',_binary 'K¼É‘\"Fa%¬cq§\ç/L°~^ ,^‚.\ÙÁ·¸/>','',0,'?'),(_binary '–™|&ì°­Ýµ»’\ì¯ý','wp-content/plugins/woocommerce/includes/class-wc-regenerate-images-request.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’aú½rº\Ø<†ª¤_]þ',_binary 'H¾J\Ô!\ã\êo‚±uuoŠ[õ¡J&\Ù.þ»V\Ç®¸m','',0,'?'),(_binary '–·<~¦–¯É¤÷`Ì‹\Ú','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/footer-item/stories/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¢S\à}ˆ–~\ÌY\éµdI',_binary ')þ¶ô]P—&½O\ï\n¶:!\0\Ú%’\ÃB‹‰KrE,:‹','',0,'?'),(_binary 'œý—k’5SH\å\Ð\çÐ«','wp-includes/SimplePie/Author.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?ÿ˜hK\0ªk\Û1ô\Ê\ÂN\"',_binary 'N©¿\Ä\\ü\Ïpt3‰\Ú\ÆŠ+,lù\'\ÐcOQ+\Î÷ZŒ','',0,'?'),(_binary 'œi\á´\ÝE1¬¯š','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/country-input/stories/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Eg\ê±\Ï~\ì\á?\Èù\Ç0˜Œ',_binary '¦¬&³˜ž]3 î¢¶?[A\ÊH*\ÞÏ­h\ìG­Gj','',0,'?'),(_binary 'ž4ýJó(\çe\ï8Nj\Úûa','wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-thirteen.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÝZ,4ýN\éAA\åjš”',_binary 'ø÷Ï™\Êk\Æt©\Ãz‚Q°lF<QS»¶û\\½Î·\í?$','',0,'?'),(_binary 'ŸT	(þ\ÇL\nlm^ð','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/order-summary/order-summary-item.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',J!²m»V‘°Ÿ0\Ïi‚',_binary '3 \Û\Å\ä=¥g@¯Æœò‡‡õM;J\Ê{6üE\r¤°K','',0,'?'),(_binary '¢\ØÀe\ßbWüA0\Ïd','wp-admin/images/comment-grey-bubble.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y*\'´‰°©tÀ¶²F',_binary '7	®y²ñ®Œ¬\Ð\èU{\Ã®¦ˆÔŸ\ã‚\Å`¡§]m¢ó','',0,'?'),(_binary '¬\èËºŸ\í\êmO™q\ÙÀ\æ','wp-content/plugins/nextend-facebook-connect/admin/templates/settings/memberpress.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³~§t—†\äý¼1\ê\Ú[\Ü',_binary '=\Ûžö\Ýü\Ú\Z¥`E_M±C\Õ\ËwN4fð\ÎX\n[Xf\Ï','',0,'?'),(_binary '®±ª]ŸŠ\ìŒü1','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/InstalledVersions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æ\äf·F©i*Œf><',_binary 'ñ¦M\î× kiy\ØÌ¨\'\ÛŽ\ï³S³¼\nV\×|TÄ´Àº','',0,'?'),(_binary '³•[©Œ\Â4\âò°?s','wp-includes/css/dist/block-library/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '][P¥<›\\}.\è\ÈC¹',_binary 'HòÁ¬¤lþ‹2¥¬e!\"o¨\ïü\Øöô¹2¶ !¿iUÎ­','',0,'?'),(_binary 'µx\î\Ý\Üv¡°#¤EŽR','wp-content/plugins/woocommerce/includes/admin/views/html-notice-regenerating-lookup-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³—\"¥2U˜¤yi(ø ˜\0',_binary 'ý)Ãª¥.h¦hv®\ç„\ìðžLÁ /\ê¸phh','',0,'?'),(_binary 'º£”õŒ_kP\å7•ùƒ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/image/edit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\à¾\ÙN|z/] “j¡Å†¤',_binary '¨*\æ‘lLöv\ë\rå·¡\Ó*\ÐÑ•ÿB=p®õu3','',0,'?'),(_binary '¿Ju¿…\ÒHp\É\Í\í–‹±','wp-content/themes/twentytwenty/template-parts/pagination.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€²’3·\0[+:G>	\ì',_binary '6\Ú\îK‡™(O\ÞG%)„¦aqñ¨/†.œqŠ¼µŒÆµ±<4','',0,'?'),(_binary '¿‰c€B\çm)\Ñc\ÔÐª‚\'','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-dashboard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&£\0õ–&oí³¯H\ë\Ý',_binary '	Ã³’$\âF¯ ·c\ÕòÎµ-Œ¥v\ép\á\ào\ìˆÿ','',0,'?'),(_binary 'À=Úœ=ë„¯\èT¼rN;','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/InsightFirstProductAndPayment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ëª•µ¨O\ë­2²fµ^\\©',_binary '\"\\@€6{±È„Z¯¸,4ró%\na·H\rx¦þ…Av','',0,'?'),(_binary 'Á\à\ÇF9Ê±ƒCC/¯Â¤','wp-content/plugins/ti-woocommerce-wishlist/assets/img/customization.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ý§b ßŒ{\\º–\Ï\Ø<N‘',_binary '4þl2†¥\à6[ia¥\Æ	,…O­9\ËOZb?\\M»','',0,'?'),(_binary '\ÄIa»\nØŽš–\ê\Ða','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Í¢¾>\Z\ëð°\Z+•,',_binary '*y$˜MQ[q\Ó:h\éš\"\îÀù)£XTC\0\ë\\k','',0,'?'),(_binary '\ÍR‹\Ë\Ø\ëbXo6µ÷ª','wp-content/themes/flatsome/assets/img/payment-icons/icon-payshop.svg.php',0,_binary ']ÁY\Ü:8¬3;‹­²#',_binary ']ÁY\Ü:8¬3;‹­²#',_binary '\å®1ò\Ãn\ÒœóN•ˆ¸\Z3\ë«\á¼^\åš6¥ý‡]\ä','',0,'?'),(_binary '\Ótº\ÇC²\Ü3^ó›Oq','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/template-service/class-otgs-php-template-service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0“\Ñt$dW¾nP<\Ç\Ì',_binary 'œ_P%)]ý\0~\ìô,“R‘*Úªÿ7?ð\Ç\ïˆÁöù\æ','',0,'?'),(_binary '\Óÿ@n\ë\ä\îH §Ag\×','wp-content/themes/twentytwentytwo/inc/patterns/general-featured-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?JT\ß\ÛË¯\ÑñHD\ã\ïÁ',_binary '\Ö\Ð[£ƒ¶!úu‘.ê—°•~~\È\â\íŠC¢½&;','',0,'?'),(_binary '\ámÉ´‚h@gp\Ä\â|€ý','wp-content/plugins/woocommerce/src/Admin/API/Templates/physical_product.csv',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'óô8pÍˆ›¨õg\Ã\í»',_binary '\r:Q\0©¦\Ðgü); †*`f»M\r…þ	\ì\ß7ø@¿B¤','',0,'?'),(_binary 'ð\éXº~ò<\à‡\Òv¯ •A','wp-content/plugins/woocommerce/assets/js/accounting/accounting.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Yðÿ ´\Å\åý[C¬\Ñg',_binary '\î1ES·ü\Ü\È\ÈM®\çÆ©¸I‚r§þÈ¸9Q','',0,'?'),(_binary 'ú®\ê÷™ú{\'pJý8‡','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\\ûLëºµ\'ð÷\ãQ',_binary 'ø‹0&Šö\ÅþM¬ŽsÔŽþñ\Û\ÇÌ©c\Ö|˜÷\Ê	›av','',0,'?'),(_binary 'ütËº‡°)Gø3\ë´E!,','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/bootstrap/icon-128x128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õ&òx­N“\Æ8Ž\Ù\ïŸ',_binary '¿z\ì\â\Ú.e¼®4\ZÁp¡¾t\Æ‘XžHI\Û|	','',0,'?'),(_binary '	eõØ­VòÀM\ë\ìÀyž','wp-includes/blocks/rss/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\Ã}«H\rU«\ÅkLÀÓ',_binary '}¾iNk¹uq\Ò\0/&rTY\Ë\Ì)\ÖOþ7\ÒMD\âEdŽÜ¿','',0,'?'),(_binary 'm\ÉqPoD0\â*\Í\ØL','wp-content/plugins/wordfence/lib/wfRESTAPI.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ä\\8÷\Ó\ÃHÁ …miü+',_binary '+›‡+ùÆŸ­\íü0\Ñû®Í‚b½=þÿ¸[ãœ”¸','',0,'?'),(_binary '\Ã\'SRo4½rŽx<F\Ã','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/global-style.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5.£2$QŒ8³\Ì\åv\ç\Ô',_binary 'IG\Ú,W\Ã\åO†Gu8¤S\"¤\á\Îó–·kõ\'G\Æ\ÆMcú','',0,'?'),(_binary '\Zpe­\Ð\Ü\Î\Ì\Æ5\'½<','wp-content/themes/twentytwentyone/assets/sass/07-utilities/print.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ê\Ýck°\ÇeRºžY¿F¢s',_binary '1\î*z\Õ+zþ\Ü\ï6\ÂÿŠ\ç(\Ùc¤VÏ™·Šö{VÕ·','',0,'?'),(_binary ' û,eO¢š\Ëz‚Ã‘•','wp-includes/customize/class-wp-customize-site-icon-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UÓ†?/[\ì(\rC\ä\ÄX',_binary '(V+€Á«g÷½]\Õ!Ÿi‡}wž\ÇÁÅ¡)\Ï\Æ5m>-þ\Í','',0,'?'),(_binary '\"]\Íe4±3\Ú\Ål?½\Õ\Û','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/checkout-order-error/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ö/¼{¡w\Â&\ÖUs\Ø\r',_binary 'Q\í4T/Ì \î´N\ç„\äD6m7 ºc\Â\ÔN','',0,'?'),(_binary '\"\Ë¡\æ³ˆŸ•(§›\0','wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(h€¡v$\êmpn³‚\Ê+w¤',_binary 'ˆ\åÓ¥©\àŸ’?\Ä\Ó$V½ø‚ÿ©õOnkŒm…Jt²„\ìÌ¶','',0,'?'),(_binary '(‹úõ¬)úTØ˜¹1sa\ë','wp-content/themes/flatsome/inc/builder/shortcodes/ux_slider.php',0,_binary 'xˆº ²oþQ¸\é€\ä/%\ê',_binary 'xˆº ²oþQ¸\é€\ä/%\ê',_binary '\ÌLü—x\ãlŒ\ÚqA\æ.u+WYò\ÓÛ¿±E:*\ZY\Ãs\Ä','',0,'?'),(_binary ',5\ÍXp\ÌBFdc’j+”','wp-includes/js/dist/vendor/lodash.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›\ì\Ä±\Ø]!\Ð\Ê8\â÷•',_binary 'œ†½Ý’k\æ\"G\Ú\0¼\íô¥%\é\Ûe$²ƒŒÃ»Œ„','',0,'?'),(_binary '7\Üc-¾”\ÕkÐ„\"¶`k','wp-includes/blocks/html/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Zm\Í\Ã\ÊÇ·!KF¿þœ',_binary '\n^/3›<S²\ìüwD\ë-”?q›R&±\"þ\Üs91oR}','',0,'?'),(_binary 'B¯«µ\Ø@šðÀ2?\ëY','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/search-list-control/utils.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\ëb\È„\ë*¿\î‹`I\Â',_binary '³£–\èg?5±ºyýMÓ¥\â\Ú\ÏA˜yoÙ½v7´','',0,'?'),(_binary 'Fuó\ìŸœ¹o\ãjI¯Â','wp-content/plugins/ti-woocommerce-wishlist/integrations/automatewoo/trigger-wishlist-item-added-to-cart.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'øøK\Ú ­U”\"©*e—œ',_binary 'w’ƒ\ÊGB*\"cË¯úµä¦¥º¿z\ëÄ”µ','',0,'?'),(_binary 'K\Ø\ê\Él}\n*J\í\á(9¸<','wp-content/plugins/woocommerce/templates/loop/result-count.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q‰µ\ÛA\Â2\éCåœ¹Ò²ž©',_binary 'V\Õ{Aþ\Z“M>&.0\0\Ç\"\ï\î\ÓUß²I!o*\Ãß–A\Åj','',0,'?'),(_binary 'M˜·\r[‰O¬j%e\Ê','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/collections/action-types.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“O\n:\äÖª4-S\Ú6û–',_binary '¯VA;\ç&. \ì®Ï¤e±1\Ó1-_œrpE¤º	','',0,'?'),(_binary 'Oÿ\Ï$o˜c^TY1','wp-content/plugins/woocommerce-currency-switcher/js/wselect/wSelect.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z•\è*\Þb8õ\ÌY\Æ',_binary '‰V`\×\Ã§Bžv(êŒðVr1£t\äŒ\"‹|Œ/)\Ú','',0,'?'),(_binary 'Q¡ ·\Ô(;Ø |~R8¿b','wp-admin/includes/user.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±¯*b¢1\âGÚ¥ø\ÈvŸ•\æ',_binary '\ác‚Šˆk\Çyq­›¬`o€\ï\Þf~a¨\É, 3š','',0,'?'),(_binary 'T´]\\gø¯ö4ÅºuP²;','wp-admin/css/admin-menu-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡‘†ö>\â|‡‹L¾u 0',_binary '+{ñ6­ÿ„ôOó­\â\è,–wÒž\ÓcŸžÓ‘¸û°n\Ìl','',0,'?'),(_binary '[bXL¢‡`%8\Ù\çô 8','wp-content/plugins/yith-woocommerce-wishlist/plugin-options/add_to_wishlist-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¢\æOT›y¾6gÂ¯§',_binary 'y\ëœoA\æ\Ãûœ «ü…^ô\"\ÔsI³b©ð^Z\ÕZ\ÉC}','',0,'?'),(_binary '_˜\ÙPVZ\Î\é¥\Ñp\Ûç‘½','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/PublishBeforeTimeRuleProcessor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gp\Ë~†\nsõ–\íEü\ß\çŠ:',_binary '\ìxý>.•\æƒò:‚\Î%v\íŠAq\Ê\ÄÀysCp\"\è[','',0,'?'),(_binary 'b\ï§’p°A°+\Ô-+Ê‰','wp-admin/js/widgets/text-widgets.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ªØº\Ô0Œ\Ó{8IUú²à§£',_binary '+k	\È/\ç¹,Z]ù.›ð¼V€‹j‰|CÛ‡l»Å«','',0,'?'),(_binary 'w:[\êÈ·üÿ<{x‰{','wp-content/plugins/yith-woocommerce-compare/plugin-fw/languages/yith-plugin-fw-it_IT.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H,±M\Îp]y¾Þ—H\"F6',_binary '~=”OÇŸ_`9›®cƒ=d \Ø\Þ\â’jª·T&(3<\Ì8\'','',0,'?'),(_binary '€°ª\ÍLòÛµ) \åÍ¥','wp-content/plugins/woocommerce-multilingual/classes/Rest/Exceptions/InvalidTerm.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ü½Ð¤!J3\rR\ÒM\çþ|\ç',_binary '—lx4¯2Á}ü4±\ÒY>\ßt8Sô\ìÈŽè®€îº£¾','',0,'?'),(_binary 'b\Þ\ç¤\ÉÍ•€ñ+f3¡c','wp-includes/blocks/latest-posts/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^Ç¾a¦\0¹\álpP;',_binary 'w£B\ä}BnÇ¾˜¦\ç5ñ\Í\×\Ãz®MW$FòZ·}J?¹?','',0,'?'),(_binary '…\"@8òWß¥z@Wµ•G','wp-content/plugins/woocommerce/src/Database/Migrations/CustomOrderTable/WPPostToCOTMigrator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª®\ÒÃ¾N5\ÕHóó•I\×\Ç\Â',_binary '–=KgÈ¥œ\Å\È)\êL\å¶\ÉKÿd?;\ëjü?ù','',0,'?'),(_binary '…e„½Â°„(—4”€ºó\0','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/stock-filter/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\éÂ¬\è•oÅ¤Aª\Ç@>Ÿ\àP',_binary '=\è¼öLnT³µÏ«Ë§2P/>\ÞÌ­´VXv=','',0,'?'),(_binary '†»\Å\0oXh,/÷*','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/sidebarlist.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^©±\Â\"·¦è€€´Jñ\ïŒ÷',_binary 'p\éÚ«º\Ô\nsø]\ål¦B»\ÌT°À=9ô÷aR‰:','',0,'?'),(_binary '†ð™¾ö1\Å\Í\î¶G¨m','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/views/icon-128x128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n(yP|\ät\Ö`Vûk¡’\"',_binary '\à¸ù\è\ÓsÁ\ÂÞþ®#j\Ù)¸T\áòj	&“K§H˜\ç','',0,'?'),(_binary '‡N8c\âH Bp\Í1\Ë\Æ','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/support/class-otgs-installer-support-template-factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ý(\Â\Ý\é^\"Õ§‹JDsVy”',_binary '©¡Ý©ZOÏ»É¬\å\è\ìMª7V\Z\Æ[\è+<¸_xrQhô','',0,'?'),(_binary '‹œ/þ¨5\í\Ì0´\äh','wp-content/plugins/woocommerce-currency-switcher/img/woot_banner-old.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…O$[€L.¾•u\ä\ãn$J',_binary 'hM(n9\\Þ \Æ\Í\æ]\Æ8+\Ùc¶66u¨‹@W\Zbô¢\ê','',0,'?'),(_binary '“—¬%bQñ£“bM<\Öx','wp-includes/js/imgareaselect/border-anim-h.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\Ã\Ä,\ÈntZ^6¶{Lp¡4',_binary 'qs\ßc©\Ìõhš\Í\àm-ú%\êx¨\ZB™\ìx\ß\'\ê\ã…E:','',0,'?'),(_binary '– ù±<\äV0q\0@¸','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/images/submenu-icon-a.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\ÕO#B„ºZ\ê\Ô}zW\Ç',_binary 'T¢É¿-\È@ôLC|¬º¢F€Z\ÄO5t%\nL.\Ì#ÿ','',0,'?'),(_binary '™-6”Yw@½i®\ë£Á=','wp-content/plugins/wordfence/modules/login-security/classes/model/text/html.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÏOh\æ\Ù\Ú\Å€O<FÒ¬\Æ',_binary 'PŽJ\ç¾H·¯ñt™Ns¿ûnd*Fˆ\'WW\Íaqýô]','',0,'?'),(_binary '¡¡¨¾n2§´hƒ•¡','wp-content/plugins/yith-woocommerce-wishlist/includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ìd,?_\Z¬BjtœD\æÀ',_binary 'mó\Ë\0Wµwp1\ÜhRc<ÂºœÓŠ|$\×#ó§˜','',0,'?'),(_binary '¢k©kO\Ë%`\ìq\êXX§','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-discount/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(ŒÄ«[k\×m8\ç±J\Þ\à(',_binary 'lKŒÑŒV4A{©\Ý¾A^~‰2—XE\çý}–¤\å\Å','',0,'?'),(_binary '¥B»\ßÈ‹\Õ\\_\ÞDw;4','wp-content/plugins/woocommerce/assets/css/activation-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I3û¸$ž0\0ÿ¹\ã¸,',_binary '\ç™[\Þ\"˜ˆEª\ÂLÀ•Òƒw\ÆYSb\0ö|Wu$Z\ê*','',0,'?'),(_binary '©¸¥0,X\è­\Û','wp-includes/css/dist/edit-post/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Õ$\"42W(°˜4²€¸’d',_binary 'I!\×QL’½\Ùüi§·“­8ye½´úy_µrÜ\Óó','',0,'?'),(_binary '¸\Ä\ëD¨(\Â@\å\Èý\àgü\\','wp-content/themes/flatsome/inc/builder/shortcodes/values/nav-types-radio.php',0,_binary 'VÖ­fRº*½û¨((',_binary 'VÖ­fRº*½û¨((',_binary 'Šx\Ós¢tÓ¡?qu™8Dô(K½\Éq¾‹‡\Çs\Üþž','',0,'?'),(_binary '»?ò9(ñ§þ\áðËŽk\Ç','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-title-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰§k)ñ`‘£=¤_™ƒ\Ê',_binary 'Q3?\è„×±a$ñ  FX\È_§\'¿\ãÚ±óIÀ\ÖLž','',0,'?'),(_binary '\Å\Ì\Ó(›‰—¨Ö¨\0€r5­','wp-content/plugins/yith-woocommerce-wishlist/assets/fonts/fontawesome-webfont.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°hqòþ\æ²A\Ö‚®“i¹',_binary '’¢	q68…xÖ…\ã\\üªs\rN¾~ƒ.—ûZØ®[\"','',0,'?'),(_binary '\Ç17Ø©\å\Ùm\"Z`D«\ÍÀ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Domain/Services/GoogleAnalytics.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ËJ\Å)þ…|3\ç[\í\á?¶¾\é',_binary 'µq–\í@‘\Û0\ÑJ_L\r:;Œmõ\ÉG¶›=B','',0,'?'),(_binary '\ÉÀ	+[œ:ª/}<','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`	\Ú=\Û{¥³`F˜\ZG7',_binary 'c6\Õy ó)ö‡‹µ\Õ\ÌSº\Ò\êº‰Šq![d\îkúmø','',0,'?'),(_binary '\Ëc™uŽ“\ËúI\â’','wp-content/themes/flatsome/inc/extensions/flatsome-infinite-scroll/class-flatsome-infinite-scroll.php',0,_binary 'z¶H¶\ìÀ›ý¾•µ‚',_binary 'z¶H¶\ìÀ›ý¾•µ‚',_binary 'TZzRñø4AL¨\ÎL|ˆœ£vñ\ÏRºp,\Þ}ª{|','',0,'?'),(_binary '\Ö\âT/±1s‚»ÁªqªL','wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_LogEntry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|@m\ê\Ì\Þ|X9›p9\Õ',_binary 'œ#jŸ\Ð\îÁž/÷ü7OY0Kš+bªñò+¢','',0,'?'),(_binary '\è{{\ì1F-µ®Á±\Ù\\‹À','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/compatibility-notices/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\Ñ\ÌkØ¦\èÃ¦Œ\ß3!{;',_binary 'ªÞ¸§s6\ÚCö—ß”¸ Ù˜“øº’¢\æ\àG–÷¤','',0,'?'),(_binary '\ëƒ\Çlg\È\ëó\ä±}\è7','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/languages/yith-plugin-fw-es_ES.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é8\Zƒ„\ï\Òø4R\Í+~9¶',_binary 'G\ä~y„\ÙWÚ‹aù\×†¤G—{r\Ç%S\ïö©[¨\í','',0,'?'),(_binary 'ð\0@„²\Ñ5\rB','wp-content/plugins/woocommerce/includes/class-wc-product-external.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ï\'V-\Ê\ë\Ç]C! ¹\nU',_binary '‡y(\r0\n¬Ö§™0N\æOy¤pûƒ\Èc7\èyõ\r™\Ú$','',0,'?'),(_binary 'ògÐ ˆA\ÃÐœ‹S°Eš','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/multi-colorpicker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PjY]5\ïYWD:,6¶',_binary '{\ÝqQþñ\æ.Q˜HI¾¿uò\Zh\0%^,™\Ç®É¬','',0,'?'),(_binary 'ó]a„dZ&5\í>\Ø4‡','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/fonts/font-awesome/fontawesome-webfont.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ\ænq*Š\îõ€ZF‰)2­',_binary '\áü&4\"\rQjX\ãmN\"\ã\É?P¾o”\Í\\°\Æõ?¹ùŒ','',0,'?'),(_binary 'ö\Ã3c\Ü\Z\ÚA0\È<B','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/payment-methods.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E’˜I+T?\Ûñ<\åÁX\Æ',_binary 'I\Óf]¼m§\Ô=/ˆ…\ì\ÙXø¸¤\Ë›ŠÛÀ„\Ë$ö','',0,'?'),(_binary '÷´&ú|_d>“ð5ñ‘K','wp-content/themes/flatsome/inc/builder/shortcodes/templates/text_box.html',0,_binary '_¿©¸z^]¦º((>vÏ²',_binary '_¿©¸z^]¦º((>vÏ²',_binary '{óH6†-­W;\Èbyó\Ír\à\Æ\ÕK\nW\\S]j\å;','',0,'?'),(_binary 'ü«i)33Ü¥\Ñ\Çs\Ú*','wp-admin/includes/class-wp-ms-users-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=ÛÚ™M\à§Ì¤\ÏYLŠ–',_binary 'ór22z;¸C?ÀV#bL\r„>X 2\Ö~Jn3yò','',0,'?'),(_binary 'ü\Å\Ö\\F—;¥ñQe€\Â','wp-content/plugins/woocommerce-currency-switcher/languages/woocommerce-currency-switcher-es_ES.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KZ÷\î \îk©\ì\êü½\'@T',_binary '@E\äB\Þ&@Ä“ü|“\Ù`\Ù\í\Î\ÑÚ¥yŽ\ËFZôr\r¡','',0,'?'),(_binary '\"\Ðü4\ïbÀUÝš„™\æ','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-wc-strings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bAY®©ÕŸa©k&\Üùð',_binary 'ûªt`\Ø	(Ýª3B\Zc™¼¯$\èh[³˜VTC','',0,'?'),(_binary '\Æq\âJG‰ˆK[?¥©','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-heading/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'øL¸ˆ¿p›\r‡‚Ÿ%\ë¶',_binary '«\ÊX\nÀFð\êþ7q¨å²á°°%Ëº/S^\Ög~†Ä–','',0,'?'),(_binary '	_`\â#+l¶\"—C4','wp-content/plugins/nextend-facebook-connect/admin/images/error.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\"A,\Ð\â(b·6bh¬²',_binary '\ßõ|g“‚.U(ò‚wgˆr®f\ÊN‡\"[ý6Mý\á\Â\Æ','',0,'?'),(_binary '\n\é\Ïhc1ÉžÊ‰’\'e†','wp-content/plugins/woocommerce/vendor/composer/installers/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\ÔÜ¼\'Z”y£{\ï\Ï',_binary '\ã¡÷\\y¾ÀÞŸ#´Þÿ\Z¼NV\ç´\ÝüwøC`¤u^\Í','',0,'?'),(_binary 'ÿó–e\î—£jÈ²©P','wp-content/plugins/woocommerce/assets/images/onboarding/other-small.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ûL‘4)6\èB \Óh€6¿`',_binary '\ÍÁ0|\â!y\ì¥\rœö1‘9L\Ê(d\Ä\Zi\è„ß‚\Ã','',0,'?'),(_binary '\rP÷)ž4_\"»™\'1','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-sub.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­@ŸÜŒþ\ÓÍ£~E||W\×r',_binary 'J\ê4Š\í5â¯·’XŸœ™I[„)ù*\ä•3=TUÿgžK','',0,'?'),(_binary 'á¬Š¥à¹²^#¾e\Â','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/support/class-otgs-installer-connection-test.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é¦\ì!4\Ñ^eõ¸½bj\n9',_binary '\å³ú\Â:Ÿªtfyût1z´¼§ña\äj\É;f¬$\Å:','',0,'?'),(_binary '3’-€›Gi£W\àW\à','wp-content/plugins/woocommerce/assets/css/photoswipe/default-skin/default-skin.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\éƒ+ù¬Ž`Ÿ^\Îb—BW\"\r',_binary '–ugUŸ•\ï#\Î\Ý=	}¨~Kb\ËtJ}ô¸¤\Å36','',0,'?'),(_binary '+.\'p ¨I\Ëùx\ìSó','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-price.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nWIRü½•þ«rq\é',_binary 'nÀÀ\í\èÁ\Í.R¶2(p]Œ6‡`!/pÃŒ=ù\ç\Ö\â\ì','',0,'?'),(_binary '24²³\ë˜}@púÅœ\Õ','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/TestCheckout.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ùW\ÆÀmU·©º€ô*-úJ\Ä',_binary '¡Q\è\ÃWC)zÐŒ\Ñ¾r\ï•[\î\Õ~ºÁ\r¥ö','',0,'?'),(_binary '80ANHg+(¨ŸYx}','wp-content/plugins/woocommerce/includes/admin/views/html-notice-download-dir-sync-complete.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£Œu·\×(\á4¬G\Z\æ',_binary '\à‰Œ*B\Ò¢7\î\Ù?ž6”Iƒ¨ }{h`HeB\áŸ','',0,'?'),(_binary '?^—K•\Ò\ä^aS	wŠ\Ø\ï','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/webfonts/fa-solid-900.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V”\Þ \ÖÁ\é\Ñð‰^\èV',_binary '\äªä  H\Ø2ñ€\íˆ[\ÊP\Ã\\O@O*HQ~9\Îdm','',0,'?'),(_binary 'Bs\Ñøõ^•6uüS\Üp','wp-content/plugins/woocommerce/templates/single-product/related.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÅI3Q\×a(\ïûV[',_binary '\Ñz.§\Ïód¹+\Ù\ëI.|¸*€ñŽ \ÚT\n®%','',0,'?'),(_binary 'FˆXOmbdA6N+\Õ\Ë\\','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-attribute-term-control/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd2\ßò” \ÅNEZr3V',_binary '\ÞI†ý®:ƒk\n–\æ\ßr»3@{­ßˆ3»=¯i\ê¦n\'\ä','',0,'?'),(_binary 'M\æýò»›`û/¦ˆý2','wp-content/plugins/woocommerce/templates/myaccount/dashboard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ø[9ˆ¨KÊ§Û™˜n\Ô*',_binary '\ÐVü=\Â\Õ\à\\(š™™¯\Ð;ö´\Ñv8*\Ý\Ô ™\ã]­~','',0,'?'),(_binary 'O\Åy/\Çq‰\î`Sa8\è7','wp-content/plugins/woocommerce/packages/action-scheduler/classes/migration/ActionScheduler_DBStoreMigrator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÉŽ„ØŽ’\\\Ò9{…Z\Ü',_binary '\ÍgCA$\éÿ½pad¸\×e\'\Ø\Zú$S\Ñ\Ç8öp¥[','',0,'?'),(_binary ']5Zc‚\Êx\àZ•›I§A|','wp-content/themes/flatsome/inc/builder/shortcodes/values/grids.php',0,_binary '{[ygn>§bò›‡T‡oT',_binary '{[ygn>§bò›‡T‡oT',_binary 'U$?24é‹\Ú?¾ZTÿ—\ÆgŽŠc¢†3i6\Z\è9…','',0,'?'),(_binary ']\ã\Øå­¦Š€˜\Æ\Û\Å','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/payment-methods/payment-method-config-helper.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1¾©_±\ÅK«6¦T\î',_binary 'Vû\ÛÕ—·\æžY\ÚÚ\Î\Z½¿¶\ÕV‘Ÿ˜‚X«nL(Cg','',0,'?'),(_binary 'n;ŒO\è\Æ;JaÅ—š;','wp-content/plugins/woocommerce/assets/images/empty-content.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñ6ñ°t‹\\Ÿb¼gý¼',_binary '“ „Ñ“\n\í*BŠ‹\×og¥\'ŒªË¼þºSòQ·¦\Ì','',0,'?'),(_binary 'o\æ\àñ	l\ÑÑ´\Æcd','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/H.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æ\×ø\n°À¤@Lj‡wD\ê',_binary '\r¯8úd³ Ÿ‡²ð\×8sÚ‡ª\Î\î6 \èFúÈŒ\Ï','',0,'?'),(_binary 'w]…oÔú½veŽ8\Þs','wp-content/plugins/yith-woocommerce-compare/assets/js/woocompare.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œ\Ù5ðÿÒ±÷dßŒÐ•',_binary '¤³\\§\'ó\â\Ú\ë‘(?l^ôV<\áIc|›N\ìÙ‚\î','',0,'?'),(_binary '†JÞ©™xÙ“\\r(e-º','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/yithemes-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°JE\ãu`\Û¹\æ?£ª¥',_binary 'ˆV´ù”ö\ÌsK\â\Ü\îb\'ü?¨ÿöTÕŒJ\ÌÀ\Ï\äö÷\ä','',0,'?'),(_binary '‰™Ü°ó\Õ\Ð5\ä\Ç)—aH','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/blocks-registry/utils.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'üi¨va\É\Ü\Å*\Ù0',_binary 'õ¼@q\ÒõºL\ÂZk)Â—Á~5jŽ\ì\ÍApeÝ¥\Ôôa\Ê','',0,'?'),(_binary 'Žø+Ÿóú·´UÜ€\0·','wp-content/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories/Admin/Table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…#*‡ ’ô#\è\Ï/¨\í\Õ',_binary 'ø˜˜ˆ˜G\Ù\ê„\nŸü]“Ó«\Ö\nY\Ì\0\ÛfV¸*ª','',0,'?'),(_binary '”\è\Z–µ3•°‘','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-google-analytics.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wðü›”k†6”Vt\á\é\Ô',_binary 'a}¶®+¿-\ÛÀµ­»;h\å½`6q6ÒœH\î6W\îz','',0,'?'),(_binary '–r\Î\Ü0=12 7¿LT','wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-sport-shop.php',0,_binary '\'#B§R ]”ø˜Io',_binary '\'#B§R ]”ø˜Io',_binary '\ìI\0«òñZÿ°XÐ€\Ú\ïP\Ü9³§\Ä8(B?\éÀ\ÊeT\æ\ã','',0,'?'),(_binary 'žO(<† ‰—Ÿ\ë…','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\".\çOù„œ	•Á\"\ìO-B',_binary '\Ã`Åšç¤ôƒy\Îb´¶¢k\ít¼\Ê\äŒB±\èI©\Ô','',0,'?'),(_binary 'žx\Ã\Â|s¾ƒ\Ä\×KŸaõ','wp-content/plugins/wordfence/views/common/page-help.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à!\ï\È÷YJ¡ðJk›\Íô',_binary '› \Z=¡DB×£§	%%A?Ow›\Ð*/\Þ~u','',0,'?'),(_binary '¨O\"û9 ›-Î‘\rûhB','wp-content/themes/flatsome/inc/admin/kirki/modules/custom-sections/sections.js',0,_binary 'Í†\îŸ¶\ÚgL%R\êzmŒ\Å',_binary 'Í†\îŸ¶\ÚgL%R\êzmŒ\Å',_binary 'u&\çL5M\îc\Ì\Ö\Â\î	\Ï>\ã_/M\æ@ \Ç¯lp\à','',0,'?'),(_binary '«^ÀBq\Ð\æA4\ÔÀ','wp-content/themes/flatsome/inc/admin/panel/sections/tab-tutorials.php',0,_binary '\Ûô-Rµ&¾õ\È~\Úóx\É',_binary '\Ûô-Rµ&¾õ\È~\Úóx\É',_binary '%83m»`|\Æñ6Ð˜\â™\ëúh#|ònõHª|OÖ¾V','',0,'?'),(_binary '½½“#­ù\Û	>û7','wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\äI\ã\Úm\Å…üLWyÝ“H',_binary '\rflôÕ¤/\å;l\\\ä\â\\.6‚Žr\Ç#Pœ[\ÓÁ\Ù','',0,'?'),(_binary '½óÝžT#ÁA\Èz\ìA','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/Plugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WnhJ¤4¯/©Žu4\0vob',_binary 'y\àW?G|7³þúHÿ~A<~äª„3\à‰úp·\è’µ','',0,'?'),(_binary '¿y Z¿¨1r[„=“Qµ','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yit-wp-pointer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'û\"J\n)\ÑO”•¾¢‹µh',_binary '\æ*x ¹«ð)·S\"c3.¯û˜PW\Å	\æ6\å\éS]','',0,'?'),(_binary '\Ã	\Ô\Å\ày¹¾F!I\â\çq','wp-content/plugins/products-compare-for-woocommerce/style_templates/separate-footer/berocket-separate-footer.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"|ÿlÀ!~\ß9*³ ',_binary '®2>X‘j¼mO¢úFÜ³­œ\0L	\íû]R¢\ë\íÿ\Ó','',0,'?'),(_binary '\Äª\ã\Òð”G§·½','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-report-customers-totals-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ªÓœYf\ßZü¡4‘H\ÙU',_binary '˜+8z*SYÇ³œLmx6«fZ«\ÇÉ…\ÒqÈ™\ÉA','',0,'?'),(_binary 'Äƒf•¹©¹HHÀ\àšÀ\ë¸','wp-includes/blocks/navigation/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bXOdw\Â[•S¨C- ¢.',_binary '\ZŽš™R\Ø0þw¼E¥I\Ñ S?#\ë\å%3W¬¶\Ø\r®–o','',0,'?'),(_binary 'Å†L¥G¶ÀP(\íÎ‰\ÃÈ¯','wp-admin/js/widgets/media-widgets.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ž\Þý\"§“×‹@¿/\ëa®\â',_binary '\ÍW˜I\â\Ì`6¡3ÿXŠAbþ#;r²\ív„µŠ{Mp6','',0,'?'),(_binary 'Ë¬\çA1\Ë\Ò;u\r¾1.OÀ','wp-content/plugins/woocommerce/assets/client/admin/explat/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¶HY#Tj\Ðf.ø+Õ«û\Ö',_binary '²E‚Â¦Á#©%á™£JŠŒ\é\Äs[\Ó\ä\ÈñY‰`y_\Í\Z','',0,'?'),(_binary '\Ï\'\"’X\áo\Ò? AR\0','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library/cart.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ë3k\ß\æ0÷µ\æ\ÄÇ‚B',_binary '\èH€\àA}\Æ%˜µÀwú\áQa\ÒÆ·D‹gB\ç:I\ìW„','',0,'?'),(_binary '\Ô[\'\áÁi‡’ }‹X¾','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/price-slider/utils.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't<BÍ‰õ@,A­AG¬',_binary '’ÁDÙ£5\Ç\Æþ!\ìA‰F º\Ð\Ê\0A2›:¼\ë%Nü','',0,'?'),(_binary '\Þ&\Ñ	A\ÂH\Ú\ì)¥I&‚ô','wp-includes/js/dist/vendor/moment.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}J\Í3­¨¹p\Ï\åö\äSòf',_binary '†\îv\ßÿð[c\Ô\Âÿe\Êv;\Ý*WgOAG\Ã@\ëû‰£i&','',0,'?'),(_binary '\ßÿ˜I\â+P\Õ	™ö‘IK¼','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/test/errors.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=ðMÈ”$\êrwv\Ô\åf•¾\ä',_binary '\ï_\Ñ6f^\ÝRif½P‡nD\Çôd—I\r®#\Ìðs','',0,'?'),(_binary '\ëþ\Ð\"\à\Åñ¿/p‹}Á\Ì','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-image-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•J€£û\\1ö\îp\ÇKžm',_binary '†™\Ù5›\×\Ô\Ë\Úqo˜i½\Ù´\ÍÏ·ƒX¡ru\æ\æAK','',0,'?'),(_binary 'òcY„F¶\êž\ß}\åj`½¶','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3‚ñ‘ý\ë’b(æµÐš',_binary 'n;ˆ<\Ù±	Ç•°-W\Õt“ù]\ÎÁ<‘s°\ê\Öu¡','',0,'?'),(_binary 'ô\çV®‹Ô…èž¬·\Z—÷«','wp-content/plugins/nextend-facebook-connect/providers/yahoo/yahoo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':h}kp;o8³\ÕO4',_binary '\èÌ«ö\×LSª\Ó3q8#‚½3¿\íø\É^–;4','',0,'?'),(_binary 'ù»\Ø\Ì \ÏH(\á\Ü\ã§\Ó','wp-content/plugins/woocommerce/assets/images/marketing/pinterest.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J/\â¿^h„ùZQ$;¬]',_binary '1,n\í$@ød>´\î\É\Ës§\Û\Û\èZ\ËYG}P\â','',0,'?'),(_binary 'ù\Ê\Ëð`	÷hõ\\ƒm1\Û','wp-content/plugins/woocommerce/src/Database/Migrations/CustomOrderTable/WPPostToOrderOpTableMigrator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Gº¼“>Þ‡a/©W˜\Øu',_binary 'W.\"\ïÇ zA\çò£©›?\ÞA)Â¤-\Ùeòš\Æ\îJ%¶','',0,'?'),(_binary '\Ú\Z»µÀ(8ûT\0y\Ûö=','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/derive-selected-shipping-rates.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rZº¬bAœ,\í	¬]\Þ',_binary '\á\Ør\×\É\á‡R’«ñp5v\07h\Þ_´ð¼/\Ó‰','',0,'?'),(_binary '\r÷\'TzGG#€ZAR\Í\Ö\Ø','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-product/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…/Lž\Ó\ÏR‰\à¹J\î¤D¢',_binary 'ª–ìª¿ô³\ê7—i\Þd`ôµž“ÿù2B/²’\æˆ\åþö·','',0,'?'),(_binary '&\Ïñ—»2 ý¨\ä\Å','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/composer-php52.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ylh\Êwž%Re¯\ç†',_binary '´›\ä¸\njq½W\í\Û	\×v_\æ#„\ï fº\àµ~\Í\ÒR‘>','',0,'?'),(_binary ' 2…AŒYŒo)]™\Ò¦','wp-content/plugins/ti-woocommerce-wishlist/assets/css/public-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Î\Ç&\Î$\0\Ë?’	Ž\á©t',_binary 'mH¬\0„\"„žUct·…º\ÊŠõ’K\Ð?\Ç(—{\ÝY','',0,'?'),(_binary '#\æ7µ\ír\ÉY\Ð\0¼\ái','wp-content/plugins/wordfence/views/common/status-tooltip.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F‰òfZ\íØPIR&i\æ§\é',_binary 'ùEQtY€=\ÇÀj.#eWãˆ¤A3QcPýðüT\Û','',0,'?'),(_binary '&#\ÙpªJ£¨h\á','wp-content/plugins/wordfence/views/scanner/site-cleaning-bottom.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J&|\ãÉ¦\ã\Èô±º{“\Þ',_binary '\á7\ëž\r½üO!6ª¸\Îk»-Ú¥ûv,§f;oJ[‚\È','',0,'?'),(_binary '(:­ótg†\Ø\ï˜\ÆÏ¬','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/MerchantEmailNotifications.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\èx\Ìò«€X\á-ÀÀZ3\Ð',_binary '¹V¹L¿Š€0^5žjó/”ÿ\Ýõ°†ns\ê˜…\n…‘\Ç','',0,'?'),(_binary ')¥2	\Ã\Æ’ó\Ý\ÊDuHZ','wp-content/themes/flatsome/assets/img/payment-icons/icon-mastercard-2.svg.php',0,_binary 'ž’:\Æxbùtò\Ñ<\ÏXñ\Ë\Ò',_binary 'ž’:\Æxbùtò\Ñ<\ÏXñ\Ë\Ò',_binary ';¨q\ê\Ê$¢­\æ· Œö°ó?WY®vD\Ñ\ã','',0,'?'),(_binary ')µ^&X=\Zo¨Áº‚\"&','wp-content/themes/flatsome/inc/admin/envato_setup/child-theme/child-theme-css.php',0,_binary 'HQc\nbQ=c`3\ë`e›˜',_binary 'HQc\nbQ=c`3\ë`e›˜',_binary 'Ü©\ÝQ!¼8\Ñk#Hw\×\îI\á°jð05S4²Q›\ç¯\×','',0,'?'),(_binary ',!#Q–ƒP[;º•›\Ä','wp-includes/sodium_compat/lib/sodium_compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æR\ÇP\é‡yƒBB&F4',_binary '\Êk¸Šµ\Ï\Ú\Úøi\Ä]J\ßõŽ	\Ô‰Æ™Û°Tlþ¢x¸','',0,'?'),(_binary '4®\ÚÛ¥‘;»0Š.*','wp-content/plugins/wordfence/views/blocking/country-modal.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(G\"n¾rPi\Ä)ß¬\àj',_binary '\r‰FA†me a	r•-•w‡Y\ËE\Öu\Ê\Î\ãôñu','',0,'?'),(_binary '8I) U\'\ïI!öýpa#','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OÃYõ,‡\\Ÿ®-\Zñ*',_binary 'V#›|q1V\îü×-\Ê(\ã\ß#‚‘òô\ÕØ®3-','',0,'?'),(_binary ':ë­²c\à‡\×RPe(','wp-includes/rest-api/class-wp-rest-server.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þð®¹¬H\ê:¬¨ü‚ˆ',_binary 'w!›c\Ü\Æ5\Ñx5|–¦3]]\Æü¾¢I\Ð\ØG\Ïî¿ŽJ','',0,'?'),(_binary 'A3(\à\ä,Ož´þ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/order-summary/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨ôˆ $\àó\ã\ÄmE\ãóÝ¸ƒ',_binary 'ÿ—kÑ \çôÜ—˜\Æú2‹M¢\ïnöy§šôš4\ì’','',0,'?'),(_binary 'K\ÐúxP0&¤€ñO:p','wp-includes/blocks/archives/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rv}»\')4~~ðŽ',_binary 'Æ¸óC¾YMÀ€®ð¼a.L¢\Ç\Ý8\ÝyQ\á°vŸq‚Iø','',0,'?'),(_binary '_µ\ÈôŠœ·…\Ý\å]]\íü\ß','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z Š\"I\îó\Ë/„ú…®',_binary '\"÷¾´[&\æPz>|Öª!­HX1¯»©\æ\Ó\Ò\Èb','',0,'?'),(_binary 'eØŸ÷v¤‹\ãç¬ª‹Ej','wp-content/plugins/wordfence/lib/dashboard/widget_localattacks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Í ¾UwYI‰\äI\Ð}\â',_binary '½ø¿Ý \r\éñÚ—UòDôPTÁû\ÉV+6€\Ñ^:2!ƒ\Ø\Ù','',0,'?'),(_binary 'iWe±\×\êC—\\·	zù\Ä','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/blocks-registry/register-checkout-block.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ù\Í„\Ä,÷Qó\Öv÷Z\ÍR',_binary 'Ø³†¨ý_{ MA\ë¥`‰x\ê(‡\à‹ž\Òñô\é­f','',0,'?'),(_binary 'k\0\ZÁš\á{ Ý›6ñ','wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\î’\î\ÒH.P55\í\×SX›\î\Ý',_binary '‹¥RY­ÔƒcÎ¥ƒòÝ€<¨Ëždƒœ^\rŒ¥s8','',0,'?'),(_binary 'k˜‘²\Ðb…\ÉgSˆ','wp-includes/js/tinymce/plugins/wplink/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷¬€\ß6¿l°UOaDöQ',_binary 'Ÿ¹\á\ÞjT\Äq\èT®¨I:KZ\â\æa\n™6­U7e¬-','',0,'?'),(_binary 'lTÐ€2¡»‡´¤o\îª\ß','wp-content/plugins/woocommerce/assets/client/admin/chunks/4011.style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡c£„¶\Îx´]*Œ5O\Ê\Û',_binary 'Tj³\åL\è¨32Ð‰†\Ï÷9¦õ»òP\êu\çcý®oð','',0,'?'),(_binary 'lôI¼ù>º\åøšöÊ¼þ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartCoupons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†O¦—!d\É\Ð\ëi¢sxZ%',_binary '\àh¥¼\ÐO!ª\Åé—¯L%ç¡´Œ+V\Ä<5È£ŽI','',0,'?'),(_binary 'uºf¸\"ð 4Ru\"s','wp-content/plugins/woocommerce/src/Database/Migrations/CustomOrderTable/WPPostToOrderTableMigrator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x„IY><ðp\ê»\èÀP/',_binary '½£Ù­69L$GuÀ·R0Bh0`ORø@e™X¥Œd\r','',0,'?'),(_binary 'z5ñeE©p;Í°¿j\Û\Ì','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-search/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ö§t„\×,H%[…5‘dX',_binary '+è­«¢	–\×÷øsÂ 8´1\írý1\É|*¨\Ûf²a\Ð','',0,'?'),(_binary 'ƒ\ßÒ»\ÂH\ÞùnoEö%','wp-content/plugins/ti-woocommerce-wishlist/templates/ti-wishlist.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\Ê/ÿN„µÎ«\Ø¬\ÜQ',_binary 'Ò¢D½ªxˆÎ$MO \Ñ\è\×cP\çw^¶µnh[c','',0,'?'),(_binary '†0ªq¯x}&D/K\á\ÕD','wp-content/themes/flatsome/inc/shortcodes/price_table.php',0,_binary '³LŸ\ÔT\Ì\å£m0·•9kƒ',_binary '³LŸ\ÔT\Ì\å£m0·•9kƒ',_binary 'eJ\è+0(¬ž&k¦Ä‹ˆC¹ôlÒ·\í_Èz4º','',0,'?'),(_binary 'ˆ`À!ªW™F¦¶JXuµ','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-product-attributes-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\Äû©]õÆ¾#¸¶\ÅUy',_binary '[B¹\Ó\ÜÂ§Àjÿš\'übdÇ¸\ÕN»¨T\è>3F›T\ËEÀ','',0,'?'),(_binary '™Ãµa\Î	\Ã\Þ\Ï3%j\ß','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$­cš63>¿©n\ÛM\"',_binary '\Õ\Î\ßõ³üd\â®û\Ê1”Þ™Gp#·\\3\éføš\'\å.','',0,'?'),(_binary 'šý¥,?°\ã\"B*/]ü\Ò','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/Redaxo5Installer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')§µ\à\ì\êŠýº\ë^R!-\Â',_binary '`¦\ç`Œù1œ\Ý\0˜2•\Þ\'\ÐðU·A•ÝŒ !²^B\Å','',0,'?'),(_binary '8cù·.XöAe€ ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductCategoryList.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§¢\í\Ë)À»2\Ô\æbþ‚n ',_binary 'Wžº\ÃV‹ý\é~S\å2\ZÿEuD\Þ#-','',0,'?'),(_binary 'ž\"\rú„*š\'DòiÛ™¹','wp-content/plugins/woocommerce-multilingual/classes/urls/class-wcml-xdomain-data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÒG¹q¨pš£3c\×',_binary 'Ýš^\ë>\å\ì\ÌnÚ™zðœq¦1êˆ–]®\ãHN\ã','',0,'?'),(_binary 'ž›\ÔB’3¬>\ÅRÁø','wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/TH.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ü\Ôö\'$œ\"Ž\Ë^v~B9D',_binary '¢¯\Î\×a\ç)Gº˜kY˜!q}\ÖW_\Z £‘|‘\Ë','',0,'?'),(_binary 'žª€\ï57›—D\×;TkC','wp-includes/blocks/social-links/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V[z\ä\ÞhTÞ£\Ï.ƒº<',_binary '¬­:{\Ó×žD,u÷Œx¢¤]žr@;\Ø\Ì\Õ^=\Öp','',0,'?'),(_binary 'ŸúƒL\â\Ô.\n\Þw;[','wp-content/plugins/wordfence/lib/dashboard/widget_logins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E	4múY\×>À`•ú',_binary '\Ù#·_§[Ñ¸¾\î@u¸Ha\Æ(+j>V\Z+ºq[V','',0,'?'),(_binary '¦±–\ëg„~\Òw\Z\Ðhh','wp-admin/css/themes-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UªŒø\nž\Ò\ä(Ê¥X',_binary ',Š;¸ÝŒ8\ä\ÏI•Ao\Ä¥dÑ›V¡\èÍ‡V\Ì\Ò»‹','',0,'?'),(_binary '®¨½·V¨IÇ®\î½[O','wp-content/plugins/woocommerce/src/Internal/Admin/Homescreen.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\ßÌž¢\ï+&•bø\ßJ<',_binary 'Ô²ò81R¦FbR+µ\èXˆÑ”Þ¸y?\á–\Ò\\Hcœ¤','',0,'?'),(_binary '¯À.sR±´Ì¿.¤,Š','wp-content/plugins/woocommerce/includes/interfaces/class-wc-payment-token-data-store-interface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÉH\éÃ¯vK¡\0ºÃ´®¸¢',_binary '¼\Æ>¨šO”™´*;·\"*³R ‡\Ï;#\Ê\ß\È³n>Éˆ','',0,'?'),(_binary '¹ü\Ê\Þ\à@vpÍ‚¾Tó\ß\é','wp-content/plugins/woocommerce/assets/client/admin/app/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´S¼ök9‘º¨v~]\È9',_binary 'E¤\í\á#Y\í#V÷I\Z\ëýP/t\"\ËY¼,T®ó\é!†|ò','',0,'?'),(_binary '¼Y\rY\Ñe\Þ\ZX\Ø-k‰98','wp-content/plugins/yith-woocommerce-wishlist/includes/class-yith-wcwl-form-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ç£%\ÙlƒFœ*±y*6ñ',_binary '\'{./E–2þ*†®‘\\Ÿ\Õþ”q¥C¤¤\"–PdH3z','',0,'?'),(_binary '\Ãùšqdœ#…\"®#','wp-content/themes/flatsome/inc/admin/customizer/img/category-box-label.svg',0,_binary 'y\×\Ý1õ$žö\'8A\Zs',_binary 'y\×\Ý1õ$žö\'8A\Zs',_binary 'dkƒÖ¾´,N‘)”2\ßn7¤\îõ¶-|?^žƒp€P','',0,'?'),(_binary '\Èjq\ê\Õ\n‰í«²\ì\â˜uf','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OÃYõ,‡\\Ÿ®-\Zñ*',_binary 'V#›|q1V\îü×-\Ê(\ã\ß#‚‘òô\ÕØ®3-','',0,'?'),(_binary '\Ë \\i®\Æ\Êõ¢x\ã\â(0\Æ','wp-includes/blocks/text-columns/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.%\çQ¼\ìÊ¯vúv~\Z,',_binary '¤¥—™}Ã²Ó³¸\ÊlV\Ñ_÷œ\á\í g\Ï$q#3	\çÇ¹\È\ê','',0,'?'),(_binary '\Õ\'\ê¥M§07;X\Ç^´ƒ…','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-data-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œ\Û]S\Z\åR®:\Û\â©e\Z',_binary '¢8l¤?1ÁxUP@BlD[f²6-ÎŸk\Ócl\å¼','',0,'?'),(_binary '\ßJ-µk^oò‡VkR','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-coupon-form/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à\ÖEQBÿ\Æc\Í\ÎYj\Í9M',_binary '7þz9\àTß ¡gšþ\\÷\nÀ«”G\ÓWT\r3z\Û)T\"','',0,'?'),(_binary '\ãÍ¥`FJ\ÍöS±u','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Kz+U\íÁ\äÅ¸(\ê5\\',_binary '8:½‘o™Iô9,\ê¿=zDk8;\Ñ{A{†\Zij','',0,'?'),(_binary '\ç\âbm€%²‡Š\ÛÚ­Ö«','wp-includes/Requests/Exception/HTTP/502.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L+\î\ÞD‰\ã/n¥cQr',_binary 'ñ/’ˆ¿~UJO¤.Å€#µòE\á‹ÿú5´*Š\'C\Åq','',0,'?'),(_binary 'ñƒr0ø<˜%.\Ò\Ã§t','wp-content/plugins/yith-woocommerce-wishlist/assets/css/themes/oceanwp.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰”M|øþ\îº}ª\ä]¹a',_binary '¥¦\n\Ô/L\\Ë¶\ã=\É\ß\ç\Ê÷Z)‘H¸i¤££öE','',0,'?'),(_binary 'û/†›+3s¸úòLHý[\Ö','wp-content/plugins/woocommerce/src/Admin/API/Reports/Products/Controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦Ý½úÁJsÊ—d+we\È\ã\\',_binary 'v³}4\Ì\ß\rŽHš¤Þ¨	MSñY\â\æM\ÔÃ‘(\Ì~','',0,'?'),(_binary '	QW¯\ïŒˆ~-\Ê\0d\Å','wp-includes/class-phpass.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'óz\Õ÷8¤‚¬»î–›Ø¾O',_binary '²5\Ï{ýdp#½Œd\Ô\Ø3Œx`\ã´J4™j~p›‡ˆ','',0,'?'),(_binary '	?±\Ï\ä†\æ\Û™q™uM','wp-includes/js/mediaelement/mediaelementplayer.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘	ÿ\È5ò)\ä\Îök±y¦~',_binary '_Dtû3×’3p‡a’;9,\Ô\n´ig¹ †C?3\É','',0,'?'),(_binary '	\ìQf\æX¨+÷uÖ²Á<','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/button-simple.svg',0,_binary 'ŽºõÕ¬qû\ë\æp=›',_binary 'ŽºõÕ¬qû\ë\æp=›',_binary '\îœÒ“V3,±\ëSBˆù8%\é‰_\Ã]Q­h\rÆ““\Ü','',0,'?'),(_binary '	Q\ÃK\É*œ©¾$“‚º\á','wp-content/plugins/wordfence/css/wf-onboarding.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰R\çý)\Öò02wö\ndŸ‘',_binary 'Á!vsl\\r\Þö—z“˜¯-\ÅL\æ\ä\\PT„÷À­','',0,'?'),(_binary '	 c‰\ÜD I¢H±\\\Ø','wp-content/themes/flatsome/inc/builder/shortcodes/values/color-helpers.php',0,_binary '\î\n‡5)\ì¸Ú¡S\Å0£Ÿ¹',_binary '\î\n‡5)\ì¸Ú¡S\Å0£Ÿ¹',_binary 'ü\ìñúk \ß\Þ8­²>\ÐÁF?C\ÐYa»\\U¼\Ïk˜a6v','',0,'?'),(_binary '	!L»8\àtº•+e\å2D\Ä\Ê','wp-content/plugins/woocommerce/includes/class-wc-cli.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\ãµWM`°i:\áŸY\Ò@\È',_binary 'q•/¸ô-I\Õvä‚–\Ñ 6e<?\ÞÆ¿€\îA®Km7','',0,'?'),(_binary '	!\Éß¥%­QË€\ìu]1P','wp-content/plugins/yith-woocommerce-compare/init.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\ç\ê327žž \È\rµ¾»',_binary 'M\ê!£·S\\\éº\à0x;`‚ùä±\ê\æ²\"Pt\Ã~Q‹h¥','',0,'?'),(_binary '	\"A\á}Eö\Òc\Ûs^C9H\Å','wp-content/plugins/woocommerce-currency-switcher/img/woof_banner_old.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÔZ\Õ\ÜÄ´µÁ‰y\ra\Ým	',_binary '\äÖœ\Ð\Z\ÚŒ\ès¿:Sæ²¦%­Ò¡òEeCl\Õg\æ\É','',0,'?'),(_binary '	,¹©/Õ•‹!\ç›gyþd','wp-includes/js/media-editor.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Sq\Ý\Øa:\Ü_::Î—F….',_binary '\0Xšn\Æ,\ÏT£P§ \ãQKh&ú¢™xFHô·\Ãu;7','',0,'?'),(_binary '	/c\Ð%\ïo|R…|\ë','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™o÷Ý”]‡”²\Ç\ÎTþKH',_binary '—H­š\âúÁº¿|\0`\á<]iƒ€\Èù‹M¡bTöJ[S¸','',0,'?'),(_binary '	2\Îp\Ï<(Xž\"\êÝµ“','wp-includes/blocks/audio/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5¢ó\ë‘3žyb\çA¬',_binary '­\Ãù@,BW/\æR-¤M\äŒw\ÌÂ›þ¬ÿõ\î]Ù»','',0,'?'),(_binary '	4ô\Þ\ì\"Ë‚­\ãƒh2k\0','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/fonts/font-awesome/fontawesome-webfont.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°hqòþ\æ²A\Ö‚®“i¹',_binary '’¢	q68…xÖ…\ã\\üªs\rN¾~ƒ.—ûZØ®[\"','',0,'?'),(_binary '	7¬®ø¦\×\î\ãf	`','wp-content/plugins/wordfence/images/sort_both.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'šd†m	»8\Ïf¥|\ÅY­\ã',_binary '~\Â%\ïñÛ‰Ž%…‹>öõþˆBl²o‡u·I)È‰7g','',0,'?'),(_binary '	9d\îª,\ÄJœ\å1\ç ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-on-sale/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€õ_Ãq\ÄI¾\"\nÃ',_binary '/W§\ÕN²^4¾95\\l\è\å| Ä‚ñlr–›}w!','',0,'?'),(_binary '	HQŠp¬¸±yF\ÆIm\"~','wp-content/plugins/woocommerce/legacy/js/js-cookie/js.cookie.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nž±õ:ûZí¯sœ†w8',_binary 'ú_\ÚV¢\áôµ-š\Ñ\ïùü§ÀÇ¦÷\è\ÔH¿\êXÈ˜>','',0,'?'),(_binary '	J»…ƒîœ£\×ó;uz','wp-includes/sitemaps/class-wp-sitemaps-provider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž$Ê²6þuø†bs¼|',_binary 'gdw°\'Ê€Ë»\Ý87¿7¨«ñ¶&^\å%«\Zˆ\Ü\å\î¹g','',0,'?'),(_binary '	K^~˜µ’Á!´\r\\\ëY¯','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Node/SelectorNode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3L¹8’lü)Q\"sº\ÕO™',_binary ',©\ËI&] |Ç·wZD§·_HÐ—u\r¯\Ü[³ˆ','',0,'?'),(_binary '	P=N>Œ¨b\"j:~[Q{\á','wp-includes/js/tinymce/plugins/wpdialogs/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\åWeâŽ†?’üN\ãðt',_binary 'n4\Ü\Â<½\ÞFz­‹û­\Îÿ_\Õ5”ðkigˆ','',0,'?'),(_binary '	X\Ît\\4vNI5‚\Øj\Ë\Â','wp-admin/async-upload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨\n€#9ou°o<—B\Í\Î\Û',_binary '½ˆ°`¬ü¯V\ë\r\ëFAš ”\Ö\ßY,(˜lBA¶\Â\Ï!','',0,'?'),(_binary '	`š¹\ì>\êR†J¿,ý.\é','wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')e\íôf\Õ#¡`Pž~7\Än',_binary '-m\í\Æz\í\Ün\àN\ÊFûE\0Ñ­\\vq\ësL?—Z\Z²½','',0,'?'),(_binary '	aÁ¯jÿ\"µþú{”`\"\Ñ','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/ajax-customers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%Y‹€32ô1\×új»¨O)',_binary '\Ök¤+M\ÚúðT\Ô	7\á\ï•[š\Ä\"Ï¯ªQ\'³ô\è_H','',0,'?'),(_binary '	e,\Ï\í´E¶ö\ÒÄš¬\ï\á\å','wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Shipping/DefaultConversion.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡\ÇK£dV\ì\Ô5–$	¤9š',_binary '™i,1¡°|»öžg–jÅ Œ¤\r*)\È\ÙF~¶M\ØJ','',0,'?'),(_binary '	iE\Ù\Z;šŠ•hqü ¸\Û|','wp-content/plugins/woocommerce/assets/images/icons/gridicons-checkmark.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»9 ¤^I\ZŽ\á.Ô›h&',_binary '\\·™¾\ßüº\Ã\ÔÑœº\Ä\ÃEk\æ#©h„\ZN','',0,'?'),(_binary '	kH4R¾\Þú±>±\Ä1','wp-content/plugins/yith-woocommerce-compare/plugin-fw/languages/yith-plugin-fw.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q+Yƒú…÷Á\ê\è\Ð\á\éK',_binary '\Ç\Äô P¢;\Þj%KP‹\0r’S\î^öYE]3ÑH\æ\Î`','',0,'?'),(_binary '	t]¤9¹\Ù\'«ñÿ‹\Ñ','wp-includes/blocks/nextpage/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷Š+§\êv?ƒ’Á—i6',_binary 'w9>w\îBž°\ÓWv\Ä\áØŒQ¦_¶¿Â®\Î\n','',0,'?'),(_binary '	y\ß5x$\ËjOõy}','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-product-variations-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿÛ•i|%@I}{zWG',_binary 'Š”\\\Ò+m\Ü%p4þð\äq«º\ÍÐ¯m\Ë@\Î$g«\ç','',0,'?'),(_binary '	~¹aŒž–‡\Ïò\ÒÝ°|','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/az.js',0,_binary '¨£\Ñ<Þ»jøÈ¬\\f \Ð',_binary '¨£\Ñ<Þ»jøÈ¬\\f \Ð',_binary '$=\Ð\ä\\dA\Ãj—oo\â\n0¾¿\\•I\ÇRÜ»v^\Ð4\Ì','',0,'?'),(_binary '	„h\îXk%´>ù†\Æ{NûB','wp-includes/js/dist/viewport.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D¹r”¥Ý™\çú\n',_binary '\Ú¿\Ú<Õ³•<|PýO=JŸ¥\í\Ç\Ù|€k\\\ÇÚ½Š','',0,'?'),(_binary '	…W\ZÁ5qËºU†«ø\çˆ','wp-content/themes/flatsome/inc/admin/customizer/img/blog-inline.svg',0,_binary 'Æ¿`WYór3ôÝ»—\ß/',_binary 'Æ¿`WYór3ôÝ»—\ß/',_binary 'œ|M\Ê\n\ï…\ÔAr\"…;›m«<´‰š>\ØxF\ÚØ¿~\Ç\Ñ','',0,'?'),(_binary '	˜.¦\Ù5ua\ÎWkJø˜','wp-includes/Requests/Exception/HTTP/413.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\í¾\Í2É‘I½W’v\ëMZ',_binary '\r…Š}ÀäŸ¹-V±\Û\ß°\Þ\'eCCÊ…\ãe-2,0','',0,'?'),(_binary '	šˆHñ-S¦\à\áb\Å\ÂZ­','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/notices/Account.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '  –<\ë·uWL{;üŠ‡',_binary '=õ¹‚û\"{CÂ½0ižô%üCžn­D5•J;','',0,'?'),(_binary '	Ÿ\Ð\Õë­™g›‚ƒLp¸—','wp-content/plugins/woocommerce/src/Admin/API/Reports/Taxes/Stats/DataStore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(­l2qýBÊ£¤¼ Ih\Ö',_binary 'BÅ\ØñÈª(@¶D—!p%!J%kº\Ä(’¢µ}:','',0,'?'),(_binary '	Ÿÿ^:P»v®ˆšw^=}','wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-mix-and-match-products.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þª\ì\ßu»)Ž,õ hyJÿ',_binary 'º\ïSÕÍ ‘oB´0e¾Ov9\Î\è‘\×JÃY\ÝqM','',0,'?'),(_binary '	 (güŽJš\Ãˆvƒt“','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\Ù\ïW7\æPA,ºÿIx\'',_binary 'ý>:\ç\ê\íiIš\Ôsk\à~­\á\È\ä+\Ý\ã¡Klœ)\Èsi\ê','',0,'?'),(_binary '	¥JCyY\á6m¶@¶\0\Î,','wp-content/plugins/woocommerce-currency-switcher/css/images/ui-bg_glass_95_fef1ec_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z;\â\Øÿø2MY®\Ã\ß{\nƒ',_binary 's\ÅÐ‰ªGO\Ü`^¤\Ô>C¾¤\"‡l‘©\î\ÊwŠc\Ü\Ð','',0,'?'),(_binary '	ªù\ãµ\Ü­†ý\Ò}*²','wp-content/plugins/ti-woocommerce-wishlist/assets/js/bootstrap.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0‡—wtiˆ5òIWÕ”\0',_binary '&4\\lw\Î\0\áj…D\Çnø\î\ÃzVMG\0\Í\æÀ\Ö•¾','',0,'?'),(_binary '	´Ô§2©º/7\0!\n†]¬','wp-content/plugins/nextend-facebook-connect/admin/images/layouts/below-floating.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Uk4&k\ì#Ó§\â?ƒÌ¹',_binary ' RW«¯À“\å;¸ým\Å\Þl/…)YJž‰\î].#\Ã','',0,'?'),(_binary '	º.[€\áF`E`óa£\Ê\Í','wp-content/themes/flatsome/inc/builder/shortcodes/values/pixels.php',0,_binary 'œŒ\â|;‡–\rü¨¡N\îñ',_binary 'œŒ\â|;‡–\rü¨¡N\îñ',_binary '§%~³\î\íE\Í]\Ëfÿ\Ð-)\ÏF³KÍ²8?\\','',0,'?'),(_binary '	¼l\êq\Ù1Tñ³i¡\Â','wp-content/themes/twentynineteen/sass/site/_site.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Át(\Í}ñ<;\ç—\ÔdC',_binary 'ò®òX†m·W\áŠ\ËŒ¥M¾ž¤¼K\å¥t\ÈV8ÆŠ\Ù','',0,'?'),(_binary '	\ÄÝª\'cf/\ê\îdøU','wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/closure.js',0,_binary 'Ø¸ß¤UTŠ~È¬bn\ÇN§',_binary 'Ø¸ß¤UTŠ~È¬bn\ÇN§',_binary 'É¢|_{‹÷\ä=–µÔxtj`>\ÓML…0·0\é…t','',0,'?'),(_binary '	\ÅÉ»Qš¢L\Ý\ÖO©\åö[¥','wp-content/themes/flatsome/inc/woocommerce/structure-wc-product-box.php',0,_binary '¢rc6»\à\Ã\Ç\Ý`\à\ÛUrŠ',_binary '¢rc6»\à\Ã\Ç\Ý`\à\ÛUrŠ',_binary '\'\'\ë»\ç«r\ß<7H˜+÷¼	®T:q²\' a\á‹ø\è}r','',0,'?'),(_binary '	È²•°3Hy›C†AÓƒ','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/fonts/otgs-icons.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬©»ü0\å\Øz \Ç\Ü`\Ù,%',_binary '°@9cX\ÈR°+|\ãô\í\â\Ñ>0\0Co5=Ž\åÏŠ\Ç','',0,'?'),(_binary '	Ó°ê…‘·¹ ±…·\Ï€c','wp-includes/js/dist/escape-html.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	I\\wzzWŸ~†\ÍHO\à9',_binary '\Ö`‰BE`sr\ÎAýŸ„I\ëHoÞŽ3ý_Ê˜ %\Ò	','',0,'?'),(_binary '	\Óü…€7\Ì0Þº7(Q‘','wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/core/fontwatchrunner.js',0,_binary '-ÿ\àŠö\íõV{',_binary '-ÿ\àŠö\íõV{',_binary 'ˆ`$ž\Ñ*Ä°›™c\Ü$ÅIvbK#óF¯°\í\\oû $8','',0,'?'),(_binary '	\Ö9„ƒfÞˆUœfòþ\æœ','wp-includes/js/tinymce/tinymce.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xl\á\à•Àø°Ì¡CŸ\Îþkn',_binary '\ÜZk÷	\å6|\ã\Ì{ø*\Z©{¢H\ã\â\Ë¢iÜk^','',0,'?'),(_binary '	\ä€\ÍP—Šý§”¾·E¹„2','wp-content/plugins/woocommerce-multilingual/classes/media/class-wcml-update-product-gallery-translation-factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›–\Z‚\ä\×ZuXº\ê\Þ ',_binary 'JcB´avšÁ¾\×c\ÌRn<K\ã]¨ñTˆ\Øt÷†&\Ò\ç','',0,'?'),(_binary '	å‚®°óÈ¸cx\Ö	F¼&','wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-waitlist.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'izO+\é\Ø`¶\ÆNýb„',_binary '\áv÷\×ç‰•£\nä·²³‹Wa\ÔN\îjû\Ûø','',0,'?'),(_binary '	\æ¶÷IhðBšpO','wp-includes/blocks/heading/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_iÆ¯\ÎÚ¤o…½–y(',_binary '¦µ­BIh\â‰ü\ÓÚ³×•\å\ÖZ§»±.Œ2÷%¼Xþ\Ñ','',0,'?'),(_binary '	\éñ\Ï\Û09÷-b±…Í©W','wp-admin/network/users.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\ÇG\Ì\'\Z…œy7\Ú\Ä}\Ø\Ê',_binary 'Ñ¨\Í\ç¥s…]œe|T\ä\ãxgûG#m­<™§]\Ç\ã','',0,'?'),(_binary '	\ì/‘?\Ñô^¸E\ÞÕ‘','wp-includes/sitemaps/class-wp-sitemaps.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5.R\Ì\0I“u÷\'tVó',_binary 'g­–e«\Ù;Œ_~¨_f/Pvù’hm\ä“Hòµú\ëg\Ô','',0,'?'),(_binary '	\î\Äi˜ATºHdŒ…*ÿñ','wp-content/themes/twentytwentyone/assets/sass/05-blocks/cover/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡P\"ø#×—	…‡\ÌÛ—I',_binary '\Õ8\àx¦±\ZÝ\Ì[D£“Ž\ãšA­þW/OwÄªº','',0,'?'),(_binary '	\î\ëd \0\Ú6\Þ¡W\n\ä','wp-content/plugins/woocommerce-multilingual/inc/wcml-switch-lang-request.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ös^\Ñ?<\Â\ÜÕ›6šI\Ó^',_binary '€\0µ\ì\Âý‘ \Î\\N\ÆD>ù\ÅÙ´¾`ú\á\ê`ÿp¿¼','',0,'?'),(_binary '	òþ \Üb€Gä²¢Gš','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-report-coupons-totals-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!Â§þ‰\ÙwùŠû{\ï8¢\Ý',_binary 'ÀÖ¬ZDÉ¾Y…˜7‰\Ãÿ\â\à‰ù\î\0\Ù@§\Æv¸','',0,'?'),(_binary '	õ.1ú6llY˜\ß\"2R\ì','wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-request.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u½\Öó¤Š\æ\äÍ©\Z%Šô\ë@',_binary 'Q\Õ\Õ|n`^¬\r—,7´³\Ê\ÉV ÷±­¬aÎ‡','',0,'?'),(_binary '\n…–©¿f7r»\Ù}\Æ\ç','wp-content/themes/flatsome/inc/admin/options/header/options-header-mobile.php',0,_binary 'J³9/„³\0¿>qb\Å	',_binary 'J³9/„³\0¿>qb\Å	',_binary 'RS\Ì&]€\×3TR>nuø%ZƒO©uñX\0[³öRL–Z','',0,'?'),(_binary '\n\á½	6\ì\í4R\è9øª‹','wp-includes/blocks/social-links/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DÄ€rAWZq);ŠC~šô',_binary '.VDt\ÜË´Áñr|³$[ˆmw²\ØN[©ü¯‰.lUÁ','',0,'?'),(_binary '\nn}\Ø\âDŠ5’6\ÐR\Ø','wp-content/themes/flatsome/inc/admin/envato_setup/importer/parsers.php',0,_binary 'ýœ9Ö­\×ÿ½¡A\È\ÜM8£r',_binary 'ýœ9Ö­\×ÿ½¡A\È\ÜM8£r',_binary '—Mkwà±^Â„G/CÊ“öV\Î/S<µÚ€¡šäŠ²\ç','',0,'?'),(_binary '\nß’¥‘®\ï·óp¨œ','wp-content/plugins/woocommerce/includes/data-stores/abstract-wc-order-item-type-data-store.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿\Û½X6€\éS‡õ¬.‚',_binary 'R•\Ù	ø\ë”\Ñ\ê¼D\á™\Óuÿ¥_\ê&§,rQ¸ˆýn','',0,'?'),(_binary '\n\'¸Á\å!-„‚k:_\á','wp-content/plugins/yith-woocommerce-wishlist/wpml-config.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e)_V8½q\Ýu¼•/)',_binary ';\Ç“7(\Û=¡ ¤\Ò\ÂK`¦\Ò9M\ÓÃ¯¤\É]—K€°kŸ','',0,'?'),(_binary '\n0x\à5¯˜®\É\æ\Ç*¥\Ï','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/dropdown-selector/selected-chip.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥\ÇU³\Ï+)&¬=üR\ß',_binary '\âž»¤ôr–ô\èyˆ•#®•\ì¡:\ã\ZŠ² –\Ý\ê\äÃŽ','',0,'?'),(_binary '\n1rœýL\Ðj\×s½	ñ','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-composite-products.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŸŒ\ÍÕ¾OO][\Ñ\ÙI\'’õ',_binary 'ª\ëA_\Ñe^¤Q—\ÌR˜2p¼¥\ìh\Þ\Þ\r\ì ¨\à»','',0,'?'),(_binary '\n1QfÛ‘Ž÷PX}\Ùÿ\æ','wp-content/plugins/woocommerce/src/Internal/ProductAttributesLookup/Filterer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™Þ±\Øø$mCYm\ã\rŸ',_binary 'Ø¤ƒû\íg³öžËº\'pAU\ÑV\Ñ7³ŒtŒ8]P','',0,'?'),(_binary '\n1rÁd¦·j9x¼_tf','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/store-snackbar-notices/context.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"oŠ’Ž±>\Úü¨·”lu;',_binary '«Ê„ƒ>6\ÆFŸ\ì\Ô\0ýe\Z÷f ~[1“\å?\Ð\Ï|i\äm\ïh','',0,'?'),(_binary '\n@\î\å\í\Ç©5]QœDŠ‰','wp-content/themes/flatsome/inc/builder/shortcodes/page_meta.php',0,_binary 'C0¢<¶0.2*€;^X',_binary 'C0¢<¶0.2*€;^X',_binary '11˜1¶sF´¨$‡¢ÿæ¤—Y\å\êÓg>ù›}”\Ç\×','',0,'?'),(_binary '\nFö:5¡\ï‰k\á²[A~~\Ó','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/panel/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÝC5úB·‚È³³Bº%',_binary '\Ë_\Ù3½Ÿ²lñE[\ÐÑ»Û…ª…ii0\ØsØ’@òvù\æ','',0,'?'),(_binary '\nLSY†õZ¿”#\í\ÜC\ß','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/panel/woocommerce/woocommerce-form.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“4\ç³Á+h(~ý™.\ÎTi\Ë',_binary 'Æ°¾ñ\á<cªl(\îD\áÇ¿Jv¢±>\Ùù\Ær·`¢\Þ6','',0,'?'),(_binary '\nL»œþ°tHGLN\ëž\r','wp-content/themes/twentytwentyone/assets/css/print.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3úH¸¿ž	\á^´£›‡|',_binary 'n¾¢D\æÜžgr-}}UN\Ïô]4§>*\ä>Cx¯L\â\ä','',0,'?'),(_binary '\nP\áŸ)K\È\ÙhÕ]úx\ã','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-1-col.svg',0,_binary 'W·U‹û´6 2\Ó:\â\Äs',_binary 'W·U‹û´6 2\Ó:\â\Äs',_binary '¥Uð\îV	x3/Ÿ(z\\•VÀ\ã\ÅÁ«H\á\Z#Ž™\Ð','',0,'?'),(_binary '\nT•¦/\\9$Y¤U\n\Û\ÊÍŒ','wp-includes/customize/class-wp-widget-form-customize-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\ÅD*@6\á‡{Ï„}¦\ç',_binary '\Õ+Ö“zi­›À@€\×\Æ\É^F%5\ÊqZg<¾\Õ','',0,'?'),(_binary '\nV&E\Í\å7\ïˆ\"Q¡¦‚w','wp-content/themes/flatsome/inc/builder/shortcodes/templates/ux_menu.html',0,_binary '(n<´\Í\Ô;o¯\Ì+',_binary '(n<´\Í\Ô;o¯\Ì+',_binary '¹`1„Ý¨?£\n¬\'\ÚQ=C¡¾Dv\ç\×ñYÉ‚ÊV·)','',0,'?'),(_binary '\nf†‰Y¡·4&üLð¦','wp-admin/images/se.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÖÈ”B\Ã`½\Ú.}\'7:',_binary 'Y­»›\ä›\è\"Kù\Ñ{·U¼©\×r™:2Š‹JL´”\È','',0,'?'),(_binary '\ng£ú;\ì‘8\0;šVX¹3','wp-content/plugins/woocommerce/src/Admin/API/Reports/Downloads/Stats/Controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WH-\êlýŸÒ¼.9ù\ÎS½',_binary '\ã”fRª²€†g±X*G@3‰ ŸŸ\Ã\r}»½ARi','',0,'?'),(_binary '\nj¢\Ô}€ü\ÍGfBV\ÙÆ«','wp-content/themes/flatsome/inc/builder/shortcodes/ux_image_box.php',0,_binary 'x{’õC\×\Ùd&¶X\ä\Ð',_binary 'x{’õC\×\Ùd&¶X\ä\Ð',_binary '‹™u\ÂøJbÐ²!\'^C&{ÊŒ\'*©n¡O\Ü\ä\Ìk','',0,'?'),(_binary '\ns&þu£¿&˜k$»\Ô','wp-content/themes/flatsome/inc/admin/customizer/img/blog-single.svg',0,_binary '_²e[-ùpâ„®Ú¬h›',_binary '_²e[-ùpâ„®Ú¬h›',_binary 'tD\í\Ú\Í{]uý Ó¯°µŸ\ë”ú\0l­õ\àŽô}\ï¢','',0,'?'),(_binary '\nz‡Å­Ž}ô{\Ç.¶u[¤','wp-includes/block-supports/generated-classname.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\ÑT¨€ð\æ“\Ã$˜5`„',_binary '7{ü¹\Õv„>ò\á\ßR\Ïû;Â‚\Ù^\î\×\×\Ý4Q‘eu','',0,'?'),(_binary '\n{X%N8ÂŸw\È2?M4C\Ê','wp-includes/css/dist/format-library/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '×Ž÷Ç„\æ\Ç\ä(óò¢(i1’',_binary 'QW®‘,V\\v.	>ÀÇ–š³\Ö\ãœý^MŽœ\ÚKÿ','',0,'?'),(_binary '\n|Žo«Á[ªùY\ád\Ú','wp-content/plugins/woocommerce/includes/class-wc-payment-tokens.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ê.\"¤Î‚ø…\éz®‘\Ð',_binary ' \áµ/\ìŒ\'(ë·5©D+‰!)F%«´\åIÂ›ü7©','',0,'?'),(_binary '\n}†ñ\'Ù©B»3ü9­:¸','wp-includes/blocks/table/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pó@»\ZÀ\âl\nóy6< ',_binary 'wd•2S\'~\Z˜±¶q\ê\è\Ìõ(ª—SMj!~Ÿe¢J\'\×','',0,'?'),(_binary '\n‚;R7\Ò}\î«[›','wp-content/themes/flatsome/inc/admin/advanced/index.php',0,_binary 'J6™úm¬Az\å\ïe<³`P',_binary 'J6™úm¬Az\å\ïe<³`P',_binary '\ïflÌ½Ga9—\ì/Œ¤;^\ã\ëJÁeŠ¯ó\\\Âô³OCb§','',0,'?'),(_binary '\nŠ\Ìóf\ÉÓ…;{»tõ‡','wp-includes/class-wp-role.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ëyH½ˆôû,o™:¦™þ',_binary '\'}Ø‘9\Ýö\ÍX8ušõ¬ß¨Ÿ[(o\Ïaœn\\±','',0,'?'),(_binary '\nŽ©1\Ç\éf\\k­Ÿb¸xF','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductCategoriesById.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Õ-Vú\æ_xŒ_±H5£\äŠ',_binary '´\Â}Šq\Ä\Åþ¾\éXTh€€±\Þ²› }ž?ù\î3Z','',0,'?'),(_binary '\n“U4JJTw\Ù.zü4S«\Z','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/privacy/html-policy-content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q2\É:Ó«‹Id/N/†',_binary 'MU\Ø2)‘Y6yhJ%sf\Ìô¾\Òu	zE\â÷˜•','',0,'?'),(_binary '\n“µ‘b-\ÓVø:ˆƒ|mµÿ','wp-admin/edit-link-form.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤S¾ŠZeqöi\Ë[\Õ\Ã\rv',_binary '[’\äÏ£b]\Ú9\Ö\\\ë|•\ÓÖ²*V\rð“~Ž\Üz\Ò^','',0,'?'),(_binary '\n“¾¸‰ü¤©ñ´E\Ú\Ìd\é–','wp-content/plugins/woocommerce/assets/js/jquery-payment/jquery.payment.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ôõyŽ`.\Èu\"Lÿrµš',_binary 'Cµ°\ëlª¤¯\è\å\ï\ÚhxCq\ÐBŒTV#\èƒ>@°N ','',0,'?'),(_binary '\n•[2?sµ®\\,¦\å','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/js/admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uº\åüF†]ù\ä=\ê)¹:¾',_binary '\'že96Ž.%Aº¾òMDqÈŸ·•%\Üe\Ç\Ð','',0,'?'),(_binary '\nš\é\ÑÁ—\á#\Ýñx|]','wp-includes/blocks/site-tagline/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',=Ÿ“SPE¨óŸÒ§£§',_binary 'Êˆ\Í	™Ø¿ß¥ÿÁ~üŠE¹\çk¯º,fŸŠ«\Ëf†R','',0,'?'),(_binary '\n£\ÜNNM¼\ÔÛ‘4;úp\Ð4','wp-includes/js/customize-models.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/ûoÏ±;\Þ\ïŒRwc',_binary '.a÷\Ê§x…°^„g[&³E\ËÎ¡JJ˜TôSÕ€\á','',0,'?'),(_binary '\n«õ5\âù=¼IK”&{\ïP','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_454545_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\;¦€\Ì4Í›0…\\t¡R',_binary 'KP­\ËÑ¢ÿõ\Ö*e«£>@‘P*\Ù3Œº\Âÿ‚û–OÁ','',0,'?'),(_binary '\n¯ÿl²\nBu¡\Ð\Ît\ãV£','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-webhooks-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\ï(y@?‹‹cÈ¬\Î\Zg',_binary 'ók:¹\Õø÷aó\æì½¬aÿu6µmp0\Ía\í\Ëùg\ÜE§','',0,'?'),(_binary '\n·L\ë-\Zü\é>h\ÍNA‰','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductBestSellers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÄR;[Œ\ì*I\â±ë‰‰3…©',_binary '\ÈC®øoc°½ù1\Äx1AÖ¬óx\Ò\ÎWR:\á]»ßƒ—:8','',0,'?'),(_binary '\n\ÐOe\Çlg‘n\Ñ3\"\Å\Ê6—','wp-content/themes/twentynineteen/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p˜±Ñº5öG5£ŒK—c',_binary 'v\\$\ÔYTp•>*\ãVµ&Q‘\å‰\Ã=™©^ÃC{ExX','',0,'?'),(_binary '\nÐ¯J\'šp8†+ˆ,&P','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/block-title/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\í¾*˜=\Ë	\ÇTŒ\Ð³·°N',_binary '\é¢ÿZg\èoUq¬	b½JŒXðø§“ôâµ©‘`\Ç\ÎL','',0,'?'),(_binary '\n\Ò9…µT\Ù\ÜÁò×¬\æH¬','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-fields-block/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬+gN‹<Ÿ\ÞF#—',_binary 'ð	f÷“\Õ\çØ¤³Y£nÑ€J ¶#”\ÇQ_¤@žL¶d','',0,'?'),(_binary '\n\Õ!^\Ååˆ’¥\îòT\n¶','wp-content/themes/twentytwentyone/assets/sass/06-components/archives.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\í.\ÜRvÀYhgEb',_binary 'W¹F\é\Åù\×:Ú®U´\È3«\Æðdm\ë˜0\Ö\È	½¯ú','',0,'?'),(_binary '\nÝ·Tý,~\ìX.','wp-content/plugins/yith-woocommerce-compare/assets/js/jquery.colorbox-min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£´†‰°1Jö\Å\Ú[oò{ý',_binary 'ú\Äp\Ï\Â|\Ö\Z˜\ÙÎ¯ÿžÉ\Zøƒµ9\í\é­Pw2','',0,'?'),(_binary '\n\ß	¡\Ì_{\Þ\ãõ–\ÕüŸ','wp-includes/blocks/audio/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼&QÕ¶o®&—\×\ÇUù¦',_binary 'Ò¢^‡ôúO7\Õ.s¶k®C\Ó#Œ·\î%\ÒNr£?','',0,'?'),(_binary '\n\ä†L\Ú\ÖÿCÁ0¾¸w+N','wp-content/plugins/nextend-facebook-connect/js/nsl.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘_Sõ>\ÔQ!ƒ}L†E',_binary 's\0Û™i\'\na\äH’\åL\Ïa¥\Èd5A]OÁ–Z[˜Ä—\Ô+','',0,'?'),(_binary '\n\í@©g‘\Ý+T;V¶–','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/xmlrpc.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ã\Õf—­\Â\r@)ø«ë»š',_binary '¼;—•¿\Ì_Iø\Ýmò1›Ž£øµ\n\î9|!Þ¶\å¯','',0,'?'),(_binary '\nô\r£Bƒ\ä®pÌ­','wp-admin/theme-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/‰œ±½<\âR–+ú9|¸dl',_binary '\ä\Ø0\ÜP\0VZ\âN9»Hj‰ `Gžq¸©u\í(\É','',0,'?'),(_binary '\n÷U ‰\Ð¸‘\ì\íûµØ†','wp-content/plugins/yith-woocommerce-compare/plugin-fw/languages/yith-plugin-fw-nl_NL.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I…\ÆÅ€\Î\Én\Ìz%&Iõ¢#',_binary '\Èó	\"	;‰[`}Á\ÉÖ‹Ž®\×.Y\ë4´cŒ+{','',0,'?'),(_binary '\nú\Ù:\ÂX2\ÞL•Žnc','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/sodium_compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ö‚cŠzû\Ûp‰öü(Š,',_binary 'ü¿,»\î™\î\Û%u\Z\à\âRzþB \r#À¨~”+`\È5y\Ë','',0,'?'),(_binary '\nýGÆ™n\åð\Z@1+U]£','wp-admin/css/revisions.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ø¾\ìÂ§Ae]E\à\Ír\ä',_binary 'Èž­pû»fõ\ËÍ‘€\Ã(‡`^Æ”—4ð¦\íP7@´','',0,'?'),(_binary 'Û¯\Êi\Ãcþ}0SqG‚','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/simple-buttons-right.svg',0,_binary '_%\çÿF(ó÷)\r£V«',_binary '_%\çÿF(ó÷)\r£V«',_binary '\×e›¦Ž\Ì;f¥p¿^‹ò\ß\Õ$V?ü¡/Ùƒ¸˜ƒJdÁ ','',0,'?'),(_binary '\Ò*-(Y1\Ê5\\Aq','wp-content/themes/flatsome/assets/img/payment-icons/icon-klarna.svg.php',0,_binary '\'\Ø\Ó4÷Ç¡«WF©»¤­',_binary '\'\Ø\Ó4÷Ç¡«WF©»¤­',_binary 'û\ÆGªÜŠƒM¤Vd“*‚¯\ÐR\ìj¸Y=¦­4\Èj','',0,'?'),(_binary '.n\Ü(\rŒ­;\à%\æMJ','wp-content/plugins/woocommerce/assets/js/jquery-serializejson/jquery.serializejson.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'RƒžLD}\É\ï\Üô—¯ÿô',_binary 'I\Î\00¦…§tx¹25£ŽžQ\È\ã8ò|H[4üÛ¦\ÜO¯','',0,'?'),(_binary '\"w%\â_ƒ„K\\ \áu\Ë','wp-admin/images/wpspin_light.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hkžu\ËRª\r@9k÷’\ç',_binary '»³÷!\ÚF×±‡\äò¸(œ‰µ#õ\äˆ1†‰:\ã','',0,'?'),(_binary '&cµYD\Ø#\èP{+¢','wp-includes/js/jquery/ui/effect-blind.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ðýu0\"ù\Âð3gY',_binary 'óe\ï’Ï®0ÿÿ\Õ÷nkoRœF\í>Ý0/=7™†2C“','',0,'?'),(_binary '&°¬\å‚ò@(r!\æû¼A','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/price/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿ\nxjQñi\ÓV\Ùìˆ¥óP',_binary 'xyR\Ø\ëP©¹œa\Ó#<\ÅuœT“8&N™}ø›.\×X{!ô','',0,'?'),(_binary '*&\Ý.ý>Ÿ¡+g-ˆnú','wp-content/plugins/woocommerce/assets/css/dashboard-setup-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\0zùò\Ýlº\ÔIX\ÅW\\\Ç',_binary '× wD„¦XF\Úu„3½§\n¶Yab”‘4+J½hü','',0,'?'),(_binary '4‹T\n»b	œ§<Ž©9','wp-content/themes/flatsome/inc/admin/kirki/assets/images/kirki-logo.svg',0,_binary '±I\â\í< ¿\Ýg\äm÷\çN',_binary '±I\â\í< ¿\Ýg\äm÷\çN',_binary '{4ô	¢\"-	v]\ÐF¨õ¬*Åž( <þß”hµÃ‰>','',0,'?'),(_binary '98\Þi\Å\èS\à^\Z7A‘ô®','wp-content/plugins/woocommerce/legacy/js/admin/settings.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9û\Ä|›eÞ\äÏ³\Ì$¹',_binary '\çgû\è%ºmÊ ÷_ö?‚\íŽ?‹t\í@?Ø”gN½','',0,'?'),(_binary 'A`þk{¹n«Ž\×/*ScN','wp-includes/js/dist/vendor/react-dom.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A½zm)©\0­û\ä\Ú™Aµ',_binary '*\r\îr!÷@¦\Ä@™$-›\ìaø ]Õ\r\ìõ§\ß_','',0,'?'),(_binary 'B&ø/\Ûÿ \â„J\"aª\Ô','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/media-right-large-dark.svg',0,_binary ',šª{”CYù\Õ\0',_binary ',šª{”CYù\Õ\0',_binary 'k³\r7v[„;…`\Ö6d:Ê‹-Œl«ýM j#06h­','',0,'?'),(_binary 'Eq¾ó“8\èT0Js`—†','wp-content/themes/flatsome/inc/admin/customizer/img/layout-custom.svg',0,_binary 'S\Ì\Úó­Â¯8\ÔM)g‰&d',_binary 'S\Ì\Úó­Â¯8\ÔM)g‰&d',_binary 'Bo[¦™¿®F¯[\Ö\\¦‹†_)+h¹\Ü4','',0,'?'),(_binary 'IÅ€\Þ®”\ãw*\âr\âV6','wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-plugin-locator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u_\ë…óV\ãZ÷›°¯·',_binary ' \08¸KoV\×8?±cƒ’\ß\ÕJ\×\ß-Ñ¤,d','',0,'?'),(_binary 'P\æh›ui8V§£\0kU±','wp-includes/blocks/post-date/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')Y\Ú\á*ùœU†=*½v\Ü',_binary '‹g\ïdÉ˜ooj\ÒR4Þ´(ø\Ý[Sê„¬þ','',0,'?'),(_binary 'S}R®|§r\\1n1›®9\r','wp-content/plugins/woocommerce-currency-switcher/img/icon/features.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\ç¢tæŠ”¦@Å«»$',_binary 'ZqüvñVCñµÀ ®<3\ä-Ä§UýU½ÿB&»','',0,'?'),(_binary 'Yj\ì66]\Ó)C’ðps\ì~','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/sysinfo/tabs/main.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\Äñ&°rõ\èx\Í2‚\íOq',_binary 'ùYùx±À-XK‚1qÀŒvšmÚ\r-„ ú}8Kw\ì','',0,'?'),(_binary 'cöM\ÅBˆ\Ì\à\ÇT`ÁŸ\ê','wp-content/plugins/ti-woocommerce-wishlist/views/section-group.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-ñ¨\r­\çÀ÷öZ~ž\n\Ã^',_binary '™16u\n\â\\öšól”®:x½l)”jK[\ÚÏ·* \ä\Å:','',0,'?'),(_binary 'g\\S\ÕP\åº9»‰\'š)','wp-content/themes/flatsome/inc/builder/core/server/helpers/misc.php',0,_binary 'µ×©ª|\"f²t\nŠ#2\Ã¢',_binary 'µ×©ª|\"f²t\nŠ#2\Ã¢',_binary 'œŸz<ô q°µ`	\ÂGq_E\Ý\ÍY²1:Ž”:\á¹JZ','',0,'?'),(_binary 'n«\Ð*…×\ß\ÈbK± ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-items-block/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬+gN‹<Ÿ\ÞF#—',_binary 'ð	f÷“\Õ\çØ¤³Y£nÑ€J ¶#”\ÇQ_¤@žL¶d','',0,'?'),(_binary '}spK\ï¹ñûý© \Ûô:¤','wp-content/plugins/akismet/views/setup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eY\â]ŽZ¡.^<®±&Un',_binary '²Gž,|\ã8\Î\Ú\Ó\î\à£\Éi1ÿ\Ð<2\Ú,‡8\Õ\á+w','',0,'?'),(_binary '}›!rö¡,¨t.\rh»','wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\á’1\Þ\r÷™†P»7iU',_binary '€ð‚y`]9-¼<YðE¡ôˆ·iû:lU\ë3\'|K\á','',0,'?'),(_binary 'ý\Ã\Þ\äY\Æ\îð\ëq\ï„','wp-includes/customize/class-wp-customize-partial.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J@\ÖN-p<\Ì1]\Zýn\Ç',_binary 'Æª\Ìã«¾’ƒ™¢Ÿðs“uu±„nÎ\0Á\ïV<1—r','',0,'?'),(_binary '‡ß’\Õgo\ê\0m·Œ\É\×','wp-content/themes/twentytwentytwo/assets/images/flight-path-on-salmon.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ú0È¶¬‹\Â\è\á¡5\Êø\Þ\×S',_binary '•\\‹a\Ü#c`ñS->\èÁI\ée\î\r/N´^wk…”š','',0,'?'),(_binary '‡ú\Ìý’£¤\'›\â©ñ\\M','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/panel/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&FN*úkkpkx]°\íûj',_binary '‰û›‘{PI¯ód«ƒ’\ÖG®‚~öœ\Ê\Í\Ö7¥','',0,'?'),(_binary 'ˆ\\úr65•\îoI	¿œm','wp-content/plugins/woocommerce/templates/checkout/payment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fBô8Ð ŒS=xóÕŸ•\Îü',_binary '¤‹–¦\Í\Ó\Ò9n}\"[½\Â?\ÞsÀ[?\Ð\Ö*t\ãpe`','',0,'?'),(_binary '‰]\Ä\Ý`œT¡\ÒIŠ7ù\á','wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/class-manifest-reader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Cr˜I¦—v“wº£j±\Õ',_binary '…s­ºþ3\Æh •ªU$a[›IzÎ \Ê$Iø}N¤Â²®','',0,'?'),(_binary '”ˆ¦,H(b\æ_F”O','wp-admin/admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Î™šF#›Ö™\ìiŠ¿IA&',_binary '¼I/°…ž=IllŒ\rWM_4\\iþ\èZ\rþ$AŽq3','',0,'?'),(_binary 'œ«HVÕ¥½d\à³p\ÕVp','wp-includes/images/media/spreadsheet.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñÀ 4\äñ\Ö\0Tü\ÞÌ‡?²',_binary '¶ý\Ì¶v²¶)\ï\nº6Zl«¶2¹õ\êÐ’1\Ù!+	\Ù','',0,'?'),(_binary '¤Ç˜c\à¨\ÓNh\äsw','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/grid-layout-control/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E§öjw	-iU¼°þš',_binary '#K)‰€\Ëu„eýRXjp\âS‘M#3DVÐ—l=Q<','',0,'?'),(_binary '§\0†\×\Ô3(\Î\Å(=Œ±cb','wp-content/plugins/woocommerce-multilingual/templates/currency-switchers/legacy-list-vertical/config.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',lI1DÁ\à\ã\Ñ\à¼\"\Øð',_binary '\í¹éª—:d¤‹\Ä{u\Ãdò\í½+C\×üOgwwZº','',0,'?'),(_binary '¨R†\Üô#\ÔA\ÃS²-\Õ\í','wp-content/themes/flatsome/inc/extensions/flatsome-infinite-scroll/flatsome-infinite-scroll.js',0,_binary 'Ed–\ÈAf\ÊY[\Í£Qˆ',_binary 'Ed–\ÈAf\ÊY[\Í£Qˆ',_binary 'œ\ï H¥=”?\èPñ©±‘\ÈVþ$­0Mñ\î:Z','',0,'?'),(_binary '«5öÃ…³ÆŒ…\ã\äþmˆ','wp-includes/block-patterns/query-standard-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']¥‚Á_Œ½0¯®¹\Ì\Í;',_binary '\é\æ5˜fo¨À$:²\ãü±’“”G\Å{|·-\ãõ\ÎöŸM	','',0,'?'),(_binary '®}»MZ\ãÁk‚´-q\Ù','wp-content/plugins/nextend-facebook-connect/admin/images/google/uniform.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½f`0\Ñb7S¢\ØYs[gvL',_binary 'E’\Å,-a•Î…þ§–GA¸%\'¶d¼{Ðºø5/™\í>¦','',0,'?'),(_binary '®ýõ\È\×E\äPV\"ldj\ç','wp-content/plugins/woocommerce-multilingual/locale/woocommerce-multilingual-ja.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œ(½Q#ýŠ´ÓŠ…D±\Ù',_binary '?\Ä\äžMãœ™¥:\ÄI¨#;õögt\Õ\í*ñ´ö8\É','',0,'?'),(_binary '¸\Úÿ\ã\ÜÀ\È#B˜\é›H/','wp-content/plugins/woocommerce/vendor/composer/autoload_classmap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€\âY«(M	;F“‹ù\éT',_binary 'F?\å°6©>­ npy†ÿ\ß]\çA[\ê\ì0FW\ÍVa¤ò.','',0,'?'),(_binary '¹\ØW™1C74{W\Ä\Ç','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž\Í+š©z{i»\êI\ê\Ù“',_binary 'À®WWB\Í\Æ\ï¡\âY(\nsk\Ü/»@À\ÒlÝ€L\0','',0,'?'),(_binary '½r`¸ú„B´ó\âx\à¡','wp-content/themes/flatsome/inc/structure/structure-admin.php',0,_binary 'J\æúiZù\ÎñL>~\ïñ5',_binary 'J\æúiZù\ÎñL>~\ïñ5',_binary 'Ç‘û\á\çfQÔ….•‡D9ku»š\îk|¾4—5\r³','',0,'?'),(_binary 'ÀÑ½Õ§1OOX,ï–Œy','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/webpack.config.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3KA(õ\ÒD\0\Ìtgƒ‹´',_binary '’@—€QƒV ~}Ò–Ú”\á¦ƒ +3‰úþ¹)\ê+','',0,'?'),(_binary '\Â\à¼|Žc\È\Ô\á\àöˆ|\Z','wp-content/plugins/woocommerce/packages/action-scheduler/lib/cron-expression/CronExpression_YearField.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ß4Dfó\ßp\îT¶…xð³’',_binary 'û¯“\ÒN„@7)(’´6¡øö•\æ0&^—ý’´š','',0,'?'),(_binary '\Ãdé—\ék*\ì³v÷m','wp-content/themes/flatsome/inc/admin/envato_setup/js/jquery.blockUI.js',0,_binary '\Ê\Óþ[šˆ04F\ì\â\ãb',_binary '\Ê\Óþ[šˆ04F\ì\â\ãb',_binary '›ù¥f?¤O\í=Š°·\ê*\íºc#/µ‡‚f)Ý¢\Ãc\Ê÷\Þ','',0,'?'),(_binary '\Ç/)\è·QI†—\Ë|\\‡´','wp-content/plugins/woocommerce/vendor/composer/InstalledVersions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›ˆª\ìka\ë·~IÒ¯\É\ç}',_binary '€\ìh\èG\n(šNòE­\×ò:£\ï5\ìœ:ÐŽ)	NA3','',0,'?'),(_binary '\ËÓƒ@x¦XÁ	\ë´:\È','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-es_ES.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Þ¤¿gsg¬\ÌL@±{\Ò;H^',_binary 'òy£\rw\r§w<½Eõ\é\Ï\Õˆ\Ú4ût6§}º_p','',0,'?'),(_binary 'Ù³\Þ\Û([B\Òvv#þ\è	\"','wp-content/themes/flatsome/single.php',0,_binary '\Ñ\Òo›j¹\Û(`[›9`',_binary '\Ñ\Òo›j¹\Û(`[›9`',_binary '¤@C\Ú\Åp,H\Ú\ÌYs;,º)GS\Å:1Vx\'­¤Ÿj','',0,'?'),(_binary '\Úð#\êðY]õ™!Dr','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/text-toolbar-button/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«t\n@ã€±!‘y\Ö&\0\É\ä',_binary 'þ+€‘%—\Æ:Rf,3\Îl\Ì\Ãn;A\ä\Éh9[¨ý','',0,'?'),(_binary 'Ý¶`\á;Í®§Ç’vü”','wp-content/plugins/woocommerce/src/Internal/DependencyManagement/ServiceProviders/ProductDownloadsServiceProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\É:[Sjž ûˆœY­*',_binary '¦\\†u<\ê2\Ë\Ññ\Ö\àÁ\ÑÞ¯oÂ¦Ä†IËŠ†F<¦°','',0,'?'),(_binary '\äÃ©E÷\Î\\­½\\{\Ði`','wp-content/themes/flatsome/assets/img/payment-icons/icon-braintree.svg.php',0,_binary '\äÁ/d¬]MtÄ®\â‘8<',_binary '\äÁ/d¬]MtÄ®\â‘8<',_binary 'IM˜\ÓN2	‰4O\Ð\Ú7$¯\ê÷™\ÕüªVNª44’\"','',0,'?'),(_binary '\é\n\Ä\ØUN~½½‰\0m\Ð\Ä','wp-includes/js/codemirror/csslint.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ë¼\ÉM_Ï±I\å¦³òÀl½',_binary ']¶ih4F„õÃ²ò\r\ìöU»\Ö\î\ßWEK(\ÚP¸d','',0,'?'),(_binary '\ì1z\à!35cü','wp-content/plugins/woocommerce-multilingual/inc/template-classes/status/class-wcml-status-config-warnings-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬€§EÙ¸aq°u¯\ç(',_binary 'Þ†òþ\ÙL„˜el,øv#‘\Ûr\ÃE\Æ\ÒBn>\ác','',0,'?'),(_binary 'òc\"ml ÿÇž>o','wp-admin/images/wordpress-logo.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'óNö%“d÷\ï\Ïg\Í\Ý\Ép',_binary '\Î\"¦uð™¨j-QE\0‰\Ó[\æ¦gL\ÝZ5\ÝMD½:','',0,'?'),(_binary 'ô\ÚUqÉ¿\Ã\ÝZ3¶\Z','wp-content/plugins/woocommerce-currency-switcher/css/jquery.scrollbar.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\ÂId¡J\Ò\ß\Â\Ùrqy\î2\É',_binary '9Ž¡št\á``RTT½µÁI9Œ¢\\+¢%‰#x\ä\\É±','',0,'?'),(_binary '÷Tl`­\ë\×Î·\Íõ)_','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/products-compact.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',KŸL½ª¶JCx\æ\×Z',_binary '¯\ç²#RÞ‡Y\è\èvÄƒg\à\r.133øšu®“','',0,'?'),(_binary 'þP\ÑU\ÝQ&s\Ì9m¬¢©³','wp-content/plugins/woocommerce/templates/cart/cross-sells.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷	K¨gø¦ŽŸpH\'Ü‰',_binary '2\Ú`$®w(—\Ô\éú~Z\ç¨ñ`š/nªþ™TZð\ßh','',0,'?'),(_binary 'ÿ4\ZwoÎ…¿ŽYeò‡|','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-sl/icon-128x128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\Öo·\áœZJf­',_binary 'IÀ©˜:Æ°\å@¦\å\É\ËYoz\äú9\Ö0¡\ÐC_›','',0,'?'),(_binary 'ø¤	5>^u\ä\çÔ“.','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/UnsecuredReportFiles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uò¨›\Äçž¬]³6A(•¥ª',_binary '½—[=š“f<;¶(Î±\ÏRT\Í\Z\Ç|[\Í@kš,\Ñ°’','',0,'?'),(_binary 'k>\ÓOx[ª¤\ä£mò','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/single-product/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nI‹\ï\Ì4vý$\Ðfû±ˆ',_binary '¢“z\ë\îÿ¹J¾<Pb6‘;\á>4úrÂ¾ññ¯.s¼¹','',0,'?'),(_binary '	†‰š,-#µ\ïz\ë#Š','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/use-store-add-to-cart.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(X##	†×‹\Ù\Ø[ø?\ã',_binary 'W…[¨••ÿx\Ûn\ÄCDQ\0¡Ÿ	–œ\0K;\Ðn\ë\åº>3','',0,'?'),(_binary 'o^†Ÿ±ówJ\â¦\×öÀ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/add-to-cart-form/form-state/actions.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ø\r\0N`\Zj\Ú\ïK¾T0',_binary '\Ã|Ýˆõû;¤‡aM?\nfÉ¾ˆ\×2µ\âUP‡\Î~P{','',0,'?'),(_binary '\É\ìÔµ)\0‡ªù‚w','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/constants.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E½Xd\ä\Ì\Ø;ü|\Ù\é',_binary '\äM\Ü@Ÿ\áo‰7‡q\ì_ À¾‰\êý2\0³','',0,'?'),(_binary 'sÙ·g†/\É\Þ\ÃXJ\á£','wp-content/themes/flatsome/inc/admin/kirki/controls/js/script.js',0,_binary '\È\ï*g­\ØZ\\\'ýLüˆuP',_binary '\È\ï*g­\ØZ\\\'ýLüˆuP',_binary '\æN\0ÿ\Â\Éúÿb¬\Å}¡W»H1ž\0 ±¨X3L<ß¼\Ê]','',0,'?'),(_binary '¯z\Ç\'K„\'\Ïbô\Úy','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/class-autoloader-locator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹\ç7–‰MRC(Á‘IZ„',_binary 'ÿþ*rõ\æÞ¢o}¸k=Qª©\Z\×\',@j;:\á\nŽ\ïw','',0,'?'),(_binary '$%#€\Æ_‚U»_d\Í','wp-content/plugins/wordfence/views/options/option-toggled-select.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	Á\ê|C ¾w@\ãˆ\Êm¢',_binary '5ªÃ£\0ÓŠVbA†Å‡\å\äüúŽ.Zû;Mzüq]¬¡','',0,'?'),(_binary '%l1éƒ¶uÿ¡\ç–m=','wp-content/plugins/ti-woocommerce-wishlist/views/wizard/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ð™ .ƒ‹J5n>k«w.',_binary 'õŸ\ÏÞ2£”\êüD’l“<ˆ©\Ôhõ¸MZVk ','',0,'?'),(_binary ')\É\ÙÞ¶Œúˆ/V\Ø\ï','wp-content/plugins/woocommerce-multilingual/vendor/composer/autoload_static.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'À\Zòq|\â\"Y–LŽ´¿R±',_binary 'ÅŒ¾Œ?¦A¾>l]\Éù“\å\×q©múÑ–[ó†D¹_V','',0,'?'),(_binary '*úO\Ä‘\Ì\â\ê·\åi','wp-includes/customize/class-wp-customize-media-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£U©\Û=\r¥˜‡J\ç„$€',_binary '”_&£3¬\é$††\Ã9Ÿ•\Ô\×b\éÚ–N±ø\é\Z*\n','',0,'?'),(_binary '1R\æÏ|@Åº>\Úò³','wp-content/themes/flatsome/woocommerce/checkout/terms.php',0,_binary 'ˆ3Ï£\ÚÐŸ\Ëi´\äA¡®',_binary 'ˆ3Ï£\ÚÐŸ\Ëi´\äA¡®',_binary 'õ\êFÁŸ¡÷B\Ê\×\Î\Ïi\0\Ý\Ó`³‚Z\í6\ÉÁ¤\î\Î-£','',0,'?'),(_binary '2„<\ÎÊ±u\ë\Ü!=–?ø','wp-content/plugins/yith-woocommerce-wishlist/templates/wishlist-view-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\Í\ÎAaðv$\ä¦]	øŸz',_binary 'GN)úxóa„‹±\Ï~ª`Aðú¨“B²J·oqŒ4\Â','',0,'?'),(_binary 'Dƒ¬ š2û”K|&\å','wp-admin/css/nav-menus-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\íR6½\\Ž	uS\Ç!-\'',_binary 'pue—À¯z.-»\Øü\â_}7\Øõ\Z»A‰l\â\É','',0,'?'),(_binary 'F¾õ\rs¾®ÿ\ÙÙ‘}','wp-content/plugins/woocommerce/src/Admin/API/Reports/Products/Stats/Controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm+…O\ìò:7v¨´›Ò¤',_binary '>\æ\ë³$\Ç*P]+y[{øl¯%\ÒBz\ëœ\á\Ï\"/\ì','',0,'?'),(_binary 'F\ê\"¹,i5\"\Üb\Ú_\ë\"','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/image-dimensions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\çÙ˜™[FJº;\Ú3u¹KA,',_binary 'mÂ£\Z\ê\rÙµ—2¸\\ð\n\Ëƒ[\n}<\Þ\äŽGD\ê\ãv‡\É','',0,'?'),(_binary 'I\æ>æ“¢\Â\É\Ë\Ó<\ßJ\r','wp-content/themes/flatsome/assets/img/payment-icons/icon-dinnersclub.svg.php',0,_binary '­L@$µŠ«\ß\ÜPu@\îr',_binary '­L@$µŠ«\ß\ÜPu@\îr',_binary 'E\ï\ëN\0ó\Í[\Ó_0# (F}–\ã”m\å\Ø\ÄÿÄµ\åº+G','',0,'?'),(_binary 'Kw‚\Ý	ˆŠ?ºôW·–Z”','wp-content/plugins/wordfence/modules/login-security/js/admin-global.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯\Ãq!\è\Ãù\0ð­€ \'¥û',_binary '\ØW´4$a¼ö\Ü\'xô\é\à-¬\ÔKÎ¼–#’Z¯ðü','',0,'?'),(_binary 'L\ä\àÿ\ì\èmN\ÖòDV\"\è5','wp-content/plugins/woocommerce-multilingual/res/images/icon16.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2 Yò\'†F\åc\ÅbF-•^\Æ',_binary '\Ð-_÷´\èÔ‡Ÿ•2‚~ù±Bu\à{‡:6<2?ü\à\à','',0,'?'),(_binary 'Q\ï10\Øò\éýöGŽÿ,','wp-includes/sodium_compat/src/Core32/Curve25519/H.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x} ó’”\ïpc° K\àOÿ',_binary '(H>\Éö0€}¾\Í8:e…)ï¼´¬ð™NÁ/\Îz\ì','',0,'?'),(_binary 'WÎªi0\'ŠSV½2\ì\É@§','wp-content/plugins/woocommerce-multilingual/res/font/otgs-icons.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2^fCf\Æ4T„5zb#',_binary 'œWýø÷\àõ)r\êøš\ÑÈ^1\ÍS¸þ\É\n\É:µ','',0,'?'),(_binary '\\de—Aý¨gü\×\î','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/privacy/yit-privacy-plugin-abstract.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž¹u4‚\Ñ.½\ähsö\Õ',_binary 'õ%ö)“\â\×eZd!@{\Ò\Ð\ë\îÖŸ`u˜j\êód´\í','',0,'?'),(_binary 'eNG¬\ÇN‘õ\Ïh\ßG¾','wp-content/plugins/woocommerce-currency-switcher/js/price-slider_33.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\â.v4\äGÜ›¬‘[Ÿ\çh\Ô',_binary '­¶\ÅØ®¾/NA	\Þ•®L˜qƒ¯\\-=k\Ô\ãH§J™V','',0,'?'),(_binary 'hze<\'~\ÄÎªÕ‡!˜','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/ui-icons_454545_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k)\ãbY\Z\âp³<O\Ãö|²',_binary 'vûYæ¯9{¬\á€\æ¢×„\ZXÁ_U	ÆŽüŽð$','',0,'?'),(_binary 'iñ‹Áp«‚¸}|š$D','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-list/product-list.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ü?‹\åGCG*;\ÓE*\0',_binary '\â«u`¨\Âu\ÈX-\Ø\ÛLöl©ù¹5#Š[\Å\ê','',0,'?'),(_binary 'x›`\ê@9³ðúœ\æn\ãa','wp-content/themes/flatsome/inc/admin/advanced/functions/functions.options.php',0,_binary '\r‹Ÿ¸\Ú\×#\×K~á†‰D¯\Ç',_binary '\r‹Ÿ¸\Ú\×#\×K~á†‰D¯\Ç',_binary '\×\Zþš\Ü T‚™$Ž\íKš\îCxÿ\Æi“‘\æ\Ñ\ÅñE\n','',0,'?'),(_binary '{\çMŒ“i»i2n•\Ã6\Ü','wp-includes/js/jquery/ui/effect-highlight.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@q\Ã\0\Ä\ç\ÜwMÊ¤®:\\K',_binary '°)S[n}=T&A»X\ÔvŽ\Ü^|ªªþuS­p\îb\ã\è','',0,'?'),(_binary '™\ì±rOn›uXg}','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/inline-fields.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ò\Ê\ì\ÜP,À=\é\Ã\ê\nðý',_binary '½‘›!\Ä†“Mù›\È\ä\ÈgË«\ØHH’IwÅ›\ë\êd\Ãn','',0,'?'),(_binary 'ˆ*Ý´n\Ü2yi~‚±','wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-reports.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½\í\Ä‰ŽLpkÞ™\ëj',_binary '&44HD¥J+…&H!¶6„\Ôù}²\Í*=Ñ°I{>)N','',0,'?'),(_binary '‰ê³›8•÷±zÙ”]\Ú\ï\í','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-ja.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@^g$b°vNNò^T\íM=\Ê',_binary 'Ä¡!l\ì¢y¹k;•‘½} ¶°\Ó^²,\Øjg,k\á;','',0,'?'),(_binary '‹t\Ì1’N\Ðò‘¸º63','wp-content/plugins/woocommerce/templates/myaccount/lost-password-confirmation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì_¥	c \ïÑšUh:ô',_binary '=Sd\ì .F‹BGYò\êu52¶(Õ†\n6\ÌÅ‘˜Rgù\\','',0,'?'),(_binary '‹ü\ÚQ\Èv¸@™¢ˆ0d','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/utils.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»^³»_¼44¶ûFþn',_binary '\\u\ê\Ô\ä+	†\Ùö+¢ŒAUz Ž: 6fPò<+','',0,'?'),(_binary 'Œ¡˜Rùý”Š¿E\ätC×','wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-upgrade.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç\Ô%CU›9H\çLµS£‰\"',_binary '¸6‘\Ö\é\ç5ªZ©\Êû)TtºK(§_\\@ÀúHtS\Ã','',0,'?'),(_binary 'g¡Jg%£ t™6U\Êl','wp-content/plugins/woocommerce/src/Admin/FeaturePlugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%/ºµ-þ&ŽYÍ²–ü\Z>',_binary '&\êFz\î/ovri\Ç\ã\Ìùv¶Ë´;Û§Z§™š¢f[','',0,'?'),(_binary '“1–#4ì‰”\Ó\Z±\Ñ÷6ø','wp-content/themes/flatsome/inc/admin/customizer/img/search-icon-outline-round.svg',0,_binary '\ï·\èÃ¦\ÎM\'r&S\é!6P',_binary '\ï·\èÃ¦\ÎM\'r&S\é!6P',_binary '‹(ñ­,:\ë`\Ùÿ§º:<¯…rMM:xU)`Ã2Du¤','',0,'?'),(_binary '“3hl<ór\0V\ä¡À¹ó','wp-content/plugins/woocommerce/includes/rest-api/Utilities/ImageAttachment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hTŒ‹UXAÞ¹z^=<A',_binary '\Ð\é\ÃFÕ¾I2¦\ÍJE\ËrL\rcšûš3Mÿ¤{Yfõ\Æ','',0,'?'),(_binary '”\ë·:@*’\Û}–œP\î#','wp-content/plugins/yith-woocommerce-wishlist/assets/images/get-premium-wishlist.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þr¥ƒ‚t\æñ4H|L‰Á',_binary 'ü g=û¯\Ô\Í8\ìº2¿Q¨þN%ÀR\Â5\Ã>cC÷\ìh','',0,'?'),(_binary '–?^Á\"¹\È\Ï\ÇÀb\Øx','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-sl/icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g²?S\à\é»\Óõ\ë\ÉS\Ó\Í',_binary '½	y:rÅ§;\íU\â	<–9òL?\ë\ÚîŸ»~\'6VL\ÎT','',0,'?'),(_binary 'š‡¨\Ã\ÖÁ>ƒBb§\ÅKM','wp-content/themes/flatsome/inc/admin/customizer/img/nav-icon-left.svg',0,_binary 'd\éM¤L¤»º\n[D¨Àª',_binary 'd\éM¤L¤»º\n[D¨Àª',_binary 'Elþ&”«\Ðjýrv±¨	Î‡\"ø«Lv…\Ì+m7','',0,'?'),(_binary 'Ÿ]f˜\ÜD•…\èvMfp','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/order-summary-fee-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'óv{\ç&\0§Ï—F\Ò_J)ö',_binary '*\ÏhW~&j]a\×V@km¶\Ï\r€•©;\è‘O\çø5S+','',0,'?'),(_binary 'ªk\È} ?R- =2\ÙG','wp-content/plugins/woocommerce-multilingual/wpml-woocommerce.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹{H\ÈC„#\Ø\Îø\ÃšV•',_binary 'Oœ™\ïIÀ\èL†ó<¡µ&d»Ár\í†¶!—~k\Ð','',0,'?'),(_binary 'µ)&\ãM2ÁDú\rY\çU^','wp-content/themes/twentytwentyone/assets/sass/05-blocks/tag-clould/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ]\å\í\áTÝ‘ ù‹É´·‹',_binary 'ý¨¤½Vs©\ÎyŽf(°ž˜G\ê8\éhM’´ù\á\ZŠj®†','',0,'?'),(_binary '\ÃòA³\ßFk','wp-admin/js/privacy-tools.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¢.X\Éc\äû†\rµ™n',_binary '9=+*}ü³4-\×o5\ï÷–H„\ß\É[Læª°','',0,'?'),(_binary '\Æ7ªG¯ˆ\åT·(\ì4?ü','wp-content/themes/flatsome/inc/builder/shortcodes/woocommerce_cart.php',0,_binary 'oMšaŠe\Âg(!ª¹“`–',_binary 'oMšaŠe\Âg(!ª¹“`–',_binary '‹HŒ¨»\'~–®`!JL¯c?J\Æ\Ó=\Õ_{00\Î.¸\ïŠW','',0,'?'),(_binary '\Æw©9\ËÐ€\Ð>\îª\Ë\'½Z','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-checkbox.php',0,_binary '§p÷ž?kgŽ¼\ïF‚FTª',_binary '§p÷ž?kgŽ¼\ïF‚FTª',_binary '­kxš\Èõ s“÷3²k¢ü¼Q±Œ¼9I]¦¢¾…V','',0,'?'),(_binary '\Î:€\Ë}¨NJ\Zam\È.g	','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/sort-select/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*¦o÷ˆÖ€¦\Åô?b]\Êu',_binary '\×\Õ…$“\Ïñuê’»Á¥z\áe®Zì‚€˜\Î\ÃZ\éŒV„','',0,'?'),(_binary '\Î\Ú!¬óD`v•P§‹@oU','wp-content/plugins/woocommerce/assets/client/admin/chunks/9360.style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^.À\'Ç”ÿ\åž\Ä\àT',_binary '@K$ž\"A¼\ä¬Ð™ªqmƒ4­mˆŽ¸6\ÍxB›\éô\ê','',0,'?'),(_binary '\Ô^G˜bþ\n–q\í\é§','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-plugin-gradients.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÐG\áð³½úýe\Ì5c%fy',_binary 'S?~ó3\Øb“˜eivœ°H’•m£¹\0“b*3_·T\Êó','',0,'?'),(_binary 'Ôµ\íËª	‡\ßÅ¤J7±','wp-content/themes/flatsome/inc/admin/envato_setup/envato_setup.php',0,_binary '[¬\ÚÀ\ã9ÿ¹¨3\íÚ‰\Ð',_binary '[¬\ÚÀ\ã9ÿ¹¨3\íÚ‰\Ð',_binary '\ß\ì\âqiLÀV\Z*\æ!þ‰Õ©\Û\é“DÉ‚¢1\È\Õú)B','',0,'?'),(_binary '\Ô\Ü\Ü\0°Ë§Y¿W\Æ','wp-content/plugins/woocommerce/includes/class-wc-cart-fees.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬\Â`	³o}ú5\êwb\íA_',_binary '\ØRIqŽ\åG†ü\â\\¬!‚œKFó>œö¤\ÔÈ¢','',0,'?'),(_binary '\àù\Ô.Q}3\Ò\ÙT‰','wp-includes/Requests/Hooker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³²ô¹…\ÌPz©4É‡F*',_binary 't\r{\Ökƒ?i\Îk\ä•C\nL\ãðƒ‘b\ïÌ‡\ÝWy','',0,'?'),(_binary '\á\Û\Î+	rË§k\Ø\ám\0³','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-layered-nav-filters.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú\äg+üˆÀÞ«ô·8\Ø',_binary 'q‹];¹¶¾þ\Z—ynx‘ŽU´A\Æn­™pþ,t\Â:','',0,'?'),(_binary '\çZ\Ò÷u\Ñ\Ê\ÉiigÔ„€Œ','wp-includes/js/dist/nux.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æOx¿ø“¹x‘‘½×†',_binary '9c\\Wb½«Š¹Ç¹1ú‘€‚(ÀGe¡Ÿ	\îEM\Üýw\n\Ã;','',0,'?'),(_binary 'ùAJúòG\"“’¨r,²B','wp-content/plugins/woocommerce/assets/client/admin/chunks/wcpay-payment-welcome-page.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2,L?-aØœ~Ÿ\è\Ú',_binary 'ðô~5Xp\î!©\ã\0\Îh\Ök(vQ\r\Æ\ë—&^I','',0,'?'),(_binary '\rw\ÏRˆ;¾w:½º£>?0','wp-content/plugins/woocommerce/src/Admin/API/Reports/Downloads/Query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ/{\îÁ»iû„›0\â',_binary 'Õ¶&X»2Ý²SÌº\Õô\ì\Û\"°å…š¿Gño\Z\r','',0,'?'),(_binary '\rFŠBŒŠ(\ÝÙ„\Zº','wp-content/plugins/woocommerce/includes/class-wc-tax.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£\ÛIcp›¾ùDiT\ÌW\Ù\ß',_binary '³µ#&0\í)\Î}\ÎAG\Í \êkm6`B2Ý¾Çº.7','',0,'?'),(_binary '\rÍ›Ü¹ø}C\ßL\Å\ÉR)','wp-includes/blocks/file/view.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—\ÝR\Ìr\ëpS6HW',_binary '‡„\Î/}B¹€9mZm¡j‰²”2[\Ü+»vý7ML/x','',0,'?'),(_binary '\r\îb’ß©¡={‡ ¬½ù','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-download.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ð¾’‹ø“~\ëA‹› *úm',_binary '2©¨¨ûºò2\æ”5þ¾†?4ç¡‰ƒ?\"8Exóû%','',0,'?'),(_binary '\r\ZdU²·,,¤`O˜Hú','wp-content/plugins/woocommerce/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Á\àx@#\ïd]d‰!D&\Øw',_binary '\n\é615A˜s0\Ãœño\Ø^\æ÷\éñ†;úº\æðŠ3šò','',0,'?'),(_binary '\rÌµ)D£tL½\Ñü\Ðóò','wp-content/themes/flatsome/inc/admin/options/pages/options-pages.php',0,_binary 'œYº¯jf¥-šd­Fùb',_binary 'œYº¯jf¥-šd­Fùb',_binary '#^9«\Ò\æˆbG\Ï.\Û\èq²aÎ§ÁŒõ\Ã`\'\î','',0,'?'),(_binary '\r$R|§\È\àDV•\0™a¹6…','wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-bg_BG.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ×¦vÐ™¹€F\Û\ßr‘¾\á',_binary '7½hq\ä¸ò\ÒIs9k\èý…ª®\Ò\Äf8”’±­]q\Ä','',0,'?'),(_binary '\r)˜ñKT°Íºm÷OO€V?','wp-content/plugins/ti-woocommerce-wishlist/admin/settings/settings.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{x	)W„’ö\Ç\Ä\Ø?B^\Ú',_binary '\Þi;G‰vœ\Ü\ç\Ø\ë‰p…\ÏË±~34=†\ÍK\ï\Æ\á','',0,'?'),(_binary '\r+—Hª–ž#\Üÿÿ]\Ø8¸','wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/multibanco.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–\ÛQB¹¾;M8\'\É3',_binary '>®¬bk.6\î\ÄaŒ•„¶ß‚®œDPkÿ˜&b_«','',0,'?'),(_binary '\r-\àLÕ•–sÌ¥SJeõ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-payment-block/attributes.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@ñ6¿½š67mÕ¤bL7‡',_binary '\Ø&„%‘Æ§}ö\í: ¦TÇ ]É¸–Jõ\â','',0,'?'),(_binary '\r60\È4\Ý7¿³±\æ8,','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ð\Î÷€!\Ä\ÈHÿ¥hœŸ',_binary '\Î9.YlS®‰ö\Ë\Ì\ÈA\ÙXN‹\Ôo*b€º¾l','',0,'?'),(_binary '\r?O\ëlNY´óÖ&‰Y\ZG','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-discount/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®‹\É!À€…¶_€ÿ ž…',_binary 'f^d\rõñc9¯´ùµ\Û+«br[\â.ùS50\ß\Ñ$\Í','',0,'?'),(_binary '\rCß¸\íÎ‡\ÏÁ”Ó²eÁ®','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/variable/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þþ\Ê\Ù\à\n\à\'x?ŸUó\"\Õ',_binary '\Æ\Ö5”\Êz\âi ó˜£·~–Ž),7:ð¬¶\êfA\Ì','',0,'?'),(_binary '\rT\ëpŸf˜žÉ \nD\Ñ\Ò5','wp-content/themes/flatsome/inc/admin/customizer/img/text-overlay.svg',0,_binary 'P}gO/•4\è\0\Ã\é\à\'K',_binary 'P}gO/•4\è\0\Ã\é\à\'K',_binary 'Šwj‰\Åu^\äJ\íH\Ä\Æ\ß \êL„3R›\Ú\Ìè«¸o~þ','',0,'?'),(_binary '\rUÀj\Âzh—2/ð9œfM','wp-admin/js/application-passwords.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-:ø\Øú28R@™ùI}',_binary 'ÁS:þóM•Ÿœ;—–C\0“<·{Q–\Ü¾5ù5¸C€‡','',0,'?'),(_binary '\rYGV˜¯÷£¾I\Ã?ŽŽ','wp-content/plugins/woocommerce/includes/admin/views/html-notice-update.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹žw#\Ëi÷¥‡pX,\ß',_binary '·\ä\Ë\åZ\r?pò÷Sd\Õ\ïô\"\çM_ÞŽÉª\Ó5','',0,'?'),(_binary '\re\"o#Á\É1hsÌ½ú','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-yith-wcqv.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ôiIžC<4#‹\îð-”\ç\ï',_binary 'GB#z\Âu\ß3L\ÌÒ’_\0K-]rLÜ‘\'y»t:—\ïþ','',0,'?'),(_binary '\ro‚È½ƒ\×ò3\Ýq½\0\"\×H','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/slot/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oo\"NQh H\ë¸_)9\Ñ',_binary '-{l\êV”\×Áú¥0 \ä \æKT\ßQL\ÇˆšUõ#','',0,'?'),(_binary '\rq\èÉZü‚¥Q8]õs','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Parsing/UnexpectedEOFException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ó\Þ&YQ\ä¥\ç\Ø2Bmº,ò',_binary '!¯—²•’r®!`\Z8\Új^P7ƒ&¶§Iq*Ÿ-\Å','',0,'?'),(_binary '\rvk½P-\Èt¸Gš¥¦Hm','wp-content/plugins/contact-form-7/modules/checkbox.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\ï½\ÛJß­¿ !‹^9\â',_binary 'špw:\ì\Æ ^\Ök\ÏE	Á™}G?·uB\È)ð\âY °','',0,'?'),(_binary '\rxÝ^´§¿\Z ƒ½<;','wp-admin/my-sites.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\åO\ë=¶uÍ¹\ï\ÓZ‹|',_binary 'kh‹{¶dó’\×4Mó´>J\ï\Zn\ÞËŠžÐ¶²','',0,'?'),(_binary '\ry \æY«>-+œBK ','wp-content/themes/flatsome/assets/img/payment-icons/icon-ripple.svg.php',0,_binary '\é]ÆŠ\rdX\\\Ý~3ñ&Š',_binary '\é]ÆŠ\rdX\\\Ý~3ñ&Š',_binary 'ü6ˆ50\Ö\ÇhÁ\Z¶Ž\ëù ô\ì§{(\Ãf2g¾»«\Ë7','',0,'?'),(_binary '\ry\Úh\ê5\ïZL]\ßYmJ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/form-step/form-step-block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\Ð/S>\ÇÂ®x·\ß',_binary '\Ýaœ\Øüú7¹j•;ˆ\Ì\Éü\Ý\êhe]t*žQg','',0,'?'),(_binary '\rz\Ç¾±ŠD\ÖD\ëž\Ó','wp-content/plugins/wordfence/views/options/option-toggled-sub.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à¿÷m“º­\ÃÀô_\á‚',_binary '¦»RÈ†F\nD\î~H\îŽ08),:llWøn®\rc²\ß','',0,'?'),(_binary '\r\'¨A<‹G•šª„\Ø\ß','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Utilities/ProductQuery.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TöŠÎ¦\ì\Ê«q\Å=t‰\ã',_binary '\ê…\áò\æ¬\àÒ¬\Øí¹¢\"`…RØ¨\ÆBÂ–Æª€\Ûb9\Ò','',0,'?'),(_binary '\r€\çþ\à\ËX°öÀ­+\Ã-Ta','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@ öMÏ¼³V_¡i¦	\Â\ï',_binary '\ë\åU\âs\ì\Ý\Î\ÂDŽMÃ™\Æd\ÍÀ€(\Ï\0ƒ±Ä¦~\Í\Ì\Ç','',0,'?'),(_binary '\rƒvNõ\Ì[B\á\Ó&\ê\ØSL','wp-admin/css/common.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e-œ\0ÿì°ŠUaö´ƒ—¹',_binary '\ßJ¥;IË¡”Ö£W|ï¼°žD¼^¾±(Êº69%3','',0,'?'),(_binary '\r†\Ü\Ëµ/ÿK¶M2³$_1','wp-content/plugins/woocommerce/templates/myaccount/form-login.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\çA³Ú²J{e¿MŒøƒ\"',_binary '™\Í4#\í)\Â6\åËµ¿‘´%\Ô;›08·0>p7z©\ãš\Ù\è','',0,'?'),(_binary '\r\Ê<\Ý:\Ñ -{ÿ«Ì–H','wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3Â°‚\ná„·þ\0\Ýaƒ\ê',_binary '`	\\XO¡U>8X.\ç±f­?ú®mû{\nQ]¶8\è\Ç','',0,'?'),(_binary '\r’dÿ®ƒuQ÷n\èk','wp-content/themes/twentynineteen/sass/media/_media.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':-\è¤ù¯Js+Yr¹C†•x',_binary '$£?2ùú·sÈ‰\ØFŠG?TC?EkB\Éóf… \ê\ÝS­','',0,'?'),(_binary '\r•D»\íM4bÇ³÷|\ã?ÿs','wp-content/plugins/woocommerce/vendor/automattic/jetpack-constants/src/class-constants.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰\Êk[œ\Ê(˜%‹d{6V¾',_binary '|„ß–Þµ\Öðˆ9\è\ÏJ­(o\×xG™\ê¶\×0\É2','',0,'?'),(_binary '\r˜Ò§xOz\ä\â†÷z‚¾h','wp-includes/class-wp-customize-panel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JÏŠˆ\ï/\â±@\á“[&ø»',_binary '—%7;-k“6©§\Ì) f§Hž?@ž\Ç@ÂŒŒq‚','',0,'?'),(_binary '\r›O(†®\â\ÑICö©','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/address-fields.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'m%c\Ëüs·\Òw¡³7',_binary '¼\Ý.\ÞU;\îBZ	@\ÖN\Ð\ë\ßŸ“\â_)\æ\"Ýº1HK','',0,'?'),(_binary '\r›©ÀÚ¾wú]9c­\éªH','wp-content/themes/flatsome/inc/admin/customizer/img/portfolio-simple.svg',0,_binary '…†ŸzW\éŠz\Ò.M\É%\n5$',_binary '…†ŸzW\éŠz\Ò.M\É%\n5$',_binary '¹—ÿÿ‹gl™¡\ntWÌ ¬sˆs‰Ç–Šm\ë','',0,'?'),(_binary '\rœ:‰:‰\ìõHHù:d','wp-admin/css/edit.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Á™xªK±\Õ8x{,¨_u',_binary 'ýSó=Ž\Z¯\n!l¡\é\á _¿8Ð¬\ê8b\æ6\ëd}\r','',0,'?'),(_binary '\rœ¨ÔŽ­ŒŽ“ŠjUR0\Ù','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\„>‹\×U8®ý+Á\0lý<',_binary 'sù6‹ª¾ø—¼ó%¢œ£k“I+Ó˜ûCi4 M\Ý=','',0,'?'),(_binary '\ržA\ÈtµZrr’\nd\È\Ñ\Í\á','wp-content/plugins/woocommerce/includes/class-wc-countries.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'up!¤\ï*›\ëhõ«Un\"',_binary '–š”\éÂ†œu’„gš†¸—„®)ap]Œ©0\ÄZž','',0,'?'),(_binary '\r¤/N®oÿ™\ÕÁ£i­˜ÿ','wp-content/themes/flatsome/inc/builder/shortcodes/page_header.php',0,_binary ',iC¬\ÓkD€;˜\è\Îc U',_binary ',iC¬\ÓkD€;˜\è\Îc U',_binary '\êdŸX ¨U®@“°õ-1~š‚\Ê\ßpy˜B\ÄÈˆ¶\æh','',0,'?'),(_binary '\r¥^(SžMm\Ý\'\00ó©','wp-content/plugins/woocommerce-multilingual/vendor/composer/autoload_psr4.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÊLiœ†û²§º\î\Ë\Ê`\æ',_binary '\ÓÀ¨úÀq\í3ú\í%•:¡ºa\éÿ–S®QŽUÓ™\ï‡e','',0,'?'),(_binary '\r\Ã%\Û\á\ã\Ï%¼ySý`ð','wp-includes/js/crop/cropper.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—²–\ÙH.s\Åo¿ö¨\â',_binary '»py\Ö\ë\Û\Ð,B·ùòú\Ì\ÐG\Ï\Ôö-\Étœ\é«\Ü\Ö=\ás','',0,'?'),(_binary '\rÇ¯\ìC˜Nø\'ƒ\íeÅ²KN','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-title-block/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^e³W\Zü±@Œº\"¶+Ÿ*',_binary '&ñY¤·ÿÜ›\à\Ê\Ç\æy‚v`í‡¤KxØ•ºØ¹Dü','',0,'?'),(_binary '\rÌ»Ô²\Î\ÇLÒ¹™‡)8y','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/yith-icon.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V•GIñ£¢Ö’\Ò¡Ýƒð',_binary '\Ê~\ÄG 2Š\Åüž·Ú³\Ã\0Œ\Ã&^){','',0,'?'),(_binary '\r\Îõ©™F£¶\Ù|X\ÞÅ“·','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H»\'Hyý²ø\àr\ç¶\n',_binary 'ò\é\Ð\ì\Êß“¼K4ô\Õe\ä\Å\Æß‚\â–\ØþS®]€n\ê','',0,'?'),(_binary '\rÑª1s1=¬¡`(˜y','wp-admin/options-head.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÝcV8A#h:e×­/ò¿^',_binary 'cÒˆ„\î^$kR2\r=½Ü«ðþ\Øù@g¸\Ê2\çú','',0,'?'),(_binary '\r\Ò9\ì~\Ä\ï›)¼Ehöý','wp-content/plugins/woocommerce/assets/images/help.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õQ5j«l)“¢\r)·¹',_binary '¤\Õ\Ì-\0~k–ˆôH¤?»¦p/IÓ´\Ûñ- \Êf\Ö.Q','',0,'?'),(_binary '\rÒ—\èr×¾ˆ Á¹\Î\nœ\Z','wp-content/plugins/wordfence/lib/dashboard/widget_content_logins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\ë@‡\æ­ÿüÞ¯]œ»&',_binary '7aP±ó\\T\â \å£\é\"S\åz·±\ÞJ\Î&b\ÕÙ¸Â®D','',0,'?'),(_binary '\r\ß\ì\î¦À\é]ÄV¿v','wp-content/themes/flatsome/inc/admin/customizer/img/category-box-shade.svg',0,_binary '\æ\åOfPWl\ÎÙµ3Aõ_\é',_binary '\æ\åOfPWl\ÎÙµ3Aõ_\é',_binary '\"ü¯û´\è™=p\Ëk<ôLu¶N×„\Ý#¥»‚%í«·\Þ\Ñ3±','',0,'?'),(_binary '\r\â¯Â¶2O“\Þ2‡ú&¦@','wp-content/plugins/contact-form-7/uninstall.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ä\Ö\à\Úx2–ûñv0\É\r',_binary '˜\Ì]¶ú¸\îŽC¯`£\Ì\'\àõù\ÔÅ¦Q5&˜fø','',0,'?'),(_binary '\r\æ\Öd©¥=óžµ{eI¶\Ì','wp-content/plugins/woocommerce-multilingual/templates/currency-switchers/legacy-list-horizontal/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷\ë³ó/.Ûœ„R[²§ol\ã',_binary 'ðN\ìË­¨\Ê#_Rë»” w€˜GR{ŽWTGŽ‰’Qin','',0,'?'),(_binary '\r\ê/5ˆßÌŒ%¸B\Ç\æ\å','wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/AutoloadProcessor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ö§G•\Ù\ÌýùB”P“±',_binary '$H«·Á¼n\É\Õ\ì\Å\Ã\"\Ëe^\æ÷¥è˜¤{\àÏ¨Ÿ\Z','',0,'?'),(_binary '\0±[|\åø}–¹è¢„D\Ä','wp-content/themes/twentytwentyone/assets/images/in-the-bois-de-boulogne.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jV\É@K\á¹œø7',_binary '²\Ù\à\ï7y\Ã^-ö·\'“–ðˆ<^?bL½±\Úi=x\×','',0,'?'),(_binary 'òa©\ÂU\Ä2\à‹¬ò“','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/button-call-to-action.svg',0,_binary 'JxÂ„#Ÿ¥\Z}\'',_binary 'JxÂ„#Ÿ¥\Z}\'',_binary '~{D§iO\Ü2\Æ~\Ê\'V16«\ã;}=\à\"§\êF\ÖH','',0,'?'),(_binary '_\ïŒÆ‡\ÑË†\Ö??L','wp-content/themes/flatsome/inc/integrations/wc-composite-products/composite-products.php',0,_binary '.ÓŸK,\Ï\ÈP=_o\à/+l\ì',_binary '.ÓŸK,\Ï\ÈP=_o\à/+l\ì',_binary '……Ê…2V¼TK²\Ïüp8NT\ì\Ú,¼\ÇR\ÈD\Ì\0h','',0,'?'),(_binary ' gUg#	l=J˜Žô','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-products.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñ\"k­ýÛ°$-\Ì8<\Ø*',_binary 'I\ÂQ½\'h\×C\Ô-\r]1ð*ü0bš ¢>\Íg9N÷\n\Üõ','',0,'?'),(_binary '\"\Ó×²Ž|9`\Ì','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/payment-method-extensions/payment-methods/bacs/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}º¨+õ¸“c“dIÀ\Ç\Ù',_binary 'g™¾\ã«ÿ\Õ\çMò*(Ì˜j`ˆ÷\ËÖ‰\á¨\ÔóÙŠ¤˜','',0,'?'),(_binary '\"\à\ë\ä\í8\ßG`q/\äž\"','wp-content/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories/Synchronize.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&ñ‚…;\Z7\ì0×žQ\Ë\Û',_binary 'Ð§t\Ö\Ü\Ø9gSå»•eO¼ü˜Vw\íŸz\ëñœf¥P','',0,'?'),(_binary '*$\Æ\Õp\ï?_¯g”{ÃŒ','wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/styles/style-3/styles.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\îl\Ëo<-\'S\Å\Ó',_binary 'd\Þ\Ñoáœƒ=,, À,Ù²‚$¾°µaº\×\Ûy\Ø','',0,'?'),(_binary '+\î-e%Y­\èW\Ú>G>\ç','wp-content/themes/flatsome/inc/admin/options/shop/options-shop-cart-checkout.php',0,_binary '3?\ç\Å\äÿ\Ð\n\æ\à\å)',_binary '3?\ç\Å\äÿ\Ð\n\æ\à\å)',_binary '\é EIQÿ/Ï»d¹_(%‡Wú>\0AET–Hžø.<','',0,'?'),(_binary '/ññ[o3\r\Ä\ïn•','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/dn.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Í]\Ã);\ä£\0\0a\ÆH:',_binary '\ßõ¢O‹:ü\í0j\îŒm\äž\Ö\å)Ä„Y\ÙoÊ¥ UZk','',0,'?'),(_binary ';\í\é°\àP\ç‹o6\È4E','wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-checkout.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£¹\ã# t(Ž¨85]_',_binary 'e\Ê-¤~\É\í±j¾›+“¢Up~\é\â\È\á\í\ÒúK+/§±‹0','',0,'?'),(_binary '=€A›½:\ï-HÈ”\rl','wp-content/plugins/yith-woocommerce-wishlist/includes/data-stores/class-yith-wcwl-wishlist-item-data-store.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ê°µ\ÇP\Þ&UJ¢j7F',_binary 'Ù­\ÎkQ[¤YJžñ “A‘`\å\Êx“`\ê\Z\Æ\Î \r\Õª','',0,'?'),(_binary 'Cò\"ã°º”Þˆ³ƒ¶÷','wp-content/plugins/woocommerce/assets/images/onboarding/razorpay.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú©9¢\Ê\ÇÍˆ\êplõpˆ',_binary '2¹W\ë\Ë=\ç<B”1\ßD}r\ëP\àŒ+‰½ˆu~ƒ','',0,'?'),(_binary 'ORó\\‹…5\È\Í^¦','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-category/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e²oÿ„P\àwñ)¹ƒ\é!',_binary '\ãûZ\r–e\'\r\nB\ÇcðU\Ãl\ç<ˆ\nTÄ’íž€§','',0,'?'),(_binary 'VKOtÞˆ7\ÒU\Þ\r‡','wp-content/plugins/woocommerce-multilingual/templates/multi-currency/multi-currency.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“*\Õò¡\\¬g|¿7 \Â',_binary '¹\n\ÚG¤})X‘}Bù\àó7@µ\Æ9¿òcYŒ','',0,'?'),(_binary 'W7¤”{(„¦;:P¥š?','wp-admin/includes/class-bulk-upgrader-skin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ü!z\á-^:\çþ\ÙÐ¿$ñ',_binary '4a]ð\ê\ädý±©ûs\'	Txœn\"\è»“üa§Ý»\ä','',0,'?'),(_binary 'Xÿ\æHå¥¥(»:\ÈZ\í©','wp-admin/admin-ajax.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\ÊIys–†j…y¥\ìÑ¨_',_binary '8=Ô»ý(¨ý¸H\è™&²uE\Zl}RZ±°>Olx','',0,'?'),(_binary 'a5\ÂÍ…Bˆ_ó­s\Î','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_classmap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†EÓ¤ã­‡\ç\ÏMˆ¤gª´',_binary 'Q\Øø£*\'¶„þB©+Eüßž³û:•ómŒ\Îyu\ÖW','',0,'?'),(_binary 'e± \Ö,_\0\Ó-l\Åp¨F','wp-content/plugins/woocommerce-currency-switcher/classes/widgets/widget-woocs-selector.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Û2	pC»ˆY«\Ø`¥Y?',_binary 'ñ¿\×\É=ý\×\Öe£ Ÿ\Í 7±J\ê’PŠu\ÍâŽ¼ð','',0,'?'),(_binary 'go¬sœV\ã£;\í\Çÿ…\n$','wp-includes/js/tinymce/plugins/compat3x/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\ÛnÁ\Ã\Ù1\Ù\ì»Ÿ\ÏoVb',_binary 'CÀ„ùT™(›\çN+•,´TN\èCÀ÷\Ì`Þ©Š‚\ì¿','',0,'?'),(_binary 'h™;T²\ìHlED©v¹[','wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«¯³\Ýò¥Zp£A\éfX',_binary 'Lù#ú>\â¦Ì´ß²ú9	”‰ý³ü<]¼\Ä“66Â¹ ','',0,'?'),(_binary 'h\Â8ÀnOf->t÷\Év\Æ\0','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-radio.php',0,_binary '…2büÂ­°KJ°\í•L\Ë\Í?',_binary '…2büÂ­°KJ°\í•L\Ë\Í?',_binary 'ÿZHTc\æ& .f\Éz\âº\Ø\ÒJA5T\Þs»É·\Ñ=½~³','',0,'?'),(_binary 'zS%Æ²F\Âw&\ê	\Ñý','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/expandable-search-list-item/expandable-search-list-item.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"Xn¹ùƒ\å9ó°xnû^',_binary '[†\Å\Â#¡\Øq\Ñj«3\Â7J\ÑiœÜŠ\ÎkFqœª','',0,'?'),(_binary '}¿\îM\Ç\Û\ã\ï@rñ\\h','wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-form-rtl.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U‹€jXøÿŽLR\ï',_binary '5Y¿\ÒkB½oªöô’Àô\0PSÀ’fñ`\Ña\áJ8 6','',0,'?'),(_binary '~D\ë@\Ô\Ë=a\Çv:q_','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-line-items-block/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#Œ	ñ3y\ÞK,\Ê`u',_binary 'ž&q„¶6,z<H¾bp¦lv°F\Â`Ø™2É¿\\{•\í','',0,'?'),(_binary '€R\ä\æTÕŒ\ÓSW\Îý[\Å','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/button/stories/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿Î\Î1\ÚSP\î\íb08ÿY\É',_binary 'ñ*Ž¾\ß\ÕoR\ë‹5ƒ£/\Ë\îc©¡cö¿	09È«','',0,'?'),(_binary 'ƒbg\ëV\â{\î~4/\ç\ç','wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-zh_ZH.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \ÓCWA\Ód}&k›Œ\Æ',_binary 'Wb\0Â•±„úÀw¨\ZSöyc§ÑCh‹<4MñJ‡ù8','',0,'?'),(_binary '•h¯r\Z¨—ªº;%e˜-x','wp-content/plugins/wordfence/css/images/ui-icons_444444_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ØG\ÓJû‡u;Q\ÔZ6ø½',_binary 'ÿû…\ß\\MUŒ\íKhQ¯wÀC©¶i\ÖV´î¢¹²\ÎJ\'','',0,'?'),(_binary '˜A C04\Ôe|\Ûb\Ö\Är^','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/utils/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GÂœ‰=%_Kn\Ó*l6ý',_binary 'vTè¨C\ç~¶Y¼T¥j8^‡\å\Ñb\Ô(L$ßa£','',0,'?'),(_binary 'šŽ½\Ô{ûpOB·\Z´','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/category-list/attributes.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#ºUNk}\Ëd¹ m\Ý',_binary '\ê¦/úk×¤¯\"\íW\ï\ÃAOb,B\ë7*4‚¡4£·','',0,'?'),(_binary '¢³óU‡„)\ä\àÊ€3G','wp-content/plugins/akismet/changelog.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Žu(YùkRˆ¢S\á',_binary 'ù%OœN+£84Nmö[­Ö‚Á\Ü\×/fÁwc®\Ü\Æ)\0p€—','',0,'?'),(_binary 'Ÿ\ê\ïo\Ýx+ƒ\â¥òJŠ:','wp-content/plugins/woocommerce/legacy/js/selectWoo/selectWoo.full.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ã\":X¶5Xõ\ÆRÆ’‹Œ',_binary 'ö\Ë?«Y_8ù\íÞ¡¿i³°w•\nCó\ÙUM\Úú€÷«oG\Þ','',0,'?'),(_binary '­Áo+F‹¿ü0Hn3\ÇhJ','wp-includes/blocks/gallery.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ù\ïsö\å\ÔÂŠ™:òÿª',_binary 'D4³M¢9B\Í;¸\Õ\ìƒ\å}j›þ\à–¤F&ZÁÐ§\"¬\ß','',0,'?'),(_binary '³ðŽ\"r;Ö‰E\ÇùS','wp-content/plugins/woocommerce-currency-switcher/css/sd/selectron23.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(a\É=ñ¹eT¡\rJ',_binary 'Ï„Koa\íQ\ì“\ïS©‰\Z\ÅuÁ!¬\Ì—Q²','',0,'?'),(_binary 'À\Üô˜LÌŸ‹>÷b|\Û','wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/onboarding-product-import-notice.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|Cþ·Q\Ï,Þ‡öC D?',_binary ' V»\Ü\ä\\Ÿ\Ã× ƒ\í\ÙCÚ¡\Ù\æ‡\ßkp†œè€¹ =p','',0,'?'),(_binary 'Ã–¹\Ô’vhµ»›lú\ÜP','wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G»-BK¡A›42\Çm',_binary '\n\çš)\ë­^²ó	ô\Å\Õ\á`-÷˜/†\×3{):?\Â','',0,'?'),(_binary '\Ç\×Ý£&9ô\×-Á','wp-content/plugins/woocommerce/src/Admin/Features/Onboarding.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€TCbö·UQ&\ÍüIŸC',_binary 'ç­Yš’\0‹v¾˜­5±(Š\íüDN¿­·³Ä…X','',0,'?'),(_binary '\Ì ‡\ì¡CªY–Žñ','wp-includes/pomo/entry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x’U&ƒ9.©%k(«û]\Ã',_binary '”÷\î„\0#ü\ï\Ù60I>ø\ä´\âèž™\à[\Ô7Œ\Ûe|\Ï','',0,'?'),(_binary '\Í>ÿM\Ò8¸ Ùµ­\Ñ|','wp-includes/images/crystal/archive.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–S\ÊúðŽœ\ÌI0An\ë',_binary 'Lƒ\Ö%X°ó£\ÐO\è+\Ä\ÞAa®!\×SÁ\\Ü‰ô&—¨®','',0,'?'),(_binary 'Í—–~Œ»q¯yL*>','wp-includes/blocks/block/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ý E\é—Ö¬õ\Ò\Úv0',_binary '?\ã\îÿ`\Ñ{\ÔW÷ ‡°e\Þ6•W,„\Ã\'=BÁ“9','',0,'?'),(_binary '\Ø\ëÿ+}y%O\æ¯','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-attributes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M£	„\Éu·\"u¿ž›Øµ',_binary '%AŸ|½“\Ð3\ä•r\âBÍ–\ã\Ñ-­6\ÚZ>minŠW¢','',0,'?'),(_binary '\ß#\\Žül|\r \'¿\'_\Â:','wp-content/plugins/woocommerce-multilingual/res/css/dialogs.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\çŒ\n¼Ö…õt“‹\â³\Ã',_binary 't\ïfH\"¨©gr[Á£¥Y\á\ÐUo~‰Ck´H-\"\ç\è','',0,'?'),(_binary '\ßHd\à”\Ö\ã\èñ•oòCZ','wp-includes/sitemaps/class-wp-sitemaps-index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ù&a‚¯1\Ö\æ›5b}1',_binary '¸kZò\Ç`§\è*5Yu£Â…”WB¦-4Y?\Ð{Ì¯\Ø','',0,'?'),(_binary '\é\â#Š}! “K\ÜMf','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/codemirror/codemirror.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ó– p= :výwRO',_binary '¸ô’ï—‹\Õ\Ë=±¾ºSwÙ¡\Õ\ÊpZöÀ\È\nbaÀ','',0,'?'),(_binary '\ë\å\"\rJ\04°¹\'i´','wp-admin/js/password-strength-meter.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Êƒ¤Dú‡¸)‘a®n',_binary '`®\ÓÁ)CŠELúd¥X\\¢&F-¿V7š+1ÀSA','',0,'?'),(_binary '\ÙCŒ±\çC*Àv\Ë\0ü_\0','wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-customize-color-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ä%Ž\ÝÉ˜V+\Ã \è¬0\á',_binary '\åp\Æ&°šk\ï\Æ\äò\Êgqp tmO\éúÃ¼J÷œ\Ò\Í\0c','',0,'?'),(_binary '\Z™©\Æ\r›\\\Í\Ö9\'û','wp-content/themes/twentytwentytwo/inc/patterns/hidden-bird.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ép¤Û˜¤Ã‹\×\"ö\ÕxC.',_binary 'qm”i\r‡\ß<‡Ð—ˆÝ¶\r\Ð:\Ì\ã;Çšh¦‡¶','',0,'?'),(_binary '#²ª\íbÕ¿\×\\‡(Z$','wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/modules/typekit.js',0,_binary '\Ò|^šó8¢¯7\Ü!\Ù',_binary '\Ò|^šó8¢¯7\Ü!\Ù',_binary '…m¯­`R1¸\0†­C\ß\ÔpˆY_‡µ<¸ö¯\è!å®…','',0,'?'),(_binary '$:‡y¬Ù™:¦\àˆ}','wp-content/themes/flatsome/woocommerce/content-product-cat.php',0,_binary 'œ¢¼ñ:4«hŒÀ\ÉV',_binary 'œ¢¼ñ:4«hŒÀ\ÉV',_binary '¸\r\"}#\á“ñe‘\Ûÿ\çWsü\ÜHü#œ¬yö¡','',0,'?'),(_binary '\'haU\Z±q\Ì`Á\è\Ù\Ìug','wp-includes/blocks/navigation-link/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\\¶A\á\ÔQ›½m!¿fwf\Ï',_binary '+-ou»¸Ÿ\ÚQ‹Ppqþ´¡*’?Ež-w3\×ö~\Ý','',0,'?'),(_binary '4=+–@MH˜³TYü','wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-social-black-background.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'No‰øw3ò»Y¶O¸ú',_binary '¶ß§¾_r‘EDg¨W\r…ô¡› ¤Œ/\'¹\ÖpZ,5','',0,'?'),(_binary '6H3‹\ì’\å\ï†‹	ª','wp-content/themes/flatsome/inc/admin/customizer/img/icon-top.svg',0,_binary '8Y\Ìò{ú\è\Ð\Ãcoš§',_binary '8Y\Ìò{ú\è\Ð\Ãcoš§',_binary '-Š\ëªÃ¬e‘4ú¸8ƒZˆ¦TkšŽ\Éúoûj¼¸','',0,'?'),(_binary '7kqª”\Ð\Â\Ø\åg>((','wp-content/themes/twentytwentyone/assets/css/print.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ö7\Ñ9£(ú uñ\äFD',_binary '\åWEÙºÇŽÎ´U·õ\ßmU·V—\Ê\rÀŽO\×\Ñ\Éz–\æ¸','',0,'?'),(_binary 'O§\ÌZŽ%õl\×[ÿ','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-general.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ò:m®\Û\è9M±‚&¦¼‚',_binary 'ñ\rkV\Õ\Ô;		qzùs\îM@ö\à«\É7\Ö\Ì\ÑZœ0\Ï_','',0,'?'),(_binary 'O\í\âjH}\Ë\Â;Fn®\íY5','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/jquery.colorbox.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼‡	j4\åDòªHj!Y¦\í\ë',_binary '?r\Ô&s:»¸0˜;WûÖg\\V‰F#`†Áˆ1\Ôð\ã-\à','',0,'?'),(_binary 'U4\ÝR¬krË¬\Ô\Å\ÌO','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-discount/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\í7¿8)yy®³s\ÞzÁ^',_binary '\Õ\Í\"\Äû${ñ°\à\Ç*÷A/¹0\áÃ©{\ÂFF7Zp½Ý«','',0,'?'),(_binary '\\\Ü\à\ã”·ðAV*ç±¿','wp-includes/js/jquery/ui/slider.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\Í\å\æú\Æ\ÉE‡ã¤·¾³ ',_binary '>†G>t?¨\á\ÌmCj.\ÙaŸûn6‡û\Ét5¯\ß(\Ú\ãx','',0,'?'),(_binary '`\ÂJø^0)â‚€5J\Ýÿ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/checkout-state/reducer.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#M\ïì¾Š\'R=|“\Þ',_binary '\Ö\Ðuð¿\è\nx+(\èj\Ûs­™I\ÔyY`0‰ôk\Óp','',0,'?'),(_binary '`GÛ´\ãØ…m^op','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'žDúœMµR{iŠ®Pc',_binary '&w\"\á©<…˜\É?H\çŠf÷\Ø>\î\î\ZRø1%B–\Ó\Å','',0,'?'),(_binary 'eø´¶\Ê›\ß~Ð¬9§','wp-content/themes/twentytwenty/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ôg4\ë[ýS$|\ï\È|\å+\ç',_binary '„Ý­j\á,«÷mn\ÐÀe°­Á0@vk\'Qvð\ä\é\ëg­\\','',0,'?'),(_binary 'l M}õ	‘\0\ÒR™±','wp-content/plugins/woocommerce-currency-switcher/fonts/fontello.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&ð\Ðo¶•\ÚJß©þ‘y®',_binary '&¸÷!%cqœ\'b³0>`\Û\á0ýi²;Œ\Ô\Ê \Ñn','',0,'?'),(_binary '‚8%mþa?,@Ì½ÊŸ','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/woo_price.svg',0,_binary '6\Èe\ît@”(\ì\ßa\ßøu',_binary '6\Èe\ît@”(\ì\ßa\ßøu',_binary '\à³\í+WD\Ñ\ÍÃ°\Ón\êtéº»†HŒÕ·º\0-&O\æ','',0,'?'),(_binary 'y lc€\àu\È\çz \ê·A','wp-content/plugins/nextend-facebook-connect/admin/templates/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3v\áª÷2qó€ \r\å\×ý',_binary '\ß\Ñ^{5‡¸\æ²\Å%ÿ4™¾\çW\Ò°2#«z\Ù8@','',0,'?'),(_binary '•c­\ÛnxÀÔº|\È','wp-includes/class-walker-category.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>Š\è\áÌˆö\nºr$<	œ)',_binary 'VQsøxµ®K¶„IñN¤y{xT\æ\íA)¯\Ö%ŸÖ–','',0,'?'),(_binary '©3¯›ý)ñ‘…G0=.','wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-st-taxonomy-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K£©øôŒ³ô»¶„\îv´I',_binary '_\\?ó	ù²š|\äûšE§\Î)Œ&Ñª\Ð\"Çy¸\Ù{\Å;;','',0,'?'),(_binary '¸ò+.˜6þu\×5¼, ý','wp-content/plugins/woocommerce-multilingual/inc/template-classes/setup/class-wcml-setup-attributes-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'múÍ…P\Þ[‡\Èñ8b–>\Å\Ì',_binary '3\"­‰ð:u±«\ßÀ|	-Gm‘‹^j“¦·‹\×Ñ…','',0,'?'),(_binary '¹PKY‘÷\Îij\Ì\Ø{Áþ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/coupon/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ž¨N }\à%+\Ë\Þ:Ø…',_binary '#\åŸ\î\ì¦ú\Îs\Â\'.`Vi€HZz]ñ\çQn&S\Ö\î3','',0,'?'),(_binary 'ºúÀ¡½¸Rc8.²(*','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/contexts.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\í’01G¸0“½Ÿ\íÁ',_binary '¤Àƒ?\'¦ˆ˜H\å8:Þ”÷¾\éhN8¶Ò”TX®cú','',0,'?'),(_binary '¼‹z>R\ï§zaI_T','wp-content/plugins/woocommerce/src/Admin/API/Experiments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'é˜‹†\Ì-[0¤É¥¤&Q:',_binary '\Ù¨v\Ù\Í\Òw\Úzp\èÀ\ã\Æ) •ig¨ß‡9£‡\ß3¾Œ','',0,'?'),(_binary '½‚\àˆ«ªnŒ²Nd','wp-includes/js/hoverintent-js.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' pˆ¶.`–u76°Á?',_binary 'Y!\è:\nAŠþË	¿\æÚ«\ÒZg\Ï,=œ|–ò\ë','',0,'?'),(_binary 'Àþ~²i\Ëˆ¿\r\î\Ç*˜','wp-content/plugins/woocommerce/src/Internal/DependencyManagement/ContainerException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ôa\Î\Å\'–:‹0žŒ>›’9',_binary 'y–z¨H\Âú>}zPzs|t\á\ìgŠƒ\ë+rxŽ\ë1\É','',0,'?'),(_binary 'Á]¯*Á.>`Eõ“f±','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XSalsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\ÓF£ \Æh¢ç€1-¦',_binary '6!oŠmö¦ÝŽ^Ž.Á^@Ë¨\Ñ\Òv7ñ	I\áœ}€Ÿ','',0,'?'),(_binary '\ÇÝ¡=½½Nx¼‡K\Ô`*','wp-content/plugins/wordfence/lib/wordfenceClass.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v¹|\Û	»t¹­E–\ä\É\'k\æ',_binary '[‘Šw”øgÜªµ´cSm\ì\Ð_x[”œ/\á“}|¨h','',0,'?'),(_binary '\Èsc®Ev¯—O8º','wp-content/themes/twentynineteen/sass/media/_captions.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Gr_ù\Â\Ôô6°ÿ¸Dòƒ',_binary 'ô­þ¿Ÿý-L\Õ\Å\Én¥@A!\îô@™\Ïô\Úfþý','',0,'?'),(_binary 'Ë•øW&‘i|6E’Í’_','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/RuleProcessorInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ôü%ýX<\Î\é\ê«š',_binary '£œ_\à{ŒÏŸ\î9H¼&úûW3\Þô(Tu£5\å\ìm‰\ÇS','',0,'?'),(_binary '\ÎO>\âPwœ^ûYÀ\ÊX\ì','wp-includes/blocks/post-template/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\×\ê\ÑV\Þ\àŒ&žG¬˜T\ÌB',_binary 'š«„Õ£J?\ÒÇˆaŸ«]^Þ“\Ç	˜R\ÓV\í%e.','',0,'?'),(_binary '\Ò~\Ñˆ7Ž\Z[O\Ô+™`\Ã','wp-content/themes/flatsome/assets/img/payment-icons/icon-dancard.svg.php',0,_binary '¤úœ×£x\ÅE\á~uô¸0',_binary '¤úœ×£x\ÅE\á~uô¸0',_binary 'y³Ž¥–\Ô \ÞA\ãW5\ê<­\êN\ÛÃ„Í”MX”-„','',0,'?'),(_binary 'Ó’~¹\'o—¯Ž§\îO','wp-content/plugins/woocommerce/src/Admin/API/Reports/Customers/DataStore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ!Ó¿Ÿ\"‚h\Ô,>|\Ö',_binary '¹«Û­a%ÎŽ\ÙOv©ñ˜\Ï#7øCv­S¿Ö»—\ËY;','',0,'?'),(_binary '\èº\nŽ\Òª\æ´©>¤L','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-fields.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ>»llM\nþv\ë[‡MQ',_binary 'GE¯«¾;ð…Yòb\ÑcÕðË•R\Ë¢y™}\É\Ëg','',0,'?'),(_binary '\êòd¸¾=\á\Ã@hs°:k}','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/AuthenticationException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K#lJP¨‹e0uŸg¥Û”',_binary 'UþWMš™\ê\ÛslLž\Ü\æ\Õ9#Tb Wj?\\\Ñu¥¿¹','',0,'?'),(_binary '\îˆrJÿ<p>§ú\Ã\ÄZ–','wp-content/plugins/wordfence/views/scanner/issue-wfThemeUpgrade.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘š2Q\Æ­\Èl¯~ú¯ó!',_binary '†Âš¼t¶RS)\íz®\\{Ó‘(\äWd\ìû\ã9c¹K–F‘','',0,'?'),(_binary '\î´s\Ú_ÙŠ2«À;2ü\à','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-update-plugins.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\íR\ëWß—!¨?\í¾\Ú',_binary '\Åú\í |™\å1¡\Ò\Ê&\ï\É‹²\å\Z8Ú½;Md,â°¾','',0,'?'),(_binary 'õ&/¢db¤d\Èq°2/','wp-admin/includes/class-wp-community-events.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´\Ã3¢\0-±Q}/Yñ¯½F\0',_binary 'x\Üøœ•?\"K¦\êúº¾5”ag\Ýø{pÌ¬yËŒ\ÂF€²\Õ2','',0,'?'),(_binary 'ö%w45øX‚\ßæ³ž','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/base2n.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't¸°^I\'\Ü]!¯²\Ò³ñ',_binary 'ð…Ç¦\Öbt\Ë5¡‹f·úª\Åøc\Ò¿kdþ¼m','',0,'?'),(_binary 'ù\Ðhd@B£} ²fðG','wp-content/plugins/woocommerce/assets/client/admin/chunks/6732.style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'žF\ì!\Æ\ãLµöœeÆ¶bô\Ú',_binary 'f¯£I\äY¦ó¤xD5¡M‡\Ò\Ä*Ç7E®SR	’Z2','',0,'?'),(_binary '\0õª]Àaðv•”¾CY','wp-includes/class-wp-walker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\â¶B|”M­¥ƒ&­T\r)i‘',_binary '”-\í\n,Cü”O“1¢\ëOg¯‹7ý¸\0\ã’\Ñ\Ó','',0,'?'),(_binary '\'\ÝÝ·ª}Î†\â:\ÓK','wp-content/plugins/woocommerce-multilingual/dist/css/multicurrencyOptions/styles.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F ! ~\rº\ÞB†J&6Z ',_binary 'l\'\ÉO\rSŸÏ½\Ö\èÅ­-)I”~‹\à3eü3^¢œV','',0,'?'),(_binary '«?H“©ÿ\Ä\ë—h¬D0	','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ï¬¨‘rzº \ßd\Ú',_binary '½h¥–\Ã+\å][e+ñ¼Žh¥Ó†½ô°FY\à V','',0,'?'),(_binary '“¢þNVÔ±³\æˆz\ÃZ','wp-includes/js/jquery/ui/effect-shake.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\Þ\'ú\êR8\é\ÆÍ°\Ê	Á›',_binary '—dP«f70*ü( \Ä\\k¼¸\à2–nH4¬Ÿ8\Ô=','',0,'?'),(_binary 'Ç­Áµ\ékOl 9Ú‡“J','wp-content/themes/twentytwentyone/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Iƒ®÷cB+³z=D•«2',_binary '\"9yÛŸ\\£–^XŒ }º*>\Û¶aT‰ˆ\ÖX@1\îF','',0,'?'),(_binary 'AŒ\Ùû¬lß¦’\0„].','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-shipping.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/%%Îª\ËJi÷ç—›W\ÃS',_binary '4üYº®\Ë\ë:uö\éRÖ½\\P/‹Pq*C\æ¦Z\È}®','',0,'?'),(_binary 'z\0µ\Ì3hŠ—\Úd›*','wp-includes/blocks/post-template/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÇÄŠq4b$C\"> Žt',_binary 'ogS•¬}\ç2Kò	rGHú2ÍŠ\ï\Â\Õ ’3ûC\à','',0,'?'),(_binary '\"p\Ôdo.\ìX\×Ïºn±òõ','wp-content/plugins/nextend-facebook-connect/includes/avatar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\'[Ÿ\Â\×û¹3´[;­ƒ',_binary 'Ï‚ŽW%º	UÃ…„½\ÖqvœsÎ‰¶<ü´÷9«[Ž\"','',0,'?'),(_binary ')Ÿ_\æö’J¯‡\×™\Ô','wp-includes/js/media-models.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0†CþQX}\nÅ®Q´@M÷',_binary '3\Ð;\ìiŠ,¾\ÔzÃ¶#½5C5\nòµ\Â4,’˜X\ìa ','',0,'?'),(_binary '2\Ä9\Ì_\ï%|8g]C›P„','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/ux_video.svg',0,_binary 'd¿³”\Î]c\à@7Q\ÒÿMS',_binary 'd¿³”\Î]c\à@7Q\ÒÿMS',_binary 'P\èº˜‘_“‚f\Â\×L†KÞƒPxÙ©C÷þ‰\ì’V@H','',0,'?'),(_binary '=”[:Šý„\r&ôF\í\ÝE','wp-includes/blocks/video/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€\Î\âK\\\ï)\nŠHÙ£«',_binary '@\éƒ|±G‰7hf˜­AÙ°ªž9ò¥ª8~0¼\ÕÈš','',0,'?'),(_binary '?¹qD€\Ã2ò>¤¸A¯','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/simle-left-light.svg',0,_binary '8\ê\ÆA^k\é\Þ?n{piw\åL',_binary '8\ê\ÆA^k\é\Þ?n{piw\åL',_binary 'ùˆ\Z\ÖÕ¦ò\Ýn\Ú÷7v\ÖßŸC¯6W«Y\ÚHú}','',0,'?'),(_binary '?¼\Æ\ïÏ¶‹^7:y¸\Ñ','wp-includes/blocks/paragraph/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(Š¡Ÿ:\Ìt\àMe&©>',_binary '\ÃÊŸ\×Ï‰\Ñ\ÙP\ÏXw\Ë\ä»P¥\0\ÃÞ¤opƒ±‚l\×ûÒ¶','',0,'?'),(_binary 'G<7eƒtª/î’÷W¤','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/File.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[f0L”ÅŸ»\Ò\r³{VW\è',_binary '‹\Ð\'&Ü”[m`\ÄÏŠ\Ðc2Eº\Çû%\äW¿GWºä‰·','',0,'?'),(_binary 'L}b&‰Ûµ\å€b','wp-includes/blocks/separator/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\àˆ›Rž—m\Îy\ÍL:',_binary 'Dþk\ÖùL¾?@á¾»\Î\Ø\"¸±\í\î2†j62Aš','',0,'?'),(_binary 'N1\Ì.[µd\çþ„¿\Ã','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-totals-block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WYj t\ä%F\Û\é\×\É+',_binary 'j\ç!\Ìö;È½(.\\Tp;±7OÔ¥nñ\rt\ë\ë','',0,'?'),(_binary 'P›Œ\Ó\r²å’¢#1L\æ','wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ý‘ž¦y\ç°À}d³2M\à',_binary '·\íDg-i9\ä\ã;‰u„ &\Ò\Ð\r\Ú ™†”Bø\n','',0,'?'),(_binary 'Sõ\Ûc‚2·X|¥=¾','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-plugin-panel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆµ bz÷ªª0­›N\ã\Ö7\ç',_binary 'ŸœWQ¢,\'ø_™J	!M\É\Ý\Ü\Î;;õ\ÉV³!)XÄ¦\"','',0,'?'),(_binary 'V›¿¯1‰/e\ØÁ(@\"','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Parsing/SourceException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n>Ù·\Ô{¬\ÚfšŠÿ/m°',_binary '_„žr>§{‹½@_Äô£¡‰¶W‰š-›','',0,'?'),(_binary 'Wd\Úlµ÷\09?œ\Äi©„ ','wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-dark-mode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜\Ècõ÷J¹V>\×\ßéŠŠ|}',_binary '9˜ò\ÖX0`³c\ÂN©azøúˆÓœ\ÖJT¡&3U¤\Ð','',0,'?'),(_binary '`˜J¢Ú¶ÃYõ&8jœ\è','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/BaseLocationCountryRuleProcessor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\ãqÌ‚†\"USAÿ•³lv',_binary 'N\çƒ-«\Æ<\ë\Ìb¨\ÐCf÷\n<u¢\r\Ü\Ä[\å\é','',0,'?'),(_binary '`™&­¸é”¥~K3/d','wp-admin/css/login.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2|\n0ð­6s“\Z',_binary '†Ç¬—Ä¶ö*\êZ/7U®(\Õûwz;”ð®d»¨ÀG!»','',0,'?'),(_binary 'nù>¢*zÐœGû\ß\ßpa','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/Transformers/ArrayColumn.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm(ü¦†{\Ð Œ\Îó›\È',_binary '\ïõ1\å ¡jU¥T~5¯g º\Ýe;rbÊ‰)ó\ÒC','',0,'?'),(_binary 'oIC˜\n	›\Ç\"„›þ»ª','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sale-badge/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ba-\ã Lb\ÌWG	]¬',_binary '~\ë\á\Ã1\Ç3û×™^¤’\ëð‹ñ9ú‹PFEz>\Ë0\â','',0,'?'),(_binary 'yHó6uÃ®2#6\é§ü\Í','wp-content/themes/flatsome/inc/builder/shortcodes/text_box.php',0,_binary '¥\Ëó|\àP{m\ç‹\ÆtFõ',_binary '¥\Ëó|\àP{m\ç‹\ÆtFõ',_binary '\ë$D›O-$tüø¹Á¯\Î\Æ>„ª•´¦\ÐÒ±ò“l\Ï','',0,'?'),(_binary 'z\Ð\Ê$K\É=i9›¾ÿ','wp-content/plugins/nextend-facebook-connect/providers/twitter/twitter.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$%.¶w\×\äa\á_u§',_binary 'h6H‡\äÿ\×Rl\Ä\ãdý\Ù\æ\r9ÿ5C\íõ%ª@a£hrW','',0,'?'),(_binary '~™QˆE\ÃþpF=\âÀ\ä\n','wp-content/plugins/wordfence/css/wfselect2.min.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤cŠ˜\Ì\Ï3,BñV\Ç\Â\æ',_binary '§€Ú‘ót4U\Ô–\"ü;¹tû7\äº\ZÀJy\Ùrb@','',0,'?'),(_binary '‚Dö‘ˆ<¯\Äg\ç•\ßdy™','wp-content/plugins/woocommerce/assets/client/admin/data/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Kº8\Ñ\åô\Äb\ÔkTZB\ë	',_binary 'N&ô\èJ.û‹Þ‡‡\í;\ÎZ¬•¢—©\Ç\á\n¡À\Ù*6!w','',0,'?'),(_binary '‡\Ø\Ð8¿•Ñ½b¸v\r','wp-content/plugins/contact-form-7/includes/contact-form-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±_# pDd=¼%Šw£A',_binary 'U÷‰ñ\èóOª\Z\Øn\ÂBY”s+µ8>8ã«','',0,'?'),(_binary '¸œÒ‘-\è\ÌôŠ\rŠ{,\ï','wp-content/plugins/wordfence/lib/wfCache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7 Æ¿ž\Ä”\Äs\îy‰\ß',_binary '|\íuIPõwh5ÚŽ.m\"*n_û¬ 9\Ì˜­¼JðP\Î','',0,'?'),(_binary '“~˜\âL\É\Î*\Ä,\Ä<:¥','wp-admin/includes/theme-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÐY\ÍÁ½°ö½\ÞÄ˜ µ',_binary '\ÓOò \Úþn\ÑuO\nd7K[\"}\è\ç7\'p\É\Í\Ì`ö`','',0,'?'),(_binary '¨%\×<\ì%\ßk\Ðh\ëòÀ','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value/Value.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€x\Ò3”««~³Œ»½',_binary 'Ñ®\èq¿ù¨œ\äl2_ Uˆó\èª„\ÐaMd:\ÈC','',0,'?'),(_binary '¨> šµ3\ÜC_\×7[C','wp-content/plugins/ti-woocommerce-wishlist/templates/ti-wishlist-empty.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'QTL>A \ãV*3Xxzt',_binary 'Bj—}$‰\ìÈ‡Wqu¼¤\âb,üÿõ³\Å#\×ò\Éòû','',0,'?'),(_binary '®Sx\Ã\ß4®@oÁw\ïN','wp-admin/js/widgets.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\êv§[ª‚jB4L!\ê\×',_binary '0\ÙRiºJŠ\Ï\Æ,P¦X§y		*Ri®µ‡ø!','',0,'?'),(_binary '´	\Ûx” K\í^EÀye‹ô','wp-content/plugins/ti-woocommerce-wishlist/integrations/woo-product-bundle.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z%yÀFÞ\Øv°\0ÊJ>',_binary '>90ÎµTþôv×¿U¨\îû#Ž®\ç¤NƒI:NOD\Þa\Åû','',0,'?'),(_binary 'µc\Þ\rûI)\ãŒC®·t','wp-content/plugins/yith-woocommerce-compare/assets/images/colorbox/controls.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\ì~Ö„¶þM¾ÿ«·3x–,',_binary 'Od\Óóce‘\"¸m½ /ªxho‡[“WA\Ôz?3\0','',0,'?'),(_binary '¹t\Íø‚I˜°zNÀ2”','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/lt.js',0,_binary '|QXöPv®\ÐH\Æþ\0(',_binary '|QXöPv®\ÐH\Æþ\0(',_binary 'WÁ\å&g}0f\ÛJ£Ù‰\ÝHG=õœdW†Vµ¢€CV÷\çK','',0,'?'),(_binary '\Å÷Ú¤& ´MµKQ\×o?','wp-admin/images/freedom-2.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ï\î:Dw\ÇõÀö8«¨\îŽ',_binary 'H±²\ß_¤Y:\"8œ–³¥\Ë0o‘_6\\&\ÊZYY','',0,'?'),(_binary '\É\è\ë:m¡°[Ý¢¯:#','wp-includes/l10n.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V)¶»Ï“#\Ã.Šül‹f',_binary '9\"x}«ùl¤\Ü\ÐTa4 ^\Ý\Ð\Çb‡®[\ên\Ï\Í\Ä','',0,'?'),(_binary 'Ê•=†\ä†f\Ä2N¥3ø','wp-content/plugins/woocommerce/assets/js/jquery-qrcode/jquery.qrcode.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A®Ï§!$ý¬cþ-`y¡',_binary '	+\ãöbƒ(5\Z©¯9Š.5¿\Ä%i\ÙØ²ÉŸ¹¨','',0,'?'),(_binary '\ÏI¢\Ø\\j¶¬\Ñx\Ì\Í\Ëg','wp-admin/images/date-button-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Â‹?¾©¨a´0ý\×9JQ\Z–',_binary 'Ÿ­\Ó*¬Q­º\è\Ú_(G:*€\ÊýÎ·dú\ë\ã\î\ê\à.','',0,'?'),(_binary '\ÑZmŸ+¶\ëþˆ\Ï\ç¼\0V','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-color.php',0,_binary 'P¥Í¿\Å\á]\Íb\Ò*\ír',_binary 'P¥Í¿\Å\á]\Íb\Ò*\ír',_binary '…\Î\ßõ\ÈEµ¡¦žþoŒ_?\ÏcwxTÓ·!ùv%\ØÞš\î$','',0,'?'),(_binary '\Ù\"\ãü¾/©\Ã:ŸBÿ`šo','wp-content/plugins/woocommerce-multilingual/inc/translation-editor/class-wcml-translation-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡o³ö…½\ÍdjŠ\É8\å¦;',_binary 'þ:b;\Ê\ÄÍµI¡¯·\Ð.Y\r	FL+„\Êý.Vôg½n','',0,'?'),(_binary '\ÝG]Xôø\ÜY\ÝiPœKŸ]','wp-content/plugins/woocommerce-multilingual/templates/troubleshooting.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',Œi´B½ò\Óø¥—ý\ì',_binary 'T\ç	…\ë°:ú\Ëxµ\ß\Ì\Ã[<)DH\éñ¦÷ø','',0,'?'),(_binary '\Þ]PªJQÆ€6oÖ¢÷•;','wp-includes/Requests/Exception/HTTP/428.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?µ´„µ¿<\Ú^G\Ø\Â\"0c!',_binary 'C\êO¸W%“®¤tß\ÞY\×|\Â\Õ&‹0VÂŒ\Ð\\\Ì','',0,'?'),(_binary '\à¡\Ó;†¾i\æ0·\ÆJ~\Û','wp-includes/blocks/columns/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\r\Æ\îñ\Îk¯f\â#-i\Þ',_binary '\ãÿ[\'“ó×˜Ý»^­p ©)\Ç*Ÿ\é\Ó 3%1\çÙ˜%\ï','',0,'?'),(_binary '\é\á\æj7r[¼,”\ÌüZ\Ö\è','wp-admin/upgrade.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”þšùM™HwX’f3¤\ÑÒž',_binary '€Ä·T\Ç,#R-D\ìv#­­8t˜[\Z\Ï\á?\ëv_º','',0,'?'),(_binary '\ìª¤ƒ¡·hót–\àw','wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/layout/framework.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•:d>NDEª¿KƒŒa£tô',_binary '|„42­¤\é7ŽY‘CúŠ¿alò›ñ\Î\r²GŒk”','',0,'?'),(_binary 'øG\Ñ@fS“\Îc’\ì_&ÿ»','wp-content/themes/flatsome/inc/admin/options/header/img/header-super-simple-dark.svg',0,_binary 'G“»õkž\Æ|:yÉ–',_binary 'G“»õkž\Æ|:yÉ–',_binary 'µ8~÷3Q\ê£\×t\Åg_ž\ÐL#È¤\Òó_HE!7x{p','',0,'?'),(_binary 'ñC	®\é\Ø\Ìa \È\íIK','wp-content/plugins/woocommerce/templates/emails/email-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç¿5¤×“rŽ¤mªÉ',_binary 'µŸ¸g\äY¸ŸÆŽ—()µ\r§2\îkÁ’³\æûû\Ì\Æ5','',0,'?'),(_binary '4›ŽB\Ö\07qoB\Ço6\í','wp-includes/blocks/rss.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z<!¾U¤nûñ_ÿeQB',_binary 'Pn\Ô2‹\Æ\Õ&«Y!\Û>PºÙ™\Â{\Æq61šÀ¸˜p','',0,'?'),(_binary '\"nI½5–\Ê|º3\íuú','wp-content/plugins/woocommerce/packages/action-scheduler/classes/actions/ActionScheduler_NullAction.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´úÈŽô\ÑeWS\Üô<¢',_binary 'H\ÔÀ®¶\Z\Ñð\Ö\ètúaÀ!IcU»||i\Ù\'','',0,'?'),(_binary ':­·°ae/¨ºÑ‰\Ñ','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Handler/HashHandler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-²_–ªÐ¯dó€³}J%ý',_binary 'W«”¸ŠÀ%•‚×“U\Ô\ÏS}\Ûa]\å#÷N®ói‡{ö','',0,'?'),(_binary '\Z“\êlm·ð‹”@øø','wp-includes/customize/class-wp-customize-date-time-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\"¸,ªw„\æ\ë%ñÑŽ\è\à',_binary '\Î‹$b\"ÿ=Z’Oø„}4Á\ß<\nGH²§ñ9\î','',0,'?'),(_binary '\Ä-²°\'g‹«P÷\\¬','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9žV\Æ#Ò¹\ë\Û4€',_binary 'Gpšf¸øHvŽ†žŸ\Z\æóx‹8ƒþª£1C°[\Î4A','',0,'?'),(_binary '\æR\ëm‰Ú¹i—|£¥~¨','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/shipping-calculator/address.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·\Ð`¦Ç ‚}D%MX',_binary '_¸¸G\çŸ6ÿN¡\âC,\ÂM¾ \Øæ°§$\è0‹\ÅF\î\æ','',0,'?'),(_binary '\Ò¡\Ò}„>\Ò|Œ I','wp-content/themes/twentynineteen/404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2–£$¦\ÝiªU\éVÑ—',_binary 'v„\Äb3ìƒªk\n!{;\È]ý¼\\\ï;~=J8§\Æ\Êô','',0,'?'),(_binary '0SºB\Õú\Ø!w•}\Í','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-frontend.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„¿Šm«\à\ÊKT-\Ìø‹¹',_binary '-C’4	=nQW+Yg„?\ÐX¬\Â\ÈU0Eq\êPÔª','',0,'?'),(_binary '4\Æ\Åò*;˜zþ	\éÿ','wp-content/themes/flatsome/inc/admin/customizer/img/blog-default.svg',0,_binary '°BVvôŸC#ÀB‰,	7º',_binary '°BVvôŸC#ÀB‰,	7º',_binary 'ß§e\âªØ’»h!\ì\ç¿O\åU¢Šö0\n\Ö”F!±…•\ê¯','',0,'?'),(_binary '7~´@9x’1&SÀ\nK','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/CouponPageMoved.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜\é\Ãl&.Kd“§k\ïÕ·Á',_binary '\Î\Î#™+`Ó‘·-}þG\âÁß‡(&€\àðzƒ\ä;@Gñþ','',0,'?'),(_binary '8¬-z[\ê\î\Û¥u³\ß\à','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-control/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ü\ÞyZÞ½;)?	wP',_binary '#„=º\é\n¾6)Àj¥ÀÕ»\æx\æ}²‡-(³¡\r½¾','',0,'?'),(_binary 'AO\è\r0\Ûy:1´˜\"#¬\á','wp-content/plugins/ti-woocommerce-wishlist/integrations/woo-variation-swatches-pro.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EOæ¥hc\ç_\Z¸‚\Â8¼',_binary 'oôš«\n\\²5¹¸€•\äòrô3PDµ\ï‚rú','',0,'?'),(_binary 'D©8hFÞ›BViR\î¨','wp-admin/css/colors/blue/colors-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nLr^òc\ê°ùˆ:«S',_binary 'D7=(ý,¼QYyMŒ=\âf¢Ô¦ð±ñLºù\ÞK\î\î','',0,'?'),(_binary 'E¹ø\ègÀpµ-\Ü\â\Û\ç','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-block/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ž2M=með.üEŠ™~ «',_binary 'DˆI\ÙA hó\Ë\n\"\\ú¯¨š\âXÕ¿g*„Ž#÷¥','',0,'?'),(_binary 'KŒÝ±k\Ùc\Æ2\è\0®Z!','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/simple.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1Ánµqñ$FÆ©‚ˆbmÙ›',_binary 'ònOòa\ÂJj[3\ÆNQ\Â\ëgø“\Ü\â6q«\Ï}*±_U','',0,'?'),(_binary 'L,\Z\"ÿ\0CûÊ¡8y©','wp-includes/js/dist/primitives.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yJ’°\Çß®»RwR•',_binary '(I\ïK\Ü*Ui\Í\Øyù@‚X£ÿ`k\\«Î¯$\èy*|','',0,'?'),(_binary 'L\ÎVK\â\Ú;÷´f','wp-content/themes/flatsome/template-parts/posts/partials/entry-footer-single.php',0,_binary '„c\ìv`\ÙQD­Þ³\á\Z',_binary '„c\ìv`\ÙQD­Þ³\á\Z',_binary '¡\"s*\ÇnmOì³’\ÉK•\àò–\ÒM7b§ó\ç\"ñ!','',0,'?'),(_binary 'ZhŠ`\í†:\0úÝ©V6\Ç','wp-content/themes/flatsome/template-parts/posts/partials/single-featured.php',0,_binary 'Y¤	ó\Ùy¾\ÍN£ÛªR\Õ',_binary 'Y¤	ó\Ùy¾\ÍN£ÛªR\Õ',_binary '\ÌY3’\ÕeCú§†ˆ<tA‰³·;{rð±³','',0,'?'),(_binary ']¦\Z)a\í²@¾’Ÿ„k³n','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/product_flipbook.svg',0,_binary '\á\rc÷\Öòµ$BþÍ†C¹†t',_binary '\á\rc÷\Öòµ$BþÍ†C¹†t',_binary ' ”ˆõî´”|XIN1j­Nj4\rqiS%>\ì\ë','',0,'?'),(_binary 'cµ\0|Ž¯]d¶C»\ìú×¸','wp-content/plugins/nextend-facebook-connect/admin/templates/settings/woocommerce.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Äv-\é\Ë\È\Ñú?Z®\ï‡',_binary '.\Æô6ø\í[\Ùf\åÖ·³ˆCÉ¶¹t€ªQ7¿_B!»d ','',0,'?'),(_binary 'd‹\Å÷		²ªö\Â:ö','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\ßcsD‰h%\éŒ[p!˜4\"',_binary '£;Žø\Ã<¸ª·EU%”Hw¸\Ï\×Dû\áD†Ë‹–ƒ8T','',0,'?'),(_binary 'iM²\àù*\Ó\'ð|0R','wp-content/plugins/woocommerce/includes/class-wc-validation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›©np–ý\ï†(Kø\"¤eŒ',_binary ']È•¶L~;¨÷ªL\Ðúü¥Š³”’ì»®\Õp5h²¬$','',0,'?'),(_binary 'j×»ý‚óq.»*;§\á2','wp-admin/css/colors/sunrise/colors-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\è\î^‚µ¾É­`ób~®ö	',_binary '¬\ÆÉŠ²Ÿ÷ƒE\Éu¼T\ÍfŠ´°Ÿ\àxNË£\r3R','',0,'?'),(_binary 'w‘es\Å\Ïi<µO\ØJ%Á','wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥ZøB\Ý÷¤\æw\\\ØT1\Ñ',_binary '°8–¹­þ\Å]jÞ·\Ä?2üó½y\Ò\Ò\ç\æ|Q))!\ÍO','',0,'?'),(_binary 'Š•>ð`Pöµ\ê@Œ\Ôß¹','wp-includes/theme-i18n.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fÖ¨\Ð\èt\ÞC\ØøsaFªV',_binary 'K©D4·½²\ÇÍ‡™c^N†\Ð—#·[!\0¸\Òú,','',0,'?'),(_binary '‘Ô¸€¢%\ZD\éŽyó³Z','wp-content/plugins/wordfence/lib/GeoLite2-Country.mmdb',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥D”Güp\ÕÊ“û\×òvT…',_binary '„d­ý\ã=\ë­]\Ç+jÁ÷ašwˆ\ÐÊ±î¸£¿m±\ä3\ä','',0,'?'),(_binary '“\Ò\Òn\r¸¹\Ê\ç\ß\è¤\ì-','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-order-refunds-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Â\Çúü©9FJ@CK{\á”',_binary '®\Ó%=\æO\â_\Þ\Ñf\Äù\Æl\Ã`Ê \än^À\×\Ôvj«>µŠ','',0,'?'),(_binary '˜ÁöžG`\ç\r€\âYw/¹b','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ð\ÜðyŒn\ÙòxO\Þ.~°O',_binary '\r§\'\êS€\æT+«\Ç\Æôt=\È\éIœ°3ñµƒE\Î9\Û','',0,'?'),(_binary '˜\Æ\Ò(˜] f‡\Ë\r¢Ÿ','wp-content/plugins/woocommerce/assets/client/admin/csv-export/index.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E•\å\Ñ)‡aø)á„¡{.',_binary 'g‚3À!?\Ü#›^	-u?¼úË•¿Kô\ÏG=›\ä\ÖCW2','',0,'?'),(_binary 'ž³\àø¹!‡\çµzEt','wp-content/plugins/woocommerce/includes/export/abstract-wc-csv-exporter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼”v­P\Ï\Êc\×í±Œ]Á“',_binary 'ø¿\Òsj0P\Âûñ±O‰¼M\Ë5\í1k°`D7M«E','',0,'?'),(_binary '¤Zò÷ód*–\èY¡öÚ˜¡','wp-content/plugins/wordfence/views/options/block-all-options-controls.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5bcjc\ÃTc–sq“Ì£]',_binary 'W:.@ƒH9§K±B5\\\â¼öa¢t	ì–—\ÝÊªg\Ò/','',0,'?'),(_binary '¬\ëŠ\Èü¥¼\ãddT]H','wp-content/plugins/woocommerce-multilingual/dist/css/paymentGatewaysAdmin/styles.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w!\r5ý\ëœ\"´\04’„‘',_binary '‘\ÅNvC\çÿ›\Z\Ôb+\ÒLAüf!2AX‚è…\Õ\Ï','',0,'?'),(_binary '±ÓŽA}ÒŽWZ5=*tž','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/RequestFactory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\êb;v\'•g\Â\Ñ~”ž®¯k',_binary 'm\è!\ÄM€–J\"v>,ô\ä\í0\î\0ÕœÉ«² &jÙ\à','',0,'?'),(_binary 'º4\ïòv§&=\å\Âe†]','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-fields-block/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Éº\ÎF±¬¸\È\Âhk¿¢Ë¹',_binary 'šX\\Ž‡	\È\î9\è6˜Wžf–< \Þ\î<¿','',0,'?'),(_binary '¾±¹¤u¤%/¬\Ò)¿J\Ô','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/payment-methods/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õr\àûÌ‹ž§_\ÄBcŸ‰',_binary '…2Å¶¸YB\'˜\íY²“ü—£\à(W\Ò5\Û!]','',0,'?'),(_binary '\Æk ¾q`,\"-÷‰õ\È\r','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-billing-address-block/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm¼u\'\Ò\î\ât\n\ïõL†',_binary ']\Øóƒ„»\ãx½M\ÐkH\Ýlð^$Ò¡šp¯\ç£\Òx´»x','',0,'?'),(_binary '\Ë>‘\Õ=µ¶ÿ@þ\ê»\Í','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/rating/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DX8kÓ 	~³ø~J\áö\Ì\Ò',_binary 'µ\×Hm¶øZEL¶ º‡ \rÑ²fŽ5=\0>\ÍC\ì\0P¢','',0,'?'),(_binary '\Ì*ôôþk\Ëum1=-­µ\î','wp-content/themes/twentytwentyone/assets/sass/05-blocks/latest-comments/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'žš7\Ýsü\Þ:•o\â•R',_binary '8È¼†?$[ôg1N4}\â‡\é{\ÈY’KˆJ\ã$\Î\éC90','',0,'?'),(_binary '\Ï7t¡6€s†&*³Ik²','wp-content/plugins/woocommerce/src/Container.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'âª¬¦Ss\î»b¼\ÊGV(º',_binary 'hA\Éy¬#\0–1Ï±\É\Ï9Ô§\à3û%…~=‘«£†Bõ','',0,'?'),(_binary '\ÒrˆW\ê®3¨™\ãá¥¾V','wp-admin/css/color-picker-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ê~¸p¿ES\Ø°\ÖcV',_binary '\Â<’=\0º[Z\n2|ë‹¢¶’\0?6ú¯“‰¢º»‹–£','',0,'?'),(_binary '\àƒ€$D:\Æ\Z¯¿\ß','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-update-plugins.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"VÈ¿Ã„Ð¢u,ø/-\Æ(',_binary '\æ\Ý?\ác\æ\Ç?\æ‘\Çd“\×|²\Ôdku\î\'\á²\Î\ê\èa¾—','',0,'?'),(_binary '\î;\Ç!,\Ãc–\ÌG\ÑÊ³j','wp-content/plugins/woocommerce/assets/client/admin/homescreen/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·q°\ÆY~‚\ê\ë\îkaˆÀ´+',_binary 's.\ã«\ç•*;ƒ\Ì7\Ò\ÛK\Îx«½IzûCs«8¡1Õb','',0,'?'),(_binary '6¬\rö\rû\Ñ7\éF\í†ò\à','wp-content/plugins/woocommerce/assets/images/wpspin-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}õº\Ìõùƒ\ëÓ†ˆ{C',_binary 'µT©-\áC1\Îl•»\ç\Å\ÜÈ\ê>dD©\îI\ÛiC\çk','',0,'?'),(_binary 'kÆŒC\09‘\Ú6\"[Ÿõ','wp-content/plugins/wordfence/css/license/response.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§?Vj½B!…Dô{\ÇB\r…',_binary '\Õ6ŸI^\á¯(¨\Ê1©*GŠmE9-ne:R)¸GÖŽý\à½\æ','',0,'?'),(_binary ' GnT\êh\Æ\Å¢y„','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-discount/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pvB‘O`9ŒO˜g\Ñ\ÞY',_binary 'y^E\ÄI \íÏ½.<6Œ¬˜¨\ìx\à\î2¾\Åy\ê-‰\ÌÏ‹','',0,'?'),(_binary '\à½‚mX¦É¼ig4','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/exceptions/class-otgs-installer-site-key-exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'HÑ±{\ë ±s)\Í0—¥Ò›',_binary '¡\Ö\Ìh1Rð÷\Ö\r\È)Àl¶›C\îo\ÔIP0£’\Ö\"\n÷','',0,'?'),(_binary '/Å‡\ÙòU|5Kü\Ò7\ë©','wp-content/plugins/woocommerce/includes/legacy/abstract-wc-legacy-order.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r=~êŒºMVJb¡r~',_binary 'IE|fc(\çŒw$\è:V–{’X\\aþ‹w‡%•+qª','',0,'?'),(_binary 'W¤_j\ÙÉK\çC\åÀ','wp-content/plugins/woocommerce/src/Admin/API/ProductVariations.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^-$\ÜUP¬€\"\ê\Ò',_binary 'ðµ³Mž¾=ø›ˆöø0V\Èh–<”$ø%Ž»\Z\Å\Ñ\"','',0,'?'),(_binary 'YIEù\âTt2L\Õ\è]','wp-content/plugins/contact-form-7/modules/file.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\çM=`­\Ño\Ô\ëV5º\ãJ\à\é',_binary 'QóÑº\Î\\~\ãž]–\È>«‚È£§½žsT	? @““','',0,'?'),(_binary 'Nr’©F6˜J\'s|{wþ','wp-content/themes/flatsome/assets/img/payment-icons/icon-googlewallet.svg.php',0,_binary 'z÷’úô3¸^#Ð¢±º¥°',_binary 'z÷’úô3¸^#Ð¢±º¥°',_binary '8\èb—½\rŽ\ËÅ¸X\Ò0pŠ\ÍFw€˜¡OV«òwl[¶l','',0,'?'),(_binary ' p’†\Ózp\Øz0	£','wp-content/plugins/products-compare-for-woocommerce/js/jquery.cookie.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§œ\àö\î\Ñx”£Ù¸Tþpa',_binary '±=L\ÎÓ¯5Bž²ˆ\áJj0u_\Ûa¥MÀºY‹`','',0,'?'),(_binary '1]L\Ýû\\\ä\îÛ¡','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-admin-report.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"ó)ž\ÃssNI‚+\×\éùª',_binary '÷¦ÃšP‡d˜÷}¿£om²\îŒ?’\ÑÊ\Ö\Ì@µ÷	','',0,'?'),(_binary '5M\ç]\"Ký2¦K\Ã','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Åºû½\Ç>‡pÒ¸]Tš¦:',_binary 'lO|TÀK\Å\åf\â.Á€`~´Œ¥4,X–v†I›ˆ¥t','',0,'?'),(_binary '5l¶\îÁvr[\'.ºj(o','wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-pt_BR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']·k\Ð§Fýò7\ä¡1:ž',_binary '•%r¡/°ú\Éh¤¦\\+\á\Ò]\Ûø¾ušmÖ§c{:\êy\ê','',0,'?'),(_binary ':²X\æ2\ìM\Óþ\Ö~û\È','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¢¡÷2\Ì4vLhN\Õ!\Æó2|',_binary '¯\Â\Ë3iA(\Ö­\æp\í\ç–GDŽÿÚ”\îð´÷£\ïÁ','',0,'?'),(_binary '>šŠc< \Õ\Ð1\ï€\\R\'','wp-content/plugins/woocommerce/src/Internal/Admin/MobileAppBanner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{Â•	h?òð<¤Ea9¡',_binary '\r_u\êm#$C\ËKž\æ¡PÞ¼pêŸ¦\Ø*E\Î[Ÿ\Þtú','',0,'?'),(_binary '>«s\Äx\ß7\Ê#4û»7l','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-details/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'RóR\í2%¶‡o\Ø\Ò2\æ²',_binary 'A@Î¶\n¡Nö\ØÄ–n0JÉ¯Šm\ZBÈ b‘¶','',0,'?'),(_binary 'Cžy²\Òõ8\Ý\'a¼\Êý','wp-content/plugins/wordfence/crypto/vendor/composer/InstalledVersions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Èø\Í0mj¾\Óþ\ÃúÔž\×W',_binary 'Í›=¡\àÛIŠhK¸g\0¨“%T.‡\é]³\r†\Í~','',0,'?'),(_binary 'CŸqCn2‘ÊŠô‹\Í!','wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-es_LA.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\Ï^1:~\á©u-³~q{M',_binary 'ŒEAsU\æ¹\É\Âl\\c”ü	Q	~—¹\nŸlò6af','',0,'?'),(_binary 'L\Ö\Äüý8\à\ï€õ\\¨Ý¼+','wp-admin/images/imgedit-icons-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\ã\î\'ƒ£6U¦½ý\Ã\Ì\át',_binary '“?\àØŽ).l ô\Ð\Ï%¸<²(_\Ú 6ÿ`^c7','',0,'?'),(_binary 'YùU\í\Öh|kU$¸•;Â˜','wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-quote.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ž?‘rIÑª\åPµi\í•',_binary 'x\n	\Ësd¾\È26*\ÓPÁê«¡Ÿf§t§\ï…45\äbz','',0,'?'),(_binary 'a¨Ÿ\Ð\ß5E…Ì¿N[1','wp-content/themes/flatsome/inc/builder/shortcodes/share.php',0,_binary 'xM’1¿?}@o˜0lM',_binary 'xM’1¿?}@o˜0lM',_binary '\î\nô¥§e6ö ~l*$([’P›\íþx‚Ö›$Áº V','',0,'?'),(_binary 'j\0u\ç“\0@¡+A¥°\ê\Å','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-footer-block/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LE1²Le+G’_\Õ\Î\ÇÀ',_binary 'qiš«øF¼\ë\Þ2+T,F¸f™¡\Ü\ÓÈ•‡³\âAH','',0,'?'),(_binary 'k[nôµ\Ë\Ôq\åˆx','wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/components/buttons.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u5c*ic(\í\ÂÀhf´',_binary 'KQNõŠš\èür\Ã\ÍúªsUEfe0\ÞÄ¼ÃŒž|µ\Å\î','',0,'?'),(_binary 'l‡>3Ç‰\èü¢9k !','wp-content/plugins/woocommerce/includes/legacy/api/v2/interface-wc-api-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o9\ç½\ß/*e”c\èø•',_binary '\Ê\Ç\Ú-¥”\Ó\Ã\Ôz\Â\"t\Ú!\'D@«Ï¿…9\ß\×Ï—\Ò','',0,'?'),(_binary 'm\ÔÃ±…~–öòR¥?','wp-content/plugins/wordfence/views/tools/options-group-2fa.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o¤\ê\Ç\n2‘ƒ\è0·\êôø\0',_binary 'aG\ÏÖ´\nOkø&1•“\ä`3ƒ*¿‰Ò¿f\Ó™\é_W\ï','',0,'?'),(_binary 'pÛž\Ô2N<:Z¥7»r‚','wp-includes/js/tw-sack.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹‰¥½„ö\ë\ËÁ9>À\æ\é‘',_binary '{¢n]\Ö\0Öˆ˜\Ýn»\r\Ïµô\É<§wË·X)ƒ\à\Ú:','',0,'?'),(_binary 'sŽk õIOa£ª	m4G¢','wp-content/plugins/yith-woocommerce-wishlist/templates/wishlist-view-mobile.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@Ls7Fªÿa™‰*Ô´!¶',_binary '{\'\ß©üz\Íô\ÜQ}{\ÆS\ßó}ù’\Ñ(\ê\Ù<\é','',0,'?'),(_binary 'uŒ)8FG9¡C°(¶š','wp-includes/js/wp-ajax-response.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L§~ˆÍºŠ$…(©~0',_binary 'Á/OÔ®D)/žÿ8Þ«öMuÃ‹üù\Æ}:’z^Wõ4','',0,'?'),(_binary 'yž7\ÌgC°»\Ìv','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/da.js',0,_binary '™m<×½y?\í\ÚnA\É',_binary '™m<×½y?\í\ÚnA\É',_binary '\è\â˜H¦\ÆN›maª WÆŠ¼x=\'§a‚FÕ¡&RÎ¡','',0,'?'),(_binary '”\ÊI­\\Qœ\0‘Q\ì\Ä','wp-content/themes/flatsome/assets/img/payment-icons/icon-stripe.svg.php',0,_binary '0G-ò~Ð©\ßT\ÏA\"˜',_binary '0G-ò~Ð©\ßT\ÏA\"˜',_binary 'B\Å3±mÎœ½Q\î\\Bk† 6Í¬\ê¤O0öÆ­©›ŸQ','',0,'?'),(_binary '˜û¦c†ñ—þ±\Ê_\Ü\à','wp-content/themes/flatsome/template-parts/portfolio/portfolio-title-breadcrumbs.php',0,_binary '])\'ƒ	K#Uý\r‹\ìö',_binary '])\'ƒ	K#Uý\r‹\ìö',_binary 'ý7+’+\Ñ+˜ú³ÿ/\Íxr ‰Iš\ß|¾õG\Þ#¸V','',0,'?'),(_binary '¡\Ãc\ÔOš@«/ûlMð','wp-includes/blocks/separator/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\Æ.4	ÀXª6h\Ý\Ìb{\ß',_binary '+‘]püŸK\nO³>,*~Ü§]m_«€P\Ó\'\é]','',0,'?'),(_binary '©¬³ô‘9\Ä~\0{@\Ù\Ûò','wp-content/plugins/wordfence/views/scanner/site-cleaning-beta-sigs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Â®«…óuMº—¤¹\×',_binary '¤JEz•¤»ˆÙ™6Àžÿ­¼\Õ)P§û)÷\Ã\0Ž\Ã','',0,'?'),(_binary '¬Š¤‘UV7öt•\èˆ\íq','wp-content/plugins/woocommerce/assets/client/admin/analytics-report-coupons/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=n¤—¸û·!*Y\'ö“',_binary '=€£”\ë°	L”>\Ø}\ï0\Â\ÈË•ðÁXb‹ª‚8','',0,'?'),(_binary '·¥óŠª~\Ð\Z->r¶','wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-ru_RU.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÌpŸ¢˜‡C\â{QAg†£%',_binary '\ê\îA”B\ÐÀO$\Ö}7³E5îžB¡6‹3•Á\è\êk0©','',0,'?'),(_binary '¸·\áClo¦¶±–¯\é\Ò','wp-admin/nav-menus.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\ÄA g\ë·}\é\çÜ²0',_binary '•a\å€tZnÉ«!À&h/•^v£Ô¯;¹Ÿ²\0¹\áv','',0,'?'),(_binary '\Ã1\ã\ÕX\â¢5Ä†DC','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/reviews-by-product/edit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÑðL¾\àA–ö\Ä7*•&\n2',_binary ']\Î\Ç_Š{þÙ¸dZ\Ñ#ˆš²Xi„¬H‹{²¨ü','',0,'?'),(_binary 'Ê‚-\áÿõ‡=ü\êÎ¥¢§','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-actions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚GÝ§F—¥Âœ\ÊþF\ïÿ z',_binary '\èK\nKAwbT—\å\Ä\rç…¡\Ó\ä\åÁm²\Z®\0Y\Í\0','',0,'?'),(_binary 'Ð¹¨y\ßGÛ´G†0\Æü\Ü','wp-content/plugins/woocommerce/assets/client/admin/print-shipping-label-banner/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\ÙN\Ð\Ì\ë\\ðcWVe„©l',_binary '/M\á\ÉÇ‘kÁRˆ\â\Ëú8{\êˆUs\á¹Ô•\\\å]n\Ï','',0,'?'),(_binary '\Ø¶—›U\ê\Æ\ÃqWÁ','wp-content/themes/flatsome/inc/admin/options/header/options-header-presets.php',0,_binary '‚f®\'\ZhsUMIü[²R',_binary '‚f®\'\ZhsUMIü[²R',_binary 'ºkAv]ü\ÆCfþ\ÉÖ¾y\ØD\0ö¹gE\æ#ü‚ \Ù\×','',0,'?'),(_binary '\Ù\ç\Ê[s&iµu)ùn','wp-includes/blocks/video/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>Žh\'Ç°7/÷i¹ò ÷',_binary '9Qð\ìH\ä¾j\âjHþbºy™~hª)c´Ð·»\ÌB4	','',0,'?'),(_binary '\â&þ	Y\Ùtz(¡\Zø\æ€','wp-content/plugins/wordfence/modules/login-security/classes/controller/totp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j.\\\Ä0*€„\Ö	[²¼\Î\Ì',_binary 'f\Ü€\ìÿ8…“\'!‰RF\ë•®\ÒL\Â\æ\ÞË™^\Ôw\â\Ù','',0,'?'),(_binary 'ðG\äL½\ßòµ…*\æg\Êqõ','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-dashicons.php',0,_binary 'Q/	\ÚWj\ïDñ)|',_binary 'Q/	\ÚWj\ïDñ)|',_binary '\ÓùxETz\È\Í\Ö\Ç\Ú\ÓüNÒ¿_\ç\â\nòß³³»•9','',0,'?'),(_binary 'ó‰_\nÐ´!Üœû/','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-customers-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñ\å„«\ÒR/§P¿iŸ7',_binary 'ù\å\ìÁŒ¼øOrb\Ï\'\Ê0g\'n\Ýi~4\ÝO™Ð†~<C','',0,'?'),(_binary 'øC½¦A_ºÙ¨™~','wp-content/plugins/woocommerce/assets/js/admin/wc-setup.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>(#×™õI::¤dƒ}Ø´',_binary '9\")¶Ÿ ³¿Xdº¾\á$2\0ƒš\è¹\È=K=6\éÔ‘Q','',0,'?'),(_binary 'ü1\É[®\Ñkµ-Î¶Wó™','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/text-button.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þª\0F\á\éø¨›Ï°y\á¤',_binary '\ÉD£!_I*h¥ºD\'	ƒÉ³sO\×ôUž\É?S‹¼3½\Ì','',0,'?'),(_binary 'þ¥I<½\Ö\ÍU\ÂCMdZ¤','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-boolean-switch.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\nAôI¡g™\ì+\Þñ.',_binary '5€Nåœp\Ùo\'\ÃGYNsC\ÖIS¯¾>Ç‡¦','',0,'?'),(_binary 'ÿ´-¹†i>bsŒ›1\é','wp-includes/js/jquery/ui/resizable.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»WCn~mÎ–¹M™¢\ë\Ñ',_binary '\Zaÿq½flÇƒóL7†¾÷ˆ\Ëö\'œÿ{»,†nùÿ\Ô','',0,'?'),(_binary '\è\ÖSzX%•fWA','wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-on-hold-order.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õ÷%¢ºxª\âz]ì”ƒ',_binary 'Å´\ÎM¥?wñg\ãb‡iŸa¶<žƒÜ±.ñd=„¨\Þ','',0,'?'),(_binary 'ú^\Æ\nJ\ÕpˆZ‰¬\Û\Î','wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/modules/monotype.js',0,_binary 'Etý\â¾ƒ›\Ík‹Fû',_binary 'Etý\â¾ƒ›\Ík‹Fû',_binary ':¡XZ[t¬\Å0£&µ<À[n¼Z•G¨‹\ê-‰¾¸','',0,'?'),(_binary '\Â\âŠÅ¥û\Înƒ’`s','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-new/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3#Tª?Ÿ¢\í<GJ“«-ø',_binary 'c\á[ˆœ~(ƒpr¨þ¥Ä‰e)\ß\Ã…PP\ÆõÑ†','',0,'?'),(_binary ' ³\Ì®\ä.øgú†ów\å','wp-content/plugins/contact-form-7/includes/validation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\È\Ä>”—„\ï\ã\Ù\à„ø½\Î\é',_binary 'cŒÍ½9´8\ân4\Þ\ÌQdµ\ÌDµTK\ÈóTS†)','',0,'?'),(_binary '$Ÿ‘¨oyIu\Ø(\Í-','wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_wcSystemStatus.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Êa¹\ÑViô\Ñé‚š×Ž‚ò‡',_binary 'G¡À(Žƒ}ó\Ã\r‡6hm\ÎUxuœ€qx|67¥Ú¦F','',0,'?'),(_binary '=Q(yb\ä‰’\Ð6s»','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't	‡\ï\Ï\Ëm!¬\Ô~A^óS‘',_binary '®÷…#øŠL?ûOM6r\Í/W_ ~•¹¤¦þ','',0,'?'),(_binary '@úŒ¶¬¢ 4‰\ç\ç\ì@\Ì:','wp-content/themes/twentytwenty/template-parts/content-cover.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \"‚\éþ0¿\îyúTÍ™\ß',_binary '5\ÃÕ–\ßHÊ¬P\æ\ÙQ\Â\Ìr¾úb\Ç.\Ã„·e;\És0K´','',0,'?'),(_binary 'Cº\núª\\KRò@ù[µ','wp-content/plugins/woocommerce-multilingual/classes/multi-currency/geolocation/GeolocationBackendHooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n6_#\Îe;4-œ\Ã\ï¤%G',_binary ';€œ99Üº\n¤\Ù~<1)\Ù¢:ög)lN	 ','',0,'?'),(_binary 'YÌŽ¾\Ù“	òbL×¶t','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/event-emit/reducer.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\èÿ¸5,>FrA\àŒ8ùÉ•)',_binary 'óO\Ç~ñ0Xh¦wd\Ä^½<²I)$\Ý\ïª\Å\âp\ãÜ¡','',0,'?'),(_binary 'Zƒ\é\Õ\\\Â-½’\â\ïö','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/search-list-control/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ïØ™Á»N#\ÞÀ«\Ûß¡*',_binary '\î§ ˜†¹,EC\Ê	s•T´\í‘õ-\ÄJ$¤]\r¸6Xš','',0,'?'),(_binary '\\s\Ü9XIJ6•Ï¸o\åŠ$','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\ÔÜ¼\'Z”y£{\ï\Ï',_binary '\ã¡÷\\y¾ÀÞŸ#´Þÿ\Z¼NV\ç´\ÝüwøC`¤u^\Í','',0,'?'),(_binary ']‚„@»±”—F“†\î\æ“','wp-content/plugins/woocommerce/packages/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_Scheduler_command.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½\á>´aD†=\Ëu§LH',_binary '»B£‹¶Žwfðï©ŸPÓ—ñF}u¡l\ÉD	h\0','',0,'?'),(_binary 'cŠ\Ö ÈµŽE9jz[‹','wp-includes/blocks/code/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒª“ñSÅ\nLb³o¬—º',_binary '¦=\éõƒðúµ¹­\Ö	±ç¶¯ÿ´ü\ãtò\Ó¶I','',0,'?'),(_binary 'd\ÐR¹#ºhMºÿtý¦O','wp-content/plugins/products-compare-for-woocommerce/products-compare.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§hù›4,£@Àn»q\Í',_binary '»‚T0\ä\à6¬P‰ÁtpµEOw^7³…\Ö¿n\ëø','',0,'?'),(_binary 'mƒ\çD’Úœ\Í(ª\r·\Ó\ã','wp-content/themes/twentytwentyone/assets/sass/05-blocks/pullquote/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\ê\Ø\Å\Ù|\á>3üX? ',_binary '\ÙôÝ©F\Ìs\Äÿ3G§¤•\Úb\î8ú\Î\ç¿\é\î»N£@†—X','',0,'?'),(_binary 'w\Ñ7þv+q1’\Z³Š\Ñ','wp-includes/blocks/list/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[AwÌŸ\ë\É\ïÑ–ü­X19°',_binary 'G\Ú\âQÁ¡—µ”Ry_I™ERœ[X=\ÍSY‰¢\"Ž—\Ä','',0,'?'),(_binary '|F^\ä;ÀÉ‘\é','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LÄœ\Â\ÒL¦Èr4òr',_binary 'Á“’\ÎŠ\rº\É&sð÷3û\å÷HŸ)CN\Ñ)’1\nJ¶','',0,'?'),(_binary 'ƒ¶4r\èˆ%\Þ\ã\Ó\Éj¸ž—','wp-includes/SimplePie/File.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…*¦Ê™\ÓZ\0(hK\Ô\ÈHR',_binary '8^V\È\Ó‹õ´c§\ä«\Ù\ÃÃŒ?os—„sþ\à\ÈS','',0,'?'),(_binary '„8³óXŸ˜W\Ço\Ú\×þP\0','wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-plugins-wrap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µð”\Ë\×}ó)\Ì1\Ä{\\',_binary 'ŸMõ›´ßƒq¯?\àB\Ð,x0¦±9Š+¢´!t|','',0,'?'),(_binary 'ˆ\ÞKS+¡e×ŽA†@“Š','wp-admin/css/colors/light/colors.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w¢ô/g\Îwp—`ú\ï\\c\Ó',_binary '¥Gk©1\Ø\Ùk\Þ]\ÎeC I·\æh•]ûÅ·\Æõ\Þ','',0,'?'),(_binary '˜ù\ë&rqúož%\Ýñ,','wp-content/plugins/woocommerce/templates/loop/add-to-cart.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³ôôv@Z¥Ž(|{˜\É9\Ö',_binary '¤\ßÐªE1\ÄÍ§>±òp?½[™\å°wž1I(\è\'','',0,'?'),(_binary '›» \Æ\íFe±	57[\é','wp-content/plugins/wordfence/lib/email_newIssues.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\èq­”3å²›¸u\Ü`·At',_binary 'm)Th\Ü)\"=>\Äü#a¯\Ö\ÒZ;V<\0`\×h	”5°w','',0,'?'),(_binary '¢ýñ\çUNEA\Èg\ït','wp-includes/js/customize-selective-refresh.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾uPå²‰\ë0x\Zü‘¶\â\ã',_binary 'ŸŸqË–jZC~›ˆÿ<sÄ§+RI!¯H\Úó','',0,'?'),(_binary '¤\r\ØYó Gw…	Eðe','wp-content/plugins/woocommerce-currency-switcher/views/auto_switcher/round_chain.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f}=\Òv\ÉG\Îù¿n—€b‹',_binary '7¶R‰¿õ\é7E-0&\Ê+\Ä\È%¨\n\ÄwF\Ø\äM\"\Ú\Æ','',0,'?'),(_binary '´¶cCˆ0\ÎU\ßU,\çdfò','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z Š\"I\îó\Ë/„ú…®',_binary '\"÷¾´[&\æPz>|Öª!­HX1¯»©\æ\Ó\Ò\Èb','',0,'?'),(_binary 'µ\\vD\ÇE\Ä|,›xÍ±','wp-content/plugins/contact-form-7/modules/constant-contact/contact-form-properties.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yÀ\\KQñ·±-…(ì„œ',_binary '»/Ã¤f”\ÍÈˆnküÛ—”-?‚A$\Z&Š‘5z -Á','',0,'?'),(_binary 'Ê»\ï\áby^£©W§\ßn\ÒO','wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-form.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²,ºþ\Ï#6j	\ç€>¡_\ï\Ù',_binary '>q.ÿ7œ\Ô\é…\ÂòŠ\æ\nPü\Ä+)Š+4V\0	\Þ\Z','',0,'?'),(_binary '\ÌA\Âo\Ú!\ÌV\á\êÅ³`v','wp-content/wflogs/ips.php',0,_binary 'lC¤db\ï.§Ë´\ëƒv',_binary 'lC¤db\ï.§Ë´\ëƒv',_binary 'Z][W‹Pš}\Ã,ûþ¿–žƒ7*öq\ä\á\n\ã\æÆ‘¡\á','',0,'?'),(_binary '\áˆ,·F3õT\ïOóó\æT','wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-plugin-licence.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥O>±”p\Å9\Ã\Ñ\êš\ïŸô',_binary '®d#\Ø\ØF&¤Vd\0«È¿°!V.\Ó~`q±zbo\Ò','',0,'?'),(_binary '\ä¸-Z\Û\åIÈ˜Q\çt\ïòð','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/OutputFormatter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n6Qc–\\¦’Å®E\Ó(ô^\Ö',_binary '›öF\ê\å\ÖD¹1 ¦;sy°#^Z\Z:rE\×+ló','',0,'?'),(_binary '\æI:’d¾ú\Õ\í/õ±','wp-content/themes/flatsome/inc/extensions/flatsome-swatches/includes/class-swatches-admin-product.php',0,_binary 'ý~3\é…r\Ó\ãR{\ßh	¸§¤',_binary 'ý~3\é…r\Ó\ãR{\ßh	¸§¤',_binary '3cú*\ÅÉ®§ö\0ñ\ÍK[L0-‘a»FX$^ŠƒA\É','',0,'?'),(_binary '\é\×^ƒð$	ôHñŠõ\Õ','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-products-screen-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô\â9»<›ô\×\ÝÓªõ%œ',_binary '\"Llnú‡‰ŒÇ¯?þ¢fL“\Ò\Æo¶\ÎX:£ð\ÖP©)','',0,'?'),(_binary 'ð\äl„Uy:e4\ãN1Ï»o','wp-content/themes/twentytwentyone/assets/sass/05-blocks/verse/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ä–h\ÈNËº–\Ì>=P',_binary '8U€±GS³\Î\ä\ä5\â\Ö\Éþl\Ì\ìrx©¥²\\)œ¸\n','',0,'?'),(_binary 'ñToÁ¾U‚ÿr¿\ç+ˆ','wp-content/plugins/yith-woocommerce-compare/assets/images/07-bg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Zk—ö”EI‡b™½0\ïn¢',_binary '\ZYJ¸w‡•\Ýt¦À‡£\î¤8H˜ö¢\Í\ÙC6Hœ\Ô;','',0,'?'),(_binary 'ù²Ê£pI\Þn˜I\îM','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/checkbox-control/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-„\r\ç÷A\Ü\"y„h\ÆO—',_binary '†u\î°lÈ“‘\Êòn]´\Ô\ív:Wò¨oõ\ïi\å)','',0,'?'),(_binary 'ü\âG+¸wS™!…>¹b™','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/test/notices.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷ b\Æl\êv\î~\áZc\Â¬',_binary '}£üúr«q¶w¦?\Zc \ç\ÊË²þû¤] \ËV\ë¼}LD','',0,'?'),(_binary 'ÿŒU>Ç‚\Çü%ý‹Ÿ','wp-content/themes/flatsome/template-parts/shortcodes/button.php',0,_binary '\ç0\'\rj©ŽöÁAÎ¢R‘',_binary '\ç0\'\rj©ŽöÁAÎ¢R‘',_binary '\Ë\î\åšeÁ¨(6ªƒ2 8S}‚fÁ“Sµ>Ka\ß€.','',0,'?'),(_binary '­t’YSQ/[Š®R\ÍC','wp-includes/blocks/gallery/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦\\±mH\r³\ï\Ä\ëo©',_binary '¨\æ7ÿ+•#Áo!’dþN°ƒH“ªÍ°¬ï…¥U\ìÂ¤','',0,'?'),(_binary 'rFJ\în–Š¤¿9‚“\ï','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-radio-buttonset.php',0,_binary 'tÞŠ\Î?‡²\08Š\Z÷þ\Ø[',_binary 'tÞŠ\Î?‡²\08Š\Z÷þ\Ø[',_binary '«a\Ï^\ë\Ü`P\á\n\Ç\Þa¢¨å…\âÀ“\Z\ãtöwp3','',0,'?'),(_binary '	\Û\å•sJ¤!\ë\á-ò‰','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/rating/support.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TË”„\Ë0•QŸ\í\Ï$!',_binary 'J\ÝB¿=ýSô,žª\í†\ëd\Õûÿ§v\ÖUŽû”706','',0,'?'),(_binary ' o¬Æ•Ÿ\Ìt_¯º\0.\Í','wp-content/plugins/wordfence/views/options/option-switch.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'žþž+’‹\'|\ìª',_binary '\ÓC\ÑZ› \êhauðúÝ£»K\èCif!…½—¡Ž\'~F­p','',0,'?'),(_binary '%~WN82½žQ­O¿›þ','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Domain.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n4¤Fš¿0JC\Æ n²¾k',_binary '»Cb,¨³\"\×\">j»\ä¦ò‰ÅŠ\Î\ØAlDœ','',0,'?'),(_binary '+Lü\Ø\å´\äG²¶·=do','wp-content/themes/flatsome/inc/builder/shortcodes/templates/section.html',0,_binary '¢ŠY\Ø\î´B\"}”W\ì:',_binary '¢ŠY\Ø\î´B\"}”W\ì:',_binary '\ËH\ÉmýH“\Ýi¡€õ)¦W\Ä1\ÉÊŸ\×\ÅiCr\ËO/\å”','',0,'?'),(_binary '/ZBgƒŒth2m\ëN	°','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/languages/yith-plugin-fw-el.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z^\ì\0•\à\é~8\ë5f|\Ä\n\à',_binary 'ŠMv†5\Ç\Ùs\Ã\'\Ã>\îqºŠnhU¼v<›EU·\åPf','',0,'?'),(_binary '1Ù´~\×û¡W¨\Þ|WŽ6','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/shared/add-to-cart-button.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÌŠ\ê]” ]\Îqø^\Ø:',_binary 'ä‡½Ì³ORÿóó¼\äFeZ8“Tý@ƒ|P>2]\'','',0,'?'),(_binary '6pB\é\æk›ƒ\Ô\n\Ìy€','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\íD\ç¡\È5BJi†M••³^ò',_binary 'ª§ŸB\é\ß\ÉZý\Ýøf¼\ê6;\Ä#…™XªV\ém‡Š','',0,'?'),(_binary '6N%y\Óa¤	N\Ø\ì\Î\Ã_r','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/stock-filter.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PW©\'{º\È3‚€‹¬x\ã',_binary 'TŠŽMr÷\èc ¸2dÿ\Å<Á^“\ÎeÉ¬y\Ð\0)y','',0,'?'),(_binary '7nÝ”Q[\ÝÊl\Å~½\Ñ','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-payment-gateways-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®‹\'9¯¡a$\Òœ,¤²',_binary 'Gy\Æ\ï™è´s|\Äm#ó\à#\Í#Š\Ükƒ\à\Ä;\Ç\ÙzÉ','',0,'?'),(_binary '7ˆ\éV¶Ž\ÃV0ic-·G','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\É\Ø\æ‡\Â?•/W[«\Ñ\ÐR',_binary 'G|©ô*\Å[\âCX6—MTÿn›v®?\äÌ§ˆ','',0,'?'),(_binary '<až…n/\Ìü\ë‰Yi=¥','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/ClassLoader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€\ã{¶0\Å\Ä,ûQ6nÀœ',_binary '\í` ‰\Õ\ê\è\çs›N\áü.\Î-Ú‰ó¼GDTú‹¶¸-\nt\Ô','',0,'?'),(_binary 'AZX–O Jµe\Ë\â‘!¨¤','wp-content/themes/flatsome/inc/admin/customizer/img/nav-box.svg',0,_binary 'ý\ë\àÔ·]K•\\š',_binary 'ý\ë\àÔ·]K•\\š',_binary 'G1MH\ç\×v×…¤\ã6ók%\Z\Ò\í\É$;°o9\\r}4¯','',0,'?'),(_binary 'THÖ¢¼„0ýAªGe\ÆB	','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/pt-BR.js',0,_binary '[-&lò‘?®\ãô\ÛO`\ÖK',_binary '[-&lò‘?®\ãô\ÛO`\ÖK',_binary 'e\nZ\äúxJu)\n7\n\Ý2os{/1}CiF','',0,'?'),(_binary 'Zj \í3¤.O\ã9Ù±˜','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/IsEcommerceRuleProcessor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I{K\Z\ì‘}ñ\â3F6«Á\ØG',_binary 'Ì˜=«d\Ä\ÊI\çA\Õ$ð\ë5\Ê>l.‹D÷—¼>Ù°%s<','',0,'?'),(_binary '\\Ÿ¤\Ð\Z\éŽe	\Í)Ÿ\ÕUp','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'È‘H\ä\Zb’>V\ïDö¢R2',_binary 'rÑ›JÔ‘I/\é\nO‹Y}œxš‚Å†\ë”\Þú‡\ÆU ','',0,'?'),(_binary '^°\Ã\Ú\ì¶Æ\ÝÏµ','wp-content/themes/flatsome/page-blank-landingpage.php',0,_binary '&{\Ën(”@ ~\× \Ú\Ó',_binary '&{\Ën(”@ ~\× \Ú\Ó',_binary 'Ž©¸DX œH\Ôç«†\ÃDo\ÕÃ¤†/ªgñ1¦<¤s[8','',0,'?'),(_binary 'bŠ$Â¼R†¸´\r\é„','wp-content/plugins/yith-woocommerce-compare/assets/images/logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p]»B\áð\Ðe§\á©\ÒNy',_binary 'Hû_\"¶G\Ø\Ù#U\Ôt~KBþªi[\ç\ËþO-:\áS','',0,'?'),(_binary 'c\nh\ìGOù\â35\Í','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/instances/class-otgs-installer-instances-factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\ÊøaÞŸg‹\r/R‘¥\çi',_binary 'lPöWñg\Æä¬“rüEmý¶P£>\×x¢U2k³®–§','',0,'?'),(_binary 'hw\æE\ç!%$Ž\Æ2','wp-content/plugins/ti-woocommerce-wishlist/integrations/yith-woocommerce-quick-view.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯^\Éÿ\Ê/°sÞ«Uõ¯',_binary '‚M§yU¾:\Ðòÿ¬kð\Íµ)5„Zã¥‹ÿ-+ž\È9n','',0,'?'),(_binary 'n\\\ç\×ùˆqðœý™)<\Ç','wp-content/themes/flatsome/inc/functions/function-maintenance.php',0,_binary ')2‹~jÛ–U7šA*\éC\Ä',_binary ')2‹~jÛ–U7šA*\éC\Ä',_binary '·B#ECp\Ñku»•³0\ÓÞ€3>¥÷[…@¥É¿5','',0,'?'),(_binary 'opiu9¥”\ÞúL\ÐlY½\Ü','wp-content/themes/flatsome/inc/classes/class-flatsome-envato-admin.php',0,_binary '%²\ìR\Ís\\°\Õo\Úû[z',_binary '%²\ìR\Ís\\°\Õo\Úû[z',_binary 'µc‹eŸ˜Ô¯•˜H5”\ÊWŸY\î°gK\Èò\Ê\Ð1\×õ','',0,'?'),(_binary 'tÉ´ý£\í&(\Ï\æ\Ê³','wp-content/plugins/wordfence/js/wfpopover.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\ã&m­A\ÄhlMPZX',_binary '°\ì_.Vè¢•\ÊŽX\Í\ã4N\íi_\Òük=\Ô\æC3','',0,'?'),(_binary 'w‰Á\Ãú+\0\ã˜ò\ì2\ÎR','wp-includes/sodium_compat/src/Core32/SecretStream/State.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Zjoñ\0˜ºy,¨*•}c',_binary '2p\"Wj\á„€—\ìs\âlf&S@\Ç[\Ç\\‹ª\"W\Æ','',0,'?'),(_binary '~M9\Ú\Ù\Ìr*\æj…','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/src/js/otgs-installer-support/app.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$ñ\ä|%ky5\ÕoA0O¢W',_binary '3½G\Ûd¿„¿\Ò#˜•Ýª—\Ãn\â+€Ì±dƒ´”6µ#\Ï','',0,'?'),(_binary '…F}Ù¦\Ê\ËS(\ê“@K','wp-content/plugins/woocommerce-multilingual/classes/Container/Config.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\âÔ¯kuŽƒÁ]\ï›',_binary '€Fæ ƒ\ë\è\ã—š\ä¾\à-­\ÑÚ8”“R¤\ÒÕ”\ßs','',0,'?'),(_binary 'Š\ï\å\Ú3W®Å§øŽ\â\Ø\Ø%','wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-pointers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñ\ãö#Õš‰v \Ç]Ð†¦\Ç',_binary 'D\ÖWw·ñÛ©\rIØº\Å›hzQ\éðò‰;¥bu\Ó','',0,'?'),(_binary 'ù\î‡ø§\ÂÁQÍ’~pÞ','wp-content/plugins/woocommerce/src/Admin/PluginsInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Wj\Ö(\Ì5HŠ¬z;Š”W|',_binary '\Ýú[[Ÿ\É?_”Š=Iz­C\è\î,ð™4\ßgøF\ÂJ','',0,'?'),(_binary 'Ÿ@\"§:½»!™\éhH\ë','wp-content/plugins/woocommerce/templates/emails/customer-invoice.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§ŒÂ©£P\ëž„	Pš)q',_binary 'B\íWu«\r|P³\nUªœ|]aIóu·	’\ë{w\ÅHe·ÏŽ','',0,'?'),(_binary '–‚e }ZC\ÆóZø','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/ProductCountRuleProcessor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'šHm]^“¼\æ¥\à­\Ñ',_binary '\Ì\îY^K®ÀŽ»R\ïZ=9%±Ø\Ï8\äa?a\ß\Ä-›C','',0,'?'),(_binary ' o˜\Ë\îQ\Ç}I7\Ù','wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œ?ÿö«7:{Uu}ù6ôŸ',_binary '²ô±C\ÑO\áœ:ˆ¥œžr•\ÇD\æ\0®\îÿ±©µ','',0,'?'),(_binary '¥-ƒ\èBññ|tS^¼','wp-includes/customize/class-wp-customize-nav-menu-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÉüÔ¡¤Pý\n}õ$',_binary 'ºvG~?t7\0‡Žh\ëªR,û¡|\Ù]9…ôp¾.J\äw','',0,'?'),(_binary '«»2G\'£ø\ï\Êú– \ëH','wp-content/plugins/yith-woocommerce-compare/assets/js/woocompare.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%Ø‡\ÉÈ™u\"\Ï„\á`\\',_binary '\ì#C—óM¾²™\ÔmY\Ïò4QT¡s*ªp|†OK/\â9','',0,'?'),(_binary '¯ECW¬\î`©`\ß\ß-\ï','wp-content/plugins/wordfence/vendor/geoip2/geoip2/.php_cs',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹_@\åe\î\è\ä3¥b”\ÙB',_binary '\ÙL\à‹Ø¤@J\ã†9OhG—@@›\ïªûZ!†\à\08#l\Ó(','',0,'?'),(_binary '¯°>tnò\Û\Újž•òHt','wp-content/themes/flatsome/inc/admin/customizer/img/product-swatches.svg',0,_binary '|\êM¤\rôr‹\Û\×ó\ë',_binary '|\êM¤\rôr‹\Û\×ó\ë',_binary 'mYe\"[\Ût\ÑzY\Ì ,ü`#\é›Î´}Z)°sÏ¦GY„','',0,'?'),(_binary 'º¹Q¬ù\ÄS30ˆ\È\Üdª','wp-content/plugins/woocommerce-multilingual/res/js/lock_fields.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ð\É\ß:DðÇ \\¤I¤®(a',_binary '3!(»—\ç´¶/ø\Þd\åÿ\ç^¤[ÒµvX\n\ì\î8©c\Ö','',0,'?'),(_binary '½jM8\ZQ+ù3p³bœ','wp-content/themes/flatsome/template-parts/posts/archive-list.php',0,_binary '¹h¹\ÉI«D¾ÿ\Ë\ëDJ(',_binary '¹h¹\ÉI«D¾ÿ\Ë\ëDJ(',_binary '\Z\Â\0öâ…‚0ac\Â\rˆ\ÞX€)\Ó;ð„¿&Ú”•GE','',0,'?'),(_binary '¿g[…BK\Ä]X‰.\ß~','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/classic-template/assets/doc-image-single-product-classic-block.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ò¶¹OÁÿž©\ê\Ã-…E\ì¡r',_binary '4ƒ\Ø\î\Þ@KC-´gù@k>~ja\ÓM<\Ì\èv;˜\ÐQ(3\ì','',0,'?'),(_binary 'Ì \Ù\â\â\Õ\n	–3$\Ü!Œ¢','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/fonts/FontAwesome.otf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\'\Í]…>\\v\\ 2\ß\Ô\ZM',_binary 'qoÁO$K]¡Ž°g3\ÐnûÃ’±Ñ\Ò~\îøù(€R€','',0,'?'),(_binary 'Î¢ƒSËª\Ä\n´–B\áV\"','wp-includes/fonts/dashicons.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´\ä_‘3$_\Ân ÷5Ž\×X',_binary ';Ê\'8\ã4aOoY8-UŠ62»ý§K\Ûqqü$B\àùx','',0,'?'),(_binary '\Öi¾§\Õ\Ç\×Š\Í‡','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/fonts/yith-icon.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ø\Ã•…M\åP\"\Ó\'4°¿',_binary '\Z¸ga§q…gm°9\×9\ç‹Ö±=Vÿ(l	XÀq%	L£B','',0,'?'),(_binary '\Ü5ôƒ£k\Ä\×!\è.8\Â','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-product-attribute-terms-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¢þã“}1\í\ë\Þ\ÌU¢ü',_binary '6\ß\ÂJ1\Üú_öL\Åa\Ú8-„\"(û\á\Í’¯\ZÄ¤\àô','',0,'?'),(_binary '\Üu‘Tªb°Ä‡\é8)','wp-content/plugins/woocommerce/src/Admin/API/Reports/Taxes/Stats/Query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µõ\"·4\ÆbcS7Ì“\Ïj',_binary '\ã	dŸ4\Ú\"s\Û r\rö¡Ø“Ã¹ƒ\0<ôET§\ç7šø$','',0,'?'),(_binary '\Þ\â\\§\ê‹h\Z\Â\È)Ä ‰','wp-includes/blocks/paragraph/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't½ž\äž»p—³\Ò\ë\ê6',_binary '\Þ(©B¡¡ZzU\åòU;tBvoü§¯²uƒ¿mžð_™','',0,'?'),(_binary '\á!·Œˆ\Ì+\rf«¬?Ž','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/add-to-cart-form/form/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\æ\Ö\Z8þiÁœ\Æ}\ìÿi',_binary 'm~C\Ú÷ˆ?--·\ësÈŒx\ê÷\ÝC	t\È!\Ã\ÛBôƒŽ','',0,'?'),(_binary '\ï*Q.	\Ö-c\Þ%\ÎD','wp-content/plugins/wordfence/lib/flags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'öi\ï\Ëc\Òç£­µ’cð-',_binary '8¶Y¸\ÖCO\å\×ø™0÷j{¡\Zx¤¤DòÄ–¿’xªO§','',0,'?'),(_binary '	„‡,»Ž\ì†`Ž\Ï ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-categories.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ëaxºõó6ÁZxi¢\\…«',_binary 'rIz¾#ö\Ùj\Ê\ï!\ã	œp¼if\à\êj4Š&\ÜÕC','',0,'?'),(_binary '	\"Ø9F±\à»*.ø{Ž','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/dist/css/otgs-installer-support/styles.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O.Ÿ A\àóš\Õ>Ï¨þ\Ú',_binary '¼\'È©\ê\Î+\ÔøAJ·J)¼\Ú3\Ñ	˜øf\ä6','',0,'?'),(_binary '\n	M«I†~öYEO—\×]\×','wp-includes/blocks/post-featured-image/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b&®³œ\Ôm\ngÿ\Ù%ŠL',_binary '\Ò,¦«Qs`•¾\å\æ?hÐ–D6÷ól{­\æ¿\Ø\Ò K','',0,'?'),(_binary '¼\Üy@I÷Å§±j\îu«','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/AssetsController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Zq7‡õgPƒÖ©CAD',_binary 'ˆ!x\ÊlLU\É–\åYm\â\É\Ë\"s\Úk£f7S¿…3=','',0,'?'),(_binary 'C‰\Ø¨øC\'\Ô(q_','wp-content/plugins/woocommerce/includes/tracks/events/class-wc-extensions-tracking.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°ògº\ï‡¯J€iJNY¹',_binary '?`Qóvƒ\Ü\Æ&$& \Åô‹\ãc‘…£³SµM’+0»?X','',0,'?'),(_binary '˜¯Ü¡9\îu_\\\n\Ã9Á\'','wp-admin/css/color-picker.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ó\Ì…xŽ\îTi6šúþ',_binary 'Û£q€‘T¢òzu\Å\Õ\î©Oi\îÿ\\\Ë5Ð¯Yôu\Ö\è~=c','',0,'?'),(_binary '\ÈKUõg0MU¿/šöÊ‡','wp-admin/admin-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ùXo®¼_¦¨’Ô²)\n\Í\Ñr',_binary 'Ž(\ØZ!.\Ýeñ\ØTU92;\â\É­\æ\åÝt5o\Ò^','',0,'?'),(_binary '\Z[`£±0CI$Tˆ \'÷','wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'º)\ÕH¾µ$I»3½^0',_binary 'Dsmr?v\Êjz¡…\Ï\íMo™3=b0À›¬K\ÎR#','',0,'?'),(_binary '!µ\Ì\Ìdj\'ER‹\0¯|ø','wp-content/themes/flatsome/inc/admin/customizer/img/cart-icon-fill-round.svg',0,_binary '\0‹U>\×,5p\'Ž˜Í‡Œeª',_binary '\0‹U>\×,5p\'Ž˜Í‡Œeª',_binary 'Cüm††Oup\Ù7\Ýóð\ÒN/\Ü=‹;œý\ìC¶dG','',0,'?'),(_binary '$Á¨Ïƒ)×§ŸB\Ë ','wp-content/plugins/woocommerce/templates/single-product/product-attributes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ\â f®ÀSvq„e\âtªÀ',_binary '›H#¢\×\ë\ê\ïT\Êv‡\ÖˆBZð“\íI\0\Èg¨n\ÍºgšW','',0,'?'),(_binary '/ø\'U,7ŒE¿}ºtS','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pp\Ìø)ô*C^7û­ ',_binary 'Â¯c\êw‹tG°¼>s}X»v‚}A;4§›\ÙF…	U','',0,'?'),(_binary '4;V\Ïô\'Œ/¶ò\æ¨fº','wp-includes/js/jquery/ui/effect-scale.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŸMÖ¥¦Oª\'øŸ¡ŠA%',_binary '}ýPœiD‰›\Ó$Ú¶\ÜC÷9\Õ\îXõY¡F¶û˜\ê=am','',0,'?'),(_binary '7\Ñ\é±\îOW\n@‹a','wp-admin/css/colors/modern/colors-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ø~ö=¬\È¾Šù\ì\ëI',_binary '„wŽ\Ç5!”]ò±Rk\Ú\Æ\Óû	žNp\0t|‹\æÒ®†•Y','',0,'?'),(_binary ':½~dç­‰\àWÀ}Ö§ž:','wp-content/plugins/woocommerce/packages/woocommerce-blocks/patches/wordpress-components+14.2.0.patch',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×ÿy¾n¿pñ²\Û\Â\ÒpT²I',_binary 'ø2/7f\Õ8(\ÄÛ¢f™D1¨«…$Þ­ž´±—\í¦','',0,'?'),(_binary ':¿f\Ø?bjƒ¿.‹Ÿ¹','wp-content/plugins/wordfence/views/blocking/block-list.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']#{\×1Œ†\Þ\í\âõ&vµ',_binary '¨^Pöb.|³=>\ÃS•õþô#\'\røl±]\×^‘','',0,'?'),(_binary ';ð{\Ï\×\ákü¯\ás·Ž','wp-content/themes/twentytwenty/404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o06_¸Jw`‡Q¹+qŽm',_binary 'Î‹\Ô[_wS^†[\àxhÂº\ß×ŸÝ»6\Ï±\ÙD','',0,'?'),(_binary 'C­’²•\æ³P\Ù\Í\ì)','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/yith-fields.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñs ’-(T}`!Š6¨F\Öm',_binary '¿s55‹™Tk‡\Ö{ž™[óUÚ®i!\Þ¹R\×{›\è¤','',0,'?'),(_binary 'F\Ý/!‚e\Ê\Þ>\ÞSK@BX','wp-content/plugins/woocommerce/src/Admin/API/Reports/Customers/Query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ã»’\à=*…\é\Î\Õ\0Ë†œ\ÝU',_binary '¬‘e\í>&²X®o‚{`„]\æû\Ç\àp<=e\äû\ã˜fq','',0,'?'),(_binary 'P\Ç1\r½e\07÷FŽ\É)Æ–','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-coupon-usage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ói>T\0\é\É\0\Êh\ãC\Ö,',_binary '«\äoµÈŽ\â`d\Þc*iI·pHƒ=¢Í±ù{s6\Ú)nM\Ð','',0,'?'),(_binary 'TšÄ˜5VH«¬üP{\Öô','wp-includes/Requests/Exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÃFlkÙ®<v\ÕwSH²\\',_binary '-@Ž‚g %ˆü§†ŒuON\\}@l\à°\Ì¥f\'»\ãó¼','',0,'?'),(_binary 'g0‚:¯­ªbH®ýð\Ê','wp-content/plugins/woocommerce/includes/data-stores/class-wc-coupon-data-store-cpt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6s%P²q°÷%cú',_binary '\å§h»y‚\ïú¢\'Z7@9)’žŸ¤‚š\Âû\åÁ\â/','',0,'?'),(_binary 'm¦7\è’Ä™£#¾2#\Ì\Ë\è','wp-content/plugins/woocommerce/packages/action-scheduler/classes/migration/Scheduler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬;u n»?\êŸ3k-Hw',_binary 'ª\Å\"\äøb\ãaˆ\Ï\ÓrþŠž\á\Ö\ßE\Æ@ð\ÄZ›¸\Ó','',0,'?'),(_binary 'n 1œ6\ïb‡\0÷/\æH','wp-content/plugins/woocommerce-multilingual/res/images/alert.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\è¦\nG[[†ò\î\Z\çkFk',_binary '\×ýEœ¯D\\ÿ\Î^~$Â»÷øz\ÚB\\ÀL\'~øf§','',0,'?'),(_binary 'p·)ñ!\Ïviž\á]°8','wp-content/plugins/woocommerce/src/Admin/Features/Navigation/Screen.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\ÇŒ\É\ãž	¼ýþKP¨',_binary 'ùU#F²ð\n±>õ\É\Â\ÈÁ.z6,MÀ4\"ºlM*\É','',0,'?'),(_binary 'rMƒ«Ã„\çöö¸ðe\Ï\×','wp-content/themes/twentytwentytwo/inc/patterns/footer-query-title-citation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WC—e_8jI~k5µ\í',_binary '„ñÁ_´¤\n`\êŒ\Z¡Â…¯(\ÕÀRš]j½A\î','',0,'?'),(_binary 'ƒ¬\ÈD‡eóDn¤\Í2\é','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³hcÞŸ„±1\Õ\ä\í€\Ó—D',_binary 't\Ä\n†„7e\0\ÎZ¦\ÉI¬˜|ÅžŒ÷Ãœ0•\Õô+–','',0,'?'),(_binary 'ˆ\íÁu\Z¡\Ì*Œ/KÂˆA','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Domain/Bootstrap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{c(\Ù\0ªý2†¨›\r6›',_binary 'U\ØOf¸2€\é¨\Üaˆ[–jžc]œ\n|wÒ¡\á\ÐOÜ¯F','',0,'?'),(_binary '\Íq·\îYG“%ö÷ö\ÍB','wp-content/themes/twentytwentyone/assets/sass/02-tools/mixins.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9ò\äc’Vµ\ã\Ø@\ÅZ®\Ù\Ý',_binary '«\Ó\×ØŒþ@C\é¸B+ò´ˆ\Ä=\Zõ¡\áô\îÿŠª\Ö\â—\ç','',0,'?'),(_binary '\Û\ÞC\nŽ—\äU¾„ü','wp-admin/js/custom-header.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÝŽ\È\Z‹ \Ð\ZÚ¸\Öô\Â',_binary '¡òv•N”°¾;dõV\Â\â5dû¥Žt¡,\î','',0,'?'),(_binary 'n\ß\ÑO.¯\Í\è}','wp-content/themes/twentytwenty/templates/template-cover.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à±O÷#aJ\í+ÿ»Q–™',_binary 'wœ\Ò\àµ§\æ\Ð]}\ÙGÝ J’¿?¡¾f“\ÆPˆ¹­ú·','',0,'?'),(_binary '–éŸ‹E\ë\Zk%‰\'4±8\ë','wp-content/plugins/woocommerce-multilingual/classes/Reviews/Translations/Factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ùs\ä \Ñ\é€;,œ\ÙOõ\Ù\ã’',_binary 'Kuœgÿú¨~ýgÃ‡±F\êƒia\ã’\àæ¿‰¢\å','',0,'?'),(_binary '˜L·2j¢>\Ùa}W½\Ô\"','wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­\Âü\Û\é˜+ö\äŠtK[',_binary '\Íy6ºc\\€ŒGH\èÁqy“‰SŸòÁú\Èu-~	\Ð','',0,'?'),(_binary '¤\Ê0l±\Ýj\Æ0+%ò','wp-includes/SimplePie/Source.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'aŒ‰A:\ã$]B-\Çvwñ)',_binary '²\"\ê\Ñ\á9M\Üa™ƒ´U\â_¤h\ÍI€ø>¼,]ÿC\Í','',0,'?'),(_binary '¨Š¨™2Wä”¦ó#—§N”','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/handpicked-products.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ö\Æ\í5\ÉÇ¸­9\Õ2t¡ñ#\Ë',_binary '\ì\ëq·g°Fž]üƒ\Ê\ZRn*Am\ä0§û—P\í?\r','',0,'?'),(_binary '¯ªùn\ç\ÊouM]&\ä\ë','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/fonts/yith-icon.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0h\èô\Ö+j`~3/\àa',_binary 'Œ]\Þ¿(:™\Û\ß¿€M“P÷–\î+YF)¬~\Î_W[¬S\â','',0,'?'),(_binary '³Á\Ëó\Èº¨‹“G~?','wp-content/plugins/woocommerce/assets/images/task_list/expand-section-illustration.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0PN]öŸšMc\Ý5¨§ð}™',_binary '?M\èI¬\ì À\Éöº`6Uœ\rò¿,14õ’kž …','',0,'?'),(_binary '»\Z\Ê-qÁS”T','wp-content/plugins/nextend-facebook-connect/providers/facebook/admin/getting-started.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1wSÜµ^>ó?oÅ‘¬w',_binary 'û÷°\Ý+r—ë±•\Îÿs\Çdå±¢”9\Ó\æ\Ç2MK¸','',0,'?'),(_binary '»¢F‹\nŽ€gø]K','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-object-query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\ß\\ø{‚\ã\è¦V£Ë‰lª\Ý',_binary '6 \ß-\Ô\é¬X\í—!\Íañ\Â\'\Íw±1¿O.\ÙI\â','',0,'?'),(_binary '¼)³¬\äño®€\Ãl“','wp-content/plugins/ti-woocommerce-wishlist/integrations/cleantalk-spam-protect.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ð\É]›°wH´:y.N:ø',_binary '<*\"_\ã¼¡c\â!U\â\É:>\n	)\ä7©º\ruüžpa’«','',0,'?'),(_binary 'Á¼Ã—¦šx´\ÂOm\ß','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/AbstractCartRoute.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H&\ÙÊ—\Ï\éd³±\Ê\Ý',_binary 'YÃ³Ä œ]B>AþD’‚eÈ›\Ün\ï¿m~‹¸rF(¼\än','',0,'?'),(_binary '\ÐSˆÂ£\î!½ž\å\æ\Éi\æ1','wp-content/plugins/nextend-facebook-connect/admin/admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oBý_ÀG\á\Zp\Þ^¢¼',_binary '\Z!5\ÞWvH­H\Ï\ïM”ŠZ‚‚ÁŠ#pH–E©\ÚøZi³','',0,'?'),(_binary '\Ò\Å0p)Š™š\æ\á:ø','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/pagination/test/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘ÀF\Ê0„˜	\ÔG3/o³\Ú',_binary 'YÿÑ²\ÌH{(#–k Ö¯8ÿ	Rt\ÝO‘É¥^2','',0,'?'),(_binary 'Õ’\ç\ÞdÙó»\"\êSI','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-low-in-stock.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†»3É¹rÇ·‘\0\ÜÌ\"',_binary 'ºf¦œTôðŽ\Éo¡û0\È7EQ	g³\"aq¼SÄ¯','',0,'?'),(_binary '\×C…#Ð˜|?{\Z.žaŠ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-name/test/__snapshots__/index.js.snap',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\ÉxI›ôs€!×Ÿh¦',_binary '­\"\"¿4PšgTF.˜û-ˆ\Ù)8õ-\Îb*“dz~ö\ä','',0,'?'),(_binary '\×ô•aO\áZ÷\rû‡\ï^','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/dist/css/component-settings-reports/styles.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'º(\æ\nô\éonSòt*‰9\é',_binary 'F¤^\Ò|™ˆRõ\â+×ƒöUG/\0m·\Ð0\Çõ0«\Ü','',0,'?'),(_binary '\Ü\Ê]®\Ð`HJ\Zî»–˜«‹','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘öØ¥øgƒ \î\ç\é]b\â',_binary 'gD>IB9\é·¯šLI\Ó	*œ\Â\îð1\Ûó16Ž\Ù0\îC|','',0,'?'),(_binary '\ÝOÚ¾|–µe“GZP','wp-content/plugins/nextend-facebook-connect/admin/images/facebook/light.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®\æÁ\á\nù*Å®.m\Ó\nf',_binary 'Œ”e5¸\Ùõ\ÔNJ¾\ÕW¯ä¥¦6U\Õÿ|Œg©\í‡+','',0,'?'),(_binary 'Þ’\Âgø\ÉõKþOF„-','wp-content/plugins/woocommerce-multilingual/templates/store-urls/translation-statuses.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…“\ä\ä\×úý}µ\Þv¸:r',_binary 'i·£\ÍVI } ¸‡)þaQ”ò‚ŒWa†0Jûºª','',0,'?'),(_binary '\ß-®—\æ]\åòJ–ã›\Ý','wp-content/themes/twentytwentytwo/assets/images/bird-on-black.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'øn\Ö(\é¢\ÎÑ‰\ì›ô~›',_binary '0Ðn‡˜Dhu¯\æ N\íOÿ=´\æ\"C47}˜³–G','',0,'?'),(_binary '\à\Ð:Ü³ªŒ½gž','wp-content/plugins/woocommerce/templates/single-product/add-to-cart/grouped.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬\Ò-¤—O\å\íhšs:l•P5',_binary '¡cL[þ\á\0€ŠQ*^EŸ\ßÚ¾(q~oñow.£¨Òÿ','',0,'?'),(_binary 'ú/Ÿ´\ìC+½Æ¥\ìÿ','wp-content/themes/flatsome/woocommerce/content-single-product-custom.php',0,_binary 'õ¨¢\"¯ù*“\àQ\Ö\åõ®\ã',_binary 'õ¨¢\"¯ù*“\àQ\Ö\åõ®\ã',_binary '-\Ý#ý\\\áK·Ç‚+N=€X>=XÿòóUX¹=qcW\ìG¡','',0,'?'),(_binary 'û÷\Þçª’·u£¡\rZJW+','wp-content/plugins/wordfence/images/help.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$N\Çü;\'ý‡M\Ï\Ïùò Y',_binary '–\ï\é\Z²7\0\Ù\é¤rÂ€/i£\Òz;ki,›=L›Z¿g™™','',0,'?'),(_binary 'ü)§£™Št\r\î,½JÚ¼','wp-admin/options-permalink.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']ù30bNÒ±¨±x\ÒI±C',_binary 'Ž\àÁŒþ	H4ù\ç\ÍeýŽ\år\î\Û2\ïñ½ðP\á7','',0,'?'),(_binary 'A\ÒÇ¾ZÍ›¥¨¥a','wp-content/plugins/products-compare-for-woocommerce/style_templates/grey-gradient/grey-gradient.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Å¾T\á\ä>d©h\"¨cR',_binary 'ø\éŸú\Ã$\í\Ä\Ó¯\ÄÅ†«\'~U\í%õu-3\Ð\0\î*','',0,'?'),(_binary '\n²T´/\ÐT@²¹#I]ÿ.','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/heading-toolbar/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ý,¢•x¹1,\Ô,6÷Ÿ¸',_binary ';\Ú\Å\ß%\ç¯WS½\n\äp¡\Z†[Ø J½¹R«\ë\ÑcÛ·¬','',0,'?'),(_binary 'b–nN{¹§\Ôs©ùx','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-items-block/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¢ªuqŸ\Þ[p@ó‰h\Â3\Èy',_binary ':¡–€\é3që·®Ë¹ô½ù‹r¼Ñˆ[-…lm[L\É\Ð\'','',0,'?'),(_binary ';0µ“ª\Ê\â\Ës’›','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/maps/icon-256.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D½\Ì\0Ð¤\Ó|¿ƒü\Û/¿û',_binary 'Àžp£½Ó²IºÛ³P\ì‹\Ø9À&/U;\"\îÄ™\È#+','',0,'?'),(_binary 'ö?Ç„£ù€\ë:\n\Þ\ÖX','wp-includes/customize/class-wp-customize-theme-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w§%\åjw\0\Ö\Ö*’Á\ä',_binary 'jth%-!Å òQŽ\Ò\ÅJY\Ö\Z\æÏ†½\æßƒöz€xB¾','',0,'?'),(_binary '˜P\í¶Ü—›‡ÿ{s\Âc','wp-content/plugins/nextend-facebook-connect/admin/EditUser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ø‹Œ;W;¿s;y\à',_binary '\nñ™l\Æ{>+7È¡\àðr_ —Ñ¸ d0l–ß­\Zý','',0,'?'),(_binary '\Z´ð) ”%iyƒÎ´','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}+#z,¯\èe\ßrEJ-',_binary 'sfº\Üq@µ\Ú8¼!yW¥&Ú”A\È+/\ÅuY•†œ44œG','',0,'?'),(_binary '~$Y6Ì¶º\Z„ˆs¦8','wp-content/plugins/woocommerce/assets/client/admin/explat/index.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æ\á\ìH·w§\n½‰$ %',_binary 'kÁ>\ÙC.ê÷½\É#\Ùx,#a\î0-´8¡·Ib|\Ï','',0,'?'),(_binary ';)\Ì\çÿÿ›3‹…ME\Ï','wp-content/plugins/woocommerce/assets/images/onboarding/mercadopago.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ç§\à™šc\ßä»÷oa',_binary '\å\êŸMŽ¬NAR\nk°]\Ê?÷`\Æ|¤\ÔÆ\ç¬#','',0,'?'),(_binary 'sio\"þý­‘M‡3F\\','wp-content/themes/flatsome/inc/admin/admin-notice.php',0,_binary '9\ÄF6µ’\áa+ú\Ö/%',_binary '9\ÄF6µ’\áa+ú\Ö/%',_binary 'L\nÃ²€\È £_¹Kœ	Ñ¯AO\ìd(U™½>\à¯\ãm‡','',0,'?'),(_binary '%Ë›ü\Î\Ôÿ™H=a\ì','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/panel/sub-tabs-nav.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ôr\îjfH/\ÞÛ‰¶\Ö~§',_binary 'B¯`¯ˆž\Ü¬CcØƒ®[¾\ÊÍ¬°\æu\Ê5rU\ì^','',0,'?'),(_binary ',\é~-’j™¯fDZ[‘','wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/styles/for-menu/actions.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„\î\à¼\ßz¸ª˜§\Ë]‡\Î',_binary 'fÈ²u­|/¿3tœb«NNC¬\æ\ÓÇ²Á\Óÿ.>\æŠ','',0,'?'),(_binary '3•dý¤ƒ\âyj\ä\é\ß\ÎóV','wp-content/plugins/wordfence/lib/menu_firewall_blocking.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@O<\Ô.<)‚$\Ã÷Þ“Á´',_binary '\ZÞ›pŠÿ	†œ\ä>¦\áB*\'¼\ã^À\Ò–ŒT\Õ','',0,'?'),(_binary '<U\Æv·b\å=D\Û;¢Ù©','wp-content/plugins/woocommerce/assets/images/onboarding/mollie.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\'\'%I·û\Æ\r³sAŒW',_binary 'k{¾[™\Íú¢d%\ê\0õŸc`£Š9&Wz‹-ÿ˜¶','',0,'?'),(_binary 'J	Ô¢\Èx¹½#f§X\'\î','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-coupon-form/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'da¬‰²ˆ\Ý\Ìy7qw\ßZ',_binary '(?µ+F)\Ë\ê\ÏM´Àzu<\"’d\æ\×ø¢e7\Ì\ë$HO/µ','',0,'?'),(_binary 'Rr\èr¥(\ÞÈŸ\ÇÀ\ãP³','wp-includes/blocks/media-text/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k’\Ù\×&¹*„¦ýó6¾0',_binary 'ªd\â–zõ¥\äËú£Gt¯1®(‘2o–ú)F³–','',0,'?'),(_binary 'R”Ìˆ-}s’l£\ì\î\Zy','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-ajax.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\ÞJ\ã:²oÔš\ÎZ\Þ|x‹',_binary '’3Vz›‡IvVƒ+mO¼\ß|¨²Ô£þ\Ê@x¨7N\ì','',0,'?'),(_binary 'S&ÿ¥Q\'$Œ‹ª¶ …','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/component-frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„D|öªû\ZS\Î<¢k³ ´',_binary 'JGŒ\ì=\ÖÍ¦ºx1|<ön7ÿ,Hm€\Ã U;\â,>’\Þ','',0,'?'),(_binary 'Vf6A“­]0\é\î\"³óƒ','wp-content/plugins/woocommerce/assets/css/reports-print.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Üj\'ú\é3²\Ì\nÀ*ÀK',_binary '•}6_e\çð«3¥\Ì%±(d”ª…†,–X\ãM¸ñ\É=z','',0,'?'),(_binary 'Wl…\Øy:\Ï\0Vn`„d\0–','wp-includes/js/tinymce/plugins/wpview/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½&»‚¹\rbŸ´\Ã!˜†\ã',_binary ',’`i tò\Ô\ÝÚŽºTm›\êl\äòk\áú—s¤\r=','',0,'?'),(_binary 'Y¹RÃˆv\Ì\êHU4','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/ru.js',0,_binary '¯F#\×;ýÿ•Kð)§e¨ˆ',_binary '¯F#\×;ýÿ•Kð)§e¨ˆ',_binary '\Ú(„rXa­¯,„\Î\îŒ\å\Ãk+€™@¹LµˆŸ<˜Œ¾','',0,'?'),(_binary '[Y[“»ój–¿Çˆ\çGô','wp-includes/blocks/search/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}©kI—«K\Ú–\Ë\ä\Ïpó',_binary 'æ¡vq¯Ruò#Ç‘õ\Z\Æã« ûžbJ²Ÿ6)¥¥\0p_','',0,'?'),(_binary 'fA{^S=ƒd¤ò\Óž•','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XU+4]\é\n‘j‹¥2`¯ ',_binary 's)Wg\ë>‹\ß\0¨»«¾vw”@“\Þ¦C‚±e¨Ñ†','',0,'?'),(_binary 'g(S]0_YòV6¯L','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/AllProducts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ý¶¢7ŒI[j×¤yZ‹]\Û',_binary 'ðP‚3¸<÷-m!/\'Q=´e6U}±r\Ú†Y“¬','',0,'?'),(_binary 'h8šÊ¯n¥”-‚\Ý	*','wp-includes/blocks/buttons/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I.\Ä\ì\Ñ\êW29D#p£’²',_binary '˜Oˆ\í\éeK¥\Ä\ï\Æ)=ö]H…žmH»õe@1H1','',0,'?'),(_binary 's\ã\Å\àÈŽ8\Ç/Q±y','wp-content/plugins/nextend-facebook-connect/providers/facebook/admin/settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\íÿ+uFP¤ül4 K€\Ò',_binary '\\4ðù¤¦›8ñ‘yŠoº¡÷\Ú\Ï\ãÁs‚±}T|0\Ô[b','',0,'?'),(_binary 't„\ÐnfÔ€>\ç\Ò\'sM','wp-content/plugins/ti-woocommerce-wishlist/integrations/duracelltomi-google-tag-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';CU\È±K3*ð6vóµ',_binary 'V‹0!?\íw–\Ú\ä>\'±žRk‘j×­«—\Ü\ë—','',0,'?'),(_binary 'vŸˆ\Ùó!,.z‰\Éü.f','wp-content/plugins/woocommerce/lib/packages/League/Container/Exception/NotFoundException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!Hj\â#\àž+ü»³',_binary '÷¾OK\æòúš¾wqu‰w!„T«û3Kú¦Ô¨\à ºK','',0,'?'),(_binary 'z¬\\¼\Þ:yô¢T4¬\ÚR','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-help-desk.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'óÆˆ‹;Nù,*=0\ã\n\Ô\n“',_binary '\â.´°A7ý\0\éY0\Ð\ÝÝ“c\ØMy(\Ñ6_[\î\"','',0,'?'),(_binary '8°ñM¡¶’\îò\â®-','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/filters/exclude-draft-status-from-analytics.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KX\Þ7S\r\æ±ù~ðq¤',_binary 'D\Â(\ä¡En²\ÄIÀ®ñû\îf@ñ‘~A~\ç\ï ¤','',0,'?'),(_binary '†bãº£\î+N\Í','wp-content/plugins/woocommerce/packages/woocommerce-blocks/templates/emails/customer-new-account-blocks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µd^ù3½\Z .\ê\ï‹9Jˆ',_binary '_S\ÞSY§[\ïeý÷þ5‰;+<\ÕWsª0Ë—L\é5û\Å','',0,'?'),(_binary 'ˆ9\ËŽ>\Ñ\×\Ú7','wp-includes/blocks/site-logo/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ò\Õ\Òrbz—2§ZZ\Ï\í\Ú\ÔO',_binary '±onP7\ÅkÔ‘¯kh\ãá®´|@KRœ{AC\ÐÛ­*·','',0,'?'),(_binary '‰;©Mô\ÏRƒR\åukš','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/reviews-by-category/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N÷\×DlýR=•[iƒšs',_binary ']\\¯Aä”ºXq»\ê,M¬	N»»‡&h=•ÁRÛ£','',0,'?'),(_binary 'Œ,4#¢…(\ç#','wp-signup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Zo[;‰¤‹\0âºŸ-Œw/',_binary '\"\Öd\ÆÞ‹\Å\"v¨K;Þ¶ \Ýñ\Ôó®…MPÍ ¡\Å','',0,'?'),(_binary 'Žp®fz¿\ç\Ý\ï<-Šma¸','wp-content/themes/flatsome/inc/admin/options/header/img/header-simple-dark.svg',0,_binary 'k\î\×\íÈ¨\ÌTÏ…-!¸-\ì‹',_binary 'k\î\×\íÈ¨\ÌTÏ…-!¸-\ì‹',_binary '¾Ž”›.‰·ÂŽX\Ì\Â:@\ë\Ò]øA\êŸ.‚•R\Ú','',0,'?'),(_binary '“Y0ŒlnÚªuO\Ò<1','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-payment-method-cheque.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/J\×Â‡´F\Ôd¦×šMg',_binary 'Rseò\Î\âV\ßQ\ÄWX(8ù½—_\0T\ÚuTÌœ´\ât2f','',0,'?'),(_binary 'œ)\ÍPe\Õ\îD\î£øˆ\È s','wp-includes/blocks/group/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Iþ\Û\Ö\ßõW\Ó@\ÖGB!?',_binary '½YTl$fœµ\áu|µO\è°ýbÙ…¦ ù#ë†Š)¬«\ï','',0,'?'),(_binary 'Ÿ§Ë±“\ÐuÝ½Ÿ	œþ','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-text.php',0,_binary '	Xy\ÅnCN.ò—õ$6€…',_binary '	Xy\ÅnCN.ò—õ$6€…',_binary '\á #HAv\ã‚ÿ—Ò\\§G§ƒí±«ô\è”ª%¯SeŸ','',0,'?'),(_binary '¤\Ã,RD\àø0£ô#*˜','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-payment-method-cod.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm¬2ót< W4~m\Ûa\æ\×',_binary 'T,>\ÂV+À,$™·\ä0MýMù\ÖÀ†%ƒ\Û”Ý»š','',0,'?'),(_binary '¤\É\×{Î“\äO#“”I','wp-content/plugins/woocommerce/assets/js/jquery-serializejson/jquery.serializejson.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\ì£þ\Ð3° %1\î3ò',_binary 'V’ œ†¬¥\Ý\×h\ÐGª\r\Z\ZP3¥k\Z.lNˆ®o7ˆ','',0,'?'),(_binary '¬\'m¼V¬ª\æw&ÿ','wp-content/plugins/woocommerce-currency-switcher/css/front.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜;Ô¨x\Ñ\ãnÖ:€ó\Ø;',_binary 'Rˆ\é¢\år	]ÿmW(+„\Õš*\Ø2§«\åW\ëGö','',0,'?'),(_binary '·i-y\Çûup“\0J:\Ñ','wp-content/plugins/woocommerce-multilingual/classes/User/Store/Store.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£py>)\à\é}.H´\Ö%¾k',_binary 'ÿE!š{\Êh™õ\'È¶D\Ói ¡¿gª0i¾\nXO¥Qi¾©','',0,'?'),(_binary '¹\åt7\ß5%gŽ™Ç®\n<','wp-content/themes/flatsome/inc/admin/kirki/modules/css-vars/class-kirki-modules-css-vars.php',0,_binary 'ªW±>AÒˆ£i0Mº',_binary 'ªW±>AÒˆ£i0Mº',_binary 'wC\ã\ç^+Ã‚O‡.Š/ú¦\Ü3:|\ç×·‘S²','',0,'?'),(_binary '¿A\Ö\×z›µ.•)3\ë\Ò','wp-content/plugins/yith-woocommerce-wishlist/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}`À@S\n\ÉÖ‚\0…*£',_binary 'š\åx©”ž¥\ÐY”5ƒ\Ï~Â»\ä¬6¨6\Æ\ê_û	>','',0,'?'),(_binary 'Ç–š‰d\Ã!s<X§\ä™Ð¯','wp-content/plugins/wordfence/modules/login-security/classes/model/settings/wpoptions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì*•1{,Ë¾òþ–Ê‚œ\Î',_binary '<•G²\Æ\ë$µU+ök\ÅL>\0h—ahB¦¬S©-\Û','',0,'?'),(_binary '\Ë6U\Ê¶aþÊ¹•¬','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-items.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô\æ\ÐØ¤\ÒÌº\â\Ì\Ó\'À·–',_binary '\Ê9¬Wò\àý£ùÓ¸oD\ã“,#“FÒ¨±\ÇÐŸm','',0,'?'),(_binary '\Ô óð–\î•SÛ“Áwù\\','wp-content/plugins/woocommerce-multilingual/res/css/wcml-pointers.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/P\ÄüO\Ç\Í_\Øi\ì†—ž',_binary 'QS\" ®uµC¦ý²HY˜³‹½\í\×\å\á%\ÃxKjq\Zs','',0,'?'),(_binary 'Û‘Ý€m\ë9¢˜l©^ŸH\ß','wp-content/plugins/wordfence/images/logos/shield-premium.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ú\Ã\r­-È­\nQ—ó™V‹',_binary '?mUL¤\å\éü-l¡‘ZOI›\Ò,XS”M×­\ïÞ-‰','',0,'?'),(_binary 'ì©¯\Î\Îb¡/³y;\Îf','wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-video.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tl\ëcvˆ°pJÞ€&“',_binary '˜\Ý,GK\Ë\×f\Ê\Íü\Ðo•aø«t}ß†#Z³\ìs§v£\'­','',0,'?'),(_binary 'ð÷*æ²«žQó‡ÿ¥N','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-textarea.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oVˆ7PR~×¬®\È\Òai',_binary 'b\à\Z§‡“¦\Îs#:\í*\Ø\\û“Š\'i@€±³qa','',0,'?'),(_binary 'ò\ÒQ’D¶(\âi\íX»\ã','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-report-top-sellers-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ç¥4\ècÂ¨ôO^x\Íñ£}š',_binary '´)C\É\ç1%ý4\ë½\ÌÆ¤\'`{\ÙüŒ€\n»28Œ\\','',0,'?'),(_binary 'ø\ÎÚ”¢µ\"\Õ\ÔL€v','wp-content/themes/flatsome/woocommerce/layouts/category-right-sidebar.php',0,_binary 'C™h¢™k\"§ý³S9¡\ë\è',_binary 'C™h¢™k\"§ý³S9¡\ë\è',_binary '“\ÏóÜ™üh\Â5D^-~<A•wÂŽm¶eýó\Ë5YU','',0,'?'),(_binary 'û\âŠ\ì6	ùL·\é×•»Ž\Î','wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-twenty-one.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{O[°\Ë9‡\Ä\æ~L\æv£',_binary 'û½Ý€\ÇY(À¬÷\â\Ò*}˜Ÿ®†\Ì\ã’¬\ÈN‘a','',0,'?'),(_binary '\Øm^Œ\"ÿ†p\Í','wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.structure.min.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»)/4;\ß$Û”\åÞ¬vi\\',_binary 'Ÿn\ä\èøÁ\ài\Ùë—…µNµvX¥7«Y]´…¼°D','',0,'?'),(_binary '—\\\Û{¨\Ê\Û\ëÔ™óUV\Ù','wp-includes/blocks/navigation-link/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô´\îp™Yƒ~b€DqL',_binary '\ÍõC*›¶ö—´­¼l)\èFV\â^b”v¹_Jx\Z[','',0,'?'),(_binary 'y7¯\ÐMA\ä@ š…','wp-includes/widgets/class-wp-widget-rss.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼_!šuG(R-š›TrÙ¡',_binary 'µd\înrz/‡·:dj\0ü¶\'<£oÍ’4Bõ\Õ:¡','',0,'?'),(_binary '\rYU\îôÍœy\ï°ù Dn','wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-simple-slider.php',0,_binary '¸\'4\Õ&¸\Ø6Pt*\Ôþ',_binary '¸\'4\Õ&¸\Ø6Pt*\Ôþ',_binary 'Oz‚(Œøó¢\r™\Ã’²d”Š\éc\ÜgXmlýÑ©','',0,'?'),(_binary '\êW\nKô¿>OX	‡vZ','wp-content/plugins/nextend-facebook-connect/providers/apple/apple.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì«C·T*\Ó[\ÅHC#zn',_binary '›cg†ÛŸ\Íø]&\ÞÏ¢B¢iz´\É+Ò¥k}UËª','',0,'?'),(_binary '\àÇx¢rµ§×ˆJº‹¯','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/test/use-checkout-submit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H¹Þ¡\ì\'Áô$6,ø',_binary 'Š\Ø\\i|\Éc¨Í¥\Ù|½b\Â-\ÌTDžLÝ°ÖŸw6\Ø','',0,'?'),(_binary 'š_)0d|‰6_„;n','wp-includes/js/dist/rich-text.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u5\ä“Üœ\Öbt`?\Ò\Ç',_binary '\Ý8q\êX\à\nõ«€/\ã\ì\ßiF¸‚\ß\çò\ëÀ3>À','',0,'?'),(_binary '\Z  \Ä}(Ïº¼L…@\n`','wp-content/plugins/woocommerce/includes/class-wc-order-factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q&\Êz\î9\Ñ?Ÿ@\Úõ/…p',_binary 'ût5\î[\Ø&\ág•kÇ€‡T\Æ.aJ\0¤\nFkš\É','',0,'?'),(_binary '0\ÛB3”ð\ÞvD;/	','wp-content/plugins/woocommerce-multilingual/classes/multi-currency/exchange-rate-services/CurrencyLayer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›CMMñ\êH\Ï\0—\Ëv',_binary '\Ã}?ú\êD\riò\â\ß[¨œuÎšƒ;qq\âO:ò6','',0,'?'),(_binary '!\í–ûKMO2.\Æ\Å','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/css/abstracts/_colors.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«\èwy\"–\ëO(<}ž„\Ü\É',_binary '\å8E\Ðôx˜hBŽcM”\ÈÄ¨Zg\ë\à\Âb‘ž˜ù\é­','',0,'?'),(_binary '=Ý„–r}[®j€\ç3Óœ','wp-content/themes/flatsome/inc/admin/kirki/modules/post-meta/customize-preview.js',0,_binary '©f-cöL“—­\Íõ\ÜY+',_binary '©f-cöL“—­\Íõ\ÜY+',_binary '¢ J\\˜Ï 8\r^S¸ü¶›v\ä\Ô\ÏÐ‰¡r9\0F®\r','',0,'?'),(_binary '=ž	„®\\vV£«‰­\Çx','wp-includes/blocks/rss/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e½- \nœØ«Yk\Ë{•z',_binary ' 6/}mz\'h\æ¡S´’4ñ\ã\Õ^«8|,mƒ','',0,'?'),(_binary '?[&¢_ l«Áù¯*','wp-content/plugins/nextend-facebook-connect/admin/images/test-needed.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¢»IÄƒ<ô%iB	«øph',_binary '(Ÿ«¿M„PH‹¡1|‡£ð½i¤o+\ãp¯\Ûo\îƒX\Ç','',0,'?'),(_binary 'JX÷WŠúP+\n\åL¨Fo','wp-content/themes/flatsome/inc/shortcodes/ux_countdown/ux-countdown.js',0,_binary '»Iò9hŸ^™c*œ9R†\é',_binary '»Iò9hŸ^™c*œ9R†\é',_binary 'hkFõ\î\Ì\ë$Oþ\Õ\Òl-\Ò*%_<:Ž%÷u\Ù\ß\ël','',0,'?'),(_binary '\\ŒwcL³|¬3b\ë%†','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/blocks-registry/types.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y®R|\Æô;\éºK\Ú\'\ë\éU',_binary 'òY›nüT“Œc\á¡“bmD\"wÎž´41\Øi{Öµ3','',0,'?'),(_binary 'k¹\èk\0A7¨\â¬%M\ßJ','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ²ŸŒ\0fHpg!N¡O\Ý\'',_binary 'ß“¥£2nª÷s¾?­A\Ë\×úš£¨µN\nÿg;','',0,'?'),(_binary 'mS\ä\Ðe’\Ê¹y¶ÁZ¼\Ü','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#[““1ŸE=\è\'?\ç\ÏÂ½',_binary '±n=ü}J\ÇqYð¬9)f–M$&¶R!¶w\î','',0,'?'),(_binary 't\Ä$¯?ƒG%©™CI<\É','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/jetpack_autoload_psr4.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&§\r•s.‚Q;H÷þª*',_binary '·½\çˆW1ˆ1ò\Ò[NkŸ0÷3Ë™º\ß\în0^Ï©\ï','',0,'?'),(_binary 'u¡8±CeC\ÛJ\È\r','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/collections/test/use-collection.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³¢Fi¡°¨š¨…»È¤\\',_binary '_	º¥\êÑ¨;\Ñ	¯$‘g¤zu4 \Ï\ç˜\î\Òw4\Ø','',0,'?'),(_binary '€¢<ùi\Î\Â\å\ÈQ\0','wp-includes/js/dist/reusable-blocks.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œ–‘\Ç\Þy\ÄA\\‡\ç Sð',_binary '¡w”\Îñ,\êª\è}³S\Ä@\å´{\"G½\0<','',0,'?'),(_binary '\ZŸÿ¤ºK	(\\\Ú\ç','wp-content/plugins/woocommerce-multilingual/classes/privacy/class-wcml-privacy-content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\Þ@ˆ½¬\Äø;Ù§\Æ\Z‚',_binary ':Y\ÕF{Œ\ÂÎ§&³]‰…F\ä\Ét%$\Ç\Ù÷s!\Z7üs','',0,'?'),(_binary 'k¡›i=N\áF…´SB|','wp-content/plugins/woocommerce/assets/client/admin/number/index.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÅuÛ¾ô\Ì5\Ã\"‘\ÇÈ¼',_binary '3\n²ª¾ªrr.vq+ÿë¶Œ{(´\æ@\æŽf\\b\Ú','',0,'?'),(_binary '‚u‰˜¡YMcûi\ê\Ô','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-discount/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Þ*ó¼‚q\Ý\Ç\î¶&A —,',_binary ',òe+¢(§T\Ö\ÞFØ¾)º\äŠb-Ö®¾ÅƒÌ…,¬~','',0,'?'),(_binary 'ˆ`&%eF•gÀœ”ó”d','wp-content/plugins/wordfence/models/block/wfBlock.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ô=ôò\îL@\ÏÊAû\Æ',_binary '\n\ÕS‹Y>\îlð*Ï¸C@z&+ z­dAW‘¬£w¤\n\r','',0,'?'),(_binary '›NPŒE)\Ãô\Æ\á\ìµ','wp-content/plugins/woocommerce-multilingual/classes/User/Store/Strategy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H¤\Ô\Õh,V*\r2ô\á~ ',_binary '@\ÉC\ïCIòÿ\ê,?õ\Õ\\ eo\Ä\Öwu*\rB€¦\Ú\è¢\Ý\í','',0,'?'),(_binary '§\ï%\ÄQ\Ôi\Úd¢jD¾\Ç.','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/LaunchChecklist.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\ZÁU\è\Ü?Á;17(}T®\æ',_binary '\ïÌ¤“Ÿ\Õd\ßûx÷\Å\á\Õb%Éœ\Ñ/\×4üw!c‘\í\ÂZ','',0,'?'),(_binary '¨\"¦sybNl-¼\×”','wp-includes/blocks/preformatted/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å¼)1n8.R‡œ\í¨*',_binary 'vš[\Ë\â7•/N@3)}ùo£x\í©ý¸\ìt\Ø7§Nk‚ ','',0,'?'),(_binary '©:8\ÏIaö¹Ã¸l\Õm','wp-admin/includes/class-ftp-pure.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T&¨}\Ø\\3\æœ\äJ¸‘ \0',_binary '¥\nS\ÄÀ{U\È\ãžCdz$¨ü”øy\Âý\ï\Éa|8ð½[','',0,'?'),(_binary '­[ÿ÷öø•õ\Âô\ßR','wp-content/themes/twentynineteen/template-parts/post/author-bio.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾\ÛÐ‹À\ßE\è\\\ä-D´Ñ·',_binary '2\Í ¸\Ä÷Äƒ\á\Ð\ß`\É|\á\ÑK 6<#:G×¯\Þs','',0,'?'),(_binary '¯“f\\,¤t_üúöû0','wp-content/themes/twentytwentytwo/inc/patterns/footer-default.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\àÒ­[ö\Â\éú*xžuw¯',_binary '\Énô¶%6‘ºO­²(¿ë§‡­P™-cŸ¾‡Ï‡¶J','',0,'?'),(_binary '²þ£²KqM\Ã\ä{ƒ±»','wp-admin/css/dashboard.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(Ÿ*Ì£\Ò\ß:\Ãÿ˜ž',_binary 'ú}o¶~y¤ð¯\É{\Ì¸·e5^\'pø\ÂV·5','',0,'?'),(_binary '·\ÆsÝœ“Ãž3‡Œ\Ïôþ\×','wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha-threshold.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹#\æ\ï·7Ih›!\Î\Æ\×_\Ã',_binary '\ãÁyÛ¹š¾ûð–À»¼\Í«!\è¬H\àò\à­HGH','',0,'?'),(_binary 'ºñ°—\ïÁY,Aœ`\ß\n','wp-content/themes/flatsome/inc/admin/customizer/customizer-reset.php',0,_binary '&ŽšÂL“˜öf\Ù~\ÅFü',_binary '&ŽšÂL“˜öf\Ù~\ÅFü',_binary 'À½:pôb·q\ÚH3¢Vu<Ì³,)òˆ}—‹g`mK','',0,'?'),(_binary 'º{xZ\Æcù\"†hb‘?\Ê','wp-includes/js/dist/dom.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ä\ÆL¾å¡º\È\Ø\Ñ\é*µ·',_binary '\Z¦\Ò;lc¿¦uÆš\ã\ÔY‰>:\ÏjùB\Çq\è\Ê<•','',0,'?'),(_binary 'ÀdF\Õ	•ƒœXŸŸ$a—','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@½K\Ì¢½{~tbYb',_binary '\áš\n\ï…Èž…\Î]‚\Ør¹¢6	ÃšZ{TVc.€Gv‡~','',0,'?'),(_binary '\ÂTB›¤O>\ßv2\í\î}Ea','wp-includes/SimplePie/Locator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4ðÚ–_ð\ÛÀ—€}\î\Ã3\â',_binary '\á³#öL&$FÎªK#\Ò\"¨`Ôˆ†”MC›Wd','',0,'?'),(_binary 'È’\"N=‘L\â°.U','wp-includes/blocks/more/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±5B:\Ú\Z.+¼»=²w',_binary 'H4Îº\Ð	\Ö—-½U¯¡y—eõ=›ù\é\è\ÕøT\\','',0,'?'),(_binary '\Ë$\ÏFwþˆ\ZXGW\ìý.~','wp-content/plugins/woocommerce/legacy/css/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œ«Y02Ž*i\ïK¿,]\î±',_binary '\×PÅ„² L\ï]Yj‹_ß¿š–~ù÷*W‚}\çŒ\ï\á†','',0,'?'),(_binary 'Íš}O´ý)þ\ÍQ\'\é].\ã','wp-content/plugins/yith-woocommerce-compare/assets/images/socials/tumblr.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ü¼”!ýe!\Üö\ßp!<\Ñ',_binary '¼ò/;\éDJ¥8¸Iƒ‹÷\çŽuA 3\íDüWQ°u','',0,'?'),(_binary '\Ò\ÄÏ\é\Ó6=™‚Ì•','wp-includes/blocks/post-excerpt/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\ä\á¤)\0Ð¬ñš/o',_binary 'F·+hš•\áªp³”a\ÜqÃ‰\ÈFb\ÂA\Ü3i÷<\Â\Ö','',0,'?'),(_binary '\à\ãW\ÐMF`3\Ì\Ü$÷\æ','wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2¸\ÂÀCECZ6³›¬e¸',_binary '\\W³÷.Â£\Ö\ä\ï;\\	®Kú±[\ÉzHEIª8ù€A','',0,'?'),(_binary '\íº-Ð¤Q€1Ð¦\r ¬','wp-content/themes/twentynineteen/sass/variables-site/_variables-site.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"c/Œý0±ÝŠý¥õ',_binary 'œ,%d:?\ã-®Ç¯Mó!k—¹\ÂgF6\ÜÝ±¡€\ëR©lj','',0,'?'),(_binary 'óü@+\é#:\â?H@\éQw','wp-content/plugins/wordfence/js/Chart.bundle.min.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ºñó5]”Šd\îÀ ûd€f\Ý',_binary '¹\Ö>\Å\á`‰ú½´°NN­`\ëN\"K ÓžcŸkG<;','',0,'?'),(_binary 'ö\Þ*\Ê7\r\ç\æ?\á¶ý','wp-includes/class-requests.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=n\ÖL°\áõjdBS;S?',_binary 'D;Uº\\\íQ&¼G¡ñ±U¼‚Îº\Þ\r²üº¬p-','',0,'?'),(_binary 'ýiq\Úö~‹\Þ6\ê\Û¯','wp-content/themes/flatsome/inc/functions/function-conditionals.php',0,_binary 'Lª=¡\ÕL\ÊY\É4,‡¦r­',_binary 'Lª=¡\ÕL\ÊY\É4,‡¦r­',_binary 'ðù0W\nåµ<5ªNý­}\Õ‹6õbÀ\ÞA½Ãµ…\Ã','',0,'?'),(_binary '\rf°,´?›ˆVŽJG','wp-content/plugins/yith-woocommerce-compare/assets/images/02.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿ\ÛúBŒ\ã­\0—*°\Öto',_binary '˜P<2\×fa\ÌTñG¹Ë¼µ(—\n¸Æ´\Ø\Î\"S\0','',0,'?'),(_binary '\Õj/‘\ÎF@Wý©~\n”','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hocs/test/with-reviews.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W#‡H7ZBH\Ùz^n<',_binary 'Ñ¨`\É£Züÿv?¡\n‰ð?h	ð¬t®xø\Í\ßM','',0,'?'),(_binary '‡s’\Îy\Ý\ê%#ÁröŽ=','wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“4\Æ~½a\ÙD\ÍñÁ1–ÿ',_binary 'g;\ÞuRy¼r°5ŸL,\ÓIšøÀ@žA\àÙ–l€ý','',0,'?'),(_binary '†Fòm¤\Ç,¬‰(\áV-','wp-content/plugins/woocommerce-multilingual/templates/attribute-translation.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5í–„ý\Ê\Õ7 º\ä¯,n\Ä',_binary '9úŸ®wZ\Íõ\Éþ…\ìB–\Þ%Gœƒ‰_ø6ø\Õ\ÒP\ÊÖ§','',0,'?'),(_binary '´of?\Þ3¨P¿1ò\"\â','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/IetfCtx.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\"Ì¤/O”›\ìY¢·\'',_binary '\Ê8\æe\êT›et\r jœP÷/¥ÀJ\ä†™<^¾rÓ¥z','',0,'?'),(_binary ' §=÷;;¼Q‰²2­±','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/validation/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²dúúòn…¢¯(Õ¹',_binary '#ù\Öf\âq‹\à/‘]9:¿>\ê/¦H8žos0f\åýú\Æ','',0,'?'),(_binary '+GIº]$n–¨o‘R°','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦£œG#ŸÍ»\æ\áÕ¿ªz\Ú\Ã',_binary '\\’ÆŽ\Ä\Ç¤È‹¢%~—6\ë¡\Ï(›¿\çŽ>¿T5ê¯®‰','',0,'?'),(_binary '4„[1ô¯Ë’¼¨–\Â.Ÿ\È','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sku/edit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\Ü\ÙÁ­L!¾~\îÏ¦/EMz',_binary 'pr¾?\'%C\Ý$PD\ÌvÕ…˜Yû\íO±\r\ÍZ\æ','',0,'?'),(_binary '5 \ÓM10‡¨f\Ý?{','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/summary/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ê®xh2ü¾™Œ;oô&\Î}',_binary '?À\"\äo0\ça”Ÿ,\\ù\ÊP\Â}B\Î$øµšAÆ™Añ3','',0,'?'),(_binary 'A\âÙ—Î¬ô!Hg\ì¿\Ý','wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Analytics/Hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UsW [ffAD¸w`*¹¥',_binary '\á\"ø4šfˆ¤ŠÇ¦g\Ïñ\ÅveK\æÁ!KF\ëì˜¶²E','',0,'?'),(_binary 'D\ný³0šòGDz^³\Ï\ï÷','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-terms-block/test/frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(v9Gg™~*Zq',_binary '\ïU\Äó\áz>p¹@r\Ýlœ\á²ô‰’5NMš\ãY’r(/','',0,'?'),(_binary 'F«\ÒeÀû\Ö}\í(·\å¿','wp-includes/js/jquery/ui/dialog.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I`ªa>\Ù\Åúðv\äû\æ',_binary ']€\Ø#Žæ®®•¨·Á·M”ž’õ¶Xcl¨?k‹?\'½','',0,'?'),(_binary 'R\â}A\×Iº˜4O´G™\á','wp-content/plugins/woocommerce/includes/shipping/legacy-free-shipping/class-wc-shipping-legacy-free-shipping.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Óq½ŒL\åk\Ñ\\¶£ûª±',_binary 'dñ¨žF´4\ç\é-\Ó¤Àl[Lm†~žFHð¬\á\Ý','',0,'?'),(_binary 'W°×¾Ž5^©˜l_³_#ÿ','wp-content/themes/twentynineteen/sass/typography/_typography.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#œ¬··J-¼éœ‘o“\'\à\á',_binary '\Ô\Ýnek\âo@‹l\ï_øÿ\Ùky~­YWÅ¢A¯«„','',0,'?'),(_binary 'a¢ð‡™7\Üy%µú\Ü','wp-content/plugins/woocommerce/src/Internal/RestApiUtil.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ï~‡,ñ;—e4\rxƒ\Ü',_binary '‚ƒ}+ƒ&b ¥ûEc{\î´\Ûñ’û•þÖŠYáŠ¶N§š5\ë','',0,'?'),(_binary 'dòš’\Â\Ã\Ë9’ L&','wp-content/plugins/woocommerce/assets/js/admin/network-orders.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Æ\r˜\ãŠ\ãô`¤T\nQl\ä',_binary '\ÝT—Ú´¼¦:Ó¿\Æôò®z+{¶ñ®7³Ô¶‹\ä\ÛO\Óu','',0,'?'),(_binary 'i1üžE~N¬I\âAÍ”\à\Æ','wp-includes/Requests/Cookie/Jar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y6„¥¢˜\ä\Üû—5\ÕD\Õú',_binary 'Ž\Ñ5¶t\Ç\Â\éiÿkt„j3\Ø\ró\àh—vacJ\rˆÁ','',0,'?'),(_binary 'r1ªu7š\à\ÖeñõP>','wp-content/plugins/woocommerce/includes/admin/views/html-notice-wp-php-minimum-requirements.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@N\0™‰»Œµ|‰,–\0',_binary '¬‘\á0\Öª\ß*U\"#°<h\0\Ä.ªÿ™\ìY1ð‘a\É\Ú','',0,'?'),(_binary 'sâ™¼{DR\Ì[¥k\Ù1ûI','wp-content/plugins/wordfence/images/logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¶zF‰\åÞ€W\Õ\rl\á~6',_binary 'V\É{“‰Q9\ïV	±†\æü°·J	X™qˆ†\ÖÚ€c“','',0,'?'),(_binary '€­™Ž÷°k¬t:¥e','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/AbstractTermsRoute.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»6Ÿ÷S\í\Æò\Â\Ús\Å',_binary '\Ë\ÔQ˜ €\ã\àŒeñRÓƒ\ÑR`/r(5wcý‰','',0,'?'),(_binary 'ŠH\Ò<²^+q\ãò†²¿\\','wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-settings-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ýˆû\Ù\ÔRÚ‰„¦a{_\Ý',_binary '7‘¦†±¾3£\Ñ2\å‡R\ç\Ñ\\ïŒq*\î3xÂ»—','',0,'?'),(_binary 'Š\È\àý\×X/÷\Û\0þƒ	','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ø‘¸\ÔiJ‚B!<\0',_binary 'Vº\Ç4“^C\ÃD\Z‘\î\Ü\Ã\ïü’ó\Í\Î;ÁùU‚z','',0,'?'),(_binary 'Œ\È\ã¯}/\ÍpS\Û\Ã\Ç','wp-includes/blocks/page-list/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ój&7 WV„©ž\ÛA\ÙP',_binary 'S0ð#\ácwý\î›~–\Îñ¼\ÃCˆø&\à\ÐŠQ\ÇFƒ','',0,'?'),(_binary 'JÁ£\élª\é»5…±]Z','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/selectWoo.js',0,_binary '9~!Á¢×¥–95ö\Ãt£',_binary '9~!Á¢×¥–95ö\Ãt£',_binary ' B?÷\é\Üi0\âs\æ\Ð\rô+œ\çT\Zª€¼°Q¥\Ñl³e','',0,'?'),(_binary '‘N3M²\n£\ÃS¿\ì0j','wp-includes/js/dist/block-library.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚ÿ4\Ù.Š >:\àGV¬F',_binary 'úPC9UÅ¹Z»‚ƒð–\rC©<ÿ“\Æn|\ë¤yE\Ò*ƒ—','',0,'?'),(_binary '™\Í\â\Ñ&`©Kÿ´ 3\Ëõ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/order-summary-shipping-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{›²rÊ¨ºÀµ¥|\Ù¶',_binary '\ër›©‘\Ûq\âš~\\!\0¦.ú°šƒ±Ñ–\Ë\êYkx\ç$%','',0,'?'),(_binary '¼^r\è\"ò‹Ù\Õ \ß~Å–','wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src/Caching/SimpleStringCache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(úq\á!–Áj¤\Éô¨È–',_binary 'w\ÅXl\r}Ž†\é^\Ä5)¯#tm•ÊŠÀ^1@n\Õ²±\ÓF','',0,'?'),(_binary 'Ê†zÕ†Ã½´Ý¾œ’','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/stock-indicator/attributes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Uÿ‘gfZ\Óº‹\ç¨',_binary '^¢ý°º9”av–1…\â=ŠFò\áZºS¡]K@O\Ö\ï\"','',0,'?'),(_binary '\Ì\ìƒ_\Ê*	V‘Ü¬ÿ£','wp-content/themes/flatsome/inc/admin/options/header/img/header-default-center.svg',0,_binary '¹Ú’·\Öc·Bœ‚Bû¶:G',_binary '¹Ú’·\Öc·Bœ‚Bû¶:G',_binary 'Á_\Î\Z\Ê\Ú,\åKŠSü-\êq=\Ê\Î`fj—úDkm\á','',0,'?'),(_binary '\Ñx(›Å¥Üº„.’õ\ÆÕ‡','wp-includes/class-wp-session-tokens.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9]\ÝK¹UJW¡*¸\ïh†=',_binary '®ð¦Ž\Ð4‚\ZQuA^Ø¡þ\Öjò¬ªŽ$M\å¦\â0\ã\0','',0,'?'),(_binary 'Ô’\×\ã¾AŸ•\×\Ùùr«Ž^','wp-includes/js/wp-custom-header.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹C@$Ò·ƒSEô†#\ä',_binary 'ò\ï\"\èšy÷ä“§À\í}õ¿^H\Þz\È%þ•Z \ÊÑƒ©œ™','',0,'?'),(_binary '\×k\Þi.Š>N-rš?»T','wp-content/plugins/woocommerce-currency-switcher/classes/woocs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Gh‹`â ¦\Ã.@kqŠ\Æ',_binary 'ø\03ž»‡Š•0Bµ²\Ét\ä¥GD_Ž\ë®ñ¹-\á®1','',0,'?'),(_binary '\Úz›\ßa>`<™£!üCþt','wp-includes/css/dist/block-library/reset.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Õ¢µ\Ø\ß\áB¥\ßx÷<EF',_binary '¦*u€?4\Ä¼Yz\\\Íc\ë¹ZGBicTi±\Ñ8p','',0,'?'),(_binary '\Ü^0pðùŠòkúƒ¡M','wp-includes/css/dist/nux/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1®#¾°*¨» ú\Z\ë\Úú',_binary '‰’•\ái\èO5‘–´\Ü\r-O\Z\Zrf&T\äµÀ­ˆ+E','',0,'?'),(_binary '\âŒÎ™-\ç\"…ù›YS6','wp-content/plugins/woocommerce/assets/images/onboarding/g-shopping.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÒGœP¾¸\Öù~þ\Î\ÃG+',_binary 'Gÿôýˆ¬¿tn5zZ\ê\Ìu³¯\ì°t|\Zm ’y','',0,'?'),(_binary '\å…S	¯¶\Æ¡g	N–d','wp-content/plugins/wordfence/modules/login-security/classes/controller/wordfencels.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\á›Vg@’Ý•X43\ÔÐ',_binary ',D\â÷U³}\×>Áõ\Ðq\è\Ö!\Ù5r\Ó)0Gý—\äÁ“\ë','',0,'?'),(_binary '\æ\Ó\Äh]‡‚Cù€²A*','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Ed25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'I\âËžaFtz\\\ÄÇ®',_binary '°•­Ò¬\å\ZADs½’Ž5†¬\íµ?½£‘D\ïA/<€:','',0,'?'),(_binary '\êiôF\Îh<Ž}Þ‹T','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-notices.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x‰r»Ðšólútz!§',_binary '\ÌHºv\î,ôU\Î1EÉŽ$\çÄ­e VRh\0:\'\Ë\îC','',0,'?'),(_binary '\ë0Üš\î¹Z´I·ä¸±N','wp-includes/sodium_compat/src/Core/ChaCha20/Ctx.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›oP/Ÿ¸º\æNC.3\ÃÀ¿',_binary '®IùCKø]™sXñ\0µ\ÞJnªvŠžj2ƒTþ.}hG','',0,'?'),(_binary 'ø3Æ¹Ü•j\çbišÎ¥\î¶','wp-includes/customize/class-wp-customize-nav-menu-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ó@V{R#8º7nón\nš',_binary '»œa¸H¹\Êûª\ÌûMuyw?h:¡B¤\Ê<=’ƒ,##¾','',0,'?'),(_binary 'J8µ\Ê\Ï]k\íl}Y\â','wp-content/plugins/woocommerce-multilingual/inc/currencies/class-wcml-multi-currency-configuration.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ãŠô@*\èg¿\Ñ\ázˆ}a',_binary '#–-#P<«ñ$%€\è‰@\Øsö‡o:\Äø\nn','',0,'?'),(_binary '—¬µ2¤V»ƒJôÜŒ','wp-content/plugins/contact-form-7/includes/special-mail-tags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#U\ç.WYÌ©ø\\œ` i',_binary '¦7)uF\Z\Ä?Í­ñr­\Ò%T\Û*;i\"­\Î\ÌiP0\Æ','',0,'?'),(_binary '\Z6B8û˜cžƒŸ±eg','wp-includes/blocks/shortcode/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4>c\ÇS\×/\"™Ø‡$ˆv',_binary '\Òky\Ë}÷r\ì¨C\Õ\à\"µQ}\ë3‡³i\ï\Ó$>V¬','',0,'?'),(_binary '\'Ø±rºR6Z-\Ü\å’','wp-content/plugins/woocommerce/vendor/symfony/css-selector/XPath/Extension/AbstractExtension.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\ÝüXqý7o/°¥\ê\r2R|',_binary '\ZB\n\î(®Â ULM&\É\ÄJó-n=¦³7_\'CX÷sªõ','',0,'?'),(_binary '5™]4š®³\Ã3x]	\r','wp-content/themes/flatsome/inc/admin/customizer/img/full-width.svg',0,_binary '\Þ&OjtŽp–\Ö(qòB',_binary '\Þ&OjtŽp–\Ö(qòB',_binary '©±û‚ôü\\\\\Çü]p\ä­ª|û@	);7¯\Òü\Ú','',0,'?'),(_binary 'L£K\ïys¬FˆØøl\Z‹','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/with-product.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7™¼=…I\Z\Ü9¹ûHP\ÍK',_binary 'PG\á\n¶\ä\Î:\Øw,•ƒ€Rª~µ@\É\\›>¤*\0”','',0,'?'),(_binary 'SMr¾°j•³ˆ~','wp-content/themes/flatsome/inc/builder/core/components/components.php',0,_binary '7”Rð~)\n%õDŒr²`6',_binary '7”Rð~)\n%õDŒr²`6',_binary '7‘\â€C4—!.\Õt€G€\ãmÜ…Ä²¹¹\ì#¶0¨ \"','',0,'?'),(_binary 'X…\ÉÊ7ŽQ\â\Å4²›6','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/Config.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I¼›˜Pÿ„¶¹†Uök',_binary '\Ó>\Îü\âB±¢\ï@óiÿÖ¶,7*Í\Þd(vÍ‡\ÈnÚB','',0,'?'),(_binary '[µEÔ¯e\àÀ-1|c“','wp-content/plugins/woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Abstract_Schedule.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´\á \é–õ\Õ\Ô0\êý\È\ä¬\Z',_binary '–útEt\0f\ä®Reø\Û\Í\ÈETÏ› \ÏW¬a\ãDß©','',0,'?'),(_binary '_S™x:¢\Ï)(\ëñ%(¯','wp-content/themes/flatsome/inc/admin/customizer/img/blog-two-col.svg',0,_binary 'ó‡e¦À”nR¸\r|_´T',_binary 'ó‡e¦À”nR¸\r|_´T',_binary '“p²$\ä\ì!ƒ±‘À=¿û@•N˜ û\ê£x/.\Ê²','',0,'?'),(_binary 'b‡†\êE„Ÿ£»º4t=','wp-content/plugins/wordfence/views/dashboard/options-group-alert.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÊÌ»o«\ìwG>p',_binary '\ÊI¶`I^{\çP× h„Qø\Ïe:sG^›¤8£sÄš','',0,'?'),(_binary 'eƒ8l-r\Ó©®©Uqpj','wp-content/themes/flatsome/inc/admin/kirki/modules/css/field/class-kirki-output-field-image.php',0,_binary 'ò\Ðû\Õ\Ê/›©R²WÏ³*^',_binary 'ò\Ðû\Õ\Ê/›©R²WÏ³*^',_binary '8I\'o,\Å\×iE§¦\Î¬\Þð·Ÿ;F\âÙ»ù\×~\Î','',0,'?'),(_binary 'n;®Pû¶§¯?$sK8','wp-content/plugins/yith-woocommerce-wishlist/assets/images/pinterest.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_öÜ n\Ã\ë\î‘\æÿjÖI',_binary '%vr‘<­\Ûù†M©·JG\ÆKj\ßlW\ÊDz\ã\Ìu•\Ë','',0,'?'),(_binary 'o2\ÃO\á\ä“f\ÏmÇ½\Ã','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/panel/woocommerce/woocommerce-upload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ\Z\ß=µB±¨\Þny˜',_binary '.Æ»¤`– é¼ Ai™\Zfi\Ó\×^ÿ\á¡ýA\Ê° ','',0,'?'),(_binary 'v¸i\Ð\é\ãEcX’¥G¯£^','wp-content/plugins/woocommerce/includes/wc-notice-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G%¾÷ª•±Žwd±ƒƒZÉ€',_binary '’œ¥D\Ðô\ÅP\Ï/\É\Ýò…9º\Ç0\ã•“¡ÿW¡Í—','',0,'?'),(_binary '{\ç\ây<–wnõ\ÞI¯z','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/php/components-setting/share-local-data-setting.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'úì»±$iXù\Z|\rt¥V',_binary '\Ø\Êx®[\èZ\È\àÐƒ\Î\îz\Þr3R;\Ì\í\ÍE[Ka1*m','',0,'?'),(_binary '\Êó\Þ&\Ë_]¼¶õº}ô','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/checkbox-list/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jƒA\ï\'l-O°t¶',_binary 'ý.õA\\	i€\\\Ë]o\Z\â\ì&S\Ä\Æ\Ü\ÒÉ¬‰ßŒ\Ü','',0,'?'),(_binary '€^\à¯=ÝµŸ\Ê\ßtˆc‰','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/title/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰tÀþ½\0}o\Ôø\Òxôßª',_binary '1B¬u0†(Dþ\Ù`poG)‰Š>ƒúDô/õŸbqóõ','',0,'?'),(_binary '…ñ\'\Òs%¶6˜¼juf\Ãs','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-contact-information-block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rü:¥šbÙ¬\\õú‡4‘U',_binary '<c…ˆ\ËZ»}\å³\Èi5\Ñ\rA}6»ô£4\Ý`bc‹$','',0,'?'),(_binary '\è,Â‚=9\ä\×\Øh\Ì6K\Û','wp-includes/js/jquery/ui/draggable.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡FL\êˆÐ½«2\ê©7\ÙR',_binary '\Þ9“‘\å\Äþþg\é\Óó\ë—jBŸ¶·l^\æk]Q','',0,'?'),(_binary '–\ï|0ûNeP_¬\'´Kö','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/stock-filter/edit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à€>]©;‚nõ\ÊMt¾',_binary 'r~D‘8‡/\Ãø53e\Æöy¤ó¦]Í§´´\Î\çD\é¢','',0,'?'),(_binary '—:›:µ3%©\é˜¥R','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/button/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì^ü³‡zu\ÈJ¿\ï«[T',_binary '\ìû\Ï\Ó\Ï\ßú`\è\Ç¤\0\î´õgn•[\Ý\áö2ø2¯\Z\äAT','',0,'?'),(_binary 'ž\0Æ¬µ€¸¾#»À\Ö(\Þ','wp-content/themes/twentytwenty/package-lock.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’M\æ.ò™++U\Ó)6\â1 ',_binary '€¥).\Çqz\Øð#ø\Û\ä³\Ýb\Ö\É\Ï*Ü¢\ë1VZ\Ê','',0,'?'),(_binary 'žu–*\è`¥i}?h@\î`\Æ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/styles/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚-\Ï#²ƒ.,­\Ò\ÓiÊ¥m$',_binary 'Ôš\Þ\"œ>‘¤2þ¯(ÙˆbŽ?°c\Z \á\è»¼,û','',0,'?'),(_binary 'Ÿ\Êh†>M\ÂnÀ±_Nü\Ä','wp-content/plugins/woocommerce/lib/packages/League/Container/Inflector/Inflector.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†§g”û÷ud	U\ì‹',_binary 'sþ8\â//”c%¹\ØG“^¸\É-±|*š\ß\í\Z¥‚ZP','',0,'?'),(_binary '¢\ám«\ÈNFŸ\Æm{\r¯','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/collections/use-collection-header.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't&\Úµ´ÁMö‹\Ó[',_binary '\ä<€L…ò¶@\ËK9j£˜…Z\áehN\è.Œ{|gI\È','',0,'?'),(_binary '¥ü\Þ!;\Íb·^ØD\î','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-heading/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¶\Ýc\Ê0òóÛ¸NPû™ˆÛ',_binary 't_û¸ƒ!k\'\0òuõ\×\Ë\rnG\Æÿ­hF\É!a','',0,'?'),(_binary '§0\ædø4P_,Å—¾\×1','wp-content/plugins/woocommerce-currency-switcher/img/icon/bookmarking.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'À^\Ê\à=¿]GùR\'$`yx',_binary 'šr$\Ò\ï,ðiX´g\0‘Aûso$&¡wZ\äK‘¸™ª¸','',0,'?'),(_binary '±\Û1´\å1q\Í\èµ<\Ýh\\\Z','wp-content/plugins/woocommerce-multilingual/templates/status/status.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ã\×@°ô_S4xúÊ™',_binary 'quN¼2jjÏhùð¯\Í\Ïr#Ùšã“®Ç¡•µ§›ö\0','',0,'?'),(_binary '»\ç]§Æ‰	·øe','wp-content/themes/twentytwentyone/assets/css/style-dark-mode-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x`”wj¤ 5w~T',_binary '\Ï.½Z\ÉJYØ’\ï<’ñ\\-\ÅýP˜ÁM©+\Å[˜\Û\rOŒ','',0,'?'),(_binary 'À+\Ý~[\Èô#\ãR¼\ÃQC˜','wp-content/themes/flatsome/woocommerce/single-product/price.php',0,_binary ':|Ì ªª®‚	({\ìq@',_binary ':|Ì ªª®‚	({\ìq@',_binary '\î\ÈÐ—¨\Í\à\é\éxny\ì\ÑZ\æCôv\ç©\Ì\æ±#\ê\ßG#','',0,'?'),(_binary '\á\0ñ•\êf:\æ\"pz\È\Å','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/reviews-by-product.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=³‡®÷FÐ©\Ê\Ö\Í\n',_binary '4·’\Ýc\ÔX®<‡Ë´eO„fû“\ëôš\î³','',0,'?'),(_binary '\äƒ	Áz–FrµYµž=`','wp-content/plugins/woocommerce-currency-switcher/img/arrow-right.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z›lþ\Â\ì¦\"6™¸\ÏÿŒ,',_binary 'šZðÑ…\íý*—¨‘™Í–’<\ÇÈ–³w\é\Ôò\ß_>q»C','',0,'?'),(_binary '\é\ÍF\à*w¹¶Y\Üõ‚ž\Ü','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/schema/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tóQ{;l~Eª\Îe\Åy\0',_binary '‰(rülZD#H\r]m›0Á_Kõ\ß\à=üŒE	$P«\Òø','',0,'?'),(_binary '\ëõ„\Ø%«ž$C‹\Õ\ã\Òk','wp-content/plugins/woocommerce-multilingual/dist/js/multicurrencyOptions/app.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œ·7\ÏÀ\Í<Ñ‰™\ê®',_binary 'p\ésd#½\êÁñ=gš\åÝ¯þ\0™:\é\ìœ9;Iy‰h3P','',0,'?'),(_binary 'û³>\Ù/á¡‡_ó³\é\ÃÀ','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Òl([q×ô°\ÉD#\ï™',_binary '\\sÙ¶\Òhb¢2.;\Øm`F£\Ðr^&óH-w	—yVµ~','',0,'?'),(_binary 'ü&UX\r\èL4{š\â\Ñ\Ô','wp-includes/js/utils.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't‰ˆ0\Ì`ß£—þ÷MVi`',_binary '‹js›@Vna\äv‹t\'È€D¾\ì,Ý†Ž„\ä·T;','',0,'?'),(_binary 'ÿ\ÓÚŒýp’øó\æt¡À©','wp-content/plugins/woocommerce/vendor/maxmind-db/reader/ext/config.m4',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÄO\ÈÕ¿Í«,§fÜ	',_binary 'ó\ë\ÜcÀPÉ™xCyø\ë\ëy‰\ß(\éH*3H›W\Ó\ÕÔª','',0,'?'),(_binary '\Z\ÃÁ-\î\Â\å¡\ê°@2\Æ^','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œg\ã\0ð÷p\Ä	f\æ/ˆl:',_binary '\à\ç)„œ\Ê_¹T´\ïù\éM\"«4\Ö\Öó¶\0ƒÙœ(\æ','',0,'?'),(_binary '\ZÆ¯oR½\'¿\ÆU€$','wp-content/plugins/nextend-facebook-connect/providers/discord/discord.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0HÄ›ù\Z½S\Æ}‰ŒMh+',_binary '£¶\Å\ï_ŸövA_”µE6Á±‡\Ìd‰ö°\Ý\Z{L“˜+,€','',0,'?'),(_binary '\Z\Ø\0\êPh¶+Ó¾@)R\Ê','wp-content/plugins/yith-woocommerce-compare/assets/images/socials/instagram.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·|—µûT¬~Sw\åK',_binary '÷‡|·T‚‹2\Ó\Ól	XUžº\Ñ\rnƒŽ~\ã®YZ%N','',0,'?'),(_binary '\ZÖ§‰±\\\Z\Ýh•i','wp-includes/js/dist/blocks.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÚˆDÉ©XK¨óô[nûÀZ',_binary ';€\â~\áE\çó;LbÏ•`\ã)­õv,¿7\"#\Ï9=jŸ','',0,'?'),(_binary '\Z¾I´ð!F)¯=—‚','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/functions-templates.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ã\ãÌ­\â¶nŸß±¢’Ž',_binary 'œV^?Ü©*Q¦)–Öœ¬B„—Q\Íx\êúEs;e]Á','',0,'?'),(_binary '\ZO¸3F5K«;œ@ \â','wp-content/plugins/wordfence/modules/login-security/classes/controller/cron.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Î@õq\\ƒ}±«§—[õ',_binary 'þ[\ËT\ÅnŸEjd\Ý(²$:!Áh\ÔÎ\0›s\è><','',0,'?'),(_binary '\Z&ô½cR\à< FiC\ä','wp-content/plugins/wordfence/modules/login-security/views/options/option-text.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Æ¤Ü\ÆW^œ[¥g¹',_binary '\ÛdLÀ¾ú›“cK~=0jEƒ]³þ\á‰~\"\Ü','',0,'?'),(_binary '\Z*mb\Õq€N¥p\Ô\ì?g~','wp-content/themes/flatsome/inc/admin/gutenberg/assets/js/blocks.js',0,_binary '\ã‰Bm\ßÖ±W¢Á\rø<\êr',_binary '\ã‰Bm\ßÖ±W¢Á\rø<\êr',_binary 'J0òwE§A\ï	žÇŽS1>ª\à YÁ1S§ö›(','',0,'?'),(_binary '\Z3´\éY\á{£\íòþWtTp','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/active-filters/active-attribute-filters.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÃœP\åi\Û\Ï3v·\ÕI[qð',_binary 'l\É>ƒ7^\îÀŒ¬:ÿ\Ñ\ÌÀ\ÖVŸ¯½­ùg\åˆ\Ä0À\Ó','',0,'?'),(_binary '\ZIwƒ8c\Ë9®\ÄÂ•ù\\','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/dist/gutenberg/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jõ\Ø\Ê+\æc†›K’\íf\é',_binary '8ûsn³?/\ç^±\êOG\å\×&%º\Ï\Ö‚Q x¥','',0,'?'),(_binary '\ZO±\ãÁÁ£j?‘ü\ë¿\ì','wp-content/plugins/woocommerce/assets/client/admin/data/index.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_€©ò†þ>Ä‘’&0\Î	',_binary 'Š/AŒº\áeÃ	ºp»\Ú\áý°Ž·\Â\ÆgU!eP}\Ã\×','',0,'?'),(_binary '\ZTS†q>‚¬\0\ÉZQ~«=3','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/metaboxes/tab.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E¢É»J…º\Ô4?\ÉÎ¦Y',_binary '39þ²r…BBN¥\ÆZž?®;r%¡ò4\Îê°„Mq\â ','',0,'?'),(_binary '\ZTî­‘+€vDJnŒ¿Ï”','wp-content/themes/flatsome/template-parts/pages/page-title-breadcrumbs.php',0,_binary 'ÿ†l÷q&\ZUÆœ÷\Ý\Ö\Ùù',_binary 'ÿ†l÷q&\ZUÆœ÷\Ý\Ö\Ùù',_binary 'uü f4OB\éP¢Š9;3OY\Ì\ÍÍ’¼`X#hW];','',0,'?'),(_binary '\Zi¸2\Z?Bú\âtŽ\Ç','wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-authentication.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤Ï£@l\Ò<œ`óZ1ÞŽ',_binary '@	v! Dô¯¥ ¤§?f”VIHg‚8|g8Í³>x','',0,'?'),(_binary '\ZiKa¾»¯SÁ\ÍÉ¦\"´{','wp-content/plugins/ti-woocommerce-wishlist/assets/js/blocks.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ó<vDco!\Ù\Ì\ágqK',_binary '\éb‰\Ó0’A\æ1F“…})¬\Ò6Û!\âw6\Ð>^','',0,'?'),(_binary '\Zk\è¨÷	j›W\ÉF¨´','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/empty-cart-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JxTP+^i\é;òñ\Â)ñÌ£',_binary 'u\"„[»§[~¾×—\è\"òÉ¥[‡\äO\Éü\É¥\Â\0*','',0,'?'),(_binary '\Zp\Z\rß©—†\î\ÆL¿)\Þ','wp-content/plugins/woocommerce/packages/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú»ÞˆÀú\Û\ê\ÊKŒµR8',_binary 'p\ÐS½Hr3á‘¾ y€\Z`bYL|·YŒY\è\Ñ³v','',0,'?'),(_binary '\Zw‹¨Á$q\Ís…33\Ã}','wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-pdt-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\Z\èiŸ\Ð.·øysŽ\Ü',_binary '„\ÈsAH»8\ÂQY÷\Ø\'™©\Ühs#~“z(®\Õ','',0,'?'),(_binary '\Z\Z‹­L\ÙX\Â?Té¦','wp-content/themes/twentytwentyone/assets/images/young-woman-in-mauve.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ì¦\\™\Ë\ÚølÿÿG?',_binary '\É;˜}pSyý¡°,7sa.\ÕTøŒËŒO1q\'–5[Ÿ–~','',0,'?'),(_binary '\ZƒRx]´øÏŸ5\Ì]','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/reviews-frontend.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Hv‘\Öunl2^\Ì',_binary 'ñóQ¤UzñT\Ú,­\î‚û¸¼\Ì\Ãv‘K\ä£n–‚o‹#','',0,'?'),(_binary '\ZŠã‰–\Ç\ÕT1,üþx0­','wp-content/plugins/woocommerce-currency-switcher/img/loading_large.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ…6ySþC”«‚\Ü<\Í&Ž',_binary '™»‘\ë\â\æ±Á˜c\Ã\Ì	\Ï(y\Ñ^«œ«`ª,¶2À¤','',0,'?'),(_binary '\Zþ½–L6N\å1\×;8œ','wp-content/plugins/wordfence/modules/login-security/views/page/section-title.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"Ž\ì\áw^\n ¨¡k6',_binary 'Œ!\Í5»@\ãa¾6t„oš5(D\Ûs©\Ð\Ñ\n\äÁµ\æK¿f','',0,'?'),(_binary '\ZœÃ”r9O7ŒG\ã\ÚÀ\Ã\Ü','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/downloads-list.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{²}¬„ö-kz‡—',_binary 'eU‘™üª\ë\n\×3ÊºIY\Ì\î\ïÛ¢Ÿpµ\Ì,¶\ï54\Í','',0,'?'),(_binary '\Z \í–C_Òƒ\Åþ \È ñ\n¿','wp-content/themes/flatsome/assets/img/payment-icons/icon-giropay.svg.php',0,_binary 'Ô¸Å¬\×\Ø´n;\Ë\Ö.\Ù',_binary 'Ô¸Å¬\×\Ø´n;\Ë\Ö.\Ù',_binary '$\Õo_°K©t\æ/\í#\Õ8{›L‰D¹K\ØD \ï\É\Ñpï˜','',0,'?'),(_binary '\Z¡£\çË”Yp\Üf¹;','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Utilities/ArrayUtils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xgD\Ã\ßFK@\åW»gkW',_binary '‰±f\Ñyˆ·“©Z‚…,a\Â[ðÎ¥\ß\â\ÏþE£–·3','',0,'?'),(_binary '\Z¤\ÓiD\ÄùÕ“\Ä$¡aI','wp-content/plugins/woocommerce/templates/loop/loop-start.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oDaB4\Ø%\å&^ªûþ\áE',_binary '\ß]Š¾-±D)Ižä®®\r<C]”O\Õ\ì\î\ÑHNš\Ñ]Á=','',0,'?'),(_binary '\Z­3õõq¼«d\Òt¢i','wp-content/plugins/nextend-facebook-connect/providers/apple/apple.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Øœ%£%w˜\ë‚kV\ï\'ª\Ó',_binary '4\Ø\Æô\ß_ºu¨·¢˜,®K‹|,\0C‘xMðuo\ÕV–','',0,'?'),(_binary '\Z¯M)j¼(Z\î¿–\æ\àV','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-new.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ýjÁ¥Á\îD<\ÈðÀ\È',_binary '\Õ)$\Û\Ôxô/\åœ83\ê¬o(H`(%ú\Â¨\Ô\ä\åŸ','',0,'?'),(_binary '\Z°-®\ì\ç;ˆ«×“óV','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/query-state/actions.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\ÛE\Þ[~\Õ\'\'¶\Õ\Ø]ù>',_binary 'B\×gŸœ%zÂ‚5\ÜÜ˜G˜±6HPü¸—b\ç`¯Ò„ú','',0,'?'),(_binary '\Zµ;5õ(žOòO\ÖR«','wp-content/plugins/wordfence/lib/dashboard/widget_content_countries.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\áþµÇ›ˆ¡\ÆýlmˆD!',_binary '\Ö\'\ß9‹\r9Š\0o|ó\ë\Z\ØÀ§Ÿ\Ûñ\Þ|•·¿0K','',0,'?'),(_binary '\Z¶ ðÐ—÷‹W\0«x','wp-content/plugins/woocommerce-multilingual/locale/woocommerce-multilingual-pt_BR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç3‰ŒOƒŒ*\Ñ0–\Í\ÊZ±',_binary '!\êNŸ\É\ç‚\è\ï\Ü\ç~Œ€G±\ÞÑ§cû\âC\à´ùú0','',0,'?'),(_binary '\ZÀ«²\Z£c(\ÈT;JFc','wp-content/plugins/woocommerce/assets/client/admin/chunks/dashboard-charts.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€¢“E9?[E L\æ…#',_binary '¡5E\åC‰†µ»\â\Ót\î \Ô4Öˆ/w;@ý°','',0,'?'),(_binary '\Z×‘ª<\Þ/²UÒ²)\Õ','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/otgs-installer-autoload-classmap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\Ýû\æ\Ø\0‘–	`b2\0“\È',_binary '·š‡MY6\ê\Æ5‚¨rh\ZMR¼\0,_:„£/\ÝQ>\ìªM','',0,'?'),(_binary '\Z\à\àk\Â~\ÔgWN\ë/m¹/','wp-content/plugins/woocommerce/templates/notices/success.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷ID!K}ÀQò°+Ÿ»*',_binary '\Êg\ëX—„\àWˆŸ±As	¤úI\è\Ìöwø½\æk\Îÿ','',0,'?'),(_binary '\Z\ã¯t\Æp\é\àAWÛ´\Ö$','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-es_AR.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X´þ„š4ŠX¦^.Ah\Ï',_binary '\Z\é\í\ã-UðM€ô¬Á“J\åXÈƒu\rº\ÚMC’¶_U!,\0','',0,'?'),(_binary '\Z\ë\ã\èÁ¡•)qtsCI9','wp-includes/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ê\Ô0¹jMp\í8®‡|',_binary '§Uý­ŸT\á#ƒF\rLcu^\\kú¿Ž\Ä\íY”~I','',0,'?'),(_binary '\Z\ïy‚„8R#O¬y\Î\Æ','wp-admin/css/nav-menus-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Æ\Ú‡úVTƒ˜\Ó$#%¡E',_binary '+8\çÐ©·©\Ü\Ãnó\ØmœR\Þ,c¾ t\'¦jG²U ','',0,'?'),(_binary '\Zñ°\ÊÝ½¢vNS´\âD0','wp-content/themes/flatsome/template-parts/posts/content-none.php',0,_binary '\ì )°“k66\Åj]±¼\ß',_binary '\ì )°“k66\Åj]±¼\ß',_binary 'nid‡•Œž§w0Ÿ¹µ rf@D\Äõ…¾¤ñq\Ðþ.','',0,'?'),(_binary '\ZõSªÙ ¼þY®d9(¹–°','wp-content/plugins/woocommerce-currency-switcher/js/chosen/chosen-sprite@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ë\r	\É;™\ÅÊ¶„Gý³\×\ä',_binary '6a\Ü\ßñg¨ŠW¨†£\ãXI3/¤ŒV›\å1§‘\ä-b','',0,'?'),(_binary '\Zø\èV¹IØ–¤\Ã,iw\ìð','wp-content/plugins/yith-woocommerce-compare/assets/images/07-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#	6b\Õ`²ý\Øöuü²z',_binary 'B\Ð\ÑÔ…¼2ô\Ü.R<c’ oð\Ñ! ˆ„\Ïžn™ù\È\n','',0,'?'),(_binary '\Zú\Ã\Z:\\®RfùP\Û~3','wp-includes/class-wp-metadata-lazyloader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I^\ÃP\â\Ô©;$\Øü+\"\È',_binary '^2\ë\éú)E>Xµˆ\çŒ4‹:ú\çÀU&\ßß³;±\è!e','',0,'?'),(_binary '\Zü 7\í\"\ìŽ\ï-cc\Ô','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/layouts/icon-256x256.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ\äg\à±P»Z»6/\n‡',_binary 'Š<ÁùM?‹\í¸ô¬¢Dª*3–\ëOx½žV6}—0òŽy','',0,'?'),(_binary '\ZýUE\äs(\î±÷ž#Eöp','wp-includes/images/smilies/icon_mrgreen.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$_\Æ½u²X|I%~$',_binary '!B´‡ºI1mV\Ø-¦‚¾|Ñ˜¶X5D\Æ8Ž†hó','',0,'?'),(_binary '\Zÿ¹\Â/¡Íƒž\íT%«g4','wp-includes/js/jquery/ui/effect-drop.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gr\'>/™{´3\Ó\ëo',_binary 'cXODª\Ã\";nPÞ»­*`ù\Â:{‹y»=\Ù)\ìšF','',0,'?'),(_binary '$?×“\ì\í&GZ\ë–½','wp-content/themes/flatsome/inc/admin/customizer/img/disabled.svg',0,_binary '0‡\å%úò®mJ\Ö|: ‡',_binary '0‡\å%úò®mJ\Ö|: ‡',_binary '•ºmbzx\Ôõ\Þ#\0‚¦\0ü\ÄG]\ËO6yüó„ió\ÝL%','',0,'?'),(_binary '$\îŠP\Ù`‰‰\0g\ï¨X²','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Cached.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yFÂ“\\œ»\â…\Û2š\Ïÿ\í',_binary '2k¡sÀ\Ú\\>ª…RI:nHðÈ¿Dm\à!zz\Ø±À','',0,'?'),(_binary '&\Ðö°õº°\ÕÍ‚|d8\î','wp-includes/blocks/pattern.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ý‹aøv\".%T\êƒ\×',_binary 'µ~\r\ÒXºIRF\ÎAY\ß\Ó\ì]A\Ü\Äoabù´‚3¶\Í','',0,'?'),(_binary '\'9\ÊTÊ²¶	\ZuvPmý\î','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/SetUpAdditionalPaymentTypes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\É\íKm\Z\ÂE0€d¨–\Ì\Ô',_binary '÷ŒÍ—8\\)’`VT\'ŒkJú\ÙKKÀMGx[ð\ØA\Õ','',0,'?'),(_binary '\'\ÍNÒ‡aP4Ž3[öm','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/resources/select2-wc-2.6.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­Q÷Ç¿Dø¯bô>¨¸',_binary '\ã\å•ÿ^\\\Ç±^})\îY>K\é~û²„,\å­\ï\Ä:\é4›§','',0,'?'),(_binary '-ú\ìc©<\È\î@\ÕVsZ‚','wp-includes/js/api-request.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9¢÷¼\Âß¿G7p6{“g',_binary 'œd\Ï6Q\\ñ´±©fÿ:¶±‹‡ûG`\é‹\Ñj1V\ã','',0,'?'),(_binary '1Ž|\Íud–\Å\Ú\ç\ä²N>','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/collections/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zHä»©¯ y\ï^)).\Ã—',_binary '}•\r^ª|G8›\ä\'c’d_\Þ\î \èj<\Ä\"\Þf\\Š¾dž7','',0,'?'),(_binary '4ð¢µ:Š¥ µeT\"6','wp-content/plugins/woocommerce/includes/class-wc-rate-limiter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\Èl\à$Fvª\nbŠvwù\Ãõ',_binary '>Oò«rï¼µ\àK\îo•(gƒ0*L\î\ÒSs°\Î\éÉž#\ê\å','',0,'?'),(_binary 'C_\æ†8\ë*c\Z2d`{Y','wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹\ÂžôŒ«÷¢ks\×\ÃSl_',_binary '3‹Nð\á\æ\Óo\Þ0ºˆ»™^§^&¾´ylU«»\Ñ\Å','',0,'?'),(_binary 'D\Z\á®\ÊzX\ã\Ô\éG¦\Ü','wp-content/plugins/woocommerce/includes/admin/notes/class-wc-notes-refund-returns.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µhð(ˆ\Ö\æa\Ò@\ÂA',_binary 'Y>Kˆ\ìÀPq\Â,Œt\Ç\0\ÙoIP\Ã÷go–—¶\×','',0,'?'),(_binary 'D\ês&  ’©+\á\Öt\ÙÝ¡','wp-content/themes/flatsome/template-parts/pages/page-title-scroll-to-centered.php',0,_binary '\Z]H\æ|yý\ËÍ–ñ¢\ì\ÍÖ',_binary '\Z]H\æ|yý\ËÍ–ñ¢\ì\ÍÖ',_binary '¹„ª|†eNzeZ\ÆÆ´\"JË‚`¥»c>Cp÷ª«','',0,'?'),(_binary 'M¥§\È\Õ5|Æ_Ž','wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/p24.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰\Ý\ÚX\ZVADö¹\ÚÃƒ',_binary 'BûG\Ð\Þý\Ð{\Õú„,\à‰Î¯)4ý÷Ï§\ì€bxO','',0,'?'),(_binary 'Ryr|\Ë‘\ço>¯º>','wp-content/themes/twentytwentyone/assets/css/style-editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\Ï\rÃš ``e\Åh\ÆýŒ',_binary 'v\ÊÞ¹U*F„1>\á™ŸB%\Â\ç\í\\c\Ï÷p(\àš','',0,'?'),(_binary '_Œ\Åzˆ­¤9·Ý€D:¦\Õ','wp-includes/blocks/media-text/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dù\'ž\0‡\\¨:\ÝW\å_',_binary 'ƒ\å\\º\àûA\ZMi7Ž\íiÒ¶s\ß{y@\è+ÀT','',0,'?'),(_binary 'b\ÇN=¿°¨,À\ÆS\í\à','wp-content/plugins/contact-form-7/modules/text.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zdIe¹`\ÈôÁj\ÒO',_binary '–\Ë-\îA\ê\à\È	Ìˆ\Ë9vZ-\Ö\Ý	¤p†\Çj4','',0,'?'),(_binary 'iTp[e\Ùÿ\Ì\Ú\ÇJ1Ž¹','wp-content/plugins/woocommerce/vendor/composer/autoload_files.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\êp\\³\äÿo\Ð\Ö+ø\Ô/¼',_binary '«Z¾}-+:K\Èÿ†€a\ëQs9\Ëö\']\Ö\ÉHª8','',0,'?'),(_binary 'kJ\ÏLç¿\ã«\ÔÏ´4','wp-content/plugins/woocommerce/assets/js/admin/wc-orders.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\Þ\'Qß±³D\çð‚S»\áX',_binary '\ä\ÏõÏž\Û+@¼v\×O¢Œf°u\\\'·q\è\á\ê\Ñ','',0,'?'),(_binary 'v;õ8@dü°\Õ\ç','wp-content/themes/flatsome/inc/builder/core/server/src/Transformers/Transformer.php',0,_binary 'Z»°©\"o~VYðÑ¯.O',_binary 'Z»°©\"o~VYðÑ¯.O',_binary 'kbO€ëš‹Nj^;}\ZbÝ!\Ù\È\çÔ´ü‘ù§…7','',0,'?'),(_binary '†iþð\Ëe$¹bØ–)™O','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/payment-method-icons/payment-method-icon.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÛRH{\r\Í\àg§´˜=“',_binary 'I\Énœ\ïD8óT±PE¬™´vKsK;%‘#¼','',0,'?'),(_binary 'y!À±¸&ô%½¬„›n','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/arrow_down.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷\ä\Ü3k\ÑþöL\Ìs†—«¯',_binary '·\Ç\àÆ”-2n\à|©‰Qm\É96\Ô&\ìÿ[É¼T6=´\Ñh','',0,'?'),(_binary 'Ÿõ\æúˆŽ …˜¢\'','wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-products.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œa‰\È0š“¨U\Ó\É *',_binary 'žkõ3\í¯ M\Ô=…K­jl\é%\ÏÓ½ô\âbÚ‡ùW¯L\Ù','',0,'?'),(_binary '¡%\âR„‹\Ê]%\éE\Â\ì\ß','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/shipping.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³\ã*4øR”j#\Ãp’®A',_binary '…0\×j^ÒL†À\æ¾]­4G¶|õ²\Ò\ê·\Z¢)œ\â¥','',0,'?'),(_binary '¥\Ñ\Ù\ÚDv–‹\'\ÌH½-','wp-content/plugins/woocommerce/vendor/composer/autoload_real.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ßˆQC\æ\â¿ÁX6\Ã',_binary '¨\06!t*q‹VgLfm\Æ7\Ò,\åAL²<f\Í\".©þ','',0,'?'),(_binary '§y´\Ý\Ú!¡\0pZ\èˆ[A','wp-includes/js/mediaelement/mediaelement-and-player.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\ãiz+*;)±ûE‹',_binary 'š-5(\â\ì¼:£oQ[Ìª»¬\Ï\\\ã\nm~¶CP','',0,'?'),(_binary '²£_\'jÇµ,r\Ýr+û','wp-content/themes/flatsome/template-parts/header/partials/element-cart-replace.php',0,_binary '\ÞÍ­žYX>\0wX\Ñ\'J',_binary '\ÞÍ­žYX>\0wX\Ñ\'J',_binary 'U’p\n„9ŽöC!\×Ü¬³ \í;m¸\Î\æT`\à¸\É\îom','',0,'?'),(_binary '³F\çúhõþ=\nW:\\„V','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/country-input/CountryInputProps.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÌÀ{¢pßº÷%‰ü|\Ì',_binary '\ê\éj-ö\'ý\Ëý3\Ù\"Ñ…\\K\Ë\Ñô@%\å\Ï?ùü´\î¬','',0,'?'),(_binary '´?ô®¦\ï´\Ñ]!€’4‚','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H»\'Hyý²ø\àr\ç¶\n',_binary 'ò\é\Ð\ì\Êß“¼K4ô\Õe\ä\Å\Æß‚\â–\ØþS®]€n\ê','',0,'?'),(_binary '¶/†\Å\ä± £ûÿK9rƒ','wp-content/themes/flatsome/inc/admin/customizer/img/account-icon-outline.svg',0,_binary 'hµlþ&Tƒ¾œNÍ\Ô\éŒ',_binary 'hµlþ&Tƒ¾œNÍ\Ô\éŒ',_binary '“™ƒ\Ý\äRy&œ\ìW)\Ñ\\\ÔD½\Z5´òø‡(ø\\¥;F\\','',0,'?'),(_binary 'ºE»È–qÈŠ?2…H\è','wp-includes/js/dist/api-fetch.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yòQ\ÒHœÿ»\ß\ÄR…P',_binary 'µ˜ˆ:Gh¯;\ä\Ô_¯2pQS“š\íQ\çž¥m)¢\Ï','',0,'?'),(_binary '¼5pÞª\ïm—\Zµˆîˆ„','wp-includes/blocks/separator/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ò|\îD°\Ä÷JoAõ£ó',_binary '\"w\Ð	þu®¡{[\êH¤6W\ÖÎ¿\Éü','',0,'?'),(_binary '¼ôBc\Þ%ôE8‘“m4˜\Â','wp-content/plugins/woocommerce/includes/data-stores/class-wc-product-data-store-cpt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»~A²µñ0“3+—+\Âþ\Ü',_binary '0ý\ãrº\ZÀ±\Æå¡†\Ü\àÖ’¯7&#y¬¸>aˆs8\Óúk','',0,'?'),(_binary '¾M3kÿ¸ÿŽš®÷ü†\àG','wp-content/plugins/yith-woocommerce-wishlist/assets/js/admin/yith-wcwl.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%e9¸³\ë½\'—•ò®xk\ï',_binary '}w\éwŠ¯j\è\\$T¾Ž¬\0\ÃR\ÂU2I†\Ç\Î81Dº«v','',0,'?'),(_binary '\Ñ\Ìl–À“\Åw+uG<Se','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/ComparisonOperation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z€?O:gO1\ãû\ãe{',_binary 'YˆýäšºW¬\Ô7iB]i\Ø\Ú(GO¾X¨þ\ï;\î?\Z\\™;','',0,'?'),(_binary 'Ö»E\n»<¥B„[\ì,','wp-includes/class-wp-ajax-response.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o6\Ú)·Qÿ\"SÏƒt\Æ.H\Ö',_binary '”¸[‚$ùœ–g\ÊnM!^\\¦\Æ\ß9tµt\ß\Ý>Z\Ý','',0,'?'),(_binary '\Ù\è\'º>øöÍ§d\Ì\ìRük','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Assets/Api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'öƒ0K@4]ƒƒ¬D‰\éM',_binary '#:\î3›zŽd®Ö‡¸\ÕI\Éf”óÈ™\ÈüÉŒ\Î','',0,'?'),(_binary 'Ú«*°öø‰xƒ	½\Ð%','wp-content/plugins/woocommerce-currency-switcher/js/wselect/README__.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\Å\0iñS8;;^	–\Ú\×\É',_binary 'ÿì‘¹±¦—\é\Ù\Ì\Þ%i\é·\ã²%², be_8\ê\Ô\0,\ÃD{','',0,'?'),(_binary 'ó%g¼\É`,¹\æôŸ6\Ó\Ø','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/support/class-otgs-installer-requirements.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’\Z\é\Øáž„–±v ¯XÏ…',_binary '8T=)aQ–,\î\Ð#Ÿó\à\n\èÙ‹`\ëñÀˆ»','',0,'?'),(_binary '÷\Úô*•×©.“\ß×»\çò','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-icons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N.…wÈƒÿ[“\Ðøþ%³',_binary 'I\é\ë…\Ò1\Ña^6a\'¹5®ûnù/O[m…\ç‹','',0,'?'),(_binary 'ù£\ê-ÓŸøÄ¸\á.b¯ž','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/NotRuleProcessor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†¾¸óR¹\'ƒ—wŽý',_binary '*ýµÿL4\Ã,\0X?ZH2vl1\ÉßŠb?‘\Õ\Þ\\','',0,'?'),(_binary 'd\rjø÷©\â¸\à+,¶ð\Ò','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/use-store-snackbar-notices.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õ&St\r\0\å=Y×µX1L',_binary '\Æ|\àØ·\ã}(\Ì\â\Ð¼0+\î^3¨ ‰A.¡\æ?÷¡','',0,'?'),(_binary '\ç \ÙtX®¤ï£¥R­‘A','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-date-format.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›\Ò=.Eh\Æð\\­º\é)Y',_binary 'žFk¾\ä\Öoƒ\ËOo)\í\"\ã\Ð \æiZòö','',0,'?'),(_binary '}w~<)z+ü','wp-content/plugins/ti-woocommerce-wishlist/views/admin/premium-features.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·üü‡.ª‹£\ë¼ð§2v',_binary '¾¼\'}rIT‡)61§‚\"\íõô_\Õ•%—¨kŽ¨Dÿ','',0,'?'),(_binary '©\â-Uqa\Z>\ìcö¬€°','wp-content/plugins/woocommerce/assets/js/select2/select2.full.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\ë4·\ÃûO÷\í,\ä“Ai°',_binary 'ó1’4×©\æMy™c\î´õ\Ø\Õ70i\r[òde²}Bß„$','',0,'?'),(_binary '”m\Çn9\ÆF±6·','wp-admin/css/admin-menu-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0oûmL#öü}\ÃLc',_binary '…>\ëõÛŽY3÷ŸH)\Ð&9l»„n.8¯ù(·5¼¼','',0,'?'),(_binary '¨\ëÓ¸\Í\Ïw0¯Žª','wp-content/plugins/woocommerce/templates/loop/rating.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rüŠƒ_\ëM9Ç¹\Âj\Ãq',_binary 't\èÑ‹Tu6§Ur\ÖL3[®]%º\ä\Ä\È\È\Ä\â	3«','',0,'?'),(_binary '&•ü3¿\ã\"\Û>c','wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/AutoloadFileWriter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Û¤÷\Z\àû\ç\æW\Þ(\0[¦\Ñ',_binary '±É™8\Æÿ\Ò=-št\ïô\Ñ\ZÇ•\ï\à\Â|#¾UÅ¿\0º','',0,'?'),(_binary ')¡€A¥\á4/F\ßÉ¬·£','wp-content/plugins/woocommerce/assets/images/marketing/amazon-ebay.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õ`‚\Æ7ß€\è\ÚP½\Ôm',_binary '¹ÿ#\ÃE\ÖÀD\ã\æFc8¤\ì Á0™š@)¦}J~Á”%','',0,'?'),(_binary ')úM\æ\È^ð¶Ã»ozð©','wp-admin/images/loading.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@…×œ¯x>c—”­ºµ\ÖÂ¢',_binary '\ì<\0Ð…Ò©¦•Ù‡qU%˜\âG†ò7ró\\œ*–¼2J','',0,'?'),(_binary '+V\Äl\ÕI®Œö£\àŸ','wp-content/themes/flatsome/inc/admin/customizer/img/search-icon-plain.svg',0,_binary '¦·`\Ém,ž\Æ[>5»µ¼',_binary '¦·`\Ém,ž\Æ[>5»µ¼',_binary 'Mw\àÃšç™¦:(G\éXæ¬·Kp:ô3ˆÂ´\\œ…\Ûg\"','',0,'?'),(_binary '+\Ò&U‚ld).\ì0*“\Û[','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/test/use-store-snackbar-notices.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œF02Œ¿^	\à-y¦\Ô\Z¢',_binary 's\rÁ½’n\Ï\Öõ‰\ä‘#nQ@œÁ\Ìo\æ\r0ÁQ','',0,'?'),(_binary '4%·IH\ÄO‘‹Ê°\ÒL','wp-includes/css/media-views.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N?†\î5e(\Òe=<\î9‡¤',_binary '4}-£\ØLök«EÒ±&{xšV o¢Zž+t8~ð)>Á','',0,'?'),(_binary '<0òóŽ˜\Z\Ó\é9\ÝS5','wp-content/plugins/woocommerce/assets/client/admin/chunks/5502.style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\'\×G\ã‚	˜\Ö(…{',_binary 'woø÷-7mJW(¾™\ß!^	\Ç\Î¤ü\Ú	‹~','',0,'?'),(_binary 'Cð/ù;)ŸªÙ‘\î°o','wp-admin/js/comment.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­²	\Î\'v\Ý\\Št\'\ÇÓµŠ',_binary 'ku0‡ˆ\\\áV\éþ‘{0¶wZN%Y-»)µ­\Íò\Î\É^`','',0,'?'),(_binary 'CQ% °™Wùòº­-#','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/media-left-dark.svg',0,_binary '¨X·^\\h¶\Ñ\Ãù\Ü',_binary '¨X·^\\h¶\Ñ\Ãù\Ü',_binary '\å·`\ÜI\Ï\Ãj\íN\Äk\è7¦€­.\Ö\É\Z=9’Sô™¶','',0,'?'),(_binary 'FoM†9Ð”\â3)ÿÿ.\Ú','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/single-product-frontend.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '};g\é¾?§¶©\Ü\É\Å8¼',_binary '’‰0<Œ5±\ÈÃ¥wª\É\ám\à\â\âA’F„†„RC\×','',0,'?'),(_binary 'H\ë\Ê~\Ý\n\ãóx‚ ­»|','wp-includes/js/dist/token-list.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ByR\ß\ãt\ë\Õ.yƒ%\ÂU',_binary '5\rA[\ÝG\Ç`·½2V0 V¢Ü¢žg\0a´>#ªÒ¶\×','',0,'?'),(_binary 'J\ï)†^²I_\ì&4ñL','wp-content/plugins/woocommerce/src/Internal/Admin/Onboarding/Onboarding.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Õ:ü\×\ßô\r7?¾€Ö›',_binary '\nðþ–Z j»t¸\ØÿA\ä„:»¯\ëôzû¼c:PÌ¼','',0,'?'),(_binary 'Mƒ\Ù\Õü\çaÁ\ã\Í\Õ\Îð','wp-content/plugins/woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_TimezoneHelper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®VY\Ü<ž‹”SÁ{l“ô1',_binary 'GLd5u\éP=H\Ãz}šGÝn#dÖŽ?K\ä§Ðˆ\îE\â','',0,'?'),(_binary 'T\ËgslF\í¢\æÊž\àõLy','wp-admin/js/set-post-thumbnail.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\ÂPµN¼H‚9eò@I',_binary 'e}#’\ê\ä\Ðn™q\ÅJ¯rJ\Ø\æQ<d…Z\ÌKž4','',0,'?'),(_binary 'a”@—WrQw¶\ÌZ\n.\î','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­Ü‘zŒg<N\èô\n?o6f',_binary 'ŽÁ“R °ôEgøX3•†JAc”\ì!aú_\ÊôS{','',0,'?'),(_binary 'f\Çk(\Íd;/YSkì±„','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/utils/has-in-state.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\í8#uò<‡=¹-³\Òa&J',_binary '\Õ\Ðx4ü7v3O\é±\Í!>ÿ1÷	\ÕJÕ³','',0,'?'),(_binary 'tñj¼¿V\Ç\î\È\Ì+\ïR/','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-select.php',0,_binary ')qî§«p1\ÇwvZôù\Û',_binary ')qî§«p1\ÇwvZôù\Û',_binary '.½ù¼¨p\Z\é¢£•¿\Î Š\ìŒ&\×\Í\0xŽÎ¿','',0,'?'),(_binary 'z˜|*6žS\\5·\ã¯3','wp-content/plugins/wordfence/lib/wordfenceScanner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'žX\ÂùØ¹w$’ð‹§',_binary 'Sš=óu¦¾\Â%TªM\Ê\"\Ã\×7ðˆG\ì¥	\è\"M(\Ó','',0,'?'),(_binary '‡\Ì\ë>¯NšWÂ¢~žð‰','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-sensei.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rM†\ÖO!6’.\Ñ:',_binary '“ª…h\Ô+	\ÉL\0À\Õ\Z™ÀldP?\Äü Y¥\Z²','',0,'?'),(_binary '‰Gx°\ÄôA1÷\n','wp-content/themes/flatsome/assets/img/payment-icons/icon-cashonpickup.svg.php',0,_binary '·\ê«\é&!ò%S©¯Z¶7',_binary '·\ê«\é&!ò%S©¯Z¶7',_binary 'r	¸¸8\Ï\ÉT›ƒÂŸ\â}\áüxöIº<ù)\ãû¹[vG–','',0,'?'),(_binary '‹\Õ\å8“\Ø0Ãž†6pg\é','wp-content/plugins/yith-woocommerce-compare/assets/images/socials/pinterest.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'šË˜\â)C¢°dÂ¤K\Ø^',_binary 'n\Û\\\Ýc\â\ì‚}\ÓØžVR®D\Ó\Öõ\ãz\Å\å¹w\é\î','',0,'?'),(_binary '˜\Ç1®*ªh¾\îB‘±','wp-content/plugins/woocommerce/includes/gateways/class-wc-payment-gateway-cc.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ºR\ÐË¨Àú¶Š!œŽVö',_binary '\ç\è•R¥|\×X:g\Ú2O?\×8¢i. 2oOV','',0,'?'),(_binary 'š²½\Ã\ë\']X¡@3\Ý}','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library/toggle.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú¦!)—p”öm}0\Ø3',_binary 'n¤ÿ³)¾\Þ\"¡CR&’\ë¡)—ÁG\r\Âcý\'6Až','',0,'?'),(_binary 'œ\n$z\ßX£`\Î1Bw','wp-includes/js/tinymce/plugins/charmap/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›²\á¨\\õ\Ó5^À\Ìùµ',_binary '[Bò\Z,;‹\ïjfe\ÃMU\áj|)òrv°‡>UóF','',0,'?'),(_binary '´=b¤6š\Þhs€ª\æt','wp-admin/ms-themes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©„:1R]	l I\È\ç!#_J',_binary '7\äE›H\Ì\ÖŸPuŽŒ\êÀ‚\ÇZ\âŽb³…G','',0,'?'),(_binary 'Ÿ¸\'úFEŸA–vQMv','wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\r°\Ã5]xVI\Ö\'Œiµ',_binary '\Õ\ìG¬ºÝ…\'™!ó\ÂY®E¬3¬\ÜP5ad‹ºM¾ÿ','',0,'?'),(_binary '¨‚I§ƒ°÷ªUzYWg!g','wp-includes/blocks/latest-comments/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ì\rúò¾\È«ˆ\Õ¾\"',_binary '\Ü>A?\Í<;ý¤÷qn…—\Û\×RY(ó…÷\Þ\à	Z…—L','',0,'?'),(_binary 'ª•¶Š²>»Àžp¯\rB','wp-content/themes/twentytwentyone/assets/sass/06-components/pagination.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i§œ\êU´	¨?\Ëýó¦ô\Z',_binary 'w;²[f…]XŸðÃž&¼\Ìó\î\Íy2,–…\Þø\ÙF','',0,'?'),(_binary '®Q\Ýn®yùVt\ê¯ V²','wp-content/themes/flatsome/inc/builder/shortcodes/commons/typography.php',0,_binary 'Ã£‚g¶ü®y\Z²D{L¸',_binary 'Ã£‚g¶ü®y\Z²D{L¸',_binary '#tm¶È¢]´1~)I\ã1C*v\í\ê:õšŸY×±R´;','',0,'?'),(_binary '´^\Öu[\Õp}`BøóW1','wp-includes/blocks/table/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'š\ï\ï\Ê\Ëu\ÇR»<\Ú]\ì¸',_binary '\Ærü\ÏV\ËP\ê%=w\ZðJ?>w\î\×w#ß¸¯ÿS¢Nô\Õ','',0,'?'),(_binary '¾]O%–PH…þ\r6Põ','wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ò3ªh+´²\â]_ƒ\É%L',_binary 'œ:œsh\É:°Š²}…CL“¿j­„ý½•:pf\Ë','',0,'?'),(_binary 'Á\Â\ç)\å[/“\Ê÷\Ý','wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/skiing.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ýl( _\ÃIÿ$V|>®\Ò(',_binary '‰\éBöj?0ŠŽ6\ÎCyË£\Öx\ÜK+Ö€\Z\ËA;\Ì','',0,'?'),(_binary '\Äc›õ«À´š‰Q­AžR','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-number.php',0,_binary '\rG¶˜•¡€§½8Ðr†“',_binary '\rG¶˜•¡€§½8Ðr†“',_binary '›[ì®\Êü‰\Ä>\Û#\Å\Õô}¿8úEA%\Ë]\Ó,','',0,'?'),(_binary 'Æp\Ì=Z\0¯S_ÿð\Û$','wp-includes/blocks/cover/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹U ü$8QO\r\ÍÖ¼Ao…p',_binary 'ˆ\ä!Z€t\Ý4N¹C\å€hþ\Ø\Õ\ã\ÌHÛ•\'ðN\É\ê?','',0,'?'),(_binary '\Ík0B\ß\âa÷\î¬`\Ë','wp-includes/customize/class-wp-customize-nav-menu-setting.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' .W*8zm/=\Ë*,',_binary 'B_¹ú\í\à\Ï\ï\Õ\ÐG*„\é±v\\~fIó›¦–\Ýò\Ò\r\ß=','',0,'?'),(_binary '\Õ\áQ\ç_?ð…zgG\é','wp-content/plugins/ti-woocommerce-wishlist/views/section-group-style.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Í³X­¹$þ„kŸ\Ì\Ì\Ði8»',_binary '\Ä*\èdh\ã\ÒõÆ·#.šyö\ÝX®M\Ä\ÏU¦J\0®‡X','',0,'?'),(_binary '\Ûü\r)¤51T\ã\ã ˆ\Ïo','wp-content/themes/twentytwentyone/inc/block-styles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§f<¦[#\á&U¬b:	¤=',_binary 'ƒr4Š¡ý\Ïw\ã€\É÷…ø\ázZ¾Z\×S$¨','',0,'?'),(_binary 'ÜŸºÒ¿Bâˆ¶ò\êò\æ­','wp-includes/js/dist/media-utils.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^o­P\ïU.E1e_«\"\é',_binary 'Q\ãÖ­ˆ]z=Y\Ì^¤!ucfú¶y/vø`b¿\àE)\ì','',0,'?'),(_binary '\æ3w¼\Þ-*\n\ÙQs½³\ë','wp-content/plugins/woocommerce/packages/action-scheduler/lib/cron-expression/CronExpression_FieldInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';û\çG\ÔJ¯§À\â\ÝY3p®\Ë',_binary '-X§Œö†–ù¦.òIk\'£Ÿ¸qxsy»	U1/¢„','',0,'?'),(_binary '\ê-=Q°Cw\àtnL\à¡#','wp-content/plugins/wordfence/lib/wfBrowscap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾¾\r\Ìe.\ì\Ý\ïôñbó\Â',_binary 'HzŸn´òõO\×#¤/út„Éš\"¯ˆU Ž\ÒA¿iŒ','',0,'?'),(_binary '\ífM›\æ\ê#U¬£\Êi\ÐÁ','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/number.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O3€W¢«G÷áª»\Ôq\Ø',_binary 'Ê¾N_ %\äjL¶\í8k*‚úÁ\í=—ˆ5Hz^A‘{ñ]\×','',0,'?'),(_binary 'ý=ï°Œ^\\yg)Wp>¤','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/toolset-core/icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒv7ru\çY¬\rÃ·•\×p\Ç',_binary 'žÿö(˜}>Ç£&Y+\ãU±~PM\'\Ýø„\ë†2\ÄG','',0,'?'),(_binary '€”išiž\Ðk/\Îd\Ó','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-general.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ò\ÛgJ¨š\Ç3\Ó_øxC',_binary '¢þ=2KÐ“†Ä²†\Ò\â\Ú\çIô«	\0V>\Ó,\è\Ï~¬','',0,'?'),(_binary '\åôÀfio\â\ÖýPœ¾','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/Cart.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ¿\Zc†{­“A&e\ÖC',_binary '\ä\éJqsL\ÄqC\'\Äö«\Zl…¯[¿…zHü\n','',0,'?'),(_binary '_\Âc\ÑÝ¼x\ÑX¿ø\á(Z','wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/core/fontmoduleloader.js',0,_binary 'd\Å*\ã&\Ý(^.%\ÔÁj',_binary 'd\Å*\ã&\Ý(^.%\ÔÁj',_binary '§B}hÔ»\Ýü\0\ê\é°£™¸œEb´\ÒLXˆb»\r4ý','',0,'?'),(_binary '\nœ\ßO‚_˜«;]/^™\ç','wp-includes/images/down_arrow.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'üø„V¾~\ÆoöYnG~_u',_binary 'ž€hŒ8É§øºô…ªp¿uóü{9–‘\á\Õ…›J‚‰¤','',0,'?'),(_binary 'Î½\Ê}\ØVº+µtB³','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/BLAKE2b.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­žê¤€”x\ÃÙ ·%•cl',_binary 'Nž8,ÿc\Ý\Û\í\ëaež¬\ÓñÎŸi<5p$³¿ó','',0,'?'),(_binary 'G_bc©.,]&\Å\è','wp-admin/js/image-edit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô#\Û0ÖŸ]¯Ñ¡\r‡3',_binary '[si“ª³$\ÜÀ!ß¼\ÙÆ:oŽ¸\n:¤úG\ÙýE=ø','',0,'?'),(_binary 'Kvö$T‹MR˜ŠŠú=³','wp-includes/css/dist/edit-post/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(zôZ\ØyV{˜6ˆ!fû',_binary 'ÿ\î]†Á¶¿w™\Z0‡`\Z£\á¶\Åj`,²ðþ','',0,'?'),(_binary ' 8Mô\Üú„¨Nºeóq\Ü','wp-content/themes/flatsome/inc/builder/shortcodes/divider.php',0,_binary '•t¬ðS\è\ã\Ök+NÖ· }z',_binary '•t¬ðS\è\ã\Ök+NÖ· }z',_binary '\çŠ2;Í¢ˆ¹\éP¤\ÏýF¿Ü¹3ƒ›	k\ç\é\Ô$qþ¹','',0,'?'),(_binary '#J©\åö\ÕLP‘‰·7}\ç','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/media-left-large-dark.svg',0,_binary '\Ù\Øô»\ßL!2®8œŠ\è',_binary '\Ù\Øô»\ßL!2®8œŠ\è',_binary '1”C1e\éýúEmP™£ÿ†\Ö\"\åF_Sº®c(—i','',0,'?'),(_binary '%€t\n“¦,R/‡\ÇTN;','wp-content/themes/flatsome/inc/builder/core/server/src/Ajax/Terms.php',0,_binary '›<1\í½Vg™‹*ª\Z',_binary '›<1\í½Vg™‹*ª\Z',_binary '_~e‹NGb‚f’_\0\êEÿj}X¡\æ\çôE”öÿ','',0,'?'),(_binary '\'F&Po[z¸‰1”L \â{','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ëœ²Xò²\å\ïm‚¨\Ú',_binary 'Ë”g0~¤r¿›‘\"\ØÀê²‰f £\ÃQ‰œY–y\ß2','',0,'?'),(_binary '2J0÷¦\á«xYr\ìŠ\Ðù','wp-content/themes/twentytwentyone/assets/sass/05-blocks/preformatted/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rnjù\ÌPÄ“¡2\à',_binary '\ç)žt1¸@³1\0\î\Ë×•ý²û\îKWþ”\Î\0»\Ï\Ø','',0,'?'),(_binary 'B’\rº•”“‘\Ú=¿z¡ˆ','wp-content/plugins/woocommerce-multilingual/classes/Reviews/Translations/Mapper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†œM¼h“=¹\\´=\ËU\çþ',_binary 'e\åÁ·sÿ\í:7…3\Ô@ë¡Š@\ç’NÌ‰zlAe\à°r','',0,'?'),(_binary 'L\Ô%\Â#‰¸aJ0¾#ô¢\Ï','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/products/OTGS_Products_Config_Xml.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	!X½E¯¬eµV}U‡5\ã',_binary 'rù^\Ô¾+;…ŠÅ³®‚\Ñ\Ñ(2i\Ü=(¤\Ý+5P|\Ö','',0,'?'),(_binary 'O_(HŠ²BC4+ œP','wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-fa_IR.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…7Š\ÝU9¸|Mj\'\n',_binary 'Ã¿g\Ú\ÃQMƒ€ÿq\'Ž®|\ìœ!6UO£ŒžW÷•','',0,'?'),(_binary '\\\Ðˆû	Cm\Ì \ê¶','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£Dþ^·°;‡\ë9\Æp\Ô',_binary '¯ƒ(Pd‹L°\Å\è¿\Óì»˜9¬\ÂI\íÿ\à\Ëw y›1Q','',0,'?'),(_binary '^­Àc¸T€ª\î\Ø\íMYf&','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/express-payment/cart-express-payment.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NÜ°Û±™\Ñ+Oˆ¬k}\Z„',_binary '\ä\Ö\Ìúµ4!N“C\ìW+\Ø\ì£FŸñ\Ú\ä‘Bö-','',0,'?'),(_binary 'fMx’íª¹®	\é+9•U§','wp-admin/js/customize-widgets.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oj|tÖ»uiB«ƒ\"•Y—\Ö',_binary '`\Þ\ä×¦nGpk¾I½~\Z’KI\"	\Å5\"ª©f\Ö*','',0,'?'),(_binary 'k’‰\Ð\ÇÀŸ&c,Rþø!ÿ','wp-content/themes/flatsome/inc/integrations/ubermenu/flatsome-ubermenu.php',0,_binary '–Œ´\ÜJýYºŽ\Â0o¯\É\Æ3',_binary '–Œ´\ÜJýYºŽ\Â0o¯\É\Æ3',_binary '\ê«c˜¦\å[,¥ ›¹Å««\í<\è¤&_hð,ƒ/\\3\ápG','',0,'?'),(_binary '…\ï¯L\âµó\ÈÀ\È›°','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒºm°ÄŽå¦\r\"³Bx\Ê~',_binary 'ñP¹˜Š§Lò²`û\'™R<DòJ\ÕU>1•÷\ÝD«,','',0,'?'),(_binary '†&ð¯§o]§\Óú3+§g','wp-includes/blocks/post-terms/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«t\Ôk\ÍCw²y\Õ?A\ça',_binary 'J5\àD\Ôj\Å$\ìÐ£“šmù[§\ïU„8\æX­a\Z¹','',0,'?'),(_binary '‹%„\ä\\ù\ÂMA‚\í\Ò\ïÿ','wp-admin/images/wordpress-logo-white.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½\ÙqPûCª†-SPD\æ÷',_binary 'e£4\ÑEº\Ç?ú&õDsA‡\Ä\×Ê¬ª;ü)@¾XÉ’','',0,'?'),(_binary 'Žšƒ¬J\Ì}F·\ßE\0\Þ9³','wp-content/themes/index.php',0,_binary 'gD,V\ë§=\\\ÆbP',_binary 'gD,V\ë§=\\\ÆbP',_binary 'k‰À—~	¶½UH\Z¥\ÖxƒP\ê\ÛAÌ„¢ú<¡ž;X¨','',0,'?'),(_binary '%-z]mJ\'k\ÄY¨®LZ','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/EvaluateAndGetStatus.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0¨g•\Ê\í>C\å\Þe\ç\â\0',_binary '\é=‘6Íœ\âI/p\ÓPùE\Ù8Äœ ˜e%%•‡ªj¸','',0,'?'),(_binary '‘C\'¥!ŒS´ò>\ß','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/jquery-tiptip/jquery.tipTip.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gbròM}\ï]˜0¹pI©H*',_binary '…§\È\"\Â&9\ÂÍ‰\Ì|Ðžß„ýÁ¶”C\ÍÕˆXq‰\ì£b','',0,'?'),(_binary '•\'-ˆ,¢ ’}*uR±{','wp-content/plugins/woocommerce/src/Internal/Admin/RemoteFreeExtensions/RemoteFreeExtensionsDataSourcePoller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Â²$x_UÀ#5ŠV\Ù8¤',_binary 'ú\ìO\ÞQy6+Z„¿\Éò·wv“kZƒ \n\ä_Éžý³&','',0,'?'),(_binary '§^\ÕI–(…¨:ê¶¾','wp-content/plugins/woocommerce/assets/css/admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™D®A²·‚rÎ»\ÜÀ\à',_binary 'ˆ\ÇV¸ðoÌy¶ƒ¡hu¨\Ê	\"J~söKhø¦P?','',0,'?'),(_binary '´\êö¨Àp©¤R‹\ïNR\ï','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/cred/icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\âlmj\0\ÔM~tº…',_binary 'R}ª¥)\Ù>)€z\âC¼óo\á\'\ÂK«Q4ew','',0,'?'),(_binary '´\ë=“©uð‘Ü‘—ô\ì\Ï','wp-content/plugins/woocommerce/assets/css/woocommerce.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—›‹V\èF•E0U6nõL',_binary '­J+’ž\0I&œ]DxŒdŸ\Õve&b¢g¯ld\æðÀ','',0,'?'),(_binary '¶DÅ³\â’ó\íuøÍ°\î','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-advanced.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F/n†·‚8\Ø\Ù\Âf„r\Ô',_binary 'n\Û\Þ\ä\ÐUiIE?\Öÿ¤o?x3\î[½è¢‚\Û@z','',0,'?'),(_binary '½5ôy\Å\n±4¢\'šdI¶\Z','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-url.php',0,_binary 'Œ\à˜[R‹\ï\å	N\Ü(',_binary 'Œ\à˜[R‹\ï\å	N\Ü(',_binary '\0ˆ„w1\çñ±ÀN¶|\Üô]m\Í|jZ²\ßòhý???¼\ä','',0,'?'),(_binary '\Æ=\Å}Cð\ã\îið\ÜHT','wp-admin/network/profile.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E÷3úòª¼õõ@%°c ',_binary '©\\H\è.7\é\Þ\ë7QtUw\ÖÝ°AK,ù$A‹„!Ÿ·Lz','',0,'?'),(_binary '\Ë\Ýg+Ž™¿²\ç‘\Ê,c\ìž','wp-includes/block-supports/colors.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì&ª\îyµ\î‘\Í-•‹',_binary 'Îº\ãÎ‹\å$YŽiL_¬¦fJ\×D\äEK·\ïp\Ã\Ç\Ú.	@','',0,'?'),(_binary '\Óg¹›I†!Ù­\Ñ\Ç\Ö_\Æ','wp-includes/ms-blogs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YYw_sç°ƒ@	DE¬m',_binary '™~ÛƒG\á\ß,,?¨§0½\Ävú\Ðfƒ\ØUÓ§N£\ìiK','',0,'?'),(_binary '\Ù\×~M7šÈœiK”dXŒ','wp-content/themes/flatsome/assets/img/payment-icons/icon-venmo.svg.php',0,_binary '\è!²T³fÝ©\à\Õ%5Á^~',_binary '\è!²T³fÝ©\à\Õ%5Á^~',_binary '®@\"¬\Ö5{{”~D{n»\Å\×wh})\Þ{°²','',0,'?'),(_binary '\Ù\Üñt”DX¿m\0#\Ê(‚','wp-includes/customize/class-wp-customize-nav-menu-locations-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŽD±Œ]Ïƒ²–2+fX',_binary 'Ñ´g\íh‚\Ümsýê„‘\Ê\ë-vmQ\èIj³\Z]sQT9‡m','',0,'?'),(_binary '\Ü\å]/~ÿø\Õq¡¥XÅŽE','wp-includes/js/jquery/ui/button.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Æ\Ù`‘H–\Ç\Çó\íX\ÕvW',_binary 'üU\Ô2}–\ícú”FƒA\Õ\Ã\ÒI&ZžÃ¾WIÆ™ux','',0,'?'),(_binary '\í™g+‡Ÿ0Hº)%žø','wp-content/themes/flatsome/maintenance.php',0,_binary '#þÑš\è[\'«‹\à\Ö\ãþ8',_binary '#þÑš\è[\'«‹\à\Ö\ãþ8',_binary 'M\ï\É$\âT ò|\Ï;ùks‹”Mý¢§4–MT;S\Ë\\','',0,'?'),(_binary '\ï\ì‰Ì†,ø¼—$\ç¤','wp-content/themes/flatsome/inc/admin/envato_setup/presets/header-reset.php',0,_binary '\åø\Öô¥°®»\É\ß\Ì|\ä.',_binary '\åø\Öô¥°®»\É\ß\Ì|\ä.',_binary '\Ø\âžúf\Ø~8‘\âò¾ú ¶Xœ(Eg˜\ÜôGÞ“,','',0,'?'),(_binary 'h×Ro\Ð\Øm\Óû\ày','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/repository-refunded.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5ªO’\Ó\í\×Àû\Ò>\Ïw\ê',_binary 'z\è3x\"·\ëe?ª­\Þ\Êqƒÿ03–\ìy9R\âÿŸ\ä2','',0,'?'),(_binary 'È´<\Þ\ËhŠ (wM\ß','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/dist/gutenberg/style-index.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'º\î.#\ä‰\0,c-È¥zn\ç',_binary 'ñ\ÅD±Ga:?\âÀºJò·§\î4?\Ï>¥\èMs\ï ','',0,'?'),(_binary '\nÀû\ì\ìw=$h–ˆ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-list/product-list-item/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TP*É˜žh9ƒ —P®',_binary '½\í7(0?Û¿\Ò\ã‹‹v´u”¤\Ù$ñ\ì&“+¡®\è','',0,'?'),(_binary '÷\ë S¯žñE\rŸ2\\™','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-source-factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\Úð\Ít\Æ\í•X’…¡†Q',_binary 'Ê·\Ý0²\Óô\Ó÷\éÂ©\È\ÂE¢\äpË¼·\\E(®\ÆÁ','',0,'?'),(_binary '\Õö,¢™^s¢S+û†','wp-content/themes/flatsome/assets/img/payment-icons/icon-swish.svg.php',0,_binary '\Ùl¤†È»¡z\ä[\Ñ4}p',_binary '\Ùl¤†È»¡z\ä[\Ñ4}p',_binary 'ÚŸQUgš¸Jùö\r˜T\Å?t×¢ ¼¯J‘mLõ','',0,'?'),(_binary 'iÆƒ¤]\Ã\Î¸\èsZ+\é','wp-content/plugins/woocommerce/src/Internal/Admin/RemoteFreeExtensions/Init.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ðÁ&zJmüp\ÛBo©‘ú',_binary 'ªÕ\ê\ï\"¬	¼ÀÀ>]N¾m¹†%!†g)\\?bª','',0,'?'),(_binary '\Óe\îH\á÷9¾ø[\àû°1','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-items.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\Ú;!G‹~\èÃ˜\Ôd©¼',_binary 'E¤\0k€¯”\Þ@Zckv\ÓÁz•¯¹Ð¶ô€4æ›\Äª','',0,'?'),(_binary 'ú\ì0ògz›h/ª8œ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/shipping/has-shipping-rate.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—Þ–\Ð\n3È¿\ÛB¢R†Û¦˜',_binary '†:Aÿ[#f\à\\°»‘0\'#\ç¼1\ìŽCª½\ÐmEWŒ','',0,'?'),(_binary '#ó0þÜ³|\Ï@C”Ô˜','wp-content/themes/flatsome/inc/functions/function-fallbacks.php',0,_binary '“%+8”ó¢ER¯\'\ê',_binary '“%+8”ó¢ER¯\'\ê',_binary 'Gg\ÆF\Éf^–\ÄB0¨YQ&\ê^ó›\Ïñbò‚¯Y','',0,'?'),(_binary ':\nÝ¬oŽ\Å\âÛ·˜o\ë','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/price-format.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿñ¸\Ý5\ãMAe\Þú2¶',_binary '¾‹Uýh€Ÿ\íþ¡O•$\Ä1­†`\æ~²©2{ÿ\ëü\'','',0,'?'),(_binary '?\ßj\Î\ÛQFq\ÂGMý','wp-content/plugins/woocommerce/templates/content-single-product.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Õ\é\ÕL½\×À%\ØÀÚyEl',_binary 'Z#\Ù\ä\ê\Ê%¡²\ÝSL[HO\é¦\ÄZ1)þÂ‚j@C','',0,'?'),(_binary 'B\ã@R*G™xF4N}','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XSalsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£ž\'–_®?SÅŸ\Z]\ÍyŒ',_binary '¤6‹\Ð[-óŠ…,9YR¡r\Ú\rY\"-ø€anó²‘6$Š','',0,'?'),(_binary 'Rñˆ\\µ&ˆ†T	À|`','wp-includes/class-wp-user.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~¶r‘s\\Rôl‘¬zD\Ì|g',_binary '\n\É${Z«V	‹ôù\n\'®¿\Ôy|Ï›Vq†’»á­ª¸','',0,'?'),(_binary 'S\'\È œ\"–\ç\ë\à','wp-content/plugins/woocommerce/templates/cart/cart-item-data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5_\ÃÁ†\ì¢\Ã\ÒYù\ØD',_binary '~ñ ñÉš”+\Ö\Z²\n\ï\Â\È”PV\éc#¨\ÆUŸ\ä~\ÄmB','',0,'?'),(_binary 'a”\Z—,ò5ÎŠ¬ŠÀ{F','wp-content/plugins/woocommerce/src/Internal/Utilities/Users.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ï¹X\ÍU«_e<\ß(4\Ìw',_binary '%­¸\ã\Ô1óok\î\éc\îú>ðÞ gV{’Š\r\r˜[','',0,'?'),(_binary 'ma\×E‹\Ç3¬3†Fa+-','wp-content/plugins/woocommerce/assets/client/admin/number/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\0;>¦`Ÿ\Ìpu.5\Íq\Zþ',_binary '8µ\0=óY=J‹1\èÁ\åB\Â\×bä¥©§\Îü!\îM1d¨*V\Ì','',0,'?'),(_binary 'q	\Ì\Ù(wJ2Gºb3\É','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/schema/resolvers.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’\Â2z¾\Ù\Ç\Ó\Ú\n\á÷ù',_binary '¢1$°À\ßûŒ\Ó\àGA%S\r£‘yÒ«FhKrX(·Ev\à','',0,'?'),(_binary 't_z\å&œš\ÅUæ—œ\Ål\Z','wp-content/plugins/woocommerce/assets/js/frontend/address-i18n.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.Ü™\Â\îˆQxè­°‘\ØpX',_binary '¹\ß\Ù\'0\Å´‰ù\Ü\ëj^S™–\Ý0\æ\Ûf-´\Æ','',0,'?'),(_binary 'ttÌ¸\íT\é.\ï¡*Ã³U˜','wp-content/plugins/wordfence/modules/login-security/views/page/role.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\â!|3\Ôis:\à\Ö\ÓyŽ',_binary ']F‚\ÉÅ€\ÅT\Ý\åÝµô*\Ðb`u\Êó÷n\î\È9»¼\'(´','',0,'?'),(_binary 't‹Ì¦%’T\âY¦3´~ÿ2','wp-content/plugins/ti-woocommerce-wishlist/views/admin/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ð™ .ƒ‹J5n>k«w.',_binary 'õŸ\ÏÞ2£”\êüD’l“<ˆ©\Ôhõ¸MZVk ','',0,'?'),(_binary 'ynmÀ;˜/\ÐUsK	»¿','wp-includes/css/wp-embed-template-ie.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7{WP\ÛLó{H—\Ù©I\ç',_binary '\\aWq1Šº+ÿ\éÐ¯\Ùo•LöY\0\ÏÂ„K\à\î%<','',0,'?'),(_binary '|\Ú&;Œr¢Ls5ùŠ','wp-admin/includes/comment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸j\ëU\Ï\Î2ñŽ†·¼¿ø\ì',_binary 'y\ÐÔª­Ùª>tPn\ßÎžX!\'\ÜË•?\Ô\ÂA\èôE','',0,'?'),(_binary '~\ë“0<\\u&Í·n ','wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-nl_NL.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ\Ç{©\'\ÓE8+\È_¿­€…j',_binary '\ÂO\Ñ;\Ã=>Î¿\èy‹x\Ý9«4\Û\ÝGP|\ËEŸ‹YÏ¬\Ê','',0,'?'),(_binary 'Š¸:k$o\Þ>1\èdˆ','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/amex.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜\à¡6Q\Ð\Ù\à“½4\éVr',_binary '\è³pº4f\ãš\ÜEü­\â³P¦\ë–N.:,xaX','',0,'?'),(_binary '‹ö\ÂYe¸.ð0s–‚','wp-admin/includes/class-wp-comments-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')x\Ö&ƒ\ïÝƒReÉƒ«vd„',_binary '~Ð»fó¯\Ïû½HÖ¾˜KpA\ãž>ôð\ÖZq{úF–','',0,'?'),(_binary 'Ž\Ë,d$\\ZÞŸ^Wu\Õ','wp-includes/blocks/buttons/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z¨·9B\â\"7 \Û>dò',_binary '97\n­ \ÑÑ±\îJO\ÅÃ§ÁhA“a\î-&—h\ê\r\Ç','',0,'?'),(_binary '’A\ç“o\r÷ZÔ”_št','wp-content/plugins/wordfence/views/waf/waf-uninstall.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñ˜…ŠÁý8³9a',_binary 'ŸsvZ¹÷\ä\Õkr\r\äø¢\ÚÜˆD:auu»Á\Õ\éù','',0,'?'),(_binary '˜¤Hõ7²FŠ\Z±\Â`\n','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-image.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']ø\Þj\ÞM\ÅQ½ò©®',_binary 'w0®8vƒY\ÛWþ+š\íô\Ð\Í\0\Ó\á¾\'Ç– #§5','',0,'?'),(_binary 'š¾»öó\ßlŸ*G›','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/button/attributes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Uÿ‘gfZ\Óº‹\ç¨',_binary '^¢ý°º9”av–1…\â=ŠFò\áZºS¡]K@O\Ö\ï\"','',0,'?'),(_binary '›]#%`÷¹S#\ÂK“\å“\Ò','wp-content/themes/flatsome/template-parts/footer/footer-simple.php',0,_binary 'óMF¤\\©\Ë-P_¥\Ô\\\Ï\Þ',_binary 'óMF¤\\©\Ë-P_¥\Ô\\\Ï\Þ',_binary '\×ñ±÷±\Ìõ¿\Ö\ØW¥³¼H¿{ónø2F)õ¤','',0,'?'),(_binary ' I-½\Ð\ä\'\Ô\ê?™1\ÎUB','wp-content/themes/flatsome/template-parts/header/partials/element-newsletter-sidebar.php',0,_binary '}¡ELóZ‰_õ§ˆ',_binary '}¡ELóZ‰_õ§ˆ',_binary 'Q)Šó\æõ)\År¶ƒˆ\Ñ7p 7V=\á·\ï2T©t','',0,'?'),(_binary '¡\Ð\'-ôp\Ú-\Ïûñf¢','wp-admin/css/l10n-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xmÇ|\á“sø\ÊÁ£A½',_binary ']‹\Ó%FL\è\nI\ÎL«ñl«\ç£\Åf426G\ê¸\ã\'“™','',0,'?'),(_binary '¥sN\"DA”À|_™\â\r','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-cart.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥H\ìs;0€™RA ',_binary '»ö§c\Ð\ZcB”STñ\Zº\ÈDõ| i!\ì˜¦7š÷9=2','',0,'?'),(_binary '¦X·vCºŠ%\Ù\áh™\r','wp-content/plugins/woocommerce/assets/js/frontend/tokenization-form.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '° •õZ‹\nÚ’‘õ\ì\ß\È',_binary '\Æx¨Zo_\Åy\Úø÷Êœ	E…¿\ígù\Ðö»h€Q÷R\åÕ»\Ì','',0,'?'),(_binary '§?†¶o\nÍ¦Môüe]†','wp-content/plugins/products-compare-for-woocommerce/style_templates/nice-green/berocket-nice-green.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»\ÃÅ™e˜9\ßc©79\ì',_binary 'V S·\áv\ã~?…o\nf‹n\í+Œ€\Ù\És\\¸Í¾','',0,'?'),(_binary '©Ur®ñûX.DU™{','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/quantity-selector/stories/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b1sa\Ò0®ÁŠû—´',_binary '›©b\Ï\n¼A\Ë\n©p]CÁ{%\Óž£\ÒT?\ä\'','',0,'?'),(_binary '´ÁjðÖ¹J‚\Üþ‘ö0Y','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/X25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p§0W\"F)”\ÏŽ“8O£',_binary '©5¬œð)&\Ú\ÙBoK]®¯¤Ø»Žó–rm`%®\ÊhöO','',0,'?'),(_binary '¶J\á»×ºJ\î‰\Ù2ª.','wp-content/themes/flatsome/assets/img/payment-icons/icon-mollie.svg.php',0,_binary 'd®i¬W0|¸–QP\áV\ät',_binary 'd®i¬W0|¸–QP\áV\ät',_binary '\Úø,k\îøa%›	Þ¸7\Ý4°CiQ3\ß|ŒÁ\'\Ç\â\ä','',0,'?'),(_binary '·o7Mopy¬\È\\½ÿ(','wp-content/themes/flatsome/inc/extensions/flatsome-cookie-notice/flatsome-cookie-notice.php',0,_binary '?ix\Û\Ïù\É\í‰\ã€ð$‹',_binary '?ix\Û\Ïù\É\í‰\ã€ð$‹',_binary '\Ïõz»\â®\Ê3{Y¸Ÿ]ú\'¯.\Þ\"\Ø\ÆQ¤¦m8','',0,'?'),(_binary '¼4ùÐ½Wz\ç2\Â\Ë4g','wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Shipping/VariableCost.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×/1ñª»õ\rJ~QñL\ÚF',_binary '\ì\É\èP\Ã`dù¯\Ùm‚ñ\ÒDu:Ý‘Ø¬÷<ðt\0Y','',0,'?'),(_binary '\Â 	\È@£=i‹„lŽ\Ü','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/tag/test/__snapshots__/index.js.snap',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9Ÿ­\ì¼?+ú\ï‘Ð‹I',_binary 'Ý™\é7,õU	œEžƒR:‹)\à!Ò“6-žõ\èWY','',0,'?'),(_binary '\ÄQ%rT>\á!÷e_zE\Æ\Æ','wp-content/themes/twentytwentyone/inc/back-compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™h\î \á¾m4Kl[jG',_binary '\'\Ûßš”ó¾\0¯`q\Ð\çôÖ¶p\ä~Œr\ÉI€{¾','',0,'?'),(_binary 'Ï²ŒX²lÄ†¡\0 \Ó\Ú1½','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/ref-sites/icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#˜£Py	½	\nkh?\Ø/m',_binary 'û0Â k>\ê:{H\ãHl¸ mYü \'N\á\ÕIi6€','',0,'?'),(_binary '\Ý\"\Ç<	i t÷\ß&\Ý','wp-admin/css/colors/modern/colors.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘<m«¤V1]˜\Íþð\î\n',_binary ' H\ï\r,ŒJ·-\Ö°ÿ*¯c#†µ\ãÁ4\êt¢\æ','',0,'?'),(_binary '\à&?·4¤W{h\èù\nB','wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/TaskList.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®²G‹4 \ïQ$/YZVÞ«',_binary '	\èJ“³I\Ã\îñ|\ã|\\ò\0ðxŸ\í\ï#&¹½\ãÁUD\Ö\ê[','',0,'?'),(_binary '\á\ï,\"¥w8F\\‰“‹ö\Z0','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-settings.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q‰õ\Ç0ø˜…%3Ç¢Z\0¥ˆ',_binary '6¸\àCðh\Ãkç™‚š\r0ø\×KóCB%ë©©½ü','',0,'?'),(_binary '\ä\Ãy‰I,\ØNŽÿ\Ô\Û','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-3-col.svg',0,_binary '%\ÓÄ ;Î’>¹f}ûp˜@w',_binary '%\ÓÄ ;Î’>¹f}ûp˜@w',_binary 'ö9$€µ2X`1\ì]¨ÁÔ¬™Y\\»G¿¼¼¯öM§','',0,'?'),(_binary '\é©m¯\Æ\Öó\ÂI\ä	&9','wp-content/plugins/woocommerce/includes/class-wc-customer-download.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–PD\êôY]ð\Úª ‘¢]',_binary '\à \å3òah¼€\å˜:\Â/\á\Ûy;)6 \æ\É\r','',0,'?'),(_binary 'ó…\r¿W\0¯ý64©XS','wp-content/plugins/woocommerce/assets/js/frontend/password-strength-meter.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°w³$;KóÛ“¾O¾+@\á',_binary '‡etoAÆŸ»¾\Ý$\è²\â­b®\ÇZV¾\ä2’lŒ„\Ýõ','',0,'?'),(_binary 'û¨0wc`\Ø£78\ÔŸM','wp-includes/blocks/gallery/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\ÍüˆyÐ“\ÓðL+¤ƒ5¦	',_binary 'Œò´z\Û\ì—W·˜\é&G\ßôb\Çðü…þ\Û`xp\çd—\Ò','',0,'?'),(_binary '\0?r\Î<ùu\ÎÂœ™Z','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!fŒ5;\ÙK=s¥.9S\Ø',_binary '°\ç©v	¶À¿ lg÷wŽ4m\Ö\\ôú3G[\ä¬É€E+m\Ù','',0,'?'),(_binary 'šy•\í~x \Ø;#eÀ}','wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src/CssInliner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3“,Â•n‘\ã’\äg\Ð<)[‚',_binary '¹kšbj;R>\Õz[w^;\\®M¯¢.uø\ì€rD‹l^','',0,'?'),(_binary 'ý\á˜\á\í¤;»\nY‰fy','wp-content/plugins/woocommerce/legacy/css/jquery-ui/images/ui-icons_cd0a0a_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p‚~„¬\èþ\èó%™.',_binary 'DÇ‘”\àÀX†TRœ;\nŠ·\Èß£”_ÀGùPù%ÿG¸1¤','',0,'?'),(_binary '›\n\ìôŠ)gß¯2›•','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/languages/yith-plugin-fw-nl_NL.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I…\ÆÅ€\Î\Én\Ìz%&Iõ¢#',_binary '\Èó	\"	;‰[`}Á\ÉÖ‹Ž®\×.Y\ë4´cŒ+{','',0,'?'),(_binary '¢\á0`qw\ÂLG3N&7','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-vendors.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F°À\ÑGN\äz‡\á\Ì5g',_binary 'Kºr$±»†vS¯›\ÎI#õa(\ß°»„\Æ~…)\ÖL\Ú','',0,'?'),(_binary '1†HÄ¸)\æ`\ï…”a','wp-content/plugins/woocommerce/assets/images/admin_notes/marketing-jetpack-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨t#0\î\ë¼ò\Ô\í\Ä\0f',_binary '®A2òðfˆ(u2\ÃE\"Ÿs?ñÒ´\n\Ý+<U','',0,'?'),(_binary 'C(12„V\ÊüŽ\ÆK\ê','wp-content/plugins/woocommerce-currency-switcher/views/widgets/rates.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Í\í¢\ÉÿQ\Í\ÐÁ¦9|',_binary '$r;\ÒO\Ù!\à’v\Î}\Î]û¤”5\ê\ÆnŠJ¿\á;¡','',0,'?'),(_binary ' \Þ}\ç\É6\Ã5~D\Åoù','wp-content/plugins/woocommerce-multilingual/res/js/pointer.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÈüõgU\\x~w „Y\ß',_binary 'ýô2Žr–&/\äÈ¬\ã\Åð\\1û\ç0Á3TX\Ì\Â\Æ','',0,'?'),(_binary ',ñ‹#ù:ø\ïô§‰„\Å8\Ü','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ShippingAddressSchema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ\'\Ì\ÍV&<\Æ;XZ×¬f\Ñ',_binary '*õ«€¢Fy‘;\ë\Þ\Åù=Ò””f}©d;k\Ða@G¶Š','',0,'?'),(_binary '/\í\Øx\ÉQ\ÇŸ\ê¦zk\Û','wp-content/plugins/woocommerce/src/Admin/API/Reports/Variations/Query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']4\Øó\Ù\äR\Ü¶Xñi\Þ',_binary 'p¡SŸrU\Üb\Û<Ì¤­2\Z\Þv˜X•k\ØWý‹O0\Ò','',0,'?'),(_binary '4æ± ‰\" Œ\ÃiŠ‹hÅ®','wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe-ui-default.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ú\à\íLd…\í\Ïn\Þxö',_binary 'F\ëú·\ÞQM\äý:oCú*Çš\íY7µºR6©ü\Ê\ì–VŒ','',0,'?'),(_binary '9‚kŠÉ½ öJZ¥‹<','wp-content/themes/twentytwenty/searchform.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4hž·%<ñ‰Wç£³¥',_binary '\í]»\êÏ‹S¤\'\ï„\ï/bQ^ŒDõt’B¨Î‰iƒ »','',0,'?'),(_binary 'A¼ñŸ§¶»•f*k½\ì\Æ','wp-includes/blocks/navigation/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…ðjj\â\ê<øH³\Ñy~x',_binary '\É:¦ž2´*ðº\çÄ¡.«U\èÊ¿úVø<pO1o','',0,'?'),(_binary 'L\ä\åbP\Þ-I×­1f€','wp-includes/theme-compat/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œsö¦<wü!µˆ1',_binary 'q\Ê2\åÕµ\Â\ÐûÏ¢>r\ã‘7Nj\è¤	D—^ƒ\ïA5\r','',0,'?'),(_binary 'N&yû\Åø¾Fk\Â\å\Øi','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Domain/Services/FeatureGating.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3ƒ\î3>s(ö‘ªƒxÒŽ\ë',_binary 'Ì»3‚\"ÿŠ\ÔDýp\ê&q\0·1i\Ñ|`\É	g\ÉWü…R\Ô\Ä','',0,'?'),(_binary 'N¡d#R­‡+«Ár\0s[','wp-content/plugins/wordfence/views/reports/activity-report.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÒŽ?ue\ÓwD•:ž¬E\î',_binary '\ê°\ÃÎ¶ˆ\Z\à\Þ)v¢µ\ÕvG\ïŸ,\éhü/—Óˆ„','',0,'?'),(_binary 'O¥s–\Ì?©©lµ¬p','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/grids/grid-2.svg',0,_binary '\Ø\Êü±·pKV8ÿ\ì¡l ¿',_binary '\Ø\Êü±·pKV8ÿ\ì¡l ¿',_binary '\Ø[%\åü\î_`\ë\ä5-¶øv³#öK—R÷³³\Ø\Ö','',0,'?'),(_binary 'Vý¸\rg$3Œ0ñ\ÓU','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings/shared/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·‰ÿ%\ÌÔ“q¸ý=¬\ß',_binary '\ÙX\ZŽu,\ï:±Ìœg-\"T\Z’\Ï\Ý%\ïY\ÎÈµ\áv­¹‘','',0,'?'),(_binary 'X^”\äR¶Œ*¨vy','wp-content/plugins/woocommerce/legacy/css/auth.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÏY²\0¢¬\ØÀ­Rve^e‡',_binary 'ZŠûC9{T‡¸®\ÅQ¢A\Ãû\ç\n\Ü/\êg\ÙXQžó','',0,'?'),(_binary 'X].V–S9\Ü&§·akýM','wp-content/plugins/woocommerce-multilingual/templates/store-urls/store-urls.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Å™“V¶NRõ\Ú}HNA¾²',_binary '0k\0Q«ó1L”\å=F“f{‘mÿŸ±sL~\r$\Ò\\@Œ','',0,'?'),(_binary '[H\æ#Ü¯XµÿŒ‡\ÌE','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-middleware.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|u\ÕfX¤–0\Ù5ÿ,I&',_binary '!£\ãÊƒÉÕƒ/\Û\ZêŒ’>*\r_\ÂX)õ„Œ&«2¶','',0,'?'),(_binary 't‰Ž®‘\Äô!\æ\Z‡%\n','wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\á,}vÄ¨3¼õGÀ\â)©',_binary 'E½r4@\0¸Ô¡$¦\âz\æú3ð¸$l²\ê\Z\Ð`i\äex\Ãl\Ê','',0,'?'),(_binary 'ö\ä÷Û¯u®ò\ìlŠýv','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/MiniCart.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"-º-(}I\Âù¹\Óór(',_binary '7»	¿+Ë¯öŽg\ÈXò™a\Ë\Ý2-3õ¯	\àÞ¯\î','',0,'?'),(_binary '†\æ\á¦\äFy´\Õ\î\ÐP¦','wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-processing-order.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r¡½\r•ó¤_\ßð•\éK',_binary 'W0Ô¦O±–šYƒ\ìfñµ\æ]ôÀ:ð\ÊOoKñÀg','',0,'?'),(_binary '“Ò”(öd–¯K×¾‹\Ï\Zù','wp-content/plugins/yith-woocommerce-compare/assets/images/11-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#	6b\Õ`²ý\Øöuü²z',_binary 'B\Ð\ÑÔ…¼2ô\Ü.R<c’ oð\Ñ! ˆ„\Ïžn™ù\È\n','',0,'?'),(_binary '“\ì8ö$	 |DV\Þ5','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/media-right-dark.svg',0,_binary '³õNÄ—1\\‚\Çmm@¿H©',_binary '³õNÄ—1\\‚\Çmm@¿H©',_binary '\Æ\æ)I>\î4òzGgdv•\åñkÒ±+fp¡<…Ë®9','',0,'?'),(_binary '—IÊº\åºW\áed\nŸ\Ç\í','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-gradients.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"=j…8“t3µµ\à¸<6ú\n',_binary '!Iñ¢_//ú\ÍgôF\Äb—À\í¬\ÅFe$„ð#\ÜL-(]™–','',0,'?'),(_binary '—O3S¯›6\åP\Æ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/templates/templates/single-product.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oCdi1´ o‘è°Š?—ñm',_binary '¯ ‡4ùÿ\Ä\á¼E\æaõµ{]\ã=\åVN´\ì,l\Z	w£¥','',0,'?'),(_binary '˜{…\éY\Â\\ÀzéŒ¿°}c','wp-includes/images/smilies/rolleyes.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ¾¾ðO…2\ßOfÝ£i',_binary 'fK\É)¾\n\êdù¦!]\r)÷\ï¶\\}\æ\ã\â×–l\Îõ^’\ã','',0,'?'),(_binary '¡\Z\ÌC_WÏ•-È	3','wp-content/plugins/wordfence/modules/login-security/js/login.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g‚™xŸ\"¢!ƒÙ‚\0§\Åy',_binary '[ºJo\àw¡¹ð¢\Ð-¶\Ú`™3¥\ïª\Ã\ß-ýaQ','',0,'?'),(_binary '¡Ü¼deöó.‹\ì#u±','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/schema/test/selectors.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÖÑ«\\\ïözÙ¬ÀóC\Z',_binary 'q©\ÚXh\ê\Ù7\×\é\ËñP‹‹\ê\Ú0k+j8œø€¤\Çq6','',0,'?'),(_binary '¤\Úô‰W°\àšÍ 0[Bœ','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Shortcut/ElementParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5¬\åŒ\0L\Ó\Þ\Ê[ÿ¥¹±˜',_binary '-¹\çlTþo‹Bm–9C*°L@´\Û`k¾\ê8€é”6´¤ª','',0,'?'),(_binary '¥ûO$œ\Í\ÅÅ „õ\êt:','wp-content/plugins/woocommerce-multilingual/res/js/admin-currency-selector.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­A‰º \'\n\\ü\Ï\ØPpgc',_binary 'R\Ö„`a >€Í‡½¸‘6dvƒøfg”»‰•:','',0,'?'),(_binary '­\ã5\çò+E| t¥Gò´','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductSearch.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ê±÷\ë8‹\'n§Ç´rû¥',_binary '\á”\çM¡\çu\ìjú\â`:–+\ÉÍ±\é\ÝYr³¢j','',0,'?'),(_binary '°\å#N\Ì\ïIdñ\ê','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/yith-select2-no-wc.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\éÒš\'\Ü\\n<8>ö±Ò ',_binary '¾Æ¨/óúHW|n£ƒ™K\Z\\\ë_\åDóg	ˆ8XJ\Ì','',0,'?'),(_binary '»¶8wy\×\ÂVåŸ˜\î+!','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/test/address.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾“jÌ“Ã“r‰—k\Õ÷¤',_binary '\ÊEŸ`qü\rr\ÚnF\ê¼F\ÜA\Üô­\ßaÏ–žÈ¾…i\'«ô','',0,'?'),(_binary '¿Qžze/„gD\'r„\×cg','wp-content/plugins/ti-woocommerce-wishlist/includes/notice.helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú\ì\Ë¢\ÍÀ\Ã\Ï7\Ù\rZr',_binary 'Jn\Û	Bq\Úòžœ\Ö\'\Ì\nµZ$\Ù\ÐR\Þ\é\Ø\ÉöQõ¬¹','',0,'?'),(_binary '¿œ›-\ã §\í\"\"F6','wp-content/themes/twentytwenty/classes/class-twentytwenty-non-latin-languages.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ö™5|a™{9,‡‘+w–',_binary 'q¬e¿&\rCv„\Õ2\át`Ë¢\0ô·d\å¸†x-\ÝIx6','',0,'?'),(_binary 'Á’­{üò&7û¸\ï\Z\Ñ','wp-content/plugins/woocommerce/includes/admin/views/html-notice-legacy-shipping.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚· #ÿoøþƒ&A\ë\à3',_binary '\ï\É,` –ð²°2&\ÆK“÷ö`ru¯8_\Ê\Å\Æ•-©','',0,'?'),(_binary '\Ñ0§\ÙhÝ©¯¾ƒ§Ù¦¢\Ç','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-editor.php',0,_binary '\Ò\ê^ ¥ú¿\ØlúÁ\Å\á\Ð',_binary '\Ò\ê^ ¥ú¿\ØlúÁ\Å\á\Ð',_binary 'Pƒ\Åj\ãœk\ÉÈŒ™\È$»g‹P!5\Õ\Ígey\ÛBi½','',0,'?'),(_binary '\äHv\Ü\ê\Ú\îz\ÐEœ\"ZG','wp-content/themes/twentytwentytwo/inc/patterns/header-large-dark.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>°)¬Bú›¨1Z{†\ïE\ß',_binary 'J\':}¥¥›½-\Ü`\êýƒ\àùðX\Z\Þ—$\Ú\ãž\\\ê','',0,'?'),(_binary 'ð“?½\0\Ò\Õl º—\Ê.þ','wp-includes/class-wp-application-passwords.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œÉˆn—}i.uÄô',_binary 'a•JB´Ò†ˆ/ƒŒ£\'\Ï7Í™mbÞ\è?\"¬ŒC¹\Ï','',0,'?'),(_binary 'ô2p)´‹t¤­I\í\î³','wp-content/plugins/wordfence/modules/login-security/classes/model/settings/db.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' Š\ïþ\Ö\0°\">y>=À®£\Ç',_binary 'xVQ/}€ç¾:(3&þ\Ñ\å¹%¢U‘¤JoªÿC','',0,'?'),(_binary 'õ\Ó\Æò\ßHŸxN\ÛAEzG','wp-content/plugins/woocommerce/src/Admin/Overrides/OrderTraits.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{Æ°\Z{ð¿\"ª´¿\Ì\Âp\Ì]',_binary '¦0\Z€\â½9º!Œ,0Oð\çC…s\í \èmx','',0,'?'),(_binary 'ö¦ˆ\ïôqk*t \Ã\âQ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductCollectionData.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\È\Û9™û\éÅ³1}³d\Ü+',_binary '¢Zs[!2\Ò«h\Þ7e ¢ø<*Ò‹K.®°¾\nøƒ','',0,'?'),(_binary 'û«€\Ø\éoŽRb­þ','wp-includes/js/dist/url.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JMô\ä¢\æOfžT¡øq\è',_binary '£ú\Õ†¢3”\ÌN‘\è’^\çü\äI¤˜t\"n\íÿY[û','',0,'?'),(_binary ' ŠÜ•0ù“Ì–K·*','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®\â0¡\Ýv¿-ª­T8',_binary 'i;\ÔøHÊ³=wR\çmö‡:þ\ßó@¨‡¢6C|Q	,‡','',0,'?'),(_binary ' Þô/î›°„É¶5l4½','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library/fields.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ã\ÜÇ¿ü\"c…ò\\\×\Óe\ÇOT',_binary '\í!\àÙ¦‚¾m÷j-±áœ¼)n>\ãìŒµQo¾xÇ–6°m','',0,'?'),(_binary ' \r\éžø·-\èUzœ\rþaK','wp-includes/blocks/pullquote/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´ªP§*¶aÃµ\ØÄ­·c\ÃF',_binary '6‹\Ì\æÊƒ\È\\-R=÷üpZ¼Íª™\\4ùŽŒJ','',0,'?'),(_binary ' övJ\æ4}u\çxZß\Â','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/products/repository/OTGS_Products_Bucket_Repository_Factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ó\í«O”\ë\Ö\Å\Û\nP\ÐA\Ê',_binary '\îÀHX$(\á¯iwjýŸ¡\Öt`z\é\á\î=?»\Ë\à\Ò','',0,'?'),(_binary ' ­es(N^Œ¡+q¢','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-phpunit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2µMEÆ±··(\àˆ¢¿(',_binary 'E\í”þ’a\Æ\r\âf U\×DLbV¨ÒªW#s\Ës¹†','',0,'?'),(_binary ' \è\áÉ‰:\Ésž{1<¶','wp-includes/blocks/embed/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x¸ûx\Z ™\Ç3;)ñ“\åg',_binary '\ïP\0DeN€¦^ùg^´`\Zˆ\Ú;|U…–üôÀZL','',0,'?'),(_binary ' $XÄ !\ã\0˜¦=(¶\å\ï','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/RuleSet/AtRuleSet.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Üd?xt\ß\Ñ3®¢cc\Ë',_binary '°\å¤0m\á\î\n\ÃWO¡ôÿ*,m\Óý^;Ÿ¥	\Ã_Q','',0,'?'),(_binary ' %wH\àŒˆUÃ›^Š+½ž','wp-content/plugins/woocommerce-currency-switcher/classes/fixed/fixed_amount.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C¤Ö” ˆY/A\é\æG\î\ßú',_binary '3n\ÄdE\Û\Åw\Ûz¢“ù\"}¡\ßC¬\ÛS.JG6u=‘h','',0,'?'),(_binary ' \'\Ó\Òª_U;0˜/<\Â','wp-admin/includes/class-bulk-theme-upgrader-skin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\ï:y\ãx1s)¬˜’‹',_binary '‰Ï¹\Åƒ\çÝ¶1SXCTÚ¼ƒ<\áÚŠh`‰\ÂòV','',0,'?'),(_binary ' (Z°W\Í\Ô\Ò)}€L\Ý','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1!»l¨\Í\ÆnP%a,]‰{?',_binary 'e˜vÐ†P~%\íü©‹¶\ãD8µYH)‰h/\ÕR†±B^+','',0,'?'),(_binary ' (†#9o\ë\ç&~F?€\Â+','wp-content/themes/flatsome/inc/classes/class-uxthemes-api.php',0,_binary 'Ÿ\ãøe9K\Âñ\rL^ô',_binary 'Ÿ\ãøe9K\Âñ\rL^ô',_binary ' w@™0\än}§@ýbIÍ¬û/\ÎKQCYG“‰R','',0,'?'),(_binary ' *@ADÒ“ˆ=pu°˜\ÓE','wp-admin/user-new.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—h.yµh\Ò ¦‹T\Ô\Ý\ê',_binary '!6¢\Ù\Î ùURdXC›iÁ\Ñ\Þ\ëÿd\Ëõ80l\ç\Ô','',0,'?'),(_binary ' 1\ä[\":ù\Ù\Ân:(\\ø-','wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/unionpay.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼F\äØ´fŠ¯·3±¨\Æ\ZÁ\Ø',_binary '«O\ïX‡Tu+f¨\å\Ö\ÈZ7\0m\Ñxpa¼¨—\Æ\É','',0,'?'),(_binary ' 5\ÔñrD›g»ç±ƒ¾','wp-content/plugins/wordfence/views/dashboard/options-group-license.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜\\œ\ÂOƒøR™SŽ',_binary ']\æ\ßJo—–k„¥qK\Í$\Zñ\å\èüÈ¥ytÁ\'\Ö','',0,'?'),(_binary ' <@¾s”†\î\r\Ã\ÅF¨Œ/','wp-includes/Requests/Exception/HTTP/305.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xø÷\0K\ë\æ/`¡,û«&',_binary 'H\ÄÆŽù—\Ý\Ë+@µI\ë·\Üb‡š^=¶QvM6_iL','',0,'?'),(_binary ' >\ã\Ïw>€\ì\ä\ÑŸ','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/webfonts/fa-solid-900.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ˜\ì}¹mQSb)?\í6',_binary '·‡‚¿\Î·7±2\ï,ñ„:‡_t¬/\Ø2K?YÏŒ#','',0,'?'),(_binary ' C•g\':3G\é[{¼','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-downloads.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Tüù^£ñ”\ÞLu\ã*Í‘',_binary '´!Ü\Ù~Åºm¦‹C›\çÁ+³{\Æ\ÂIXª\Ò:®\Ï','',0,'?'),(_binary ' `a%§\É\'¤o<Ï¦@._','wp-content/plugins/nextend-facebook-connect/admin/images/nsl-logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·\Ð\ÊT^Eš|\Ò\íõ\ïð<R',_binary 'vCf\írõ(„µPkØ©=¤m\0¿0\â\Ð2]¨H¡q«8','',0,'?'),(_binary ' h\Î^6\Ö[\É\ÖZ°=\äP8','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/attributes.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R<&f\ÇÜ #c01\ÝM',_binary '\á\Ül>Ô!\åim\Zg\íºG¶\ÍÞ…\0§Š¬kÀU4\ïc','',0,'?'),(_binary ' u‹\ê=‘Yò9V\ê4\ä\ÐI','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/shipping-rates-control-package/package-rates.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nt‰RÚ¯\æP\ç²f±‡\Ç?„',_binary '\' iù*%GdŠ5ƒt\"Yj …Lu\ÕRL¦\çþÁ‘ó	','',0,'?'),(_binary ' vO\Ã6Š*†BªŒ¢\â','wp-content/themes/flatsome/assets/img/payment-icons/icon-six.svg.php',0,_binary '2¹\r9«\ÊQs«¸Pp',_binary '2¹\r9«\ÊQs«¸Pp',_binary '«R\å~Œ5DV¹!v99T,\Æ6 =f·@Ì¡G÷¡','',0,'?'),(_binary ' {UH¢o½w~?$V','wp-content/plugins/woocommerce/legacy/js/admin/meta-boxes-order.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\È^ñô\Ô÷\Ìv^q?§…\Ç$?',_binary '¸4pœ\Ý;óiõÑ¤I(+>{EJ]\é\âò¿ƒ3}ƒw','',0,'?'),(_binary ' |\Ý\Ë{§²\Â\"d>\nc','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®\â0¡\Ýv¿-ª­T8',_binary 'i;\ÔøHÊ³=wR\çmö‡:þ\ßó@¨‡¢6C|Q	,‡','',0,'?'),(_binary ' •yÁ>4œl»°gR\Ó','wp-includes/blocks/query-pagination-numbers/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰¶g\ÄZ\á† 8¬Zœ',_binary '\Ë\Ðy¸ ¾q\Þ\Ñk»ó\Òj°¯»|\æ¼gY{Š‘\Ì','',0,'?'),(_binary ' –¬ð=úˆù“g\åV¡|\ç','wp-content/themes/twentytwenty/inc/template-tags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½[º°~h\å~;<\Ðb»8„',_binary '´\Ã’(a¯f¹\â\n…‚Hª“Æ„F\âeŽM•O\êóƒ','',0,'?'),(_binary ' ŸG¶Ê´©¨GtØ‘›¤','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/BLAKE2b.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­OÅ«3¤(	ia•Y³\Ó\Õ(',_binary 'ñ\Õ\Å\ï”%®\Þ\Z0b­Á[u\áˆ#‘v.Ÿ_«\â	O³=0','',0,'?'),(_binary ' ¨C]0w‘E¯R=¿·\å‰','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Node/Specificity.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\íhÊŒ –ð¯øi.vª\Î',_binary ']wJ¾]^ƒnlW\Ë5\â€Ø‰\Ù3¿6)\0\È','',0,'?'),(_binary ' ªù±9?\'\àH\ê\áª\ß\Ð','wp-content/plugins/woocommerce/assets/client/admin/payment-recommendations/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}4aœ\áH¦\\¨nÛ’',_binary 'lÐ®\Þd\Î!Û³­öxº¿Šr/H~\ìú%‹6\Èó†\â','',0,'?'),(_binary ' ¬z¾z{úðòôL‚ŠH','wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^ž\"3R0š\Æ§»\å¹',_binary '»•zƒm1¢\ÊxJ g\ÝÐ¬ùxs\ÜsIÑ»Ë¸“2','',0,'?'),(_binary ' ´¼¦\Ø\Þ/aóŠ\ëu·Q/','wp-content/themes/flatsome/inc/classes/class-flatsome-options.php',0,_binary 'øÁÌ«\Ñw—\âÿT,%{{“',_binary 'øÁÌ«\Ñw—\âÿT,%{{“',_binary '- ™¡„ÿ/u\Ã\ZHñA\åto÷\ç\ÅMY\Ç	 »³­~\ÒzG','',0,'?'),(_binary ' ´={½\ßq¸‹>³F\Â9\ë\à','wp-content/plugins/woocommerce/templates/checkout/form-coupon.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rŸ2ýõwciƒ\Ìp\âŽ\\',_binary 'ýŸ”û\ÈPFD³¬u\Úje½\á¢2rn\ÜŠ»v\Ú\ã','',0,'?'),(_binary ' µô\í\\Ó±\Ó?	Ë¹¾\ç','wp-content/plugins/woocommerce/assets/images/klarna-black.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“²Z\ì%Œ·i°R$u\Ð:•',_binary '\\8]%£ÁÆµòö¬‹*/>¾Tlk\Ð\ãÎŸJ=Š','',0,'?'),(_binary ' \Ì\r$	QŠ^C(\ØÀ\í\äõ','wp-includes/Requests/Exception/HTTP/505.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñ\Þ)Y{¨Q¶ú\Ç[”õ',_binary '\Ëâ­›\Åû i\ë{\ÈPA\ÄÍ†k\Îûñúd©¤‡M\n©Œ','',0,'?'),(_binary ' ×!\ÕwSqmg3˜\ëT','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}‰–=\æ%ü¿“7\\\Ñ8V',_binary '©wH’p\í\é[\Þw¼2ž@u\Z£‰\"LH«·a6˜Q¦','',0,'?'),(_binary ' \Ûo?\ÃúRšz}Œ\êl„£','wp-content/themes/flatsome/inc/admin/kirki/modules/webfonts/class-kirki-fonts.php',0,_binary '¾qh\ÍX$)+ž¯Bs¦',_binary '¾qh\ÍX$)+ž¯Bs¦',_binary '§\\m9!×—÷Tôa¼(MŸúƒ±\07Gxy?g54GnZ','',0,'?'),(_binary ' \àôcÌ«)IŒ\np,Í‘«ƒ','wp-includes/css/jquery-ui-dialog-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xs!\ë¯‘˜ðU,U\ç \à\É',_binary 'Y  4þ0ø¨\Ç@©³>Wb³5!4\Çü·','',0,'?'),(_binary ' \ã“LyUÌ¥:ùžR\É','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/order-notes/test/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\åP¸¥PØ’¼A¬)7\Îe',_binary '\á\Åk‚dœrKjš³tÒª¬³_u[u€$\åG\Ú%','',0,'?'),(_binary ' õ<”ù•c¿Ê†¶w\ß~','wp-content/themes/flatsome/inc/shortcodes/titles_dividers.php',0,_binary '{*rÿÎ v)¨œ\ã¬g',_binary '{*rÿÎ v)¨œ\ã¬g',_binary 'M\Ñ	&@\Ú1>Ó \0ø\â^6#PQ\ç;©\ßn8„Ávú','',0,'?'),(_binary ' õV\Ù%Ë¹To\ZZýf','wp-content/themes/flatsome/template-parts/portfolio/portfolio-next-prev.php',0,_binary 'vŽ\\Á\"‚ >”Bº\Ç\Ör',_binary 'vŽ\\Á\"‚ >”Bº\Ç\Ör',_binary 'l°¶A\Úw¬J…s¶/\Ê\çh8ri¸U-¥Nl\noçˆM','',0,'?'),(_binary ' öÀ’Ž…t4${\ÊSE','wp-includes/blocks/categories/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\ç?BŸ¬ŠwHÏ“b\Ü',_binary '1\Ï;\à 	\nolÁ\rK~qR\Ã@\"Ÿ\ÝÖ¿\'y“:´=[\Å','',0,'?'),(_binary ' úßª@ý\Z,\æCô\ÑQÓ˜','wp-content/plugins/woocommerce-multilingual/classes/currencies/class-wcml-currencies.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ìó_Àý\Øñ›I}Œ\ìE\Ö ',_binary '8r\Ù|;u­©\ÇyÖ¥{ù› ^‹s6ô’•5y\È','',0,'?'),(_binary '!	þb3\ì$Ñ¤]›l;‰','wp-content/plugins/woocommerce/includes/admin/views/html-report-by-date.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n5û*a0\0\ã\äùJò\\zž',_binary '—´ª\Ñ<­†>~Vþ‰\0»F{†gµ¿5+\í\îÙ¦|©ˆ','',0,'?'),(_binary '!\nuj\ßYÁ;=\Övƒ[û','wp-content/plugins/products-compare-for-woocommerce/berocket/templates/settings_footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÑJdIBªµ§fSW/!\Ã',_binary '1\\óÿOþW\Ýð¬M§¯+ñ;ŽÙ¹\×\Ë\Ñj\Îù\Å\Ñ\Ýð¸','',0,'?'),(_binary '!\nß¿§t\0-Î­‡’O\Ù','wp-content/themes/flatsome/inc/extensions/flatsome-swatches/includes/class-swatches-admin.php',0,_binary 'pa\ë\Ï\Íþ>J–;L\è@•ý',_binary 'pa\ë\Ï\Íþ>J–;L\è@•ý',_binary 'tk6±™œ\Äbz\Ì\à/­0¸²¦ùš\ß\Ó&¿)¹`«,¶','',0,'?'),(_binary '!ŠÄ‹\î\n¡=ñ\Ë.‚\á#N','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-component-frontend.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ê\Â=ieUU\é\Þ\Î\\G8§',_binary 'p\Ó\Ýwc%:!\ëE\Þ|ó‡¸ëŸ¦\Z»SlŽ\à€‡X\Ø7F','',0,'?'),(_binary '!o\r¿\ÍAˆŽv7\à\Üe','wp-admin/update.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hqÂ\r¶‡EŽ¨÷7\Ò\n',_binary ';‹$x/­y\ì\Ù6}r*I:(|T\ÌOñð—e+p\Z%Iý›','',0,'?'),(_binary '!eÑŽ\Â}\\þw8e\ä²@','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°q2(#¿ß²\n0”É˜p',_binary 'ij\ÄvðŒ\Ïk;+ù#xQQ·¤\Ë\ZJGÛƒn™*™\Ã','',0,'?'),(_binary '!¦\Ûì¯¿\åp=Ë¡¬÷','wp-content/plugins/woocommerce/src/Internal/WCCom/ConnectionHelper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­2ºpS\"\Õ~½\n%°m',_binary '´Ú\r9?£1…[^5¾\ë’<™\ãDR!‘^\í„|	','',0,'?'),(_binary '!\ï\äÑ­/ŠŸÞ†,9FZ','wp-content/themes/flatsome/inc/integrations/wp-seo/class-wp-seo.php',0,_binary 'L–7$¥zÄ”\Ù;”¾+\\G',_binary 'L–7$¥zÄ”\Ù;”¾+\\G',_binary 'YP,ü¹c\0¬S3ð\î*S•\"M\Æz\Ü¢Yz\Ú\ÇS','',0,'?'),(_binary '!ò·\á`ŠDù7\"y\è\ÃÀ','wp-content/plugins/woocommerce/src/Admin/API/Reports/DataStore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kI\á¼#a¨t\è\â3:ž&G',_binary '„ð\Î\Ñ8<C»Rô\Ê³\'}N\ÕÀ\\®¼n\äW\È*6ÿ','',0,'?'),(_binary '!H±uÿfÉD\ã7´>=g','wp-content/plugins/wordfence/lib/wfLicense.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G|iÇ­,\ë¢fv#—$\å­U',_binary 'H%”j\Ð\Ý7£úM§¥4$\Ùû\\^[`ùòúM ?©\áù','',0,'?'),(_binary '!\Z\ßr\á\nñ\Ög“]\\[}É™','wp-content/plugins/woocommerce-multilingual/classes/media/class-wcml-product-gallery-filter-factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆž–&´\ZC	\ãkƒj©p²ñ',_binary '“\ÍCHa\Î\Ô2c\Z±ÊŠ˜†~k\çù§\ê\r”2Þ¬÷H','',0,'?'),(_binary '!{¹‡\Ö\0”`Ï‚©\é+G','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/colorbox/border1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þbû,Þžšb\Ð$ ˜³t',_binary '\å[\Åo´\â\é<\È?Á\ÚY%—y\Õ\ÙBr¾V‹o\×hQˆX','',0,'?'),(_binary '!1bÝ…9 ª*\ãÀÿ\\\á\Æ','wp-admin/admin-footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å\Z±û\ÃC\Ó\0§üOl$¦',_binary 'sTˆlEe\ÖþÿBhšv:Žg%—kœ\Ñ07k=\É\Ð&!','',0,'?'),(_binary '!33¼|]×«ÿ—j&Œ²','wp-content/themes/flatsome/template-parts/posts/archive-inline.php',0,_binary '²Ð‰7\Ý\á-Kq~8<{\ê‰z',_binary '²Ð‰7\Ý\á-Kq~8<{\ê‰z',_binary 'F=u4Âž½¼^”w\Û~s%Ëž½×¼W½-\áƒ\'ž\ã','',0,'?'),(_binary '!BûD\Ø¯³Ê®QŠ¥ñ','wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-classes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b”²=3\Â\æx(Ð¯¼',_binary '‹t¢€²OiS_‡ó´>!¡\×r	d4Lap\Ï\à\è','',0,'?'),(_binary '!F°™{£Râ ´\0Ÿ¤Â—','wp-content/themes/flatsome/assets/img/payment-icons/icon-banktransfer.svg.php',0,_binary '4\"\Çß§Ž£mô*F\r†',_binary '4\"\Çß§Ž£mô*F\r†',_binary '.^5\Èy}Sú\Ð\äžwÉ¤/a~5C\ÊKŒvˆl›º9','',0,'?'),(_binary '!I­d]5$Œ¥À[\à\Ö~¬','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/Ctx.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oû¿L\Ñö\Õ k\'k1Šþ',_binary 'Žœ1\ê \\¯Qt©*¼€\îJ\ï\Ñ\êŽý%…\Ø\Ësˆò&','',0,'?'),(_binary '!Plu6 “ð\ë¡¼\ÒCZ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Salsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\àò˜ˆÁP\Å\Ï\Ùe–‰1',_binary 'T¨ÿû*”\Û+†\Ðø\Êz]Êœ;>¯\n\à3\Ê\Ê\ä]?x\×','',0,'?'),(_binary '!R{+|ô‡Iº\Û\Z5Še*','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/add-to-cart-form/form-state/reducer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WD‚\É\èÙ²}º“ƒ\è\í¯+',_binary 'ÁC¼\Òe0f ô\Ä-£÷dfüñQ‚ÀM\Ü1\"ž\Úr\ÛþF','',0,'?'),(_binary '!U\Z~?â›ªi¤¼‹\èW‘','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/schema/actions.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ˜$Su4y}¸N\Î\ØJ+',_binary '(¥Ø°_+H}\ç\Èyx{\'•ø¨”S<\Ï\æzù\Z','',0,'?'),(_binary '!Z€t\ê¨ô“\ç@a+‚:c','wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-de_DE.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿ	l\ØmÔ´‰:ñ\Ü|F',_binary '\Z}–\Ü.k¥¼‘‰\ËIP\Ùf§Pñº/‹ ¼ MPbœ‹}','',0,'?'),(_binary '!_Ÿè¼µp3p™n\×\ÓL','wp-includes/images/smilies/icon_eek.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œ/I ¿±Šxñ)ñ(\"ô•\á',_binary '\Ú8\Ù\ä\Þ÷\à\åKÒ‡ª‹³4¸¯‘¹\é„ü!\É\è:Ê°','',0,'?'),(_binary '!h&\ÕRµ\nª‰zlqHú','wp-content/themes/flatsome/inc/functions/function-theme-mods.php',0,_binary 'ÁR‡\Õb\ÞS \Ùmb®[z',_binary 'ÁR‡\Õb\ÞS \Ùmb®[z',_binary 'Í–\Þ\n‹Ìž‚\Í]0—)P\Ç$“?(\ã\Ð\Ú\Õ]\Ö\0\Ã','',0,'?'),(_binary '!r\ç#¿ñ)NVXÛ¿¦\Î','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/use-validation.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%¢žtÙ€\Êý•\åw\ïD',_binary 'ŸMc#•0\È\"¹\æÂŒ\Òc\\\æ3µ$#(\\˜ñ\ÍN/\Þz\Ðñ','',0,'?'),(_binary '!|(\ßy\ËW˜*1Oo2Cu','wp-includes/js/wp-api.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@»BY\Ýf¦„búb2¯lÐ·',_binary '\áN“_\Ö\ÂŠR\"T–™¨\Õ\ç\Ë%i\Çc˜¨Å‘Š	2&¢H','',0,'?'),(_binary '!Š\Îxx¢+!­Áœ[\Æ(','wp-includes/js/dist/list-reusable-blocks.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pËb™‡nSM¨Ë¸N/',_binary '\îœ\í\ÂD˜°C#o\ë¢Q/\ÔH·©#µ\ÎUý~§¾«üŸ\Ó','',0,'?'),(_binary '!“w<\â\Ö\ÉA\n\î@¡O','wp-includes/js/dist/hooks.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y5\Ö\àõÁ¨Úºù/¡|\Å\å',_binary '€a“¸µ\ÂKC\Û`Ž\Ýd\r\ÄJ{ŸHýG\Òt\ÍPŒKüd*','',0,'?'),(_binary '!Ÿ%0d\0ì¤§F\Ý','wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/modules/custom.js',0,_binary '\î\ÛYª:«¨\ã\Ä5‚\r½”',_binary '\î\ÛYª:«¨\ã\Ä5‚\r½”',_binary '=¶£ŸjP\Ü\'^Œqm\ß.·\Ë{PHQÏŒ±&4Zs	','',0,'?'),(_binary '!¡\Ù\\\ßý\ç\r þp7\ÝDD','wp-content/themes/flatsome/inc/builder/shortcodes/ux_product_flip.php',0,_binary '\á\Å\à¡$p»Ò‹Þ²‹;',_binary '\á\Å\à¡$p»Ò‹Þ²‹;',_binary '\Ú\åtc\é\Û|wE)P\ëLš\Ûo¥†=3«Òž­*eü','',0,'?'),(_binary '!¢y\Ë\'Uµ\Çb\Öð#}','wp-content/plugins/wordfence/views/waf/options-group-rate-limiting.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŽzY\é\èè¡†:€Lk',_binary '3`R<‘ƒ!þ\È\Å0)B\ÐW\ÙøgH\ÖZöø','',0,'?'),(_binary '!¢¼>’NN¸÷‘þÙŒó','wp-includes/blocks/file/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\Ç)btu œ\ì÷u´\×k',_binary 'f¢):1¾9I<À\Ï\rü—U\n¬_˜!kv|QC\Õ^','',0,'?'),(_binary '!£FÂ‰º”ô\ì\Í0Ÿ','wp-content/plugins/woocommerce/vendor/symfony/css-selector/XPath/Extension/FunctionExtension.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²¾g‡f\'µ¢‰\ØU1Yªy',_binary ';›Ym \Ç\r\í\ÐC\â\"¯i\ï_\æs€²3=M4ýP>±','',0,'?'),(_binary '!¦ó\rÿ\0†d¢¡ó0\à','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/play.svg',0,_binary '¿\äðóš¥\'\Þu¥Ý¢\Ït\Ï\ä',_binary '¿\äðóš¥\'\Þu¥Ý¢\Ït\Ï\ä',_binary 'Ã´¬À(>›v`¢i\Ö\Í}\0u1ü{\ZÏ¨ôkj\Æ!\â','',0,'?'),(_binary '!§##sw:\rH*²$qô','wp-content/plugins/wordfence/lib/menu_tools_diagnostic.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n¡²¡ÿ-\áªß 2göl‡',_binary 'Ó€²ýŒOD™„I{`›b£\ÜÄ±\Ë=Ê¬sÀmõ‰q.','',0,'?'),(_binary '!§xøÏ¬²Q|fË‡¾\'´#','wp-content/themes/flatsome/inc/builder/core/server/src/Elements/ElementOptions.php',0,_binary '\é­_6¯¼\Â\è±úðã†{',_binary '\é­_6¯¼\Â\è±úðã†{',_binary '\Úê«\Z¤MwyD;j™÷¦§’.\â\Å\à|¶`%\Å\ê¨','',0,'?'),(_binary '!¨/Qÿ\ÚS\ZSe5¶6Y\\7','wp-content/themes/flatsome/inc/admin/customizer/img/product-stacked.svg',0,_binary '%.c\Æj’’šIó',_binary '%.c\Æj’’šIó',_binary 'ù@ƒ\ÌÛ—rLö‹+±7¤\ÉD£aÞ¬\ç\ä\'€§!ª¼','',0,'?'),(_binary '!«”¨£¸{þyôþû²','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/coupon/stories/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yYHd(f\à\ä\êU½\î',_binary 'fü¤t{ ‘È†Ñ¸c\Ë\Õ\ç»L\ÓlG9\Õ\è\É8¤+O‚û','',0,'?'),(_binary '!¯B\ÝÀ\Î\î˜\ß\ÕÜŽ_´','wp-content/plugins/woocommerce/includes/class-wc-cart-totals.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ%\à®Ù„\Óz(Å”B',_binary '¥µ]Ÿ+†¦Ê°\Ö »Œa­ùE“€a\0RµÓ——','',0,'?'),(_binary '!¯§ Wÿd4¼\ÔE‘—µ—\É','wp-content/themes/flatsome/inc/builder/shortcodes/commons/video.php',0,_binary '\nn\Ò\nÈ\åQ†÷8®Ÿ\n',_binary '\nn\Ò\nÈ\åQ†÷8®Ÿ\n',_binary '5’\Ïó\ßg\êÍ—z`ý~7»$¿\ÊV9-\é(\ÕS\Øô`Ÿž','',0,'?'),(_binary '!´\Æ\æŒ8uR­ùÔ§ö','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/ux_banner.svg',0,_binary 'uú\"l~Á\Ä\Ï3ûðy÷',_binary 'uú\"l~Á\Ä\Ï3ûðy÷',_binary 'Ô¤\î@v\ßQ^¤öÁ±± ¥§>Cj‰‰¥Ó©ª\ÓþI‚R	','',0,'?'),(_binary '!ºA\rBjµ2ý\ÅG\nU…\È5','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/fees/stories/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ö\åþE\È\ç\Ï\ÇFÂ¸fuÈ¾',_binary '’~/.»r\ß\àmÁ\åRj±6\ÍS/\Æ\ã;{\\´\å‡XÜ¶','',0,'?'),(_binary '!\Å\ë\')¦qM*¦Xc','wp-includes/blocks/embed/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd bz˜–D­h±’™ò»¹ž',_binary '™FlÞ­kZHz5‰xz,u\n\Ý*\Ù1øX\rð\ãß½¼t¾³','',0,'?'),(_binary '!Î„\ÔLI¦\è;\Ð4\à‰2\Ã','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/render-frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬nj„ô³CÎ¢\×þsCDk',_binary 'YÇ•€Q¡2ÿ9JV\ænzˆRûlmc½„u.B€©','',0,'?'),(_binary '!\Ï\\]k\ë†5\ïDÀO','wp-content/plugins/woocommerce-multilingual/res/js/files.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é1=yZMa¡k.Œ´fT',_binary '\Þ ú¨ö\âW\Õ\í)\×\å_‡\ë¬5›’†\Ó\ë´%‰*w','',0,'?'),(_binary '!Ï»\'\ÑQ…¥\ÝMø÷ú','wp-content/plugins/nextend-facebook-connect/includes/user.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@öO1O1œr\×¬#¯\Ê,P',_binary '\r^ª6Rx»?Šî¦…\×\Þ@\Æc¹xF13\Âß†jT\Ê','',0,'?'),(_binary '!\ÕR•\á›pûnL\Ñw\âm7','wp-includes/js/tinymce/plugins/lists/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')Ÿr?µNªã¼I´¡q\'„',_binary '%¨=r”‚§Ž\Ê\ÄdªŒv\n†’i\Þz½xÁuù¤)3p','',0,'?'),(_binary '!ÛIÇµ`©ò¶8¯t','wp-includes/js/dist/keyboard-shortcuts.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^—5÷S›\î\à\Èz¾©„T\å',_binary 'ô«DG<öô¨YQfB] \èy–]OÁC9Å Eô\æÇ‰','',0,'?'),(_binary '!ß¬\évg1òIV|úE\Æ','wp-content/themes/twentytwentyone/assets/sass/05-blocks/tag-clould/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A/a\Ø\Ì`dÿ\ZS~>Q—¶',_binary 'òwB¼\í;\\q\\8ŒN•!„\æþ-X\Å\â÷û!½ü\n','',0,'?'),(_binary '!\ëùTÛ¦œ\í\Ö\î	l\ÂI˜\n','wp-content/plugins/wordfence/lib/menu_tools_importExport.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'É³\Ò\ïxm46c)\åµ\Ù',_binary 'en¿*ž­\×~\íÀa¶ÙŠc]\ç¤\ØZbi\êžXCqˆœ','',0,'?'),(_binary '!ñ>Ð»ÓŠ^\Ô\Ö[‘\ÒU}˜','wp-includes/js/dist/data-controls.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Û\è¢;‡¯~ª%L>•`1Pž',_binary '\ØI\ëšûö«ðr\çö1Êj¡±­¼®?g\n\ã©','',0,'?'),(_binary '!ñOŠ4\ÖbCRR›fO²','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B‡Z:3òhr–$~\å‡',_binary 'øFCø\Ê5#\Ä\ÍÁ\ÕC˜<ÞºbGƒG÷!§¸Ì®œ@','',0,'?'),(_binary '!ôÿ·\íY0-z1\àdm>‡','wp-admin/js/plugin-install.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4ÿDoþ\è”£Flzù',_binary '^ˆ\ï”E™\é\Ö\çXD\Ùo\Ê\Ù\ËvªorW–\Äx\áÁYõœ\Z','',0,'?'),(_binary '!õB\Ø\Zl!ŒZ0–\æ','wp-content/plugins/contact-form-7/modules/hidden.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ù\ÙA8|)6aúb\×\Ø\Ý\r',_binary 'ˆa9æ–·’xâžƒ‹Œ\ç º\Å\åê—˜\Ê¥ÿ\Ë\ß=m_','',0,'?'),(_binary '!ù\ÇQÓ­¡€3bÀ³³','wp-content/themes/flatsome/inc/admin/customizer/img/cart-icon-outline.svg',0,_binary '\æ´H\Æ_’ˆù|\é\ä\ØõbÊ®',_binary '\æ´H\Æ_’ˆù|\é\ä\ØõbÊ®',_binary 'Zò%–Tl€´XŽÖ¹\åE\é1ÃŒY°$4\n<J¨|','',0,'?'),(_binary '!ú™\Ñó\ÐŸðl\í/ù\ÑTd','wp-content/plugins/woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Store.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f¼…×™£‰\'~\îR7ò×±',_binary '!<\Ç]\\.-\Ôòýk«ÌŽ,LO	\Ì\Æ\r>\Ú-\Þo0õ\ïö','',0,'?'),(_binary '\"\n\ä’\å\×4j\ÝSÃ‹†','wp-includes/blocks/spacer/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\Þk“\Ë\ék3z\Ä\ÓU)\Ä',_binary 'u2ÿT\Ø\Úz\"»„\íÿ\Ï-g¾‰¶&]\ÌV\Ûj²•$O>‹','',0,'?'),(_binary '\"Et\ÉyˆsŸ\Ã\í\Þ\Z|g','wp-includes/js/tinymce/plugins/wptextpattern/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E	¿’-N¨o“—',_binary 'þL\ÞúIÂ‘¡Â™Y÷ow®)\Ìû4!:\Û;?\í\Ö','',0,'?'),(_binary '\"òÐ´™NÜ‰B\Ñ\Åô÷\n','wp-content/plugins/woocommerce/src/Admin/API/Reports/Products/Stats/DataStore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª7\àND\Êñ\ÓXƒ\"¢#',_binary 'öóH\rV˜2{\Â\0\\¯>:\ßyœ‘e\Í\×4ŽU\Ç\ã8','',0,'?'),(_binary '\"¼£®Z/\Å&ùºP\0','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/state-input/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·™\î`÷Sa”\×l Úƒ¢g',_binary '1:pû77…q‹ú—÷´ú|~g\ÖøÍ²\Ñ\Ä&¿ñ…','',0,'?'),(_binary '\"\râ†»–7l~\Ä\çËA\É','wp-includes/blocks/text-columns/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½\ëž\Î$6EÉ«8\ì‚y',_binary '\ç¡\\{ 1†E®¼H=F§\'Ö±\Ùü\ÇL\ë=tñ„0§X\Æ','',0,'?'),(_binary '\"$=ûü\ïž\Ò.s±ôa','wp-content/plugins/woocommerce-multilingual/classes/User/Store/WcSession.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\Û\ÐC\çûEJ‡þô\ï\î\ÝÙ…',_binary '·UBûW\Õ\Ö; \r8A1%\0€>N(Ÿ>{u|g6*hy','',0,'?'),(_binary '\"L\×\Ð\"\êjŠÚ­\ë~','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-product-reviews-v1-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆñ,3_Á‰J^Jv;\Z‚.‚',_binary '@\ã~¤üN8–§9lªfl3\Øw<6@‚¥\r\Û>\ê','',0,'?'),(_binary '\"(}G\Å\År\ç	0—ŽV(','wp-admin/ms-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~<\Úb\ísƒ\'\Ñ+ø\Z¹Q',_binary 'q«JÀR\Ô_+ûV†C%\ê~d\í\Ì\Ë35k\Ø\ã”x\å\ê','',0,'?'),(_binary '\"*\Êöº\ÙÁ\×Á²˜XZ¸³5','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--cart-blocks/cart-line-items--cart-blocks/cart-order-summary--cart-blocks/order-summary-shi--c02aad66-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q³&¾Š\ÇVn°\ëFi\í`',_binary '©f\0\í\É+wƒÿ\Æ\ÄP•¼¿ÖŒj\Ãû>L\Â{˜NÌ©','',0,'?'),(_binary '\"-\ÂÑ²\n2ºj%\ì¢ü(o','wp-content/themes/twentynineteen/sass/layout/_layout.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	‘d£XNd\Ö?f\Ïf',_binary '¿\Þø¥v½\ä\Ë@.|\ê\ë\És>0üO®\Ù›A3jA ‚\ï','',0,'?'),(_binary '\"0aYùªÁ\é!Þ›ÁG\éf³','wp-content/plugins/woocommerce-currency-switcher/js/statistic.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\á\Zb\è\ÂÔ•…\nxß†o\Ò\â',_binary '\â1°…6\ã”A=\ÃO P¡þüd‚ú‚¡‘qñ‹I','',0,'?'),(_binary '\"0\ÂrN1M•\á\ä#ž \áÀ','wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†EÓ¤ã­‡\ç\ÏMˆ¤gª´',_binary 'Q\Øø£*\'¶„þB©+Eüßž³û:•ómŒ\Îyu\ÖW','',0,'?'),(_binary '\"8A\n=ò®á‡¼fp5','wp-includes/theme-compat/embed-404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7–[R+S›†A-\Za*e',_binary '…}\ÛpNª\0\ÉK”À6\Ñ%),\×oŸò`ô¾¼‘)“1\08','',0,'?'),(_binary '\"<o*)ùL•vxI\äd~mP','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/block.svg',0,_binary 'Ó‰\ïÁByý\î\ÝI—\Z/b',_binary 'Ó‰\ïÁByý\î\ÝI—\Z/b',_binary '\Í}ThOV%¶…1–¬\ë¯tè¿µM3Ž¤\r \áLF„3r\Ì','',0,'?'),(_binary '\"FSWýJ\Õ	T‹NeIT','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/src/js/expired-notice/app.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@Ã³šœª\Å:±\àW;ŽÀ',_binary 'e¿2©ˆ»k\ãm\"õ\Ù\éZ¬mž@\Üi‰F‡\äC^\\«T','',0,'?'),(_binary '\"IFnº§­¸@÷a\Â}’9','wp-admin/includes/class-wp-themes-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o6§™”»n+66„˜n®÷\î',_binary '\\AY\æQ\åÛ‚½|\é?¼X÷Á ©n\Z\Ä\í¾P3„L','',0,'?'),(_binary '\"NMô¸\ê¿\Âk¨VO','wp-includes/js/dist/data.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®\'\ìªô\ïui\Ëlã—µK‘¡',_binary 'u\æMûd²®‡P\ád/c\éÓ™¤+&\Í63ù¬\ÚÁ½€i','',0,'?'),(_binary '\"`\'k8¹:ƒ²ñŒ†\âN','wp-content/plugins/woocommerce/lib/packages/League/Container/Argument/ClassNameWithOptionalValue.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`¯ù\Å‰­|Uˆ1´h¤\È!',_binary '\Ò\ë\Å_j	Å™ ”\nir\Þ98\Ê\Ä\àÁœ\Ç\Ù\ÍŽ7¿','',0,'?'),(_binary '\"d\Ê\æ,º\ágóu.!ï·¶','wp-content/themes/flatsome/inc/admin/customizer/img/category-box.svg',0,_binary '{ü£„Š]?|`\í‹1PR',_binary '{ü£„Š]?|`\í‹1PR',_binary 'û\Æ\â¯ó•ß0§\Ìyv\Í\ä„óu\\V¬ð~§Í¬0\î','',0,'?'),(_binary '\"jkƒ|¦¤O“\â@\î+er¥','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/chip/test/__snapshots__/index.js.snap',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à`\'Z’\ï…\n!4¨\îR½C',_binary '\Ë\Ôc”¼}¥°^^\é\ì\×\Ï<+Šs€1§ª\ÅT\é	nŒ','',0,'?'),(_binary '\"m4\Ì4—	\êœ\áS¹G','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦ó³\ïº6g«O5|ð\ï ',_binary 'pƒns¦\Ã#dóÁF$ˆ—\ÏWÍ•Á\ß\Ù(QŒ¡7Á6','',0,'?'),(_binary '\"nEŠ\åÝ«ZÖ°«À¡	½4','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/block-components/test/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\ÐH,‹f¬»/ý¸ó6õ',_binary '^sÚ†\ä2Œ\ÏM¬œñw\ì\Ñ\0e³\Í\êüÕ½6©\0\Ø','',0,'?'),(_binary '\"q”«²¢	K6A\â¹®\Ù!','wp-includes/css/dist/reusable-blocks/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hk-Q6U‰»J\Ö\ëÓ',_binary '­\ìÑ¹ÿQ!!\ÉTý\èZk0£\Æ\Û\è—\\ªœ\Ç','',0,'?'),(_binary '\"y€¿ô\åûü\ãp-Gr','wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/vendors/select2.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\È\Ñ\Ó$Œ\è9l‹œ1„´\î',_binary '\Úü\ÑcÀSü”¹ÿ«ª…v\ÛIô§-9z`\\ú³GP','',0,'?'),(_binary '\"yø\â6(~z÷+¾g	n','wp-content/plugins/woocommerce/includes/shipping/legacy-flat-rate/includes/settings-flat-rate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\ág!µ ò]\êüw\Å',_binary '5\ç/\æ\Z¦YQƒ\ïM\Ã	&\Ê\Óp\à\áW¯SØº\r±¹<','',0,'?'),(_binary '\"€>\Ç{˜\Z\ÇTT²žÝ¸\ÉZ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/schema/action-types.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ê]“¨\á\Ûo\ZuS²¨\Â\Í',_binary 'P;“¤F\Øß­7?»&\0q6Ì¦ñ´†K~¼Ïž#\Ã','',0,'?'),(_binary '\"€°”V	¿;l \nõ;…\Ú','wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-util.php',0,_binary '°õ÷\0€ƒ\Ú9;‘÷xŸ',_binary '°õ÷\0€ƒ\Ú9;‘÷xŸ',_binary '\í“s\rül74hKV\Ëeôh\èÞ­\çOšF\"¨I§','',0,'?'),(_binary '\"\r\Ñoƒ]\r:T0Û“\É%','wp-content/themes/twentytwentyone/assets/sass/06-components/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦Gü“=‰%4\Ö\Ù@8!}\Z¬',_binary '£¶€J÷\â%½’g»òƒ¬\Ó\0L;\ã7½¥R\ê','',0,'?'),(_binary '\"‡\àZ‡\\ÿ}\ÈCSÂ˜%¸ó','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/price-filter-frontend.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@úEŽI\ë\Ä.¦\Üy1',_binary '½Wê‘­JOÿ\Ù{uÜ¿\ZešM{Ù´Š§x—f€~_}\ï','',0,'?'),(_binary '\"‹ø“K—6^¥4Vý}™À','wp-includes/blocks/spacer/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6 f%c\Ú\Ìù(r}(öI\á',_binary 'õ[\0„³Õ‰Z\ÂÅ\á\Ê:\ß\ØWË†¸õƒ|`\Ó	\î½y\r\Þ','',0,'?'),(_binary '\"˜\äK®\Þ\ã¡H–nR\î1\Ñù','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Node/HashNode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\é©tpp+t@<ÿ¤\Å',_binary 'y\0ñ\ï!$I+|\çg\àñÆ³\æ\Ò\ÖF`“N·­‚z{¼','',0,'?'),(_binary '\"\\\ê—;T\å¥4œÁ½XŽ','wp-content/themes/twentytwenty/inc/svg-icons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\Ç\ä$*\ê.fùQ\'‰€\í',_binary '¡·®^U«‚\ËË´\ê¿wPgº]\Ç\È\Z4\ï…2\Þ\'N','',0,'?'),(_binary '\"¡žŽ¾b9®‹e\Ñ|®_\Ë','wp-includes/feed-atom-comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±‰\\\çIø6bJ§i\"mò®\ä',_binary '+.4–0«I…g\á(ŽžbŸ}³üªyÑ‚Kökb\Ñ5','',0,'?'),(_binary '\"¯\Ð\Í\ÓÛ¯ª¨6§·7?','wp-includes/blocks/site-title/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u{(\Ù)°ŽJ\Óô°R˜\è\\',_binary '¥yµ]¨ð\Ä\Î3;“ÿZv\ÓD—(&³|7\ê«\ãcz\'\ë','',0,'?'),(_binary '\"µò\É\à\Éu>1\Ð7þŽŸ','wp-includes/class-pop3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ó~ð›\É\åýk«Xþ_°\Þ',_binary '*,\\d\ã›WÌ…½\ZŒŽ)`9øN\ÖQ•@J5h&G¬','',0,'?'),(_binary '\"¿*\à4QÆ±¿\ê_«^¡˜','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-1-3-col.svg',0,_binary '®\àNŽQ\í¼r$¯s¢',_binary '®\àNŽQ\í¼r$¯s¢',_binary 'ÿ\É`¸ýe•\Û$’Ä9F)°-j\Í\Þ\Û/­h2^\Ý3)f','',0,'?'),(_binary '\"¿¤;ñJHóñšv[½ b','wp-content/plugins/ti-woocommerce-wishlist/assets/img/chevron_icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H£\'Á\×)…\"Û\à\Ë\Â7',_binary '\Ó\0õ¹\ê¤ò6Š¸\ä¢ZÚ·„©˜\ÌNù<m·¯o‚K','',0,'?'),(_binary '\"\Ó\Ä6\r+K{\×\Z!a','wp-admin/comment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\çÛŽrY8\éÎµ\Õ\Þs\í\îQ',_binary '\âþ.\Òý\é\äqv6œ\n“4\ëß°\Õ	6¥¡s\é,—Qþ#','',0,'?'),(_binary '\"\Ö\ã,ô\Ëó\Üi\Ç?òº¨','wp-content/plugins/woocommerce/includes/tracks/events/class-wc-products-tracking.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†Õ”{¡\Í7BH\rü#\í=(',_binary 'ó4‘¡_m“$\Î4’ótEZ\Ù>\ÈB\ÄiœiŠŸ\æ','',0,'?'),(_binary '\"\Øw²¾h²ˆ­\Æ','wp-admin/includes/class-automatic-upgrader-skin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ã­9¸C|ï³•\ä',_binary '\Õv\Z„\í\çù£¼K\'Em\"\Ðja»;\Øu\Æ.6\ß}','',0,'?'),(_binary '\"\Þ\Ò0\Ø\0“Lµ\'Mü\×','wp-includes/sodium_compat/src/Core32/HChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9˜5£Àe\Ïf”‹#®Ï',_binary '\è\èi˜\Ä\rC\áý¢\"Ô³Á\r4†®8Àcö\ÑS\Ý\â','',0,'?'),(_binary '\"\ã€n[.œÏˆŠ¬\'[—','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/footer-item/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X]XÓ²a.&¿\é`Ö™aË¦',_binary 'm³N\n\Ñ~\Üðhwò\ïN¿—erö+ð¼•õ\àózNç±','',0,'?'),(_binary '\"\îD\ã±Z~\0ò|3\Öõ\ß','wp-includes/blocks/query/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Çü §•\ìj\áM\áhWQ',_binary '•\èw˜û\Ây¨½BG\ÉZT\æûÑ¼@Û’\Öp„ü><\ä\í0','',0,'?'),(_binary '\"ñ©+•\Ð\Óò¸Ê‘›\Ï','wp-content/themes/flatsome/inc/builder/core/server/src/Collections/Templates.php',0,_binary 'y™8£l¸c\"÷¦\ÕSS',_binary 'y™8£l¸c\"÷¦\ÕSS',_binary '	\ÅÁ274¾\à™\ÂJ¯t&¨3\ÌlRIƒ]\ÎV9','',0,'?'),(_binary '\"ö,\×q7·\Ìÿ¨˜K‹','wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-shipping-data-store.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oa·\\}Š6\à\Ï=`,,x',_binary 'L­\ï¾e\Îpt·Ð¿z\Ô\ëG¥=«\æE¾\'-f¯‰õN\ã¸','',0,'?'),(_binary '\"øJ¢°\è2«\rß¤-H˜&','wp-includes/js/dist/date.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ò¨H\æG\×`\Î]cM°',_binary 'GŸ‡>¨v\Ñýý{(Rt\Zƒ\Æ\Ç\Î>\ì7¸#²‹','',0,'?'),(_binary '\"ø\ÐjÿŠ¯[\Zâ¹”xÃ¸','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Node/NodeInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' /ŒÌ„=6‰—]|ŒLö',_binary '·L=\Ï\Õ\Ïkwj.3ÅœB§\"ù4\àp“^YJ%v','',0,'?'),(_binary '#\íºz1h’\é\àºù;','wp-content/themes/twentynineteen/sass/navigation/_navigation.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å\Û]\é!I?Ö–™•]·\ZE',_binary '\Ø\Ä5,ü’\Ç¹nRú—j³tªÝ‘œ©\ÕÊ¦/ªù\Õ','',0,'?'),(_binary '#\nÁô/†\ÛPZ~h„\Îø','wp-content/plugins/wordfence/lib/email_genericAlert.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+I*kCûe;\ÐP¸¡Œ¬S',_binary 'Š _\'\\q\È\ËüF0´‹{\ÆþÐ¢F\Ñ\r\Òƒ.\æ OK','',0,'?'),(_binary '#Zt›D .\Ãp \Ë\Ï','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-plugin-finder.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\r¬\ÍñKM^FI\ÏL>Ak',_binary '‡\Ò(\È\Ðý?¶‘\ß”û}”°Œ@g\î.\Ür\ã\Î\ÅB','',0,'?'),(_binary '#kÞ³g.ôBO4á‚ ','wp-content/plugins/woocommerce-currency-switcher/views/widgets/selector_form.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õ¢»¾»Ï½5ž³\í5+˜\ÄI',_binary 'Ai£õ\è.Œ©ðk\ß#‘tJå¤Œ}#$¤Jf\çdeÿ„F','',0,'?'),(_binary '#pÿ%:\Û\ì_bmm³:\'','wp-content/themes/flatsome/inc/extensions/flatsome-infinite-scroll/templates/spinner.php',0,_binary '<?\ã\âZþ[ŒÄ’–\Ï',_binary '<?\ã\âZþ[ŒÄ’–\Ï',_binary '\ßþ:2Rÿ€»ðµ,\Îû\Ç\Õ\Ê³jŽ£?rƒ\ï\0+\àœ¨','',0,'?'),(_binary '#!7`\í\Ý\Çm\ÂfŠ.»','wp-content/plugins/woocommerce-multilingual/classes/media/class-wml-append-gallery-to-post-media-ids.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨\Î\ç\æ’xq“\Ý\ÌÎ¤Ÿf',_binary '¹]¸ýh;ß¦\Õ\Ñx‹\ÊÅ¾cI~_Ò¿E–Ža ;','',0,'?'),(_binary '#D®Å„ƒý÷Ÿ5%»\Ä','wp-includes/class-wp-hook.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ	3\Ô\Ä\Üñ^h7P,',_binary '„)Ò´^WU!ª—\Þ\Ùhù\ê ˆr@®’r\ïs»=\Ã\n','',0,'?'),(_binary '#Lz‚¨™\ÔhÅ†è®±\Ø','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®\É\à†X¬óó N\\‚-',_binary '\ë\0ŽŒ\ãb5EG%\é\'Ll³[‹\ÝP[+x\ÚÀ:ÚŒH','',0,'?'),(_binary '#N­\Üf– \ËvJl¦#4','wp-content/plugins/yith-woocommerce-wishlist/assets/js/unminified/jquery.selectBox.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Èõ„#O\Ñxz€»Qõ´\"Õ¸',_binary '&\â4;v\Ö\\˜«TqÅ”\Ür*ò^e-QÈºýz\Ù\ì&Tn','',0,'?'),(_binary '#Q„\å\Ì\Î\Zc”i@¤Vb','wp-content/plugins/woocommerce/includes/react-admin/page-controller-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…üzÞ‡f±\ÕY÷¬¯&i\0',_binary 'Q„­“·-“)\Ý\ådî²ºª\ÓõÿYõ§d…VHÌ§\è','',0,'?'),(_binary '#]\Æ\é\r¡Ÿ§=úÙƒ¸v','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/jcb.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŽØœ´A~h\Ñt\"Ga€‚',_binary '\Z\ZH·F $­¬l‡w ƒ¡†zô’ñ,ÿKÜ„\ì¸','',0,'?'),(_binary '#`ô|\Ûj“*Pþy96','wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/styles/for-menu/styles.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ïFN¤¾vg\Énô\ÝH\ÙGZ;',_binary '\"\ê<&¿Ë¥ªV‰•~¤£\ÐÉ \ÞtÅ˜AX@’Ÿ\Â','',0,'?'),(_binary '#c\Ö\Ü4©ÿøm\"CþK','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/mastercard.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ù\Ø+hk\ï\ê\Ü7xÿ·',_binary '¨»¡™\Ê\0\Ê,\èc#´u4“ösJrùžs\Ï\ÍÕ”9','',0,'?'),(_binary '#j-a¶q\ï\æ\Ú›´\Ê\ë`','wp-content/themes/twentytwentytwo/inc/patterns/header-default.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\çŠtx;Ïƒ‡\ÞRúpO¬',_binary 'œ(\ÎÑ¤XWâ¯ŽÑ„\Þ¦m|\ì\nžQ#¸G\ÐX¨&«','',0,'?'),(_binary '#p)\ß\Ù«l‹ox–\Í›|','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-add-to-cart--product-button.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\à\Ê\è\ì2‰\"û\áA',_binary '·]Q\è\â\ÚÁ„\Ò\Ûgq¼vð9o•g>{c‰@_¹','',0,'?'),(_binary '#rø£\ÇF$\0~s\ìaN\Ñ\ì','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-select2.php',0,_binary '(l\ì\æ½a\äOó\Ñl\\Kÿ',_binary '(l\ì\æ½a\äOó\Ñl\\Kÿ',_binary '*Q /d/ÙœnK\'g \ÊOO‰4ÅœS7ú\ágñ‘û0¿¨','',0,'?'),(_binary '#y÷Ÿñt(‘$NTüt¥','wp-includes/Requests/Proxy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r’–\ã|³P4&.|‡‡',_binary 'ó%MuŒ\Ô\ä#•¨g±¡]®zmÜ¦³ø‰8‰\Öòu¸','',0,'?'),(_binary '#|¬s:8 ·+k¼\Ð!É‰','wp-content/themes/flatsome/inc/builder/core/server/src/Post/PostString.php',0,_binary '\äH¿}Á	{À¸Rž·',_binary '\äH¿}Á	{À¸Rž·',_binary '÷#½±<]e\r‰\ã#Û§G,/€üM\è R÷ ñW©','',0,'?'),(_binary '#ƒÉ´¥ª.\n\ïI|+òÉ¼\è','wp-content/plugins/contact-form-7/modules/really-simple-captcha.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–\0sO`‡\Í\Â\'nýQƒe˜',_binary 'ö\'c\á¢\î\Þ\ìe\0Y\Ôct\\•…w!L\í\0µ•¤7','',0,'?'),(_binary '#‰”I	õ+«¿¾\Ìÿô>','wp-content/themes/flatsome/inc/admin/customizer/img/dropdown-style-2.svg',0,_binary '\í>……Š\0a$\è©ó™J÷\í',_binary '\í>……Š\0a$\è©ó™J÷\í',_binary '§–—.r\Ä&\"­óxµ\îup1ø¸\Íòb½t\×C','',0,'?'),(_binary '#”\\M´\Ã@­0¬\ÚT´','wp-includes/blocks/post-excerpt/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Õ\ÚQj\Þ)O=S©R˜ø',_binary 'oCœl\'²6Ä²Àj‡\Ý¢2ð\'\Zªl\'ö\n\Îó}{','',0,'?'),(_binary '#™þH«¿T/-cP\ä,','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-zh_TW.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\È5×¶\r¾\Èù@•–¥›',_binary 'CoY\0\Ì\âvòŽ#¡6\\o6!ž¿©Rº\ãÀñA2M\r','',0,'?'),(_binary '#œ\Ç\Íj|2\æd·/¶K%Y\\','wp-content/plugins/nextend-facebook-connect/providers/google/admin/settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\ß\æ©\Z\ÔtMùHr#K]',_binary '3rŸ‘tÜ¥cÐ¤\rû¼\'\ë÷¹¤\Úm«\Ã\éõˆ¶.\î‚','',0,'?'),(_binary '#–\Ù 1hMN¤','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/button.svg',0,_binary 'g\Éö_~X›P\Ãg%n-ø',_binary 'g\Éö_~X›P\Ãg%n-ø',_binary '1-T¹\é£òGÒ—äž—p}¦T.\ê\Zd<ko¼','',0,'?'),(_binary '#ŸQCw‰\Ó3eÀ™‡Xÿ9­','wp-content/themes/twentynineteen/sass/site/footer/_site-footer.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\Ïgžý¿Ë‰³P\çIûZ',_binary '@Uú\í€\ÙýJL\éÀ$)\ZO\\|¥\êbS|o¢RÂ˜´†û','',0,'?'),(_binary '#Ÿ’6j²$\Ú5\äð\ëpi','wp-content/themes/flatsome/inc/admin/customizer/img/back-to-top-outline-circle.svg',0,_binary 'Ôˆ¨\èû„Vf6f—’k',_binary 'Ôˆ¨\èû„Vf6f—’k',_binary 'o~,µñÏ¯\æ,® 1j_Æ»­\ÄO\Ý\Ô!\îr\ÆG—\Ör','',0,'?'),(_binary '#£}s¶\Ï\×a\Í\åaÀ©,!','wp-content/themes/twentytwentyone/assets/sass/06-components/header.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Þ\Í!+Š”6†&\áÞ»\âTj',_binary 'þ;{Ö—88}¹\ï¹\È\r°|\ÒÑ«\Æ^\ç…‡\Ã@Fj','',0,'?'),(_binary '#«-g\å\\L%3\ìSÝ‹B#\r','wp-content/plugins/wordfence/images/wf-horizontal.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E%Zˆlµ°o9Í’Œž\Þ',_binary '¤³0	ÿ·6‚Ó­\ëIv›œ\àµhJ\ì˜\ì`\ä\î\Ç\Ò','',0,'?'),(_binary '#³–I\Zòúœ½\r[ý@\Ë','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/test/with-categories.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ä\'\Ù\Ýz¹½ðýK7@Ä”',_binary 'ð\Z¼A %1Íž\ÎY\Ý\ÙE\Ö””\áù©,~Í¤‡/','',0,'?'),(_binary '#¹¾!®·t0Œ;ü÷\Ä^','wp-content/plugins/woocommerce-multilingual/vendor/composer/autoload_real.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ro±5\È\ÃôeH2\ÌW\â•\Íg',_binary '\Ä5kQø;¶UmP@\ZR\×Ö¬ZIB\Ót;3¢wXü\ç','',0,'?'),(_binary '#»e\Î\Þðm~\Ùm\'\\xy','wp-content/plugins/yith-woocommerce-wishlist/assets/images/whatsapp.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ø†\"oó\nM>C†1$',_binary 'Æ”N_l)y93«£¬\ÇPRFJ6þ´P Ø¢\ç\Ò\ÑÕ†','',0,'?'),(_binary '#½ñ\ë\"KÃ¥Œ\Ý)\ã\ÖQ','wp-content/plugins/woocommerce/includes/interfaces/class-wc-queue-interface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\äó†-KM:Ž1ô€òßŒº\Ñ',_binary '¿„š\âGö-jš‚v\ä\Î\ç?\Øo*ª€ÑŽ’\Ö\Éñ;­­\Ñ','',0,'?'),(_binary '#Á\Ù\Õ\'€\ãF\Õ/ŸòS','wp-content/themes/flatsome/inc/builder/shortcodes/templates/message_box.html',0,_binary 'Z‰b›Q‡•Žrtox\\‹',_binary 'Z‰b›Q‡•Žrtox\\‹',_binary '+¿Ö¦;4mPˆŸ³<²\éL\\~­z\Öþ\à¨3\Õp','',0,'?'),(_binary '#\Ã\Âß»÷•\æ\ÎD\Ëzº´','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/css/abstracts/_breakpoints.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Zû*Ä§…¤¦û\ã\ì¾{-¥',_binary ' w–øY{wxœ\ÞeóÎ¬u\Ý\ÕqaI9M \Ìa\ß\Þ','',0,'?'),(_binary '#\Ï\Ø\Î(>…¨¨8p]-Oû+','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-guards/cart-response-totals.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Šùÿ\ÞA\äE>0¸€\ØÀf',_binary 'ª\Ì\Ñ€Z‘QŸ}ð6\Äÿñ•S_>\\ôL\êÏ•Àœw','',0,'?'),(_binary '#\Ð“\Ë\Ëöü<wõ8c','wp-content/plugins/woocommerce/i18n/countries.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SÄ«‰¼}gÙ¢\ë3Ë£UIö',_binary '>\äH­ˆ¢\×T8½dV8\å òb7µ3©ð¡gg¦5W3','',0,'?'),(_binary '#ä‰ƒ­À\0\Þ\ÍsQ\Ýo','wp-content/plugins/woocommerce/includes/data-stores/class-wc-webhook-data-store.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú‚¿š¨^n\Ì9À\ï•D',_binary '¿\0¸\\?±0\ëj&\"­\'x-”7 50ù\é\Ùau*\Ä\Ý\ë','',0,'?'),(_binary '#ñ\ïiU\Óf›»ˆú\ÑzhJF','wp-includes/sodium_compat/autoload-php7.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñ¯·±\Ò\ánýô­4œ\ç',_binary 'ð-\Ñ\Ðr*H–ñ^„üO\Ò<a{©ƒ™þX\ë@\åg \ã¤+','',0,'?'),(_binary '#ÿ‹\ÓHt÷\Í\ÑÁu5‹f','wp-content/plugins/woocommerce-multilingual/templates/multi-currency/exchange-rates.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\Ê\ê¼h\ÉL†¹eMX',_binary 'yzG\Ñ ¾#6º\îI\0Wœ´\Ñ^„§§µ#^$:4¹h','',0,'?'),(_binary '$R+i‹D 4\â¾\ì\Úc¾','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/order-summary-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´Y‘¬\ØQÇ—Q²\Í\0',_binary ': ®­\ÂQ@÷ò?c0ô\å~ß¸o\Ç|V\'F¦3\å','',0,'?'),(_binary '$\\þ¹Q Ž®L?1&\Â{','wp-content/themes/twentytwentyone/assets/sass/05-blocks/file/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'È…nz»¨,·7\áa\éó³ˆ',_binary '\ä€/5l\ë\æd\áeR×«Š’\ä\Ë\åHµò\ÕZ\è\ÈV\Û','',0,'?'),(_binary '$\n\Æ7€ñ‡Ÿ¿\ï \n’NZU','wp-content/themes/flatsome/woocommerce/single-product/product-gallery-thumbnails.php',0,_binary '°\rT%A‚·\î@£E8o\×J\Î',_binary '°\rT%A‚·\î@£E8o\×J\Î',_binary 'Cq³¶ç¤¿M8—EÖr<œcÓ—P}\Üòu\Ô^Æ·\í$d','',0,'?'),(_binary '$.ÀP_\çõ¡Ž€˜Fr\á¤','wp-content/plugins/woocommerce/packages/action-scheduler/classes/data-stores/ActionScheduler_wpCommentLogger.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ëœ{\Ù µµŒX\í›õ¸‹',_binary '\ê0„\ÊTv…ú]\ß\Ñ\Ó\"T›&žŠQ\íÕ°¥»\Ã5Ž','',0,'?'),(_binary '$7yû\È\Ç]\Ú\ØðNù','wp-content/plugins/wordfence/views/scanner/issue-suspiciousAdminUsers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»ª\áFªô\æ\ßY¬`½8\æ‰',_binary '^±zøy°{bŽ.nš&o@\Ä{\ë<,ø$‹ð}\Ô','',0,'?'),(_binary '$=JøE¶¡\ÜW_1\nû¶+','wp-content/plugins/woocommerce/includes/class-wc-ajax.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':@	 uI\ì­:\à“ð&\\û',_binary '\ë(ÿÒ¸w\Í9/½‹µ]\âÛ©ˆû³j\á‡Jw÷\Ïd´','',0,'?'),(_binary '$E©\è:¢¤\í\â\æÈ±','wp-content/plugins/ti-woocommerce-wishlist/views/section-group-style-e.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1~„\\®\"†\ËÇ±Ó‚',_binary '4r §­__à·—¿\Ëÿ--Ã±Ve)EÃ/­8ùXxu','',0,'?'),(_binary '$F\Í`r_³\çg°\0§\é','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-languages-upgrader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­™©/òœû¸ùU\î3n•',_binary '2(l´z[k`o­U¥\í\Ú˜…\×+3&j¹˜¬dG\ï','',0,'?'),(_binary '$Y(Ö¤qû\0T\á\á2','wp-content/themes/flatsome/woocommerce/content-product.php',0,_binary '\ë\äL©¶W \ÄV¨À\×ø',_binary '\ë\äL©¶W \ÄV¨À\×ø',_binary 'B\ë\å:\ÞÎ‚3lÀ˜\Æ9ô\ï\'‡«:gŠ—¬­A³TnŒ','',0,'?'),(_binary '$`.Qf¸\Éñ\î5¡øC','wp-content/plugins/woocommerce-multilingual/res/images/delete_10.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'šf£Ç¥1~QöO‹…””\Õ',_binary '’@Gh^ift‹\Ö4¼Ÿkú˜×…¯…ûRg`\Ô\ÌQ','',0,'?'),(_binary '$a\Ù\ÆÐ¿»\\ó¢Ç²¤\Ä\áû','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ [Mr\Ð\Îo‹qXØ¤qW\ê',_binary '}[\ËK;\Ç\â§5lÀ¨-¾¾_ˆZL4©Ož\ëñ\Âx/«','',0,'?'),(_binary '$d.9	«\çMnm1gÀLT','wp-content/plugins/woocommerce/src/Admin/API/DataDownloadIPs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\ì8¥C®l0\Æ0Se*%a',_binary '\Û+—ñ¬Tœ÷4SE»\ÅÏ¨6,9\Ùf\Ç/™\èœc!','',0,'?'),(_binary '$s¨sr\î´\ë‰l>\Ëk³\ï©','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/tag/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜ó-¢®U¦\ÙiH–is­–',_binary '\ZF\Õ/Š«B8p(\0\"RqÙ¼µ¶Zr\ï¢ùl¯\ìÚ­õX','',0,'?'),(_binary '$ˆ%{=\r\Ï@H\é\è\×\Õ)','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-block/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®‹\É!À€…¶_€ÿ ž…',_binary 'f^d\rõñc9¯´ùµ\Û+«br[\â.ùS50\ß\Ñ$\Í','',0,'?'),(_binary '$’„õ³0S\r˜rþ®©','wp-includes/images/smilies/icon_redface.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿\ÕþœU\Ë\×\íEù ¨\Ó',_binary '>ñ»\×÷D\ÆC9M\ÝcJÀ\Z+U•œ§L1f+g‚¸ð','',0,'?'),(_binary '$˜z†¬\î\ãò£Q	\ïy¯¿','wp-content/plugins/contact-form-7/modules/sendinblue/sendinblue.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¢<öG“D¢1»›Rb‡T',_binary '‹ˆ²\'gkƒ.i·iXD\è\Ç\áú\í\Åû¼A—\'ªõÑ˜','',0,'?'),(_binary '$š\èSÁCk\èô‰d\ÎWû','wp-content/plugins/wordfence/views/scanner/issue-timelimit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ø!\í‰\å\"¥»V%		|',_binary 'öX>‡\Ú\ïœ[6_\ã\\—\æµa·3›÷\É\Ðs\éV','',0,'?'),(_binary '$›+)JÁdŽ;\Î\\Õ–\ÐD','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-meta-boxes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<S¿©ð#,€\ßt=\È[',_binary '¨\Ô\Úh\ã[.À¿Ò…U ³,âˆª—]„ø)ó‘Y$3','',0,'?'),(_binary '$¤.…¡ýƒ$\ÓÒ·Ã»¥','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/builders/gutenberg/class-yith-gutenberg.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q^\ífYC†Ÿ‡¬KÉ¨O°',_binary '\Æo‹\×ö±7›ø‰ñ\\¥\Ö\Æ\0\\v@Q\åE¨\êª','',0,'?'),(_binary '$¤X)\Ýf\ßv„M´­b','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-product/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\ÄO®ûòa“·\Í\èZ˜',_binary 'Ð“m\í_\èIKJ#x\ÙwÒ¾Ÿp«H2{­mJ\ËD\Í','',0,'?'),(_binary '$¥\í‚\ã VÅ¿>º\n\ÃÄ”ˆ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/previews/categories.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\èC-ÿþLû™b>‚÷€',_binary '¹†1/zWÁ®M,\â\êzuñLlŠNöD¤iþWƒx','',0,'?'),(_binary '$§{i¸‰€\à±&hŠÁŒË‡','wp-content/themes/flatsome/inc/admin/customizer/img/category-left-sidebar.svg',0,_binary 'Ûƒ´ªÀ øl‹ˆ¼IOHú',_binary 'Ûƒ´ªÀ øl‹ˆ¼IOHú',_binary '©7\\FÓ«p(òfý\Ï4o/\Å`\Å(j©;»_Gw','',0,'?'),(_binary '$§†<-i\Ö\Z1A6\Z4”\×','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/image-dimensions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\çÙ˜™[FJº;\Ú3u¹KA,',_binary 'mÂ£\Z\ê\rÙµ—2¸\\ð\n\Ëƒ[\n}<\Þ\äŽGD\ê\ãv‡\É','',0,'?'),(_binary '$ªò°”\Íò4)\Z.\Ö','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-st/icon-128x128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ‹„ÓŸ]\0\Æ>¥žŽ»0\Ò\Å',_binary 'gÛ·k¬\çI¯YJ¸=W\êE{R\ç\È?kz~Ï½=f','',0,'?'),(_binary '$­V\Ê\æž|\ßhhyõò§\Ñ','wp-content/themes/twentytwenty/screenshot.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\íaú\Ô\è#C\Å\è‰4Y\Ð',_binary 'T’Z­e²\îgšÒ«R\Þ\á!M\é\Üx‹0\å^ðl\rÀ','',0,'?'),(_binary '$³·‚N	YX¦^\\±„','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/MarketingJetpack.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚¤\Ý@\ê]p\Ê]‰¯a\n±',_binary '¿‘h\è\r­•…®>‰_‡¯—c,T\Ðz\ÌzÀû\çP®','',0,'?'),(_binary '$´º÷\Ê5@™\êY(ò\Â\×&Ž','wp-content/themes/flatsome/inc/admin/customizer/img/featured-posts.svg',0,_binary '\Ý\Ê6R–Ÿ`•\Ô\ê­j\'I\Ô',_binary '\Ý\Ê6R–Ÿ`•\Ô\ê­j\'I\Ô',_binary 'Nx¯n¿¾_Ÿ®¯1‚Xµõ\éòÁ™¡,?–ºú•','',0,'?'),(_binary '$·R¥ŽÁõ¹Ž]S»a”','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/yit-woocommerce-compatibility.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ\Â-o œ¯ÿ\ä°q3Vž',_binary 'ÁOb™!{g/\Ñô3#\r×¦þr¾›)ò‘Á(\ÓpË’S{','',0,'?'),(_binary '$¹Á¼CÁ®Àó/¼9¹¸','wp-includes/class-wp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\Z\ê=Yð!£]_\äú\ìc',_binary 'I\î°DŒUÙŽ\ç\éƒp-\àkšªY\ÚQ(~\Ô6Nñž','',0,'?'),(_binary '$º”\à\å@«Y8¸	Z=Š\á²','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/simple-right-light.svg',0,_binary 'ŠÞseJš\"\âŠFº\n:»',_binary 'ŠÞseJš\"\âŠFº\n:»',_binary '|\èq52ý\Æ\ç\á­~_÷*\n\ãnRŸ}72·?õ\\ø\ÃoH','',0,'?'),(_binary '$Ê•e\á)\á\Zxi+R\ÚZ½','wp-content/plugins/ti-woocommerce-wishlist/public/wishlist/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ð™ .ƒ‹J5n>k«w.',_binary 'õŸ\ÏÞ2£”\êüD’l“<ˆ©\Ôhõ¸MZVk ','',0,'?'),(_binary '$\Ïió…¤\Ù÷ôÉ£z‹','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/reviews-by-category/no-reviews-placeholder.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…°¼QúW§¤W\Å=Š$',_binary '\Ò{¾\é/kû¢ˆ¶ŽƒSÄŸ\Ô\â\î,¶hu|(i\è\à\ã\Ìh\á','',0,'?'),(_binary '$\Ô²e•\ç`i@\Õö \ë','wp-content/themes/twentytwentytwo/assets/fonts/LICENSE.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ûEqü+@±¹ÿ\\K\Å@Rq±',_binary 'D€©i\"ñÁ÷¢ÇžútÛ±ŒR@…8¹\Ú¶\Êñuvu','',0,'?'),(_binary '$\á­r»¡ZJ$°Ež]¬','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-fa_IR.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Îû·ˆxP„\É\Úv\àô\Öù¡',_binary '[I\\\Î\Ì+8”\Ù]Žuo¥e\í‡ô‘mÀ°\ï\n\ZV,úû','',0,'?'),(_binary '$\ä\Î-#q`\Ðl$W„Û‰','wp-content/plugins/wordfence/lib/live_activity.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'žþ\æik³\ê™s',_binary '^&†Vðb™\Ç,›•s\×\ÄB^\í—R£4¾Ñ¸ƒ©\ÅV','',0,'?'),(_binary '$\è\ï”|©¨c\Ø¿ \\~Žõ','wp-content/plugins/wordfence/views/scanner/issue-control-edit-comment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£\\\Ë^>ƒ5±pa‘\ÆW½\î>',_binary '§ô‘\Ì\Ò“¤\é\ÝDC\É\ìXG4WFP·#\ÞN¹S\Z','',0,'?'),(_binary '$\î\ï^„\â\Ø6bH^\ê*\âƒ\Ú','wp-admin/options-privacy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹ø\Äsª\Z\ï¹u°„ôÿº',_binary 'ò¹\Ñ\ËSXe÷<bDR\Ýµ3=7µ?CøHT\åW7\×I½»ù','',0,'?'),(_binary '$óÏ«/ñþ¥­!¯²C\æ','wp-includes/IXR/class-IXR-introspectionserver.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2Ua¾w\ä<øIw‘p†O7-',_binary 'ƒ\í\n¾\à\ÃûCþýžPEQ%\×D\r\Ñk*žX\é\Æ\Æo','',0,'?'),(_binary '$ûN€\Ê6«.<¨¸«ƒ~ÿ','wp-content/plugins/nextend-facebook-connect/admin/images/notice.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',F	T¬Ù£\ì@\×p{/',_binary '<\ÄˆÅPŸ*‚ 4²‰ýùŠmwœMg~g\È','',0,'?'),(_binary '$üQ/<x„\éh\Ó\Úä‡\\û','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart/action-types.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ôu\Z^qû6ò	\ËBJ\ã’\äE',_binary 'yò¨\rn	±ú`‰MœYƒs›^sù\Û\ë\íþ.;&øø','',0,'?'),(_binary '%ðÔ®—{\Åf“\é†\Þ','wp-content/themes/twentytwentytwo/assets/images/divider-white.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd´(Ê·	\rü«¦’ùR\Ì',_binary '\è§@a{”a\ÙKÕ´€rz\r±µ[ÀFV,ò‡.>¾','',0,'?'),(_binary '%\í¬]M\Û3¨T¶1T¸\ã/','wp-includes/blocks/preformatted/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Å¯²FŒ\×\éÚ¶B­0\Õ\ã',_binary '\ï\Ý9/#\ÛeX:zÊ—\ÌY¡\Ù\Ú\ÈX§ü\Êö#ã¯¿Mº','',0,'?'),(_binary '%»\å%MYY\Ò\rmg\å/}¾','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/Installer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o	`r6ú¿\\ÿ[‹5}',_binary '_?ižm27ƒjjf\ïÐ»Ay³giŽA!Ó“d\0.€-‡','',0,'?'),(_binary '%û¢\Ã›7\Ò\áå¨³\Ì','wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÀyÁFH”\Ã\'\'n\Ï\ÒÞŽ”',_binary 'KD[Rà®ž\àƒ ž\í5±:grP7*X\Z','',0,'?'),(_binary '%# ”+s\âeB\ÑZ\Ó@','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K«8Iºdp˜o?E',_binary 'Tó!›H	ù¢Ø˜ñ,Cô­a~¼KO\×PJ\è\áÿ\Ì9\ß','',0,'?'),(_binary '%f‹Nvn9\Â,\r\ÍW','wp-includes/blocks/post-template/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nõ)2T2‚Ÿz%«ÍŒxd\é',_binary '0›@jfò=þ‰óIfº™ŒJqù\åP¢¹Á\í8–D\Ë]','',0,'?'),(_binary '%$\Î\ï\ÝM¼q\æT<\Äýð','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Salsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C£¼UOžõ\Zß ¡xtH',_binary 'ŒG\n\"‡_/A\çg“h	U?\âS‚sóHö×‘‘Y¤ô½Ù³','',0,'?'),(_binary '%-?\Õõ3 ¢¤û\Ãh\Ü=d','wp-content/themes/flatsome/inc/admin/customizer/img/product-gallery.svg',0,_binary ' |\ã<üzl\îg@Ö©9ö',_binary ' |\ã<üzl\îg@Ö©9ö',_binary 'Œl\ngó«Rý–Œ›/ß¹É‰šzú»\æ(|a2z\ËÆŸ\ÐW6','',0,'?'),(_binary '%.–.Ct\í=\á\ê\Ð\ê\\`','wp-includes/sodium_compat/src/Core/SipHash.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'öcJ>|Eqv0|bv‡\Ã ',_binary 'ÜŸ÷j\ÆpeòM¨N«?”\ì\ÎaÁ\ÒXi+!S‰2','',0,'?'),(_binary '%2OðqT\ßþ\ÒCž8³”\Þv','wp-content/themes/flatsome/inc/builder/shortcodes/gap.php',0,_binary '\í|¶¦ÿ\"˜Œ\æR$r2tu»',_binary '\í|¶¦ÿ\"˜Œ\æR$r2tu»',_binary ')œs\éƒör\ÞlÔ‹ò‡¹aVMr«Á£\âš1À','',0,'?'),(_binary '%6\Ê\ç\å–fbgzž\Ü2\Î_©','wp-content/plugins/woocommerce/assets/css/jquery-ui/jquery-ui.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÜW\Ý¼+yJ9ø-¿³',_binary '¾\0·û…ù¯\ÕdOn]&\çˆBó\"\ëþY\âXLö\ï7ø‹','',0,'?'),(_binary '%8‡\Îù¥\Ã Qªd†L¾ ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-name/test/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸B>–)û „ðškjj>Q',_binary 'T)2q0•r\ìÀ2‚µ\ÃÏg,ž†šX®­y\Ê{\Ú\ÔX’\Äh','',0,'?'),(_binary '%<¹oNöãˆª¾\"\ÒQ\Ïz','wp-content/themes/flatsome/woocommerce/checkout/header.php',0,_binary 'U› H‹£,\ægšXˆ»š',_binary 'U› H‹£,\ægšXˆ»š',_binary 'ßšÚ«{!rø©*\0Zü²U=\æl	„µ{½\Ñ(þÌ–','',0,'?'),(_binary '%?f\ÙEµ\é\ÆMs\å‚ö\Ï\ë§','wp-content/themes/twentytwentyone/assets/sass/05-blocks/latest-comments/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?D\ëM\\\í=2I!',_binary '%[	kdT¢9¡\Â5|¹}-½©¿®U\â$s_°W{\ï»','',0,'?'),(_binary '%A\æ*\Ü\Î\ßøYð\Ô]\0','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/StarbugInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·•\ÔõûŒbÀ£\n\Ë\Û4±\Ü',_binary ':\ÖÔšÛšŸ€”ü´\r°7»\0\ÙXŠB]%óHU','',0,'?'),(_binary '%B—ª\0<¥fTõ\0†¹','wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-mega-shop.php',0,_binary '\\ý\Ñ4€*¦	¿\ÊT',_binary '\\ý\Ñ4€*¦	¿\ÊT',_binary '5hŒX]*Î´L2–Pw¢\ÏzHzC<OiŠŽ‡\Úh)\Ô','',0,'?'),(_binary '%D?\Åm1QZ\"\ÅcAXQq‡','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Insights.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŒG\ÆŒ\ß=£¾1\nV\ç0\î',_binary '8}·>\í\Ûk6`¼ÿuid\âð‰eH\íP\Í^\é','',0,'?'),(_binary '%H‡þ_D&„·Ÿ\"Ë”÷','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/panel/panel-field-container.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ôªglu¦°ñ{ÀR\Ü\ïË®?',_binary '%{¨p\0w®?\nù«H\Ê\',ƒLU#¬\ÍO:ŸXG±W','',0,'?'),(_binary '%J÷Ã½\è&x˜­üHgµ¿\Î','wp-content/plugins/ti-woocommerce-wishlist/assets/js/clipboard.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§³\ËIC¦5vLX2',_binary '(ªz)\Þ\é½1ò¦½\ZÎ›ÀŠN‚5\É\Üoa44ºŸS','',0,'?'),(_binary '%V×™•\Ã\åä£¤{\ÖHNe','wp-content/plugins/yith-woocommerce-compare/assets/images/11.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ù¦±Á\àTùùb\ço~\n',_binary '÷óñ¾\Þ»\åÓ™\ê4•¥Š¿¹(¤\ÃN¿\'5=±ˆj%ˆ','',0,'?'),(_binary '%W \É\Ô?• —Wª}¶<¤','wp-content/plugins/woocommerce/src/Admin/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ûû\à—¯\ÝBº\\M\Óp',_binary '•\Ø\ëUT•%÷W&kóu¯\Zs\Î/Œa\Ç\Ïù¯¤µQ','',0,'?'),(_binary '%f14¨Dô\è·\Ë\×\É\\-Á\ï','wp-content/plugins/woocommerce-multilingual/classes/multi-currency/payment-gateways/class-wcml-not-supported-payment-gateway.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¢Õ”¤\ïŠ\ÜÔˆ»\Û\î\ËÝ†',_binary '¾D\Úl;Ûº\æ¨C\ä”5}]3iÔ¹XO°\È\Ï','',0,'?'),(_binary '%iþ\Í\Þ\ågca\ìW\Î!q\Ð','wp-includes/blocks/cover/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T¸ŸEZ}E5–D\ç\Ï',_binary 'œ\Í\ä\Ú\îU$Q¢\Ã;™Ì\ÝÛ«ùq‰„ \ÂÇ©#‚º','',0,'?'),(_binary '%uŠvƒ¤ð\äT¦u\Ö6=½\×','wp-content/themes/flatsome/inc/integrations/wpml/flatsome-wpml.php',0,_binary 'Ã‹ ´ UI$\åÁ\Ý\r\ÂN\×',_binary 'Ã‹ ´ UI$\åÁ\Ý\r\ÂN\×',_binary '\Ýô}vÈˆš´	\Z\0!+P\Ë+™¯;\Þ\î¹‰\ÄeS\Û<\0','',0,'?'),(_binary '%zbV	6šý²9„\È6:(','wp-content/plugins/woocommerce-multilingual/res/css/options-permalink.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´\Üÿ{”	\'m¤\\PQ',_binary '”\ãƒÁ{Ù¥j\é\\“^`ón\Èw\n\Õ\Ù,\'\ÐÒ§\æö›ˆ\Él','',0,'?'),(_binary '%}¸Mº£ha&\Ú6±','wp-content/themes/twentynineteen/js/customize-controls.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'À{Ë¾b‘\ÛB¬5üùÒ‰',_binary 'E\Ù0Rˆp4RRœ¶\ÎÁb\\`’\éŒþ‚¼a1&\Ïg·´€¦«','',0,'?'),(_binary '%Š\\P8úU¿£\Ø\ÑZùh—k','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/rating/attributes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Uÿ‘gfZ\Óº‹\ç¨',_binary '^¢ý°º9”av–1…\â=ŠFò\áZºS¡]K@O\Ö\ï\"','',0,'?'),(_binary '%œ«ªN\n*ÙƒG\ï7ž','wp-content/themes/flatsome/inc/shortcodes/search.php',0,_binary 'dwõ\íJ:[NË‚Œ\Ün\Æ',_binary 'dwõ\íJ:[NË‚Œ\Ün\Æ',_binary 'º*\êƒ+\ÐtZ™õ´p\Æ^Ž\ÛiŒ•#\Ë\Ò%\ß2\Z','',0,'?'),(_binary '%Ÿ0›vw\àÁ¬÷\Ç{f´ô,','wp-content/plugins/nextend-facebook-connect/admin/images/layouts/above.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&¸\0\éP\ê@z,jµD',_binary '\'\â\ëM\íiN¶—(\ÛJýy¯\æeÝ­ŽS\Âw÷ÊŠµd','',0,'?'),(_binary '%¥\Ç\à9\íºñ\\Þ‹ª','wp-admin/includes/class-wp-site-health-auto-updates.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VQ\Úqc¸:­’M·k\é]',_binary '\×\Æ#\ÂI)\åoU„Qiª\Õ\Ç1pˆivÁDWJHù¬*\åô','',0,'?'),(_binary '%§A\ïyF»°I§‰;','wp-content/plugins/woocommerce-currency-switcher/css/images/ui-icons_454545_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w™H+\Üq\ì\äs±u%–',_binary '>ñY¦G²ªT†¼|Ê\Í8>ŽóX¼1j\Ø Í¯\Ì','',0,'?'),(_binary '%¬2¸O\Ùj\í¦\å’&O\Ó','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/icon-refund-info-notice.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÞJˆ¨„xM£\î\êE‡\Ö',_binary 'ö^;>\Î\Í\×=¡™›vzVÁQ…;Y3Ú³?‡+ñ\Ô=','',0,'?'),(_binary '%­L\ÃÝ¤\ç\ï\áIld\ÊBò','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-multicolor.php',0,_binary '&¦ü\ã\Z»ŠkV\å+\Å[',_binary '&¦ü\ã\Z»ŠkV\å+\Å[',_binary '·\×¬\éœ±8k4\àý!V«13©\Ù\áw‚2‹s<³3','',0,'?'),(_binary '%±¢|‰-ž´\ÃX\è2`JV','wp-admin/images/about-texture.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\àG«|ú\ÕZ|\Ñ\Ý\Ö2rF',_binary 'v\Z|ý	7\Ý-õ\Zþ-¹¥Ÿ÷Aú}\Ö0õ\\\ØE\0\Z*0\Ñ','',0,'?'),(_binary '%·•ª\éGHE’\Û8•;y','wp-content/plugins/woocommerce-multilingual/classes/media/class-wcml-product-image-filter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\î\Ê\é€\ÛN70Œðð\í‹',_binary 'z<.\\5ðvùÐœ3Ì]¿\"—aý»\ç\Ñ#\Þ\Ê\Ì\\\Ì','',0,'?'),(_binary '%º\Ò\à\ë8^œV<\Ñt\Ë','wp-admin/edit-tag-form.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YN\Í û\ê&Q@\È|Mô\â',_binary '¯V,Mfo \nö\ì\ÕSi™º¸\Â\Ï\æjõ\\¥w†_y','',0,'?'),(_binary '%ÁfWñ‰…	\ÖP0\å}+','wp-content/plugins/wordfence/modules/login-security/img/menu.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\Ü\è±\Ñ\Ç]\êj-\ã‘ø¦™',_binary '8šü»\Ô\Ú#Ì„(8ø\áÿˆOû\"\Ç	+h\"Fb–\ìƒ','',0,'?'),(_binary '%\Ï@4é†nÿ\Û\ìA¶Z^','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/jquery-tiptip/jquery.tipTip.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÎCœ(\Ý\Û\ÄÁœO\ÛO\0=<\Ù',_binary 'ƒž\ÑeQZk®CÖ»ü¾²n\ßF¸`\Í~Tá»’\íi×¶','',0,'?'),(_binary '%\Ïi‚ÊŸh¨¸êŸˆ{ˆ','wp-content/plugins/woocommerce-multilingual/locale/woocommerce-multilingual-he_IL.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/:ñfn=\'ÿ7jzI÷‡\Ôm',_binary '(¦°*Ž‹\ïjd\Ûp¦°¤ÿ\æº[\"±£jb\ÖX}þ\ÕVA','',0,'?'),(_binary '%\ÐPb.\Îÿº8ºGd\Ît\Í','wp-admin/css/media.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&ñŠk´GBI£0«w—G',_binary '\èÎ¢/ÁYt³œ\î\îñcòµc;,VH—·-…\ã†\æ','',0,'?'),(_binary '%\Õ+z\êúkg Õ§\ÉÏ','wp-content/plugins/nextend-facebook-connect/NSL/GDPR.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ó¨RPªU\ä\ã\à]’Ð—zh',_binary '•†Ê¯ž$¥o%\\˜Ê¬g¾µ‚50C§\Ö¤\å\ÙÀ','',0,'?'),(_binary '%Ö½ùºhK4hŽHm0†','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/query-state/action-types.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'újŸúñ\Óš©',_binary 'ŠPzü¥\Ãù\âù`‘±û\Ð*‚O‘\îÒ”´vÚ…„\è¦M','',0,'?'),(_binary '%\Ø\'û†BvXþ\'\ì¥F)ù','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-accepted-payment-methods-block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\Ãô¤õ|sÅŠ:	\ì',_binary '\Ïu°t‰¤rUxœ\Õ9\Õ<\Ójs\Þ	¸3£QÕ° ¥S','',0,'?'),(_binary '%\à\ÜNd\0\ÑÃ‰0ª \ç†','wp-content/plugins/woocommerce/includes/wc-widget-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÈV\r)ªJN{\ß&†½\Í',_binary 'Áš†s	X)÷\Ç7¾2ý\ÐÝ¡\ãI`±›1…ðYC\Ûö\Í','',0,'?'),(_binary '%\é\èú¨(›øJ‹@\ë?m |','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/yit-plugin-panel.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·N‹KôQ\É\ÊD¦),˜ys',_binary '3\æ¹wñÝºXò\ÏKöªPÍ§X•\Ãiö˜—y¼','',0,'?'),(_binary '%\îD2¶DHÃ¹\ïù\áu\à','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/images/ad_white_on_orange.webp',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹®—>=3lb­$YFžô™',_binary '±q‚Hrñ\Óþá—¾O\â±5jI“Œ‘£€­\ÇÚ„C^C¹¯','',0,'?'),(_binary '%ø;4Lô¦v!N!»5zy','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/spinner/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\Z^o1Ónû\âù-¯0',_binary '\Î8\î¤x²3¿§\áþ”þüö­\è2^\ÎH\æÈŸ©¹ò‹u','',0,'?'),(_binary '&\ÄZ*\Þ¥\"Q\Ë\Û@\èô','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å­KK—yñÞ«pr\Ä]',_binary '\Z\Îñ\n„‡¹=I#Zˆ\\‘¥4„lÖ™\Äµ¤\ïuó°®\å`','',0,'?'),(_binary '&S\Î\ê†n\Z¾øŽñ˜\Õ	','wp-content/plugins/woocommerce/includes/admin/importers/class-wc-product-csv-importer-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'aZ\í}w&kœ³i·ù\"­‡',_binary ' ¡‡…²õŸõû\ëû\ÛöÙ¤,| \áå‘Š¼‰1š\æõeG','',0,'?'),(_binary '&KÃ”Š…eò„ö«+','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/builders/elementor/class-yith-elementor-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñú‹½ÈŒEb\0C¯ó³',_binary 'K\Ün&\á¶KŸ¨|½\î¼8\éli\Ú\Â\×L>¼£\ê','',0,'?'),(_binary '&c9J\Êq	+MMT8ûl','wp-content/plugins/woocommerce/includes/gateways/paypal/assets/js/paypal-admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™‚q4Ë¼²Ï·j‘o«bÁ',_binary 'P\Þ-¡F†\Ô\à\ÍkŸ»‡·ò–\rÖ¨x&€8\Æ#\r','',0,'?'),(_binary '&Ö¹–Ì¦: \0A-V`b','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/repository-legacy-free.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ñ¯¥}0|O< Ÿ¤¨,',_binary 'šû€§KûøbŠ\ØHSv&?V1\r„@(§)£¦\à)d','',0,'?'),(_binary '&3˜\Ì9Q&m·\ÞOc…Q','wp-includes/blocks/post-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ë¯\Õû>¾YHSKˆ%Yn\íY',_binary 'W\í8\ßJR§\\\äD\'\0\Ín†\Ãõt\è\ZaNòd$S\â\è\Ð','',0,'?'),(_binary '&PDt\Å?5uø1Ym²\Ø','wp-content/plugins/wordfence/crypto/vendor/composer/installed.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§ÁŠ\Îq\Îjy*_iI\Ð',_binary '¬z®~t’iõƒ‡‹ô÷D5\Z†9l9; I\ã','',0,'?'),(_binary '&*ƒ\Ê\ÄdÄ†Ö¸	\ÖH5','wp-admin/images/align-center.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\Ù\ZÝ¶µ4y\æŒdY1\ÙeŽ',_binary '\Ðë†½N3‡X!\Å\Íljÿh`\ã®±\ç´\ÇhA]ô¸J‡','',0,'?'),(_binary '&.—õC¢\ï\ïF\Ñh\\-\Î2','wp-content/themes/twentytwentyone/inc/menu-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v/{\Ë!­?)ÐØŠ',_binary '\àMÄŽŸ\Õ\Ë/?±wHR\Ñ)\'ÿ\Õ\ìM¢v®S\Ý\Ì;^\0ñ','',0,'?'),(_binary '&=\Z½+t\í’\"¢/k\'\n','wp-includes/js/jquery/jquery.form.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒt÷øÿ±j\ÜÌ˜£/¡o',_binary '2…tvŠ¢vûñ|oˆi=¦§…x|£ü\ß\È|…','',0,'?'),(_binary '&Ao4üI©\ãÇ¢Àl‡','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-palette.php',0,_binary '-nÊ™ö„\È	žYT\Îk£',_binary '-nÊ™ö„\È	žYT\Îk£',_binary ',\î(–¿†¨\Þxzœ\Ög—\ÅT\æj˜nƒ§\'\Ýp>+\Ü=r¾','',0,'?'),(_binary '&FkO1†(¶\Èe4#]\ä`','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/shared/hocs/with-filtered-attributes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ú\\®—\Íh°P\Ú\Üð}Jø',_binary '‘\"aoR\Ý8¬\ÅuŠÁ,\íjz©²	e\ìF¶€6°','',0,'?'),(_binary '&M™NS^vjö~þj','wp-content/plugins/ti-woocommerce-wishlist/public/wishlist/view.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²†„,\\õ\æy~ƒ/w_=',_binary '\r¥\Èùt®\Ônñ¶\Þ E=V\ZŠpA——\ÐG„W\Û!\Þ','',0,'?'),(_binary '&SòOAZw X¢w‘ˆ','wp-content/plugins/ti-woocommerce-wishlist/integrations/automatewoo/trigger-wishlist-reminder.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷Sñ/»h#·\ãW\"³\n',_binary '\ì\ç\ÕdF\\\Zšh53d¬†\à>\ã\ëIq¹Fe\è\í>·T>','',0,'?'),(_binary '&`wžºÇ¯©\ØM¾Œ','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-reports.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\Ùw\â3\\n6D³B',_binary '\Í~±\ëö\Ä~ú±äž¤\ÊrgŸw5ž{nJ\Ê\Ü¡\Z','',0,'?'),(_binary '&ee\î\n3K\è\Ô\ãvZ¦•','wp-admin/ms-delete-site.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†÷d\Z\èu\äE66&\r¹o',_binary '\Ü*Moð±\êx\îU\ÅLGÒŸxnb\0ø\Í<2u\È\å\è\Ä\æ','',0,'?'),(_binary '&fs2¿´p¢\èx‰\àQ','wp-content/themes/flatsome/assets/img/payment-icons/icon-paylife.svg.php',0,_binary '\Ê;YÉ¯9b¤\Óõ“\í\ï¥f',_binary '\Ê;YÉ¯9b¤\Óõ“\í\ï¥f',_binary '>•\Z\á÷~†Ž) a\Û[¥\0²•öDƒV!\å¢d\à\Íl·','',0,'?'),(_binary '&k\0v_fcb‘øv†œøù˜','wp-includes/js/dist/format-library.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™w2\Å#`¾7Tfžc| ',_binary 'B\ßRð]g(8s\ÔA\ïÖ†õ”ô9\Õ\ïÁ\Ã’„\Ü\Ûb+½d','',0,'?'),(_binary '&lK\Í|R†6úÀ \ëŒK\Ü','wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks/Marketing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	j™K;¶IþQ\ã`F)',_binary '`\×ûv\ë‘™{=¶ý\å“D\Í<Ž&\íQ)g[\És','',0,'?'),(_binary '&sšRþ‚‹£¾\ÜX\å‚<Á¨','wp-includes/blocks/separator/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ò^ªš®xˆr­¯£;\É',_binary 'A²:Ú­ò®Œµ#Lþöu=B\à†{EHMô\Ç\×^(<b','',0,'?'),(_binary '&t!0^g‡\ÛbJˆc,>3','wp-admin/upload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'võ\\\Ý(1ñ˜¨R\Å.6q',_binary 'ThÞºU¹PÆ•\át’\â,\ç0›U\ã/€\ÊLsp×¯\î\n‹\0','',0,'?'),(_binary '&~\ç*m\ÙE+nXû%;[O\ç','wp-includes/css/dist/block-library/common-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Pl³ª±–Y,ýÁuÄ¸!h',_binary 'ýb–0=~9?êŠ±>Üƒo€|±ª\â—\Ä[8\î{','',0,'?'),(_binary '&D\ç¥÷Q£R\È\Ðw£]','wp-includes/sodium_compat/src/Core/ChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å\Æ-r‡jiI\ÞØ£eŠb',_binary '”¥b\ë\ÆE·\Ö\è\Ú&q¶þÿ\çª€*‚–‡…\Èø\îø±','',0,'?'),(_binary '&€·t\Úc\ÏlG\Z\à£C','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/components/action-button.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ïº­º\â´5ƒ\Í0­_§',_binary '£l´¥ðe/\Þ*ršG#£\Ú*Zº‹-q¿ªŠ\ÈýOoz','',0,'?'),(_binary '&‹\Ó\èÉš%Ÿ\Ó)\ïW&\Ôi','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/RepresentedCountry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>XVD\èû°¯m­|P6\n',_binary '\éýl=\ï³b:ÑŸ\Ýñ	R\äZ\Ðÿ	­Áÿð	\à6','',0,'?'),(_binary '&ŒIo}Š/g\ÈG…Ö1\ËC','wp-content/plugins/woocommerce/src/Internal/Admin/Onboarding/OnboardingHelper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§D\ì¢ Ž\ÛKõ2I¤\à',_binary '\0_òÅ—a\Ñõƒ3a7fs\âW6o(T\ç:ÿ\ß$C	\à˜','',0,'?'),(_binary '&›ï‚‹‹]\Ç\ÅlXƒ\Å','wp-content/plugins/wordfence/css/license/premium-global.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ù¬5\ÍÀ&‰\ë–]U¼\Ê\0',_binary '=:I\ê\Ã#_A¤\\R‹õ\ÏÖ£X\Ô\æF¢§SO™ˆreóc','',0,'?'),(_binary '&žeP¼ˆo\Â\"\ËwŽª','wp-content/themes/flatsome/inc/admin/options/header/img/header-simple-center.svg',0,_binary '§+ +¾›§³£\\À«q',_binary '§+ +¾›§³£\\À«q',_binary 'A:”\'7°­D\ä˜5@\0t\èc¹tŽ-\ç±k\ì','',0,'?'),(_binary '&ž\ìNž¨\å©\í‰bK+\ß)','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/price/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·F\Ñ=žY\ëjIcžš.˜',_binary 'ó\Ñ\Ö¬Á;O¼\'\nO:µ(°©«E¾òj¢\\','',0,'?'),(_binary '&¡¤\Þn\ÏT)Y¡³D\Ûþ€\Ü','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/formatted-monetary-amount/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\05\êÈ‰g\Ý÷\Î6¨œ\Ä/y',_binary '¿|»\Zž•G\'\á\åÃ†û‡2ùEu\Î\Ã‡¿e¢‹°','',0,'?'),(_binary '&§K.\Ýô\Ô\î;Ð¸XBR]','wp-content/plugins/woocommerce-multilingual/res/js/cart_widget.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ês\Ñ7E\ï\êºFaóq¾‰ö',_binary '4Fr$b¼\à`\æ4=¨\ÈUƒ©ˆ\ÛBVk2N\rÀ%£','',0,'?'),(_binary '&«ÜŸ&\Ý5\Âj‡9\Ê\çN¢','wp-content/plugins/woocommerce/includes/class-wc-logger.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“\ÍÇ\Ú\ãlÂ‰Ëœa\Ø\Zû',_binary 'ÿœ\Í\Ñ\Ù\åjQ€·\âh\×Ä«_m¶•\îL¥·~Bû\í$|V','',0,'?'),(_binary '&¬‘•Rw?~„j­hJ¤D','wp-includes/Text/Diff/Renderer/inline.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ\n\ån5±P´²\Ç\é\ÙB\'\è',_binary 'X\èU.kâ»º\æ@-(•¶5¡N½‹\ã\îñV','',0,'?'),(_binary '&°\êk§†-\æmRÆ•q}','wp-content/plugins/woocommerce/src/Admin/API/Reports/Query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z´ð\â\Öb\ÍD*J\ÖV\'\"',_binary 'p\Í\\r¥syvƒ\íq¢£\ÈwkQuÄ¼JzW¼Ò™®$','',0,'?'),(_binary '&¹^6\à\Û\åONtr\ìô\Ù\Æ','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't	‡\ï\Ï\Ëm!¬\Ô~A^óS‘',_binary '®÷…#øŠL?ûOM6r\Í/W_ ~•¹¤¦þ','',0,'?'),(_binary '&¼‹]0Wñ\ì\n)ÿ=’¿','wp-includes/js/tinymce/plugins/directionality/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆEr\èHD­\ÔD±Á3¦š@',_binary '<–®ý¬o”@»:\Ùü¾Ÿ-\ÃEgô¿\á\â)6^Ñ¼\'¿´','',0,'?'),(_binary '&\Ç\æ\Ä#Zõºð\íj.Ý—\é','wp-content/themes/flatsome/inc/builder/shortcodes/ux_gutenberg.php',0,_binary 'öðWE“\rMCd\Î‘[²D',_binary 'öðWE“\rMCd\Î‘[²D',_binary 'e\î\"¦´\á<Q+\Ý¿U#\Ø\Öø®\0N<ðX','',0,'?'),(_binary '&\É`\×O\ËQ5‘Q\Õ43¿','wp-admin/theme-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜†\Ï=\0§±·1žU¸´†',_binary 'ÿs¼\ßðJ\Ï<\èüÜ”\é\á¸\ë/©¨8\é\Þ\çg\ç\ê©k‰:#','',0,'?'),(_binary '&\É\ß\ë	PðshcusS','wp-content/wflogs/attack-data.php',0,_binary '#Ø­\n¾\î\ÅyIb½\r\Û\r',_binary '#Ø­\n¾\î\ÅyIb½\r\Û\r',_binary 'l‡Ž4Eq®{¶®‘  ¶\ï\×Ÿ\'wg\×31 c®w:³','',0,'?'),(_binary '&\Ê\ítQ\\j`™qÿ”Yñ','wp-includes/blocks/categories/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´À=)…`K×®ó!2:7',_binary '™“´1¼\ã\×\'s\ì1I¨MøøZš¡š“\ÔÕ´$iD','',0,'?'),(_binary '&\ÎvA¹öQ\Íôc‰\Úqw8,','wp-includes/theme-compat/header-embed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Omz8\Ê™F\Ú°\Ï',_binary '°£õ\Äò})d!q	,@,\×\Ñj«ñv	\Ý\ß\é\ÄE”\ê\í','',0,'?'),(_binary '&\ÔÀŠ­¸\Ü8xk^y|\âL','wp-content/themes/flatsome/inc/extensions/flatsome-cart-refresh/flatsome-cart-refresh.js',0,_binary 'K\ÒS0\ê{\ìp@\ä\\€x@',_binary 'K\ÒS0\ê{\ìp@\ä\\€x@',_binary 'Š™ž©~\Ò\0x»‰\Ì\ÄÿÞƒ\Â1\à9¾Bƒ\ÛtiT«\"','',0,'?'),(_binary '&\ÞrK±cK;7D³k°\Ö','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/empty-mini-cart-contents-block/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\Ë#v‚\ßhº\ç\Ú\Ëõ\í\"',_binary 'Lqt\â%1Q`¿6Áœ8Œ	\çw¶¸\Ö\n@\ßÙž¸’€\ç','',0,'?'),(_binary '&\ç\Ú\Ón¤\ç«TOªI','wp-content/plugins/yith-woocommerce-compare/assets/images/socials/facebook.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ü–UX9ƒgi$)zÿ´ü',_binary '7œ\ÖV%ø\r‚¬PX¤&\ã¤]Ñ¡kz—r\Ã\Ç\á»\0§\â¹\Ñ','',0,'?'),(_binary '&é¥±†˜ñòW‘³Ø€\Ó|¡','wp-includes/widgets/class-wp-widget-links.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æxÁ/k\Ãh\n\Å\êÖ½[Nv	',_binary '\Îì‡‰¶\Ã,x\à\ë¢-\Û©DO\á,°¥7Ñˆ\ÊQ\å','',0,'?'),(_binary '&\ìÒ‚n¡ $\ß\îd»øö','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/text-input/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\n3&”\à¤G¶@¨j·›*',_binary '’DÒ¶Ó·þZø\çÇ»)\ß\ÅzljÁ\n†\Î\é\"a~†b','',0,'?'),(_binary '&\ï9¢ú™6RI\Öi\ÎÀK‰','wp-content/plugins/nextend-facebook-connect/providers/microsoft/microsoft.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ö\Ð\ÖC š\ÓòŸ\ËcÝŽ”ª²',_binary 'ú„—#E–’Œ…U%!§À9PLQšc¾T_E¹.g\ÉMÁ','',0,'?'),(_binary '&ñY¨«¯z\Ðq\Í[Fžf@–','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/WebService/Client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'â¶¨º;*®ª\Ê?‰\Õz',_binary '¢¡±:O.\Æ\'«~y¡\Ó@€Y`FMNó:Àn\Ò.\í;q@','',0,'?'),(_binary '&÷aUG‘”ºÎºG®“','wp-content/themes/twentytwentyone/assets/sass/05-blocks/quote/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”@\Ü\rJ€û\Ýl‚\ÒHÌŠ',_binary 'k™¶§’ž{Ÿ»G9Œ\ìW1h¡›`Š²«sÒ—\ãD`\ÈM\Ó','',0,'?'),(_binary '\'\0ðØ†úø‚œPggt\â&®','wp-content/plugins/ti-woocommerce-wishlist/assets/js/public.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œw\àñzN|\ë—Õ–Œnr',_binary '\0Š\í¥¼[0¿9\Î\ç~°Uª9É¹\É\É5J«ÀV','',0,'?'),(_binary '\'iŒ—\Ìôƒ\'\à¿ay‘','wp-content/themes/flatsome/inc/integrations/sensei/sensei.php',0,_binary 'uš¤|]¨„Žil9H',_binary 'uš¤|]¨„Žil9H',_binary '2oO‘÷[>Ÿ½$\Ëu¼¡‰z™eôrh\ØP\å‰€\"òND','',0,'?'),(_binary '\'Ü\Õ\ÊTOj§ö\ÑJ$H','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/installer/icon-128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™\Ç\rat9žŸNwö+­L',_binary '™e\è¶\Ógv(\Ò&¯¾\0™c‘À =ù½„\n\çh\é?','',0,'?'),(_binary '\'A-aŽtb°ž©2','wp-content/plugins/woocommerce/assets/client/admin/analytics-report/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸\àyVtXŠEm	ƒX\Ä',_binary 'wñK¨­Z\Å0·Í˜ðbtn?§ÿ.®·n3u•	£ê³','',0,'?'),(_binary '\'&è‡e\é6\Ïÿ°„’L¥','wp-content/plugins/products-compare-for-woocommerce/berocket/sale/sale.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zKŒQ\ÐÿZVMƒÒ›\ìN´R',_binary '†…¡v\Ý\Z¼q¨L\ÝÀ\r}\Ò\Ú#”\î—E\'1«Nú\Ñu\Â','',0,'?'),(_binary '\'/2\ÖÞ®¸*	´Ì°9\Ê÷\ë','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/PageConfig.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™°\äi\á¬\×%t\Âü\ï³ý',_binary '\ÃC\Òv\ßø™R\ÆWp\ãþù\ã\è¦±fÿnü\ÂOT\Ó\æ\Ã','',0,'?'),(_binary '\'4µ#U\Ùà«‚e/¤´Ì–','wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Shipping/ShippingClasses.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™\Û6$”÷\åh¹½¤\ÄTQC',_binary '›?º=J\î”ùŸ\É3\Íl*`W+\ã\îy¦\Õñ†­','',0,'?'),(_binary '\':9Zó mpU÷\æ\nS\ß','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/ajax-products.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®~\ÔLk’­øq–ˆ\Ë\å\Ì',_binary '9!¡ÑŽB²\r™!\Ò4Ú«ò·n\ÚÝµµ$²\êõC&|óÀ','',0,'?'),(_binary '\'=!Za„\Ía\â\Û\æjU\ÑQ','wp-admin/css/site-icon.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨ô}ŒE²¨\Ôp0lu',_binary 'i>ÂœÓº#ˆ&‹2Z\í\'‚ŠK(*™«õ\Ö\âµ','',0,'?'),(_binary '\'@g§ð\ßò\ßšk}GzO¿','wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/class-version-selector.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@nðªM\ì*H\ÊMž\è\Ëj',_binary 'Ç²\Ïw AXs”‡#ó>cñ…]œ:öt…S²\Î\ÄIÀ0\Z™ÿ','',0,'?'),(_binary '\'@\ÞñŠ;\\U\èÁÆ„ò','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/types.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a¢\âl\Õý^~\Ó‹\æ-³',_binary '\è„Z\n\î$¥\æ¨qŽ1ú\'`W\×&ò³\êówR‚­!\ê\Í5','',0,'?'),(_binary '\'Ac¸´\å,	~—6\ØøÜ¦\ã','wp-content/plugins/wordfence/views/onboarding/tour-overlay.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™:\è¾½%› Ÿ);§\0',_binary '\Z\Èó\'Ä¡ë§ª\Ó\Ê¶.s\'\Æ\è­sd\Ü4§^´\ÓI','',0,'?'),(_binary '\'M<\Ú\ë±h1\ê\Ï\ê9\ÃL','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-attribute.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X?1\ë\Ëöµ†.\àO\Õs',_binary 'sA\ÓÁ;1e5<¼RL\Â\ïƒ^Xy#\é\îJ²K’','',0,'?'),(_binary '\'Mþøwˆñ‘·ƒ\ã\Ç\rKj','wp-admin/includes/class-wp-site-icon.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÖW~û\ë0üdŠ‚\Ìy',_binary '_9ð\á%7\æN×ŒŽ[\"²ñm–;Xi:RG\äx^¢q]','',0,'?'),(_binary '\'RC“\ÑZn\ÉD\æ,y\Ì','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/payment-methods/test/payment-method-data-context.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷z6iH\ZB\ë\â¦\Í?Z>\ì',_binary '˜\0}\Ð\Ñ†jp:\"‘Q\å?¾+Ÿ]:ó¥&#GŠù ?ò','',0,'?'),(_binary '\'Zõ›Š\æY(\Úv6\äJ_','wp-content/plugins/yith-woocommerce-wishlist/includes/class-yith-wcwl-privacy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\í0:<e¸÷ÿk[‘¦ƒ\Þ',_binary 'N“}EÖ‰\Ú~‘\Ý\çÓ¥ù\r\çkLj\ÍG\æþŸ.\ÓJ\Ó\Î','',0,'?'),(_binary '\'\\Ð‘1QªŠ&\àö^³Žh','wp-content/plugins/nextend-facebook-connect/template-parts/login/below.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'À4šS_$õJª9£Í›',_binary '\Õ1†MTR.¨\ÐV\ëØªk	*¹«\Õ\äÁJ%Ó‘i\Ë','',0,'?'),(_binary '\'f!Þ,¸\'½Œ=!´m\Ö','wp-content/themes/flatsome/template-parts/posts/partials/archive-title.php',0,_binary '³¬w\ãµÓ†\ÂÆŒ\ìo‡þ\×',_binary '³¬w\ãµÓ†\ÂÆŒ\ìo‡þ\×',_binary ';\Ì@–/\Ú7k?Z›0Á?\æE\äšß‹`™‡n™	L§—','',0,'?'),(_binary '\'jHUuHû†Ë›r\Z','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-express-payment-block/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\à:“\ÊOƒR\à\ÉòÁÚ•',_binary '–|1\Ç!ðrA³?\äB¸\0ó¦ O¾N\Än_\É^œ','',0,'?'),(_binary '\'o„«‚súIôðw\Æ\ÑI','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-attribute-term-control/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ø²\Ý\Ý~/ƒ\Ö\Ãio#_¬5',_binary '\ïrJ=’\äWf†#wE»ž>^lô}7nøƒ\Ì','',0,'?'),(_binary '\'r\Ð,¢qRÂ†þG\Ñ\ÈG¼Z','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-taxes-by-date.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ý’“ûüA®…Ÿ\0f¯ò•?',_binary '\ÐmKZXþ–·!‘+ESµ·K\Æ\nLM5»\Ä\êžñƒ!\å','',0,'?'),(_binary '\'ƒ`e\ëû$‘ªl·Â…','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/previews/shipping-rates.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':Q3ˆ\ßh™cp\ZD±¢',_binary 'ð:Ó±%;\Ìf\Ã=šº8O<a\ïü¶\rh\';„O','',0,'?'),(_binary '\'‹ü»ž ˜o\È\ÍSŠ','wp-content/plugins/wordfence/images/icons/ajax3.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mw\ßß´tê“\'\n¤ñ\ís',_binary 'œdz\É\ê\nºyK£Æ®¨\è’\'#]\Òx	VJRø¨.=:','',0,'?'),(_binary '\' \êx\Ó)\È»l\æ\åW¯\Ñ','wp-content/plugins/woocommerce/includes/legacy/api/v3/interface-wc-api-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o9\ç½\ß/*e”c\èø•',_binary '\Ê\Ç\Ú-¥”\Ó\Ã\Ôz\Â\"t\Ú!\'D@«Ï¿…9\ß\×Ï—\Ò','',0,'?'),(_binary '\'¡\"z®\Én\Æ\Úp\âÁ\ÎaE','wp-content/plugins/akismet/views/enter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q¾Ž–Y\ÊdKv:cmxf',_binary 'i\r\ÌP1\ìnG3`\Þ%û•pšF°Õ¼¨¯üðvW\á','',0,'?'),(_binary '\'¦aVpn\ïµRR—qQ\Ó','wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-fourteen.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†ß€•úåµ­:„\×ËŒò\å',_binary ']‡ðrƒ«\Ú\\Y`ž”Ÿ\Í\å!\ÄAõ\àZ§­÷^ \ZJxøD','',0,'?'),(_binary '\'³Á\ê\â\n¾f\r','wp-content/plugins/woocommerce/legacy/js/admin/woocommerce_admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GœÚ›±ó)\Ân´\Òs\êˆ%D',_binary '™&\Ó_\ë\Û_ \ÏóY:\ßúí€°\É&\Ù0´\Û\í\Ñ\àrO','',0,'?'),(_binary '\'»g|Í¹\"¬”‚jÝ¹2\Ç','wp-includes/js/jquery/ui/effect-transfer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-l\ÒQ›iv\r;zF\éœ',_binary '1j½üXŸÁ\í(\êOrÿoZ\åš\çF\î\áX¿±\n)Ø¬\îf','',0,'?'),(_binary '\'\ÏF $O¾^\Ën\ä\ìIR','wp-content/plugins/woocommerce/includes/wc-deprecated-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\ÉAö$óx|\áV;:@³n',_binary 'RH\ëØ‚‰\Õ\Ö3Šsû\Äj¦\Ç?I\ä‚”l\ç\Î÷]=!om','',0,'?'),(_binary '\'\Ù.K9…0š\ì¢óƒ˜\ÑÔ¶','wp-content/themes/twentytwentytwo/inc/patterns/hidden-404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>5\Ñ±4ƒG¨b\ra„}',_binary '\ì\ÖLlX\Þ\Ó\Ü*£³\Â\ç\É\å8ŸH\çž\Ü$X^?…D\Äx','',0,'?'),(_binary '\'\ÚÀ¿_iYm1ÁR','wp-content/plugins/wordfence/views/scanner/scan-results.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qxM!’ò£\nB½Š+=L\Ø',_binary ';ªOÒ¥v\ì\Ï\ÌÌ‰þ¯™\Ø	\Ï\Êþ¶\æ\n„Ÿõ¶','',0,'?'),(_binary '\'\Þ\ì³=ö-™\æ‹\ÒAC\\K','wp-content/themes/twentytwentyone/assets/sass/07-utilities/color-palette.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘³~\ZEµ\ê| ß\0\êƒ\"',_binary 'k\ê¥:¤¨‘½4›j“(œ$•œ‡Áç·ªúÀc’ö','',0,'?'),(_binary '\'\ß\Ð\î÷>Àt\ì;7J\ÝO','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/select2.js',0,_binary '9~!Á¢×¥–95ö\Ãt£',_binary '9~!Á¢×¥–95ö\Ãt£',_binary ' B?÷\é\Üi0\âs\æ\Ð\rô+œ\çT\Zª€¼°Q¥\Ñl³e','',0,'?'),(_binary '\'\è\Õ3\'ð@=t,\àGk‘','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/premium-tab.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô\Û1¯Ñ¹®—¨·\Ê\r\ì',_binary '@—A¦1›­*\Ólhý±÷L^¯E©\ï77[ª\ØZ','',0,'?'),(_binary '\'í”¤±~”—ºÀ\ç\í\×~¡\0','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/Transformers/ArrayValues.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\ÂV\î\æ†qš³½Y²¯',_binary '&¿\Z‰\\\Ý$¬œ7\Ê.i\Ô\é’\â$©¼5¡C@ .d‘','',0,'?'),(_binary '\'ùÀ‡÷KyTJv±Gª\Z','wp-content/plugins/woocommerce/assets/client/admin/chunks/analytics-settings.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OYvðwõÓ‘\çb8\è',_binary '\Â8§2ô’ƒN»\ÝE\ãTÊ¨Ò§\Þò ›Õ‡lˆ0µ7«P','',0,'?'),(_binary '(ˆ\Ôg%\0\Ï\Ã4\Ý\Ûl>œ','wp-includes/js/jquery/jquery.schedule.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&³—Tªk\ÇfØž¤\Ä½',_binary '¤\Ü?\ï\ÆvEÊ”ªwj\Ç¦¡C\åPÕ¯\ì_µ£','',0,'?'),(_binary '( jŸe\nª‡õ¡š·Ž\Ú','wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/core/font.js',0,_binary ' 1Ç¡;Ipi|\'»ø¦',_binary ' 1Ç¡;Ipi|\'»ø¦',_binary '¼¯\éÁ‰\"\Ø\Å\"aº€?ý\æ\Ð,Š\Ú{#\Ü\é\':\0 {6r','',0,'?'),(_binary '(%^\é\'AZa\Ñú\'pa`Q','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-dynamic-pricing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª7o\Þ\éQZ’µ™H)˜\Ó',_binary 'M<\ÛÎÆ¸©.:”\Ñ(nñ\\\\T\Ã\ä+Bpðnœ\Òx','',0,'?'),(_binary '(+NŒÝ¢\ä¿\Å\Õ:','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/template-service/interface-otgs-template-service-loader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#F_Dh\Øtù\Æ\Î\Õ',_binary '\Äf|»CÄ>^\Äö3“‡Qª\03\Ð[‰	ºq®\ï—','',0,'?'),(_binary '(/`iÁM\èo6\áK=”','wp-content/themes/flatsome/woocommerce/myaccount/account-links.php',0,_binary 'º¸\0dûÕˆ\Í..\ßR}\Ä\Å',_binary 'º¸\0dûÕˆ\Í..\ßR}\Ä\Å',_binary '\ÐM€\æZhM“ˆ\ã\àªò3U7n[t2\êôˆ<÷Yd','',0,'?'),(_binary '(0ó0k9Y¿˜¡\ãA®®\Z','wp-includes/blocks/preformatted/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E9,ƒGµr\×p»i\é_',_binary 'cSnmqr:¢hNe²W¦ª{(w\ÌD’~n\'\ä+¸','',0,'?'),(_binary '(3¬_©^\Ó-|\éP¹®\Ä','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/dropdown-selector/input.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e‹ý´+*‘\â\ï\ævG\ÛQ',_binary '5\Ö{\Ì<PPn‹®.Èº6t?gQ]»a\ïq\Ä!\Èû\\\â>\ì','',0,'?'),(_binary '(9•<žC)OÌº\Zc€ 5','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/double-sidebar.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iƒ[j[\Û}E:Kh',_binary 'Yûòµ.\Ùn\ì0„–¦W)£d9—»\ÂC\Üor‰÷\Ö','',0,'?'),(_binary '(>j1™8›¼óÉ¿‚Ä¡\ÄO','wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/amazonpay.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"¸ù&e¯\ÃGñ>À$r',_binary '\âq\rV«\âŒA¿\Æ1üÆ¢²\á\Ôi¹^;-ô>*/\êû\á','',0,'?'),(_binary '(?\Ë\Ü\×>¹ôS©Næšœ&','wp-includes/images/media/default.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-¶©\æ\ÍI\ÒB–h\Î@\à\Þ\çb',_binary ':\ë¦oLóJDjòþ$->»iº\é\'\Ã6nÖ \î›Ui','',0,'?'),(_binary '(@	\Õ\Óø\ÕÇŠº\árz™','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/filter-registry/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—@¢¿\Z­i§@Hšv”m´¸',_binary '((Äµr\Ù#ÿZºº=«\Î2\èø[ž\ÑqNS ¹`þ','',0,'?'),(_binary '(F\ï>Y\ì\ç’\ÓóÇ³¾´\Ä','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-reports-v1-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \î\Ã<c\Ïk–BMXZ>—',_binary 'mlw“7g\ìö0wk\Ñ\êÔˆ\Çò_(Uþ¹”9G?\'˜\Ø','',0,'?'),(_binary '(T´¼lG=! \Î','wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-gravityforms-product-addons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!©\ÂxÀ\Òv¦ò¦	ü\Õ|X',_binary '\Ãp\×\ØCRo¿\ÂR\ä\Ñ\Ïü¯ˆL\Û›j\ržô¯D\ä€','',0,'?'),(_binary '(WQ=3\Ñ\Èy\îú\Þb6','wp-includes/cache-compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸?Iq_¹\ê°P÷$Ó„',_binary 'ÿ\Ü\ä]4\'\Ï\ê‹9\Þ\á½…w´Eö“JõJ»\r¢nh\ë‘','',0,'?'),(_binary '([d‰˜ùº±¡\×\ïBQµ‹','wp-admin/js/updates.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ø”\åüy´›‡\ãü8w{¹',_binary '{ºÅ‰U\Zül“ûÿö Y©(j!\Ð\ÅYœ\r¹{y','',0,'?'),(_binary '(`N\ïKø\ÛeŒ«L7','wp-content/plugins/yith-woocommerce-wishlist/plugin-options/settings-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚\èV\ØòJ\ìPo\Î\×',_binary '\n_T|c\ÌNt5Y\Ü±bœ‡\êl\ç0¥P3W\nJ\×,','',0,'?'),(_binary '(l«\ÃÖ…+%ñm»‡\ØGI@','wp-includes/blocks/rss/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Õ¥B¡õvTE¹|¦\æÂ(',_binary 'UZÌ«º‡X2ª\Ø/\ÙÀ\Ò\Æ\Ì\éx\"UU€¦KT\ï<.ô','',0,'?'),(_binary '(p´ŠÇ®c¾ž‘9\è†F','wp-content/themes/flatsome/inc/admin/customizer/img/cart-icon-fill.svg',0,_binary 'ÿª\èF\Û%;²¡\â³a‰\Ï\â',_binary 'ÿª\èF\Û%;²¡\â³a‰\Ï\â',_binary '\â\æm:tÝ±&÷\È*t»A\Ëõ/\èFÖ²oN\\¨D\âfv','',0,'?'),(_binary '(x*J û…,…LÃ›n\ç<K','wp-content/plugins/wordfence/images/icons/arrow_refresh.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k•w„`ö`ª|ô}$G€§',_binary 'u¤/2/¼Œ»@‘Hž_Ilh•™ó¸/aU:«	','',0,'?'),(_binary '(~6vqV\ì0ô{†\"','wp-includes/ID3/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•¯§ˆ\0…D‰Ù–(õ€:!',_binary '\ß\r\âb¯\é\ÖßT\Ù.*¾\îüÁÏV­•W€','',0,'?'),(_binary '( \ïv|Tâ€” Â¥\Ô','wp-admin/includes/screen.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N6\'8;Ú‡ë¯£™¾V1\Û',_binary '\ÄoYH4	lY¨1°YG\ÚúH\étmSžZ/)¼\"ÿŒ','',0,'?'),(_binary '(‚‡Q÷NEü\êy:B€Ÿ','wp-admin/images/about-header-privacy.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–W°‰&;,\ÜIñ\Ø\Ú‰',_binary '_\Ö\0ý9z\×ø•·\ì\ÃƒQT.ox\çlI¼ÞÊ„C','',0,'?'),(_binary '(‰5\Z>Ž­žÙ¡É·m‡™','wp-content/plugins/woocommerce/legacy/css/network-order-widget.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯t;\Ã@ò;FU\Õrê™šžø',_binary 'J\ã”uÿ\Û?E\0ò\â\Îf\Ç\æ\Ò%\ÒÆº„õ\Øp\Þg…n','',0,'?'),(_binary '(Œ4\ZoKpk}€j¶\ïÿð','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-download-permission.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸ÛµH\ß\ë®(f<Žæ¦–',_binary '•ÄžL{´\Û¶\0Š=VG­{D5Wb\ä\É\â}¼Î‚\ZZ','',0,'?'),(_binary '(“û©y\0	ŸpDO¸`','wp-content/themes/twentynineteen/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŠDß\è2	-Àöšt\ÎS;\Ø',_binary '\Õñ…:ÿg”ñ¨¡~{l¢\ì¨\áE\Ç8\Ëñ1XT`CYH','',0,'?'),(_binary '(–T\Ók|«k›sT‹û','wp-includes/blocks/post-author/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·¨\Ä\ÜÇ©&h.20ŽŠ­#',_binary '|wahV=µÇ£\\\ØmÀ÷	Mºú¸©‘+T\Z,¦ƒ ú','',0,'?'),(_binary '(–Y\à\'úˆ^kz!q–ÿ¶‡','wp-includes/js/dist/block-directory.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w@š\Ã\æÃ„O^\â\äú´‘',_binary ']+;0y¢&@›‚aðI\r9÷\×Gý–-üð½÷ó\ê\r','',0,'?'),(_binary '(š?÷Sˆ…ÐŽP\î<Z½{','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[—}û\Ó_ðÛ•µ¤XŒ',_binary ';¨\äúÜ¶Úi¬–Kxå¥½[\ì\0¯Ü¥\Øü}*3 ','',0,'?'),(_binary '(§ú\Úu\ÂuyŸ–¶\Ãy\ä','wp-content/plugins/ti-woocommerce-wishlist/admin/settings/style.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÞH¦vI\È$gX“«We',_binary 'Œ\Ëf¢mb~1”“\rr({´¥mPóv¶\×\"J¥','',0,'?'),(_binary '(¬’~kž\ìˆ\á\éŒp\à\ÝG','wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\äª*©·–\Þkû[–5n¡',_binary '¯ó¦œ‚2¼I\è¨\ç\ÐÁÔ®DCerw™f²©Š41','',0,'?'),(_binary '(®h\Ì8§\'(ö\é\ÓFOò\ìH','wp-content/themes/flatsome/inc/admin/kirki/modules/post-meta/class-kirki-modules-post-meta.php',0,_binary '4þ÷»·†á®š,E\Ú\ã\É3',_binary '4þ÷»·†á®š,E\Ú\ã\É3',_binary 'W\Ãõ;‘Uõy“üLVs!3\æÛŽ\çü‚1\ÊgyŸ\Ç)ð\0','',0,'?'),(_binary '(°=z\â°6ÿhƒ\ÆnsF®','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/cred/icon-256x256.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ€YEû÷:×T\à',_binary 'µ>S\Æð¿W\ÕúÔ¨@E>nöJ\n\Ö0þ!V;„~Nu','',0,'?'),(_binary '(³\ÃÕ••)\à˜(pwBl','wp-includes/js/dist/list-reusable-blocks.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹•n\â\Ì\å—]mt·,:]ª\Ç',_binary 'ö9 iB\ZŽ\Â\ÓeyÜ¾g Gù\Z\ÖM$\Ø%‹PÀ¸Ê‡','',0,'?'),(_binary '(µ|ÿZ¢x´T‡þ‚[Áu','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/Original.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Òz?®\é(»…E\îWup¹',_binary '¨+‹\ë\ê‡D\ï\0ej³\rg\Æ\Î\èÏ§¶„4ñ','',0,'?'),(_binary '(·¹\Û>f0\Zg[|¼\î\å¨','wp-content/plugins/wordfence/lib/wfJWT.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»}{ j\åN°ˆñc\ÒK¿',_binary '0mhN`x”x~HŸLj\és¦þ°\ë€O\Ç\ä”P\Í\Å,','',0,'?'),(_binary '(½O\à/Œ:]HSD6Cÿ','wp-content/plugins/woocommerce/legacy/css/_variables.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'òK”\ËšX *`\Îÿ\n\Ç',_binary '\èV\Úw”¼V~\ÐG:\\š>?š·wÂ…\Ö\î\Í+„-ö}','',0,'?'),(_binary '(\Í\Ür]$‘ŠŒV• Äž\ê','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/RuleSet/RuleSet.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Gª0y\é´þg’‚e¨®',_binary '\ÓIZø\Þ:4l!§\Òz\ì9,Wú¤Ìƒ×›C?ñ1¬\Ö','',0,'?'),(_binary '(\Ð,\0[\æ7\Ý\Ì\è¹34','wp-content/plugins/contact-form-7/modules/count.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S„ÜœIxJA@J\àK',_binary '\ÏÁ\'Ÿ»}P­\Ú#l\â3	U´&\"1>Öµ‘~Dxú¶¾­','',0,'?'),(_binary '(Ù¾|I<S	¦¥x','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-note-block/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':NzV\âžË´°6=Q=',_binary '\ZcOd0\ÝEc´\í\Ü9J>÷´F&\Üf\Ý\È\'\ë\ÔOóæ™…','',0,'?'),(_binary '(\ÛU\Ô{\Ä\ÒòÁ(\\¿¿\æ™','wp-content/plugins/woocommerce/assets/js/frontend/cart.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ôrO¢˜Á9¦£®{\à(†m\Ü',_binary 'sV‹…\Öðƒ|\Ù=›\Î3­üSÚ†¤Ü½.¦u<','',0,'?'),(_binary '(\Ý\ÆLS[šöWl#“ð¦ó ','wp-includes/sodium_compat/src/Core32/Int64.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%m\ÚS»,—»®\\¦',_binary 'U\å\Ø\Î!œ6\è\ç/•U\ácq\áù\Ãn©\Â\æ¿@º+€','',0,'?'),(_binary '(\Þ\Ês»3TN¤o(©','wp-admin/images/freedom-1.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XO\í¢\Ýw^•È‚e/ü¾eš',_binary '’\Ç\åRz¬6\Ö=²yü\È\Ó_ž\Ø6Rj£\Îl\ÆT¼·','',0,'?'),(_binary '(\ç7…,õw\Îu\Å','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/Redaxo5Installer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')§µ\à\ì\êŠýº\ë^R!-\Â',_binary '`¦\ç`Œù1œ\Ý\0˜2•\Þ\'\ÐðU·A•ÝŒ !²^B\Å','',0,'?'),(_binary '(\ï^¦3N½š©“‘¢3','wp-includes/wp-diff.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ‘\É-xñ•<\Äz^¤Wet',_binary 'üaÿ\Û;˜Éº³\ä*2Z¹œf1›ò\"§\n°Nt~Ÿ>‚…','',0,'?'),(_binary '(úŽ{\êµ\Ã2\åA\ì\Þ^!¾®','wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/navigation-opt-out.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h˜ÿ¶J\Þ\ÙÁ5)òœô',_binary 'ÿBJ‚M%,RŸ!\Û\ä÷^¯µ­›’.°\n\è\àI´ƒm\ÒiL','',0,'?'),(_binary ')_\Ï\×\ß+²¢~õ&','wp-content/plugins/woocommerce/lib/packages/League/Container/ServiceProvider/AbstractServiceProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \Ð\Õü‹®-‹¥qU@',_binary '\\¨™pT¥\ìK)¶ÿÓ°F+\Í\æ\éx\Î\à–XK‡ýn\\','',0,'?'),(_binary ')ø”|ü{4\æ+]\ÂX(','wp-includes/Requests/Exception/HTTP/411.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à†#\Ä×Ÿ\ÞÐ«˜\ÄE*3\Õ\Å',_binary 'ö…\èU‰^¾¬ª‹9p\Ýô&\Ù\î\Í`önM{¬ n¾L','',0,'?'),(_binary ')«{NŸ\ÐP—‰¬¥¦>¡5','wp-content/plugins/woocommerce/legacy/css/prettyPhoto.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D=\'U\ÇE¨¥v\Ú&2c\Ò',_binary 'D<\Ùv¤\ÂvŽ†‚1ñ\ÅòÃ¹ó\Ö\Õ¤²\ã\à˜@\Ú\ã‹E','',0,'?'),(_binary ')C\ß3\ÂX…\Ø\Â@Ž<Z','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/Store.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜|b\Æqg¾}ý]\Ø',_binary '—\'‰¦\Ú7¦µ]cCd6=uK˜÷Š[(\Ý&Ç™a÷','',0,'?'),(_binary ')&\Ó0*\Ð\Ü\Â\nv\é\Â','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/WooSubscriptionsNotes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=2»XV\ë!¯ÌœØ›\ÇÎ“',_binary '.IIñ\Ç_\'¼¯‹‘p\ÖS*uS\Ï\è\ëö\áÿÉ¶Ùˆ\"F','',0,'?'),(_binary ')\'óšÏ½9\è­ŠN+\×','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-totals-block/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬+gN‹<Ÿ\ÞF#—',_binary 'ð	f÷“\Õ\çØ¤³Y£nÑ€J ¶#”\ÇQ_¤@žL¶d','',0,'?'),(_binary ')\'hLíœž¿\rÐ€^‡¿¹','wp-includes/blocks/page-list/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì\Ü%YRº\0÷ac÷!\Ä=',_binary 'ø*\Ñ?u\çSN¢¸o\ìö–ó†õš\Üö#²d+Ä€’–»0','',0,'?'),(_binary ')*¬Ì«£J\×O\ï<Ó¶','wp-content/plugins/ti-woocommerce-wishlist/integrations/automatewoo/wishlist.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Þ3¬\è;@\ÚV,A©ŠÀ\Ý',_binary ' òÑ¹¡`\Âf¼“û\Øit7d\ê*÷zF\××½À\æ','',0,'?'),(_binary ').\ã\ë\íh/Nú¦»!ÿK','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/repository-expired.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'À\Ú\ÉW—‘G«\æ\î÷ Z\Ê',_binary 'g\Ëñ2ð¢°–[>ø!0‡Ÿ\ík…£¤‚VAyÖ¹\áB\íˆ\Æ','',0,'?'),(_binary ')/\Ýn#2.\ÉY³u\æ@­','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@½K\Ì¢½{~tbYb',_binary '\áš\n\ï…Èž…\Î]‚\Ør¹¢6	ÃšZ{TVc.€Gv‡~','',0,'?'),(_binary ')FTj›—­ó«CJcûG','wp-includes/blocks/image/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õ•œ_J¹2qø>',_binary '¼›ŠÛµ?lÎ€)3µ\äœ\n\Ëj_|‡ø\én\Ìi†a\Ù','',0,'?'),(_binary ')Oyv Öš¼p\ãPŽ\"','wp-content/plugins/woocommerce/vendor/symfony/css-selector/XPath/Extension/CombinationExtension.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Hó\ê\nvÝ•Ž_Ží±¤',_binary '±V %f\å=.(ºwVž2 ·\r‰Ð†WŽ’þ\Ûm´','',0,'?'),(_binary ')O\Øa\Ë\ë\ÍF`xh\É\'\ë','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/SyliusInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zúQÆ2Ï¦\ÚD\ã\Ç',_binary 'b“o?|Lˆ\Ü\Ýc¢3fò}š‰® QÕ“ª»G]X','',0,'?'),(_binary ')R1+QM…\æšezAN','wp-content/plugins/woocommerce/assets/js/selectWoo/selectWoo.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x†\î4(¢„/\È\áWO',_binary 'Å¯6W¾\ÛÍï»ŽA¼g†\È/$ƒE0\í\Ô\Ë\á¬\É\Øp','',0,'?'),(_binary ')UÉ¯\ìÜ°¼Z›’\ÉxJ\Ë','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/css/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'aÂ¸^ \"+‹õ\ìD\âŸ',_binary 'vú’,?ï¾”“Aoh\éwÜ©Xs®WG¹\Ä\Êÿ-\Øe¢','',0,'?'),(_binary ')_©•°­~LÁƒ>¢©\Ö<','wp-content/themes/flatsome/inc/builder/helpers.php',0,_binary '‹\ZO\ÎaW#£ˆ ð:Ž',_binary '‹\ZO\ÎaW#£ˆ ð:Ž',_binary '&4“R\Û%» £\nšÔ‚V%ƒno¡-ÏˆŽ^Ô€÷O\â','',0,'?'),(_binary ')fÿ~¹E\Ô(%)¶>}^','wp-content/plugins/woocommerce/src/Admin/API/Leaderboards.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'óQ£‡……\Òr.@5À>@',_binary 'É…]\ï\ê\Ü!Kúú»¶\"\à6`\èE«>-\ÑÊ¢ß…','',0,'?'),(_binary ')g_8û’\ænÿw‡¾–¥ª','wp-content/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„\Ô\Ön\ÑøÛ¶:d`Qð˜',_binary 'ö\êMº H}É·<\Ö\×ù>ex•3oÒÞ\î]3ŸÑ˜\Ï','',0,'?'),(_binary ')q…†rG‹ý-”\Ñ\Ì\î ','wp-content/plugins/woocommerce/assets/images/onboarding/mailchimp.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©¿\Êj\Ö\á\ïŒY\'¤\Ðô',_binary '“¶\n¹\ë\Ïðh³WP:%Í’0\ÜšaOƒEœý\í$','',0,'?'),(_binary '){ôjW-_€Q=?\íGlÒ¢','wp-includes/media.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³]\âm’#%!m\Æñõ&ß²',_binary '_le3°¸ºx¯^ýÊ¹l—ýI\ã!O5õW\Ü\åBu','',0,'?'),(_binary ')‡3ž\rž\Þr-\Îòƒ£ty','wp-includes/blocks/media-text/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì<h ³ýŠe bû%m',_binary '¿¨!;h­é†¨\Æüºƒ<\ç«\Õ\è,¯¯l?g\Ò\ìz\äud','',0,'?'),(_binary ')ˆé·¼ÿ\îÏ¨ \ÇC»\àE','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value/URL.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\Å|¡\á›Z¥ÈœóV',_binary 'G´<m(/ˆt\Ð@a\nõRûD­m­¼\Òø;\áWþ','',0,'?'),(_binary ')‰h\ßGQF7j\';³øQa','wp-content/plugins/yith-woocommerce-wishlist/includes/class-yith-wcwl-frontend.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^i“m\áZ\Èixq£/\'*',_binary 'Y7B†]‚HŒ(D”¬‹\ä\Û\ÆrYðg\Æv¢i\Ñ\æ†`','',0,'?'),(_binary ')\êÿ©á”©\ØË\Îa\Ë0','wp-content/themes/flatsome/inc/builder/core/server/helpers/templates.php',0,_binary 'šý–\ÙR\Ü@¥¡*³ys',_binary 'šý–\ÙR\Ü@¥¡*³ys',_binary '\Ï\æ\áÀ|¨(;`\åûº\Ú\r\ÜüÕ‡\"\ržà¨Ž_Í¦\ï\Â','',0,'?'),(_binary ')5#\Ù,\äªüa—\Æ2j\å','wp-content/plugins/woocommerce/legacy/js/admin/term-ordering.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«ú-®=Y\0˜2”:‘3',_binary '‡\é\Ú\Ý¡\ÝÓž\ZÐ³n÷\Ö\ê¨û+i\Ó:K)%‡Œ','',0,'?'),(_binary ')‘Ö±fõ‘~{\ÍGó¥','wp-content/themes/twentytwentytwo/inc/patterns/query-large-titles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\åÀH¿¶ñ|\æ›9Ÿ‹H¿\Ì',_binary '\'KGÔŒð\è•\Ð`º6\Ô\È9ñˆ&½%\0\ÏM|\\ðy','',0,'?'),(_binary ')¥<~4\à§\êF™\Ìd¦Aü','wp-content/themes/flatsome/inc/classes/class-flatsome-envato.php',0,_binary 'õy)FJ\ÎúC3‹™hö',_binary 'õy)FJ\ÎúC3‹™hö',_binary '{¯iQl#+xŸH\Þ¼S\Î\n<;A¿Æ¶\â&üT¹ož','',0,'?'),(_binary ')¥¦ªÌµÞ‰¼!\"Ned\ëS','wp-content/themes/flatsome/inc/admin/gutenberg/assets/js/edit-button.js',0,_binary 'Nh&\Ú{\Ü?ß´OÎ–ø¶G\Ê',_binary 'Nh&\Ú{\Ü?ß´OÎ–ø¶G\Ê',_binary 'h¸\Ó2A®”œª¢\äZ#)Á¤B\î\áüLt8‚l','',0,'?'),(_binary ')¨7\â\ï\È\Zo\Ãh\ä’mÒ½','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yith-dashboard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`7v>ðjiv^Y	6\ä¥',_binary '\ß\Õ\Åd\Ä\Z´+\àtþŽ;DP3ù\éduw¯</\Ø&½zù¬H','',0,'?'),(_binary ')«€2ù(Šÿb¸ùP-3\È','wp-content/themes/flatsome/woocommerce/myaccount/navigation.php',0,_binary 'cLì™¡C)`D \Û3.‡',_binary 'cLì™¡C)`D \Û3.‡',_binary '¯=h)\ÖYr÷\ï@ö\ïõü4õ}t½\áoÄ«óY?	','',0,'?'),(_binary ')­€b`\Ú®«0=ðð¾\Ö','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-product-bundles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lq¬%T,EK\äúª\ëÀ\â³',_binary '8\0j.\Óò9;u±øûøU°\Ë4²^ˆ\â\n–~\Ý5=µ\ÝÁ','',0,'?'),(_binary ')­ vN÷v\0.¶<	ˆ','wp-content/plugins/woocommerce-multilingual/inc/template-classes/status/class-wcml-status-taxonomies-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qó\Ç{Â·\'\Ãû\ì\Ã=”\Þ',_binary 'ø\â\r„\Ë:n€ú\Æ\Ä\ä‹E‡ªØ¦¹m\ÃþU~¶\Æk\É','',0,'?'),(_binary ')²oc1Á™‹SoSNs¯ š','wp-content/plugins/woocommerce/src/Admin/API/Reports/Coupons/Stats/DataStore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-­\éf«‚’$4f\Ç3Dy„',_binary '¥£\Ô\Î(\åø`Ù€\Ëc¯xO\ÙZ\ÃUl•\Ç\Þ\àkGQ','',0,'?'),(_binary ')¾Oz=œu©‡\î£\ÄË·','wp-includes/rewrite.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\0B6\"\ÉÂ–±7\ÝX’',_binary 'º\n„¨ñ×‘u\Ë\Ó’\ÙÁœ\à5$E…i·4IÀd','',0,'?'),(_binary ')Ìƒ\Õ2±k\Õh¯Ÿò! ','wp-content/plugins/akismet/akismet.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\áÈ;C=\ÝaL—w€|‡',_binary 'f\Ñ\ÌÀü¾\Ø\n…\Z#ž\Ú}YÕ®3‡/¾æº…‹','',0,'?'),(_binary ')\Ò7Ž*RN¹½}\Þ4g','wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_QueueCleaner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k„óŒŠt\Ì#Tu#EN\ê',_binary '\ç™ùmŒ\ëÄŒ”û\ã\Ô]\ãž`\Û\í\î¯,&ôš”“ª@\"','',0,'?'),(_binary ')Ò™§ý‰@`V\Ø\Ë\é»FØ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Integrations/IntegrationRegistry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¢O\íüE\ß¥øE\ã:',_binary '\ä6\Ú\ÊR\ë\0T§+z\ÖFsm\éñ4V\Z¼¨®ñ\Üh','',0,'?'),(_binary ')\Ø6#¦_\ÅúñÌŸSAF¦','wp-content/plugins/wordfence/views/scanner/issue-control-repair.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9œg¦ÿs¤ ž­\å`V\à',_binary 'žõj(¼©ô”Ø \r	ç·ª›·\ë”U+\Îò\É.ó®d','',0,'?'),(_binary ')\Ú\Þ\Ï6\ÏG\Z2¦\æ\\ŒR','wp-content/plugins/ti-woocommerce-wishlist/public/wishlist/social.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7y	\Å£%”\å\Â\Ç˜\Ñ',_binary ':\í»\íe\î¼øA¬Ùœ¾¼{{q\ÌA­­zc„J½\É>À\rw','',0,'?'),(_binary ')\Ý\Ûø]\ï\Ý\ÕZ$\ÙP%','wp-includes/embed-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œ’U\ÐzŠA>zõ\'!f*',_binary '*xJ¤þñ\"št²ý\r^K$U˜09¦­\ÊZ\ãÐ¸C…ru','',0,'?'),(_binary ')\å[ \ÙwÀ*\Ë}EühN','wp-content/plugins/woocommerce/src/Admin/ReportCSVExporter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ûp·› \ë\ì:f,Ù$•©',_binary '\Ð1¢z?=žðró\Ô<§.\ìO$‰xhÀbjwô\Ü\íN\Ç\ã','',0,'?'),(_binary ')\å¿ivN\ë“\àŸ¨hª…','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/ui-icons_888888_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0*ç§®\Õskg{68',_binary '¢,,b\ã\nqðHŒ\ã‡yn=E0.\éAz\á\î@E¸>l|\î','',0,'?'),(_binary ')ç¯˜\Ó]¬ø¦\ë<2\Ów','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart/test/resolvers.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x«<ôœd\ê\Ê!»ß¹û\\ö',_binary '$S3b\ã\ÓZ\ï\í-®\åö®ú\Ð\êB\\ÁHC\ÑÁz','',0,'?'),(_binary ')è­¦\ÎûQžóQ¯/Y´9','wp-includes/blocks/page-list.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vwy\Ëwr\ÅZM™\Ú{Îµ',_binary '\áFýÄ­É’\Ñ\Þ\Í_fÑ‘©\ÜÒ¦\ì-„ ‡¦\ßd\Æ\è—ø\Ó','',0,'?'),(_binary ')\ìI–\nÎ†V¬¸Ÿq\î\æ{','wp-admin/authorize-application.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']³tj\\$xÅ¦ð®º&w',_binary 'ˆ¦½\âc\Ó\ë¾§­}\ã\\fCšI\ÊC\ç°À±°`˜','',0,'?'),(_binary ')ñjw;…o\Í\í7Š¹','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-the-events-calendar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Eð\Ý»¶‚jµ\ÏI±µw',_binary 'xo\ë9k¬\ßiflÿ‚usŽoyµ\Ãf\ëOfR®JŒN¼\n','',0,'?'),(_binary ')õŠ­«Í‡\Ô­2\Ó~¾·`','wp-content/plugins/yith-woocommerce-compare/assets/images/01.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Vv\ìŸuq¨¹\\©‘\â¯}',_binary 'ô+ž‹*hx õ«h–N\àM¸,<\n2\nò/¸\"Q\Ìz','',0,'?'),(_binary ')ÿ`”òf,µ uý4¡³','wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'šX¹ D2%l#b/’W',_binary 'Õ»¨R\Ò\0¼ð\Ñ\0¶¿ú\ì\áiH//Ÿ\Â\ìw\Ï§\0\ë','',0,'?'),(_binary '*Ã¾|\çKL\ë\×n\È#@\æ','wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/woocs_show_current_currency.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#Ÿ-òµ¤‰Œ\Ô+\Ç\Ä\èRñ-',_binary '¥Z\á¿)\Ó\î §r\0T\Ä\Âeoª“²±5•ô\"°C','',0,'?'),(_binary '*\Útò\Ðkÿ†cF]	N','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/yit-upgrader.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ph+H–$‚w\ÕZ§-',_binary '}\Î:q5$\é°\î\ë¶¤OyTý¦$)s4\Øì†¨','',0,'?'),(_binary '*\0\Î\é~\Åóu-p\\­F','wp-content/plugins/woocommerce-multilingual/templates/currency-switchers/legacy-list-vertical/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ™.B\ßO²´yÊ¬',_binary '\ÂRdqõ=ùT\çóñ`ª0Vc÷hž3fC+³\â­','',0,'?'),(_binary '* a\ØF²\Ìð4Ÿ°u\ÛvU','wp-admin/images/menu-vs-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J¨ZY<÷i\ÇY®„bø',_binary '\'œ¹F\à½÷Ñ”E\0†õ\æ\è7¡É¡Ÿ#\ä>sePØ¶','',0,'?'),(_binary '*(\ä+eGi£ÿxdÔ','wp-content/plugins/woocommerce/legacy/js/admin/wc-clipboard.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›Ï\Ú\\\í‡N¸\ÈRuŠª',_binary '	ƒ(‹òi×“©%FÙ†Q›°‰—±k\r\ß\á”1','',0,'?'),(_binary '*7P\ìi`–¿–H\ÞD%g\É','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/OnboardingProfileRuleProcessor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þn¢³\æ(@\ìƒ\è–',_binary '©\Þj”6\ß\ÑÙ–\ß	«S^ûk,S^\å¨öUr6*¡\à','',0,'?'),(_binary '*>‚Ü†\ã‰ó\È\àPó\î\å','wp-content/plugins/woocommerce/includes/export/abstract-wc-csv-batch-exporter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\ÕU½’\Âj\îf]!\Ø\ÛQ}_',_binary 'ù2“/™¡T\ëH\ÃýŠ9‡\Éò¶\ÐÃƒYß‚\ë¢\ç€','',0,'?'),(_binary '*MÀ\ï\ë\íš>ýœ\ÕÁ’²\Õ+','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/fonts/fontawesome-webfont.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°hqòþ\æ²A\Ö‚®“i¹',_binary '’¢	q68…xÖ…\ã\\üªs\rN¾~ƒ.—ûZØ®[\"','',0,'?'),(_binary '*TÇš\ç—qG6÷¸R\Ú\äH÷','wp-includes/blocks/site-logo/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e{·¿›mˆ°\Û\é´@',_binary '\ànf²\Ö\ìØ…ôB}ü…Ás\Å%\Éavˆ·rø2\Öwm6','',0,'?'),(_binary '*V.XZ—\È_C[AÔ€—C3','wp-includes/js/dist/keycodes.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')D’\r\ïR~\ÅÓ¬*\Þ\ß\æ',_binary 'Î«œË²\è9óõV¼\È5›\Æ\\g`‹£A\á3ñ\Åý','',0,'?'),(_binary '*X\Ïq\ê(\\R\É\ß;F»‡','wp-content/themes/flatsome/inc/admin/customizer/img/portfolio-title-breadcrumbs.svg',0,_binary 'H c\Ä\Ý\Ëzºw‚ ¨',_binary 'H c\Ä\Ý\Ëzºw‚ ¨',_binary 'ý¾C\'Tu!/(¢µkòž ½¯\ï	\á\àBtû\Ý¶ò`','',0,'?'),(_binary '*\\TÒ)%]óªyiD+','wp-includes/Requests/Exception/HTTP/402.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÍˆÏšW:lž\Ç\ïq~',_binary '¥g˜©NQ	µ ¯”Š‹ð/\æ\Ø\Ø	·y5“¯‘¯\êÎ¸c','',0,'?'),(_binary '*dô\Î)G¼·ýµ\Úó¬^c','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/css/otgs-icons.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',4\í\èoaÌ¥nªë¸ž‘l',_binary 'öx6k:2”+W³\ä.Z\Ä\Å<ñ€y6ŒL\Ã&\ß\n°','',0,'?'),(_binary '*i_\ZS´_\á\\K|š\Õ,.','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/billing-address-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼½`,uR«dv…1–.~',_binary 'Aø\\G÷ý\Z.*\à<šW¿­º>ŽGs¼©\ï\n#ùX\à','',0,'?'),(_binary '*jµ’®þB…\ró\ÑþS\Ë','wp-content/plugins/woocommerce-multilingual/classes/AdminNotices/RestrictedScreens.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡\Ê\ê]O>¢\à\çù‚\ß\Ò ',_binary 'UÀ;¬:º4‹qé¡öbIŒ\æ“d(Ï‘\Ût\"/!','',0,'?'),(_binary '*lKó\ÉqW\ÎM\0|	÷ÁY','wp-content/themes/twentytwenty/assets/images/2020-three-quarters-1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-™¿a\Ü.¬t”]U\Ûv\ì',_binary 'n\Î\â\0ù\î<VEÕ¯\ÔRm\ËK±r72kžkSeŒ\'—‹#','',0,'?'),(_binary '*|2Á\r\"t¥\Z\Â‹\âE‡’','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/single-product/constants.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I³\æµ=\Åt!£ô¹f:',_binary ' º·¢]T, \æ\Zx‹÷n\"wô¤ª¦&\è½\ÉÏµn\äƒ','',0,'?'),(_binary '*‰~š¿\Ôh\Æ%\ÛŸù\ä\\','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/payment-method-extensions/payment-methods/cheque/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ð¨O\è¹ù’)Àú¾\Ø#',_binary '\Æ?½N¨ûÁ^¦”ý\ìgLy\0—d¤|­Ž÷„Œ','',0,'?'),(_binary '*‰†@–\ì\åG;’‡¥‰\ç*','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-taxes/attributes.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿¿.,š\Åþ9¯®R\Ã¥',_binary '¼\É÷L~oS±÷ðº\Í{·•\àœ\ÆZ’±\êIšOq‰\Z½','',0,'?'),(_binary '*ŒD\Ì0\r\Ö\ÊTWž|?p\Ù\'','wp-content/plugins/products-compare-for-woocommerce/js/admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P7t…4H¡\ÎdWQm–$',_binary '¼2¡Ï§gA\Ö\"ªJ°(N\Z\åAFjvQ6qt\â\ä\ã9\nBcŸ','',0,'?'),(_binary '*¢µ*ŠW8«\çµ5–¼2~','wp-includes/css/dist/reusable-blocks/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Þgky\ïÈ½\ËimV¬˜›',_binary '˜F4ð®¨B@Rž jŠ×•±¯NŒÎ„\ãSHù¾7…','',0,'?'),(_binary '*¨†h\ë˜¯c§IŽ6','wp-content/themes/flatsome/inc/init.php',0,_binary '\Ö\ï\Ýn\å„\ï\Äü=þ\Èyi',_binary '\Ö\ï\Ýn\å„\ï\Äü=þ\Èyi',_binary 'x\0YÒ\èM_Q\Ï\É°\ß\ß¼‹\É\èJ)¿@!¹\â','',0,'?'),(_binary '*®\ä-3öu¬E\Â[\ÕO#','wp-includes/images/down_arrow-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷]\ë\ç™\êM…žÁû‡f\Ü',_binary '¥¶w\0˜ø\É\ÜÀqp¯qð5ú\ÚûTˆ#\\º¹½¥','',0,'?'),(_binary '*°u¶œ°.‹d	aO~{\Ü','wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-autoloader-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÏüJÙ‚¿\Ê&¯T€q¯:',_binary '\Óƒ\â9\ä4,•>ž°ƒ|µ=[¸-$¼J3”\×\Ì]\Ì','',0,'?'),(_binary '*¸\è¤jx¹š7ªX‹\Ä','wp-content/themes/flatsome/archive-featured_item.php',0,_binary '>\îa³~/-g\à\Ëp*\ì',_binary '>\îa³~/-g\à\Ëp*\ì',_binary 'nh{U\çE–\"˜B“‰\ë£\ÐI\É)ì˜‚¹´Z€÷','',0,'?'),(_binary '*\Ç\È\Æ²¦¼b\ÅŸ*ee¸','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HSalsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ðx\\8z\íM\Ø~—.‹',_binary 'üvR¬\0‹S~[ü\r‚ªÒ®6\ß\áo\Ýú¾\á’þ:Åšµ\r]','',0,'?'),(_binary '*\Ìûºh†´Žu$¯\Ä9\Å','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/shipping/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÓE\àik+gð²ÔŒ',_binary '\â‹\r\ãUN—F<\î1\Ûe$‚/\Z[Œ\Z^\Þ\r0ž²Š¾\Ýó','',0,'?'),(_binary '*\ÑþL\ím&&2ý\Õ\nb','wp-includes/js/tinymce/utils/form_utils.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿ˆül¢U‚‚T“„ŸúLi',_binary 'vLú¢\âus<*r¹WÒªµ‰£\Û.\0|õRgŸ\Ê\å´\æ','',0,'?'),(_binary '*\Ó`U¨z»]\"L%—1­ü','wp-includes/sodium_compat/src/Core32/HSalsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´\Ñ/Dzxþ¶Ç‚\É\â­ü',_binary '\ß\Ï\î,\Ç\è\Õ\ß\ÊE¬ù¿{Ž\î0/m›a\ÓXˆi‰\à\Ñ','',0,'?'),(_binary '*Ó´-—q\ß;»“\ïö\Å','wp-content/plugins/woocommerce/templates/global/sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\èX_k\ÎØ½¿UO4y',_binary '¨1Dò(†#–¼±¥\í}U\ÑUÅ™]â¸ÀÊ—&iG','',0,'?'),(_binary '*\ÔmB¾\ÕvH\ne\Ãðœ','wp-content/themes/twentytwentyone/assets/sass/05-blocks/utilities/_font-sizes.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '×º|¶¢²=\È:\Õdÿa+~',_binary 'i¸”Y4tö\ß4|-õ>1®]ôf«)J¿¿‚\ÅI Z‰\ìl','',0,'?'),(_binary '*\×&C:[¾¥ñr\Õ9‹N\é','wp-includes/sodium_compat/src/Core/Base64/Common.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\Û\Èef\è§\Äõ\Êiª\'\ÒjW',_binary '6þ°UmÐ–²%\Ï\ì?MˆS°A^=®X ª|U–\Ã','',0,'?'),(_binary '*\Ûvžðý%\Ä\r}‡Ya','wp-content/themes/flatsome/inc/builder/builder.php',0,_binary '#\æ\ÚÿS\r\çy8öXl]ÐˆB',_binary '#\æ\ÚÿS\r\çy8öXl]ÐˆB',_binary '\Êˆ\Úc\ïX\Ñú©Œ\ÙÉ ^yÚ•ÿ¤°ú','',0,'?'),(_binary '*\ç\Z07Ñ¥1O\Ó\ÓÙŽ8','wp-includes/js/json2.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's¡\×{N‚|EO«0©',_binary 'q3Ÿ..Šj G\\R\ÓnÝ¼I/T¶‰-\í','',0,'?'),(_binary '*\çƒ:#¿#\éƒú\àFM\é','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/text-array.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1ÒŒ\0\å®\Ì0±1Sv©WŠr',_binary '©x”-Š‰\rNñ™<\Ø=V\å%\'\Ú_^¡\\eµx…','',0,'?'),(_binary '*\ê	\ì¯Ä…\É\Îü\ß\ã\\\ã¹','wp-content/plugins/wordfence/views/options/option-toggled.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D“u¹\nL„»‡œðû\ÂE',_binary 'L8M\Ðú0ƒ=ŽY\ïkbŸ³\Õ|59\Ôb+\ä–z:4','',0,'?'),(_binary '*\ê. 0ø«T(\0‚\Æ\ÈÈ£','wp-content/plugins/woocommerce/includes/admin/views/html-notice-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Öu£;q–¹(¯\Ú\Zü\Æy',_binary '¹ð\×\æC_\Õhý\ë\ìWÁ\nÀ3E\Ò\á°ƒ7Pš\Ñÿc›ž','',0,'?'),(_binary '*ò4\ç“gš\"­óI­÷ƒ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-best-sellers.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Îv\åª·jo©(ñ(\Z_',_binary '¤.D1T\æeuÙ‘\Ã\âHo5ú]|\Õ?ó\"\r¾1’\Ü&|\É','',0,'?'),(_binary '+\êÁ0ž5øx’3«FD\ï\Í','wp-content/plugins/woocommerce-currency-switcher/css/sd/styles.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Qú^·šÀ²£\ÕL£)T‹ð',_binary '\ÉÙ fÁ¬\ßh\Óp¦H^¢\Ñ\Äm´=AªŸõúejJ¿','',0,'?'),(_binary '+\"\Úÿ\Ús‹¢‚“','wp-content/plugins/contact-form-7/admin/admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'IGsÆ‡XyÔ¦úósT‰',_binary '\"|`¶’’\Ì /¡A@O^†­ö€\ßö\Ã\r\ÍÕ µ–¬','',0,'?'),(_binary '+m\×ÿ™Ù‹&LþKÁ&\ê','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/how-to.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\Ôòÿz\Ú\ïA\ë\'\Ú+µ',_binary '\"yÙŠÍ€¬ \n\ÄJ\Zr\é’1‚xª¥®_J˜\é','',0,'?'),(_binary '+ô¦(-V&S_2X7f ','wp-includes/blocks/paragraph/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€œ&[\\\ÜF:Î·\çJv\êC',_binary '©\íº#\Í	3÷=ˆ\Ã\ãbeµ@\"\"³IW:i¾.(Voú','',0,'?'),(_binary '+\×$û6C„SA\Ã\ëû|','wp-content/plugins/woocommerce/lib/packages/League/Container/Argument/ArgumentResolverTrait.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r»œö1\ädýR=\Ö\×H7\é',_binary 'Hw!&\çÁ ¡4G¤\Ër‡j»6\Ðpl\å¬b\Ý\â·þÁP—','',0,'?'),(_binary '+$¯V\r>\n\â(‘\"\ÙR\×8','wp-content/themes/flatsome/assets/img/payment-icons/icon-paytm.svg.php',0,_binary '£ð\n‰o‹\ËSúkö=\î',_binary '£ð\n‰o‹\ËSúkö=\î',_binary '!R³\n!FG­N\îL¦:4\'š¾–û\\\'.w]m5\Êó\é2k','',0,'?'),(_binary '+&D@°+\ç_Ý‰ñ\ì…V','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/media-bottom.svg',0,_binary '§4–²¯Y\Ót?+Ÿ2t',_binary '§4–²¯Y\Ót?+Ÿ2t',_binary 'Ø„	*s}\0µ%=\êx l¡ûõz•6:\è\í”]‚œ—','',0,'?'),(_binary '+(\å…\ãŠ\Þ@ó[\ÖRšð‘T','wp-content/themes/flatsome/inc/admin/customizer/img/product-title.svg',0,_binary '58cGri\Å*—8E™+±',_binary '58cGri\Å*—8E™+±',_binary 'm\ÃNgm[ƒ\ËM\Âzi7~*”Y?vz&ˆ=\È\åW/À','',0,'?'),(_binary '++­\êu¼±\ÛV\Þ67Sc¯','wp-content/plugins/contact-form-7/admin/includes/tag-generator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Þ´©ŒZx/!P €Ö¢a´÷',_binary '6Vyn¤)7\î›:‰€n:\ë\Õ! \Í¾\Ä)KQ%\Ç','',0,'?'),(_binary '+/ñ+¾\n2ñ˜`‡M²','wp-content/plugins/ti-woocommerce-wishlist/templates/ti-addedtowishlist-dialogbox.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹\Ä\á1f\×Ð®£;\Íh„Nk',_binary '¯x\"tW‘p2t•F‰\ï9¯\Ô\áóô\Íb­P9‚!=\Ð','',0,'?'),(_binary '+5;j\Íøü\ä\n\ã9-ùóö','wp-content/themes/flatsome/inc/builder/shortcodes/values/animate.php',0,_binary 'ô•	¶+‘¦\Úù/ýaŠF',_binary 'ô•	¶+‘¦\Úù/ýaŠF',_binary '\Ê{hR\ïU\ÇZ\çŸô\n°\\¿‹=&×¬»ññh','',0,'?'),(_binary '+9…£Œ[BUûE–e','wp-admin/js/updates.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\â˜>ž0\ãû*´¸O….£',_binary '… m’vEø\Öz€{h\Ñ\çò\r=\Þ8ødZ±™²\îñuke','',0,'?'),(_binary '+QMÂ¤‡Unò\\Iküm','wp-content/themes/flatsome/inc/admin/customizer/js/customizer-reset.js',0,_binary 'U\ß\Ò2\ã\Ï\ã;=3ñ\ëvC',_binary 'U\ß\Ò2\ã\Ï\ã;=3ñ\ëvC',_binary '\Ä.·$\Õ\Ã\Z©n%øôó‡\"˜\ãS‚ª–C^œQ\'H$','',0,'?'),(_binary '+X	‹/…é«–i\ÓøF4A','wp-content/themes/flatsome/inc/shortcodes/ux_menu.php',0,_binary 'A”!$\ç8z\Ú:«¼3\î',_binary 'A”!$\ç8z\Ú:«¼3\î',_binary 'ÿ‘n0GöÊ³U0b$±½ZûSXA\È\ÚðÏ®\Ôv\í¦\ÂlÖž','',0,'?'),(_binary '+b\n’\ËDf°X2À†‡Y™C','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/ConnectionType.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\å\àS:¿-NÀ!Q\Ýû0\"',_binary '§6\Ë)?™ò‹^\"F\Ò*©g|\Ò\Î&\Å\ÛR\ÕÎ \á\Ü\0	','',0,'?'),(_binary '+h‚ç¸Ž\æþDÜa&\Å ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/image/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K}I\ëhóµAH',_binary '^‹\ÙQX@J\äA49’Á\nezižX.Î°g\èk@)S','',0,'?'),(_binary '+zµif¸÷\0g4e\â½\Ã','wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-products.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'É©=6d\ë>9qMÖ—ÿ³',_binary ';Á’\îÇ£Fb\ÞP\Ñ>?\Ó\Ò-ô\'\Ú\éŠ]q+\Ö{ýº','',0,'?'),(_binary '+|\Ó\Öyg¤—@\Úi6ž','wp-content/plugins/yith-woocommerce-compare/assets/images/04-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\åÚ‰tDsf\Ð\àp®M\ãk',_binary 'Hh\ìS\"²¸yË£\"þ\\afúxQ¯a¥\Ìú\Ñw#ˆŽ\×','',0,'?'),(_binary '+‘£}ã¢©œžü\Õb,','wp-content/themes/flatsome/assets/img/payment-icons/icon-alipay.svg.php',0,_binary 'V\Î ³\r®ª¡1ONö',_binary 'V\Î ³\r®ª¡1ONö',_binary '\ÆÄ¡¤?i+\í9Fµi—‘lX\Æ1nY\í\×ûL\ä·\Â','',0,'?'),(_binary '+š\ØFL\çw…oŠ–jÁ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ZHª.û~ö\ãò 7ð\r',_binary '‰Q§KrŽÄº;!<¨)|\"_¡t\í>º2tu=V\Ì','',0,'?'),(_binary '+›%£õ)hE\Âú(÷)>','wp-content/themes/flatsome/woocommerce/single-product/layouts/product-right-sidebar.php',0,_binary 'Œ5Ž:\áEŸ\Ò#\\¢;²',_binary 'Œ5Ž:\áEŸ\Ò#\\¢;²',_binary 'c’!v.û5$ÿ5²ÁµMœNK*ažt‚4ƒ\èõ\Ê','',0,'?'),(_binary '+ˆû¸Ø©·\Õr&\Äÿv','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ°d\î3Í®%.Y‡™„€',_binary '¼\n \Ê&<j\Ñ}J«ÌŒ\Üv¢‰n^w¨\ÓÁ¶\áo\Ë[','',0,'?'),(_binary '+¢\âû·½&F\æ•bÄ™–\ê','wp-content/plugins/woocommerce-multilingual/classes/ate/class-wcml-ate-activate-synchronization.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦\ãTþ\Ïc’š¾‘Õ˜ö\Õ\ï',_binary '–|?£\'üL$¾E½ž3/ƒ¤bˆC8…“°E\à|]¥V','',0,'?'),(_binary '+¤”Àˆš2¼Ã•\"(c6','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\Ïü¶m›ˆR¹›‹ýiq´',_binary 'nú\âú<x¦}‹Qp|¤ªðfÐ©ö˜Á\åò\ë\Ý\Ä\ïð\ÐCÍª','',0,'?'),(_binary '+¨!\Ãd&˜\r\Ð~©\Ð\Õ\Â','wp-content/plugins/woocommerce-multilingual/res/js/prices.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡ˆ³ ü\Ø:>úYð\ìŠüIð',_binary 'G\ãŒ_d„ð¾F³sl\íþM»uû\Ù7q¯Â¯\n—ò)\0','',0,'?'),(_binary '+«uH\ìØ¡=WDŸ\Ý}','wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Shipping/FrontEndHooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xqŸœ\Ò\á\0\Î\Ï³»0',_binary 'A¾~\çz4©]£j\à‡’tÄ–)ÁOv‡›v®\é\\†12','',0,'?'),(_binary '+­7„¿yÌ²˜-©\ì‡V','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Node/NegationNode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L…°°]\ÓûeO[õ‚—',_binary '\ÝX¤\ÉDŸ€mŸ·•\í	Z\0*$#ÿDs¡WJpc','',0,'?'),(_binary '+³§G*#ô±\íô¦”ýf´','wp-admin/network/site-info.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\é<~r:˜\ÒAmEZ4¥',_binary 'ƒ,Vý‘\Ø\çc{\ì\à6R‰³©öÙ¼†^|vO*\éÒ»«','',0,'?'),(_binary '+´\ZD€–Ze}\É','wp-content/plugins/wordfence/views/onboarding/plugin-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€~+»x°ü¦\Åm+t',_binary 'ÀŽå¶°g”ñ¬K‚\Ä\Ú\ÊQ?gÿC-eON£\Ö\r»!','',0,'?'),(_binary '+º~\äAð¬,O­\r©¬ðG','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/installer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þI\Ãr£Ž‹YÌ†:½”k¶',_binary '6Z\èR:\Î\Ð\îóÅ0Õ‰týQÃ¬‰ó˜róï¸†\ê©\Â','',0,'?'),(_binary '+½Z„\ÔU\"¬¥=ºõð˜\ä','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-price-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\Ç{Ô¹ž\È~–¥X¤Œ\ë',_binary '\'¹:õ’\Ü\Ùv¸`\Z¦ŠŽ\nB«	\æ||±nT\rZj','',0,'?'),(_binary '+Àüµ^2¥\ãˆs1¡\0\Þ\æ','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-addons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ë*Äˆ“bnµ>\áA`Z\â‰N',_binary '”H·\ë/ù<2€¸”…%.#]]†£0$\í¯\Ì\ÛZ~\îV\ë','',0,'?'),(_binary '+\Ä\ãøt¨%R?\Ò\Ûõø \Ì','wp-admin/network/credits.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Bµ+ð„€\ëKVe†=­',_binary 'WN°œh¾K2ZŠF\ëù°W\Î\í\r08\ì\Ü\ÐJ5','',0,'?'),(_binary '+\ÆÀj\åU\Z\È ²üö\ãš)','wp-content/plugins/woocommerce-multilingual/dist/css/multicurrencyAnalytics/styles.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤\Ù(ƒ—\\.OtT¾\íB\á',_binary 'ŠkF¢V\á\Ë8Ç€–‚9\ÑPº‡´y(Šû\r\à›1Á','',0,'?'),(_binary '+\Èb\ç\Ê³\ëI=qY\ß\Ú','wp-includes/blocks/freeform/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷–^\Æ[%0\×\ß\å©Gö§ó',_binary 'þ\r.ZE\ç\çh\ê ý„\î\Ù(:•0B‚²ˆ$u\ÊF','',0,'?'),(_binary '+Ê¾\á\Ýú\ÎZ\Ò^˜w÷­z','wp-content/plugins/woocommerce-currency-switcher/js/chosen/chosen.jquery.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™°_\\\rÍ\Ú\n\×\É”',_binary '+\èn0÷€¡@›¨¡\Æ.c\'d–\å•1ž\Ùm…„\ë\á\ãl','',0,'?'),(_binary '+\Îi\êúK?G:i‘;\Ö ','wp-content/plugins/woocommerce/templates/order/order-details-item.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Dj\ÃvFÔ \í\âÓži3\å\"',_binary '+ò\Þ‡O2pö¦7¬\Û\È\åøP/\ê	I |”§','',0,'?'),(_binary '+Ú‚a\ç\r&:\á\Å\×uü½}W','wp-content/plugins/wordfence/modules/login-security/css/colorbox.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“<„»w\ri™ì»ŽvL*x\É',_binary '\ÍN\Íbµƒ\rÌŽŠ/?+\'\å\Äbi\'úW\â$@€i\0','',0,'?'),(_binary '+ä‘GÃ…‡]7\å\Óø2º','wp-content/plugins/products-compare-for-woocommerce/berocket/languages/BeRocket_domain-en_US.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ð\ï^FL–	¸%\Ñ\ÐÀ’V¸',_binary '\ÛòS5¹*µ–¤ð\Èb€£!gE¥SñQ\ÙÂ–JR¨','',0,'?'),(_binary '+\åþ\ËQÿ¥ø\ÏxŒ\á\á\È','wp-content/plugins/woocommerce-multilingual/res/images/ajax-loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\Öÿ‹\Æ\É\Ùx¨ˆ\ê',_binary 'N…÷!lƒYŒcI\åQ\ä‡:c®\Zk‘\Ê\íPµ8\ïh\Ø\á\Ö','',0,'?'),(_binary '+\æ ÑµZ\ß\ØOtªi,','wp-content/themes/flatsome/inc/admin/kirki/deprecated/functions.php',0,_binary '&@\Ð\0\âswn\äb˜£e›',_binary '&@\Ð\0\âswn\äb˜£e›',_binary 'ðL\â\êdoKø²_E\\†¾Àºå¸‡‰N¾[‘=f}„','',0,'?'),(_binary '+\ç|ó\Ã3I†ð\ÞjEDC†’','wp-content/themes/flatsome/assets/img/payment-icons/icon-atm.svg.php',0,_binary '[±_»«\âXz]?VŸ´,’',_binary '[±_»«\âXz]?VŸ´,’',_binary '>(SrÄ“Ž¦ÿ-	\Ôd\\pæ°‚\Ë\'†R`…Uü\\K\\GE','',0,'?'),(_binary ',±€˜ý\ã\'5™Zc','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Registry/AbstractDependencyType.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÐPˆ\êVu\'\Zô?[ô¾\Z{¤',_binary '`5!jô—\Ç\á³7\Ò2\è2kø™>ßŠ?\ì™y•\Ê','',0,'?'),(_binary ',\à\Z¼J\'ªAWh€\Ì','wp-content/plugins/wordfence/views/options/option-label.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'`\Ã¸\ì\é\Ù\Ûa\Ø\é \å\á',_binary 'ø¸\æñ\Ýy–óDFR#\\\\F/­ýG%RY¡\Òx!˜B6a','',0,'?'),(_binary ',\Z[„%HJû¡RD\È\ïb¾0','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/shipping-methods-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ªþ.\Ìi\Ð\ïÀog_\î³\0',_binary '¬_;A\æ\'eÃ´ò\"Á¼5U\ÇÙŒþõ2\ç\çž1X\êy','',0,'?'),(_binary ',\Zhó“_\Ó5]¦\Ï#Å’f\Ó','wp-content/plugins/woocommerce/src/Admin/Overrides/ThemeUpgraderSkin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–B\âÁ¤tf\Ã\ß#R,—O',_binary '\Õ}Q±ñ[¤–±Åµe\Ña2KO”\\Ú‚¥#`o?š*\ÝT','',0,'?'),(_binary ',\"1þ\Zý\éf_\ë\Â\Â|º9','wp-content/plugins/woocommerce/src/Admin/API/Reports/Categories/Query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þE\ê‰{>N\×õÔ§rOr¾',_binary 'ZcÁtd\ìBk0²™¹=\ì?\Ì\ì?5›Ó»6÷\Ö\èj','',0,'?'),(_binary ',\"PD\\0Þ£a{3¦•>Cš','wp-content/themes/flatsome/inc/admin/customizer/img/icon-outline-round.svg',0,_binary '8z\Å\Ê:@AS	.w(%\í',_binary '8z\Å\Ê:@AS	.w(%\í',_binary '4³aÄ’\Ìi}]cù€T\Z¦€)Bp“¹\ÒS\'*RpÀ','',0,'?'),(_binary ',&\0ù8ûµK/¾4¨','wp-content/plugins/woocommerce-multilingual/classes/templates/php/model.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e­L©G¯\ÌiŒ\Þ8\0z',_binary '…\ØE\"‰zt\Ó\\\é[¢M¬\á}£M\Åo‹\Ì;Ù¿}ÿ','',0,'?'),(_binary ',<“ª \ß?C]\á0AŒ','wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Í¶¥š¾Uè£¦\Öh\à',_binary '\ïehÓ§ƒ&Î­­ûAµ3‘+WThÁƒ\n\Z)\È?ÿÿ','',0,'?'),(_binary ',Ip\Ø\ØU\íw\äb\ä§A@#','wp-includes/blocks/spacer/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú½\àSU¹œ«<N†õ–BM',_binary 'JDª$Œ\ÙÖŽ¤]VŸNuÆ’Î´oB¢i\Ï\ÍW“Žñ_','',0,'?'),(_binary ',P5þXp\êË¦6–M\æG','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-2-col-full.svg',0,_binary '×Š:\"$jhÀr¤ad¶',_binary '×Š:\"$jhÀr¤ad¶',_binary 'Õ®¶^û<\ÖzþWVCPL2Mÿ¦Ô³-ú:	\é\Õu¸†','',0,'?'),(_binary ',Rµ3Z9—i\ÌGø\î˜','wp-includes/blocks/search/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—\ä\Ð4\êm¾ŠI‚\ä\Ñ	gž',_binary '>y7\Ô\rŸ\ßöi †÷…¢\rEu\Ñ!J ÁœR\Ûö','',0,'?'),(_binary ',U÷/P\Æc\é>×µñÿ','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-link.php',0,_binary 'ŽWR“N`L_„Œ©O•‘[',_binary 'ŽWR“N`L_„Œ©O•‘[',_binary '\ê?.À\È\"}\å5ºÀ\å›	j2–¦ò‡<¹ñjQ9~õ','',0,'?'),(_binary ',]\'N¦%Ý‘UeT­‚)','wp-includes/js/dist/annotations.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Û\ÆW±;Jž™\ë\">\ê	',_binary 'Éõ\Ü\É7ÿ,OÄƒ¤P+<U¦\á¢\Ö(ˆWkP„\Ã\Ò\á','',0,'?'),(_binary ',cSÌ»Í˜\Û\ÆVgBm¥\ëÀ','wp-content/plugins/woocommerce/assets/css/menu.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'úùK·A“ \ÛZ]±\Îs–',_binary '\ÃkŸ6\ÝX°~&)|›m\å\ÌBoCœ\Ó\\\éÊ´G2˜','',0,'?'),(_binary ',joƒ£uP­†r“E\á\Ô','wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-resource.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—‡\ï;u“©4|\Ô2;\á^ƒ',_binary '\Ãk­eL÷\Ú&r!m\ï\Ð\Íû\r7‹­\Â÷Z1ð~­%ø','',0,'?'),(_binary ',m¤9_¡7”Œy¢‹*y³','wp-content/plugins/woocommerce-multilingual/templates/sync-taxonomy.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÅŸ«R€sb\É|\Ý$q­Ïž\Ù',_binary 'ŸF_µŒc3pMÀ®­]\Z…Á\0P•\rØŽpŽ\í„Ç¯Q','',0,'?'),(_binary ',zS›S\Ô\ïXn=\Ì*»þ¸','wp-content/themes/flatsome/template-parts/header/partials/element-account-sidebar.php',0,_binary 'u\ÒkDŠWB\ì\îTM\Ü\Ï\à4\Ë',_binary 'u\ÒkDŠWB\ì\îTM\Ü\Ï\à4\Ë',_binary '+Š.ýš6T^Ú¨´ˆ¹kô>‹Í›,\é\Ô\ä\à›ú‰?','',0,'?'),(_binary ',z\Øe©\àúY#uJ~[P\r','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' OpR{üÒµŒ\çGÝ\Û',_binary '“Y’ü:B†\å\ÅP5M€s_†¼±š¹.Ù†úÖŽ','',0,'?'),(_binary ',†z\Û\ÛaûwŠEƒ€ób^','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/upgrade/class-otgs-installer-upgrade-response.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ïw‘\ä€}…—ó\áñ\Ü\0ø\Å',_binary '>X\È\Æk\èß§^ðõD=â¥µ\Ô24Ê»Œma\0;?8\Ä.','',0,'?'),(_binary ',†žK³œ%®\Ë\Ã_ùñ7','wp-content/themes/twentytwenty/assets/images/2020-three-quarters-3.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\Ë*9-H—fÒ…	¨X',_binary '²Û¼=šwô\ë{®˜¹v\Ó^È½\å\Â“C–qF:@ô¡Ÿ','',0,'?'),(_binary ',†\á\Ô@µšhj\äqrÞ’ÿ','wp-includes/ID3/module.tag.id3v2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ü©Þ°\Äo\Ën\09F\'!2}',_binary 'Û–»×£%¢¯®=\Ë\äš\å\×\Íý#\åž<\ïN´úb‘/$\á—','',0,'?'),(_binary ',ŠhÉƒs?4B[\Ë^Õ','wp-includes/SimplePie/Cache/DB.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñw\Û\ä¶M\éü\rÊ¦|D\Ú',_binary 'g#\è•\è‰\ë\Þ\â]\"°h0Vqü)\Â0œˆj´%\Ó\Í\ãI‘','',0,'?'),(_binary ',˜\ãûO\ÍØƒ[¦¿³D„','wp-includes/blocks/post-comments/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ìõe\"F%x´cÌ°3pJ(',_binary '\ÇOeL¤oXr\Z\ÛÖ´QJóæ¾¥eš”:¢Pö\Þ\r(u','',0,'?'),(_binary ',¥²ö*Vúò\Ü E','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-troubleshooting.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o‰4\Ì\ÌI!üPrÕŽ¢h^v',_binary 'Žý\Ð\í\ÓDseªŸ¸ô?”+ÿZ\0(¸\\DE\êZ#','',0,'?'),(_binary ',¶¨‘A‘\È\écg˜\n!','wp-content/plugins/woocommerce/includes/tracks/events/class-wc-admin-setup-wizard-tracking.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	`\ç\ÔX;\Ä>\Ô\Ò\0\Åg\ÒS',_binary '‚!…Q¼hz^K?\"ü\â~/@v¯þ²#	\ì\ÝmÔ´\ë\Å','',0,'?'),(_binary ',\Éÿ\0—§\â¦û¥tú´|','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/module-manager/icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Íe^hþ3\êÌ•ÿW\Ú\í™j¹',_binary '”\ÄKX‰^ZQzž„ã­­\Ñ$ýþ\ãÎ¶ðüdD\rþó<{','',0,'?'),(_binary ',\âÿ\äªúÂ¡K«Xù\Å','wp-content/plugins/woocommerce/assets/client/admin/chunks/profile-wizard.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~15P’8ƒ\0\×?(»G…*',_binary '\Ì;.¢ZŠ9>…\É\ïRó\ã»mµÿþJul\Çm\å','',0,'?'),(_binary ',\ä…ü¾³\Í\Ý\ÕQ¤•\Ú=\å','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-coupons-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j•\ë3\Éªd[gY\Þ',_binary 'ð&6t*¹€}[Ó„Ç–\â¨_«Û©½¤¸fñ}\ê','',0,'?'),(_binary ',\ç\á³&€\"y·ò²\Ñ)®\â','wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Shipping/FreeShipping.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\î\Â<Ÿü/\Ï>:Y&G\è®',_binary 'µ\ê·x‹eÕ’¥\Í\ÚÀ\î×‘z¸¥=ÿ¸\äb$~c\Í','',0,'?'),(_binary ',\èr÷LŒ< k{)Mp=1»','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-totals-block/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6t\Ä\0\Øy\È·(Z<WÏ·\Û',_binary '¡¾ÌŒðõ€n^>n\Ø^°ü§ü\Ý\ÕpxÀÍ²$\îM\à','',0,'?'),(_binary ',\î\àû^,?x\åóƒ3Ao','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-product-categories.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '93^(Y\"¶\"\ã\'i~\ìö',_binary '»b®´±:Ö®\Ã%.\Þ9=r+«N‰³§L\\Cr\Ûé †¬ ','',0,'?'),(_binary ',õ’(X\'¬ƒ‹\á%Z‹\Æ|','wp-includes/blocks/group/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•‚ª\Ä|ˆ\áVÆ³\\‡\è»\'',_binary '\Z\ÍY÷™\ãÓ—\àÐ—¦ž­\át\ÏMú¾¨\ÈYë—·\È|T','',0,'?'),(_binary ',øKØ—B0\'%›¬@e\Ñ\é','wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-shipping-zone.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þpr*l(\î7<!\Å\í=F\Ú',_binary '¤\Û]#q®­ÿ½\Ä_ðLUlüEp!rºf­K/ò«','',0,'?'),(_binary '-¯\íaT±Þ±XJÏ“‰•','wp-content/themes/twentytwentyone/assets/sass/05-blocks/verse/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ø\Ì$%`ú\í\åKDá‘°>$',_binary 'B\ÖU¥\n^Ež\Ê\á«—ƒ\ÒÀFE\Ö×™\êïª‡qŒd','',0,'?'),(_binary '-\ã44†Ÿ­Œ\\­Z6>\Ë','wp-content/plugins/woocommerce-multilingual/classes/Rest/Wrapper/Handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…&¼\Ñ\Í\Ü^Vl*ü/~ˆr\Ô',_binary '÷ÿ?TBë„´_¯iX(5°¼?CF°~m˜™¸©²','',0,'?'),(_binary '-\n¬x+»@¯\ÌÝˆaR','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';÷J\É;\á`Æ’ nH¿',_binary '\rÁ~$š#\Æ,˜[¡\Ç5§g\àt\à\ØW]I¶\Â{8rþ(','',0,'?'),(_binary '-giö\ÙÇ¡I\'.D®Z\Ò','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-heading/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õU´ôk¯9.L4x¥iz',_binary 'žÉ‚¢¨f¨ˆ÷Ov\Øû*ªö\0T®8\æ¾|Ž¨aMž','',0,'?'),(_binary '->‡ ¬\"x	ºI\á\Ï','wp-content/themes/twentytwentyone/assets/js/editor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '×¤°\ßÇ¾ð”Ò»È…\Í\Ë;',_binary '\ß\êwr^V[÷×­£ö¤ýH\"¶‘|¿iAuúh,\Ë','',0,'?'),(_binary '-KT\Ë+kb·£\Î¦§\Ëi','wp-content/themes/flatsome/assets/img/payment-icons/icon-ogone.svg.php',0,_binary 'i\è\ÂSŠ2pŽ\"©ƒüY6û',_binary 'i\è\ÂSŠ2pŽ\"©ƒüY6û',_binary '\09@W+9VRžˆ«ý+¨\îpš¸¥÷%¾ò\î\æ@ñQ‘\Ü','',0,'?'),(_binary '-l=bµ>o.\é','wp-content/plugins/woocommerce-multilingual/templates/status/media.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E»hL\É&\Ã\ÅóY)­2\âD',_binary 'ç‡Býl\Çò¾\Ûe“\ËAi\Ö\à\É\ÙŠ(ké™€R©G^','',0,'?'),(_binary '-%hˆc\Õ`˜\å\âtw\ëž','wp-content/plugins/contact-form-7/assets/icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~9\Ó\ËNüÊ¶_c\ß±_\ì',_binary 'yåŸª\É/ž+/Á<&p4\Æ‰oò­\Ô ¼]o>+^t','',0,'?'),(_binary '--\ÄÃ¼–$®);†\ÄJ5','wp-includes/js/dist/rich-text.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!Tª“ò`\Ï#b©q>\Ü',_binary '±Lá¨žž•7d\Õ\Ë\0JP­_²\ëÁž\ÝO¡\È\×\ÇR','',0,'?'),(_binary '-8\äò]19ÍˆË<\Ð\Ìf','wp-content/themes/flatsome/inc/admin/envato_setup/js/envato-setup.js',0,_binary '\Ç\á\ìÍª`s÷3\ÇZ™%\åI',_binary '\Ç\á\ìÍª`s÷3\ÇZ™%\åI',_binary 'ðÛš\Û\éùl„\ÑÿogÏª\ìFþh¨>õ	_\'–','',0,'?'),(_binary '-\\¬‹[\×µ¹†\èJ’×¥','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/Ctx.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\á’1ª£\Æ	\ÝMœ\ç\á\È]ú',_binary '¤\ëA8\Þ\Þ{€!§òV™t<SŠqH©oh\Þ4†¥y`By›','',0,'?'),(_binary '-`Ÿœ£nV1\Îœ\Ê\ãA¹','wp-content/themes/flatsome/inc/builder/shortcodes/map.php',0,_binary '!\Ü?‚S8Rÿ:ž\àœ\é',_binary '!\Ü?‚S8Rÿ:ž\àœ\é',_binary '¸8’iee)Ñ£ƒ\Û\ì\îæ‚¾_cIñ™¼‰@Š¼A¥','',0,'?'),(_binary '-i28¦4Áß a2g!T¨','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-report-top-sellers-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Õs\'U\Ï-ƒvftü©\0\Êb2',_binary 'ðd.°ihýˆ\Ôr\ÏW@\ÔR°±+y\ë/O\"_[\Ñz','',0,'?'),(_binary '-jÞ§« š \Í\æ¦~hyb','wp-content/plugins/wordfence/lib/menu_support.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z[œt*\Õ&Y5ý•\ÄÙ™',_binary '\î\í)–D²	\r¬\á#\"\ÍGµÒ¥PU\ÚJµ„Á\0@8W‹\Þ','',0,'?'),(_binary '-k)H†[Ì‹\âÛÏ”','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-sale-badge.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜Iw*ú\ß?\ì‡t\Î\×h(',_binary '$U\åqÃ…ÁÁx\ZÅ¢VÉˆUŠ]Žø\Ó\ì9\Ôøôô“','',0,'?'),(_binary '-kdÏ¯‘ªX\ßw\\7ŸÀ¯','wp-includes/admin-bar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Zÿ”ƒK	\Æ#¼B\áó{7',_binary 'dƒ\Î6\Ë\Õ\rë¯€¾\ãWýE6a”V÷‚\Ã\Õ5½\Õ\æ\Ûq','',0,'?'),(_binary '-süù\Ö-Qe\îˆ74¹t','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-assets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\äD\ÅÊµø)•\ÎÀ=X\Ør',_binary '\Î_e\Çü\ZN\Ûmvt˜J-WG\Âak³G¿[œûÞš\Ã‚G','',0,'?'),(_binary '-wž\ßkh­P³¼‚{%‰','wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.min.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾lÿ.´š(\ëK‘pQ\Ùð',_binary '³Ù$rb=p\Ïh¹x\ËK£ù5]8\ÇQþ§˜R‰¯jn4','',0,'?'),(_binary '-²\ê\Ñ\áÇ¸†%w=õ\â','wp-admin/css/colors/ocean/colors.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=A\á\ë¨$o¬\Ü\ÓücV\Ö',_binary '3\Ã3Àgª(u£2-*6{ðj­Ÿ=‘§Pg¿0M™³\Û\å}','',0,'?'),(_binary '-ƒ\0ª\à\Æs‹\Ì\Ñ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/Plugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WnhJ¤4¯/©Žu4\0vob',_binary 'y\àW?G|7³þúHÿ~A<~äª„3\à‰úp·\è’µ','',0,'?'),(_binary '-†šŽ_µµ\æmq+«÷1”','wp-content/plugins/wordfence/modules/login-security/classes/model/settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hã ²\í\Ä\Èi´e •É¡',_binary 'IHøMp\\‡\æõÿN­h\n×ˆNš¼F=-»“ºZ\Ø=hO','',0,'?'),(_binary '-‡º)7¦5y°8c\Ú\âWv\Ø','wp-admin/about.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AEË\Ì\ì\èZõ5iJþ\Ç',_binary '\ÜC=–¬\àq¸n%°…\Ñ\å\"\Ç4\'\ã¯\Ñ\r\n\î\ny}s.‡','',0,'?'),(_binary '-‰›R©ªn-$Ù¶™n\æsL','wp-content/plugins/woocommerce-multilingual/res/images/toolbar.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ð\Ä\Å?¬ƒD\ZR3‰™\Ôò',_binary 'óB‡D¡¾pA[Of0\Û\Ø]N\ÊRFk\\~ðN¤¹\ä\çz8¾','',0,'?'),(_binary '-Š_º\×+\Í\ÔYn¨\ÙS','wp-includes/js/jquery/ui/tooltip.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Þ\á²*\î\Ëg(\ë‘]y\Ù',_binary '/\Æn\èü\Za-¹´¿[\ÆOHW\ã\ÅT-63`°BL','',0,'?'),(_binary '-«cú\ßdñ¬q¬\Î3±\Ð','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/fa.js',0,_binary '‚‚\rù¾m3±‰\Î\ë~ó?ú',_binary '‚‚\rù¾m3±‰\Î\ë~ó?ú',_binary '¯yL\Ý4—ÈžnBeuÒ˜ÝŒ¼~PK¹õ¯±›Šl:','',0,'?'),(_binary '-Žf\â\È4]\Û#\"u¸³l','wp-admin/css/colors/light/colors-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L1»#À„Ky‡\äà®§',_binary 'n{‘\ÍQ\Þ\Ô\ÓcM>\Ì\Ï&›\Õ=-[\ëð\Õp\æóÁ·\é	','',0,'?'),(_binary '-‘©\Ñ{°\nwQ”¡ò^g','wp-content/themes/twentytwentyone/assets/sass/05-blocks/blocks.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ë\Ïù\ÃÐ’\ìù‡~\ÌMd\êv‚',_binary '©”¨\êZ…hoòR]C·²ZÁ\ZOlZÏ\Ó:l«¹','',0,'?'),(_binary '-œ\çŸè—‚ ‡Y{]nsƒ','wp-includes/css/wp-pointer.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Kh\Ô\àª\Ö:ö]w\\ž\ßcUK',_binary 'A‹\ìMj¾%U\ËuÖ„\"ž®Z\ê\Å\ï\ïvl=(nH€\Ô','',0,'?'),(_binary '-¡s\ÜÎ¸@^g;ý”^;\æû','wp-content/plugins/woocommerce-multilingual/res/images/banner-772x120.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\åŸ\ÛÛ§ t£¯HC\Ö\'',_binary '‰iRv\'ñŒŽF‰¨|YE‰±¬4Ä¿S ÷\Í\0‰¦.Îž<ø','',0,'?'),(_binary '-©;\×Pk,\Ò\ÚI\â\ß÷¶M4','wp-content/plugins/woocommerce/src/Admin/Features/PaymentGatewaySuggestions/Init.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡{9\ÈþÃ©”&OŽK%',_binary '\åR@ødT\rÅ·Bó«i ¯L\Æ]\íü3bU Fó','',0,'?'),(_binary '-¯²†Ÿ*ýa\îòÐ–ñ\r','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¶·&\êo\Öl÷Q\ÒÁ\Õ\\2',_binary 'W\áQ3¢\ï \Îw½\ÛV›®V‡MÍ»\Ý\Â=üd¹\Î','',0,'?'),(_binary '-¸dÿL\ÞÆ¥XHþmî¢¡À','wp-content/themes/twentytwentyone/assets/js/editor-dark-mode-support.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F=•\à\ÐQgP\Î\ËR',_binary 'jˆ¤­\Ã=Xi_\È\ê¸\È\ÐÖ°Þ‚pß¤ˆñ^Ñ®\éü','',0,'?'),(_binary '-»\èŒ#\"ôü\Å•¡³','wp-content/plugins/woocommerce/vendor/maxmind-db/reader/ext/tests/003-open-basedir.phpt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tj3øfô@{€‹\ã\ÓQ',_binary '\ç½ã±ð \ïA\Ï|˜š¯=®ƒ#¿³¶§cm8­\Û6*Ñ™','',0,'?'),(_binary '-\Ë&\Û²×¾(F%P\Í5\Û','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-out-of-stock.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰‹™)÷•Q¯\Ì\Ù;£G-1w',_binary '7\êNzo9[cJ\èþB“›˜	 äŒ·\æŒB—WBX¶','',0,'?'),(_binary '-\Ö66S6oXa=´=\×ð','wp-content/plugins/yith-woocommerce-compare/assets/css/widget.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xö¼qƒ›dö&˜öµ\r]#1',_binary 'dJ\ì†]¹\Çb\'ƒ+R§8ûk\èÀ‰¢ô>}‹eì•¨Cµ','',0,'?'),(_binary '-\â\å\á¼(_T$õ*\ÌZ„\å·','wp-content/themes/twentytwentytwo/inc/patterns/general-divider-light.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ýù¹×¥=\n¼²\ÚA',_binary '=b²,\á\ÄN>CÁŸMùfHËµ8Ž\Øoø\ïuW','',0,'?'),(_binary '-\å©ŒÅŒ~ð\Ñ\Ë34¾\çD','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/select-images.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„†¿@˜µ2æ§²\ÜûC',_binary '\åšY‰»3\ä\ã÷\Í¦!úDQ‡D\í%P\Ê<|8Ð¶4c','',0,'?'),(_binary '-\åha+`NSTü‚š\ï¬','wp-content/themes/twentytwentyone/assets/sass/05-blocks/spacer/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B|ªR°dY\Ú-­7/\Ú\Ñ',_binary 'Ï¹ò%è™¬Yu{].ñ\îø\Ø×’d¢.˜\Ð@†·','',0,'?'),(_binary '-\çüƒU…×½\èöõ \éF','wp-content/plugins/woocommerce/includes/class-wc-deprecated-action-hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#%\"%·(ª¸7=V@ ¿\ç',_binary '1I(b½\è²0\Ä^B\r°»0ø\Ø!\ìÆ¡ƒñw;\éñŽ','',0,'?'),(_binary '-\ï\Ï\é!ø\í§\áõ[¹\Ä','wp-content/plugins/woocommerce/assets/client/admin/analytics-report-revenue/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=n¤—¸û·!*Y\'ö“',_binary '=€£”\ë°	L”>\Ø}\ï0\Â\ÈË•ðÁXb‹ª‚8','',0,'?'),(_binary '-ó©¶\á!Ü¯\Ãpvh¿','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-klarna-gateway.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç\0\Þ¾7t–\Ï3LK',_binary 'lž/ÿý±\Ô\ßFh\ZÂ‘—«EqÛ‰¾›’¢ò‡¸\Ð\Þ','',0,'?'),(_binary '.\r«’\êŸdW‡½\Ì>=ß•€','wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-video.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ri-ôü%e1\ÞiMf§\ï»',_binary 'os‘\ßÿ\r}p V¼\èü/*{\ïÿ¸v 8\îžh<R','',0,'?'),(_binary '.!KL\ê2S\0e\ÞhO¹€','wp-content/plugins/woocommerce/assets/client/admin/app/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ\éqQ9EbUuBù²A˜À',_binary '§Â¼­ES\á{x£ü™¸0¡bZ©ð\ÍÜ›ž¥‘25ž','',0,'?'),(_binary '.š\Ò\n]Ë¯Fš£VRµ','wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Roman.ttf.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7‹ƒ¨\\û°ñ\Zµ°\ßEn',_binary '{GSÁ\Ý0‡«\Öù\î…\Ã)\Ëñö.~ƒ©#m¼}\Î:2\È\Å','',0,'?'),(_binary '.ó‡\nSú_1ÿ\'¦\Ë','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/utils/get-block-map.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(t\ÇK1¹\éHþ:°d+bð',_binary '9\Ð1ó¸?\×vQ„e\î<Ò²\Ü+´(P#]ù\êþ(','',0,'?'),(_binary '. \Ó\0_oEÿ]Aµ_\Ô0PJ','wp-includes/js/tinymce/plugins/wpautoresize/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'üK\Ì.Aj_™m•r#i•',_binary '\'¡²C§¿b\"B‰ø\\¸N\é¸N±\Ê\Æ*r&.X«\âŸJ','',0,'?'),(_binary '.6šs\Â°\æ|”J[bK ','wp-content/themes/flatsome/inc/builder/core/server/helpers/templating.php',0,_binary 'ôVj³ór\Ó~[DM\Za',_binary 'ôVj³ór\Ó~[DM\Za',_binary '\02Oqû\ï`€E‚+)œrhB\Ê|•\Ð\Z.û‘ZzØ“\\¢','',0,'?'),(_binary '.8\0/6\ë\ç\ì>„¸É´\á','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8ôIÿ0¸mj@0\Ý%øUø',_binary '{¥{oª]ùvrlñSaX\Êr‚óP\ÖÎ“?‰%.\ÃùE','',0,'?'),(_binary '.8y©—ÊžšŸÉ¥¿0‹Ny','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\êf9\ÞñO\Þ\Ì6\Û{l«¶',_binary '…òXÁ>ˆ>2ò½¿‰=½IÌ±F”\Ç»ÒKÅl\Ù\"ž','',0,'?'),(_binary '.9Zmg‚\×Œ¿,0Ö…','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-ui.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>þ{“ý&\Æ&iœU\à',_binary 'W±Î¼G¼Vl[z7§RÇŒ\Z¾q\äzßµ 6&HR','',0,'?'),(_binary '.@ŒKf\Ö\ì\Ó\ÐL)x\ß','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/products/OTGS_Products_Manager_Factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´\é\îû³³Î˜h\\‘¯\ín',_binary 'A±“„.\Å\Î\ÙÉ 7Ko#™-a\î#\0+†\r—Iþ','',0,'?'),(_binary '.H´®8\È8bðc\Ù\0ø¬u\"','wp-content/plugins/woocommerce-multilingual/compatibility/res/js/wcml-product-addons.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vž\ÖLº\Ü\ÌP6W\ïü\Öþ',_binary 'ÀR\íµ\0B\êa’+$,ˆ~·#R]|4_‚\'\áUY','',0,'?'),(_binary '.IhUœŽ\â3Ž¿+B\Z„¼','wp-includes/images/admin-bar-sprite-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ëQ¬\ë›\Æ8þôo€\Ê',_binary '*E°\ãÀTsü\Ù\å£al\ä‰^\Çp¸\ÜX‰¯\æ¡Z\0ù','',0,'?'),(_binary '.Jƒq¬\Ê\Û\ÍB\Óm 1º\n','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/tippy/tippy.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Vzn§±xná¸µ\ì9ð\Þ',_binary '~-\0½˜nBÌ‹·ª´·™¥\Ø\ÒN\r\å\Ñ,\\=\Z€¯\È','',0,'?'),(_binary '.Mm\æv‘î¾¡!³gØƒø','wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-cart.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'šŸ\Z$\Üùû~\éø\×_”V¾´',_binary '#Š:É¬\Ùúž\á ÁÒž§ô\à[zIJ@Nø\0´\ZK\ÈY','',0,'?'),(_binary '.S\r\'\ÔtÿŠgÙ•~õº@','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/address-form/prepare-address-fields.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ýc¥ø–±ã¯—¸ô\n³\á',_binary 'º|R\n5\Þ_*ae€&¾?\r•L/\Ù\r\âe†ô}¿\ê\Ä','',0,'?'),(_binary '.[È¯.\é\Â*¡¿¹ù:h','wp-content/plugins/woocommerce/assets/js/frontend/credit-card-form.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç\Ú~w†«h›%\\§',_binary 'Dõôð—~´	mL9l<þ;~ýbp9µFŠM\ç\å£tVl‘','',0,'?'),(_binary '.jvœ[}\ÇvÑ³ !µfò','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/html.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v€Œô\ÅÀD\'Žª>ø5/ñ',_binary 'øÞ¼OFýr\0¥ö\É~š¸\ï©œR$\Ò\×·™(','',0,'?'),(_binary '.k;¡ª\Í\È\Ãw†§q','wp-includes/blocks/post-author/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-²\ã\Ã\âN‘Ø¬Y‘Œ#EŒ',_binary 'S!\0ý\åÇ‰l\Ë\êi¦b-\Ä{\är8Ú¨\rŸ|B\Çc','',0,'?'),(_binary '.x¾ŒÏ®\ßú7…\×üú_\Î','wp-includes/js/mediaelement/mediaelement-and-player.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§›¤\"Š†\Ý\n§-Û¤ Y',_binary '$9~ù=:¡¦”\áZ\ÖF†m}ùA\Ä5ksú	V#€ \á*','',0,'?'),(_binary '.}fB¦7\rœõL’ú˜„.','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-shipping/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A©\ÔJ9>\á9”\í¼ñ\n–A\Ì',_binary '©„µ‘PŸ>-2e(˜14»¸\n²¹»lSH¨','',0,'?'),(_binary '.ƒy1n[>\ìd\ã\Ñ\Æt‹Q','wp-content/plugins/woocommerce-multilingual/compatibility/res/js/wcml-members.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r¿)\Ñ‡‘Ì¿0\æ\É',_binary 'žBC´³‰=Ï…¤š¸\Ì4ÁwWödø7—ƒ\É>ý','',0,'?'),(_binary '.ˆéº‰D0‰u©L-c•','wp-content/plugins/wordfence/views/options/option-toggled-segmented.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›\Ü\ÖB\ÊW#”\è#ü®\é',_binary '\Õü^À<µ´4ó\Ìe,À\Ô\0ú\Ûl\î„’\ë\Ö\r\â!d','',0,'?'),(_binary '.Œ=«\ß$”¼.¤6¢\Ô(','wp-includes/blocks/button/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ë>iPt6ž\Û*”!¼ˆ\Þ',_binary '\ÓL\"gL¬~Œ?G´\ÈD\ì\ë\Ö*\rh­<¡q{\ë\×mþ','',0,'?'),(_binary '.‘…\çJþæ”½°šR<\Ë','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Parsing/ParserState.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>úÔœ2˜X\Ê\Ðq.ü\Äw',_binary '\Ëz\È2ý\ì\È”\äY\ÎiÁtª±˜ð\ç»~4‘¯ù‰o\Û','',0,'?'),(_binary '.“»\Ód¹+Oi±c\Ôz€I','wp-content/plugins/woocommerce-multilingual/classes/multi-currency/payment-gateways/class-wcml-payment-gateway-paypal.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'žU‡€´;ór\é®\Å%\ïœ',_binary '\ã\Ãb’\ã\çÅ£C,kJ,û4J\íÕ´+(\Ílþ·ûô¦9*','',0,'?'),(_binary '.š|­GQ|©B\ï\Ì3„T','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/PassRuleProcessor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\"2\È\Õm\'\á8\Î\å´B?ò',_binary '\Ì¶aÏ›\ÊhM\ï+\å‹X÷õ\Â&IŽ@\Ó\îñ\Ð#)³','',0,'?'),(_binary '.¦E\Ç[Jõ\Ïlžx\ß\ã','wp-content/plugins/wordfence/images/forward_disabled.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M_\Ú\ÖZ?\ÚN)ºÒŠ\ê:\Ü5',_binary '›®€/\ß<>O&\ßÈ•JRÝ‡e\Ä}š(»›m','',0,'?'),(_binary '.­*{ê¢I\Üuö(¿g¯','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/reviews-by-product/no-reviews-placeholder.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~ f\í–+ÿº\\\ß+\Æ\0',_binary 'gõø]\Ä&~‹</#\Ä>²2\"\Î\å=H.…\íš—½	T','',0,'?'),(_binary '.°“‹M©\è­jœ#{','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/schema/reducers.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z€\Ê\rG üQ€\\\Õ[',_binary 'Ž†X\×9Ã¢†©zœo•¥\Ô|!\r\æ\âs\Í?r¢©\Ì\ï','',0,'?'),(_binary '.´\×7\Ñfów9Pm@¥¦\î\Ñ','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/jwt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ï\Ï0–H\ç#ÿIHDñ\çó”',_binary '\Ûv˜o\ÂVYx„?˜„\ä\n\Ü\Õ\n&3c-\r¬8\îm¥¸','',0,'?'),(_binary '.·h­¸Ä€ìŒ‡`_9¥','wp-content/themes/flatsome/woocommerce/notices/notice.php',0,_binary '1)¦A6GvRŽ\Ûøœða\ë',_binary '1)¦A6GvRŽ\Ûøœða\ë',_binary '‡U\Ëýö\"[<Wg¡£R\Ìü\Å\á¡\ÌsösX~ª•/#.','',0,'?'),(_binary '.\ÔN\æ\éT\r\ç\Z„šV;ü','wp-content/themes/flatsome/inc/admin/customizer/img/category-off-canvas.svg',0,_binary 'ŽeŠ&\é	˜y\æ‚‘\Â@',_binary 'ŽeŠ&\é	˜y\æ‚‘\Â@',_binary 'b«™‡H»vœL\Ù3ðŸ½ö\065.\ä`ÿÉ´:ù\ëý9','',0,'?'),(_binary '.Ô¡\×f…I\Ç4\Ë#ƒ','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/ManageStoreActivityFromHomeScreen.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\Ñ\r:A‡\î/À¾lNˆmÁ',_binary '\Ó!±ƒ¨Ok5TGl‡ú–SAÜ°\r¢Z\Ú\Z€¹','',0,'?'),(_binary '.\Õð€§“(LMõ^©\ÝLS','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/edit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9ýð|pû¡r8\î\Åýð\"5',_binary 'A\rh¡aØ’¯\Â6„mk‰B\åŽúŽ3VIY¼¦\Ä\Û+','',0,'?'),(_binary '.\äô:ÉƒWœKP\Ê\ê\Ö\ÂJ\ì','wp-content/plugins/woocommerce-currency-switcher/views/auto_switcher/classic_blocks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’¹6@V™pˆ@\ZZ~\Ý9`',_binary '‘K\Ú*`\é|€…	|À”ŸcYO%Wõ\rÁVw·ˆÿú„­','',0,'?'),(_binary '.\ï6ómþ\â\Ùk¿6\0r\È','wp-content/plugins/ti-woocommerce-wishlist/assets/js/admin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–¦`ú”¶Á\Ùd˜5ù\Æ',_binary '\ÖuUú·\Ñºýl\êy¹†\Ê7\ß¢u ºV†œ;û|©ú','',0,'?'),(_binary '.öq¾E9\'ýæ¼¥X{ª','wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-settings.php',0,_binary '\è\Zuš:F9a%\é´È¢\è',_binary '\è\Zuš:F9a%\é´È¢\è',_binary '\ÑE\äH =K‡\ê¡w#¹V·@¼Õƒ]¬_\Ø\à|\ÝN','',0,'?'),(_binary '.ø\ÖÏ †a?é¦ºW…8Óµ','wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ûA‡ÿ\'?™¿¡¹™Z}‡',_binary 'Hþ\\M§4${¿ªS	fQ‡A-\Õ\ç\Öôj¹\Þ%\0Ý¬«','',0,'?'),(_binary '/T\ì6”\ç~\àô\Õ\Ðc','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library/remove-cart.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨ô“\'·‚\ÖNŠ.’o\ï',_binary '~g\ÆhFeü öDµyX\Õh\Ò\ìK´e•\Ýyšz&õ','',0,'?'),(_binary '/¨N¦¤8[ö¤…Œ4(','wp-content/plugins/woocommerce-multilingual/locale/woocommerce-multilingual-de_DE.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª\íL­aÅ‘uW\Îu\ãÂ¨\ê',_binary 'õ\È}$\Íû½\É3@&3\'\è\Ì#\Ð\Û\Ç:E\Î\ßø‡^\\\Ùu','',0,'?'),(_binary '/	[‘\ïuœ-²n©y\Û\êñ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/diners.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ßÃ‘òŽ„‡‹\ë{´*\ÔZ\È',_binary 'Æ‡2š¶€¤\"Y|šúJ/\Èt»Ãž`´~´h)÷„‰0u\Ø','',0,'?'),(_binary '/J\î\É*k½(\Ý.\â','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-he_IL.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥¬S\Ë\Æ\áû;¸OœÊ¸À\ê\Â',_binary '¤u\ë-°ö£hXôzžv[&+\ÚTv~\Ý^*t§uñ“¥','',0,'?'),(_binary '/ z%\Ñ\Ïk\r–¥ò~E‡','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Payments/PaymentMethodRegistry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷„\Èh	¯\Â\Èq*§»^’',_binary '\èü(\ßE?Î•ú?®…¶,‘¹\ç\ãXù\ÆÔ·R','',0,'?'),(_binary '/,Ê·!›ß´\ß\Î\É','wp-content/plugins/nextend-facebook-connect/admin/templates/settings/userpro.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W3‡1\èt…¿i\ë\Ñí®žs—',_binary '˜Ü§.žDÛž\\»y\Þ\ÓqðF\ì®\Ó\Ø=&›/\Ë\ÌAg.£','',0,'?'),(_binary '/*:ºª»”o>©tšŽ«\îª','wp-includes/js/dist/autop.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ›YE¶ˆú×¶OFØ„ùÀ',_binary '¯J\î­€•^\Ú\ì \×Ž,‹‰ulr&ø\ïYv’N!','',0,'?'),(_binary '/4\Âyx†\á\n®ò\ë\ÏT\ã','wp-content/plugins/woocommerce/src/Admin/Features/Navigation/CoreMenu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×\'q‹Eƒõ\Æp¥9Ê«c',_binary '\í—Spe/9z\n‘N»\Ø\Ø*6\'÷7 …\ß\É','',0,'?'),(_binary '/<Ø§^É¼f}–\"\×øû$¸','wp-includes/images/media/document.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\å4™8öÎ‘y“6\Þd£',_binary '¦\íÃ¸`™\Ùû³\ç\á±\íf	I$ _ZªX—\"0\r´\ß,','',0,'?'),(_binary '/R6\Î\\€=\nœþŽŽ…\â…','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/product_lookbook.svg',0,_binary '\ç¦a\â„AñI7Eõ\ÌW\Î',_binary '\ç¦a\â„AñI7Eõ\ÌW\Î',_binary 'ˆž)j°\ÂÂ´w\Ç\ÙðÀH¹G\ëûûôò¡úÍ’\Ó\ãa','',0,'?'),(_binary '/U!¿kwL\Ë-\Õ±?Õ©','wp-content/themes/flatsome/woocommerce/global/wrapper-end.php',0,_binary '‡;7´ž^1)¥b\Ë÷?ŽQX',_binary '‡;7´ž^1)¥b\Ë÷?ŽQX',_binary ']zK$#mýˆþÙ©\Ñ)98°Â‡\ÐF	Ð¤G÷\'Ÿ','',0,'?'),(_binary '/ah\'/\É](/gýü¬ó\Ò','wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-form.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\èBC,1\Âc.GÍ',_binary 'd\êH•°¹b²	w\ìaÿ$†²¦iôH£bß¼\Â\Óv\n','',0,'?'),(_binary '/d\êÃŠ“\Æ\Ãz\Zþ|\Ú','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-item.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿý[r\ß\Î\0\Ü\ì©\Ù\Z¹rO^',_binary '¿p8^Ö¦—`¼ú\Ì3\Ý;J½&v#ý%\ãˆß¶\ìq|','',0,'?'),(_binary '/dÝŸª8\Ü,nÛºe) \È$','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/TastyIgniterInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„‹ý5 \ä#6¸¯\ïlž',_binary 'w‡\r	‘Z\Ä\ÄÏŽ‘]?YxaPÀRn/A\ÙðQ\ÌM\Ì@¾','',0,'?'),(_binary '/x—¢\Ø\Ú9®„\ïMl\å’k','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/maps/icon-128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ån²þpóÿ\Úº3Ã–',_binary '´;A­›¶\àCDyF\×F\îõ\é£\"{\ä{\ë','',0,'?'),(_binary '/zO\Ãp™\Ð÷\"¯\á¥','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/payment-method-label/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I·\Æ\ÑrZu¨žGV\Ï*\î',_binary '\n˜\Æuš›\ÄIƒ\ÏxŽD\Ä8Q\ë\ØÒ¬lAxŽ\ÑÅŸÿ','',0,'?'),(_binary '/€9ò\Í\rxúù\Òq“N‰','wp-content/themes/flatsome/inc/builder/shortcodes/tabgroup.php',0,_binary 'ˆ\Ì3ô¼·LB„¢3)G\êm',_binary 'ˆ\Ì3ô¼·LB„¢3)G\êm',_binary '|”`\í˜\î\í\ÙI\åÚ€%*rV&“…h¾k«œ›¥¢ˆÚ»G','',0,'?'),(_binary '/‡Ž‹\Þ7WðE\å[@ª\0H1','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\êTJ«-ž¹«§Æ¾\ízf²‡',_binary 'w\ãCÇšô>Ÿðˆ@÷¿\äK Nnž³„tUìœšð','',0,'?'),(_binary '/‡²^)®X\êüúƒÒ²˜\\','wp-content/plugins/woocommerce/vendor/bin/wp',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Õ”Œr\ïC`ú\Ñ~¬®‹ƒ',_binary 'V9yØƒ+¬\éó¦rò\"jYzÍ´¥S\í04i¬Ž8','',0,'?'),(_binary '/ˆVaß·ze Ó«Ìœ\Ð','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-title-block/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÃTúÿg\Ð\Ùiô&{nzP0',_binary 'Æˆ5-c2\'°l\àŸB¾–g‰¡Bi˜5\ëEHh<\ë\Ð','',0,'?'),(_binary '/‹D\Úc¸‡lõ\ÓÞ\Ü','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\í1HE~oIý\Ë™‘ó',_binary 'C\á#r•U\ê07©µ¹\ä>{37L¼§\á1ñ\Ðs˜','',0,'?'),(_binary '/„\ÄAL±(â„´\ÏU5uo','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/payment-methods/utils.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gøqÝ °Éµ\ä°ÿ&‹‡\å',_binary '\n@$0j–)´\Ò\Ðêº‡%q%\ã”k<Â¬¯\îL¢¶×£','',0,'?'),(_binary '/’¦^µZò:s\æ˜ùÂŽ','wp-content/plugins/woocommerce/assets/images/woocommerce_logo.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«‰#2™ú·Aö\ÈF~\Ò/\Î',_binary 'ù¨3÷X¸\Æ\É\Çú/,a»†\Üvøÿ)°\àpr\í','',0,'?'),(_binary '/’Ý¨L\î\'N%†U$ð\n\Î','wp-content/plugins/woocommerce-multilingual/classes/Utilities/Resources.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P÷t\n™M8gˆZ¼\Ø{\É',_binary 'ó\Ñv\ØðÙ·‘4\ÐŸ´€üfJGB¹\ÉÿYˆZ-¨\Ç^','',0,'?'),(_binary '/²þ}ã¦¿Lú;?\Êw\\','wp-includes/Requests/Exception/HTTP/401.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.š\Ðo\ß‡XšNºž\ìR¿',_binary 'YV$‰ó\Äÿ/\ï¥Ÿ@=²÷…\Ã\î»V-½\Ødc°','',0,'?'),(_binary '/´¢M®n¹\ê”\à\í(Šsv','wp-content/themes/twentynineteen/sass/navigation/_menu-main-navigation.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ‘\ß*T\íñ;ó¥ŽO',_binary 'ˆJ’P\"AÒ±\r¿S©P4In\Z*\å0A\'‚Ï«ý\Õp\Û/]','',0,'?'),(_binary '/»s»µC4Œ˜\à\ÖÀ€ž','wp-admin/network/setup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	w­\ç˜¨ºT\ÖA;\ì}Ad',_binary '‘\å¡éŸŒóœž÷\'¶MNò+\ËÆºÀRÀ\Ì¿óg','',0,'?'),(_binary '/\Â\rñ¬ƒz`¹j!œ»<–)','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-system-info.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸Y\0dmL\èm`÷9¦{²',_binary 'B“\Ë\Ïô×«ñ\Ø\Û}gnÞ˜\Ñ@Ë­\è;ðKHn-¢þ¢','',0,'?'),(_binary '/Â¬1¹~5{û\"ýf\ÎY(','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-image.php',0,_binary 'ôO\ÛG\ÔZ´\Í\ÌÊ“=\à*j',_binary 'ôO\ÛG\ÔZ´\Í\ÌÊ“=\à*j',_binary '9a›C%ß¾ûµw]>lf¯IP\îÕ³\ï\Ý\Ë\É,–\Þ9@','',0,'?'),(_binary '/\Ãs€—¢\êNF¤>ð¸¢6\Ú','wp-content/plugins/contact-form-7/includes/css/styles-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\àEÀ’ü1\ÓX_\çùuA-',_binary '_\ëM\'÷:#iLHuwA‹{•…\í‡\Ç\ÉþÌ @\çªÿG','',0,'?'),(_binary '/\Íà·¡\ä«þ6ÚƒVf8¹','wp-content/themes/flatsome/woocommerce/single-product/sale-flash.php',0,_binary 'vx~`Ø¢ðˆú\ÂC»T',_binary 'vx~`Ø¢ðˆú\ÂC»T',_binary '\ß\Åm-ª\èjVRn(\Ðª1\ä¨^*¥)¥°q“o','',0,'?'),(_binary '/Î©\ÛñZ¶\ã3\Z²\"®','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hocs/with-reviews.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°&I\"Vva:H`Rbv\É',_binary 'rô¹*jJ4;øYc\Ä\ãƒ-M µ!@¿\Ãe¸+5ûs\â','',0,'?'),(_binary '/\äo†:ú’h\Îð3)‹\\£','wp-content/themes/flatsome/inc/admin/options/header/img/header-wide-center-simple.svg',0,_binary 'ñ°ˆcl0R\æ\ßð^³k¢\è',_binary 'ñ°ˆcl0R\æ\ßð^³k¢\è',_binary '\Æ\\¶,uW¬ô@ûO]óm\å	•¥Ž(.„¹±Û·gi','',0,'?'),(_binary '/é¹ \ì\Ä\ïÎ°1\Êiw‡§','wp-includes/images/uploader-icons-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­Á\ç°&-€\äO¢‡Ã•\Ë~',_binary '”†¤r\ë\0‡·\Î\è\'_>…ñ6\ç\ÆQW¼Œ4Ú R®‰','',0,'?'),(_binary '/ðø\èf¹‰P¬j>Xª¿','wp-includes/sitemaps/class-wp-sitemaps-renderer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V}dƒƒT³Ü§§C\"Âº',_binary ':öi\Î\ëKš\å,ðc}i1\Äd•\ä4l\Ìc©2Å’\ê¶2','',0,'?'),(_binary '/ö-uk¾\æ\Z5x#\Ý\ÕV','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/icon-notice-refresh.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tÊŸÍ¬ñ9&it#Y;H\ãó',_binary 'g6Q\Ú+)š\nª	‘ý\çNDŠq>=…\Ö0¡r N','',0,'?'),(_binary '/÷¡õ\â\é5SQUÛ¶v+\Ô','wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“Á\É\Òû{œ«EV\\P\å\ë',_binary '@\È\ÝV\Ç]\ÓT\Ðm¡¸\â\ãŒL0\Î\é¿r=Õ¢Pý¢]\Ì','',0,'?'),(_binary '/úB}Å·ZÀ;F»\Ô\Þ\Ú','wp-content/plugins/woocommerce/assets/client/admin/chunks/6125.style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ë\"c*¨A‹\Ù-ýÁ•Š\Õ\Ï',_binary '\r<M~d?\ëL_96J\ÜÆ¨£œ¤\Çß¹r·6„Š’¼','',0,'?'),(_binary '0K2£GA\n\n7+\çÊƒñi','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-list/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«mfhø\Ò0v%[,',_binary 'ˆ\æ\Â5yš$\\vÿ’»F\î_ûŸÄ´š\Äy†Œ\î¦B','',0,'?'),(_binary '0v\Þ\ï÷Ô©¬9\ÉõF´»ü','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-exporters.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ä)\äƒIšó8Õ€0lò',_binary 'ú\×\É\rKT\Ó,g¼¤\\:~v“‹µ÷\ZñýV˜rœ\ÅA','',0,'?'),(_binary '0Wb¸»Å‡*\ä‰h*','wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-json-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦‹’t_\rzlÐ\×\\e\Å÷\r',_binary '>¤\ÒJÇ¤2G\Äic£\rÀ\Ë÷\Èò¨#tÖ”~Gzÿl','',0,'?'),(_binary '0r\ÅX\å³@\Å\ê\nk,ø','wp-content/plugins/woocommerce-multilingual/inc/translation-editor/class-wcml-downloadable-products.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';¾&¼?\è‰qÀ€\ØI˜®„',_binary '7\ê;zC\æ€U<5^\ãYô1ÿ–ð´\ìÿ\'\É\ÑB\â°Àš','',0,'?'),(_binary '0(G•S\ç3\"\n{\ï\r\Þ^W','wp-content/plugins/yith-woocommerce-compare/templates/admin/premium.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$ñ+ÍŒ’ÆË…\äye;õ',_binary '\Ü\ÛwÃœÛŠ<¶Œ\Ä¶9_:uÛ„`wš~<Ø§Añ\Ù','',0,'?'),(_binary '0+š\ÉÃ½\Ü\Z\Û# e&+O\Ê','wp-content/plugins/ti-woocommerce-wishlist/admin/tinvwl.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%!DNª\'\ë®\ßÚ“,\Ð',_binary '\0)S99J@új.B‹\Î[³\Çj\ÅT\Z:*','',0,'?'),(_binary '0+\é`|®n›ˆò¥¼•','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/forms.svg',0,_binary '•Q¡B8\ïu. Œ§ÿ-‘',_binary '•Q¡B8\ïu. Œ§ÿ-‘',_binary '\êP–ª\é\0\Ñ\ÎUxã·‡\í‘`\î´k\îúpS-\à£','',0,'?'),(_binary '0.Azú9jz½/¢3M,','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ìs@õ4	\Z—\àºðDw«',_binary 'ü+Yv2\Zƒª\ÂB§P\Ê@bH\ïI\íeñ4\ÝM®','',0,'?'),(_binary '043p£\Ú2\ïP>\âÒ¤ñ>','wp-content/plugins/contact-form-7/includes/form-tag.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘X±–´\ÙT!p’ô\"R1›®',_binary 'Zö7\Î$\Éy¾ûÀJ?\áð+\ß\ÇE¾Eû¯9€wgÁ','',0,'?'),(_binary '04†D<-KZÁ\ï\Z\'yd','wp-content/plugins/woocommerce/assets/client/admin/analytics-report-categories/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\áö²•\Òuòv–<w3ž',_binary 'w“ñ×•\ãB\ÔÁi)­Å€¨!?C)«l|\Ëu\Ó\Ñ\È\r','',0,'?'),(_binary '0:šñ\ë.T$	G\ëa¨','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-api-keys.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à7ójv€wr3.÷',_binary '\Ú\n“\0Utà«£½Ž\Õz±ðñ€¶RÇ‘\ÈÁÔ½+ú','',0,'?'),(_binary '0<’\Î\Å\ÈÿlÚ¿þöJ­\â','wp-includes/js/wp-backbone.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ò…Kµ/¥Œþ\ä\â´7\Ï\Åôb',_binary '¥\Ö\æ9J7„AˆŒ\èGµþ’uq!@/nS]ù<o¸e\Þ}\Æ','',0,'?'),(_binary '0<¨9\Þú\à®uô;SZ\rj','wp-content/themes/twentytwentyone/inc/template-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨üªÄ»\ÇlF¨ULDùWLS',_binary '*û²\Þ=\è³^t2ÿ\0¶\Ýj¡\Ë\ë•?<‹-\nb:g>}\ä','',0,'?'),(_binary '0]qK\'ûf˜xÁ»\Ï\ã¨','wp-includes/js/tinymce/plugins/compat3x/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L’{\ì›\Åp\ê¸×¶\ÜÒ ',_binary 'Ÿ\Êmöæ¾‘\È[\ÒS3\Ã\Ý\'øJ\Ó*\Õ\åSts\Äj\Û\Ö\ç','',0,'?'),(_binary '0`‚º±ýúºšW\"\ä?','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/grids/grid-9.svg',0,_binary '\êrò:gŒÐ°¦Š\r¼À—',_binary '\êrò:gŒÐ°¦Š\r¼À—',_binary ' ý%ø\Òlb¼÷\î\è\"J\Ôw‚_Ooj3ú¬Dµ§\ï\Éj','',0,'?'),(_binary '0b\ä¾\Ý‚B!4õ?$»','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/products/OTGS_Installer_Products_Parser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŠI\\\\—f¯ø\Ó\ÍË“Q„»',_binary 'I\n\Î\ÞGösƒžOF\Ôôúú4$´\íµÕ”Øú7‘ \Íz»','',0,'?'),(_binary '0gÑ³«2‰\0¾o%‘I\0Ÿ,','wp-content/plugins/woocommerce-multilingual/res/images/bg-rating-notice.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ye¾fD \ÙZ \ÉVº3',_binary '\ÏTy[{{e§¿@Cø„5V\æI„wC6|M\"¯a‡<_','',0,'?'),(_binary '0j\ïVÆ½\Éf:Š5†\ç`•\\','wp-includes/js/customize-selective-refresh.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E¨G«åŸ³6\ã0\âb\É',_binary 'G’”\Ëi˜A\áøŒw_“Pg\Ù9‘™ \ãOÉ“\Ì\áM','',0,'?'),(_binary '0qXü”E>SÎ¿d­a','wp-content/plugins/woocommerce/src/Admin/API/Reports/Coupons/Stats/Controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ó\î\ÂN\×~/‰fnuhË–º',_binary 'ø†µ,G€]>E.¬¶¸5\å\ÒY=‰ú\rTº“üaOZl\ë','',0,'?'),(_binary '0tü6 \nƒF-~‚©¬!','wp-content/plugins/woocommerce-currency-switcher/img/woocs-options-1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w²~ôQ}šŠv\ÑÛŽÿ\\ûI',_binary 'š5\ÆjS\Ú\Ð1Uß“c\"«™\Ô\Ý\åI¨<ˆXŒk\Ø\ì+ž','',0,'?'),(_binary '0x\ßhý\×Í­K”ü3ù÷T','wp-includes/class-wp-fatal-error-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ßtGM[Á’@Ì»ü”/f',_binary '\É\å°5\Û$\èz@½R\Çn›cd\Ê™û¢§w€\Û','',0,'?'),(_binary '0{k6\'ó“õA{¬…Ý¦','wp-content/plugins/woocommerce/src/Admin/API/Options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P}c¼Gl“V\Üyƒ\Ü%',_binary '“wªUC\Ä\Éb\à\Æÿl~^¤úd\åq<\Õ\Ò2¼¯\à','',0,'?'),(_binary '0ƒ¹\Öóa\ÍOµZI|I\é','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SecretStream/State.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ðW—HY ñ®Â²·‰',_binary 'zI]Š_ŒÇ²”¦!\ì®bÑˆ\×6üd\ìuY\Ù3','',0,'?'),(_binary '0“Ÿ\Åk¿ ?Þž\Ô\Û\î','wp-includes/js/jquery/ui/effect-scale.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\Åñ6s\Ç\"ºtú9C',_binary 'ýwªø:\èùÀpUhU\ÎušMp’Žƒß’Cô0\ãx\ãÚ¶x','',0,'?'),(_binary '0˜Tœø\ÆL,~jW™z\ë','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/cart/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾Fö¸½_\áT/©®œ¾ÿ',_binary 'Snõ.™¤þÑ\0\Ò\ÔIV³\ÉÊ¡\'Gó\ìò\Îh\Ý\Ã\é','',0,'?'),(_binary '0œ·„8H\á\ì6k3\ß\åy','wp-content/plugins/yith-woocommerce-compare/assets/images/socials/dribble.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ì\Ä/N§‡³V°\ZN =\Ã',_binary '+ÇžJ\Û\ïml™´G¥\ê\Ãþ\å\ä\Þ.4…b¢oSc\Ûû®','',0,'?'),(_binary '0œ÷<K\ã}ŸªŒ×‡','wp-includes/blocks/image/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' tºÿ‘\Î(‘S¬Œ÷\çÀÄ®',_binary 't`Xˆ`K\"¦o¥ý= –<t-øröA\Ç\ÒD?±','',0,'?'),(_binary '0 Ë«&›À»‘Â´U\è‘','wp-content/plugins/wordfence/css/fullLog.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\É.i‹`«ƒÎ¾U\ç¹v',_binary '?õ>ü°?hôÎ¾[µÂ²\ïP\Øu{\Ûpuúa þ‰‹a','',0,'?'),(_binary '0¤\ç€\ÅE\00Œ‚X\ÏH','wp-includes/js/colorpicker.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm{ª†>l\ÉZ\ÂÕ¯šú',_binary '\Ë\Ý\'ñÛš\écè¦¯z+\å*\â\èS8\"‚\Ã [ðê·²;»','',0,'?'),(_binary '0­/I\ÚZöÖ£TŠðY¦\Û','wp-content/plugins/woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Abstract_Schema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦~?Xf¢3‰yNk™–',_binary 'º\æ(‚\É÷\"\'?cFz\Û6–.>’\É\éò/\ã¦S\Ð1x~','',0,'?'),(_binary '0\Ê\ß<“1´±,)I‰’!³','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/shared/hocs/with-product-data-context.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Øþ‘Ý¯¢k²\æ»\Ò(\é\í',_binary 'Ls6\Ó+¯þŠ([“ýš–4š({$\Ï\â=uô\0sˆ','',0,'?'),(_binary '0\ÎHs¹•C½°w®û\ì\â\à','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ß^ûq÷{û3\\\Ýg€',_binary 'NÓ®Nó˜Š\ÇAW¨uh‚ª#³\Ò\"8)\Õ\ëeM1\Â6','',0,'?'),(_binary '0\ÐdÛ¦ZP\Éø2ñ¾o\ëˆ','wp-content/plugins/wordfence/lib/menu_firewall_waf_options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\rL_C\Ú\Ì\îjÉ™®·ÈX',_binary ',òÞ°+R… ½Q—¦u¹”mm\â\Îø(e\ÉÐ…X‹{^','',0,'?'),(_binary '0\é\æÔ‡;DL©¡4','wp-content/plugins/woocommerce/src/Internal/Admin/Onboarding/OnboardingProducts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Û³\ëlo\Ð\åóS÷+‚',_binary '2dµI‘	Ú—7\n8\×e4Z½µ\Å\ë\Ý¹0D\Ï%\ä¦q','',0,'?'),(_binary '0\ëZ8O-\ê\ê^”Ÿ\nó\ìý','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/textarea/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Úi\Ò\ÍIÿ_¥W~„i3¹',_binary 'ý(<›}\âôšº\'C\í.{RMµ\Ô\Ø\'Ìª0ˆLûV','',0,'?'),(_binary '0\î\Õô\ÖE¬´÷\0X[“\Õ','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}‰–=\æ%ü¿“7\\\Ñ8V',_binary '©wH’p\í\é[\Þw¼2ž@u\Z£‰\"LH«·a6˜Q¦','',0,'?'),(_binary '0ú®>lfEZo´Ñ½\ãS','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-fee/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(ŒÄ«[k\×m8\ç±J\Þ\à(',_binary 'lKŒÑŒV4A{©\Ý¾A^~‰2—XE\çý}–¤\å\Å','',0,'?'),(_binary '0ûÁ\ï&ƒžóMºõUe2j','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›Ÿ\é\0Vp@,¿‚ñp',_binary 'møÑ¾O\Ù\'sJµ\"\Ê&…u7‘î‡”\ã»þJÎ´\Æ\Ï','',0,'?'),(_binary '0þ\È$X8F¡nÅƒký\î\Û','wp-includes/js/dist/vendor/wp-polyfill-dom-rect.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Õ„\Ü;vDù$:\ä~ÆŒÆ—',_binary '\îª\à\r\Ø\á|+\Ã\Ù\ÇmA\Þ\ÓIÀ¥\îO<(\Ä÷\ÔN½\r\Ïg','',0,'?'),(_binary '1@¡Ë§ó\È\"^\Ü\Ú\0','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/colorbox/border2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®þ7Ä¡\îP’“i%\Ò',_binary '–µ#º˜DA%\Ñ#vJ\Ë\É\ã“(?\í\îðT ­s0m+','',0,'?'),(_binary '13\Ü[¸\ï)=7.:w÷»','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings/shared/test/get-setting-with-coercion.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R!XpGŠ /`=8\Ò\é\Ã',_binary '®·l]·\êOG[\ê\Â-\à_¨\ÑÇ¼cŽ1B\æ`Á_¤®­','',0,'?'),(_binary '1‰Iª…Š¸\\*!b¸>','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/empty-cart-block/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿÀŽ¢·”&|1Zª\\&}®j',_binary 'x\Û\Í[\ï]8\Þ\Ø\Ð\á\ßJ‰ý;\â{…xr(šþ¥y,€','',0,'?'),(_binary '1½Y:ýs‚4\Õs\á(\æÌ˜','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library/thumb-up.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\è\âfh7½m6öww©Á·',_binary '-M\ä¾\ÙC‰a¾&{j¾Áþl…8¾HVf\ÌÁ\Ú1V˜','',0,'?'),(_binary '1-Àÿõ\îø\×g97¹\å\×','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/error_polyfill.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P°BÁ¢\ß.\î\×}\ÏF¬',_binary '‘¼c\Þ(±Œ¢¿k1ž†\í\áú\î•2‚Qw4û\Ê?0','',0,'?'),(_binary '1< ;R¹LG>\è*h[','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-heading/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é‡Ï¦¹^9xN\Ã7\ãl\Í',_binary '\Å\Í–yhB/¿~®¼†®\\«\ÖÇ‘‹ù\Ë\ètŽ\Ô:¦','',0,'?'),(_binary '1?oœxø\ç<\È?\é\Í\â6','wp-content/plugins/wordfence/views/blocking/option-bypass-redirect.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?v@½Y a\Øpv¹²Š',_binary 'pªš\æZÊ‡O\ä¦F\ïM\á\ß4\ÆV92\êQP¶þ\0ñ\ë¢\í\Ø','',0,'?'),(_binary '1A—\Û\Ü\ë,\ns¥”Šv','wp-content/themes/twentytwentyone/assets/sass/05-blocks/separator/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Õ°8Ñ.â°’Y\'!\Ó',_binary '\æ/\Ä[ªÁf	\ÇnU’Ÿ¤!79”8^94À\éŽú\Ä\ÙöM','',0,'?'),(_binary '1B¸\â?Á«›§R9U9ð','wp-content/plugins/woocommerce/assets/images/wpspin.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\á±\ä%j¢->\Z¢Q÷ƒ¾”',_binary '»\r\r¿]%\Z[…˜¹d–\È#6ù\àù`¡\Ð]:FZ','',0,'?'),(_binary '1Cï‚¨\éE\Û3\Äkò˜J','wp-content/themes/flatsome/inc/builder/shortcodes/message_box.php',0,_binary '\Ìz’\å¶\ÑA™cckg\å',_binary '\Ìz’\å¶\ÑA™cckg\å',_binary 's÷\Å{Y\Ë\êC^ §\Ý-@²´\ì\Å!\ÎTS[3\àu,”¢','',0,'?'),(_binary '1G¥PcÁðl€y\×\rž\âVû','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•<T‚•ñŒW<l0Óµ',_binary 'Û¡¦-öON~*úþ_\å£³Ž>´\îg\Þ<¡†\Óð¾','',0,'?'),(_binary '1N¡-Md™\ï¢\ÜD0ð\ç','wp-content/plugins/contact-form-7/modules/sendinblue/doi.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\ÝV\r•„aM‹\"ŽñšŠK',_binary 'Hg•ÿœ¿ªúDüM™\ï_øhH‰\ËÙˆÿ,iY\Éj©®','',0,'?'),(_binary '1U3;ŒšiüY¥‡D”pÿ','wp-content/themes/flatsome/assets/img/payment-icons/icon-payu.svg.php',0,_binary 'p¶|w•,\0(P\È[lý\ÄWa',_binary 'p¶|w•,\0(P\È[lý\ÄWa',_binary 'J\Ïp\Þ^¶*þ‚X¹eA\Î5‘\ï#üMi\'\\TB[','',0,'?'),(_binary '1^õ\ëBsCZU*ÿýMö>','wp-content/themes/twentytwenty/assets/fonts/inter/Inter-upright-var.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/o¯-ö6ˆ˜Ñ¥«p|',_binary 'ñ\Óò›¾ddô‰“^#QÒ’\Z\ì¾#q¦^™Æ“\ÈJ\íw\ç','',0,'?'),(_binary '1p=\èqló\Æfv«$¾wi\ß','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ö¤Ù¢júú@±›\nN­',_binary 'p\Év¶\Ð$ŽLòÎ‹­\Þ,*\æðÊ¸/\à\ã;øR\ÎË¥','',0,'?'),(_binary '1pŽR¥¥¾\'þ´Šb\×<','wp-content/plugins/woocommerce-multilingual/res/js/product-attributes.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚\ã¨)ÿô¸¤·X-#O',_binary '\èÿ[¡ø±3\Ä\Ñ#þü[Jþ\Ý0½´ŠÀtûn@ýz1ó›','',0,'?'),(_binary '1s¸)6ªÓ¶™•¯C§…Î—','wp-admin/user/admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\èT^\Ù1\î\ê\ã\àøAˆ|',_binary 'Y\à\ã%Õ´9‹\à\ÝN \×?\\v\\ažMþ¦´~Ý‹','',0,'?'),(_binary '1€3\r\rI†\îW²ø\\\Ø±','wp-content/themes/twentytwentyone/assets/sass/03-generic/breakpoints.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«ú(.C¼ˆ0õ¨\Ö<At',_binary 'Àß¬a\Â#§1Èª™\ë\àsù9\Æ\Ö;¿\0ežoHß‰T\à\í','',0,'?'),(_binary '1\É\æ7Y\ë\Ö5U\ã\äÅ§6','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ°d\î3Í®%.Y‡™„€',_binary '¼\n \Ê&<j\Ñ}J«ÌŒ\Üv¢‰n^w¨\ÓÁ¶\áo\Ë[','',0,'?'),(_binary '1\ä \Ì©\ër…fu4¸','wp-content/plugins/nextend-facebook-connect/providers/paypal/paypal.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£+Å¹BB‚\Âõ\Ê\Û\í÷K',_binary 'C­r!‚±üˆ‘ð¤v÷\Õ\'\×6\ÈÌ‘(\nø\Þ]ûeô','',0,'?'),(_binary '1‚€=„4V\nÁc°­Xik','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/add-to-cart-form/form-state/constants.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b:ci\ëF4ŠŠnª¨©\Ù',_binary 'Œtùx¨\à¼NOwš÷\rŠôÿ…¿ˆRgE51)¤','',0,'?'),(_binary '1„ˆd	\áµ9Z\ßqûoC','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/policies/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”qwù\0\È÷§Vy1[!\ä\Í.',_binary 'W\Äa;wm\å~ˆ˜ì˜ R¡\Åt\Éoþ\ïV„H\Ï>\Ú\Ém','',0,'?'),(_binary '1™°	:\Ý\îJ¯ú\å†øc±','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/jquery-ui/images/ui-icons_888888_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0Øƒ\í#_£û•5E%{ø',_binary '\Ýz07Xñ–I“\Ó0\Î%g\n6VaqDP‡<òÀÚ¤W\"ö','',0,'?'),(_binary '1Ÿ\ã I\íC„v\ë‚õ9','wp-content/plugins/woocommerce-multilingual/screenshot-4.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•PùÁ;0\ÞýÂŒú\ëEµ',_binary '•\0\Ëðù\ë”4´jZ\È>=qv\á=»AŠ”÷¬\é\n…','',0,'?'),(_binary '1 \0®ðk7$\"¸K\ä_½e','wp-content/plugins/woocommerce/vendor/maxmind-db/reader/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';ƒ\ï–8e_\ÈT\Ý\ÃÆ½W',_binary 'Ý¬\ïISôP\"õa•» 7JŒ6\çQSv„“ô_³y’','',0,'?'),(_binary '1£m[Z\nZi\ìN _|®','wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src/HtmlProcessor/CssToAttributeConverter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²\Êz”\Ù\Ø$@¨\"C2¬;',_binary 'm1#úg\ÄeLùRý•x\ÝrŸ“%r.Ì¹\Ðê™–\èX','',0,'?'),(_binary '1­\Ê\ØAðf7D0\ä ¯\r\é','wp-content/plugins/ti-woocommerce-wishlist/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ð™ .ƒ‹J5n>k«w.',_binary 'õŸ\ÏÞ2£”\êüD’l“<ˆ©\Ôhõ¸MZVk ','',0,'?'),(_binary '1¯B\ç\r˜w™bŒ²f\"','wp-content/plugins/woocommerce/includes/admin/views/html-notice-updating.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ¦-#\Ò´?4\Æ¸$à£®',_binary '\ïnNŠÔ·TW=x‘úk(W*L\ÝXˆ÷|>9\\¶\nú','',0,'?'),(_binary '1²\Å\Ìpa\Ò`H0ß¢\ìe','wp-includes/js/dist/url.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­;ô\'y/÷¨wó',_binary 'aË¦\ZUŽ@sWi’Ç“Îœd\ÙJz€M\Ý\Ë\ÒQjLžõ+','',0,'?'),(_binary '1·&(\Ä)\Õòõ_\"çµš3\Ï','wp-content/themes/flatsome/inc/admin/options/header/options-header-main.php',0,_binary '4ó5„±ôõ\\j\nß˜\Êl',_binary '4ó5„±ôõ\\j\nß˜\Êl',_binary 'L‚ò¾D³lH\Ï¨@hrb]ÁŸZ8\Ç`Yed\ÞËŸBW','',0,'?'),(_binary '1¹Û»Xo‚\â÷…«õ\Ðœ','wp-content/themes/flatsome/inc/builder/shortcodes/values/image-formats.php',0,_binary 'wü\Å\è5þ)Ò¦!$ª?)u›',_binary 'wü\Å\è5þ)Ò¦!$ª?)u›',_binary '\Ú>T¦¢®¥\rY™’#µh+\'Ò´c3+\ÖNmµW´','',0,'?'),(_binary '1\Ìs\Í}Þˆ=šd\Î\r\Å\0','wp-content/themes/flatsome/inc/shortcodes/messages.php',0,_binary '-§\íþœmUŸC¶3DŒj',_binary '-§\íþœmUŸC¶3DŒj',_binary '\Çµùuž=4\ß@jA´7¡\êüS¿\Äd¿³¥','',0,'?'),(_binary '1Ð‘Y\é\ã\Â4I^p\í','wp-includes/sodium_compat/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨`q8²2øG<A9\ZQñ',_binary ']\æT=ò…76uN&=8W<\á%Ÿ\ÄÀ\âö’\ï','',0,'?'),(_binary '1\×Ù‡\ÊÒ—\"R˜€\ã¼ý\"','wp-content/themes/twentytwenty/classes/class-twentytwenty-script-loader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ö,\Ê%*Òƒó\0g„k²ö',_binary '†\âÿô—-ú\æ‚i“üžµ¢:4Qkyú¿X/I\Ç\Èô','',0,'?'),(_binary '1\Ø\Õ;ƒ\'eQ\á\íS¯§¬\í','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/use-view-switcher.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ìÆ‡³\0¤ñ?¼Fe',_binary '‰•·øýû^Y‰•þ\ÛD\åIÀv+mZþk\0\Øòñ\à','',0,'?'),(_binary '1\ÜEfQ¤v#)ó\n\Ù0EkQ','wp-admin/images/media-button-image.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ø\Ìó¨¶øm¾	\'Š\è\æA',_binary 'iÄ·±\ãz[º¨ÿ\Ä/\"\Ì X“\é\Û{\Üoý\î—:†³','',0,'?'),(_binary '1\ßAÿ+¤m7£þ`\í–ö\â','wp-content/plugins/woocommerce/includes/class-wc-comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\ãj4±P	EcF/\ÊFÁý',_binary ';#û:¿vr‚¬„\Æu–\Ý\Ï)\Òf‘¦YQÎ…\âÙ”¨R','',0,'?'),(_binary '1\ëû)÷\ÎA¯§`7n\ê','wp-content/themes/flatsome/assets/img/payment-icons/icon-paybox.svg.php',0,_binary '$é¦š\\£zŽr;d\0¶',_binary '$é¦š\\£zŽr;d\0¶',_binary 'GHž\å,ôº(Š±¶ÿ‰@\ï1EÝ°®zð¿C¾8ô^„w@','',0,'?'),(_binary '1õ°\Åcù¤òBj!ú·ð-','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-shopping-button-block/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dH%aˆKÏó…¯\Ù<¯',_binary 'nd6¢úï¤‡š\nmO\Ø\Ëw%\Ðd¹¸˜\Ìz¨_(ŸQ\åZ','',0,'?'),(_binary '1öøSc^¤€\rcü\Ä^.g','wp-content/themes/flatsome/assets/img/payment-icons/icon-paypal.svg.php',0,_binary '7c[›¿}ô÷\ê,ULù]\×',_binary '7c[›¿}ô÷\ê,ULù]\×',_binary 'g“œ\Ù2“5\é\ÊÀ\å\ÄqPñY\Ì\Ê\à‘\Î\Ü\ÎÍ¾\ío“','',0,'?'),(_binary '1ù\ÎXŠ/²t60^Ò€!\Ü7','wp-includes/js/comment-reply.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÞJ„xJòL\Øõ¿Q\Øñ\Ü',_binary 'G¾Mëœ…\Ý8ps›\Íþ\Äj5þ‰8ó¦„–\\ú~','',0,'?'),(_binary '2J\Ùy*ªm\í±\ç½ø]W','wp-includes/js/dist/a11y.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–Fó.\ã\ä,|\å_Á¦”°¿4',_binary '“A\È\"´g“V£¨:¥›\êdÓ©E;¥F<VzD0±G','',0,'?'),(_binary '2ü³2\Õ*+{\Ì#f','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-generic.php',0,_binary '¹\É\\^	BJ\0d\Ï\Û\é\ä£\Éý',_binary '¹\É\\^	BJ\0d\Ï\Û\é\ä£\Éý',_binary '<`¶\épGª\Ñ0ƒ \×I\ÉB\ZÇ¦I_!w•=K™3\Úù?1','',0,'?'),(_binary '2\ÆO²fZ1m¼ªÎ”\ä','wp-content/themes/flatsome/assets/img/payment-icons/icon-vipps.svg.php',0,_binary 'uUcz¸…aa²w´ƒFEm',_binary 'uUcz¸…aa²w´ƒFEm',_binary '¦:ú€£_\âT½ø@.…\å}d°\Æc­¹Mù\Ë$\Åy#Š,]i','',0,'?'),(_binary '2b UŒ·\0\Î\Ôsõpd0\ß','wp-includes/js/clipboard.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\äaöd]‡.;ó\ÆW;',_binary 'zD‡!Xù\çs\ç\Ö)Ø‘€ƒ‡3ðl,ºšl\äQõCJrU','',0,'?'),(_binary '2\"0£¼–M|ƒ‹\"ü—/\n','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/filled-cart-block/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ë\Î¶@\0 ´\Ô;\â\Ä',_binary ']\ÒÓ‡—Yø“\Î\æ$[ÿ:Ä¯\ç%(/–?\Øc\Ñ|nK','',0,'?'),(_binary '2._\Å\ÖN\é~P\â³òtÒ´','wp-content/plugins/woocommerce-multilingual/res/js/wcml-messages.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·÷¤{;n!L\Èó6˜§Œw',_binary 'm\èõ%ÀyÂ +g£+¨‚40ˆ5²ûrB\ÆBrá² °-','',0,'?'),(_binary '2/:zð3;i\É:õˆoe','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/reviews-by-category/edit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™\Ë^\"9\0õ\ë\ÄÅ½)`s_',_binary '\Ç\ß\Â1§=n‡\áºM\æóþ0Wg\ÐR\Ú^\Úi¸•\0ª','',0,'?'),(_binary '24cÿôÿ´’ö$Ž&WjK','wp-content/themes/flatsome/template-parts/header/partials/element-wishlist.php',0,_binary '\Óy±d G\r53 \ç\ÖB!',_binary '\Óy±d G\r53 \ç\ÖB!',_binary '\ê<fi“H:ÿ†ˆË1Ýµt¸\Ëgðü~‘IþúÝ’\r','',0,'?'),(_binary '2=\0k6,\Þlûl4Í»\Ïq','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-number.php',0,_binary '‘½\ä‚D4¾ûK\Ñp;\×A°\å',_binary '‘½\ä‚D4¾ûK\Ñp;\×A°\å',_binary '\Éó[\Þw¶›#b>^û‘UA]_²»~j–\Í6OdÁÁL','',0,'?'),(_binary '2?|õ\ÝûhP[ve‚»+ˆK','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/save.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=¨\ËsHD\×\ç\Ý5t§¢Lm',_binary '¥=$kŠl9±«g…¯\â¥öƒ¦ÀG\Ç\ä\ß\Ä{¨a…\ÙD','',0,'?'),(_binary '2@\Üj\åj\0¡kÓ²”¡Ó˜','wp-admin/includes/template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•\ì,\æF6¬\äµž\Ç',_binary '4\ãW%r\î¼J\Ð\n\'©¡\àÔ‡)Pb‡¢\×TN','',0,'?'),(_binary '2C:€\Ð_—~\Ê1\å¼s\æ\â','wp-content/themes/flatsome/inc/admin/panel/sections/tab-support.php',0,_binary ':;V\é\Ç?4¤ œ\Ú\Ø\ís\êü',_binary ':;V\é\Ç?4¤ œ\Ú\Ø\ís\êü',_binary 'kŸ\Üû‰=C\á\Çt\Ñ(>òj\Ðsv¶=‹‰1K\áŽ&ø','',0,'?'),(_binary '2D›Š%‚Jž£\ß?­\Ñ\Z','wp-includes/js/dist/wordcount.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž{È¦Ar`\Ê{§´FŠFº¾',_binary 'o¸VF\èp¢\Û7\èh`\ê\èž\"Ç—\ãj™´Eûª=ñ','',0,'?'),(_binary '2H’øÏªøtY,¼-\0','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartSelectShippingRate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤\Ê\ÒJM zEóTuoBƒ]',_binary 'P\0\ÝTbwˆ\Ì/Ÿô»jQ2\Û<¿£\Åyé•·.\ÛBgÌŸ','',0,'?'),(_binary '2P3Vý\Ñ1®±’gX\ä§Ø™','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-package-product.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™wGû&r‚™‘«—ƒ',_binary 'L\ÜÝ¦&|ˆÇ“\ÕÀ#\ÔÚ˜]\"r\r‡u\Ð÷±\\^*a','',0,'?'),(_binary '2Y‹ \ì¾oq&®Z\çù¬','wp-includes/class-wp-block.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3 ¡\Ð-Ý½lo•\Éõ',_binary '	\Zk\Ø&Nc\åxn\ç-¯Èˆá“©·p‰\Ñ\Û5\r\nJ','',0,'?'),(_binary '2\\ôc©jþ\Ô\Î\ÃÚ¥}¡','wp-content/plugins/ti-woocommerce-wishlist/admin/settings/general.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ãù,W\Éz\ëFš\â*öµ3l',_binary '>\ÜBPHC4óiø·¾·Rdö\Ð~c˜\Ù\ë8ýƒM\Ò<i','',0,'?'),(_binary '2eüÆŸ\ìù\à@³Kó´<','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/with-transform-single-select-to-multiple-select.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å³\ìƒ\â†ƒ\Ý\Ç\äy¥¸+',_binary '®øþ\êü\ä}\Öü\é	\Ýh€ß´–3Rß¶#2¼®\Ú\×!\Úf','',0,'?'),(_binary '2gló¸bC\åd¾M`Hšü','wp-includes/css/dist/block-library/reset.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i¬fµõ\×³\Å\ê9Konb',_binary '/£=D—W.Eù´ôŒD¼	­9&·Q‡ L\Ëñ','',0,'?'),(_binary '2jÿL,\Ã\Ù\ÞW\rº®W$›\é','wp-admin/css/colors/sunrise/colors-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹x!³¡OÀJ¬\Ð÷G‘',_binary '\Ûy2¥\'	·mÿ)¢ô9òLhd\Ñ32\æ\Å¨«\"n	','',0,'?'),(_binary '2o„o\æð_ŸVÈµŠa','wp-content/plugins/woocommerce-multilingual/res/js/wcml-translation-editor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\á+b\ã˜\Æ:¶\Ñ\è7nñ\Ü\Å',_binary '·¿\Â\Úm\Øh1|¦\Õ2½m¼¢\Êu°\r\æð\ÏøXgô²','',0,'?'),(_binary '2r}\ÜV\áÄ¥$^¥‹‰n/','wp-content/plugins/wordfence/css/images/ui-icons_777777_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h…^n=(Š±&¡ñÝ‚¶N&',_binary 'S²óDIBÿz\Ñ_-?(Y\Î\ãpE¥yûÆ¹A¡','',0,'?'),(_binary '2|F•\á„/`¶/Ò¨,','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yit-plugin-panel.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ño&\ÂtE/L\Ãð¨Án&Ž¤',_binary ']0»Ôº‹Sl\ï*¢\ÓÁ‰¨.þXP¯mI	Q=„ó!c','',0,'?'),(_binary '2„÷\Äý\Ùl>xf\ÞC\Ó3','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ProcessWireInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¶8õ/¿*<¤ŠZm°°XŒR',_binary 'KýŠ,\ÛU‚\ç\\y$\Í\ê\á\î\Ã&\Ð4ü:ö£ƒ\ÓÄ†ð','',0,'?'),(_binary '2ˆ»\Ð!C|\è²R4µØ¶¶J','wp-includes/blocks/paragraph/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬’=IÿePsnW•hú7',_binary 'i¬V®‹´B\×q!Ç–_-›ü\Ò¥ž\'S\Ìòˆ\ç\ç','',0,'?'),(_binary '2–³k{\Ýì†„E\âx','wp-content/plugins/woocommerce/legacy/js/jquery-flot/jquery.flot.time.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WDùó«í¨—–5øz‰)I',_binary '$ÀÄ„\Å@¼Š¡yUN£R^1g\Êy÷´?Q\Ò\ìL™-\Ów','',0,'?'),(_binary '2—\Õ\àÏ¿ð\\\à$I4ü¡','wp-content/themes/flatsome/inc/admin/options/pages/options-page-meta.php',0,_binary '\ï÷»ß²”z·›™BCCZP',_binary '\ï÷»ß²”z·›™BCCZP',_binary 'OY/mµ\Ä\ÖÒ“ˆqÌ±?§È¤Hj\ì\í\èý¨\Ùf”,','',0,'?'),(_binary '2ú\è\í#À18÷ÿ´ñðs','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTemplatesController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€~\Ì-RB¶Mõ\è\íÕ°',_binary '¤¨¡\á\ë\0È²d\æ_\Ô-\Ç\\°N0\'¯¬Q‹\\Àþ\í&\r','',0,'?'),(_binary '2žM½†â‰¦I„‡\ãHP','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/collections/constants.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é§ó\Ë\r\Ös¦i{ðb¼9',_binary ')>½ûû+…\ÕÄ±¢zkD…yTi\Ó\ÂG ƒ','',0,'?'),(_binary '2ª|¸Î¢(á»§tŒðT©\é','wp-admin/privacy-policy-guide.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6½\ï‚Íš\Ýc\Ö}t–\â‚r\æ',_binary '&r½B\ÑO†Ë˜¾€)D]j…\î—û\ê\ï\Ö\Ýwj\â«hG','',0,'?'),(_binary '2­KW)p[À}Õ—‡\í\"t','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-billing-address-block/attributes.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"R\È\Í\Ïö‘p’\ê¸\è}',_binary '\Ý\ÜRX¾¨6½\Ä	,\Ý\åf\Þ0¤Û¨H\ë\Ô˜	\0õv','',0,'?'),(_binary '2¯\åãº¨a|F–l3]ö','wp-includes/customize/class-wp-customize-new-menu-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œ	™sL2/€B¤Á–¥£',_binary 'H\'\Ûs¨Ó½…Š\å\ãI\Ø$º\èÓ¦ðÍ¤X!š','',0,'?'),(_binary '2´v–­\'³\Í9\r\Ã\èz','wp-content/plugins/wordfence/css/images/ui-icons_555555_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p¢\ÔbD\î@pýG+\×±',_binary '*DZ\Í>ùBgñ&Y‰Yˆ›þ„Ž\â¨4(<¨/','',0,'?'),(_binary '2¶Vþy|NóÒ›\ÔV\è}ð','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-report-reviews-totals-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'û½°Rñ\Ì/\Ê#!†\Ó\ã|}',_binary 'mXb‘¬·ÍŒ±!g\Ê4Liý\â¢iƒ)snòÀ,\ÐE3p‘','',0,'?'),(_binary '2Ä£­ˆ_½D\ã”xˆ“¤','wp-content/plugins/wordfence/views/common/block-navigation-option.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O³\Âøý\Îª~˜}t.\ïK',_binary 'MªN„³\ë¦›¥š‘F`\r9÷ö Ó«\ërPô²,Q','',0,'?'),(_binary '2\Åf¢\ÌbG‚þ¿´\å\ç{\Ð','wp-content/themes/flatsome/inc/admin/customizer/img/blog-single-top.svg',0,_binary 'EÎ°Duf\Í\êI\æZPQw±',_binary 'EÎ°Duf\Í\êI\æZPQw±',_binary 'ûô›\ï¥dlrz\' \ÎZ<\Ç\Zø.\çÿT^6ˆA\îª\á','',0,'?'),(_binary '2\È÷¿6Èšuü»Ñ¿.G`','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/checkout-state/types.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$ð\í[_¼\Z:q\ãð\ë',_binary '|ž12¤f—\éúŽ\05ÿ±\äøgù\'F\Õ9Œª','',0,'?'),(_binary '2\Û\ÂZsƒŒ+z•ð','wp-includes/css/dist/block-directory/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vx…X±¾\Ïù=ADwPn',_binary '\îE•>.Ec\Ò\ÌÿøŠ\ëÿ•\'ÿ\ÞÎ¬sÒ­Rµ¥:','',0,'?'),(_binary '2Þ£ú¸B\Z\ËEB¤>\ã','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/css/global-admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\ÌI\ÕY•œ$=\ï\ný\âQ',_binary '\ãP’Sr1:ÿ\å{]­\çe\æ*k¨\ÈM3\î¯ø·Ð±P¯','',0,'?'),(_binary '2\ê0mKš:rÂ²\\0\nB\Ù','wp-content/plugins/wordfence/views/options/option-toggled-boolean-switch.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x—£±9/½¢Z“hò6¹\n',_binary 'óþJ<<¢ö¾x?°#òþoü²†º‚Jn8²:jù„','',0,'?'),(_binary '2ð\ì^(ÁúÊ­\à-^x½¯','wp-includes/SimplePie/Enclosure.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'RŒ£¾\ã\'\ÝG\ë»ko\Ã',_binary 'Z:\Þ\rœ}n\êZò`ötj\Ñ!L²l²	{ô\ç\çbg\Ùú','',0,'?'),(_binary '2ó¬ã˜™7\å%\á½\Ñ9†‰','wp-content/themes/flatsome/assets/img/payment-icons/icon-creditcard.svg.php',0,_binary '»þ\"½0¦º§\ã„\æ\âG1',_binary '»þ\"½0¦º§\ã„\æ\âG1',_binary '±£\íj\0Fœ/ö\ÐÁ\àó\0\àš§¬Üi\è\Ü\ê\Öú\Óm\Èc-','',0,'?'),(_binary '2ôp+«¸;Y™ µ¿;q','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/fees/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\Ç\×ùµ1ltÙ²±l¯zs',_binary '4C††¥(~\'t­­:\Ë~8ˆZEÃ®öÕ´\Û\Ìý\î','',0,'?'),(_binary '2÷st[VmM¢€£Ò´²R','wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-tr_TR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç5M²Õ\Ð\nŠÀ/4amÿ',_binary '‰Ž³^\Ã~¬\r}1\çk\ÜA\Î%ôÑ£¢]GEI','',0,'?'),(_binary '3\0…&\r‡«>es?¼Ð‡^','wp-content/plugins/ti-woocommerce-wishlist/public/wishlistcounter.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£	\ì›‚b\n\'‡:ZI‘Á',_binary 'ö¯<,up\Å{*køŠ,j7\Ö\ã;PøÏˆ\ì®\'\ç\çñ','',0,'?'),(_binary '37&óeŽ/\ë3R®','wp-content/themes/flatsome/inc/admin/options/header/img/header-wide-center-plain.svg',0,_binary '4`»gŸ„¹O\Ì@ö¼\ÔAž\n',_binary '4`»gŸ„¹O\Ì@ö¼\ÔAž\n',_binary 'øYS”Ý®SCÀ\ÐB‘¨\çó£”€½\ÞW\ß>¬ô0n<0','',0,'?'),(_binary '3eUþ\Ê@;­`¶ñ½O','wp-content/plugins/woocommerce/includes/gateways/cod/class-wc-gateway-cod.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÈJmÀCBB$ðjÔžù',_binary '|0BÇ¿ ¸¤‘Tÿ\\\é©\ç»V¸ú¼E\âp¬¬A','',0,'?'),(_binary '3\ã_\î#ÿ´Ó·N>XE\×','wp-content/themes/flatsome/inc/admin/customizer/img/category-box-badge.svg',0,_binary '`;W?k³\'°½\0£\Ð',_binary '`;W?k³\'°½\0£\Ð',_binary 'y‹\Ä\Ý\r%\Ù5B\Ä\Åh!Žó1\á\ÕWC\éº\äý\ßZm','',0,'?'),(_binary '3&C%¥\î03„ú¬Iöëª¿','wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/afterpay.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷<WA6\'^¹m&„•þ\î',_binary 'ý\Ó\Ì?÷g,O\Îe5J|[µUN­B˜uò&+\"—;‰“','',0,'?'),(_binary '3+zÀÿ.†±‚6Q~]y[','wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ß#ÀR?¸\"ô»`\Ü$`',_binary '!	\ÅnžÂ‚óÅ›U7B©\ê5gr\ï…	1\å*;R\Ð','',0,'?'),(_binary '3C™\Ô&ý + K\×\rX\Ø:','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/combobox/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#Qt\è½}l\Ö:c',_binary '%%?ÁFý›]¶·>\Û^|^ q“ó\Ú8­\æ¾qþMü\ßþ\Æ\Î','',0,'?'),(_binary '3E\×4\æ±\rüo\Þ\Üx®','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-items-block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '44.u¤`;Ya\å¨',_binary '\È\Â?Æ£Š\"wa\Í$K ñ2vñ¢4²)¨D\æ	\ãSt“\Ñ','',0,'?'),(_binary '3P²•\æ;ª¸ž|v','wp-content/plugins/yith-woocommerce-wishlist/templates/add-to-wishlist-browse.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6>v][\Âü\Ê\Ì?\ì\Èk',_binary '\Ê’“\Õ\ÊŽb\Õ	û²HU\Þ6Yƒ)‹@Pó)„','',0,'?'),(_binary '3_ð¼¤óoŽ\ÞIŒˆ¡¿','wp-content/themes/flatsome/inc/builder/shortcodes/accordion.php',0,_binary 'Ys\ËºÀ.¶,óµ',_binary 'Ys\ËºÀ.¶,óµ',_binary '¸¿mök \'M\èðfºµ#%5x \r\Ñ\Ëý³yD\'\×','',0,'?'),(_binary '3fŽƒS/~\ÆsO¬\Ð\Î','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-fee/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}ø\Ý9L kj$<Ws3¼o£',_binary 'ux\Õg5Yô\nµ¶÷%\Õ\ÊÚ\Ù\Å×©¦\Èö\ä	\Çb','',0,'?'),(_binary '3h\è¦\Â\"I+[§E','wp-includes/js/clipboard.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G]»’n¥ma‰\ÐsÄ«\Ò',_binary '¾™o~\ÃS«$\ÃÀ	L\Ø\ÆÞ®\'¦2¦¯ õlžr','',0,'?'),(_binary '3h£~£Bÿ* ¢BNó\Ä','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/AutoloadGenerator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't•\Z·v¬gc1\r‚&iò^µ',_binary 'rcª´‚µö\Éx?B}¹ÿnŠ‹\ä\É4þ€A•šz›™','',0,'?'),(_binary '3k­¨oW‘5	k[mq','wp-admin/includes/continents-cities.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pg\Z*­§š\ëZ°\0H4|‰',_binary '¢‹\Ír}\n\é‘w‹u\ÔZ–2õ}KXÁ“\ä/”î±¾´','',0,'?'),(_binary '3pƒ½\ã\\\Â8ŽlD¦q','wp-includes/sodium_compat/namespaced/Core/Util.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';ó*·kLwB£\æd\Ý=',_binary 'ec[d”M?H\Ó|\ÞKYž\04‹°@˜ QAŒ›:FF \ï','',0,'?'),(_binary '3z\'‚O\ï“\á§vþJ&ÿó ','wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´—M\è¦ûó‡ü\Ú=b4s¨',_binary 'Ó›l?=£L»þüy»Ñ‰4¢™m`“\Û1X¢ô½\È','',0,'?'),(_binary '3…\Ùô\ÔÅ¶x9‡7KØ¯','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-category/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ü\í\Ð\ÙP\ØmBE¸·\Ùi@˜',_binary '·‡\Øe7––œ\ÏCÚ†›yÌ‰j’\Ëÿ:Ÿd','',0,'?'),(_binary '3‘8±);*FŠ\é\í\ÆT]','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/text-input/text-input.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ–öE\n\Ì&\è£\nh\êŽ\ï\é6',_binary '\ëðo\î6\ë\ÏÂ´¦|è”°¤\Õm¯‘Ö2\Ãr\æn˜¶J','',0,'?'),(_binary '3‘‹A“\Î\Ì\Í\Â}\Ê\äx²','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CheckoutSchema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'úH½°\æf-1\\^SHP2<',_binary 'ù‘­e‹yfó¼$_\n?h\Ø!¯%«,\ákz\ê\ß>a)1\Øó','',0,'?'),(_binary '3›]`d\Ì _#ü&‘','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-orders-v1-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ó™¸\ÜUýot†f\"\Ù ',_binary '½Gd†’¢ö_B\r)\"ÿ\Ñ´J0³h¥\0]šCcþ|','',0,'?'),(_binary '3›¢JÎ‘Tg›0\ëµ\'e','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/Common.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`4„\Â\ÚuB\nE\Ô#@ºW',_binary ')róxUYJö;hpjH{\\½\Ý¼š1\'#\É\ã s«','',0,'?'),(_binary '3­\0‡›4\ß\ïð{±€±†¥\Ö','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-item-meta.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' unO\æÞ„ó\à\Ê©\\z',_binary 'Q\ã\0g7\Ä\\„¶[2{_\Ð(I½%«÷	\í\Ã\âç±Ž?o','',0,'?'),(_binary '3¯\ÊÞ \Ñ\ÝF\ç?\ÄúE<8','wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-addons-category-nav.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ã\ã ;E\Ü,²‚¡I fu',_binary 'þ¤Qc’³ôuö\Ë\"\Ê\Ð\æýzö‘$qª¬¸¬¡.\É','',0,'?'),(_binary '3´M\×JQN\àe“­\Ø\ZDq','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/tag-list/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­ónnj\Å„“8µN¥€',_binary '¢\ï\çû¡6IZ\Ä9j\Ôwª·Žö\ç\n%,#f7H›sA¯È¯','',0,'?'),(_binary '3º~\ÕBbu]¨Ÿ7>DX','wp-content/plugins/woocommerce/client/admin/config/core.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' õ+Z¥1›rËº82®5†',_binary 'MWC£!Ø¸d\æ¿TµUsZ@³$1æ¯¢q\Ï\íù\Z„g','',0,'?'),(_binary '3¾†Ï¿¢Ys_—LûSò¤­','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-sku.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…\Ù	ª\ÎN_g÷k¼¹¢C',_binary 'ŸC$—\Õrjò(4\Z”ˆ\Ã[\ë-€V#^-…z½ŠþŸ','',0,'?'),(_binary '3\Ãûq/‘–ˆž¾\Ô\Â÷(D','wp-content/themes/flatsome/inc/shortcodes/share_follow.php',0,_binary '×·´}ªu:m¬¸ù®º~ð',_binary '×·´}ªu:m¬¸ù®º~ð',_binary '\Ý\í§©ý‡ ¯·ü\âA<_/	!›SŠö1Š.‚','',0,'?'),(_binary '3Ñ™¡‰\ÒË£ð_j\ç\å*[','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/simple-white.svg',0,_binary '\ä*f*—@\0)OE\á\â§L',_binary '\ä*f*—@\0)OE\á\â§L',_binary 'Œ\Å\ÉÓ´JŸ¶dHùm¡k-=›ÿ3%!\ìûÀý\ÜÑžMˆ','',0,'?'),(_binary '3\Ò\×T3\Î\å~ˆe”\ëòN\Ê','wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/class-autoloader-locator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹\ç7–‰MRC(Á‘IZ„',_binary 'ÿþ*rõ\æÞ¢o}¸k=Qª©\Z\×\',@j;:\á\nŽ\ïw','',0,'?'),(_binary '3\Ù\æ“°@n£¦\ë˜KEº','wp-content/plugins/woocommerce/includes/class-wc-checkout.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z¼É´-óGZ\ëe›\Ò\é€',_binary '[£+EGñ(U¸·&-.\Ñh\Ñ?f\Ýt \êÇ§\\ù\Ím','',0,'?'),(_binary '3\Û\Õ\é\'º°ÁRKšBfý','wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'QO1ÿ/<™>%\"\ÚX\Ü\à',_binary '†6\érŸ*¼IY\0C¬9<ó“©\àÿJÚ– J*\ÝxD','',0,'?'),(_binary '3\â\ÉfQ3\àhð5[À£W¹<','wp-includes/Text/Diff/Renderer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ü‡ \ßC0µY7O\Ü@\ÙGS',_binary 'EWj\á+\å\ãµ\\\â\Ý=\Ñð’\É}.÷Á1\r´ö|','',0,'?'),(_binary '3\å\ä°\Ôà¤”O\ì5(\ß','wp-includes/theme.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ûf<s\Òk–jhæ¤†\ß{\ë',_binary '…ƒ\ÈûŠ”ÅˆjC$w¸:;\Ãx[\Í\Éu\ìR¹Ÿ‚vó','',0,'?'),(_binary '3\ë6#¤£\Úa!´TÞŠ³ü','wp-content/themes/flatsome/inc/builder/shortcodes/templates/ux_banner_grid.html',0,_binary '>\ÏX\Zm!A\Øþ\î\È1',_binary '>\ÏX\Zm!A\Øþ\î\È1',_binary '\Ç&¾®\Ï\Z\à×´½ËºdðžAób\êJþ4ÿ\ÙÇ‡òkb','',0,'?'),(_binary '3\ï£ng\0¤¿\\\0	ñW','wp-includes/IXR/class-IXR-value.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’fû>¨5l\Íøj\0f\è',_binary '¾?hœ\åø¬²Í‡ X¯\ØUP\ËO|H$‰1¿¸ž','',0,'?'),(_binary '3ô®\ë“s(•Z?L\Òr°»\Ê','wp-content/plugins/nextend-facebook-connect/admin/templates/settings/buddypress.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'À¸¡\ÍÀ\"V‰‚\ÏÑ½-\Ú%',_binary 'Õ¤\Ä\ØM™ýõŸ\Ë\È\Û¢$\ÚX^BŠ\í5Rõ]F\ÛÀ','',0,'?'),(_binary '3÷\å\Ä\áT \é„3B™ù“','wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks/Purchase.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì°þ¶R\ç#\\\r¯°2\ã\Ë',_binary '…GË‘\êZoW\Õïµ1\ä\ÇK=\ÎV™f˜):\Û','',0,'?'),(_binary '4\n‘”	m‡]Ä¿±ÐŠŠ\Ì','wp-content/plugins/wordfence/views/scanner/issue-easyPassword.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\ï«ó¼{\\\Å d\ä\Â\ã\Ý` ',_binary '\ç•\ë³Ç¿\'\äÉœ¬LÒª¥B> \Ýñ	&-¥{…','',0,'?'),(_binary '4\í L\ÈZ_o…P³aW¹','wp-content/themes/flatsome/inc/builder/shortcodes/ux_bestseller_products.php',0,_binary 'z›fVW@E\å/‹l¤*',_binary 'z›fVW@E\å/‹l¤*',_binary '#{\Ã7\ë1\r¨?z\áüBú‰\å<f\Î5ðŒEÇ³ƒ©\Ëý{','',0,'?'),(_binary '4\×31@¿*r\ë\Ø\Ó\Ã÷²8','wp-includes/sodium_compat/namespaced/Core/Curve25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'òÅ›ñL\å\\óPÚœ\ÊU',_binary 'c>\Ñ5¨o“»Ž½\Ð\ïð½ƒ°_°T9“L~;²e7\Ü','',0,'?'),(_binary '4-d:\ãz´\ç/gf','wp-content/plugins/yith-woocommerce-wishlist/assets/images/wpspin_light.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÝNm\Òh§\äÁ\Å;\Z@’\Ý',_binary 'm5¢ªˆ^Ã­%\Ånø4<E\"kø€Xz\ÑÓ§\Õ=ö','',0,'?'),(_binary '4\Æ:…‘>Àµ°I4\á\Út','wp-content/plugins/nextend-facebook-connect/providers/tiktok/tiktok.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K4F\ÆGy¶wÈ˜',_binary '€\Êý•ûg·ÆŒ\Ù6Q¬­¯.`<•—G@å»Šd}yW','',0,'?'),(_binary '4\'†–þú“ˆùöe±ˆ\Ñ','wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/layout/_grid.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ä\ê ;R!·º\Ïh7jÀ&j',_binary '`P†0¢¬£\Z\Ûö\Ó{:.\ä}µ·q\Ãw{‚¨ò','',0,'?'),(_binary '48²Vt\Ôºš+^Xô','wp-includes/pomo/mo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ö\Ã\Ã\Ò\Þ=T,£Š',_binary '­¦º¤h¡\Û2›57›®Ö¼hµ\Þ\ïm¤Á\è”\Z0þ‘d','',0,'?'),(_binary '4;`ß¯zŽ?	\Å{Çž@','wp-content/plugins/wordfence/images/2fa-whole.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ü\ÑhÂ»ñ\ß\Þ\Ä$\ZPfX²',_binary '÷ÆªÉ\Ø\Ó\å\ËU[Z~·\Ï^\Ød\'\àX\èÙ®\Ö\Ê\Û','',0,'?'),(_binary '4AIŽn09ˆ†7c`','wp-includes/js/tinymce/utils/validate.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'CL\Â1?o+;„øû{Y†',_binary 'k»H\ã\Æ;\Æ\0•kC\Ôs±	\'K\Ø#45+eE|ž\ë\Ü0','',0,'?'),(_binary '4Jf\æ«5C>ºÅšóR','wp-content/plugins/woocommerce/assets/js/frontend/single-product.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×\Z\ëk5\íx²]Isœ²)ž',_binary '\Æwc\à…s˜¨}M¹§[,]\ç’\Ý1°\Ð=Q°\àzW','',0,'?'),(_binary '4J\ßZ\n c\ê\Ý\Û1>—c ','wp-content/themes/flatsome/assets/img/payment-icons/icon-kbc.svg.php',0,_binary '¥5f\ÒF›lž¶\×d´hð',_binary '¥5f\ÒF›lž¶\×d´hð',_binary ',˜)K~•÷R}\æz€\ÅRs¼^\ßvIC¢­\'O{û','',0,'?'),(_binary '4Nñ°F XÉ†V=±2\"','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/buy-url/class-otgs-installer-buy-url-hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ¼Wód•\"8À£C\"\Í	Ô§',_binary '§OÝ¢W\à´\ÉÀ\É\Ïðö‚UgðÍ2Ã“iŠ&Ô«','',0,'?'),(_binary '4PÐº09¨\×\Ø\Z¼öû','wp-content/plugins/woocommerce/assets/fonts/star.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\\¿`|Uª2ý€ž±\'',_binary '#£1\×9#\Â~ú˜þ \ïù“C9˜¯‰¥DÐµ\ÄeH','',0,'?'),(_binary '4To®\â‚iEø\åt‹','wp-content/plugins/wordfence/views/blocking/options-group-advanced-country.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7ös\r>J™»(¡œ€E\Í',_binary '\ÓK°¦úõ(wœ²B$¦\r¤s«®ì¤‡!üà¨¿¨\ËD','',0,'?'),(_binary '4a\äþ[Iº}\ç\Ø\ÜHÿm)','wp-admin/css/deprecated-media.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>¯y…\ÂZ\ç—õñJ\ßYn>',_binary '©‘‘t2\ÍnP…:5§œ\Ì$O­3òûª\Ã\r°¸«Ÿ','',0,'?'),(_binary '4cØ³uºÀN(*\èqó²J9','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-fa_IR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|}v\Ü-´¶§^v™`Å¡G',_binary 'R°—Es§×º-kM\æ@”*O“õš¹a»–ºûÒ£\r\n','',0,'?'),(_binary '4pF´\êœz©,û6\ÑXd','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-sv_SE.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&4-.\0-( \íþ6\\Ì«\Ð',_binary 'µü+:#?\ÖF\×T;Œ\ìÀ·¬}B°F-)Ÿ,ðšiªý','',0,'?'),(_binary '4t\×±ú\èg\\\Ç\\8Mpö€','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/KnownInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H.(»¯°ýN7\×\ë\r',_binary '_¦©ý¸ÿ\Ü›Gd„11g Y—”1~ú¦>B$t\ÛðªX´','',0,'?'),(_binary '4wÒ—¦Á\Åw°k	UÏ‹ú:','wp-content/plugins/woocommerce/src/Admin/DateTimeProvider/CurrentDateTimeProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚Qí˜´¥c\Âs¥ýl]sb',_binary '6¬f­PF\í½>³¨Cs)°bŒ\ä|“h\Ú\à\Éû:\r&vjM','',0,'?'),(_binary '4}J\Ü\åRf<\ï#^ ','wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-es_ES.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4:\Ä\ê‘O\ì\Õ\à>\Ä@\Ýe',_binary '\nò˜l¥\Ñbü)),~\"\Ø\Æ\ßòMM$\'QŽA¤óW£­\Ë{.','',0,'?'),(_binary '4„\ã\Å9\ê7±\ÊTb„‡~~','wp-content/themes/twentynineteen/js/touch-keyboard-navigation.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j{;74üj=\ÝL\É\Þ\Õ\â',_binary 'Ñ¹úT)¸œfº-Dõ/kFbü\îy\Øó¡\àù\ÎH‰','',0,'?'),(_binary '4qEyVS/ô\Ìo}˜','wp-includes/blocks/tag-cloud/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'žuo\ïmñŠBp\ZøD†\á\×',_binary 'p9/PaÆ…‘QDÿb¢–ŒÞ‹IÇº®6\\4—\0´!','',0,'?'),(_binary '4Öº¤\ÅO\ÜC~ËŠ´˜²	','wp-content/themes/flatsome/inc/builder/shortcodes/testimonial.php',0,_binary 'B\n:\0\æe\Ö\Ø=a\î>|',_binary 'B\n:\0\æe\Ö\Ø=a\î>|',_binary '»n¨Å§·X\Ô.¶4W¸¯C¢¡¡n8!\Õ\\ø†V*Ž','',0,'?'),(_binary '4•xTvú\×n¤Õ“9†[$','wp-content/themes/flatsome/inc/admin/kirki/upgrade-notifications.php',0,_binary '\Ñò/zÙ½DZŠð\Üþz\æ',_binary '\Ñò/zÙ½DZŠð\Üþz\æ',_binary 'c!T÷†«ù8ó­/¾‰ô$¤5·S¨H­[¬®ú','',0,'?'),(_binary '4—“P\íBI`a&ª!y\â!‡','wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-pointer-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4JÀþ\ÙÁ»ÁOÿIÚ¶“',_binary '+[«p]»n²€€{?ºðô \ÛDp\×bZˆæ®¨','',0,'?'),(_binary '4™Mz¸ú\ëß¥´1\0:¾˜Z','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/stock-indicator/constants.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y©g´›\×¨)K*\à%_›º',_binary '\Ø)™\"2\Ù.˜GÀ\Òq\ÇÑ§¶k\0\çNžø‘¸\Å0\É','',0,'?'),(_binary '4ž\ÍN©\ä³CgfbN\ÅÆƒ·','wp-content/plugins/woocommerce/assets/client/admin/app/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\æ¤K†d>\Ü·‚\å’',_binary '‰\å“7¢n(\îO}{WÏ“ˆ«\n\Ú.\í\Þ\Ø\Þ\'ýði’\Þ\ã','',0,'?'),(_binary '4¡SM\ÎT\æ”\\¡Ÿ–‡€','wp-content/plugins/yith-woocommerce-compare/assets/images/05.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SŽ\á“u[\nw¯½ESü\Ñ',_binary '[œ›I<xÔ„o9ÿ›0	^w–ª~»	‰g´ø\ï`¦•','',0,'?'),(_binary '4¦Y…šf\Õ&ƒ~\Ô\àV£‹','wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/core/stylesheetwaiter.js',0,_binary 'ióM\à-\r‚m3\ï\ÓQr\'”',_binary 'ióM\à-\r‚m3\ï\ÓQr\'”',_binary '¸\nz\é•\Ìò\ã\ÏV\ÕnA{ô«‹tG´Œ\Æ´¿·\ß\çg','',0,'?'),(_binary '4§/ˆ„\Êw\ä\ê\é¦$›J','wp-content/themes/flatsome/woocommerce/single-product/filter-button.php',0,_binary '3“Š¶\Ðô‚œ;Ÿ£\ì\Îóa',_binary '3“Š¶\Ðô‚œ;Ÿ£\ì\Îóa',_binary 'RiO¶ S§›L\Ãû¢\Ç>©?? \Õ\ÙP\Æ,IÝ\ÙD','',0,'?'),(_binary '4¨.£q²%À\äÁ6œió‘','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/Products.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"›<¶ó\ß\ä\ÆÕŸÀ)',_binary 'V\çxeF\Íe61\ëVRð\êû;‰\Ño\à¸¤\ÙdL\Ù','',0,'?'),(_binary '4µ§\ØX.-Ó²Ÿ\êµ\nAJ','wp-content/plugins/wordfence/languages/wordfence.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\å%zÕ¾`W® fŒ\Êyó',_binary 'E;L>ÞŽ|à£œxè˜±y~“}§õ9gM\Ë','',0,'?'),(_binary '4\Ð0G¼\Ô\ÙG?Ý‘\ÊDñ\í','wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-gray-background.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\Z4\ãfú“Jõ§\'i\ï&',_binary 'ú7»’\\%G—8%*\'\Ì\'\êõ2\Ö?\ÃBDExel²?4\Í','',0,'?'),(_binary '4\×˜\Í\æPk{ñ\ê[iv','wp-content/plugins/woocommerce/legacy/js/jquery-payment/jquery.payment.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ôõyŽ`.\Èu\"Lÿrµš',_binary 'Cµ°\ëlª¤¯\è\å\ï\ÚhxCq\ÐBŒTV#\èƒ>@°N ','',0,'?'),(_binary '4Ú‚œ\ÙL$¼,K[œu\Ì\â„','xmlrpc.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'üA\Ü8\nP*a|/Ù³K',_binary 'XdB\íc\0§‘\Ü2­˜Ã­¨c\ä„\çüg®ªÀ£š\è\È','',0,'?'),(_binary '4Ûž„ÑšlO©\ÛðU1¶¸0','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-guards/null.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÝC4RÊ¦\rf[;{\Þ\Éz¿',_binary '9gð®t§{\Ðø9«‡u›\Z”fš2õ:QhúªØ°«l\Õ','',0,'?'),(_binary '4ý\ä\Öh#G~ Š®J\Û4 ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/title/test/block.test.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\Ý+hz‘¤;\Ô\Ã\ìò¿_\Æ\è',_binary 'õeû\Ì\à“¶hC\n¦_\Ù 0õ>+‰öVDei\ãsª\Ü\Ä','',0,'?'),(_binary '5ŽKW8\Æ/\à\â÷\à1\ì','wp-content/themes/flatsome/inc/admin/customizer/img/badge-circle-inside.svg',0,_binary ')qG0:\ß]emhÜ€˜\ì',_binary ')qG0:\ß]emhÜ€˜\ì',_binary 'ÛŠQA¬÷\Ú_\ê\n\Ä\ÇÌ¥#t.€_\â\à|ažSM\çƒ*','',0,'?'),(_binary '54\Ü\ÆÁZ\â£Ê—ƒHJ','wp-includes/blocks/rss/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0^<Ú¸F9ðgÕ¸É­',_binary 'l:±a+\â\å2•\×\0M1\Õ\ÙÒ»u‰üý%^\â\ã­\åM0','',0,'?'),(_binary '5ž\à[wGo¬\Ì\Â=-º','wp-content/themes/flatsome/inc/admin/customizer/img/logo-left.svg',0,_binary 'AvuN±P£\î`©j\Ù\Ã',_binary 'AvuN±P£\î`©j\Ù\Ã',_binary '\î	rg\Ý%P{Jdgz¹\Ú}7 œ¾$\Ýk\Ó\áZŽ\Õ~L','',0,'?'),(_binary '5V9FX36<v\í\Û','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œ^wr\êf¯?\ê\à\nò\Äe',_binary 'ø\Ù2­\ç\Ø>67µuX\î!Ÿƒ\í°×œ¸ž\Ï\Ëm«E³x³','',0,'?'),(_binary '5\ê?‰y˜\Ä<\Ù2\Ì','wp-admin/css/dashboard-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—Vi\ë£ˆ¡’I52—\ék',_binary 'jŽ!ôeô¾a4Š®KéŽ•\ìÁyxZ‹)\É\"R8\ßN','',0,'?'),(_binary '5!O#¡ñg\í—\Î\à','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±\Ä\éˆ\Ì\ÃeSu-µ\ÑÕ˜ú}',_binary 'ix\Ê\Ê\â_Kn¡¤ð¾”&¤F\Ê\à¾\à:r‚„a\í0','',0,'?'),(_binary '5.=¹€d)<peu™s^','wp-includes/sodium_compat/src/Core/Ed25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ªñ}™¨][W\ß)¾BŸÁy\Õ',_binary 'e3\nx\Ùù½&\\Äk\Ý\Ò\êÙ¦\ç|˜„ªV®Œs›ö','',0,'?'),(_binary '58\çd\á`S61K>Û®†v','wp-admin/css/colors/blue/colors-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\âŒgïµ·‰¬?„\î\èy',_binary 'î™]‡\âó\à${N\Z\áÌ¼\â¢¥\ÜÁg\ë;:\êj\Ô8','',0,'?'),(_binary '59 \æ\'\à\Ø\Ô˜vJ\Ý}','wp-content/themes/twentytwentytwo/templates/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯2\'wx,›z\â!\êM\ã',_binary '¸\Ý\æ\á:¥&*»Œ\æbÀ2f}v‹Qª,.™\Ð\ï¥Õªº\Ë','',0,'?'),(_binary '592~\î¹\Ñ\Ç\Óu\Ê²\Ñv','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/checkout-state/event-emit.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Õ¥µ\Ç?o%\Æe\è\Ó9 \å£',_binary '¿¤4 C\Ô\Ñ÷‰\æ[\çðtkÿp·“™\ê8\Û.ý}¾é¨“Ê€','',0,'?'),(_binary '5:n2\Ø^þ\n>E\0tkš','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/shipping/constants.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"MµJ!»Bô·DŠ	\à',_binary 'd#T5]5\ÛfŸß¨uNBM#Ö°\0~Î©Š;Àa(8g—\"','',0,'?'),(_binary '5C‚)\nWu¾ê½/F\ÒcK','wp-includes/js/plupload/wp-plupload.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'biû^øÌ¹\è$–x£9}z ',_binary '3}\ÅÊžiö\ã\å™þ8]`¬¦\ÊQ‰Š÷à¬§%6','',0,'?'),(_binary '5O¥¦\r\àû\ìxµ§4ÿ','wp-content/themes/flatsome/template-parts/portfolio/portfolio-summary.php',0,_binary 'ºpK/\Ç\ÎO\è¤Ap§\\.',_binary 'ºpK/\Ç\ÎO\è¤Ap§\\.',_binary '?À\Ýðl\Ê~õ#I1\Âg\Ñ<R2Í£Sš°\ÏbFk[','',0,'?'),(_binary '5S{\ïTÆ–®\Îe½/\Ë','wp-includes/class-walker-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÉM¾½\ÊÁ²\ÔV\îGBÏ’so',_binary '\"F¿|a§\É{V¤¬…kð\æ.(nš|m\ãf{','',0,'?'),(_binary '5Yhk©‰\Æ‰Z¯\áGü','wp-content/plugins/nextend-facebook-connect/providers/vk/vk.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@3³\r\ìÞ…B\'\Éûc\ï\'\ë',_binary '\Ëxx\Â=\ÈP”Qb\Ñù\Ôó¥.¾k2<¥m‡Á\'¯¨\Ðú','',0,'?'),(_binary '5Z¬\Ì\ä\àSÎ¼\ãv\Ù`6—9','wp-includes/version.php',0,_binary '29©“*TL\Æ\åT¦n“H',_binary '29©“*TL\Æ\åT¦n“H',_binary 'q$iŠM~i½A¼÷V¯­|þ‚’9H¹þz‘Á1ü®','',0,'?'),(_binary '5\\h>ó\Îw	—‡N\Ë','wp-includes/registration.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ò\î\ÃS\æ\ËD† 31\ê',_binary 'Õ™“·\ìvF´ˆÙ«š\Îù\åP«\ÝB8.·\ì\á\Û\â8\Ä','',0,'?'),(_binary '5^\É\Z)=\ÌC¬~\ë‡C','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-group-title.php',0,_binary '“µkq$(\âF„r‘\Üù',_binary '“µkq$(\âF„r‘\Üù',_binary '\ÐZI\Ó„8Ì–¶Cš\"®«\0\Ô\Î6\ÔJF\×a¸\Ãu²ª^','',0,'?'),(_binary '5`\à]\\Í­i\0¥\ß\í\ZJT','wp-includes/class-wp-embed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n®\Ñ\Ï:¤¦3®\í\î',_binary '\n=°X\éF”‡\ãž\ÆÞ™V_Œ	67\Ðj\n4Œ»ˆœ\Èp','',0,'?'),(_binary '5f[\î{\ë1\r,\"Á¸ñ','wp-content/plugins/woocommerce/vendor/composer/jetpack_autoload_classmap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vüšð,hk:¦e•H&',_binary '	/³¸w÷ps÷ý†®À´³-3\Í-\Ê\Å1/u½$ñ','',0,'?'),(_binary '5r \Ø|\nÅ¿\Å44d\ë˜#','wp-content/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories/ApprovedDirectoriesException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬K8.Bó+\Ë\ÈÏ´\nU›',_binary 'Yÿb\åo.h\ÑyIMDí“°&™Œ#…Q®ú\é\ãHó','',0,'?'),(_binary '5u»V\æ‚÷>\ê-+S§','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°j_û}ÖŸ\ßÿo\ÜH¯',_binary '£\ì|YÁ\Ó\Õ=uÊª.‰OP¸e\ëÐº%úhS›\0','',0,'?'),(_binary '5\Å\È\Zû†neŠ§…¬*n,','wp-content/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X¯úþóf´Åž¾A3H',_binary 'j\æ\Ô\ç\ÞhŽPL\æd Ÿ\Ç`u+ûcþ@–¨¥A¸OD','',0,'?'),(_binary '5ƒ\Óú92\Íƒ¨^À%<®\Ç','wp-admin/edit-form-blocks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6Â³\í\Ëlý,§\Æ(E‹ˆ',_binary 'nÁž·\\S–ñf;sSWL\Í)x.2Smq\Ûv\Ï\ê¦\ã\Æ','',0,'?'),(_binary '5‰\"H\ë\ÌFy\Ä\0ƒ\ê.?','wp-content/plugins/yith-woocommerce-compare/plugin-fw/languages/yith-plugin-fw-el.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Õ;5wÄž ¦\'2ÅŠ',_binary 'x\Û]Ë›ý\"ý¥T?\Ødq•¾\á\"\"\Þ\ã*6M\ÙNh\Þ','',0,'?'),(_binary '5pX(¢}x¨¾3?ù','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/filter-element-label/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\Åt¾™‹†\ÓkÁ\å',_binary '\Û9G°¬\ÕL‰u½ºšÿ&1Á$‰§­§\0ï›èŸ•m\æ\×','',0,'?'),(_binary '5˜‹ ýù\Ú2a)G‹þ3¹,','wp-content/plugins/yith-woocommerce-compare/assets/js/jquery.dataTables.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›OC»mM \0\Ôd¡y',_binary 'tÀ\ì:…O¢\ÖK¸†\Ç\"14;Í›)’Ø„Ü±M‚$\"3','',0,'?'),(_binary '5œYdh^Lˆ\Ü\r\Ï\íœU\Ç','wp-content/plugins/woocommerce/legacy/js/jquery-flot/jquery.flot.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ãñ%Ô¼º{\Þ\ÇÀ§\àm\áü',_binary '\â¯\Ö\é\ß ô•U©,á¤™\"¥8%² £%OJ\ê','',0,'?'),(_binary '5¡7ðN	C=†\Û-\Øœc\Ä','wp-content/plugins/wordfence/images/sort_asc.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“&­D®K\ë\Þ\ÝzSÂ§0',_binary 'N—Q\Ó* ‘TZ%Pº\Ú%\ê\ÝjÜ‘tZn/Ÿ','',0,'?'),(_binary '5¢µn\'fCùYH\Ç[Mµ\Úñ','wp-content/plugins/woocommerce/legacy/css/photoswipe/default-skin/preloader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ãJ¯»HZ–\êò§‰²¿:öþ',_binary 'Šj¯ÿ.O¡ë©†3„\"²©aüÕ© \ÐZ’1Ý·\Ì_','',0,'?'),(_binary '5£O\ÅS>^9\0!ivü¬¢','wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/woocs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qümõW‡ª\åŽu&-\ã',_binary 'm)œw&\Ñ‡”\ÒfAh\ÝÆ¦­\nK\ÜK<Ç²‹øzº\"Ñ€','',0,'?'),(_binary '5¨¼\Ò#\"\Ëøá½½ã€ û','wp-content/plugins/yith-woocommerce-compare/assets/images/socials/twitter.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ\Ó$¹0Tµ®¨\Ú\n¸Kú\Ö',_binary 'Y¡8°(ªñ™\å2¯J%\ÍÑ¹\"xH§²‰öX','',0,'?'),(_binary '5ªŸ{ò`\Ûþ»\ÕemF','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/country-input/billing-country-input.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§\Ò\ÊÒ¢©aŒ9w#µ7H¡',_binary 'ªö€L¬\ä‚\×`°\éF\ë$¥#?¹\Âk·Áµ	cˆ\Ï','',0,'?'),(_binary '5±#tŠ5R½ÑˆK©ó\íõ\Ô','wp-content/wflogs/config-livewaf.php',0,_binary '\r\Ê!\ëz \â\ê\0\\|v\Ü\ÑI',_binary '\r\Ê!\ëz \â\ê\0\\|v\Ü\ÑI',_binary 'º_\æy­v˜$Sº¥Ào]\ë|\Ê5— –‘†aûQY5\Å','',0,'?'),(_binary '5¶\íMÊ–r¢ÐŒ=w\æ\Â','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yith-gutenberg.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ðC#E\Ëûxá‡¢ˆ`1',_binary '-ƒ[!\Ø¤»µŒX\Ï\Û*-ñˆ¬ùcdcMÃ‚°g¨','',0,'?'),(_binary '5\Æ–ù5P3\Ðe’)œVø','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/checkout-state/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡\È)MX=?©\ïÂ \Çk\Ö',_binary '\í0“([*ÿ˜\Özdµ£^\ÖùHk°+\ZiBC\Ã{','',0,'?'),(_binary '5\Î¦L?„¯L\Ó\0([û','wp-content/plugins/nextend-facebook-connect/admin/images/buttons/icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@icd½WÀq÷<ªýn',_binary 'Q!‘“¥cA\ï©yÐ€m|º<\r\Ïõ\0Ý¹£VDO…m','',0,'?'),(_binary '5Î’\êÁ½%ôd\'\Ò\Ð™K','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì¶\Ñg‡&;¸\ÜÚ¶D',_binary '7Ágs˜\ØIo´\Í}\Í\Ö3;X¡Ò–¯\ë—\0§¯™×šE','',0,'?'),(_binary '5\Ïv¢	º}\\»f}¢|','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/css/admin-notices.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2Œ1$c;k”T¼ü\ÅÊ³¨',_binary '}\Ô\\µ\"–u]’õ»ÌŸˆ\Ð/<q \ÊMX\Íx','',0,'?'),(_binary '5ØªTQ1ó\0 +M‚\é­','wp-content/plugins/woocommerce/legacy/js/frontend/checkout.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SªZl }¹\Õ\áxý*¯¨õ°',_binary '+)z¾¨…O\ë©À\ÉÊƒW\ìx©`d,\Üùû‚÷ºi\ì','',0,'?'),(_binary '5\Ù\Î\Ó\äBùÓ€U^\ä•ÿšu','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-cms-nav/icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4ðFÁlN-{_¬À‡',_binary '\Ó/1\Èzª†u\êy}X6Hw’‘\ÈD¸v_\×9EM²m','',0,'?'),(_binary '5\ßð B§à¢¨w)e°q','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/utilities/FP/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾\Ï\á]«\å´YbuáƒŸ€\Ï',_binary '0\È\å\èûDvW‘•dÇ¸+Zºô˜\É\Ü\Î&ñp«\ë\á','',0,'?'),(_binary '5\â\Í!Ì·s¦\éEZš:€e','wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-custom-fields.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P G¦„pZ»\'«\åd1¡¶\ã',_binary '\Þ\Ì3Rþ¦\å›ÞŽ5Êˆ¨\'CT¼Š\ÊGR–Ž4õ»[\Ñ','',0,'?'),(_binary '5\â\Ð}x%\'\ï¹R6\Ø„','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-order-notes-v1-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'æ˜šZ\ã`#“±\"l2˜-G',_binary 'vþ½d§\ãY4Õ´ãœ›a\Ï´U\Ï\ï\ß‰Š\Ý=u','',0,'?'),(_binary '6\r¡2T0rË£ú Zù','wp-content/plugins/woocommerce/assets/css/twenty-seventeen.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†¯nhj\ÊT\ÝS£\äe\0Z',_binary '§Ws)]\Ð÷[Þ·y~\'ô¸Pœ\Ù^Œ Y¨¹‚üðUóŸ','',0,'?'),(_binary '6Æ¯ž-\Öÿô&7›J—','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/metabox.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'óY& †	V\Ú\Â4Y\è\ï',_binary 'õyŸ¼À7µet\Óu\ÞùšZ†••Ais¡r\Í','',0,'?'),(_binary '6T¾?ÿ…\Æc[ô«Q6M','wp-content/themes/twentytwentytwo/inc/patterns/general-large-list-names.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´¯ƒ.=®ß‡\Ån*±ù',_binary 'p’ C?’É±‘\0³Y‰Ù—)ðœÿÛ±0õ¨\á–ú¦6°','',0,'?'),(_binary '6IùGª¶\é\ÒÌ¦€º´Ž','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÐþÁf©(‰ö¬. >#N',_binary '{Nl§+\É\Ë8†\ÛE$\ßb³\Í\Í7¦‰Xˆ\Íô¸o','',0,'?'),(_binary '6\Û\Ú\ß¨X/€¿HL','wp-includes/js/mediaelement/wp-playlist.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«„Ÿ‡–Xˆl\"¤oð€',_binary ' /=Ã BAo&\Ñ\Ã\ÙIù1¬]k~\ÇN’¡\Ç','',0,'?'),(_binary '6,¬M?\Å>\Ù÷6Žw','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-report-products-totals-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\Ý_\ç8F4Ê»û)ÀÙ®t',_binary '/\ë\ïLe^µÀm\ã^\áš11\Æ1h®ôÌ—X ½\á:','',0,'?'),(_binary '61EqqOb\à Ú³¼\'];','wp-content/plugins/woocommerce/assets/client/admin/dashboard/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.‰º¢©ö>Ž\ãj\Ð!',_binary '©\î¦º\â ý;±\ÚoÑŒ\äò1p—#I„ý\\m”\Ï','',0,'?'),(_binary '62ÿ&e5“\á–§§','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/laser.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤2f¯\ì6\ãg™\Õ)B',_binary '€8Qj\Ý®V\'ñ4—…â°‹¯\áÌŽ\Ån\0\åb(ÎŒ³','',0,'?'),(_binary '6;I(\ÖH²m\É%¬\Ãfº','wp-admin/css/farbtastic-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Â7\n\åžÀ°)š{‰\î“û',_binary 'Tœ=\ÖY#\Ò\Ë[•ý¶vr„H\Íia­þRþò†ñ','',0,'?'),(_binary '6;\á\Ý’*9\àO\\L\Äû','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/bpml/icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Þ\ÒùDŽN\Ø\ß\n\Èôó\Â\Þ',_binary 'hžx=\ßL§Ý®j^X:M¿…‘ºŸf\Öõ\Ø\ã\Ã,','',0,'?'),(_binary '6=)-ú\è\Ø@\ç¿\rþ\Æ(','wp-content/plugins/woocommerce-multilingual/res/images/delete.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\Þ)\È\ØeC£\å\çK™PR\ï',_binary 'Uk{ŽöTTWŽ­,bÖ­µ–7ÁX`ò°F','',0,'?'),(_binary '6P)æ˜ªKC6\ÉqCHg\Ó','wp-content/themes/flatsome/inc/builder/core/server/src/Collections/Components.php',0,_binary '¨\Ûôx2RFõû—0\ìöO',_binary '¨\Ûôx2RFõû—0\ìöO',_binary 'À‰D\Ï+ò\Ô\ÛU=™gõ	 5anôô,rN\Ä(u–','',0,'?'),(_binary '6W±Mdý%\Õ>`Où\×Ó–','wp-content/plugins/woocommerce-multilingual/res/css/wcml-cart-warning.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÇÔ¡›dÁJt„9ŒÊ¬',_binary 'ˆR\ZŒa€\Â!“S˜À†µ£]û\âc\ìq\à¡?t','',0,'?'),(_binary '6X)\æ\È9ƒX\Ñdg*ýÿ>','wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/class-path-processor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zO\nJY¹…—gUºö{',_binary 'TóñA÷wµpvd…\Íy\è\Ðu¬­ý+ˆ\Ç7¨D& J8\Ý','',0,'?'),(_binary '6[fÀ9¸?†“ _\Ç','wp-content/plugins/wordfence/images/icons/bullet_yellow.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J&û\Þ\ÓÉŒŠý\ì\îÔ”Q<',_binary '1µú±Nß—÷¹’ú×?*€i\×Ã­!FýMp\è9^.','',0,'?'),(_binary '6cÀb†£kk·\Öi3¹@úH','wp-content/plugins/wordfence/lib/menu_firewall_waf.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ç\ëm}\é#`:ª\áPo/\Ù',_binary '(ž›Ë•‹=9L”/¨\Û*mž,{o\Ö7ÜºhVTõ\Ú\\','',0,'?'),(_binary '6u¬”¸ñû@Œ®¥\0ˆ\ìM','wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-offset-tagline.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×Æ°d’3~‚PfÁv\Èk‚',_binary 'h\æü\ÙjúW\è†\'ó\ßgø›l¸\0IØ¡<$b³X„¢˜7õ','',0,'?'),(_binary '6}\Ìrm_F\àg\Ä\ë~Ñ‡','wp-content/themes/flatsome/inc/shortcodes/ux_nav.php',0,_binary '[»ð\ßå¹€¹8º„†T>£0',_binary '[»ð\ßå¹€¹8º„†T>£0',_binary 'l¾i*ºL*E™¶ˆÁ&:ÿaô½½\Åñƒ','',0,'?'),(_binary '6‚]j\àv\ÙW¹k\r3-\ç','wp-admin/load-scripts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8¡²|û=]gY[\0Mõ ',_binary '%•„`Ä¸´ÿ\ÔXŸ&Ä²Ç¼=~~bF\ß]\ØFSD•\ëR','',0,'?'),(_binary '6„\ÞÆŒ¡™\ÄöC˜®õ+','wp-includes/sitemaps/providers/class-wp-sitemaps-users.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à_÷{Ú†%Jm¡ž×‰ñ',_binary 'ùŽF¢\ßú\Úÿpd‚‘3©ÿþŠ\Þ\"\Ôn\È\åÆ© Y\Ãb','',0,'?'),(_binary '6‰ÝŒ‰ž»\rd|\×r\Ï k','wp-content/plugins/woocommerce/legacy/css/woocommerce-layout.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿ‰Xð›x\çS\àÁ.Wv',_binary 'OG¦?ª\Óû\Ò\Ô,À8SkÕŒO\ÔW†.\î\Ä\Z\Ï\î<—¥','',0,'?'),(_binary '6Œõˆ¬=³„÷¹›6Ÿ¬|','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/css/fontawesome5.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'MG$	T\Ì\Þ\Ã\ÕbÅ›”',_binary 'j\Ñ]ƒ1@•Í—?\áT\Â4\ÝÕš	.,Â‹\Æ\í\Ëû\Ü','',0,'?'),(_binary '6–u/\è3`O¦œF\Ð\é\ço','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/support/class-otgs-installer-connection-test-exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ãi^DvH\Æ!Xö\r¸r)\Ô',_binary '\ã·-Ê»tûT˜—\á†-\åûŠ\â~<\ë…~\à‘\åÚƒJ›Ž\Ûs','',0,'?'),(_binary '6š<	ªž\ãz3\ßýö\ÌH|','wp-content/plugins/nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñ®§L\Å5Rs\ØU|.ÿ',_binary 'z‹ð\"\Ôk.½È”IÉ “\Þv\"w¥²uó–ö','',0,'?'),(_binary '6š;ûþ¾/¤\r	h…6o','wp-content/plugins/woocommerce-multilingual/templates/setup/introduction.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›\Ø7•¼œŸ¥#Tm·\Ç',_binary '.óòß•)\ßz#_bŸ¹£\Ò~HÆ¾\Úx“œ 8MC]','',0,'?'),(_binary '6\Ù:\Ïx¥©+\×(±aù~]','wp-content/themes/flatsome/inc/admin/panel/sections/tab-plugins.php',0,_binary 'Õ”U\æ\ã«ÿ­\ÉG\Z„\Æ\Z°',_binary 'Õ”U\æ\ã«ÿ­\ÉG\Z„\Æ\Z°',_binary ' .~\Ãyƒ¯²KT\íô\ÇÚŒµy\ÔQ\éƒ$´²÷Ÿ(&·³','',0,'?'),(_binary '6©®ÿ¬\Z\Ãa—·\ç€\ÆT9Y','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ï	øJ\Ùb·v/‚z¹š\êA#',_binary '¿\Ë –ºÏ¬@\Ût=4öO¾hQ\Ë7,\Æ|;2€`©','',0,'?'),(_binary '6²‰ºv\ÂÖ¡\ëJ£|\Þk\è','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Renderable.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£@.{‰ò‹Æ‹H>`“4/',_binary '\Ñm­\0µb\Ò\r˜½¯ªÏ¦\àòÁšµ½/³&!iL p¸ü','',0,'?'),(_binary '6´¸D¸<Dý\é±þoªC','wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_Versions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œ[&Ä©þŠý%,Ú¥\àx',_binary '\n¹\\)‚gü‘Il\ÞÓ«¤§À_…,a*`-\Ér+\ØI','',0,'?'),(_binary '6·lLX/\Ô\êHŽ\Õ3X=E','wp-includes/blocks/template-part/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\Þö|\ÛÛ¿¹™2»',_binary '“‘ñÃ¦ò\àöV\ì\äœ\ä©\Õ\Ä÷\âc¼Uû—%\Ê\'»~\Ó\ç','',0,'?'),(_binary '6¾ˆT\ë\Úa\àþ¾¹\Ã\ì¼0','wp-content/themes/flatsome/inc/builder/shortcodes/templates/accordion_item.html',0,_binary 'ˆ¼\0X\çóCR\Þ]0Wj\Ù',_binary 'ˆ¼\0X\çóCR\Þ]0Wj\Ù',_binary '@§1\Z)þ\ä1Š\å¤fóµqz@=,þ†û€†\Ü\ì0\ç\Û','',0,'?'),(_binary '6\Ç\"JG˜\nó9Ñ\ß)$','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-wc-gateways.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O²FºŽ£K\êV`‚\ëµ08',_binary '\"‰\é2rxƒ25h\Û\Ò\ÛË¥­’P¥Æ¥>CXŠ‚&9','',0,'?'),(_binary '6Ì ,õø_‹\ìqò\êùu…','wp-admin/includes/class-wp-filesystem-ftpext.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“^xTSUeÛ˜ev\ì{-',_binary '„ñØ¤W\â÷\Õz\ÝûñD‚?‹ òwD¶\nª¦7Že','',0,'?'),(_binary '6Ù¨	\Îÿ:{”^D\á‰','wp-includes/js/jquery/ui/accordion.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nS†iGi\ÅWal\ÝÏ¬',_binary 'Ù‚/&’Ž µ¹ù+…ÿ‡\ì%\Ã(\ÏoóZ2¹\ç','',0,'?'),(_binary '6\ì{,GjðU¹ƒARfU','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/read-more/test/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#Š›\Ô9_6!™˜\0l',_binary '{\"^¤M$a‡l	y3\Ý#–\ä\Ã~\ÒüHˆ—úº¼ƒ\Ïn“(','',0,'?'),(_binary '6ô`þ1NV7;Kd3\Ê7','wp-content/plugins/woocommerce/src/Database/Migrations/CustomOrderTable/WPPostToOrderAddressTableMigrator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ß$‡1r•\ã\é¿\è(\Z–RO',_binary 'À±\Ç1ÅÁ–\Å%ašb§j·\Ãr\ã£=_A·‹\r¬','',0,'?'),(_binary '6ü\ÄH«_(*Z’X9|','wp-content/plugins/woocommerce-multilingual/vendor/composer/autoload_namespaces.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\á,}vÄ¨3¼õGÀ\â)©',_binary 'E½r4@\0¸Ô¡$¦\âz\æú3ð¸$l²\ê\Z\Ð`i\äex\Ãl\Ê','',0,'?'),(_binary '6ÿÿW}\×R\Ö\í\å\ß\åÆ¨`','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/sysinfo/system-information-panel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!]ý\"!Z;\rUJ³‹õ¦B',_binary 'ñùß¯¿c¯jª)\ÖNÁ\ËC>M}\nzª\ß\Èm~M\Ëóws','',0,'?'),(_binary '7\0¶­\'Ô³Î”IYý{{','wp-content/plugins/woocommerce/assets/css/jquery-ui/images/ui-icons_454545_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\åQ´Ë„‘3XŸ¨hZÎ­\ß',_binary 'nyt¥,ó.#øöp5\Ö@\Ë%6qv\'\ë\å`.ß«#¼\Þ','',0,'?'),(_binary '7H—`†s:>öCÜ¯¦~','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-shipping/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\èjå£šT“^Á4\Â\ânF',_binary '\rKzKV\Þý\'cfïŠ¡ó™q2De5¦#»@0´Î»','',0,'?'),(_binary '7H´¢\Ø0›]Õ’\Î\ïôl™','wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Shipping/AdminHooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' F\ë=_\è^¿ÿ~¯…•´\Z',_binary '€\Ù×µQ\Ã\Þ”\"wG +Î-\0\"\ÞEs‚ö¯gn}','',0,'?'),(_binary '7L«½Kú4ƒ¬‚h\à>K','wp-content/plugins/nextend-facebook-connect/providers/yahoo/yahoo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÔuL8\Ú\Ï\ß\ï\ÔÝ¢À\'Â®',_binary '³r@2–\\ý\ÎV\Ô÷KI<\æ0	4®s\î”K«_û\íA','',0,'?'),(_binary '7¤Ô©¥–û¶£ñô\é','wp-content/plugins/woocommerce-multilingual/compatibility/res/js/wcml-adventure-tours.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»\Ð1‹:¬*Ú¯c·‚ô–',_binary '‰að\ãœ\Û6\Ð@±†Ü¶ÿOKwn’t¹Àz\ÓÏõ','',0,'?'),(_binary '7\n&7_•!c<G\Ì1©Kª','wp-content/plugins/woocommerce-currency-switcher/js/front.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„†N«—\ÅW)t.P#8gH',_binary 'x¹\Ú]\Ç/7‡¶\é\ã\Ê\ÅW2¾9óL”þ>\çu\ÛR','',0,'?'),(_binary '7÷00(\â\á\ê\è&wK\ï\Z','wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/class-autoloader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K‰l“ô\î#\\\ê\âð¦TÀH‘',_binary '¬ŒÀG\Þñîœ¯\é\Ñ1ðÑ’•”\r\ÔÌ	§\nòOeûß©òP','',0,'?'),(_binary '7/—%„£\íUüŒA)\rð','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/objects.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\Âl\ÕE\ï•\Ç>ÿ\àc',_binary '¶Fð\'´óqŒJ\ØÔ’u:T\â \rÌ¿Á†3Šù½{z','',0,'?'),(_binary '7\"¿ó®å¦¿W–\rŠ\ÄÑ½\Í','wp-content/plugins/wordfence/lib/menu_wordfence_central.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\è¤D\ÓñÇ“¨GJ…\Ã',_binary '’2\Ú±Þ¬÷ijB€ôð]Æ‘F\ê\èBN3«yk°','',0,'?'),(_binary '7#r(þ\àd_\Ä\Ûz¯Ü‰U','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R#tX\îÉƒtÀ}7FI7',_binary '1ø…xk_,•_{‹pÂ›µ\Ð\'½³-ŽZÊ»','',0,'?'),(_binary '7(‡­\É	£\n,c¢uºòS?','wp-content/plugins/woocommerce-currency-switcher/js/alert.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\âFxSmÁ®ûù½\Â\á\ï',_binary '‹£ª¾Õº”A§E;žb —§ð(ˆ`n\Ü@i·Zrñ','',0,'?'),(_binary '7-s\âr1˜\å¬Ì’\åøQ','wp-content/plugins/woocommerce/src/Admin/Features/PaymentGatewaySuggestions/PaymentGatewaysController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°\í\"ŠØ´H,2\ç84\r+',_binary 'ô.‘Wb¬(GGYò=\Ê\Îw[\æ*\n–\îJƒ/\å\Èw€°\Û','',0,'?'),(_binary '75\Ê\Ë\\\Õb4\'N\Î-‡§','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/template-service/class-otgs-template-service-factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*K\"Ÿ]/BÒ”$9{û\Ü',_binary 'Ù‰ùx\ÊõP¡\Ï¾{#&ü\å\ìGs\Ã\ëdüž?\Ù{“\Ä','',0,'?'),(_binary '7Du\Ôr:t-krÉ´¯A,','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/attributes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g‰\Õ\ê\0ï»¢šŸŸQp',_binary '»¾¶¯Bœ\Z§s\ÌÀÝ£´\'¹ª·£FFõZñ\æÃ','',0,'?'),(_binary '7UÕ¼l\ÝÚ´“a\ÃY£¦¦','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/upgrade/changelog.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ða\Ç\n¡­þ¾½\Ü9«ªß·ü',_binary '\ížÿ6#°€\"  Å™®F.D`ùe\\F¯\0$aDò\å','',0,'?'),(_binary '7]\ÆT1G›\Æ{\'','wp-content/plugins/woocommerce/packages/woocommerce-blocks/templates/emails/plain/customer-new-account-blocks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„w\Zõ™\r®	þ,\è	P',_binary '¹\ê\ì\Ýøtñ\Ýj‡±d,øTs«#€\Ó6\ï•u‘Â‚©k','',0,'?'),(_binary '7d\Ëd\Ïz\ØË¤7õ\ÈqM','wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-item-data-store-interface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B±ù‡K™öv \Êwó',_binary '•B‘š\èß™ø\rÄa\ë\ÛÓ–Awh\Z£\ÔR\ÍT†\'+','',0,'?'),(_binary '7oj@\Û\è•J  CöÈ¿‘š','wp-includes/blocks/site-title.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“J~÷õ\Ïeƒš´\nÇ€\Ï_',_binary '&‹÷t›.\"¾\ìª‹-\ÐJ*;Á¾\0cvÁ\ëÿŠ\îÏ‡6{','',0,'?'),(_binary '7r‘§uFñ˜±@J,','wp-content/plugins/wordfence/lib/wfDateLocalization.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ë4„K_Jú2CmcÍ­\Çt\Ý',_binary 'Dƒjy\îº,\ÄLw\Þa\ä <U†\Þ\Ú üû²õS','',0,'?'),(_binary '7t\Êx\Ø%~ó\âX1k$Z','wp-content/plugins/woocommerce-multilingual/templates/menus-wrap.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X.9H$\é8E\ïUñ\ájV`',_binary 'Àô\Ú\í\ZŒUlÜ¯„º“b>X=¸\Ð\n\0W\rV9¹\èŠ˜','',0,'?'),(_binary '7|oOU›’ùz\0Ef»œ\ä','wp-admin/network/update-core.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ò´\ì¬LŽ;G_bu\'\\',_binary '\Êv,I/L^š€¥ww\ZX1˜2 yîº§T\êÉ£I§“~','',0,'?'),(_binary '7~A\r°Ä¼:ŠYVuƒ›','wp-content/plugins/woocommerce/lib/packages/League/Container/Exception/ContainerException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\‹\Ä=Ÿ@\\˜‘A\Ýð“÷D™',_binary '}\Ãtò\é\ß_QùŽºÁ\\Ö–6	D\ÄÀ\ÍS\Ùø\Å','',0,'?'),(_binary '7‡‘A›`ü|\'\Ë2`5ý=','wp-content/plugins/contact-form-7/includes/config-validator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼>‡Pº1Ù» öù‚«Q',_binary 'ä•„\Ó,òƒ\Ýj’£\ÙOü\Óm6®M(Í¦B–ó¯O','',0,'?'),(_binary '7Œ´®ñ•0.”\"/ƒ\nªR','wp-content/plugins/woocommerce/includes/shipping/legacy-local-pickup/class-wc-shipping-legacy-local-pickup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\é‘Ùˆt-¤³K\í\Ñ',_binary '\×\ëU\î\Ç\Ð7ld\îºaþ¿´‹¶2ŒT#p\r@É“\îN','',0,'?'),(_binary '7šMª»ñOcùß€šlu©','wp-content/plugins/woocommerce/assets/client/admin/components/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ºiYF\çP\\V€ñ=ü',_binary ';!X‹*>=µ—ª\ß\ÎEÁ€[†i~ºœi‰\\h‡Q\É','',0,'?'),(_binary '7«%Wy~×¹P?«xò\ç','wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥lzV6`wmZBs\Ï\Ö',_binary '\r ¡8óþ¯&øJ\ä¦34°Ð±¥\ÚÇ½¿»Á½þ','',0,'?'),(_binary '7±/\Ð1€;\âö\ç‹\Ó\ËIK¼','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/team_member.svg',0,_binary 'C.½³•kXƒ«@Ý¹^c—',_binary 'C.½³•kXƒ«@Ý¹^c—',_binary 'ù\ïnðW¨’F½\Ù\Ä=\Ùla!!“/€3\ça$\ájù','',0,'?'),(_binary '7²‡o^l\Ê:\Ò\ËB','wp-includes/sodium_compat/namespaced/Core/Curve25519/Fe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜Á	Œ\æI¥Ý¶3‚‹S',_binary '!MÚ’Þ«Dw£•\é\Þwe(²!\Î\äö=\ï\éÞ¨d\à\Ö,GW','',0,'?'),(_binary '7¸°˜ù\È½@”r5®\î','wp-includes/blocks/gallery/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-^_½ùcqV\ÝQã¹¯V',_binary '#‰ûO\á£\Óõõ	öe\Ü\Óbi¥3T¶‘\ÃM\"‹H;`V½z','',0,'?'),(_binary '7¹!^R[¢\ßñ}qR\×y','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/woo_meta.svg',0,_binary 'õ\àù\åˆù\è\0\í…J\ÛT',_binary 'õ\àù\åˆù\è\0\í…J\ÛT',_binary '2m˜,\n\Éù¥sõ\åia¦{1¼¼;\çqTõ©ºœ—”š+w','',0,'?'),(_binary '7Àc\îÂ¢)\Ü\æSóebµ','wp-includes/js/jquery/ui/menu.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':3÷‡z„\Ó¯‚\Ð\Ï0I',_binary ']\Ü@ss=°YœKÐŽÍ°l\ç˜?Ó@Á\æ¾g«¿','',0,'?'),(_binary '7Àc÷.$P!\×\"Œò¹š†','wp-content/plugins/wordfence/images/sort_desc.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©<„®\ÕjÿŒ_³ËŠR2',_binary '*†\ïþ-õ9\Ô.¹û¾HGO6/\îL\Â):C\×d\Ãz\ã','',0,'?'),(_binary '7\ÎÒ¸|\Ë\äwŠ\ÝQ @','wp-content/plugins/woocommerce/src/Internal/Admin/Marketing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@c ;¾º\Þò(kUI\'“h\à',_binary 'm[\ë¸\Ö\áeZÎ«‹°IXð‘\æ\Îg•\ÂE}:„À\Ñ','',0,'?'),(_binary '7\Ô˜\è>»@Pý´7û','wp-content/plugins/woocommerce-currency-switcher/classes/profiles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LO[Eg\Ý|öžó[\Ñ\Îü®=',_binary 'š@Xªp?™]lü\Ô.\Í ¸Y\Ôb\Æ1³yH;Ú°~š','',0,'?'),(_binary '7\×\â?ÓˆA~eESñ\æ \Û-','wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»ÝµB\ÌÈ\Ä\Ý/\Éh)1',_binary '|\Ìf)\ÒñM5“†\ä3‚<\Ê=pŸ\Ï\ÚÔ ™o\ê§ë¯ ','',0,'?'),(_binary '7\ÞY|7”^\Z™£\Ë\ÏVq','wp-includes/blocks/site-logo/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’Àvñ\Öwe`|M“y²“\n	',_binary '§9;.E:Xî¨‡Ÿ±\Ù=U\"?D”z(}€{½_¤aü','',0,'?'),(_binary '7\ç¸ž…µ{ÿE5¡','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-variation-swatches-and-photos.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÅÅ³\í\âoJZ‡ô¸!Q,º',_binary '8Á]>!Z?óH\í-D’Òˆ\Ý~	*¾<¾pÀ*\ä´','',0,'?'),(_binary '7\è\Ù\éÎ­Å¥™2\ë.‰ÿ\n¥','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/metaboxes.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zT§®\Â[¶8OË“',_binary '_°#7€®Jð\È\Õ\á;eÀýµ~\Û.\Å\Ô\Ó\Íû$\æô','',0,'?'),(_binary '7\ì\Ðó¥k°Xøf´XmÿS…','wp-includes/js/dist/vendor/wp-polyfill-fetch.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'òsn7»´z4fžð­M,“\Ó',_binary 'e\Ø“b\Ó\å\ß\Ã\Æ2w¹\'ƒ+˜Mö1¤ùx?r&šø>','',0,'?'),(_binary '7ù2\ß_R´Dž\Ç;nª','wp-includes/blocks/block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\îê†´\nŒ³\'\Ü«n:WrW',_binary 'qFƒ\î©)²§\0¶9B\é¢\ìÁYSš—5©\æ=(\Î','',0,'?'),(_binary '7þˆ	MPUÏ£ó-šrb','wp-content/plugins/nextend-facebook-connect/admin/templates/review.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2ž|¢\Çm<Q\ì³	\"“\r\Â',_binary '{úGdmEQeV,\Û] \Äõ_’ž\êOü›$¿”\Ð\ê\Ý','',0,'?'),(_binary '8\n›\à,?û\îf-*8\'','wp-content/plugins/woocommerce/includes/admin/settings/views/html-webhooks-edit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BYuGxû›\ÚÜ…i\Þ\Ë',_binary '™d˜µ“cm\Å6ø—\Ò\ÛXKY\ï\æqûÏ˜!¦¿h ?\éC','',0,'?'),(_binary '83(2=X<4\Ø\0\Æbþ­','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-order.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Lä•„”\Ñ;%\èsU\ßü',_binary 'N³zssõ‚\æq#W./ªV\ç4qfm8§\\Ÿ“+°i','',0,'?'),(_binary '8dZ\è>-¸\Ë)c\éó','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#7ºo£\æMš$»<ÞŸ[–>',_binary 'ƒ¶Bb];õ\î¬i\ß\î$«c‘ðX£\ì­\ãç˜ƒ\Ö\á\í','',0,'?'),(_binary '8ŒQ]jûò¨F\Ë\é•\Ö\Â','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/attributes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'po\ï\ë-c)vä‡¯^¨',_binary '»^\\\à„Ž]·x*H\Úr\Ë6Ô€*©Ø³[þyö\Z­d','',0,'?'),(_binary '8%Áö‰-\neFsFU$V[','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/shared/context/product-data-context.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Î \Ò[i,\ìoE›¨ˆ\á”',_binary '«\ÎÂ½Ÿ†|\ç°õ\Óñ\Z¹gø`÷ÃŸ04N5\ÈZ&','',0,'?'),(_binary '8*8šO-\è1À\ÑR™˜À«','wp-content/plugins/woocommerce-multilingual/inc/template-classes/status/class-wcml-status-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\à\Û\ïÞ˜]Û©wõ(`¶\á',_binary '_nð\ç\Û?\ÅÇ¨“w\Ë\ëùh¸\rû\×#r47s\ÒCÙ¿{D','',0,'?'),(_binary '893ŽVœÿ€›ªg>','wp-content/themes/flatsome/inc/admin/options/social/options-social.php',0,_binary '\î$ü›·5h³\ä(]',_binary '\î$ü›·5h³\ä(]',_binary '\n­­­‡T;c¥Ÿ\Ø_Š”E™K…F½\æ\ä\íÀJÃŸ\Ý','',0,'?'),(_binary '8=ÀI\å¯ôa÷%œƒk\Ò~¯','wp-admin/js/editor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹›\ëy”Á£\Ñe\è\Ý',_binary '\é÷:¡ ž\Øz\î©=:&ˆ‚\ì%@\Ï\ï\Ðx\Õ?	ScS\Ï','',0,'?'),(_binary '8?)“~Š0ý¾û+ð\Æò','wp-content/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÇÜ‰8³pv±c\Âr\Æ$B',_binary 'tü)Wn%ù\Ïg3CÎ„‚;dD¹(2¨Å¬\×\ï^a\Òh\ï','',0,'?'),(_binary '8?6Bˆ\r¾\Ý÷pl2ºR\Üx','wp-content/wflogs/config-synced.php',0,_binary 'k¦\Ê|-ˆJ.\åm_\06Á\Ú',_binary 'k¦\Ê|-ˆJ.\åm_\06Á\Ú',_binary '`\Âžð¼\ÉH\Ìp¬-/žBvsnIQ\ë9É£Ø§\ÓM@','',0,'?'),(_binary '8B0Y\ï‚|ÂŠ„\'Ly','wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src/Css/StyleRule.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\Ã	)l;\Ê^Ež\í1xÁ\ë',_binary 'zklQº\É\Ô\ÍQ%¤~ñH\Ìv\Ï-7\Ý5Oi','',0,'?'),(_binary '8PÖ§\ê\Z¼HGE}8\Ú','wp-includes/Requests/Exception/HTTP/306.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Wsz¡uNP\Ûj\Ü\ÉòXu',_binary '4U¾§Q\r1#_fº­¼¢¢°H¦û’*I\Ñdl¿Ÿ','',0,'?'),(_binary '8RV\Ò\Ì 8%­‚qN\Ë','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/panel/infobox.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|µ¶ð¤j»5Ó€\ä˜H‹\0\Ú',_binary '‰7\ë{‚pL.\ÏQ÷Ty¶\Çk$“R»o_^Ü‚¡­<ò','',0,'?'),(_binary '8W™\ê8\éÆ¨r‘d‚ZŽ9','wp-includes/blocks/navigation-link/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k4`…’Æ¸[}Ÿˆô',_binary '-î¶\â»f³sþwª•«¿÷\ZcŠ\çœ\'3.\Ù`ðU','',0,'?'),(_binary '8Y­õ\Åv¿\ëC\É[,ž‰','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_psr4.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ý:\0ð\Ñ>²—\í\Ø\Ç}LQ\0',_binary 'À\ï\Ã_U\0]q=Õ‰Š®f\\¿/ 	@d¡\Ì\r¨+v\Ü*(','',0,'?'),(_binary '8Z\á`€ŒI–¶\è\Å\Ñm~\Ó','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n³EOý\Æôœ\0	úY5n\Û',_binary 'nTH\Ó\é\ê%.€Õ¼SŠC\Ú\Ü#©?vQ¬\í\Ù\Ñÿ;','',0,'?'),(_binary '8\\h‡ðT˜¤\èþ\Þ','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/site-key/class-otgs-installer-site-key-ajax.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FÈ¶©\à_\Ý÷Dz÷.Ê±|',_binary ' \æñ¦»!U¼þ®\ã²\n„-˜mQŽ5†Í‰”œ\ßÆ‰','',0,'?'),(_binary '8g†–\ßø?4†\å\ë–£','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/order-summary/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™5r!\ØBFÞš2\Í\Ó#',_binary '£c…R\í\"\ÑfŸs!Z\á\Ý$B0™Fc¢ÿ¦©’ðLˆ~','',0,'?'),(_binary '8hº\02«\ÏH®ªx®òi','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-accepted-payment-methods-block/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pvB‘O`9ŒO˜g\Ñ\ÞY',_binary 'y^E\ÄI \íÏ½.<6Œ¬˜¨\ìx\à\î2¾\Åy\ê-‰\ÌÏ‹','',0,'?'),(_binary '8q³C\ÙùÔ´@žAÜ°G=','wp-content/plugins/woocommerce/assets/js/admin/wc-product-export.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EuN´4„\rD¶K‰\'W\Ò',_binary '\Ø\Z\ÂZ\åU¼®Q6Ë¨\Ólsö\à	{!ÀS\Ñ\ì\Õd7’8','',0,'?'),(_binary '8‹\"L)Xw0“¤\è“	\ØÑ¦','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-2-col.svg',0,_binary '¼$Bì…¤\Â:~\rr­t\ç',_binary '¼$Bì…¤\Â:~\rr­t\ç',_binary '£\"\'¿Ÿ^–\î\Ñ9ñG\Ç\Þ\æ\æ<;j­\ãÀ1ôŽh¸\æ§u','',0,'?'),(_binary '8‘õI\Ç7ÿ’\Ì0T€w4x','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Assets/AssetDataRegistry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—Æº\Øw§¾4¥Bž)\Ç',_binary 'Ò¼9\Ñ\ÓO4#[XÜ®¡©ý«$Ö–]\åè§Žóf”.\Ï','',0,'?'),(_binary '8•>ò€\n!H\é§»\×','wp-includes/blocks/navigation-link/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³¨ \âfò™×–!\Â\ì',_binary '7Ÿ²/\\K\Ùx!—\"òðNò¸YsYK~”2b\0¼Á¡','',0,'?'),(_binary '8žR6\ÚDH°Šq£-{Ž:`','wp-admin/includes/translation-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!>D\ÜglM\è¾<ƒmg\Ì',_binary '\rø[½\ì8*\Û5nÝŠóPc÷ò‚ô®^8d%?f','',0,'?'),(_binary '8Ÿ%\ÒQÀVªO§·½','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/ux_menu.svg',0,_binary 'h™	¢I‚FX6¶¡³\ãr“š',_binary 'h™	¢I‚FX6¶¡³\ãr“š',_binary '¢5h…<ò\æ`\Ï\Âc6b5fÁ*\Ã&!t\È\É®•§\Éo','',0,'?'),(_binary '8©@)ý±6yg[y\åsQR','wp-admin/css/deprecated-media-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬\Ûo¢8¯\Ö;ï‘—',_binary '\í€ J\ëxúJV9\áœfo¢)„\É\äñ¦†ˆw\Ü3\×?','',0,'?'),(_binary '8¬\Þ>Aµ©Óƒ\ÙXªw','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œ¯\ä(J›\Ï_?+4h‡œ²',_binary 'ŠŸó°	\Ê‹<?~€C\ì²2B˜\Ö\É ®¿¢©Â’?','',0,'?'),(_binary '8°¡f\ÙdQµ…\Ðk\Ù\Èa¬¤','wp-content/plugins/woocommerce/includes/wc-formatting-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lC{³ŒMm;­¦cüO',_binary '9|U›\ì\"g§¤+ø.\é±\Ð=3\Ö5Ù‰tGõ\\«','',0,'?'),(_binary '8ÁÚ 8~\Ë\Í©{eó','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/dist/js/component-settings-reports/app.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6k2j\Õ>¾Ó ”‹ot<\ï',_binary 'g”±#¯ù\Z¬”ù ƒ•”S£»\ÅTSk\Ü^pöõ\Â–h','',0,'?'),(_binary '8Ã›ZE‘Q$}UPöT£\à','wp-content/plugins/wordfence/lib/wfCrawl.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œ1\Ìé“‡®Ü™~\Ò\rüm',_binary '%&¹\ã9‹	/D÷XGûØž\Øß‡ƒ\âU\ä»\ï\â\ê€4','',0,'?'),(_binary '8\Ä\0\nb\0t5#0ú…\ã³p?','wp-content/themes/flatsome/inc/admin/options/styles/options-lightbox.php',0,_binary '\Øü-7ð$ö˜¾M%',_binary '\Øü-7ð$ö˜¾M%',_binary 'Ð®¤®€¯Qþ=ú/\è%Xw“5\ÂMŸµ%Mm\ÌSšÁ','',0,'?'),(_binary '8\Çu\Êü\ç\í­2‹:›¯','wp-content/plugins/yith-woocommerce-wishlist/assets/fonts/fontawesome-webfont.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ\ænq*Š\îõ€ZF‰)2­',_binary '\áü&4\"\rQjX\ãmN\"\ã\É?P¾o”\Í\\°\Æõ?¹ùŒ','',0,'?'),(_binary '8\Ìm÷HšþO\ØH’{†FU','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/utilities/Collection.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';p±1\Ý#uJN^\æÙª',_binary '\ÕÉ‹s¬–g9\ÜZ\Ây‰\Þ6[\Ër§¸rR\Ý\ì\rnYg\Æ','',0,'?'),(_binary '8Ì¹ö\Ã8¦\à”\æ\Ó$„—[:','wp-content/plugins/yith-woocommerce-compare/plugin-fw/phpcs.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒz\ZH+û‰4:ÔŸY1½',_binary '] Yy\ÄˆJ\Ée,…]\Ã,÷À6|\ç\n\ÏxXñ\nÅŽŸo','',0,'?'),(_binary '8\ÎE)T7AW\Ý\0k[Pÿ','wp-content/themes/flatsome/inc/builder/core/server/filters/filters.php',0,_binary '$9!˜\Ú“.¢ƒŽEL\r',_binary '$9!˜\Ú“.¢ƒŽEL\r',_binary '©ÁFO`\'\"§2\ÕO¯tÀ\Ä9¬˜Dw]Ò¹\nL¼\êÀb©','',0,'?'),(_binary '8\Ï~—#K9{u%\Üy»R\Ä','wp-includes/js/dist/widgets.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ëpúO½–kµ\Ñ/“&2;\ä',_binary '*T´xUß´Q\ÎÀð¸\Ú\r–{\ëòüOû»GL°‰³d','',0,'?'),(_binary '8\ÐGxo\\\ÚòˆU«\â\Í[º','wp-content/themes/twentytwentyone/assets/sass/06-components/widgets.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':y\ã\ì˜<\ÝlðÚ¢k\Õ%',_binary '\Ör\ÝtPSsx”\à‰\0Ë–§ðÁ²â˜¤\êxA|‚.•','',0,'?'),(_binary '8\ÙD$\Å\æ¹-~0\Æ\è`£&W','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-bulk-stock-management.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Gúñ8>&Œ&…£jl\È',_binary '±VKp†\åìµ“¥þu+/\\‚?ðoHð$\ä*tü\ß\Ï<ƒ\Î','',0,'?'),(_binary '8Üžt\Æ\î»\Zw„Nxa°\ä©','wp-includes/class-wp-network.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ùZM†ÙŸ:½l\"pdÎ›¶',_binary '¼%q2Á²\ÒÓùFÀ\é\ëJÈ‘R~Òƒi“ª\ß`;\å>ú','',0,'?'),(_binary '8å¸§”J§­N\ÏÖ»gpg;','wp-content/plugins/woocommerce-multilingual/templates/setup/header.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯Š2\Ãd\Ò,lï¾¦UF4’',_binary '›/ò,†)\\\äk¦\à\ä#\âðù„bqƒ©{úú ','',0,'?'),(_binary '8\æ@~Ÿ,2h\Ø\'\0gFõ\n','wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_WPCommentCleaner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'É–»ö$\Ç§°Ã°…\ÇBc\Ý',_binary 'ó¡kK‰©\Âüþ»E¢ \Õs\Ô4\×1\Çþ2G÷\Ê=7‰','',0,'?'),(_binary '8\íOeý{°e@M\"|“','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yit-cpt-unlimited.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ë_%n\å*qa¶+\è\"“',_binary 'AÔŒK\íôó.«Ô—~\"¹¿Š\Ê\Ú\Úz–\Åw>÷‚¢','',0,'?'),(_binary '9º\r5\'Xùý\Æ>?’','wp-includes/js/customize-preview-widgets.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y‚}\í\Ð\ëð\îxŠ\Ãc\Ã&¶',_binary '‚›™\å\ë(]P¢ó\ÂUP\'L©‹2š\Òn¿\Z½\n¨\Â\íÿ','',0,'?'),(_binary '9\\5Åž •\Í\Û\×(C±^W','wp-content/plugins/woocommerce/legacy/css/activation.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's,½cU\ïAT­”kš\"',_binary '–hÔ°\ÐEO\r¶˜ßˆÇœ„]\æ¤s”¿s›Á»1‹\Ù\é','',0,'?'),(_binary '9Ïˆ[Ÿ1d{\Äô\î@','wp-includes/class.wp-styles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«¬@sEñc~\Ú>I…+%’',_binary '“\Õ\èµõ|Ï¹ù“!ˆ`º\ÌV\Õý\Ø?j\Ì&Nœ„ò\æA2','',0,'?'),(_binary '9+\Ó#¢šlŽ\Ço£kÇ\Ý','wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-setup.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·8‚\å\0O#cao\ßÑ¬³ ',_binary '\Éqy¥ôI\Ø\'‹Y\Å÷:þ(ºIkÉ“Zì…¶´','',0,'?'),(_binary '9/j9¨€j™|òfp','wp-content/plugins/woocommerce/legacy/css/dashboard.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹F=\Z±¤¹Pd}ž',_binary 'iQñ\Õ\ás\r¨s¹’òJtuÚ³\×\Ô\ßÚŽ(†#ˆðs…','',0,'?'),(_binary '98;•¥]Í›Ou®\æ9e','wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/styles/style-2/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n<+‚m„¬²ˆGn¼ú\Ô',_binary 'ö%´ËŠ¯·C¢ J­$üT£À\nD®‡t(‡\Z.J6','',0,'?'),(_binary '9:ù—d¯o\n‘ðp`Ry¨¢','wp-includes/js/tinymce/langs/wp-langs-en.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®÷ýs\àƒ/úq\à³\Ô',_binary '¶¡õñT‰\Ìµ¾s\É\Æ\Ê%ˆ°\ïS½Z¤”\Ù\ÈÁ\Öñ','',0,'?'),(_binary '9E\Ø\Z<“Vl\Ð÷Ž_3\Ý','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/jquery-ui/images/ui-icons_cd0a0a_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p‚~„¬\èþ\èó%™.',_binary 'DÇ‘”\àÀX†TRœ;\nŠ·\Èß£”_ÀGùPù%ÿG¸1¤','',0,'?'),(_binary '9Gý†&›JcT\Ý@¾\ç','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-methods-block/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\ãô\Ñ$¼/\æ³#øgAú¯',_binary ';±0ª«TCFL/ú\ÆG$\ÃNd}X6We]wMF\Ã#B#\Å','',0,'?'),(_binary '9H\ÅÁÆõ½½\í8\Ð8/ø','wp-content/plugins/woocommerce/templates/cart/cart.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Íhhew²4F[\è§Qcš',_binary ';¿\èI+\Ü7ˆy\ÓÄ½hBz‹}¦.\Îvˆd4','',0,'?'),(_binary '9I,µ/\åìƒ£k\Ô_=\ßk','wp-content/plugins/ti-woocommerce-wishlist/integrations/automatewoo/trigger-wishlist-item-removed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¢\Ì\Â2\r¸\ß1\ç–bÜ°•s',_binary 'Vj,Y‹\ãCGª(\êNþt!)È€\Ã\ãN»_a–$\'óÊ±õ','',0,'?'),(_binary '9L>§šh9Â³k“\ì\"','wp-includes/blocks/navigation/view.min.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%N’N„—FO¢¾ª\Ðñ6',_binary 'Cøµ[úL\ÂÁa\Ïve\ÉM&\èn\Ü8o\Ênr¼\Â#\äo','',0,'?'),(_binary '9O‡|\n(*nAŠÿ£À','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-cart-switch-lang-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ôZˆ\0#5¬\ÜG‹–goxT',_binary '¿Fw¬\ç.|vz„\çÞ¹õƒ—o:\\\é\Â÷‹‡K\rsk,ü','',0,'?'),(_binary '9Q\Ë\ãRK^j>\Èó,\ÐEú`','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/empty-cart/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ\Ø\Þôf*LQ™ñ\î†j',_binary 'À{JÅ¢\ãc’\Ù&\ÜU4#û’\Â\"	˜‡=/ðñ|\í\É{','',0,'?'),(_binary '9\\4;À¼J;º\ë\Îu\Ï~²','wp-admin/images/freedom-4.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ôšr­[#¨\Â\îjR]*\Þñ',_binary '\ê-4£\â\Ò÷ð&\äo\Ùs‘·v/1\æ^+UsRþM\n','',0,'?'),(_binary '9fPñ=•p«Mñ‹šv‡\ìO','wp-content/plugins/wordfence/js/wfglobal.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jf\'‘?gÀm:›\Ã¹',_binary 'X\äc\Z]R@ø\ä1Šqw÷)\Òkl©Q¸\Ì\ÜQ\Ü','',0,'?'),(_binary '9k¹sB\Â\Î=}\Õ\íTÅƒc7','wp-includes/sodium_compat/src/Core/Poly1305/State.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Vœ\È\ÏzÈ’¹ú`(\ålE\Ò',_binary '‘º\Ú\ë\Ð\éâ¯ ç›®\Ùö\Ü\Ö\ã\ßÔµJ±\\\Ä_øz[','',0,'?'),(_binary '9wv\r÷\î‘\Û^›«!C©','wp-includes/blocks/image/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w:Œô²\Ð\ÔöJš…x]6',_binary '>¿gµys§‰XB·€C,\'¾\Ä)4‘	œƒ)\áTwqIn','',0,'?'),(_binary '9|;\'C&¯‰˜\n	l','wp-content/themes/flatsome/inc/admin/customizer/img/overlay-right.svg',0,_binary 'x†+qiÀmYC\ìôLŽ\ÓÝž',_binary 'x†+qiÀmYC\ìôLŽ\ÓÝž',_binary 'Á¬\ÉüM»?/\Æ9¡À[$kK\Å\Ö\êbÉ‡/3\ß*)ô','',0,'?'),(_binary '9¶óaù\Èôt\Õ_%#¿B','wp-content/plugins/products-compare-for-woocommerce/style_templates/separate-footer/separate-footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\n2“;%}¢–k+\í',_binary 'ªF—\æ\Ze\é<-(‹\ê[y+?\\„½Ž\n\Ü\ê¸\í”J<þ','',0,'?'),(_binary '9ƒg¡<.\ÔUC€\Çe\át','wp-content/themes/flatsome/inc/functions/function-upgrade.php',0,_binary '…3” bP\é\î\'1¶ø',_binary '…3” bP\é\î\'1¶ø',_binary '8\Ô\ä¾\ÉóR©\Þ\âZ2ó\âñ‡\Æ\rb™ì¤‚\Î\Ç\àh3J\Û[','',0,'?'),(_binary '9-\Ë4X\àŠròª<e','wp-content/themes/flatsome/inc/builder/shortcodes/values/color-overlay-helpers.php',0,_binary 'S˜exÄ»iÌ¹xÛ¡g\ÎÁ7',_binary 'S˜exÄ»iÌ¹xÛ¡g\ÎÁ7',_binary 'À\Çj°…Õ¡ðqO™6§²¤!<vzl¿À¡Œ3{','',0,'?'),(_binary '9|š\'q¨A\ÊF{GD™\ÙF','wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/onboarding-tax-notice.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_¦ˆ+S4ü=\ÞKx¸r\å',_binary '§w‚@°ºQˆÏ°\ïŸ\êF]oódS\ÒB\Îtt”','',0,'?'),(_binary '9\Õü~ øA\êBñ¯\ç—z','wp-content/plugins/products-compare-for-woocommerce/includes/widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'â®K¦bEimACI',_binary 'Kýfª\â˜hª,¼ Sr”¡ÁžQu9\æ\"a B±','',0,'?'),(_binary '9–\Ú°_V\âQa\"y€N','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-coupon-form/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à\ÖEQBÿ\Æc\Í\ÎYj\Í9M',_binary '7þz9\àTß ¡gšþ\\÷\nÀ«”G\ÓWT\r3z\Û)T\"','',0,'?'),(_binary '9—} B^¿²?	\ë\"\ë','wp-includes/script-loader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\í\Ò1\ä¸\É?Bš\äw\'\Ü[',_binary 'b\îIñl€\Ý=,\Õr\Ú#f^.ô°_€Ðž\\\ê\ÈÇƒj\×','',0,'?'),(_binary '9œ\æ¯\Ñy²SöÀ	pV6=','wp-includes/blocks/quote/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_9: \0¥ÁL±v\é6\Ö',_binary 'Ó®5*k”I¦†\Ï\rx[{\Òcò®ª«ý\ã–öý\Ïú\Ò2','',0,'?'),(_binary '9¦_1¥€\àaYu†–ò','wp-content/plugins/woocommerce-multilingual/classes/Block/Convert/Hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'òš\â5\Êc­º-¾\á¸\Ô`‚',_binary 'ô\ËòK‡»x;.\åJ\î\êA•ø§o\Þ›u\Óü3µ9¿\Êe','',0,'?'),(_binary '9²I{l˜)h\ÒL’¶¸”ó','wp-content/themes/flatsome/inc/builder/shortcodes/ux_pages.php',0,_binary 'ˆ“ö$Fy8\Å)¼¶lÜ­^',_binary 'ˆ“ö$Fy8\Å)¼¶lÜ­^',_binary '\äO³:´©—ƒ$\Ýâ¥\ï¥ñ\"[Ü©o M:yø~\Þ','',0,'?'),(_binary '9¶ þ{b\nJc\ÑF=lY','wp-includes/blocks/query-pagination.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2kµ\Ì\á\ß\Ñ+O\ÌA\âS\Ýb',_binary '\n30‰ü\ï™ò\Â\Ê\ßö\å÷½\ËN\nt·HeT5}','',0,'?'),(_binary '9\ÃCe;Y#\èv|z—¡','wp-includes/blocks/audio/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+»\Ö\rW±&0v)n__t\â\×',_binary '¡°\ë\"“ÀAþ\ÅÎ³\Úù&+\Ût\æm%P²\Ï,´\Ä','',0,'?'),(_binary '9Ä Zq:j\nU–9(\Z\0\Éô','wp-content/themes/twentynineteen/template-parts/footer/footer-widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\ÊtsÚ½\ìxÈ5‹ü\îw',_binary '\à\Z&\Ü\áŒ: %þ7?\ÞT\ëb·os¼À,@)kÿ¯·” ','',0,'?'),(_binary '9\ÆQŠx•t…±\Ü\æ8H','wp-content/themes/flatsome/inc/admin/advanced/assets/js/jquery.maskedinput-1.4.1.js',0,_binary 'úÚ¸¾gŒ›\r…\Û\Å]=',_binary 'úÚ¸¾gŒ›\r…\Û\Å]=',_binary '\æ¾v2D\à5\ì\Ü-\î¢-\ßo\å5–t\Ø\Ûtp/¥&\Øb\î­T','',0,'?'),(_binary '9\Í\rûjÛ„\×\Ò\0´”~	','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/empty-mini-cart-contents-block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñ\Ôs\0{S]jW®yµ',_binary '¾\Ðÿ\Ï\Çq~ŠKF„¿ÇŠÇ¥*ü\Û7:ùÍ‘oUv\ÍP‚','',0,'?'),(_binary '9ÕÒ¢\Õ\ì9ñ\ëd\r\ëŠY','wp-includes/ID3/license.commercial.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n;g–üJ€g­²\Æ\ÙxAŽ',_binary '»t_2¿x\Ê<±\ì-Œ£\íËœwq\ÝI¿g™\Éó','',0,'?'),(_binary '9\ÝQ\ÍYôŒf‰1û­½\í','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/shipping-rates-control-package/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³3#4&!¯b÷K\È\ÏÚŽ;',_binary '9­;W\ÊM\ÔsŸGM_‰º”OV¿KBAh]','',0,'?'),(_binary '9\àwÁ7:b.¢N´\ëL\×\â','wp-content/plugins/woocommerce-multilingual/templates/currency-switchers/legacy-list-horizontal/template.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[4\ì†ÁÁ63—\É è“³',_binary '\Ç\ß=P$Ló†i¸°>]køA\äøD½\èU	‹›*\Æ\Ä','',0,'?'),(_binary '9\âŠ\Û 39ûq½;1\Å\æ(','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';÷J\É;\á`Æ’ nH¿',_binary '\rÁ~$š#\Æ,˜[¡\Ç5§g\àt\à\ØW]I¶\Â{8rþ(','',0,'?'),(_binary '9\í‰\æs´3\ÙSZ,p\é8g','wp-includes/images/media/text.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z¹‡s\æ\ä0÷ÈŸQ€K',_binary 'g®\Ê?[õŸD*\ßp”8€qòž\â¸VÑ“\æ‘>ŽõN','',0,'?'),(_binary '9÷Œ\êÜ\nhP„@ó[\Õ','wp-content/plugins/woocommerce/templates/notices/error.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Sö8¸³Ôœ$We—»',_binary 'sB‡\ã#Ž\Ï]Ï•1°·\ïF\ÓÇ¨Ÿÿdy·%d4‹‹','',0,'?'),(_binary '9ú2 ×“\Ò¹®s(Y\Ö\ß','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-large-left.svg',0,_binary '~qLð\Ü5’iu¡‹ü\ß,¤',_binary '~qLð\Ü5’iu¡‹ü\ß,¤',_binary '	¤[öPõ¨.RS\á\Õw\Òw½Š4L\Ä+Â°*wg(\ÑC®','',0,'?'),(_binary '9û£]¯HwU\'’wù©\"','wp-content/plugins/yith-woocommerce-compare/assets/images/socials/flickr.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ,4Ô€‚x\Ì\Øë–›Tcº',_binary '¾Á¦žý\Þõ–aq\ÙÑ®\ÌR \É%\Èm\ï+5Žxùõc','',0,'?'),(_binary ':ˆY7s¡µÆ¿• ‹ÿ6','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?ü\àwNW!Š\"V\É\ç',_binary 'ÎŽ9A^;4(xhBŸŽX\Ò\r3ñm“ô\á¾=\'Ê²Y','',0,'?'),(_binary ':{\Ã\â\ì{7\Ê9°‰Ÿð','wp-admin/link.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \ÉÐ­E J\ê£\ç#',_binary '\×A&0_:|³=)»\ÉDP\ÞY»\\¨p2C\Z”]—]‚&\ßU','',0,'?'),(_binary ':WxOr\î«e)\ÊW¬3~','wp-content/plugins/woocommerce/includes/interfaces/class-wc-abstract-order-data-store-interface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’„½¬_É³û/\Æw†¨\"',_binary '[ò\Üuõ¶ò\ßŸA\Â-c¦<™ŒŽ\íÆ»\Z«ó','',0,'?'),(_binary ':®|LûH6(\Î\ßcµg‚\Ö','wp-includes/ID3/module.audio.ogg.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6-?yÒ¸\Ï÷öq	\É\Ú]',_binary '{Y7n\ï\Ä,·1K\ÉF[LHÝ†\"\Í5¶;%\ä!,…','',0,'?'),(_binary ':1ƒ(¬)p]V1©-È©œ','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Continent.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™qDL‡\ß\Þaª[	?\à¯$',_binary 'GŸs\0\ë\å\r\Ã/1÷v=ú„©\Õ‹·pS-«yE.\Ô\ÒU','',0,'?'),(_binary ':5€ûÏ‡F, ¨\é»þp²','wp-content/plugins/woocommerce/templates/single-product/title.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8œ‚÷\0>ž·þ–]F÷Ý°©',_binary '¼4˜€=¿‡{¡xò—Ê‘xªý\Ä\Ík³3Eª•fù­W','',0,'?'),(_binary ':8B\ÉY©ÁqE‚m^\ÕR','wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Task.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')P)\æ·ö´GŒ\ß0\ØS0”',_binary 'L­ \åª\Ñn G\ïÜŒ¤ª¹^E\ÔKKƒÀ~\×\ÉV¯','',0,'?'),(_binary ':<oVS\ëý–üˆw\ÄM','wp-content/plugins/woocommerce/includes/wc-webhook-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\âm~\é{š\ïø¿¥(\Ö\ï',_binary '¶AÒ¥À\îŒvZc¤Xˆ_\ë_A¤Lz&¤\ã¯\"','',0,'?'),(_binary ':<·$Ž\Í0,w\"&e({','wp-includes/class-feed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾Ž†>ùyÀÜ«¯ÿ]\ÈôT',_binary '­8\Ú\Éj2\Öy\ÜN!qÊ©p±ª†ñù\Ût\0Aõ2\\Y','',0,'?'),(_binary ':D\éJ$\í¥h»†Ç…\r\Ù','wp-admin/js/customize-nav-menus.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\î o\ÝEß­WuaIúo|k',_binary '©R\ï/gO<\åòµ$°\Þœ‘\ïò ]$õ.\Ä[i\ã','',0,'?'),(_binary ':H€\â\\¬\çÑ³Œ‚.3\n','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/error-placeholder/error-message.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°\Ü‚#–8l©¶\Úb8w3\Ô',_binary 'µi¿\Ó»Gµv>}f\"[\ì\ÝI¾\ÔLQ°r<\è<†·','',0,'?'),(_binary ':J1{¢@-Œc6g´\×\Î1‚','wp-content/plugins/yith-woocommerce-compare/assets/images/09-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô~õM¥(Á¶W+\Üjö½H',_binary '\0 ÅŠ¶\Ù\Ñ\å‹Vm)\ËùT„ú<ˆ¿_\îEš¥0','',0,'?'),(_binary ':S9g\ê>p8…pÛ°xY¸','wp-content/themes/flatsome/assets/img/logo-icon.svg',0,_binary 'ù7 5G=·*ÖŽA',_binary 'ù7 5G=·*ÖŽA',_binary '“q½(\è±\ÅÒŸd=¹y$ž°¯2xQW\Z‚Š\æ\Åÿ©	','',0,'?'),(_binary ':\\Ü¹\r@‡‰ˆL\"ú:ŸU','wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-status.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\É\r\Øf’±|\ÅÝŽ\å_u²\0',_binary 'MõœD¼\nRå¸\í‘Xù‰†û=úŸjò„¢Ð½','',0,'?'),(_binary ':]Î˜5U-G\á“\î1©\Æ','wp-content/themes/flatsome/inc/functions/function-global.php',0,_binary '/1¸\ë‹\ä˜NJû%\âP’z',_binary '/1¸\ë‹\ä˜NJû%\âP’z',_binary '\ßÍ¹o\n\n‘\Í\Ð\ÜQÆŽ\r\r0”\×dŽ°`M<n{','',0,'?'),(_binary ':k5cý\ê©\ëŠ:b¾N~À&','wp-content/plugins/woocommerce-multilingual/inc/admin-menus/class-wcml-admin-menus.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^´À\ßE2’À:ø«\rZM',_binary 'yGmg™]š\ê’\é\ã ô‹\é^1\Æ]\Ëu!ªkÉ³','',0,'?'),(_binary ':rùt\ÅÃ©¥i4lTOÖ«','wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_ListTable.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!HG œÌž¢´´òl\Üþ\'',_binary '\ì\áãƒŒ¿˜šz\êcJ	X\ÝÊb\Þbú›^—·}œý','',0,'?'),(_binary ':…V_XˆK \á­pÑ·p','wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-twenty.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\'\Í\rx\ß\ÄP:\Ïû1\\R',_binary '±6ª0×›\êýs¤9¤\×{V‹úõnœ®\â´~=¬\ÈÀö','',0,'?'),(_binary ':ŒŠ\å%H`!¬û\á\r\è€Z','wp-admin/js/media-gallery.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'û—ðK;p»O…?F`h¦w',_binary '¤[»Ž7\å2Ÿ¢s¢®¥d`¹Š·\ì\Îõüðñ«Mo','',0,'?'),(_binary ': \Èø÷2\Ú\Ó7­—t','wp-content/themes/twentytwentytwo/templates/404.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«\Ù”\ÇTgœ\nm&\Êð\Ü',_binary 'þö5ø±\Â\ÏKòúÁ½)`0U	dúsŸ”Í³T','',0,'?'),(_binary ':°%ð°\Å(v5„\Ôq¥0','wp-content/themes/twentytwentyone/single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŸZ>\\¶.\Ë/)cLV\í\"',_binary 'œ a§Tƒ–tù\Ë˜•.t:Ž®,Šv\ì\ßpÚŠ\0','',0,'?'),(_binary ':²\ÇX%\Éx4ýXà£¢\É','wp-content/themes/flatsome/inc/admin/options/header/img/header-simple-right.svg',0,_binary '/\Ê\ßcœ‚†Y\ÒÍ•Ÿ¯$',_binary '/\Ê\ßcœ‚†Y\ÒÍ•Ÿ¯$',_binary '¨lð8‘#\åa-`¡\Ý9\ä•Xš$\è:@a§›KµV“¤','',0,'?'),(_binary ':ÁA(õ\Ø\Öº\ìßš\Âgp','wp-content/themes/flatsome/inc/admin/options/header/img/header-default.svg',0,_binary 'G•Šú\á8¹Á§E€\âY–',_binary 'G•Šú\á8¹Á§E€\âY–',_binary 'Ž%\Ìp\×X³§?¨”´x\ä¯/ d\Ü>ý‘’33½fC3','',0,'?'),(_binary ':Áùs-(B§¢ðO\Í2ˆ\ä)','wp-includes/blocks/cover/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o³.+sŠ Ns÷´\ä]',_binary '¸£É‹J]\Å\èW?;:õP\Ü]A¶k\ÓyT¯{','',0,'?'),(_binary ':Ð°ÀO–{ÿº9','wp-content/plugins/woocommerce/assets/client/admin/app/index.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Öµ*[\ÌG$—\ÐJ°–u[U',_binary 'a#ò)ýaH9ÁJmA¶³LGk7b\ì\Í\ÏA”\Ù\Ç','',0,'?'),(_binary ':\Øl#H{Š\ãö ©«X','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sku/constants.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ó™LY_JM*E6w	Zó',_binary 'I¥–€•¸ö÷\ï`){›\àsK˜ •{\ïÄ³¡ŽB½@','',0,'?'),(_binary ':\ámöpþ\Ë\0[\Ñ\È$¡Õ´','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartRemoveCoupon.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EG=À¯ñÓ·ð\Æ3.l',_binary '\å\Ì\ì~9nv\Æ\ÄÁ|¡Ž˜Esñ*(\î¼j„³\äv+\Ü\Ú\Å','',0,'?'),(_binary ':\ãøÇ’u\Æ#‘·‹\Ó‰_¨','wp-content/themes/flatsome/inc/extensions/flatsome-live-search/flatsome-live-search.php',0,_binary '\Ø\ÏlÑ¦÷p\Ð;[T#°D¬',_binary '\Ø\ÏlÑ¦÷p\Ð;[T#°D¬',_binary '€93nG	gxq¢\Ç0­#‡«oMWf\Åq\Ð\ÕpLþð','',0,'?'),(_binary ':\ä{\ì)\"\Å\Õ\'\"¹\á','wp-content/themes/flatsome/inc/admin/options/blog/options-blog-archive.php',0,_binary '\r—ü²\å\'\ÐT\Ùþ;F„\ì',_binary '\r—ü²\å\'\ÐT\Ùþ;F„\ì',_binary '\Ë%\Ñ4\É< ú\ä\É\ê@cÀ0F+ON+ 6Of\ÅVÍ¤\âl','',0,'?'),(_binary ':\çe©VŒ\è*°9“	\r\Æ@.','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Parsing/UnexpectedTokenException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'öJð+;\ÔN\0ÈñMU@',_binary '	y*\Ê#-\Ó\0\\\Ö+ªŠq6Zn#+uõ\Ä\"\ÃÕª\â\å±7½','',0,'?'),(_binary ':\ïXqÝ¯J\\¦5Pò¶4','wp-includes/images/spinner.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÕLõ\nD½\n\ÊoÙ‹\ÔjË²º',_binary 'zÆ„\à\Z\"ÿ²n\Zs²(\ÎU¶/~÷7º€F«ø^Â…\ã','',0,'?'),(_binary ':ðc`¼VÀ6\é*A~','wp-content/plugins/woocommerce/src/Internal/Admin/CategoryLookup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\Ñ&\rœ•È¼\Ç÷C?]\ßU',_binary '–\Î\×L®\nXžl	/\"¶‘CwK®s\ä&1ad\ÓI¿5\Úü','',0,'?'),(_binary ':÷\Z\Z\ïöˆœa Ÿ\å\â\ä','wp-content/plugins/woocommerce/includes/tracks/events/class-wc-importer-tracking.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D .œ[½§\Æ\Ì\Ò\Í=\á',_binary 'H‹–X>’dsŸ&E•¢>[s•\Í	\0Á~^\ÎC[9','',0,'?'),(_binary ':ùnÌ£RM\ëti#šõ=','wp-includes/images/media/audio.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†taCAñ¾\Åþ².·\çZ\ßÀ',_binary ' L\ä>¢‘$¨Á\n²oixoj-\nL\Ï\ÓõÀ\á]G;q','',0,'?'),(_binary ':ÿ…]ùa\×y³#s\ÖÍ…','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-guards/boolean.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9I\Ìo=T \Ý*\ãž\ÓJN',_binary 'E÷ÿ1~~½*Ê§+‘N\åVö\ê9vþ2¬\æ{¬','',0,'?'),(_binary ';#¿	n©\å\Ü%\"õù','wp-includes/Requests/Exception/HTTP/404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à® \ê˜\Õ{÷yÊ‰2£l',_binary '\Â\Õ-!V°»>d¦*jPŒF\Ý	\È;QÆµ±šN1aGœ(','',0,'?'),(_binary ';|\Ý\Õ11†Ÿ·‘•yÁ','wp-content/plugins/nextend-facebook-connect/admin/templates/settings/general.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8µÀwxð\É/ðÿ‘Gø\Ø',_binary '_–iŠ\Ãü¶’ˆM\ÛoL\ì ÿ\'=5g S¤d™4)','',0,'?'),(_binary ';·\"kNkg@s\ßÁù\é','wp-content/plugins/woocommerce/src/Internal/Admin/CustomerEffortScoreTracks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\"\Èu[-w¡\ÛiVV³',_binary '¾}ÿøkr…#±~\n8	ubT›z\Ï\Î`0’Zñ\Z\ìƒ','',0,'?'),(_binary ';\Þb­fÈ–0ÿ–¦­x','wp-admin/css/colors/midnight/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ûj£¯“¹“I]¿\ß\ï\Ê\Ò',_binary 'j‹»M‚¬û\0\ÂP(\ÚBCØ¡`Ð¶÷F\èFF+¼\Â','',0,'?'),(_binary ';Ü’scF\Âüõ!\áœ©º','wp-includes/css/dist/components/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å	µž\Ï3­Q+\Þ\ÃYj',_binary 'þv§´\ÚÀ\Ó\âÐI‘\\ ­\Þ/-V¿lŒµq—KrW NM','',0,'?'),(_binary ';!\Ë\'Ã.Ýˆ\ã^\ÐD','wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-architecture.php',0,_binary '¯ª\Ðe%ó@\çR6\Â\îÁS:',_binary '¯ª\Ðe%ó@\çR6\Â\îÁS:',_binary '<ð±w 4\Ô\î‡7¿ü­G\ïZ\ÚEf´5–r©D2\ë','',0,'?'),(_binary ';_ó\r\ámD—,š,¤\Ã','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-select.php',0,_binary '“¦ý\âÄŸã£¤V6¸\\y9',_binary '“¦ý\âÄŸã£¤V6¸\\y9',_binary 'ÀBCN05cÙœ\Ó\'ƒ\ìû\Ê;c»»ZS,“3ù\ÙSñ','',0,'?'),(_binary ';¡\á\à;ºÄ¦\ÜÛ±++','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-wpseo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…€~q\É\ï%œJ¢\Ä4£',_binary '¤r\'‰·g-\îEü¿\Ó\É=D¡\î²\0¸\ØY\èŸúIƒ­C','',0,'?'),(_binary ';v\áøù”Ž¶—G\Åw\æ\Ñ/','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-sale-badge/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'RG\Æ2‰\Â\Zooü\çY¨',_binary 'b\ãƒK?‹˜\ëóY’·3‚\Ô\Ç\Î\á[bË“±$\Âw}','',0,'?'),(_binary ';XFøÞ¶&öÔ§\ás\è','wp-content/themes/flatsome/inc/admin/kirki/modules/css/field/class-kirki-output-field-typography.php',0,_binary '±QU\ì/2e\ÑT¹¯©µ',_binary '±QU\ì/2e\ÑT¹¯©µ',_binary '&ªü†B%§\îC vþS\äˆñ¥·\ÒU\\c|\Ö\\6.¶','',0,'?'),(_binary '; =<zŠ+M’\Î[:)','wp-content/plugins/woocommerce-multilingual/compatibility/res/js/wcml-bookings.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°\ák\å–û\æ­\Øñh–ü',_binary ';•D{:o“”^U¾¬Ž\0\È„\\òA¯\Õ¦;´X','',0,'?'),(_binary '; öMû§H\Õò¿\Ý\'7\Ü\ß','wp-content/themes/flatsome/inc/admin/options/options-depricated.php',0,_binary '\nëŸ«¤Æ•=¯añ\ä$\È\ë',_binary '\nëŸ«¤Æ•=¯añ\ä$\È\ë',_binary ':\Ç\Ív•5\í£\×d\ÆZ2\ÒZ\íß·\ìh\é÷£¨\Å\ÝTƒi¥','',0,'?'),(_binary ';$1€\ïþ=¾rVe\Ök','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-tag-control/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ó“]7ZÀš·\ì\"Ÿ\ÅS	',_binary '\ç˜\Â~X.‹Ú‰ªe÷o6\å\r…~ ‚.+X²\'w','',0,'?'),(_binary ';1Ñ‹#ÁY_N„¥t÷','wp-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!¤\ä&1¹šh\r”[\Å\ß}¤',_binary 'r\Ã\å%J™X,“Z´¢xýJKÍ»(#L\0)úòc­','',0,'?'),(_binary ';3£Jÿòƒ7…ˆô\Ñ>Ä','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/Dismissed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\"ñ4c\Ò\ìZ–:O\ä´\Ú\Ô',_binary 'ñm3F\rfµhV\Ö4³2S½Ð›|¼\æ€Q@¶tõ6e','',0,'?'),(_binary ';7®\ãhDHP1(|nEr','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/settings.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿó\ì-;j‚;¯',_binary '\Î,(Kªr¤]–)Öº›Š«–\îJc~Cûi­Á$Âµ','',0,'?'),(_binary ';=\ã\èl8H0\àk\Ùc','wp-content/plugins/woocommerce/packages/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostStatusRegistrar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñ\êK˜ŒF ±ÅŸ\è5\Ö7{',_binary '—ö\æ*Vu~¸\éŽ\ÊD¶W)raj«j8+\é\â','',0,'?'),(_binary ';FR\ã*%el;sžvmÄ¡ò','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-custom.php',0,_binary 'wñT2G\Ù=Šˆ\åöŒgþ',_binary 'wñT2G\Ù=Šˆ\åöŒgþ',_binary '˜2µC‚oø\r”}qxQ½­Y)<¢\nWv\"©š\Ë>sV„*','',0,'?'),(_binary ';MÀ.8ºÜšd¥i†6Ž','wp-content/themes/flatsome/inc/extensions/flatsome-instant-page/flatsome-instant-page.php',0,_binary 'w_}·—ð°†fHU÷',_binary 'w_}·—ð°†fHU÷',_binary 'Z#>iD3\É\éšÎ&/¯^`™µDJ®®\'út|\Ìd¡','',0,'?'),(_binary ';Q-:@(:85Mµ¯«˜','wp-content/themes/twentytwentytwo/assets/images/ducks.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',öµ\r:«z\Çœ±þ­',_binary '˜‹8“y¬1\Ï\íóšðö±¤µž^“´\ï::&s³?','',0,'?'),(_binary ';Q}]]U\ÅK}9o\é¢\é\ì','wp-includes/blocks/post-terms/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\á\ÑÎ=ýv©sN~',_binary '8Ä¡ò¬Ržpœ`e\×\Å\í°FMC3®|\í¯E¸w\Õj‹´','',0,'?'),(_binary ';Rc¿\ïJû\Å\Â,\ÝSA','wp-content/themes/twentytwentyone/assets/sass/05-blocks/button/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'HI›n!‚\rõ\èZ*\Þs',_binary 'THÿd\ÉÁ¼¦\Öy\Âòx?\æ ½mP\åù\í}6—3V','',0,'?'),(_binary ';R\Þyh›\ëŸ\ÐRxK\r','wp-admin/js/farbtastic.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§:óT 2Aq]†˜þ\ê4’',_binary '\Ébt\éGp®\0BM0z\ÂXJvœZHAt\âM¸%','',0,'?'),(_binary ';X¥›X\â§Q¡1­\Ùþ\Âþ¥','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/InsightFirstSale.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°CÀ}\å\Äd*^U”\Ë\îW',_binary '2¼£÷°3‹\ìo4!°û\ÕQ\0B‹¹ü\"‚h\í+$@A)\î','',0,'?'),(_binary ';[ñ›X\Û\ï’@~\0ZhZ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/summary/attributes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Uÿ‘gfZ\Óº‹\ç¨',_binary '^¢ý°º9”av–1…\â=ŠFò\áZºS¡]K@O\Ö\ï\"','',0,'?'),(_binary ';n\à›CgŽ«7$Ž;õ\ï_','wp-includes/blocks/media-text/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>Ú¸À\ZBhR«;£\Ùý…ª¦',_binary 'ŒÀ\Òã”»Ø¯“«œn¦×³P„å«§½÷Z€\å¹K(¦`0','',0,'?'),(_binary ';xU©u¼`}\áU£ƒ\ß','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/repository/class-otgs-installer-repository.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%•9m\n47lyw«u(\Î',_binary '’Ž@5ù6p÷{yn:C\Z\'°û›~Ö°—µ\à\Æ`\Í','',0,'?'),(_binary ';ŒZ#\í\åø!²b†jw','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/editor-context.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—­{\à\Ö\çY3¼¢¼¥',_binary '*¯¿ñ3œs#¦­9øs•\Z\Ëä¤­k\ï®\ç\Ø\Ê÷`','',0,'?'),(_binary ';•‘ß¯Q·\êR¢\ÏJ','wp-content/themes/flatsome/inc/builder/core/server/src/Options/OnChangeHandler.php',0,_binary '¨Uj…\ÈS6\Ë\ì\n\å]L©>',_binary '¨Uj…\ÈS6\Ë\ì\n\å]L©>',_binary 'T1ò\ÐSò}I³V‰ÁBb.Mý\ã\"_Kû\ç´™M~','',0,'?'),(_binary ';˜w_D	 3 U•ñufˆ\Ö','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart/constants.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÌH\×\ÐO+=¨\Ç+¨L\Üný\à',_binary 'ûBÑ†‚Ù…Ä—\á÷q<\çk\ÆB‚\\§$\'‡ûIv6','',0,'?'),(_binary ';Ÿb\Îk\Ùðœ@\äc\ì','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/editor-block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qg\'±@À\Ãð,š\0*«\Î',_binary 'WùŽ`nL7s`\Ä÷…\Ðúž)‘u­\Ýò\ë4	=','',0,'?'),(_binary ';©‘Es3\èK¸6N\ßø','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/yith-icon.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V•GIñ£¢Ö’\Ò¡Ýƒð',_binary '\Ê~\ÄG 2Š\Åüž·Ú³\Ã\0Œ\Ã&^){','',0,'?'),(_binary ';°×ƒ\\¢\0ÿ\ë@\ë¤5=H','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/PerformanceOnMobile.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lEl;“\ØJ\ëat\äÿ\0p\à\è',_binary '\È\ãC¬\Îùf\Â\ì+Ð©úøõ\n\r\Èg\Ì‡\ÉK','',0,'?'),(_binary ';°\ßð’ì…‚ŸD\â¥4¼÷','wp-content/themes/flatsome/inc/admin/options/header/img/header-wide-nav-light.svg',0,_binary ']°\ÌSó\Ì(Ì£\ì,¤\ÑQ',_binary ']°\ÌSó\Ì(Ì£\ì,¤\ÑQ',_binary 'ºº\ÏIY \ZjlñÀ‰‘v.V‹o§\â\à—’•wº4}‘','',0,'?'),(_binary ';¸,–\\\ÞÀJ^€\à\ê¢eó#','wp-content/plugins/woocommerce-currency-switcher/classes/statistic.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'øˆú.MV{\éEƒ\ß',_binary 'Ó€÷·9m?ã££ygy\ÅQ\Äj‡\ï‡E¶M†\êÿƒ','',0,'?'),(_binary ';\ÄÌ’.ùü)gPŸ\Ó0\Ý','wp-content/plugins/nextend-facebook-connect/includes/oauth2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÈÞ²\é¯\"Bg\Z 3\Æ',_binary '\Êw›\ÚoˆK$n\êwòA¹ …–Tl=™›\'À9?À','',0,'?'),(_binary ';\Ó\Ä\à0a\Æ\ZY\\¥‡=','wp-content/themes/flatsome/inc/builder/actions.php',0,_binary '\ÍŽ:ö§Gú‰«Nz',_binary '\ÍŽ:ö§Gú‰«Nz',_binary '\Æ\ÖSµ\Øø…Tn\×Z\í\â&\Ë\íTE(\Ú!$\åw\ÜU˜\Þf','',0,'?'),(_binary ';\Ôw‘À–\äQ“W\à','wp-content/plugins/woocommerce/assets/js/admin/network-orders.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3¡Â©L/«\Ûrp‘\â\ìt\å',_binary 'ÿ¤ðD\'\Î\é¯cŽõ°›k\æ1U\ïýŽ…\×Èœ]<','',0,'?'),(_binary ';\×vð0BK¬¤µ\Ä1Ð´','wp-includes/sodium_compat/namespaced/Core/Curve25519/H.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®+o~˜¤Xü\åÝ“\0\Í',_binary 'xX·Ñ¹\Ú$6\ÜUdZ$ü\Ö\æx—Á¤\ß\Ø&3\×','',0,'?'),(_binary ';\Þ\n^EÁ[”6\â‹÷','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/DframeInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';<J»¾\ÔE&$óô”d§c',_binary 'q%>D·$$¥‘‚\å:üŠ\ãjúõŽž\â\Òk ¤z\Â;\á“','',0,'?'),(_binary ';\áH!\Ø+lFÀ¬«n\æ˜','wp-content/themes/flatsome/inc/admin/customizer/img/nav-wide-center.svg',0,_binary '[¡±\éu±F¹X,2\ê\Ã',_binary '[¡±\éu±F¹X,2\ê\Ã',_binary '­‡zÓ¦\ì~÷=úD¸\Zm\Ñþ3­e“ZK\ëI!¶Y“§H°','',0,'?'),(_binary ';\é(óy­q(@@¸‚Æ ñ','wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/print-shipping-label-banner.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[ýn}»\áòG\Éœ\Ê\Ë\Ðk',_binary '\'¢²7¹¸\"¨fž1\æ\\\ÆUö~}¶r\íJ$A8œ\Å•','',0,'?'),(_binary ';\ëd+;¤C­€?\Çÿ\Ý','wp-content/plugins/wordfence/modules/login-security/views/options/option-roles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Å*2\nŽý¤gç­´{Œ\È\é',_binary '{º\Ç\ã\Ìuú\íÇ˜‡g¾¨\é\àL\Èn}\è¯Sû\Ã!NÏ—','',0,'?'),(_binary ';\í2ª÷yT\ÞWðKsª¼˜a','wp-includes/blocks/table/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S0¥®\Ë/”0ò7ð\ê\Ü\ï',_binary 'žT”H\'~!)ð8¨E\Î	©…\Ù\nP%Zy\å·\È8¯\Þ@—','',0,'?'),(_binary ';ñWct\Ô\Ó\ç*+÷¬Br\Ê','wp-includes/images/smilies/icon_surprised.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\ì‹\Þ-\î\ë#+þö¶µ0\ç?',_binary 'Ž•cuy—XŠØ“\ßA¬\èd‰5[=w>™*Sˆpwe÷._','',0,'?'),(_binary ';ò0r3vE¥,\Ù:\0 -½','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-express-payment-block/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç»zO$ó\á»O\ÌjDŒ?«',_binary ')\ítþøöø­\Ú6\ê·HT¿)a5\êI\Ûþ˜t?\Çj#©','',0,'?'),(_binary ';ó<#\'ƒ\ß/®8_Ø†\ïZ','wp-content/themes/flatsome/inc/admin/kirki/modules/custom-sections/class-kirki-modules-custom-sections.php',0,_binary 'U¯\Í{Cb\áA\ßDNX\Ï?*\à',_binary 'U¯\Í{Cb\áA\ßDNX\Ï?*\à',_binary '”P\Æl°\Ó\äI:¯\îþ\ëBw¬<ø@.$#\è@','',0,'?'),(_binary ';öMÖ¶ì†„‘:0¼}€e','wp-content/themes/flatsome/inc/admin/advanced/assets/js/min/iris.min-min.js',0,_binary '\\ÀTPGC\ÂÁ\àµ>+T',_binary '\\ÀTPGC\ÂÁ\àµ>+T',_binary '=WU_\0œµ¥¢NI¥\â‰\Ý^sZ™\é©<5rHl:1­','',0,'?'),(_binary ';ü\í\Ù\â*1\Zn½\Ã4\Ó','wp-includes/js/wp-emoji-loader.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸BQ\ÙÀ™kh\Ä#\Ñ',_binary '±3™•E÷÷!÷\ç\å|r„.y½¤	ŽuN<\Ùi\×ÿe','',0,'?'),(_binary '<>Q)}V\ë§¤³0\ä­','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/image-gallery.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™\×\Ç¿üO\ä²_\ZBn\Ò',_binary 'K’šÔ8‚\ÂJï±¡§ðnö2@\âÏŸX/\Å*!˜…','',0,'?'),(_binary '<X¨¡Vh´ªÜ³3˜t7','wp-content/themes/flatsome/inc/admin/customizer/img/blog-three-col.svg',0,_binary 'níˆ‡0Kó\Ü]9[K\Öi',_binary 'níˆ‡0Kó\Ü]9[K\Öi',_binary '\\ˆd¹\Ìg´DóP\\t«$R\"Tñ¿A®½\ØüÇ§Q\ç‡\è9','',0,'?'),(_binary '<—–\î¬o\à½\â²Q›\Ç','wp-content/plugins/woocommerce-multilingual/inc/template-classes/currency-switcher/class-wcml-currency-switcher-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž4fðDcóƒ\Ôÿ‰T',_binary '.?m\Æ$\n\ÐRv+\'\Ã}óJÖ•\í:$Ä›[[zºs=€','',0,'?'),(_binary '<$„\È\æ\Ìý4\Ç¥‰¿¹','wp-content/themes/twentytwentytwo/assets/images/icon-bird.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Fy*\Êj+X\Ê\à\Ëõ\Òh',_binary '±\Ïw\ÏHxa?S…@Àß¦\íZWwÁ»PýwôIŠ\Ð','',0,'?'),(_binary '<&\0\Ôxñ\ÉN‰\"¿\Ý/\ÑÁ','wp-content/plugins/woocommerce/legacy/js/photoswipe/photoswipe-ui-default.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ú\à\íLd…\í\Ïn\Þxö',_binary 'F\ëú·\ÞQM\äý:oCú*Çš\íY7µºR6©ü\Ê\ì–VŒ','',0,'?'),(_binary '<*ð\å.©C“\0q\é2£','wp-content/plugins/woocommerce/includes/class-wc-background-updater.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VJ\é^mj\ãÖ«uÅ kÉ´',_binary '…2Iƒ2<¦p™~\ß}³n–_;k\Òp¯†µSfŒ¬V4','',0,'?'),(_binary '<<\ïñ\Æh9f\ÌÄµs','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-woof-woocommerce-product-filter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—ñBŽ?¥º5\'ö»˜ood',_binary 'ô\ç\î\Ñf“\ãÑ”;&¸Võ=\ç\Î3\ÒS|‰,‘‘ ö°\Ö','',0,'?'),(_binary '<?¶£Þ¨9®Š™\îo,M','wp-content/plugins/nextend-facebook-connect/NSL/Notices.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ï«©\Ó\ç<e‡’\Âk¯±',_binary 'õk\í—ø“/ù\ÉŒZ¾”¦!{n¥\ì\Ñ-Šd&W^½','',0,'?'),(_binary '<@1©ºõ˜xmŠ|l³A','wp-content/plugins/ti-woocommerce-wishlist/integrations/woo-advanced-qty.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2AK²\è6–\ÐVŒ¤Ye\Ù',_binary '¸Cýmwç ²3\á4[1œ~Z¯šZ\ß5Ëñ–0r','',0,'?'),(_binary '<F\é\ë\ïPz\Ì22£‡~','wp-includes/js/imgareaselect/imgareaselect.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}(\Ê\Ù()³\Ö3 ‡µóµ•¯',_binary 'žqó!Ý¿JÓ‡—öi\nÁE\á­5s\å!\r—…%ƒ','',0,'?'),(_binary '<HŽU&™B\å\r\Æ+Á\í','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductsByAttribute.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Å‡{±I\ÐE`·\Ó\nF°ƒ',_binary '¦\\HX\'òb2	8PA¸ö\rIn\Òh\å,\Ù_§þñ\Úð','',0,'?'),(_binary '<YD\Ø-‚A\Ø\'\Þ|)\à\Ý\é','wp-content/plugins/wordfence/views/user/disabled-application-passwords.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%t\í®Z)\åâ™Ÿ\Ç÷V¡',_binary 'šñGÍŒ\Ñr†A{\èü\r`\rY\ë²ø•÷}~h™\ÌJd¿','',0,'?'),(_binary '<_-|\Ú@iTÿ÷\æ\Ø\ä','wp-content/themes/twentytwentyone/assets/sass/04-elements/blockquote.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÑJRù¯Ê‚Á´§1¿ê™¯',_binary '¸Xý\ä\ÔYò¸¶8„\ÌƒkcT…‰W<+ò\à\ÚF2ªi','',0,'?'),(_binary '<còc’WX\Î3Žù³•\Öu','wp-content/plugins/woocommerce/assets/fonts/WooCommerce.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7Iœ‡‘\Ð³ö—\0\Îi',_binary 'þøºD£o(y§\à6*úB1}\çeMq\åFúN?Ô„S˜|','',0,'?'),(_binary '<lÁ«w»uDÕ­Ù“I€-','wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-attribute-translation-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\Ñ\×G_]D\'€:ó…VAª',_binary '\"\Ø)9hŒ½»¥_]¬G\Ò\Ò\ê~È‚û\åw©ù6;Çš','',0,'?'),(_binary '<p}\áøx\á+\Â;µ£ýÆ³M','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Â*3]\Þ<\Íõ\Ý]\È\'Ž–',_binary 'Ð½rt\Ò\Û}¾Q\Ù7üˆ@¥ÿI=}´amu“(˜Q','',0,'?'),(_binary '<rI¿¡5¦\ê¢ûÙž~','wp-content/themes/flatsome/inc/shortcodes/ux_translation.php',0,_binary '`-\\\å2\Ý\0Š\'\ï	\'¬Šý',_binary '`-\\\å2\Ý\0Š\'\ï	\'¬Šý',_binary 'A£\âe\Ã?7D@\Ò\nwûš§‰8Ÿ1\ÊsSg\Äx;','',0,'?'),(_binary '<r[¤¾0»€	¯Ÿ,Mõ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/filled-mini-cart-contents-block/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'žý3®‘9,R\Ã5&\ï¬0u',_binary 'd-z\Ç\Ù\èÛ„¤\Ò\rƒhN[ôžÁ³x#7T”½','',0,'?'),(_binary '<s3\ï.™\Äø\ËÏ’´!$—¢','wp-content/plugins/woocommerce/templates/emails/admin-cancelled-order.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“8m\ìù\äŠZ¡\Îw(\Ù\Ê',_binary '¸5\î\Ì[/D\Ä]\ngkø‘/‘\ÓP‘GlŽÎµ…£°l\'','',0,'?'),(_binary '<|q„|xÜ²\\\è\ízZ´{','wp-includes/blocks/page-list/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SZ\Ã82\Ö\æ º½p2ž:',_binary 'ò<™2´òk=\'NYDƒnjy\rÁMf—›¨\0ô\Ü\'>','',0,'?'),(_binary '<Ž!}K\íûA\é,\r¢y\Ñ2','wp-content/themes/twentytwentyone/template-parts/header/site-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰-ª,’\\ð\ÎU)\È$!&u',_binary '×‚[ñ3,=\çYÓ»nz;²LQS1\\|\É5Ñ‹@','',0,'?'),(_binary '<‰9þuþj³®ÿ„!Á$','wp-admin/css/install.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬¤]Ou½÷‹\é\âO',_binary 'uµ?T=fƒ\çx $dbk./Nø­*ÍŽôi\â\à\Ã','',0,'?'),(_binary '<‘\Ý/ý§Š¹Ÿ<\Ö×†V','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/class-version-loader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' Àg\ÏcC,×†¿?¯\Ðù',_binary 'º•s~k*‰\ä|\Æñc\å(°S)-u½ª\Ûû®‡','',0,'?'),(_binary '<©¹e\çù\ç\è\Ë\ïÁ5','wp-includes/blocks/block/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9û…\åMô\Ò |T\'§Kvyñ',_binary 'U\æ\Ä\Ê@&?b¶òK»\ÍRŽ[,ø3‚µm\Ô.\ZÑ®b','',0,'?'),(_binary '<¹ÐšËª\Ôû§\Ú\\\å\ßu','wp-content/themes/flatsome/inc/functions/function-custom-css.php',0,_binary '‰ôXt§ûLJôü%Ù»¥+',_binary '‰ôXt§ûLJôü%Ù»¥+',_binary 'üÁñB\Ä\ÏCz8mx\Özdz\r\n1‚Õº0|—Z¯\é','',0,'?'),(_binary '<¼\ÔÅÊ¤Gß‰\é°9','wp-content/themes/twentytwentytwo/inc/patterns/general-video-header-details.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ð\ê\ïX	Š\Õ\àššõX½~•',_binary '\Èó7Ìpo3dO]/\×:\"¦\å-J\ØûN>/\ì™:‰¿\Ã','',0,'?'),(_binary '<\Â,÷š1:LR²\Æ $ü','wp-content/plugins/woocommerce/legacy/css/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³hcÞŸ„±1\Õ\ä\í€\Ó—D',_binary 't\Ä\n†„7e\0\ÎZ¦\ÉI¬˜|ÅžŒ÷Ãœ0•\Õô+–','',0,'?'),(_binary '<È¦Ÿ£\Ù\Ó_okÉµ\\–','wp-content/plugins/woocommerce/assets/client/admin/explat/index.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r±3J\ß\Ä{‰õ”P«ø',_binary 'ôGO­\rwgAùdk`~\Þ\ä3O\È1!„pôe@ªŸ\é\ê','',0,'?'),(_binary '<Þ¤›l\çöùK`¯²i´\ì','wp-includes/blocks/embed/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J¶\àWc}¤œ\ì\Ó\æØ“Çš',_binary '\ÙvºU0»|$\\œ’Á´^ùü?L¸§Á˜dlð_','',0,'?'),(_binary '<\ß£N{„Õ”§gXÀ±¶','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/error-boundary/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7†\ä\ÈÆ³s}•­\ã²ŠV',_binary 'Þ±*\Í\ÉINS\ìfu`Ža9w¹‹v÷P\\¦“Æ›Oe','',0,'?'),(_binary '<\æhj\Ø	Ž4½»˜4a\Ð2ö','wp-includes/js/utils.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ž§2¤š¤![pNI\é5',_binary 'iII4\ï*–\á{FZanúÇ \Ñ)J,T\Ð&µg³\à','',0,'?'),(_binary '<\ì\r“_!5!)1¹Trü°','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/select2/select2.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\Ë%\â€\Ã\Ü\Ì|=2\Û',_binary '¦z·Cd\å\Åw>R\ß=™û \Üt:dcKgK.XC]Ny','',0,'?'),(_binary '<\í]’ž\"mŽu>›fNC','wp-content/plugins/woocommerce/includes/tracks/events/class-wc-coupon-tracking.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»ie}¬\r£\ÌGncn‡´',_binary '\ï\"ü\ä·\é›y\Ý!7CøóøökK\ÉŒ‚.!\Ò','',0,'?'),(_binary '<\ï\Îuê¿–\ZÜœµ\ÇY\Ô^','wp-includes/js/tinymce/plugins/wpeditimage/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Öjø<\æ—]\Ø@‚™¿À	4ù',_binary '\r]\"\Í\Î!ž\'sg=–™ªú\ïzÄ·Q˜\î2\ÇNK\ë','',0,'?'),(_binary '<ð;z_\àh{³†4HšmQ\Ï','wp-content/plugins/woocommerce/includes/class-wc-product-factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Á\ì\Ë –¿÷\n&ö\æ.“WU?',_binary 'Éþ¤I»D_3÷‚ Þ§`\íO[„¼w•U†‚\Â\"x¦e','',0,'?'),(_binary '<÷e\áòSWeœ\Ý7¿!Æ†©','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/css/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(GT¯ j\0V3FYœF¿',_binary 'k·\ájQ\ê\É1dy«	ž8H\çi\r\ãý?³\'$aÁz«ˆ\Þ','',0,'?'),(_binary '<ø¡\ÄA38f7\ÜóÈ·¶u','wp-content/plugins/woocommerce/includes/wc-user-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ý~\á|¸,£\0#+\\mr!\Z',_binary '+—zLN\Ê\á\í·õ\ç\ËwSguò\àc÷¡„…œŠ\\«#','',0,'?'),(_binary '=ƒ4\è4œRoMû\\','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-ru_RU.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\îø,PƒdcšGq>Á‘\æ',_binary 'ù!uâ–F\å\Îz‰{‡€ð’\nq¹·ÿ>\ÕÝª6¯EL¬®','',0,'?'),(_binary '=\ÎÉ™\Ò\Â\Ó\'‚\ß\ß \ä\\','wp-content/plugins/woocommerce/src/Admin/API/Reports/Taxes/DataStore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\Z®¢—u\Û\r\îgŸT',_binary 'Srp>m´v9S5\ÞÂ­”²Ác\Î\è\ÜBY)b\ã–','',0,'?'),(_binary '=J¬¦Ç°jaŒ}LI‰Z','wp-includes/sodium_compat/src/Core/Base64/UrlSafe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±ÀpFõñt1\Æ+öÀ»',_binary 'þ;‰}\Ûü\Ç\0[·ž¾\'\rq\Î\Ä\á\Ú\ÜÄ¥d\Ý;#\æ°.','',0,'?'),(_binary '=\à…º½O§\ÌVAk&õ','wp-content/plugins/woocommerce/assets/images/onboarding/payu.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»Ž=\è!\Z‹«\Û\ÚEø-9þ',_binary '-£´›(²\ì|‚¹@Ew² 9\ìO\ÒY<l“8–‘L','',0,'?'),(_binary '=\ê\Ç0¿P#\Ç} ¡|Sª','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/radio.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡qltñ†L\0¼\"¨IÖ¬',_binary '²\Éwœ\n^,^¤\0Q©\ã—\äV*z_¡ˆõ·£”V\Zý‘\É','',0,'?'),(_binary '=	2\çZøò\Ìq¨\ÝN','wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-templates-factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„}ˆ\ë\ÓüRµX\ß\Æ(n+ƒ',_binary ',¹oÁ/\Å6»|#h€v\î?{\ÏX4€õÁ­RiJ ¾','',0,'?'),(_binary '=\×e9¯þ\ã=&¯]<h','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ö¤Ù¢júú@±›\nN­',_binary 'p\Év¶\Ð$ŽLòÎ‹­\Þ,*\æðÊ¸/\à\ã;øR\ÎË¥','',0,'?'),(_binary '=“:úLš\Â\Í\Æ÷ð\Ù','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/label/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ä\Í`õ\Øû9ib?\Í*¹',_binary '\Ûq„,\Î\'¹\Ðuo1¶\Êu¤cž4\îž\él\ÞÎ†\Ï\'©y=','',0,'?'),(_binary '=¿²\Üf;Vódl\"§À','wp-admin/css/code-editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z®¿‹.¿y\Ö\ì^J¾i»*',_binary '{\ë †¹ ²\ß\éÁI\å\Ð^­`Ž«\0\Êøó\Â<<','',0,'?'),(_binary '=d%¨QÀ\Ùo\"Ä¡³#Q','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…&•\íVc”jö–ôª2CD',_binary 'X/LÊ¹jYŸEB“xtºd³¶\Î3÷\íß¶b½·­Tj³','',0,'?'),(_binary '=	]þ\éÿ’}ú\Ü*<.','wp-content/plugins/wordfence/views/waf/waf-install-manual.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pm ª¥…°QýynRPqØ™',_binary 'l¿,\\\â©d.¸»þ\"\ÆbÖ´ðlz\Ôw\Ä\\„E','',0,'?'),(_binary '=%Œ÷ø¿#T÷€\ì\êÜ¬\Ñ','wp-content/plugins/products-compare-for-woocommerce/style_templates/simple-shadow/berocket-simple-shadow.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}MƒÁ\ì\Û\Õ4\åb\Íð6µ\Ø',_binary '\ï‚\ä\Ü\åCy³±E;^Ò’°-C‡\ÖÒŠÌ¢\çñ<j\é','',0,'?'),(_binary '=*Ê¥>Ý†²†ð©ø\Èd¶\Æ','wp-content/plugins/yith-woocommerce-wishlist/includes/class-yith-wcwl-admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†§1\î\îg2\×\×\à\Üqª\ã´',_binary 'Uf¥Q”«%ú,u§«Ñ½þ5Wô:CYN\×(ju„e','',0,'?'),(_binary '=,l§P\ÇX™—7;\àZÿ]x','wp-content/plugins/woocommerce/assets/client/admin/date/index.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç\Õnl0nuw™vH,ž—',_binary '\×\ã(†79\î\Ãx/\Ï\Ü6O–Í…\à\á\nFÁ]\íQ4•kcO','',0,'?'),(_binary '=Aþ\Û3±\Çð\è\ÇZi©-','wp-content/themes/twentytwentyone/assets/sass/05-blocks/paragraph/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Yü†\è\Þh99ZÀ¶K¥…Œ',_binary 'r¨¸º—J6	Y;U\Âž”&\Ø\í4=\Ô5KQŽia\Ð','',0,'?'),(_binary '=G\ß:\âo\ê‰\Þ\Î!»t¡','wp-content/themes/flatsome/inc/admin/options/header/options-header-cart.php',0,_binary 'X¥¸¡H0±e\î7iû–',_binary 'X¥¸¡H0±e\î7iû–',_binary '\Ó\ÞŠ4µ.\×]6IN§÷ghø\Å\\¸©¯=	dÓ¯¤','',0,'?'),(_binary '=JÙ¾iôE\×ô¬ÇŒñ','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/types/icon-256x256.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»¸R\Zý\Êý\ØVj\Ê\Óu\"',_binary '†L3!g~À$\éÒ¸ZgZz\ê~±¨\"=ônÁ¢t-³©','',0,'?'),(_binary '=M\ä‡9\í\ïgU(½\Ò','wp-content/plugins/woocommerce/assets/css/select2.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z,£Zik¥\ÕII\ã\Ç\Ä8‡',_binary 'ü¤\ïb>\ÌýnM …À3ó4‡–\ÅGeWýjÞ£©¬','',0,'?'),(_binary '=S–6\Èa°ŸXo°,”2','wp-content/plugins/wordfence/vendor/autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nŸV8·\\¡\ä\ËBs',_binary '7\îúh\Â\Ü†\Óü>8bºut^^§Rxª26\É#i(ú','',0,'?'),(_binary '=e¢t\ævRZ\Ï\ë’Ð¢s²','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/constants.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K_Ú¶˜‹×½¨3dtY',_binary '\'.¿UŒ\ï·O“$z\ä\rƒ>že \\p†QÛ°-«˜','',0,'?'),(_binary '=f\éuñ¥A><Th–\É\Ï@','wp-includes/js/jquery/ui/progressbar.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' «©A\ë/\ë§ÀFª\åR{=',_binary 'w\Ëö\ëœUÂºö¹\ç]¹üvõµ\n„½7\æW‹­ÔÐ©¢{','',0,'?'),(_binary '=i¶{GˆdÉ¼9ÐF—','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/jquery-ui/images/ui-icons_454545_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\åQ´Ë„‘3XŸ¨hZÎ­\ß',_binary 'nyt¥,ó.#øöp5\Ö@\Ë%6qv\'\ë\å`.ß«#¼\Þ','',0,'?'),(_binary '=n\Ç\àc\æ“X\Û3\Ã','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-product-attributes-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Hd\ÌD~Nb\Ú\á=V6B\è',_binary 'u ¾\Z.˜šúfG\Òÿ\\EL\æ9°\È7ùzpS\ë\Ý\íP\ê	¦','',0,'?'),(_binary '=røÿnszº\Zo9¡…	','wp-content/plugins/woocommerce/src/Proxies/LegacyProxy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§A­›pÎ¥ôD\Ì5ð¨6€',_binary 'IÞºG¯ª-\èÕ¤žò/fÔø¤t¯\×\ÄÚ«pFgM','',0,'?'),(_binary '=wº5•%f‡¨§Pÿ\ãT','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Domain/Services/DraftOrders.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«6ú\rd5ƒ…ŸOK\nz',_binary 'h‹¶¡\Ì8S³÷Ž\Æ\Êo-\ÞÉ˜\Ìñ\àIAl`¦x-','',0,'?'),(_binary '={D“†\ÝvM\×\è¯\è','wp-content/plugins/woocommerce/assets/js/admin/marketplace-suggestions.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«\Òo\ç\ÒqØ¯¼‰ñI¦}',_binary '\Ìé¤”“/žÁ ˜c0lK\Ù\à’iûf­\Ý(¹-\ê(\ÃýM','',0,'?'),(_binary '=‰Q0S\Ê\Ê\Ý8Ž¤u','wp-content/plugins/woocommerce/assets/css/auth-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÜwW³+¼F1\âtBüÐº=',_binary '†ŠN4\ÄÅ†?¥F½K÷[ošs=H2%\ã\Ç\Û?@¾\Èj','',0,'?'),(_binary '=‰J°B‚ž^´\Ì\Ô\"H','wp-content/themes/flatsome/inc/builder/shortcodes/commons/repeater-posts.php',0,_binary '\Å$þ¶=º†úù\ìŠY\Êÿ',_binary '\Å$þ¶=º†úù\ìŠY\Êÿ',_binary '¾„³\Þ8\ÈÇ·zJš!›¡ò­\nŠvO	\Êô3s','',0,'?'),(_binary '=Œ€õ\ì´¸³Šú\\\å','wp-content/themes/flatsome/assets/js/extensions/flatsome-swatches-frontend.js',0,_binary 'sgN\Ü\î\Ü&lef–z\0',_binary 'sgN\Ü\î\Ü&lef–z\0',_binary '0÷l©¯8C{3pj[c^L9\"\én\Ãõü,3GÓ‹\ÇDc','',0,'?'),(_binary '=?Ì¼&tT\ÞR)\ß@\Ä_','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-products-table-block/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹;ZA\ÖW¨ö\Çnü\Åô\å¼',_binary '¼]\ßXr§GF\0\é\0‚¨™ýÃ±š\ãmy@LeF}C','',0,'?'),(_binary '=—1kñ´°¥xC\î\é\"\ß','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-per-product-shipping.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}•K¢r¬0lùC\ß',_binary 'N£ŽMøX¿¼õFF5CH\\\á00†ñ~úp¥m!\ï','',0,'?'),(_binary '=¨¸÷\ÞBø¬„l\Ä)I\Ê\Î','wp-content/themes/twentytwentytwo/inc/patterns/page-about-links.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q¿ 2\ËHÍ†k\Z\ß\Ùù‘’',_binary 'ú&«\ÎD\n\rž\Ûý<~\Ô\r§/4°$r_‡ƒ”','',0,'?'),(_binary '=®ŠÂ±(_\Â\Ú\nª¸œ¢','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/tag-list/supports.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=À‘x¨©\Øüz+\â\"ü',_binary 'k›wŒ.’.‘-˜3\\%¾¬FWE$g\ãØƒ\r\ÊóS~','',0,'?'),(_binary '=°W3Á°üD\åw³¥“\Þb','wp-content/plugins/nextend-facebook-connect/admin/templates/settings/comment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”\Î\íU–\Ö¶hC]\Ê\ï\È',_binary 'hŽ¹2ù/¡iÆ·´¬	\ä^•dq[T(ú”,\Òcs\Úw','',0,'?'),(_binary '=°Šk˜[4œ“¢ ¼=\Î','wp-includes/comment-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}¤-\èz\ÊÁ\é\ç)\ÒSÜ¯k\Â',_binary 'vŽÿ\ÊA\Ð\É\ê<Ä‡ª“\Ý\Ã?bp0›FV³‚Ufƒý\Ö','',0,'?'),(_binary '=³M÷¦U_“Á\Ú\Ç\Æ^G','wp-content/plugins/woocommerce-multilingual/classes/media/Wrapper/Translatable.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '——ŸG@’	\\ºˆ=ž!OZ',_binary '¸õæ¶¿By%­\0Í‚\ì²7’E1Ml¥\Òü\'^Ó¹\é*$\Å','',0,'?'),(_binary '=À†Dêœ½¼‘%n¼›i[\Ã','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­\Ì@5´\à$\Äuoúa \Ö',_binary '…¸À\èN8fý›©?l«\êû}\ï§i­\Zn¼p†\ßø}','',0,'?'),(_binary '=Á$cÀ)\ÍfqlDvI\ÝD','wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/mastercard.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ôYC\Þéœ¤\ÑF‹»\à¥}ŒY',_binary 'l\Ø\à%Æ½:.®ðMX…ûQYx\Ù\çfÄ³^*f6u','',0,'?'),(_binary '=\Ã\0‚\çU^õi¥± ','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zone-methods-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm2:\É5q÷Au¶1	Ù·',_binary 'nÉ‹ÿv\å_³\îÀÕŠA¡¾e\\¨Üš\Ñ<IY	Ÿß¡','',0,'?'),(_binary '=\Æ\à§Ó¨¤\ç¤\0E¨\Ò\Ö','wp-includes/blocks/verse/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\É\Ó&ŽË³\Îû0&Ç«\ì',_binary '\ÜLÔ£W>\Ëzl‡\áf{ £cn9\È\Ã	\Í\ëN€h\ä·','',0,'?'),(_binary '=\Ë €ó9Pv\Õ5ž\ê\0','wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¢\Z@¥\ï\ÂY\å?yYCF?\Ê',_binary '& \Äý\Î²\Åñ{B\Íw\í *»O\î9{‚2¶(¤-','',0,'?'),(_binary '=\Ó;¶{\à³\Æ÷°e\Õ6º5»','wp-includes/js/jquery/ui/effect-pulsate.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{ý\ê/RVt“ü}‡{h-',_binary '¢­\í*×¤PGˆkÿž\\´~¯¯\Z\Ã\ËtmiFCBvX','',0,'?'),(_binary '=\Ý~ô2tˆ¥¢‚L´,½\'','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/selectWoo.min.js',0,_binary 'þjS»yùYQ2òÿMeró\Ñ',_binary 'þjS»yùYQ2òÿMeró\Ñ',_binary '.QH(*ö6\ÉX 1\ÌÓ·*gù\ÝÎ´6\ê\ÎC\ÝO\è#','',0,'?'),(_binary '=Þ‘U FV?\ç0\Ä[\ß','wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-api-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`tFÿƒ$ÁÀù²`ý',_binary 'û¨´¥_yŒ\×Û³\\\Åe\à¿]vp\\Š‚\É\ÛŸ­\Ú\nŠ','',0,'?'),(_binary '=Þ§«ùó6™ª£‰³›eY\Þ','wp-content/plugins/woocommerce/includes/admin/helper/views/html-section-notices.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°÷\Üú‹¦D+dZ‚pr¿',_binary '1»TY˜…È…TŒ47²&evœ„LºP®/&¶n^\ì’','',0,'?'),(_binary '=\ãF\Óí˜£·Ã†±\ÂK&Š','wp-content/plugins/wordfence/views/scanner/issue-wfPluginRemoved.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0ÁK¤o8‹E2–\ï’º',_binary 'ž(\Ü~¯S¹øS\Z½[5E€ÿ!nþB½jõ“ˆD ','',0,'?'),(_binary '=å™„\nA¬K(’’\Òl','wp-includes/js/dist/keyboard-shortcuts.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=‚rœ\Ì++<÷Ú‘\Ã)',_binary ',µQGZ%‡2ÿLŒ/º)\æ0=&¥úQ3o\Ø\Ø$\ë/','',0,'?'),(_binary '=òŒ34\Ç\ã\èxL²€¹¤','wp-content/plugins/woocommerce-multilingual/res/js/wcml-setup.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nO9£ôE-n„{¸3nœ',_binary 'zóŒ\Ü6¤tq—\Õ\æÿh\ÔTªf9N €N¨\èÀ-\È\r','',0,'?'),(_binary '=óR‚û\ãy™Žš\àX§\Û','wp-content/themes/flatsome/inc/admin/kirki/controls/views/select.php',0,_binary '×š[Žº\Í\Û\Êë«Š\Â3MN&',_binary '×š[Žº\Í\Û\Êë«Š\Â3MN&',_binary '¹3ŸQš÷¨`ƒ¢g•«û\Ë]>f\ÜÚ¢ªö\Ú[}P','',0,'?'),(_binary '=øa\ÜŸ»÷µ\Ð0&','wp-includes/js/jquery/ui/effect-slide.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';§¾•y©T4\Ï<\ÛQ',_binary 'zó\"þöK\ëEA[_\ê\Â\ÉOŒVPY\Ô\Úg\åú2','',0,'?'),(_binary '>\ê;÷š%…B\ãƒ\ç&-','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/footer-item/test/__snapshots__/index.tsx.snap',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0Ž\ê\é\Åa–Â¤KaÃ»',_binary 'L;”\Ü\ÉV\Z/Ž»;›\r¥\é\Ýj#\0-]4e\Ú\È2Þº\Î\è\à','',0,'?'),(_binary '>©¿µ„¤\Ñ\Øq¬þ¦','wp-content/themes/flatsome/inc/integrations/rank-math/class-rank-math.php',0,_binary '¡B\å8&\Î\'ƒ\ÓÕ“\Ú\r',_binary '¡B\å8&\Î\'ƒ\ÓÕ“\Ú\r',_binary 'ˆ]“¸\Çô_BsL¸¡Ûº\èhD\à[@	ñ‰µ','',0,'?'),(_binary '>[— g«3d½¨“¤ ','wp-includes/blocks/spacer/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ð»†B\á\Í\Å\Â\â>eþ …X',_binary '-Ó¡‘núÚ²ŠyŠqqx-jÀ„¦!p\ÒBÙ )XT4VN[','',0,'?'),(_binary '>OSE_“YC\â\'\Ó\Î|ù','wp-content/themes/flatsome/inc/classes/class-flatsome-wupdates-registration.php',0,_binary '§±ÀÚ˜!x°GõcB\àkCB',_binary '§±ÀÚ˜!x°GõcB\àkCB',_binary '\á\Ê\ÃVk\çÑªS\ÊY\æÖ¤€ß¸T‚÷8‹ \Ò8q\×','',0,'?'),(_binary '>1®Þ…\ë\ë‡pSSh4©','wp-content/plugins/wordfence/js/jquery.colorbox.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(Oˆ0%6Œ9óe§3\åj',_binary '{\âLý#\í\r˜]\àý\ngL8P,µü¢@—\êIr,{ \Ä','',0,'?'),(_binary '>5\ÍË.y2Q[Ú£\ã1ƒ','wp-includes/blocks/block.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=j\ÞQ³\rZ¥\Ä&`b$\Z6',_binary '‡ò\èsd8r±õŽ÷$®\Î<HI\Ý\ê)¨P\Êeÿ','',0,'?'),(_binary '>G\Ç­O\äjP\Õl¨\îB','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/cast_to_int.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+¥\î…ø¬\ï\'Î¡0\Ïg2',_binary 'Øšx\"ƒoŒ*I\ç\nQ›\Òj¸·ƒŠ\çT(óG\Z¬.¢\Z','',0,'?'),(_binary '>M¥\Ë¦Uº[>º)','wp-content/themes/flatsome/inc/helpers/helpers-frontend.php',0,_binary 'š\Ë\Â5ûk–m1‘µº½',_binary 'š\Ë\Â5ûk–m1‘µº½',_binary '®YGS-ƒ?ý;m\Å|[ˆVM¥p\Ö3D³ t»š\âA\é','',0,'?'),(_binary '>[Š´\×#ö‹\Ýò!fe ²','wp-content/themes/flatsome/inc/builder/core/server/filters/public.php',0,_binary 'V£Il\ã\ÊÈƒ³Š\à_õ‹¬',_binary 'V£Il\ã\ÊÈƒ³Š\à_õ‹¬',_binary '\êF^\îXÞ±+Ò”w\Ä0ÿ³¤©¿K.N|ù7« T\á','',0,'?'),(_binary '>^R«?\ç\"D>ž©«µ:[','wp-content/plugins/ti-woocommerce-wishlist/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'š«V\Ûp«f%ˆ)vF7Œ',_binary '¸–Óž\â„ù31fZ-Õ½S\È\è*\\˜\ëw‘\åÓŸð2N¶o','',0,'?'),(_binary '>`Ž!\èšN‡xl7\Æg ','wp-content/plugins/woocommerce/packages/action-scheduler/lib/cron-expression/CronExpression_FieldFactory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·Ë®†Yñª»›\Òy\n‡n8ô',_binary '_·(†ó\é\æ¸|0CÔ¢¬dp£½\Þ([x*z&< µ^','',0,'?'),(_binary '>hÐ©\ìXX*ÿv1•©¹','wp-includes/theme-compat/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­\âÏª\Ü-\ÔY\ÚDÁŠs·‘',_binary 'õý“A8}\Ì\Í\íG(oÜµ¹˜¾SQö\Ù:z°ñûb','',0,'?'),(_binary '>p{þ\È2°\éK/3\0IJ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/block-components/register-block-component.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[jVtVt4\Ê\èn4Œ¢F½',_binary '\ÞJ0o•\"G‰—=&FÞ¶ý¥\à\Ñƒ‡‡\ÖtþÉƒ\n0','',0,'?'),(_binary '>ql\î+ªm\È\05Ä¦\"†^','wp-includes/js/customize-preview.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÌtQ¤¶M\ËÊˆøŒ•ýû',_binary 'Š\åõ=\êñyó¾0’¦RAB\íb\ì¹’)®?=“n€','',0,'?'),(_binary '>u¸\ë™Ê¸…!4N2\Ú\Ã','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fBBc-AMP6lQ.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Û,\Ê;LŠ\'³´dee´Ÿ',_binary '¶+GûT}\äm)*\Ý\Ì[’µ\Óc5½Z\ÝN-v>´','',0,'?'),(_binary '>v]ù{rq‘6x·','wp-content/themes/twentynineteen/template-parts/content/content-excerpt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vù\äó13?\Ë\æq|\îúÕ©',_binary ';Ô¸¹P\ë\ç¿I\Ôð@?56Ÿt¯­þk™N 8@ô=³4','',0,'?'),(_binary '>xÁ¦Ot‰W”(½','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤0R\à\ïö$|~š\nü“v',_binary '\ïk\èipEû0mÅ—\ê™\Ç1tõM¡F\Üe\ÅZ\Ð\n\éRR±®','',0,'?'),(_binary '>‚A‚Fú9-\rC8c¬²','wp-content/plugins/woocommerce/includes/class-wc-geolocation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Á€«@\Ì+Š\ßóž³žË—\ÞW',_binary '\Öx\\\åù~É‘è°­g&±ü±q™\ç‹p\àtùŽd˜\Ä','',0,'?'),(_binary '>Š\é\ÑôoD÷—½‰a\n_','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³hcÞŸ„±1\Õ\ä\í€\Ó—D',_binary 't\Ä\n†„7e\0\ÎZ¦\ÉI¬˜|ÅžŒ÷Ãœ0•\Õô+–','',0,'?'),(_binary '>’ú\í£m”\Æ}º‹Ñ½k¾m','wp-content/themes/flatsome/inc/admin/customizer/img/badge-border.svg',0,_binary 'š=LhqÝ¶“´\â}7 /‘',_binary 'š=LhqÝ¶“´\â}7 /‘',_binary '?\ÂC\äZI<s\Én{	¤+¨/‹¢\îcŽÊŽš]h\Ñ','',0,'?'),(_binary '>œß¬¾42õ0QB\È1†\Ñ','wp-content/themes/flatsome/woocommerce/single-product/headers/header-product-top.php',0,_binary '¨hTò9\0F2\Ìñ\Ã2',_binary '¨hTò9\0F2\Ìñ\Ã2',_binary '{‰¤Z\á$Em\àŽ¢FÇ•O\Û\â†œ\ß	©Ðƒ\ï\0³','',0,'?'),(_binary '>õŠt¡\ë„´‰\ßB´·','wp-content/plugins/ti-woocommerce-wishlist/ti-woocommerce-wishlist.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z§KK4	\é20\n‹¸*\Ä',_binary 'b‡ž‘°\Ê\Ô\Þ%‰AÚ­†ò½n\Ø\×\ã\É1‚\Ô\Ã\ÎÐ€\í\ÖZ','',0,'?'),(_binary '>£\å\ÐöœòT,{|Žs\Ý','wp-content/themes/flatsome/inc/extensions/flatsome-swatches/index.php',0,_binary '9\Æ\äprƒ(\ïTpT\Úc',_binary '9\Æ\äprƒ(\ïTpT\Úc',_binary '­„\ã7·+‹9š´>I´R¬Gò\Ä5q>ó\Îl¡','',0,'?'),(_binary '>¥\áo¼\'ø\É=KLB','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wcml/icon-128x128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸Xg1®Ç§%VÏ°™ð<~',_binary 'A+žÿ°\ê\å[˜\×q‡0Ô•×—o–»P\ZcZ\Z«]&','',0,'?'),(_binary '>¦o«\Ú\Ã\Ä\ëú»\Êt\ÎÀ+','wp-includes/blocks/post-terms/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¶\×\Â\ÞG¬¹*ð\Íø|“´',_binary '´@”…Hò\ç\çSÂ«j€\\\ã92v)v1+ge‹\×}\Ú','',0,'?'),(_binary '>©\ÆX¹\rýbõ\ßÚŸ®$W','wp-includes/class-wp-image-editor-gd.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dJj•K:|i^\r‰\Éµ\Í',_binary '2[<Á^Ì°_I»y\É&j»…ós\ìl|cû:?‡5','',0,'?'),(_binary '>©ý%·\É\Ö\ì¾\ÞH²“','wp-includes/blocks/template-part/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ô€¾N‹\ã5vsa\ÉHh‘ž',_binary 'Æž$VühK\Ú\'Ÿœ\'\çˆ38\"\Ïs=¯b\Ê4Ä¿;\ÚI¦UE','',0,'?'),(_binary '>ª«	_~zFš\Ã6\ÜÀ\ì\Ð','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-repeater.php',0,_binary '\ÈHÿ\ÞÀa¦ô„\í\ãQyr',_binary '\ÈHÿ\ÞÀa¦ô„\í\ãQyr',_binary '™*ë³¯3\n”X]\à\Ìx\ãv/¿\ãÃ…\'\è/‹\Í;\Ö\Æ\Z','',0,'?'),(_binary '>´\nq˜\Ïgž/´\ëú¾','wp-content/themes/twentytwentyone/assets/sass/05-blocks/pullquote/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\éVÛ‹È°ó´\ïLª',_binary 'a“55‰\Z‰\\¶¨\Éù7w{Ô¼^dø›\Ç\é…™TK¬','',0,'?'),(_binary '>¹£Gf\è@\ÔTáž˜;ƒD‰','wp-includes/blocks/cover/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Î…Peð_ü\Ä\"\"®½¨',_binary 'žøbü\Î\Z±£J\×þ\Èpô¼\å\ÇuJ±„ŠN:–S@w','',0,'?'),(_binary '>\Â\íh|a¤sç¼’ú','wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-sl_SI.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Û\Çê³µCiEýN´„$Q',_binary '\Ø£¥­Ë§\í_’VûZo	œ„GÃ›O\ãR\ÉWÈˆ\Æw?','',0,'?'),(_binary '>Ç˜_ˆ\0<T³Œ\æR.','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/shared/context/inner-block-layout-context.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ì¡†=x­S°Wú<4\îw\ë',_binary 'øó„0½˜c\Ô8:zjHô\î.\ÊQ\0\èoFu\ê\r‰\Ã','',0,'?'),(_binary '>\È\Ç\Â\âgB\å8öFF’Š¤','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/debug/class-otgs-installer-log.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€LµnWQˆQ.õ\Ï\æ&',_binary 'Î\Ä\èo3&‡\ØJ}\Ów1\Ý\Ô4§ ˆ\à½NºA‰z','',0,'?'),(_binary '>Í´YECðv¢%\Ó\ïG','wp-content/plugins/woocommerce-multilingual/classes/taxonomy-translation/class-wcml-taxonomy-translation-link-filters.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à»LfM£†vO™\Î*.',_binary '\Óu\ÊzP‰¢³‘¿\Ìc\äpQ\0Œ¹S]x¾35%ó¹BŽŸ¢','',0,'?'),(_binary '>\ÜAÿK3=R—(>:d)','wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\â.˜\ï	Œ;P=œcFV\Ëù',_binary '>\Óu-¨ n†$Ë—„º\Z\ëúŽ\Í5j\é\Ï4\Ð\éš9S','',0,'?'),(_binary '>\ÝM~¤œ;Oo\Î\ç-\áI$0','wp-content/themes/twentynineteen/fonts/NonBreakingSpaceOverride.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f!\Ã•<½\rø‹“\êyS',_binary '\"-d‹\ÓòNN6ž3¬P`®òÊœ`!‹–Ú¬	¢q¾','',0,'?'),(_binary '>\ßp\n\×\'\æ\'¨{¡]\É\îþ6','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XU+4]\é\n‘j‹¥2`¯ ',_binary 's)Wg\ë>‹\ß\0¨»«¾vw”@“\Þ¦C‚±e¨Ñ†','',0,'?'),(_binary '>\àä¬ºý\ë¼WsÓ²\Ì\Ö','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/sr.js',0,_binary 'áš¹s\Z¨\ZF¨\0%f`',_binary 'áš¹s\Z¨\ZF¨\0%f`',_binary '\Í)Ìƒ¹Ü¹X#Ü˜\Íù^\"w´\Óù¼L1\â÷\Ý\rOX?Ë»','',0,'?'),(_binary '>\âŽþ¾\á3[\Ú6ƒ&\"«','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/attribute-filter.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ž¬\Î\àS£Ó­\Èðü\Ã\ê—',_binary 'Þ‰óÐ¯%¢=\Ö]NZ“Ú²ÿ–Oœ\îc}[„….','',0,'?'),(_binary '>\ä¼nŠ\ï%Wò\Ýlû“=','wp-content/plugins/woocommerce/src/Internal/DataStores/Orders/DataSynchronizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*2\nv9\Ý\0Ðž{¾Ž?	',_binary 'ÕœÆ•‚ü†‚¤²\ëlô)\Ô&\âp8îŽ“g‚6\Îš³˜','',0,'?'),(_binary '>çºŸ\ØFšº\ç%~\ì6k','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/th.js',0,_binary '²‚ü¸ˆ”Ž\á~§+y\Z‹Š',_binary '²‚ü¸ˆ”Ž\á~§+y\Z‹Š',_binary '\ÌÂšü\Õ2\Çy¼F°xkU€‡\êŸA.ðFI²\åcµ','',0,'?'),(_binary '>\ç¾¨k±Œjr{¿‘\è','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-permalink-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<ªvO\Åj;AŽ?ŠF+Iõ',_binary '=¥-!ÿAj!\\¶\ç©\Í\Ü\í>s`oTº\\T #F\Ï\'','',0,'?'),(_binary '>\è\ÚC`@ÿ\ß\'–\ß3\Ò','wp-content/plugins/woocommerce-multilingual/vendor/jakeasmith/http_build_url/src/http_build_url.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',”\ê*Ußµ7\×\Å\ÚV\Ô\\\Ò7',_binary '=Z\åBG\á\nO-#D	H>V×µ4´KYªÀ‘CdQ\Ô','',0,'?'),(_binary '>\ìbgGw1ñ¿[ä™¤\à…b','wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Analytics/Export.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÒKE\Ã$\éD\ã&²W˜C\'r',_binary 'ƒO*>#B\ãýg°Qb\'€\æ\åó ~&F\ài\Û÷•','',0,'?'),(_binary '>õøŽTœ\ØZ‰“Zsv','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sale-badge/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷¨‰v§‘\ØUsu§,\\©',_binary '¡<\à\è/YqûÖ¿K¬Š¤K\Þ.xd–W¸9«TE²¨t','',0,'?'),(_binary '>þ3Z(2ýyŒzn%v','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Õ{ü’F‹‰\ç¹Á\Ês',_binary '\Ö\æC\â—f\é½j¹I\0óQ¦»önmþJþªI*Á','',0,'?'),(_binary '?\ØWZBDùN\×1ž3À\å','wp-includes/blocks/audio/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒöòZï¬ j¯*œ-\Æ>',_binary '„	·F\à\ÈsN`«À±NE	ùSd\Ó\å\Ñ±€u','',0,'?'),(_binary '?pB\çµ\Ô\ï:¼Ö”Y','wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-rtl.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X*OB2Hað§»yu#.E',_binary '\ìniQ²¾-†F‹¬<]K¾nö‚?Rµe\ãV¿„ž','',0,'?'),(_binary '?(.¤W\"&\'yñ\Ç','wp-content/plugins/products-compare-for-woocommerce/berocket/includes/information_notices.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±\áPò\ï~’†P˜µO',_binary 'mƒ\Ä-©7I\ãz`%ü“ÿ9Yóo\Í^\ãóz\×\è[JÚ€½','',0,'?'),(_binary '?\å\Ì®p|R\Âoð¥\é','wp-includes/blocks/separator/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æ8\Z%†¢±7R!«¢0`Àq',_binary '\ÎÚ¯–.fo›˜„\ÒÐ°™\àùX\Õ\È\àxWPÉ·ò','',0,'?'),(_binary '?\'\Ñdÿ<b¼.þM%\ç^!\Ó','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Comment/Commentable.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' Ã‡v\ÞNd\Ï2~~º¨í¶›',_binary '¥XH\Åú\Èz3ú\É\Û!E±±j\ÞÍ¶º\ZNˆƒUÉ’','',0,'?'),(_binary '?,\Öõo\Ñ7Áø\\|\ëp','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/AglInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\í\àCcŒ=W*\Îò±‹Dg',_binary '3\Ó(üW¶«\ê~;M\Ñ<\Ìd\Ë\Ñƒz4£\Ó„\Þó\Ë\Ã\Íþ','',0,'?'),(_binary '?2yT!s|À¨t°\æˆ÷u}','wp-includes/random_compat/random_bytes_dev_urandom.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—®d\Êý\ï¯\è\Ø\í\ZHr\Û',_binary '\nDfdvPÿfŽOn:ž“˜ªa†\åÐ³Â‘Š„»X\Ý','',0,'?'),(_binary '?=\Èô°¸´Yzº>!\Â','wp-content/plugins/nextend-facebook-connect/admin/templates/settings/login-form.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tÛ£\à_Õ¬\ë¶)C2',_binary '?\é\ì‰/ba…°”ùý3ˆŒkŠ>\ÜÙ‡\ïAu\å@\Ô','',0,'?'),(_binary '??Q$¥P£¬À.:X6','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-fast.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\â¨Ÿ\Ü0@‰I¶SB',_binary '©1\è\Ò­·Ä‘ùÀ\ã,ñhž-­öh„>fÚ¾\ÍG]','',0,'?'),(_binary '?B3ƒ“£$+Ç¿üV\ÛL','wp-content/plugins/yith-woocommerce-wishlist/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~[\Üò#À\ä\ï9n©XJø¢ô',_binary '\àó\Ü\Ù3¢úg3h<xÜ¯·‡\ã%’8s¸Sz…\î|÷','',0,'?'),(_binary '?Cž}\ÑË\àS\Ééa','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/upload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿°Ÿ4ú[R,ˆÉ‚ƒ!+',_binary '@è›‰\0ý\ÔlL ,‹qˆ,Ut•®©\ã²\á		@¼0','',0,'?'),(_binary '?E\nH¨gø›œ‘\í‹ã‰','wp-content/plugins/woocommerce/src/Internal/Admin/Settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷†\Åw)l<y¬XR<0\Ë',_binary 'ƒ&q\Â5\nB÷›?(^\Z5\æ¼Rÿ”E¾c\":ha\ËÎ†','',0,'?'),(_binary '?H\â\'VA\îP>\ÝÁ\Ð\Í','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/stock-indicator/edit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô‚%š­\Í]>»x¼',_binary 'L›_ä¾«\ï[%jþÁ²/apRŽÊ ƒ7¶•','',0,'?'),(_binary '?NA¥q)ƒ\é\Í\ËK\Öü','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/compatibility-notices/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬F[¥\"\ç/€°¦\Ú\×kñ',_binary 'gN2Kö€ß°h6\êoS®ykÀ\Ú\ã{\æ©\Ù+¶«O”ƒÿ','',0,'?'),(_binary '?Q¸\Çeuò-\Î@jY¦P','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Installer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\äúŸ´\Ü;ccc\'$›\ï',_binary '\îš\\R;\ÚNˆ\Ð÷R\Ýw\ÎÍ¯f¢\ê¯k¯\è3\Ì\Ò{l','',0,'?'),(_binary '?UM)\åµñ\"o±ñI	 ','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-product-shipping-classes-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'id5ùƒmùò¿x\à\"øö',_binary '¥ø	–@scú~ID\ëjP¹Š0-,ÁÝ‡\Ó)aš>\áš','',0,'?'),(_binary '?Užµö½¼š\'_l.…p','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/X25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o>B÷˜	¿Ÿ½‘IN”-y',_binary 'þ\åhlŽ[À»¶½†§ñ«(¿l~‘Q÷u\ßFM²	“','',0,'?'),(_binary '?Xf2N\Õ0N\àhTå€1','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/active-filters-frontend.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BO\â\Õ%]Ë®\É7aŠý',_binary 'ä¯š¨\Çó\r\Z ÅŠ#š6n *\Í_3;=²´\n\Í\ê','',0,'?'),(_binary '?X¨WNAM‘\ßR<1r¯','wp-content/plugins/woocommerce/assets/images/task_list/sales-section-illustration.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²BS —bú\â\æR¦9…',_binary '\î·\Õ\íK»šþ\í\épcBø	\îj\áÁ&\ÉÊÁ\â\Ù…','',0,'?'),(_binary '?YvŽq_\ê—ÿ³Û®XO','wp-content/plugins/wordfence/images/sort_both.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Å\á%\ÙB¬QxÁSV.D',_binary '’¨„ù6\Æ\Â\"@X\Ûg\'\æW7ÿ°wô\ËgJ™\ßq','',0,'?'),(_binary '?]ýPû.£˜1ÿ´ƒ\Ì2b','wp-includes/js/tinymce/plugins/textcolor/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ü%i 3\É\á\Ö\Éf\ä\èû\Ú\Þ',_binary '(\Þ¾EL\Ùû \Õ”b[™ŠK\Ú!s¬ÓŠ\ÔnÄ²£\Â','',0,'?'),(_binary '?^V\ßý\Û$k“ù`3ö\Ñ','wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·,»0 ¢{Ù€&vZ',_binary 'H\ì»Mw\Ó1¤b/\ÌËu\åO¬\È\ÈòNˆš~½ª©Y','',0,'?'),(_binary '?`††uHŸ\ï\à\à)\'J¾ª','wp-content/plugins/woocommerce/includes/admin/importers/mappings/generic.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wilùj6Tbmhóƒ„',_binary 'ÁµòR\ç\'¡\ÇË¯®n\êóü\Ø¾ú\"©}\ß\éz','',0,'?'),(_binary '?a\\K\ÏKv\Ð8\'¬e','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-ru_RU.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘¼‹„¬\rÐ„\Î5?m\æ',_binary '~d\Ì\âY£Y½¶F\Z‡&W2-¬\ÏO\\,\Çóþ','',0,'?'),(_binary '?d³\ä#ô±\î\Úc¶e','wp-content/plugins/wordfence/css/dt_table.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ågJbjœJÁŽ9¹k:\Þ',_binary 'o[P\ÂHyÐŠ}½\å\ìiGc¬~”\Ð<c¥D\ìR:D\í','',0,'?'),(_binary '?gbqª\0X˜™ô©4»,>','wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-a.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\ÛSFc„ƒm^(2(}o',_binary '8¢Á8D\Z°	hƒ’;\ç\Åi\î_¢w“>\Ã%ó\Ù-\×','',0,'?'),(_binary '?høs*\"µcúkšz\Úù­','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value/PrimitiveValue.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›®9\ÙYSSNeƒk\ãÁ¡<j',_binary '’c};ŽN•s´T/fE@û¯žG\ÞETViË†¯¢','',0,'?'),(_binary '?n\í­J8re‹Eõ>a	\Âó','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/saved-payment-method-options.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0S\ÎW€!Ž±c;\Ò¿',_binary 'j<¯B=¸\Öù\â/šc\â\èò§Êµ®ž“\ê4!M=:','',0,'?'),(_binary '?u\à,¼.—\Z¨W\Ö\Ç\êƒ#','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartRemoveItem.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'À„tŸc¸¨\Ø ’¯kE³',_binary 'ª}T]¹i\ç\ì\Ò\"\ã8Ì¨Ih\ä\n2¹M:\ÒIK‚?\\2','',0,'?'),(_binary '?v8\É\Ù,i|Ë½oR\âk','wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-sync-taxonomy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NsQR\Å-õÌ¯¤\ëTô6ó',_binary 'òœ2\ç¤lÄ¢\à7ÿ½2#k\è\Ë	‡?\Ú_½7:\\\Ô%','',0,'?'),(_binary '?pÒŸÄ§¡F\Å\ßb`J','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-textarea.php',0,_binary 'Ge/¹ð´ˆ\Ñ\æ–Ã¶~,',_binary 'Ge/¹ð´ˆ\Ñ\æ–Ã¶~,',_binary 'ýñ‡\Ö#(\æ«a\Å\ÞÀ\ÃC£&\×¦g\ÆP±®™\ë','',0,'?'),(_binary '?’{K¯3\ìOši\Þ|\Ëýu(','wp-content/plugins/woocommerce/templates/loop/sale-flash.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª¬y—bñ\È\ê_L\Æ\Zc\n',_binary 'À\îh’¦\Ç\Ôdóy›¸8›F<vU\ëC\Ï#ù„‘0 þ³@','',0,'?'),(_binary '?”,¾\Ý\ÙöïŒˆ‡D\Æ\í','wp-content/plugins/ti-woocommerce-wishlist/includes/analytics.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',bÓ·„…ó“\Ò;wÿyÕ¢',_binary '#h£Mz¾’ø\é\á-/û\×`]\ßá†\ï\ÏÅ„0uH#…','',0,'?'),(_binary '?•I/\í\ïUÖŒË¢3d€C¢','wp-content/plugins/woocommerce/assets/js/admin/woocommerce_admin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{Epq\×IÂ±0§\Öx:’',_binary '\ì0\ÇM\Õ;…Pƒ¦Gõú ·tK¾\n79\\\×\î:;€','',0,'?'),(_binary '?—fE÷=Š5”\Ì`]\í','wp-content/plugins/nextend-facebook-connect/widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3w`p2³Ÿ\Ö:cõo%\è',_binary 'r¾ó7xq¶Á\Êu&±6B\×‘_ú\ÔOJ»ø,?Àx\Z','',0,'?'),(_binary '?©q\\>\çk&œ*ø„}','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/payment-method-extensions/payment-methods/cod/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\r\à¨\áE?Uag•t­k',_binary 'p\Ð<ñøK;e¾{û“l±` ¸õùÑ‘œ»W½=\Ï¨','',0,'?'),(_binary '?¤\×a¾0xyBv\Z\ÒM','wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/components/datepicker.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ü®Àc\n\Í?’D7\áÐ„*',_binary '\ß\"ÿ\ÇÐ‹f½\É\ì…m\ÊPXŒ©\Þ÷vQ™¶oQÀ','',0,'?'),(_binary '?§\rj€Da\Ì\åÚ™Hg\\“','wp-content/plugins/woocommerce/packages/action-scheduler/deprecated/ActionScheduler_Store_Deprecated.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\Ò:Œ:XFÆ0\'¦P',_binary '–/ ¸nöf…<\Ü%n)\Å9\à\Ø\àlf—ø×­ÎŽu’¾','',0,'?'),(_binary '?«ð=²@\íMŽ$#ŽP7','wp-includes/js/dist/html-entities.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ò\ëtÆ\Z\ì\Öe\r<Û¶Vi*',_binary 'ŸeX(ôŠ Èš1”_‡O\Ò:[¬\ÉÀ\à[di³t-¶	—','',0,'?'),(_binary '?°\':<*g¯³\ÈP‚u\ç','wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe-ui-default.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\ÚvÌž±Ó¼\'B;·¬',_binary '*!\Ø2>,&	*°3GÅ¯=\âP\ï\\R\Ü)Qc½\ÝðL','',0,'?'),(_binary '?´¨\ç‚v~¯\ìœ\èÜ¦3\Ñ','wp-content/plugins/ti-woocommerce-wishlist/includes/activator.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n8¦\ã\Êý0\ÔQý45òY•',_binary '>\Èi€)sAl,t\Ê\Ç\ZøØ²oH´,¶\ç	Í¬M\ã>','',0,'?'),(_binary '?¶ý\âC\Éªú!€†Ó²','wp-content/themes/twentynineteen/sass/modules/_accessibility.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\n1n\Ûö™é¸—\Ð94ý¬',_binary '«/¹º’h\ßf=@\î0ø§5°ô¡H\Æ0\r7tÀ\åm\Ä8','',0,'?'),(_binary '?ºò,\'ËŽW+.¯Qf¬£','wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-products.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ö1C èš‰U9fÉ›6F]',_binary '\Òm\Ú“\Ù\'•\å]\é\á»CŠJ\0=~Ú…<óL³kô\Êpn','',0,'?'),(_binary '?»`\Æpš„ðûï±…','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sale-badge/edit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ù\"B³5\Z”ª\0=`xC',_binary '_t\Ð`\çZ<\Åò(¾\ë\Ë\ÜP\ÃD]Õ¡\ëS”¨&I9¨','',0,'?'),(_binary '?\Ä5\Ç\äGz™-=‰å’$x','wp-content/plugins/nextend-facebook-connect/licence.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²4\îMiõü\äHj€ý¯JBc',_binary '¼ÿ\0v1£\ês\ÔN\í>cIDÙ¦¾\Ö„I\é­0ÿ-','',0,'?'),(_binary '?\Ú-–4\ã…Ih<\å\Ý1¼T','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/image/frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é‡Ï¦¹^9xN\Ã7\ãl\Í',_binary '\Å\Í–yhB/¿~®¼†®\\«\ÖÇ‘‹ù\Ë\ètŽ\Ô:¦','',0,'?'),(_binary '?\æ\æb—„>s:\æ|t1#§x','wp-content/themes/twentytwentytwo/inc/patterns/header-centered-logo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0Š±\Ë\ÇFý\Þ-R®…\æ,¦',_binary '\ëoŽ\ÆDGX\Ì$Ÿ)\"\Ô\Ûû.õAœ\Ð×°ŸS®®\Ût\í','',0,'?'),(_binary '?\ê÷_@\Í]ðN‡õŽþ²¤','wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/jcb.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Å%ñYŠ†,Î¾\nqxS<­',_binary ':q\ã\ài\Ð%drÀ=s„Œb°\ÚÀeùO\r \ÐÕºŸ\Ì3·','',0,'?'),(_binary '?\îF-\Èõe/b’[ ','wp-content/plugins/woocommerce/assets/css/twenty-nineteen.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't«\Æ\Ç\Ì\Ö>:˜6“Z@\áª',_binary '[[P‹R\Æ;Eüò#DÂÖ„¥Ó³¡#ö\Ç\åT\Ò	‰‡a½','',0,'?'),(_binary '?\î­W²§üˆ!â¼ R\Ä\Ä','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/price-filter/edit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\âVL·\ZX‚µšN1N\åWÎ ',_binary 'xqŒg\ä \\\Ð›\ÙK—Lž8\Ý0ó\ì\Ýù\È\n\Ã\Ø#','',0,'?'),(_binary '?\ïZFG4\â,¸–On\0\Z','wp-content/plugins/woocommerce/src/Internal/DependencyManagement/ServiceProviders/ProductAttributesLookupServiceProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñP\í±’iô\Í ý\Ã\Å87',_binary 'h6\Å\ì]x\Í\ÖIXØ”óœŽ ýÑ­\Âÿ)`‘ò`t\Ò\íš','',0,'?'),(_binary '@\0™µ8(<:\Ñtö#1\ÔS','wp-includes/css/dist/block-editor/default-editor-styles.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ëó‹7§ä†œ¡~hñ“?¦¼',_binary 'ö|Ç„\ì\Z°þDª~¿X“\ê\ÄE\àž– \Û)>Œõ2ô,','',0,'?'),(_binary '@\n\çF\Í}\Ç\'\0^.¤','wp-content/themes/flatsome/woocommerce/checkout/form-coupon.php',0,_binary '|\Ó+´s\"dÿ›‹\Öo‘û<',_binary '|\Ó+´s\"dÿ›‹\Öo‘û<',_binary '›\Ì]\íbö\Étm`[TN6\ÙVÉ\ÇKòG\åªiùˆ\"œ#–','',0,'?'),(_binary '@•	¡¿òNö/Šb‰ \ëT','wp-content/plugins/woocommerce/includes/admin/views/html-notice-redirect-only-download.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÎH\ÃvVøt#m#—¯',_binary '7\ç¡7/Ÿ\Æ/)¯B\äž/oÅº\Î×¶mú\Í\ã2·å‚˜Xu','',0,'?'),(_binary '@ŽU’©ü¿U\nÂ†/G','wp-content/themes/flatsome/inc/shortcodes/ux_html.php',0,_binary '±hj˜š|\ã/\n\Óú\Ã',_binary '±hj˜š|\ã/\n\Óú\Ã',_binary '¹x}\n©\ësôŸT­z¢ \é™øŠPŸO‹‡\\/|¤ý‘1','',0,'?'),(_binary '@ «\Ì	PT\ë¡U\0>z¸£','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-cart-items/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<Hˆ\Zh»\Ãò{“F/d	',_binary '*\ä¸5\n‹\â®k\æz€3L„\ë©M\×zB/÷?n','',0,'?'),(_binary '@!\Úaðieý\\1}Ý±»z','wp-content/themes/twentytwenty/assets/js/skip-link-focus-fix.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç@ö\ZEjŽ”i¾‰R>',_binary '\é%) \å»t[Hôˆ>ù|\Üë¹›\áA“t\ÝMÒ’\æ­n\ß','',0,'?'),(_binary '@%_\ìAý\æ	²…\0ÁZ\0\Ï4','wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-my-account.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ž&43¸\édÜ§v(b¤—',_binary '/—­™Î”­Å…\á`JL¿c­Bù‚\Ñò\Û\ÛYD]„÷','',0,'?'),(_binary '@&¤y‹¨¥H’l\êÒ»^B','wp-content/plugins/woocommerce/packages/action-scheduler/classes/actions/ActionScheduler_CanceledAction.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S²SŠ !F\ä|rHj.‹L',_binary '\é6Œh«}?!\ãE\á)rZ\'ÿ~ PûRZ†$\Ã-,','',0,'?'),(_binary '@G )7x=¦¸A\æ±','wp-content/themes/twentytwentyone/assets/sass/05-blocks/audio/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zSP#µÌ©x\Ù\á|§KÛ¢3',_binary 'Ú´aWtÄ‰ªý¡Žq’)N²\Û*x³*±ƒôq;T¨\Î0','',0,'?'),(_binary '@V\ÐúK$~`*•+c½0£','wp-includes/block-patterns/query-medium-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	Ð¸a!–\ÝôR•ƒ',_binary '7Liw\Ì4\\^ø•X\Æ0\á˜û¬`(nVÒrx¥\éb¯€','',0,'?'),(_binary '@Vó$õK\Æ\çò<\Þ1*\à¬À','wp-includes/css/jquery-ui-dialog.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ä\ÑS`ô\î\Ú7Ñƒ¼-–',_binary 'j¸&‰Ò°\ÆM¤˜£”\Ã\Òu§@\Ö\Ã6L}\Õ5«\Ó\ã¶\Ë{','',0,'?'),(_binary '@X\0÷\Ú\n\Ê`Ú–\Ï\r\ß\Ô\Ûò','wp-content/plugins/woocommerce/assets/client/admin/chunks/analytics-report-taxes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Óº3¾Ag\ÄT\æŸØ°óK½¸',_binary '÷28Ÿõ“\í¸\Ù98\ïw\âyÐ©\Zz÷ \íª.','',0,'?'),(_binary '@h\Z4\éA\Ópá”™µo­','wp-content/plugins/woocommerce/includes/admin/list-tables/abstract-class-wc-admin-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤\Âú™SnŸ¾\Óy\èó¼°\Ñ',_binary '<©cöcÁ£!\Ý=¯F„H9BMeS§A\Ój	\r¶úH!¾§','',0,'?'),(_binary '@hCf¼‰Ë»·´x·o\'»','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/laser.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\Ù\íœ8¬Õ»ž„“\Æ\Ïh¢œ',_binary 'h\Æù„žHÎb¼\Ð; <Ž]¼\Ç»VÄ¤—E„mK»','',0,'?'),(_binary '@hë³¹¢3÷×z2zl','wp-includes/css/dist/edit-post/classic.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q4¾\Ì%¾«TT±Gô)\ÔÀ¾',_binary '¬\ÎG_ó\ã|ð^~\í©@\r#\íü«*\ÜVET±<\Ì','',0,'?'),(_binary '@k EÁbrvJÃ…*ö\î','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/handpicked-products/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„ºŽ@š\á§f\×õcKFó',_binary '\Ìk³\áP—r¶e\îa\èv»	\àT\å\'4\ê½«<','',0,'?'),(_binary '@k/ Á¡Œ\æI‰?T,','wp-includes/js/jquery/ui/datepicker.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Gg§·Zð\Ãñ†ù•©w\É',_binary 'b·™^?<»!X	3\ï_“Sü\ÏÁ%ÀÀ\Î!:‰\Ã\â','',0,'?'),(_binary '@tˆÊ¢nÃ‰\")”E?0 ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/AbstractSchema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r€Ìˆo´[y¤\æJð\rx\í',_binary '\ßL=@^”\î$ ôS›<»z\ØMM\à”UQm~=2\Ô','',0,'?'),(_binary '@z\åJ÷üX¾nòš\Û$','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-shipping/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®‹\É!À€…¶_€ÿ ž…',_binary 'f^d\rõñc9¯´ùµ\Û+«br[\â.ùS50\ß\Ñ$\Í','',0,'?'),(_binary '@zMr‰\áf\ëó\ÕH\ÍI','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/hacks.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\íaI–#2õZ³·n¨\0',_binary '\äþ\Ù\ÞR\ç’ ú\äÿˆ\Ï÷Y%Û·\ß\Ð\ÆT´¸Ø¦Ë','',0,'?'),(_binary '@}7\Ô.³Q·Àô\Ì_','wp-content/plugins/woocommerce-currency-switcher/img/woot_banner.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.O\Ò—3£?!8±&«Vu',_binary '¬¸ 	L\Éó­n\èÏžFa\êH\ä¥	¥\é\Ðc>\Ø-ªˆ¥p','',0,'?'),(_binary '@}n\Åö3Ë¨ŸOTÁ\ã\"','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/dropdown-selector/input-wrapper.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l´Ë±wÃ…“8µ‰\Å\îÃŠF',_binary '„À¤\ÄùO{:‡_Er;÷\ÙÁ¬5s\Û\î|*Zúk~e#e´','',0,'?'),(_binary '@€žÌ˜9Š#¯L\Ãy(\Ð\Ú','wp-includes/images/arrow-pointer-blue.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wŸüb\ãÎ‡*L«²\Ã[»ù',_binary '\Ý\Â\Ê\åfb\ÏZD1.üºþV\ì\æaw\Æ4l?\Îñp\äµG^\Ç{','',0,'?'),(_binary '@„%ö!\ßD\á½\ÕUŸ¤ü','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-image.php',0,_binary '´òVù«*]l\åv\Æcòÿ',_binary '´òVù«*]l\åv\Æcòÿ',_binary 'z–|ššòRUòsU\ÎôK\Zû±\åñ\Å2‹<d#‚ˆ;”\Ç\â','',0,'?'),(_binary '@‡(\ÅZ2Ÿ\Íp›‚õX­%Z','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/load-more-button/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':;sR¬¿v¤\ë\Ìv’\Ü',_binary '\ßCX½8\ëú.=¶+ûý\r\Ç3-Â§\×\ë\á\Ê¶1','',0,'?'),(_binary '@ˆ\Æd\àN‡p\Z£	¯¬}','wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/visa.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd+ò\éðm\ÐõR“X¦ $\Ô',_binary '\Çv©¼\Ð\"J0|ex)\"\áW\Å)˜¡\r®O\ïŸ?‡\ÖÇº','',0,'?'),(_binary '@ŠŽÁ\ãÎ²4\Ý\ÇH°ýP<?','wp-content/plugins/woocommerce/src/Admin/API/Reports/Products/Query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼Œúþ\Îq\Ç\Þ;^ý€–',_binary '˜ÿ\ìüt®K\Ö\ëf“c\å\ÌÄ¾ÿ©ô¸QzX%º','',0,'?'),(_binary '@”ýl2Ó¬‚‡\ÊFOuK','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/button-round copy.svg',0,_binary '\r)X\â ‚\Å\Íø\í4j`X?k',_binary '\r)X\â ‚\Å\Íø\í4j`X?k',_binary '\è—H}ÁERu£O™\Ê\ï5\íš\Û\ÛX\æ\ç\Ò’6Ý¢P','',0,'?'),(_binary '@˜ù± BÉšž\ÊûœÜŽ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/category-list/constants.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':>\å.\0\åAH6\Âm6a3',_binary '«R:\Ò¨9\ÃÀ]¹\Ì\ß\Å2œ0žðD¦\â\Ü\×\í&','',0,'?'),(_binary '@›øRÝ‰¥\ì\ÚþD\í\ÖgJ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/½²ò\Ø!“\Ñµ\æ.h\Ê',_binary '¥¨C\äókQ\ÙEz\Õo~\n\á\r\àYL0Eˆ©Wð5\ÓM','',0,'?'),(_binary '@Ÿ	´h¿	Šì·„F\\#','wp-content/plugins/woocommerce-multilingual/classes/Rest/Generic.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆÒ¿7&^òBŸ\'I±i~¯©',_binary '\Ç¦­kƒ\ë>8\r3\Þ\çEk°E{ sôøÎŠ–Ùƒµ`','',0,'?'),(_binary '@ (\ä¶qT¼\Ìm\ÐSLñÇ¡','wp-content/plugins/woocommerce-multilingual/res/css/management.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&º@“?\'ž-ðm\å½',_binary '§)\á\×h?”½•»1òž°4\Õm\Üˆ\îz\ìYAÞ§','',0,'?'),(_binary '@ †Lýùð¥:“ª¶(¸¾ž','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/psalm-autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Øp†\é\0\Ô6¿&¥	ª',_binary 'uj¿®vÀ\ä—d_\î\à\áù­=\n\Þ2fY+ ‚V\\©\É','',0,'?'),(_binary '@´†C¹¡E\'”O\ËÀªú','wp-includes/css/dist/widgets/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™U+öž	òQˆ1«tL¢ñ',_binary '\ÔCžñ•wT˜Åžñ‡÷»¥‹\É\ß?–Iº™\Ê)1;w','',0,'?'),(_binary '@¹\à\Z!z‘žr\å\Ê\ÙWž\Èp','wp-content/plugins/wordfence/views/waf/option-rules.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\É)\0€Q\é¯N²\É#$|ð',_binary '‚¬t¢Ï·\0\re(x\ÔT\ån¶\Þ_C³Q–\Ç=ŒðK2U“C','',0,'?'),(_binary '@ºXD\n\Ã\nRN†t\ë\Í\Ó','wp-admin/images/menu.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\á\r9#‹dóY`	Œÿ',_binary '\Ùlú\ÈIE/(¼p­–\0\Òpnó‹–T-O¥z\"],=`\ï','',0,'?'),(_binary '@¿È¯\î\Î&Oñoœ‡\î','wp-content/plugins/wordfence/lib/noc1.key',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9e¤b\0\æ\ÆPOŠÁ¾…”',_binary '_\Ëu‘ö\áj\ë\Çý‚\ÆúPþþ-KOAƒÜ«œ¦\Û\Ö\Ó','',0,'?'),(_binary '@Ád\Ñ\ÐÕ´sLAM–G”','wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/ideal.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å#N\èF*\Éâ²Ÿ\î»{\Ìý%',_binary '\Ä\ë”\Å†H\ç !jH2±OJ \Ï¬D\É—,Ö·S½','',0,'?'),(_binary '@Ç°¨›(ˆtM8ôú','wp-content/plugins/woocommerce/legacy/css/admin.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nG.X¯¤\É@\ÐÆš/N',_binary 'A\æ§\ëRWòº¢”\î>N¹\Ù+j\×ufH\0nÉ±|>','',0,'?'),(_binary '@\Ì\É*‘0kH\ì™(\×\åi','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/repository/class-otgs-installer-repository-factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\Ê\çú!ƒ“\é\Î5¥\ÚYª',_binary '\Ì\Ôn7v\Ý\ÞA_9IÐ ‰\æ\Ïû\0\âErpQ','',0,'?'),(_binary '@\Ïów^O\Û €ƒ\ÐM†\Þ1>','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/grouped/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•xkpÓ¯°¾Œ||\Ù\ÉŒ\Î',_binary 'ð­X“\ß\'e¶u\n…C |	D\Ûs&nöa™«›\Ör','',0,'?'),(_binary '@\ØL½\Öß¯7»Ù­kÙ‚E','wp-content/plugins/wordfence/lib/menu_tools_twoFactor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`3‹ñ0®h~¦Ý»\Ù\é\Ðh',_binary '\àZR\'\Ãÿ\éZüwµ$ßƒ\Õ\É_ÉxT\ê{-`¿\Ç','',0,'?'),(_binary '@ØŽó%\Çu\äÿ4û \âe†','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-taxes/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Qg¸°WƒVcu‡6=',_binary '¨‰g8mÉŽ‘üL\ï:Gù\0¤\Í\à\ÖkÌžwÁWr^','',0,'?'),(_binary '@\Ü7\È\Ï:\ØY•\ãy/H¥r','wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-it_IT.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†aL«\ç—W\Âñ4\ÅxœŸQ§',_binary '‡hTsU\êÎ¯\Ë\ã?ò\'ƒ£H\â\ätÖŠYýQÎ—80','',0,'?'),(_binary '@\Þ;5‹XõñV¨”O\ÆZ','wp-admin/images/mask.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'üö“g~¨\"\æ\ÒJ÷²ä©Ž™',_binary '\êž\×/<s\ÄÔ¡\ã)\Ý\'‘.®1ÀjknƒK9Q\îô\É','',0,'?'),(_binary '@\åƒz¥§_\Ø^ ¶\ì\Ï\ã','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\Ì\ß\ÕÐ¼†ðÀzÖµ_',_binary 'üV²-2Þ¸<n{s?IõÝ¸W½\ì>f½\És\å(§','',0,'?'),(_binary '@\èm¾·\ë\ÅO\Å\ÝW','wp-admin/admin-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u[\ì¿!\Ï\îûE\ä\×\"\ï',_binary '\Þ\Ñb6#¬NÐª‚oŠndÿ³¥g`\à\åõ%³#\Z\Â™\Z','',0,'?'),(_binary '@\êt\ÜR>GœHh\Ä\í×¡','wp-admin/css/revisions-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!^#€Öœ*X\Õ!\ß4Qµ',_binary 'w²/ú¿\à,f¡Ðu9ˆ\Çy\î]\Ñ[°›tH6/','',0,'?'),(_binary '@\ë,Všs\àx\È#-8®ÑŽO','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-loader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”\ç\Ê2\âUWKeFL`',_binary '¥o+añ\"e\"´\Ø\ä\Þþ\ÛU8*ÁOŽ·ÂƒW Q¸±Ws','',0,'?'),(_binary '@\ïµÓµ	­)\Ì^t\æ¥1','wp-content/plugins/woocommerce/legacy/js/admin/settings-views-html-settings-tax.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿d‚^‚ˆ(\ào…gN87\í',_binary 'v\âƒµ\éUš„²R\àƒn”wq\Ó/7:ÚŠD¤š†–','',0,'?'),(_binary '@÷sZö”^™¥\Ó\èqv','wp-admin/images/media-button-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\ÛWI\å…\\¸\Ð?\È\É',_binary 'Ÿ<ó‡:»ðtn½kb\íwi\Ý&Œñ	¸\È÷R¡µ\Õ\í\Z','',0,'?'),(_binary '@÷¬@T‘»AV~\ædW¸','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Exceptions/TooManyInCartException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\è¹)¥q jFƒ7Œ\éO]',_binary '\Ï\nú[)­\æ\Ý2„H5[\è\ßöò©\é\ÐmX@Áù¾ÜF[','',0,'?'),(_binary '@ø‘+\âTÎ„\'··¥Ù¤','wp-includes/ID3/module.audio.flac.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@pLû@’\Û\ÅE„½\Ý{õœ',_binary 'úÖ¼3Ÿòt²46$ay\Æ!øª\ÍÖ¦È“Ú²°h#\ì©{¶','',0,'?'),(_binary 'A­lA~i^˜‚›\éu\ÓÃ˜','wp-admin/css/customize-nav-menus.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';k)1ÁDÀ¸\rµv0§',_binary 'Iœ° \íR$I¯1g ?½e8,\èQ\Û\Õd\ê²öüóC','',0,'?'),(_binary 'AyEH\ÚÀ\Çf¸)\\\ä	÷','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-system-info.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿ¼¾\Í\ï\å0Ÿ	œo\Ë¶',_binary '¸0\Ëj¡™\Z‰“¥&\Ö\Îð´Ž+V6ûm¾\Z%Hô yª¥','',0,'?'),(_binary 'A\Þ\àf?ù\ÃE¥ü\îU^¦','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/Loader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\Îa?\à\É4>Á.@kh\ì‰\ä',_binary '1‹0—\ì;\ì*\á¤}I)v´ž\Öt¬YKPÇ·þòÅŒ \Ûð','',0,'?'),(_binary 'A\r7H&‰&¡\Õ,H\×\Í','wp-content/plugins/woocommerce-multilingual/classes/Rest/Wrapper/Reports/ProductsCount.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ûL\Íÿû=TrŒ7\Í2Df',_binary '\"q¸ŒŠ	\å‰hy7\ß\ÂF-%×¯dMBJŒgú-|þ\Âs','',0,'?'),(_binary 'AE¶ûô[€`Œ·•','wp-includes/js/thickbox/thickbox.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ò\Ú|}\Ê\Zc‰%\Ó\î9j¤\ç¨',_binary 'œ\Ób?/a#›×¼Áhlƒ¿’‡€\á†\Ï\rk\Ç\äŸð','',0,'?'),(_binary 'A$ûŸ‘!{\\\Zˆ-¡\"z1»','wp-content/plugins/woocommerce/src/Internal/Admin/WCAdminAssets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ro½òöŒ\ÜÈ§\ØÏ\Æû',_binary 'L—^O¹’7\ëkoE“¹’S…4!½.µQ\í\07öZ','',0,'?'),(_binary 'A+~/JÄ™4€¸ó$Y*\Ø\Ó','wp-includes/block-supports/spacing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\ä<ŠŸ<	!²(D\Î÷',_binary 'ño±›yª®\'4j²·\Â\r³\ZÑ±\á\Ì\Ê\×Îb	=3','',0,'?'),(_binary 'A/hÍ³$BQ¤\å:\ä¥¹\ì','wp-content/themes/twentynineteen/single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©„F\ÝN|F\Ù\Ç  ¿þ%',_binary '\ï¾;\ä‹`\Ç ³¿:”6\âŸP\Õúq\ÑLƒ:*;\ßø','',0,'?'),(_binary 'A1¨„W@¯{`\ÆL\0[¶','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-contents-block/products-table-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´–é’¯\×5QƒO=ü`\ì',_binary 'å®œA\Û>S\Ù£ªù‰—½Xö\'l!\æ_Á³«úž','',0,'?'),(_binary 'A;Øª\Z¼¾–Ü¦\ïz«','wp-includes/sodium_compat/lib/constants.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Á½¼\ß{\â»#…²l\Å>m',_binary '¬\æÙ¹mc(\Íl\Ú\åû\'\Ñmt\ÛË£•[”\Ìg¹\èW','',0,'?'),(_binary 'AHŽØ˜÷\Çå“—AK‚^¶','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-terms-block/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i@\ä\ê}o™0XY',_binary '+±#Ç¼Ì˜›Q<£\î\Ý7«„ŽL¿È–bM\å§k´µ³','',0,'?'),(_binary 'AK<¬\Ë\Òj§œgsr\ã','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Precomp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4¬•Kb(\å\\\Þóp¸B-',_binary '\ç•Õ³* Ê°	¶\ä†[qŠ¦ËœPˆ\æ‚ôk','',0,'?'),(_binary 'ALiðZ¯$¯zxÃ’°WÄ¿','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-video.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­.ý?\Ï\0\ê\äI\Í\ß\Ëÿ™û\á',_binary '\É\é‘N9¬u´½\\h\ÝpGÑ¶‘\É>\Z†&”Ü\á\\','',0,'?'),(_binary 'ATñyxhl|°4+ƒ\Æn\çõ','wp-content/themes/twentytwenty/assets/css/editor-style-classic-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'òo¾\'<\Ò^ü 0§P¤õ+',_binary 'ë¤oÏ™®,/»§‘„Éžq\ã?ª¯‰³s\Ó\ÏCvF‰','',0,'?'),(_binary 'AX\Þè„Ÿ\ÑX°\nÿ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/all-products.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é`«¡k\Â\ëô:\0¼õ\î',_binary '­:3#¬wþ\î¯\å\ÎC’–¥°!óŸƒ\Ê\ÌIJ\æk','',0,'?'),(_binary 'AY=FYybðwr‚p°\Ç\í','wp-content/plugins/woocommerce/src/Internal/Admin/RemoteFreeExtensions/EvaluateExtension.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\èÒ¯\É\ÚOýÞv\ç\æ6t²',_binary 'ùSüX­Øu\áƒq”«õxm<|§x\ì\ÎPÁ6Eº\áö','',0,'?'),(_binary 'A[¾©®x€^|j\ãzdL¯','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/ajax-customers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%Y‹€32ô1\×új»¨O)',_binary '\Ök¤+M\ÚúðT\Ô	7\á\ï•[š\Ä\"Ï¯ªQ\'³ô\è_H','',0,'?'),(_binary 'A\\Y\Ü\ë \à§”ò›0d','wp-content/themes/flatsome/taxonomy-featured_item_category.php',0,_binary '>\îa³~/-g\à\Ëp*\ì',_binary '>\îa³~/-g\à\Ëp*\ì',_binary 'nh{U\çE–\"˜B“‰\ë£\ÐI\É)ì˜‚¹´Z€÷','',0,'?'),(_binary 'A^\\Á”\Ø\0\ÒE£%\î\É{\ã\Ò','wp-content/themes/twentytwentytwo/inc/patterns/header-small-dark.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ã\èAXÏœ3·W6`\rH£\Ãù',_binary '\Ôsôg‹ú]\ØÂ‘gª±úŸœoø\æ\å\nE\0“\n%fc\çNH','',0,'?'),(_binary 'A^iÖ«7zÑ›­\àgð','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-note-block/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'É¨%\èL\Â¾\Î2\Þ\Ø',_binary '\×\ï%•>\rß›¨\çCÞ•º~?•$Ù„\ÍA/¦\0‘bƒ#','',0,'?'),(_binary 'Aa÷@J§÷óñ\Â\×Å·','wp-includes/js/tinymce/plugins/colorpicker/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' C¸\ÃÈ­?d„{×­V…',_binary '¹‘µB¤\êR¬\0¨!—ä„š™ú§\á•QšŒ®\Ä\ï­À\'5w','',0,'?'),(_binary 'Ad½ªX„øß\Ç	»Rn\Ó-','wp-content/themes/flatsome/assets/img/payment-icons/icon-sage.svg.php',0,_binary ':f\Ú\äPcg›T\Äß¤H\Ç',_binary ':f\Ú\äPcg›T\Äß¤H\Ç',_binary '9)\×h®Y§qµt\Þz >k^-}ŒI<\ï\\¦š,Oª','',0,'?'),(_binary 'Ae\ÞNy«¤˜Ù½¤i˜','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/use-customer-data.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pw\ÎFH3h8\Åcù<Ð±N§',_binary 'r\'\Zž2À\ØU\æƒCt†[Tº¡-¡/JW9\Ën','',0,'?'),(_binary 'Ah\\ø°\ßÚ–BMD;\ì…V','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader/class-shutdown-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V‚Y)‡Šò¬eƒÁn“I\Æ',_binary '–#\àì²€‡­\Î\ì(\áe÷ò¡=„™$bf_É–`\ÇD','',0,'?'),(_binary 'Aht·@`ýŒ\ï‡-š\êƒ4','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/fonts/yith-icon.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¢3Hˆ\êD\Ô\Ý6V\0\É',_binary '\æ®ó\ëaµMœT…´t€0§C]^¸V^;¤,\'\Z186*','',0,'?'),(_binary 'Ao0$i^ª¼‚E\Ü\Ü\\’ù','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-totals-block/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ã°Â SÛž%PcUY„R',_binary '\á¥Y\\kz;jSñZ¹5\æ\ß!#µ\Ã‚A_Ö \ã±\ç','',0,'?'),(_binary 'Asºvü÷\îù‚g“4U\Ã','wp-includes/js/dist/nux.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I!F	žmùCgXcHD',_binary '•+\Ö!³+?˜\èˆv3¦\È5u\Íüb“~±¨­œÿP˜‚­','',0,'?'),(_binary 'Asû\ÅDF™°ICŽ=³\'','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/collections/actions.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ò\ßg\\D\Ô\àá¹¾\á',_binary 'epOŠ/›µ»~t1\Ô\Í\î\ì×’3Eµ%S°¥õqtýb','',0,'?'),(_binary 'Av,iÉ©¹z>Ž¹\âóy®\ç','wp-content/themes/flatsome/template-parts/header/partials/element-search.php',0,_binary '+§`\ÔXm¤(M« û$d',_binary '+§`\ÔXm¤(M« û$d',_binary '—Ø‚•\à(‹#\îô?\Èr2¸cY¦´ûÏñ\åa£§@=+','',0,'?'),(_binary 'Az\Ózbh›]³C”šMC','wp-content/plugins/woocommerce/src/Admin/Features/Navigation/Menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|±\È\Ø4þnV»ñB\ê\\g',_binary '7\ÇM6nhgI°¤—²l\ÎHMûYŠ•P>gˆÔªhpDL','',0,'?'),(_binary 'A{&\Ï Š¢V>\ì²Îs','wp-admin/css/login-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ùL~¹bófm\Û1M\\ºW-r',_binary 'Y\Û1O/\ÆoŒ\Ò\"\×4€8G¯hô›Öž´À½®¡Bqõ›e','',0,'?'),(_binary 'A:>m0\"š†°¤&s•','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/config/ToolsetConfig.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»‰Wµ<\ÜüyjE\ç«;K',_binary 'OrC\Þ\Ê4#­ÿ\á9*\ï+4ø‘j§½Q\×\Õ\Ö0CN\è§\ç¦C','',0,'?'),(_binary 'A‘D\Úlª\á!yñƒ\Ó1¦\ä','wp-content/plugins/woocommerce/templates/checkout/payment-method.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mò\r\é}\Ì*ð#\nu\à\n',_binary 'SÔª\Â,½,\ÓÁE;ö\è0…\Å\Ü3¦!|\ädR¾s\È9\î','',0,'?'),(_binary 'A–“\Z[\\iØ°4X\Ê9¤\Æ','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/template-service/class-otgs-template-service-php-model.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u]\Ó¡ž°\0eú\Ðc[',_binary ']»B‰sby™„±‰D¨ñÁ¨Iº¦}W.^\Ï\Õ','',0,'?'),(_binary 'Aœ°¸\á(Ÿú9\ËaË‚²!','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-express-payment-block/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒm?9´Vû\Âq®¶\í\Ã^0',_binary '\í\Þ{„©g••\ç\Å±ù\ã;Oú$jI\æj\"«\á\Ø\"','',0,'?'),(_binary 'AŸÿ©n\í~<\ÆBýU@ù','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/privacy/class-yith-privacy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“¡\"\Þ™4~w9[dKHø',_binary 'v•Oþ\Ú\ìW?Cg½\æ\îY(\ß¶Á1¸\Â%›Â£{T','',0,'?'),(_binary 'A¥\ï8V, _OÁX\ä4…´\ç','wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦oNZù\ãwñ¼N­\\†',_binary '‘‹>\ìhRzIvI\Þ\ïeP¿lº\n\ÊG\Ôr¢\Í\0\ï£','',0,'?'),(_binary 'A§(ÉžL6À>[\Ç\Ð\Ô','wp-content/plugins/woocommerce/templates/order/order-again.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦t\âõ@\Ì\Æ\ç‹\Üsý7\àu',_binary '¼\×\Î0ÀNø\Õ)ý¿º!ñL¸´¤ð[²\'yK','',0,'?'),(_binary 'A¸\0ˆ\'Uý¬\Ìò¡\Ûû¥÷¡','wp-content/themes/flatsome/comments.php',0,_binary ':Šµð\ê4u/¥ 8‰ø›',_binary ':Šµð\ê4u/¥ 8‰ø›',_binary '…©ƒ9«€3§nö\ÙxAŽ\èi1c9\Ü\äÄ®!QÀi\È\Ý5«]','',0,'?'),(_binary 'A¿¬B³«\ì\Ø\Î¾¥¨\à\ÇD','wp-content/themes/flatsome/page-checkout.php',0,_binary ' \n†lÙ°¢\áŸlEj\ëÐ“=',_binary ' \n†lÙ°¢\áŸlEj\ëÐ“=',_binary '\Óò~tN\ÖìšŒ\ÃL$\ÐWmùg\Ð\ä\\„®¹\Æ\\²]•²','',0,'?'),(_binary 'A\ÊÈŒJpWQD?n<´\Äi{','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/CustomAutoloaderPlugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›(M\Ä <¬\êÆ£Íº E',_binary '¾\Èg\ÅN)ø—I[ƒR\Ãi\êÒ­!A\ï]®|¾_yw-','',0,'?'),(_binary 'AØ»#¨²¹\"ó\à\Åj­','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'šºJ<1/%$\ÇJþ=Î”§',_binary 'Ž\Øv‰\í\æp	eKK²7\Ý\î9š†÷8¢¸úªö±\Â­”\Ñ','',0,'?'),(_binary 'A\Ú\Ï\'ˆþ6c€\0\æ\àr','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-plugin-licence.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ë\ÛÐ’\'\Ñz\ä¯Á T|\'»',_binary 'Ù˜N.	1+\ìQuŒöÁt©\ëY8/\n\ãŽ)V\Æ$²M\Ð','',0,'?'),(_binary 'A\ÞT¦\rƒ™2ì–²3mV¦S','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@½K\Ì¢½{~tbYb',_binary '\áš\n\ï…Èž…\Î]‚\Ør¹¢6	ÃšZ{TVc.€Gv‡~','',0,'?'),(_binary 'A\ïûûmv#YtŸ$r–','wp-content/plugins/ti-woocommerce-wishlist/views/section-infoblock.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\í.§¾….F«4-;Oø',_binary 'ò\ãF5™«*X’,€)\Ý÷	s?duñ\éW-D†rj`‘','',0,'?'),(_binary 'Aô\\\ï)lCtög(o‘F','wp-content/plugins/woocommerce/includes/admin/importers/views/html-product-csv-import-form.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Æ!Å½\ß\04†\ìE²',_binary '²ºýöÛ¨\Ð\Í9.·…Á<Q5QÓŸþ*¨ÁK€H)\"Œ\ì#^','',0,'?'),(_binary 'Aý°‰$h\ÜõÕ`Qøa','wp-content/plugins/akismet/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ïh•¯ P\ëZ\çÀºÝ¢`Ef',_binary '½\Â}\Ü\Ü\Õ5\á›eÿ3¹\Ù3ÁŽmhyD\æŒQ(','',0,'?'),(_binary 'B¢Š@’\Äc³<\ã\à€·B','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°j_û}ÖŸ\ßÿo\ÜH¯',_binary '£\ì|YÁ\Ó\Õ=uÊª.‰OP¸e\ëÐº%úhS›\0','',0,'?'),(_binary 'B^\æ\Çt›p„k€Œòÿ!ú','wp-includes/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\Ù*L\ÓTG\â\é4%P‰´¹',_binary '-–‹\Ù\Ö©nFJ­&T\ÓP•o\\Ï“\\Ž¹¿\æ2–\í\ß','',0,'?'),(_binary 'B—Å³JB˜9÷že!v·k','wp-content/themes/flatsome/inc/builder/shortcodes/col_grid.php',0,_binary '—<°œ0«\ÛAF]<•3{',_binary '—<°œ0«\ÛAF]<•3{',_binary 'òK^\ä£l:‚.hgû2>ûKM÷…1,>™c\Ú\Ê\0V£^','',0,'?'),(_binary 'B\ã\×EiL¾v½pö\Öf','wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-webhooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«ù½_„‹Z4C\Ô\Ë\âe',_binary 'ˆ²‰=dSI,w;œª­l\á[\á¤\Ý‰\Z\0¥¦\Ð','',0,'?'),(_binary 'B&ž\è‡ Ì¨A\n¶¿ f2','wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_FatalErrorMonitor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=ž÷÷,ÿ##\á².\ß!oþ\Î',_binary 'ºŒ¡Aº,=‚’ñ%`	y!²v\èø5\Ôx·\Þ7','',0,'?'),(_binary 'B5\á\Ù1\Æ9SU\Ïð\ê ,','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/date-format.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bS½Æ­…Š\0¨{M¿ð\Æ',_binary 'úF´¼$ }“F\æ\Ññ„Fœ\Ç\ÛúŽ’šñk\×\")‚†_ÿ','',0,'?'),(_binary 'B:LIµCM\à\rÉ•\Ç4ª\Ú','wp-content/plugins/woocommerce-multilingual/classes/User/Store/Cookie.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\ÜÒ\Ó{:QJ\ã\nh§\Ä',_binary '¼Y\â¿E[¤)Pe\ÄU\Ç\å\åG¹³[’;H~@¹Á#\æ~ž','',0,'?'),(_binary 'BFüL.\æÔ±\á®B°?º','wp-content/themes/twentytwentytwo/inc/patterns/general-divider-dark.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mž0+ÙŠ\éK„\ïò=@Ö†\r',_binary '	ža\Ã.{\à\ë\"\ØcW\Ï¥C±z\n\äj\ï¾RZ#€\è','',0,'?'),(_binary 'BJ’„O¢ž\ä¯ü†zD±','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Í\È{ö1¬MRœKE_\ßú/',_binary '|qŸUUÑ¿ÃŽ|z¹G>*“Ûœ\"‰\é\æI¢þ\Ý;ƒ','',0,'?'),(_binary 'BKŽ7_7,!^P%„\é,','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/filters/get-block-attributes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Åm\ÏL‘y\âõÌ‹4ò4”»\Ò',_binary 'Œ\rÇŒ›.$ W7™]ˆ:h`’‘\Èûˆ\ÂoÀ¤j\ëŽ','',0,'?'),(_binary 'BRK\Ç•\ç‡0²(@\"','wp-content/plugins/yith-woocommerce-compare/assets/images/11-bg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Zk—ö”EI‡b™½0\ïn¢',_binary '\ZYJ¸w‡•\Ýt¦À‡£\î¤8H˜ö¢\Í\ÙC6Hœ\Ô;','',0,'?'),(_binary 'BT‰p–\Ü\\‚|kKBl9\Õ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ActiveFilters.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0·\ÇtÙ”d³GŸ8; \Û\ß\×',_binary '%Y\Þ\'O÷ªS }\×\îoe~¹‹ºþû‰\Ò\ä¡ö#¡VŠ_','',0,'?'),(_binary 'BUj”v\\Ñ£\â•\á\á\è(«','wp-content/plugins/wordfence/views/common/license.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨\è°:8õ´š\Ü\Þ^¢r',_binary '\ÏfòB-h‡Ÿ¾™\í^\È>A\ã\ïð”nH0\Ã\r&\Ëó','',0,'?'),(_binary 'BW‘T?rJ\æ\Ü\îgqky','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/hidden.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÍMÿ\Æ\Ü6Mz­ q\\Vk',_binary 'VÀ\Ô\È¾†šÚ—cÁ¡\åPƒN@aÄ˜\rœ”‰\ßÁ','',0,'?'),(_binary 'B_¢Ô°\Õ\è¡ªICo7%','wp-content/plugins/woocommerce-multilingual/classes/Rest/Language/Set.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿô0—­õ~§\í!\îœj',_binary 'Ìœ–W¶œl3Ñ—\ÕI‚Ào‹n—1Y4«,u\Ý#õª\Å\Úó','',0,'?'),(_binary 'B_\å-‚Th\é+`Ã¤¢R','wp-content/themes/twentynineteen/sass/variables-site/_colors.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ûž/›q\ÍË“(—T\Ò>)',_binary 'tG—°¸Ö„\Ò\à2¸\ZF\Û]aY\Æ\ç\ÜJb\åpð©\É','',0,'?'),(_binary 'Ba(R³À#“@‘•€','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-product/utils.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w^!\Î÷\"Dv¬–h	L	2m',_binary 'ˆ‚¢s(dQ©K(\Ù2F÷\ÒA\ÏGû&«‡iûm\ì‹','',0,'?'),(_binary 'Bo\è\çü£·N*QK\"','wp-content/plugins/woocommerce/assets/client/admin/beta-features-tracking-modal/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Û\Çô0!‚…±;Cšx\Ú%G',_binary '\Ì,ù÷%j;k›n\Ü³k(wL\Ñ°°\ÖÑœ¦J','',0,'?'),(_binary 'Bs\Ì\ãŸå¡˜TÁ\åô\ßL\í=','wp-includes/blocks/calendar/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '14-9FŽ&5f4¦\Í(',_binary '\Ég¿õ¸µjv \Ê\Ú\àAU©ù$jl¼?¶¿Â…‰\Øö\ï','',0,'?'),(_binary 'Btž\Ì\èœb‡\"\ÞFd^–','wp-content/plugins/woocommerce/includes/data-stores/class-wc-product-grouped-data-store-cpt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'û°\ÂÉ€À®²\å3hbñŽø',_binary 'Jn³\ä5òø:¢4‰\Öz˜¶\Ôƒ)Ê®¹®O(	\Ç\Øý','',0,'?'),(_binary 'Bx9$Žú6\ÒL\ÅEF|Q','wp-content/plugins/woocommerce/assets/images/icons/star-half-filled.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\èH^¤$Aù\Æ\Æ£^w?',_binary '<2P‡1\ÔVÁ8\ÜJªCR3Uo\Ðÿ:\ãû&„\Ôl\ÑX\Ü','',0,'?'),(_binary 'By\ËUQ<ü;€œ˜a\ç\ç&','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/price/edit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ë0nngC~³#!\Ïu`0',_binary '\Í­1‘²·\Û<\å8øGø¤Št1\È$x\çvrt6Œ$c\ìj','',0,'?'),(_binary 'Bƒ\Ñ˜\îþf\çMô8(','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Exception/ExpressionErrorException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³Ê“/9ò\É&F0\áVˆ\"\"',_binary '¤KÀŽ\íi\Û£b´TßšÓ¸w”\íQµ\Èú\êŽ\ÈK›','',0,'?'),(_binary 'B†¡j„)\ß\Ðq¼DŠS','wp-admin/install-helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€‘W\êAoq‡+C2Xd\Ä\Ò',_binary '\ãW>¤;š\ç%Ö6s\Ç%T‘\ë¹òv\Î\èª#o(Ê“ù','',0,'?'),(_binary 'B†z¢›‘`–“[\ï¹\"Á','wp-content/plugins/woocommerce/includes/class-wc-data-exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jô\"ƒ^6Ýše#\És_\ì²',_binary 'kO])õ\ì&·\ï9(B>ò^þ$\'RaZ$µB5\Û\ë\Ý','',0,'?'),(_binary 'Bž¢{bB½\Ý71@CCf†À','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/scroll_to.svg',0,_binary '4¥žAr¢ŽÓ¨D£¿',_binary '4¥žAr¢ŽÓ¨D£¿',_binary 'iT:ÿ`\äø ¤Á†PÁ=Šv½v\"Eq¶\â\Z\ë÷°\Än\Å','',0,'?'),(_binary 'BžûõQÁ¢\ÓaUÿ%','wp-content/plugins/wordfence/views/scanner/issue-knownfile.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'È’»Sd\Ë9Q!\ZÁp\ç3½',_binary 'ñ.:\ãû \é\Âù2î« KS1ƒvGüHV','',0,'?'),(_binary 'Bµ±=3j)	\íN\ÖžoB','wp-content/plugins/woocommerce/includes/admin/helper/views/html-section-account.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦®b¾f,\ÌWY16™',_binary 'O»ƒ‰ø6¢ :\É\ír¶\ì;¿ª\Û\ÊQ‚¥SyFJ:Š*','',0,'?'),(_binary 'B\Æö9ˆ¹öv\ÓF\rˆWX?','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/builders/elementor/class-yith-elementor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ØV\ä&\Ï\äñ\ÄNƒ«&K\Z\È',_binary '˜ò\Îc÷Žc%m’^„Ý¹%™±f_…{\ÖÓ„ŽfwŽ“','',0,'?'),(_binary 'BÏµ‰\ÈóH@xª¯/','wp-content/plugins/wordfence/waf/pomo/po.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œvc+p*\Û\"G–¤?õB',_binary 'ŠMO(‚\Ï\Î G\rkHÔ½²eq\Ï\æ	\ÃÇˆšF\Ïo\ë€O\Ë-','',0,'?'),(_binary 'B\Õa¬on¼‡c\rŒvzeR\ä','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'üñ\×:\Ø8¡²Ù·\ÄIø¢',_binary '\ê\0\Ä\î±x\Zaª‡\ë&*­U<Æ‹¦]\é\ÊyÜ»','',0,'?'),(_binary 'BØ‰O/b¡›ñ\Û\Ý\Þ9C','wp-content/plugins/woocommerce-multilingual/classes/multi-currency/payment-gateways/class-wcml-payment-gateway-bacs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\î\\—^\Ð\r%\Û&¥)<Ñ¶\Û',_binary 'OX¥¼\âCÃ‹	#ŠWÝ²ŸZóŽ\í&½\î›i\Î\'\ç\à\ÄýŒ','',0,'?'),(_binary 'B\æºP‰X¡W\Ì\ã6\é\Ë','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int64.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' õQA\äL›’\Üóšœ†Už',_binary '™\Ü\ÕG±¤\n<.\ZW‡r´\Ø£Êª\Ç\ãÃ˜¢)','',0,'?'),(_binary 'Bó¢\Ã¥“r‡\Å\Æ*\ËIs','wp-content/plugins/woocommerce/includes/gateways/bacs/class-wc-gateway-bacs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡Rm2vS€k\Ök\ê½',_binary 'n\î,¶\êI—M€\éTjL°û:¹2v1{ÿÝ\Ó\é','',0,'?'),(_binary 'Bù’$fV\Çs@NŸ‚R\É','wp-content/plugins/woocommerce/packages/action-scheduler/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»\Ó\ãB7¯&\Ú]ÀŠNDd',_binary '\Û@H\Î\ßÁ\å\åM;ïº¾‰5 i\Ð\Ý\'™\åo\í¤5Vö','',0,'?'),(_binary 'Bý7G4ìŠºu˜Te','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…&•\íVc”jö–ôª2CD',_binary 'X/LÊ¹jYŸEB“xtºd³¶\Î3÷\íß¶b½·­Tj³','',0,'?'),(_binary 'Ck´@y†Yµñ”›\\.ò','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hooks/test/use-position-relative-to-viewport.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹\Åø¥þ5\ß\î³SG^\Ä',_binary '\Úr\Î,¤4(>¡{\Ûp\à\ßõ;\ß_%¢{lx>ÿ2®Ó¢','',0,'?'),(_binary 'C4Š¿Èœý°-\Ôfü!-¢','wp-content/themes/twentytwenty/assets/images/2020-landscape-1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚\ên=âŽ¼™”t†NR\å',_binary '‚@m\Ðoý\åÜ›MbrÑ’§¦¨$ ¤zû\r“2ñK=','',0,'?'),(_binary 'C6\é–mô-.BŠ“\Êr?','wp-content/themes/flatsome/inc/admin/customizer/img/dropdown-style-1.svg',0,_binary '\Ã\Ú\Ö\Èð‰\ÖÅ›ty‡^V¼',_binary '\Ã\Ú\Ö\Èð‰\ÖÅ›ty‡^V¼',_binary 'K0\Z¬\è\ÐJ[\Ü\ÍG\è9\n_¶\Å>¼2\î¶\êõW0','',0,'?'),(_binary 'C6øy½m­’¢\ç‚*f\Ó','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/reviews/review-list/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£ŒF– H\\¢Àz’Ž',_binary 'Dk\ÂwDŒ®?Qað¥¾£M5˜ñÁ³\Þbp\Ç\èxŒ\"X','',0,'?'),(_binary 'CBŽ`\Ì\"ù\æÀ\Ý\Èh˜*f','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/MagentoMigration.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\éq$¦<YW_ ˆ{g˜\ìó­',_binary '–\Õ}\n¨$\0Cx]õ¥©]\è4\\\ê|K¸\î¡Áf÷­[','',0,'?'),(_binary 'CC]§ik*QJ{,\é\ë;','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/utils/create-blocks-from-template.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\È\È^\Åø™ÀžQ \Z¨>3',_binary 'G\Ö	‚m0¨=˜T!j1%®þ¿S([¹Ë­\0jÿ+ÿEYª','',0,'?'),(_binary 'CCû9ƒ`«D\äfi«†xS','wp-content/themes/flatsome/woocommerce/product-searchform.php',0,_binary '£\ËNÁC¡nògx\í¡\ZÀ',_binary '£\ËNÁC¡nògx\í¡\ZÀ',_binary '\Ñ\ÆYa+OH=ðv!Ì¡—¥=(yš“&y\×(0	úlSu','',0,'?'),(_binary 'CEvZ>I¥AÊ‹m`','wp-content/themes/twentytwentytwo/templates/search.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ö°\Å\Ñ\×ò—ø¥~*òo',_binary '¿g.\ßh\îŸÀLÙ²ô‰’„…Õ”›\0t uô@Ž\Ê\Ð','',0,'?'),(_binary 'CK\ë©J¼Á6LAM\ÌkV','wp-includes/blocks/post-date.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EP¾\Å^ú\á¥\Å\Öv{',_binary 'É«”Ê´Œù|\Çñnsé‹º\ä‘@Kg\Ä?ª]ß³ysQý','',0,'?'),(_binary 'CVX\ÆýaºŸ\Ç.#¯0\æ‚','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/jetpack_autoload_classmap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²¨\ä_Š¶Á!¢µ„°X³ÿ',_binary ':½+•Š\èÀrIt\"D\Õ×Ž	79’öu\å‹‚Bp','',0,'?'),(_binary 'C]Ñ¤/ÁÌ’\ÂI\é)ýƒ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/price-filter/use-price-constraints.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÅÁ\0ñ¾\È\Ïv5p b\Ê',_binary 'ž7¡Aûloóô\'EX|\ì™\îˆö\Èf\Æ\nr\Ïò\á§\Ü\à5','',0,'?'),(_binary 'C`\Çh9Ž\Ì~[½(Z¤v£','wp-content/plugins/woocommerce/assets/client/admin/chunks/homescreen.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\è¿qQÒ¬\éNh˜xV\å\Ù0',_binary 'snS‰w‡u½@<\Äõ~½ušUú‹8ù!×‰\0','',0,'?'),(_binary 'Caqz&\ËmM‰;7ù0','wp-content/plugins/products-compare-for-woocommerce/berocket/libraries/feature_tab.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\Ùi²þ\Ìn\Ê\'@xtU¯\'',_binary '\ÛZº—M¦÷Ë½.\å‡“\îa¦AD®ÂšŠS¸ø…\ß','',0,'?'),(_binary 'Cb¦¼\Ûú\nº\×C$Gu','wp-content/plugins/woocommerce-multilingual/templates/status/plugins-status.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þm{´¡\Ô\ç–1ž‰\é´I',_binary '\èd!°ž[$Bü\ÏŸ÷q`¯œªö\æ¨8)ÿ\ìÞ‡\ä¼€','',0,'?'),(_binary 'CiÙš\æóba*õ\éú','wp-content/plugins/woocommerce/templates/emails/customer-note.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ü‘œ\Ú\ãG1ƒM©\Èirž',_binary '\Î{7\Ó4t°)+5\\\'\0ZÁ5;\Â\ß,\Ý[÷³\ÌG\á','',0,'?'),(_binary 'Cn]¶\Ëq‰¸js’\î¢|–','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oG´Y>\íy\ç*^Yòú',_binary 'M«ðŒr’¹%kÂ™!ó‚¥²½¸Ó²ŽzÝ	)úð\ÆCþ','',0,'?'),(_binary 'C|z;¿—±E³€w\Ö\Ï','wp-content/plugins/wordfence/js/jquery.tmpl.min.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€\\}\Ã\"£†‹7Ú·’•DZ',_binary '\ß.IôH\Z„g\0óH!7`‘£gÞ ZøzÈ„ƒÅ¾6|','',0,'?'),(_binary 'Cc\èˆiF›\×h\è.n7”','wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŠRf\Ó0«ž\nj\0i<·W¼Ž',_binary 'NZØ‹)_à¾Ÿ)IƒñF`[<úK¬ø \îgmÌ³','',0,'?'),(_binary 'CƒðŸXC&&*\î\Ø[‹*N‰','wp-content/plugins/woocommerce/assets/js/admin/term-ordering.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«ú-®=Y\0˜2”:‘3',_binary '‡\é\Ú\Ý¡\ÝÓž\ZÐ³n÷\Ö\ê¨û+i\Ó:K)%‡Œ','',0,'?'),(_binary 'C‡ˆM8\ÝAª·Öº[n\'\\','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/search-list-control/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Tº€­H/\æHõE\Ç0–',_binary '\í\\+ ©g0\Ýþ*\Ãp)aþîˆ®)ì¤¤þR<\ÑÄ‰\ßo','',0,'?'),(_binary 'C‘»\ÔIþ»\ÞS7\ï<','wp-content/plugins/wordfence/modules/login-security/views/page/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ð¨>\\g®\ÉÇ¡\á$«\Ìc\Æ',_binary '\Ê÷„ii¶›G«Cª\Ï\Å\éN€FL\Î)7%Ê™\æ','',0,'?'),(_binary 'Cž$>Ä‘ð©n\ïy','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/block-components/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\ä\åu\Òq»\rÚ©¥/\î\å\È',_binary '¤´|™¨±\\Ö‰m%³¡ U«—©¢\Ä\Ü~¤ô\Þ','',0,'?'),(_binary 'C­ms\n\Ã\áXø]À\ÅK’T','wp-includes/blocks/search/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦:ˆx\ÉIkO\Û)Š\ÜùR',_binary 'š•±n“•uQP\nJvqñ..;\ZüK\ã—\×L\åp','',0,'?'),(_binary 'C­\î›/ˆ@²l«‡YÁý2}','wp-includes/css/dist/format-library/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô<;nDNe(wˆ©',_binary '5n(6eoY\æZ‡\é]\Ô.Pq\æ•I†eg6À©v?c\ísJ','',0,'?'),(_binary 'C²Øš\ÖT¼Rª!vF{','wp-includes/customize/class-wp-customize-nav-menu-item-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*:UÈ›óœJ>˜\Êhóz',_binary '=ùCó\Õ\Ô\î\0\"È—ýgp\Ô{´¢KÏ®D\Ü\'ø','',0,'?'),(_binary 'C´»!\ÏLc ¨“2ñ\ë','wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/US.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ç\Ý½‡ë¿œÿ€ô÷\ÙÍ¯c',_binary '1\n¦úk8D\ïo†«z\0÷¶ev\êB_p¨{Ÿ\Z','',0,'?'),(_binary 'C½£û^\ÑÇ¢\Ù\ZG\ÅwÆ•0','wp-content/plugins/woocommerce/legacy/js/selectWoo/selectWoo.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™‹œ…þR\äS¨Šw€€N°',_binary '\Üû\è&iñ­L£\çHC„\Â\ZR2\Ï	µ¥#\Ë%||‹—MC','',0,'?'),(_binary 'C¾\è\á\ì¬À¸!y\ä6šã‹¼','wp-includes/blocks/buttons/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª^ð\Ó)3bj\0\å?',_binary '¡ùna:?AhW\çH9£\ëF…øn¡Ü±\è1µ#µpdy	›','',0,'?'),(_binary 'CÀCü\í:ËŸ¡Eoeh','wp-content/plugins/yith-woocommerce-compare/assets/images/mascotte.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'od\Ë\ål4•Œ‘r›\Ä\Ä\ÖP',_binary '³ª|¡Æª\æh¤|›\ï#Žš\à\Ëûd²4\Ûe%ŽdYL','',0,'?'),(_binary 'CÁŠŽ\Õ?n\Þ!i<\éBmˆ\Â','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings/blocks/feature-flags.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿºf¤¼B^\ê*€m\î\éX³',_binary '¨]\Ër-³\Û~ôß·´–lžH\ã¯ÀÐŒ	\äLd','',0,'?'),(_binary 'CÆ²¿uI^;n­BDo&­','wp-content/themes/flatsome/inc/admin/customizer/img/align-right.svg',0,_binary 'C+\Ü[”¡{U;ówôT¡\Ñ',_binary 'C+\Ü[”¡{U;ówôT¡\Ñ',_binary 'ª\Úf:N\ã\'5\×sÑ\'žp”\È\ín#q\á\Zß','',0,'?'),(_binary 'CÒ\\H¨œ–\è¥¡ƒX—','wp-content/plugins/woocommerce/includes/class-wc-order-item-product.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hÎ»•)Œ¬^…yùgt',_binary '\Õ\ÙS³±\î‘d\Ã\ÄGüzÚ´‰*2ƒp]·yŸ¯+t \Ô','',0,'?'),(_binary 'C\Õ\ns%+j•›§#‚n','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-terms-block/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!Ž>6ÿaœ˜S¬\ÇyG!',_binary '\æ€`\\ËŽYŸo]a&\ã,¤K)\Óú€®œ»L¤\Í\Úò','',0,'?'),(_binary 'C\Ùeû\çš\ÃF.Ò¨3:\Ún','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-backorder-badge/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~E\\Gn\r6#-ª\áø­\ÄB',_binary 'Š>tQtŒA3‹°\á.\\Ú¾÷ï¹,R\Ì|¹\Þ—)','',0,'?'),(_binary 'C\Ü|Q\ÄKO¢EQ½\rt\î','wp-content/plugins/woocommerce/includes/gateways/paypal/assets/images/paypal.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ð{„\ßÆˆ\ZÔ˜\ß>\â]\Ò',_binary '¬\ÕÖƒ:N,\'gÒ§\àô#\èò•b\ì	d\Ä)\ËöË¸§','',0,'?'),(_binary 'C\áŸ\É\0l»\ÂU\êõs','wp-content/plugins/woocommerce/assets/js/jquery-ui-touch-punch/jquery-ui-touch-punch.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÈÁ)\í\înª\Ó\'\çYþn\ÄB',_binary 'f\ãG\'5Y“Œ“{\Í\nŠ0\äB\à7X©I	\é\ÈAþ‚¯P!','',0,'?'),(_binary 'Cò–§.Á†Lü5Ž\â£F','wp-content/plugins/products-compare-for-woocommerce/berocket/templates/widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ë¸‚™,cJl\áKœ¢',_binary 'H\ÔC\Éù\Ñ\ns\ä¢!\nÀËŸ7‰‘n™®\ê\Êþ\Ó\Ê','',0,'?'),(_binary 'Cú\Øs\\§\nò–\à\ÚsŽ\Õ\'m','wp-content/plugins/wordfence/lib/menu_tools_whois.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2Á \åEF?xO\0ø˜',_binary 'ðwwRÅŽ\ë\à\ÝIð|s¦„o-o¥¾ñ‰8£\Õt‹ ','',0,'?'),(_binary 'Cý²\\UFsp\Ø|øW1‰KJ','wp-content/themes/flatsome/inc/builder/shortcodes/title.php',0,_binary 'pª›‡ºÁVc°‚v@ht',_binary 'pª›‡ºÁVc°‚v@ht',_binary 'ûµ‹p‰~÷ç–®\Ç	\Ø\Þuõ<·Uôa;\"\Ã.','',0,'?'),(_binary 'D\'\Ý%½\äŠS\í6ó>’{','wp-includes/js/dist/customize-widgets.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%ª/\Ü\Ó\ÐYö\äMð‹¾',_binary '\â™\\¥`Y=\Ðù®¯uPþüƒ?\0\ÐYÙ%\ßQ7›\Øð','',0,'?'),(_binary 'D^ä­€+\Û\å\Õ.Q{Í—£','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ò\é°\×L°ˆ\ÏýŠ—JM',_binary 'V\n»¸\Ë#\nõA†@,c]:ú¤a# ™†a­Œ\n&¹7','',0,'?'),(_binary 'D	( ,|¹ŽÀµb?\ïL','wp-includes/blocks/query-pagination-numbers/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e‰\Ö*•˜ôlµ:À\Õ\\w',_binary '£\êw9±C\ï1\Õ\'\Þ$\å”IN+¹¡3Úº\è¾$ƒs','',0,'?'),(_binary 'Dm·\n»½z—H‚\ÃS”\ï\ï','wp-includes/images/crystal/document.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰\'^cšsÀù\ÄD‹ù3T\\',_binary 'g\æt\ê»( ÅŽ\çˆk`5Í’¡ûJ·\ÌM5®\Â\Â:j\ä','',0,'?'),(_binary 'D\r\\y@‚H‡\é\Òv÷q','wp-content/plugins/woocommerce/includes/rest-api/Package.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#KøH^@4„Š	ý',_binary '-v \ä«~I\ÓU5´Ký^²·‚hû^¹jr67m÷}2<','',0,'?'),(_binary 'DT\ÒY‡R\ã\ç¥<ó£÷bo','wp-content/plugins/woocommerce/legacy/css/wc-setup.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ó”@\Ë{\î!=\çuZ',_binary 'fýŸ,\Ýö\Õ\Õü0?jt\"×‹ûo\î•g\Ë\ì³O\Ø\Î1@','',0,'?'),(_binary 'D&Í©w¼°\å&Zn\é´','wp-content/plugins/woocommerce/templates/single-product/add-to-cart/external.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Þbùô“°iX‚(&G_W',_binary 'W½ÐŠP9¨Ô¾\r\ÜO°ùºÜˆ«B\Õ\Òö \äI…‰','',0,'?'),(_binary 'D\à@\Äk­C”}Os\Ö%','wp-content/plugins/woocommerce/includes/class-wc-shipping.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uÅŠG&‰¥\ë¤\êst—\å\×',_binary '\Þü§=x*\ìÝŽÀ.ý@û7¦\ÒP*Úƒ\×(Šž»','',0,'?'),(_binary 'D!žÔ¯ð•„°†\èF','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Payments/Integrations/BankTransfer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ü¯l\n8>1^O‚bw1\íË˜',_binary '\Õ.~«\Çõ;§ø7*~i?\î¤~\êY¿—ý1ž÷ˆ¦’@(6','',0,'?'),(_binary 'D#û\É\Ê WuhðÙ¥Š','wp-content/themes/flatsome/inc/builder/shortcodes/ux_countdown.php',0,_binary 'Hþ$Eæ›ªe¥\r\ëx­Oþ',_binary 'Hþ$Eæ›ªe¥\r\ëx­Oþ',_binary 'd¶aU˜¦Z(\ÍùÁ\Þ/1	‡ý\ïˆ]—¦qñ\×JÝ‹\Ñ','',0,'?'),(_binary 'D#q{Å¥ˆªÔ‡bÂ‚›','wp-includes/css/dist/customize-widgets/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1¿Ÿ\×\ÄÅ˜4b›´E”',_binary 'S¼G _°¯ý\r!•K\Åý¹‹Aý9\çG»òk˜’Aú','',0,'?'),(_binary 'D*\Ãüû#¾]«5q¨¼(…†','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-gravityforms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o7/\ÎN\Û\áa	3K®\ëdŽ',_binary '>!+K\È4o\êûH\Ü×aM\Z\ã‚\0\ï·€?¼ƒ1','',0,'?'),(_binary 'D.÷\îˆö:•\0¾¥S\ÔR8','wp-includes/ID3/module.audio-video.asf.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•Ð¼Þ¸.ô\ÇBfžs\äPA',_binary ' K\æ…\0jO`  \Í{,Žï´¨!Ñ§$tr\Ô:®\êp¸>','',0,'?'),(_binary 'D6m\ËeŽr{pK\èO’','wp-includes/locale.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡Æ²\04¦)oóybU^¦',_binary '\Ã<\Ò6n\'úJšÁ³\åô_Á\Ù	ŠS%\Ñ\áGVJ','',0,'?'),(_binary 'D9o8W\Ô}\á%\Äó¾\\','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%œëˆ•—Ž·6\ÒD\è+0¸T',_binary 'PD\Ðy\ÚQc\Ôð\Ë,´‘òax\ÌoCWlÂŒ˜4¤¶\'','',0,'?'),(_binary 'D=növbPˆ°._øœ','wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-custom-colors.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ü”¬’¶‘\à1‡ôZ¢’#®',_binary 'Œ¸”œ‚\é‰Ù‡!­.6´{²O\ãl\ÉJù[!›?x®¡˜','',0,'?'),(_binary 'DDd\'˜®¹p\Å\î\ã0û¥’','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-product-addons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\ï]\åñW#Ô¬§9¾‰±',_binary 'uŠãŸ•ž*\ì!|}€,õ\ËAIB”m´aÓŠª\Ç','',0,'?'),(_binary 'DQ#‘u÷»nU\\ @¹<\Æ','wp-includes/blocks/page-list/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ý·1\rJb¶\å”Þ­\â\ÏÖ³',_binary 'õyxQ{\ç0ùI¥Tcf»%³ˆ\à¦%„+÷NœG\Ì','',0,'?'),(_binary 'DU}øø<‚Þ´D5\è Y','wp-includes/block-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '  3úq¾f\ÎõZ\é2‡ó–',_binary 'We»]±	ñÁó\áuv\×ºuR1ˆd†]\n\ë4^\í¶s','',0,'?'),(_binary 'DU¨\Ðƒ½˜ß±²0`­K','wp-content/plugins/woocommerce/src/Internal/DataStores/Orders/OrdersTableDataStore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜\ÔÐ¬j28±\æ5\éŒ\éž',_binary 'Ù§BD‚—\Øw‡ü’LxYLwQûò\Ïqx\Ëi`ƒ‰Þ•','',0,'?'),(_binary 'DU½\ã¨\Õn\Çó[Rgd\ÍP','wp-content/plugins/woocommerce/assets/images/calendar.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Cz‘\É?š‘ñ;šòw·˜',_binary '\Ñ\Û\ËZ\Zú<\íý}-¥ñx\Z*™PÝŠ”„€·ˆ \ÝgB','',0,'?'),(_binary 'DZùŒKû¾m\ì# õE','wp-content/plugins/woocommerce-multilingual/inc/currencies/currency-switcher/class-wcml-currency-switcher.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\î\ÔÛ±¥:L\Zb…dE\Ï',_binary '`Ðˆ€þw\ÊvS6ŒP\Ä\Ñ+B¢~\æ…>´–<ó]®\r','',0,'?'),(_binary 'D_:>M™\ÓM.mªFN87t','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-tag-list.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \îD\×h#¼C\Ôz06\Â',_binary 'Fo¼\Z¬Û“@GJ?õU!\"ÿö\Ä\Ü\ã!\ê\Û*\Ïh\Çd','',0,'?'),(_binary 'D_¬÷*šØ´H)—½\\Ž+','wp-content/plugins/woocommerce-multilingual/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ß\ãlv\ÖÅ€ž\ì™\×SÃƒU',_binary 'Qó\îËŽk\\\ÖŒXpñ½r|\í…4\íQ\Ùý€*J','',0,'?'),(_binary 'D`‡\n]]c¿\Ëök\Ä¼4','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/AbstractRoute.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŠX-ƒ\Ê~!j\àm!«¥',_binary '&ó\ÍûW9cT\n¡¥\\”-D6œ÷W0\å¬\Úk~K¸','',0,'?'),(_binary 'D`þ\Úq&2úò“','wp-content/themes/twentytwentyone/assets/sass/06-components/single.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…kG‡\Çú\Êr°fû\âJ\Ü-',_binary 'cŠû¬\Æf÷µ†¶š}˜uþ‘üh\Ï\Óð&¾¾ý\çú','',0,'?'),(_binary 'DgºûD\Òt7‘dl\ê¶Kd','wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-simple-corporate.php',0,_binary 'Ü‹CR‹µšRùeNúo\Íb²',_binary 'Ü‹CR‹µšRùeNúo\Íb²',_binary 'V°õ?=\Þ\ØexŸQ\ç’¤€Ã¯!\É\à¶kÄÍ›Mþ','',0,'?'),(_binary 'Dh!Ý²r¥õ\0\n·V\n\È','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-wc-product-type-column.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œ\ïÜµ[›j\Ç0û…	#ÿK',_binary ']\Ú\r\È{µYð²š2p„‚lAva!¤\Ó\'F”ðVHP|—','',0,'?'),(_binary 'Dio\ÃF\ëµN\Ît\Ü\Ùtk¡','wp-content/plugins/nextend-facebook-connect/template-parts/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£y\n\'a\é46›\å±N›•',_binary 'KC~e\Ï\×-|CÙªl©ÿ6Z\Z÷\r	¾¥‰\Íop\Í8','',0,'?'),(_binary 'DkAc7<#Sbócò','wp-content/plugins/yith-woocommerce-wishlist/assets/js/unminified/jquery.yith-wcwl.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w>Šb}¶¼«d€\0UA\Í!',_binary '\Ùz\Ùk!gRn¥²ÿ\Ðö_YúýB³¥©’ùs”=','',0,'?'),(_binary 'DmŽ¹\è‹þo„\"¤\ì\Õa\Û','wp-includes/blocks/gallery/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0S‘\âU\Ä\'\Ï\É2dP¸Úž',_binary ' \Ôc\'®›/D.h@¦\×\Ø9~±„#º7_Š0?)\è','',0,'?'),(_binary 'Dm¤¦u\äÏ£“!\ÂI—5H¤','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Isp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'º”pÙ½­¸Pª\Û]G\Û',_binary 'Œ|¶Ÿ )Š©YûM÷ô,3÷¾¥0\ç\Ê\Z*‡9\íp','',0,'?'),(_binary 'Drz‘(º‰¡Tš\ÏM’?\åc','wp-content/plugins/woocommerce/templates/emails/email-customer-details.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ø~o†\âð+P³¡;?7òDG',_binary 'ù£ôÀm§[öu-öV{U´@À3ˆ\çß±\Öwy\ÛV','',0,'?'),(_binary 'Dt’¹\íÁX\î`¦“ƒy ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-frontend.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŽšüøC\èW\ã\È\è(\ä',_binary '\\\"Õ·ƒÿÀ(-\Ë\Ð\ÞW\Îô>\ÛH^Å®ŸÚœ“!\è','',0,'?'),(_binary 'Du\rýa¤\ë*eLHˆ\Î]\Z','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/express-payment/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ø2õ\áDœ)+Ÿ_n\\jL',_binary '\\üU–ú0\\t(¨j±‘hÍ¨¿QIª*až%R>','',0,'?'),(_binary 'D|“Hƒn¤\Ô\ä6±U\Ð%','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/images/ui-icons_454545_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\åQ´Ë„‘3XŸ¨hZÎ­\ß',_binary 'nyt¥,ó.#øöp5\Ö@\Ë%6qv\'\ë\å`.ß«#¼\Þ','',0,'?'),(_binary 'D}K\ß+ƒˆ;\ê÷?¡ó\à','wp-content/themes/flatsome/template-parts/posts/partials/entry-header-bottom.php',0,_binary 'n\Ú}uwJ`PG[¼\Ó÷€',_binary 'n\Ú}uwJ`PG[¼\Ó÷€',_binary '\Û/O¢±¯ŠûcÂ¸.£a}Jd\É__ÿIª‘4ŸD¹V«','',0,'?'),(_binary 'D‡Áfò¥ûK:ø\â!)','wp-content/plugins/woocommerce/legacy/js/round/round.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'býLðÅ¨ZH\Ùþ+·j\Þ^',_binary '³1÷ùWû\'\nK\Ø]vY²\ØÏ§Xü~\ì\r»´`hWô@','',0,'?'),(_binary 'D‰ŒcªQEþù~k\áµö\Û\ç','wp-content/plugins/woocommerce/assets/client/admin/chunks/3994.style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡c£„¶\Îx´]*Œ5O\Ê\Û',_binary 'Tj³\åL\è¨32Ð‰†\Ï÷9¦õ»òP\êu\çcý®oð','',0,'?'),(_binary 'DŠó*\rLRòÜ£È§Œ-õù','wp-content/plugins/woocommerce/includes/react-admin/class-experimental-abtest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4yxó\Å1o´IÀŒ',_binary 'ùŒŽ¤YM\Þ-‡½\Ó\×ý„š!hC\Ì\Þ[³·¾¼	\Î','',0,'?'),(_binary 'D›ú|‡Ã ¤\Ú1x´\ä','wp-content/plugins/nextend-facebook-connect/providers/twitter/twitter-client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#s¢\Ù\æ\è0Ú‘UÁ{S',_binary '(\Ó\";eN\á§V:\Ïý\"Có\Ýe;†\çd“ž-ly\à»ð\Èe','',0,'?'),(_binary 'D\Ìö\Éuš\r\ÅÂ‹ˆÉ²\Z','wp-content/plugins/wordfence/views/scanner/issue-commentBadURL.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AÕ«û»–\Þ\Å Lqw\Ö	ƒ',_binary '˜²rŸ_¶iQ\Ö	ŒaÀ\îR¿¦Œ‚\Ô\Ë+‚\í\í‘\Ø','',0,'?'),(_binary 'D’\Éñ¾\Õ)ba\ëk\Ú\Å{\Ë\Ë','wp-admin/includes/admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ê\Õ\'\ß\npòZ\Ó,ýÀóv ',_binary 'kþ_DRH{\Å\è\0§#ñ6Z»~ô’}\É\ã\Ê\Ýu\Æ\åV±','',0,'?'),(_binary 'Dœ\ÈGü±›þ\Ú¨‡;¦²','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/summary/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•U¬¬[\Ó ¸y¹Lqcõ',_binary 'ø—’V.\êD5¦¢`•¦Ô›ö2S«E\ÃF\ï\ëð\Ù ¯ô','',0,'?'),(_binary 'D¥\É\Ì;_\Ñ\í“[\Ýd‡K','wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-fee-data-store.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'sŸ\n\Þô=´65 4y¶N',_binary 'ht\ÍÇ™\Ñ\ã\å’u^–rG’5]Ž€\á)ñ\'\íê‰›I³\ß','',0,'?'),(_binary 'D©‡YtF8\â‹ 1¼÷','wp-content/plugins/woocommerce/assets/js/admin/wc-status-widget.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'žw(5q4ÿ~õ˜Q¢–',_binary '–X\Ý>ÿ¬\×\ßÖ©5\ÈùU®t)®9w;!\éŒ/„&œøš','',0,'?'),(_binary 'D\Éxz\ÓÌ¦\Õ/ÿ°`¢#','wp-content/plugins/woocommerce/includes/admin/plugin-updates/class-wc-plugin-updates.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\È,\è\ÏÜ‘c©q:áªŒe',_binary '®ô\ç\ÃÉž3\ÖñO(sO–©€¥að“¸\ÔSW\Â\Ö)\Z7\0“','',0,'?'),(_binary 'DÕ¹\ï\Úø»\å\Ø$Oaª£\éô','wp-admin/css/colors/ectoplasm/colors-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'HðÁŽ\Æj²TðmIU­\"',_binary '¼‘‘\É+\ì|$®ûk{H\×3d\ç´M\ÖWò42\r[è›¸','',0,'?'),(_binary 'D\×\Ëumñ­‘…Z=šä¿²ú','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/languages/yith-plugin-fw-it_IT.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H,±M\Îp]y¾Þ—H\"F6',_binary '~=”OÇŸ_`9›®cƒ=d \Ø\Þ\â’jª·T&(3<\Ì8\'','',0,'?'),(_binary 'D\Üo”^~m\îý‹9y—¦','wp-content/themes/twentytwentytwo/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\àò\íþþaÁ\Ü\Òñ|\ÆA¡',_binary '«ždJcŠò°\Î_§\Æ\î£\Ð	-´iöE\rV^Îš|\æ','',0,'?'),(_binary 'D\áH\Í•§ª\Ç\ãN\Ì\Ü,','wp-content/themes/twentytwentytwo/assets/images/divider-black.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8w\í›÷Á	’xm)r',_binary 'x†\É+R\ê\ÆlL\Zk5\í>v\éÆ°\êN­D\Åˆ','',0,'?'),(_binary 'D\èó9J‡EÀ,J¸\æD{','wp-content/themes/flatsome/inc/admin/customizer/img/nav-wide-left.svg',0,_binary '·\r|,²\Ô\á\ç\ÂSõ\nð-',_binary '·\r|,²\Ô\á\ç\ÂSõ\nð-',_binary '¯b\åN\n°B\êVLsž\ç¬¤¡JlY6€2ü­B\É','',0,'?'),(_binary 'D\îT[\Ç-\Â\áýU\áöøð°','wp-content/plugins/wordfence/views/options/option-toggled-textarea.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æ=ó—q(\é\åtž“Ý£Ë»',_binary 'at¥Ã}(\Ä›0†oÃŸ%\ì3\Ø\Çðp\Èu~üÄ¥','',0,'?'),(_binary 'D\ï²\Ö5\n\'\å\\¥\Ã~W“‰','wp-includes/category.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\È`\åðk³3wh\Ö\Þk‡Í”',_binary 'G\Ë>ŒF|59¼\Å~Àq|\n&\0\Û£R	lð','',0,'?'),(_binary 'Dÿ]’£@q\Ð*aI9\àU%','wp-content/themes/twentytwentytwo/inc/patterns/general-subscribe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÔD Z\Å gD‚kòþ²1T',_binary '­P¨\×@Nz½F´Â†³ód2Ø®|\ã8½«Ió%y£u','',0,'?'),(_binary 'Ej¤À@:<W\ê:\ß8v;','wp-content/plugins/yith-woocommerce-compare/assets/images/socials/gplus.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ï„¡¬Šÿ~xx\ê‹t‡m',_binary '?%\Â{°{¬±À\Öþš{vX™(\Û\0ûÍ”=\ä}MôVÿ¿&','',0,'?'),(_binary 'E„\Â\Ü\Í\î¸S\ÃÜ‚*S','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-dimensions.php',0,_binary 'E\ê†\Ñ`\Éd\È',_binary 'E\ê†\Ñ`\Éd\È',_binary 'Yë‘»R›~\Þ5\Ö5X¨°¨p\à\ã\ZÝ©–Aù¶','',0,'?'),(_binary 'E4\Ð\ïD\'BI¦\Ô\çü_#s','wp-includes/blocks/tag-cloud/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œ<­—i8¶L¨\Ùµ?‚¦',_binary 'ß«¨-‹\ë\"þ¢·\åŸ-r­õGs\Ì]™¨~¤\Øã¿·s','',0,'?'),(_binary 'E‘\È_·óˆ”‰½½]*','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/box-left.svg',0,_binary '\"¢\Ô\×@¤8]\Ð\\¦5¹\r',_binary '\"¢\Ô\×@¤8]\Ð\\¦5¹\r',_binary 'Á\Òò?’S^[…\Ó<\Øv\Û\ïó}¶[\×\ì‹1\æ¬Í™‰','',0,'?'),(_binary 'E1<\Å\Ê\à¥\Òü\Ã`HVf','wp-content/plugins/woocommerce-multilingual/templates/custom-files.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '44­)¤½8\ÒYV(g>_',_binary '?§\"\å½øptf‚/‰.Á6L	_\Ë\Ë*\ÅNå•\\\É\ä[\Ñ','',0,'?'),(_binary 'E#\Í\Õ\ç-v37\Ù6\ëÅ¤','wp-content/plugins/wordfence/wordfence.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':9\ï\Ñ}÷@W\áž\Ü\åÍ¹',_binary '&\Ù\Â$\ÓT`&T\×{,÷ g\Å!z>5q‚ÿß¶.,9‚s','',0,'?'),(_binary 'E&}T0´ñ«€~¤\Ø!\0','wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src/HtmlProcessor/HtmlNormalizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷	¤£\é†ø÷¬ƒ	¬\É',_binary '{)™¹Q>þ\Ïiwù\Ú\Ê8@¥/rT5)F~|\Ï\Óc/\æ','',0,'?'),(_binary 'E&˜yÙ¸þz?µ\à-i\æK','wp-content/plugins/woocommerce/src/Admin/API/Reports/Coupons/Controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ò\î\Þ`\Ó;9=qE\Õ',_binary 'Z\â\Ö\ä\ZÀ\ëqrvMü;¦vJqˆ@X–Â“0\ä$o\ÛC','',0,'?'),(_binary 'E4\í\×fu\r#R:k!jgh','wp-includes/js/wp-list-revisions.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŒÀ\Ý} \ZñÛ¦_\ã\Ä8K',_binary ']\r«\Ïo\ë8\ÚY 6—œ)ryW?\ßYˆý\Â\âªb\áz(','',0,'?'),(_binary 'E5ü;\Õ\Ö\Ü\ØtR‚“$L\Ù','wp-includes/js/dist/element.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯)\Ò|4x<\ÍÜˆo4',_binary 'AŽjjqYqÐ»\ÊT¥\n¦\ÜIz5µŸ3crósƒ\Ê|','',0,'?'),(_binary 'E:A\Ê8U?ì€£Up\ì±-','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/payment-method-options.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+fm›tô³QzLU¤´NXS',_binary 'm•$\à\ï4\å\\ñAYrAaÿž5^-j:\æÇ¾·/Of\Ã','',0,'?'),(_binary 'E<V6;´N¢K©_³lSk','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_222222_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#¬©Á‚im¹où\î[ù`a',_binary '\Í{™E¾r² §¹ü­…e½\äù`”«Ñ™´P\Ð\ÖËŠ8\ïY€','',0,'?'),(_binary 'E`\Ù0üžTr^ôqOy÷¼','wp-content/themes/flatsome/inc/admin/kirki/modules/postmessage/postmessage.js',0,_binary 'ƒük\ÐM\å;¾­¿\É',_binary 'ƒük\ÐM\å;¾­¿\É',_binary '\ä\É\äL†2dJ\'Ÿ~‰\Ø3‰\nªi˜œ·“·°J3w','',0,'?'),(_binary 'Ehû¡°\Ëý\í¹\ì\Ð@aq»Œ','wp-includes/session.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ïNRM±‰<\\÷ ¼±>ôÀ',_binary '}\é\æ­¼k+8M†U=<;þ\Ùt–¼³I*,\ã4#½','',0,'?'),(_binary 'EuUs©\Îv’\íb\Í~, ','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ç ¾ùÐŒ~þ…^´F',_binary '‡\Û\î\ê\Þ\È(o8@\Ì.z¦Û¹	\n!qœ66bp}\Ê','',0,'?'),(_binary 'Exû˜A`«s\ãsA÷','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/copy-to-clipboard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eWq?ÿ\ÃY~D=V|bQ\r',_binary '›uùP\æ‰B\Â-g‰D´ \ÂiÜ¯c	 ´˜|#o¿D ^Sr','',0,'?'),(_binary 'E‚£ôþ}‚´\èH¿²€-','wp-content/plugins/woocommerce-multilingual/templates/status/store-pages.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®­\Ú/e¢²†Q“F=\ÑC\Ò',_binary 'ó¯þ¶¿\Ô“?­\Ç6*ü\ÅS\ÙC¿ñ…s\ê®{\Â\Ó\Í6','',0,'?'),(_binary 'E„œ9\âµýi\\<@ôx—‚','wp-content/plugins/woocommerce-currency-switcher/js/sd/switcher23.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬¦\×j½9MÐ£\à©U«w',_binary 'J\ËC\Ñ2vüü«df\ÄR\Â=\ÔD\àyc‹½\îGSW˜','',0,'?'),(_binary 'E„»(ýzRA1;eN\ÇqD3','wp-content/plugins/wordfence/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2Á\èe\Ø\ÂÂª­\ë\\\ÆÁog',_binary 'ƒ— ©Šo«\ì\é¹M¢J#‘A|˜ßŽõ(ž\Ý;6R\nð','',0,'?'),(_binary 'E…¨Ê¤¢íŠ°Gšt\ì\0„','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/summary/test/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Þ û“±\æ\ê	oùž‚”\Ò',_binary '\æ\È\Z%\Ë1*\Ò\Û#n›\ìˆF	š˜º_\r(wZmF\Ú','',0,'?'),(_binary 'Eˆ\Z\à³þ{ð—;F`‘\à›','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/ko.js',0,_binary '<€G5\Å`í”‰fS%\Ë\Ó',_binary '<€G5\Å`í”‰fS%\Ë\Ó',_binary '[šXŸ`5rQL›¸­\Ø& \"\Çz\×JqÅ9X=e','',0,'?'),(_binary 'E‹Ä±€\n¯Ah˜¾®\Õ]','wp-content/themes/flatsome/template-parts/posts/partials/entry-footer.php',0,_binary '¶Ý§ýö¶s­ž¢+j¨L',_binary '¶Ý§ýö¶s­ž¢+j¨L',_binary 'L”‹!l\n\á¬Œ\ÂÿÁxž¥Er ¹Jˆ$:’­)ˆ','',0,'?'),(_binary 'Eª\Ðk\"Eº\î\å\Ë)ŒŽó','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader/class-autoloader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*‘ ´\ã”æ£ª[\äIC‘C',_binary '%\íZûyöd½ÁN±M¡NŒSù\ÅJ\'A\Ö”‚|mŠ','',0,'?'),(_binary 'E’[š°\É\Åúþ8­\"\\E\Z\×','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-note-block/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ês\ë\×\ïI\\W\ÎZ”l%…‘',_binary '[,\ÜKÍ‡¿•²—^].\ì\çb\Þ\ržš\æ÷5\Ø\0O)\Ý','',0,'?'),(_binary 'E–VF\Û#ýKfkuŽÀ#','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-categories/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=\Ðu›ªÿ÷ý\ëûÌ¤\Ó\'\Ô',_binary 'U\îHA\n\é®g¾\Üw\Úc9uŠ¿}G\Z‰X‹6üš…–—\×\Î','',0,'?'),(_binary 'Eœ}¾~\î¥M\Ê\Å-\Û]ˆa','wp-admin/css/widgets.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' šq\ìÜ°~!y\å\\\Ú”na',_binary '.½#\ÔÁqe},û»¶Àð\â-(\Ý\Ô\Ú{óN\Ç\ïŽh%Á°','',0,'?'),(_binary 'Eù¢s=¢]šŠ”º’=a','wp-includes/blocks/post-template/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷\r™üÙ¾ID\Å\Ü::œ',_binary 'e°z\Ñ{ì´ˆ\Û5³\ì\ÉB³Á25øw¹Ž6\ÝÀu\â‹=','',0,'?'),(_binary 'E¢\Û\æ¯©4ü\ärÀû@','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/checkout-processor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\ê\'£6ÙŠeœ\ç\nf\à‚K3',_binary '\é9\Ü\à\ÇÛ²ûcd¥›ù\Úp\äd¼ÿ`‰l\Z–.ß¼·','',0,'?'),(_binary 'E¥@*oóûJ©\îp{','wp-content/plugins/woocommerce/packages/action-scheduler/lib/cron-expression/CronExpression_HoursField.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ô/1\\\Ð5UŸÖ–?‘³\Ó\Û',_binary '˜>£ùbb$\ÕxÝŒ	Ç’Hš›÷w\ÏK‰ý.~7u\Éi','',0,'?'),(_binary 'E©1ÿ[¾u6\àIxkC','wp-content/plugins/woocommerce/lib/packages/League/Container/ServiceProvider/ServiceProviderInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à¢T˜gÉ°D\å=…“\Û\ì5\Ü',_binary 'OA¾Â™W\å©]#\í\àø\ÛN\Ï(b\ÂuÂ¿b\r\É;\ÖK¡','',0,'?'),(_binary 'E·d­•…œ\íZEÁZºw','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ö™r:øCnº\"¸…2ƒ½U',_binary 'Ñ°\Å\ä\Î2£ñNfZ¨’z \ìÂ•DÞ¯Ì‡5r\æ&dJ','',0,'?'),(_binary 'E¸V\àó÷,\Õ%¦\×,SM=','wp-admin/ms-edit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P3¹\n§\ê7|L?MtAº³\ß',_binary 'aƒ\äÀ‰\ÖÁc\Äsc\Zƒ¹\"\âV\èÁL\\¼Ñšµ','',0,'?'),(_binary 'E¾\Û^ù™Àm\\2#I³?','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/actions-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Å\×W¯%\È(¬\Ýz¢Q\ÞU',_binary '/¦\ïú<•:oÝŽxb_mú	úÚ–	r¥\Ç‹\0','',0,'?'),(_binary 'E\Î9eAÔ±DÙ’gúº','wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-currencies-dropdown-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '};B¦Uõ÷\æ…~\ê¤?\ël^',_binary '\â\nEšŽm\É\æÅ¥\ç\ê¾(\çy¯Œœ=Á:Ä >½ƒØ„£','',0,'?'),(_binary 'EÒº‚ÛR€I¹H÷ÛŠ','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-pt_PT.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·LiüÆ‰-1T”•ol{­',_binary 'š\n¦ýd1\Ð2!gKkþ]^\Ì\Ìþ\rg\Ë÷·{s]	¯©','',0,'?'),(_binary 'E\Öv\íup\ÓTf9’òa\àÀ:','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-importers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬T\'\n—t¢MÀ/<k³|\Ð^',_binary '²Òˆ\Ó\êGúQ-j¶®­\Ù\Ý4o:ÇƒXri2Š\ÖZ¬\Åe','',0,'?'),(_binary 'EÙ¯¶[œú6Q”>:','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/fields-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\Z)zÇý\ëq—±™—ö',_binary 'Ê‘r_\çµg¼©\Û\î©p¢-\å·V±\Åÿ÷5[¦G\Ä','',0,'?'),(_binary 'E\Ûn¿\Ü(\àla°Q‹\é','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½Ý”\É\ê\Â9I7´|«ù',_binary '¿±\Ø\r\0šB´yfõ{§\0¯›¡¦6@4eýtSÌ–\Â','',0,'?'),(_binary 'E\ãSn\Â\Ïp“_¦8lñma','wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-authentication.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R~ f´<²«\Öb£$',_binary '“Ü²}‚‹Fz\æG\Øv\n\êcªj‰L87\î):\è!','',0,'?'),(_binary 'E\éB3A\Ç\Éô-\r\Ü&!\ÕT','wp-content/plugins/wordfence/modules/login-security/views/onboarding/standalone-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡’D\ÇoŠóy\Óë²cK¶',_binary ':P‹\Úcc\é‡z\å€\"þ³¥Ž¾Q€a\ä\ÃQZ d','',0,'?'),(_binary 'Eô%‘próN­©5\é','wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Shipping/LocalPickup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ûp\Ì_k+\ß\ÃaŠŽ³>0\è',_binary '´¸\Ê8oÿ›ŽÐ¨H&»V	d¦G½«e\ÌMñÝ—u','',0,'?'),(_binary 'Eÿª\ÛK–©\Ç?²ñ*;','wp-content/plugins/nextend-facebook-connect/admin/templates/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ó4j¬Š†²¹Q\Ðn \"œ',_binary '&Žú*ò\ÅYBAWGÖª®Æ”=~D&þ·‡\ê…7Q','',0,'?'),(_binary 'F–HÈl\ëe“\É#\Ý','wp-includes/js/tinymce/skins/wordpress/images/more-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l,\×‰r\Ï%¸^x¥%',_binary 'þ\ê\ÃY=\Ñ_®b°»|Ê§&f,¬‰<¼\Ã£¶¤¨','',0,'?'),(_binary 'FÈ—–…DL\Ü\ÛÏ¡\r¼','wp-content/plugins/nextend-facebook-connect/template-parts/embedded-login/below.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\Ô\'Ë©	÷ó\ìEU\ãÿ\×',_binary 'm5\Ô4U\Ñ=´rDúTFJ¥”«\êX4§¾…Á\ãY','',0,'?'),(_binary 'F	\í\àAõT½a¬½\ç§O','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/product.svg',0,_binary '\Ù*\Í\ãaf$•:Io\Ù5ÿ',_binary '\Ù*\Í\ãaf$•:Io\Ù5ÿ',_binary '–\Ãw\×\ÚG\rÿm$Y©J\Å{œ-xxc¾/€ Tˆ†x','',0,'?'),(_binary 'F\rºx\Ów~\Û\rÜ±´\ç\n¦','wp-includes/widgets/class-wp-widget-search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&duô¦;M¼\Ìz¼w',_binary 'L—a\æqT?h$\Õ6\Üü\á=\ìJe \ç$Q¿½RLt','',0,'?'),(_binary 'F^a\Ñd¤{œ?g¸M\Å','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-contents-block/shopping-button-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŽXÝ¤lr(i@;&.',_binary 'ÿú4–þ\r3õk<u–š\ÛR=—r?\ÂbŽ\Z(ø\ÆùÁ','',0,'?'),(_binary 'Fbfñ\í\ê;BU|?\É','wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/woocs_rates.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BD0\ÊôjÓ„\ì\æñ‰’·',_binary 'Q)L{w1\'N›òº\Ó^_3\æ\ä.\ÞS?M€„;\ZX²c7','',0,'?'),(_binary 'F š³ô’\Zs\Ð\ÞFb\ÐM\ã','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/payment-method-extensions/payment-methods/bacs/constants.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ü\è=E¦G¡\ì¶m>ð]ý\ì',_binary 'gOzº#\Ø\nq½\\Ý€pHÈ¯\ç\Èp1¹\Ïê™‹Ð•[£','',0,'?'),(_binary 'F)ña—!=p›UÂ©\'r­','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/order-summary-discount-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'º[vQ‘ó#\Ê\Ö\"–ñp_ ',_binary 'î—†ÆµdA\Zk\ÔcY\èCaq¹\Éô¬d\×q\ÖC\åp”Ÿ)','',0,'?'),(_binary 'F/§\ç	\âó\È&·ˆdóp','wp-content/plugins/nextend-facebook-connect/admin/templates/settings/ultimate-member.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nŒ2wö­E+NNvbžVµ',_binary 'T\n‚/\Ñnt\î­\îª\Ðtÿ?R\×H\ä\å¼\Äô¹','',0,'?'),(_binary 'F1+\Z#÷+d\Ó{‹w\Î{','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305/State.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ.D6·pŸišr`¶fw\Þ=',_binary '\Ä2\É±KJ73†ñx§2\ÚM2°®&˜+·Œ•Lü‡L','',0,'?'),(_binary 'F?çƒº[\\\áü|2œ\îf\Õ','wp-content/plugins/woocommerce/templates/global/breadcrumb.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª	qg!Ú™	Ÿû9\å',_binary ']šž#\Ä@~\áBÔ³\è\ï?ƒ.Žõt5²ˆ\Ô\Ã\Þ\Ö\Ò’\Þ','',0,'?'),(_binary 'FB1.ƒo\ßwO¥Àzn\à','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/sleep.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é6¼›¬!™qWª\âpƒ',_binary '\Ï\Ø“°\âS‰\ç\Í0ý¯¨±AQH‚ø…Q\ì\ÍDw¢\É\ß','',0,'?'),(_binary 'FCW.ö3£±¦\Z±U\Í','wp-includes/js/jquery/ui/checkboxradio.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/™W £	™…lŒ]9–¬',_binary 'uÀ(\Õ%Ž¢ÿP\ÞÐ¢Ï€œIæˆ¯ˆ.\'+¯:\ä','',0,'?'),(_binary 'FCw\r™\è\"\áz=\Û','wp-content/themes/flatsome/inc/classes/class-wc-product-data-fields.php',0,_binary '[²K\ÃÄ”n\ØbFdGZŠ\Ò',_binary '[²K\ÃÄ”n\ØbFdGZŠ\Ò',_binary '² \ì€E¦+acZ|}‘ú¡²$%`òN\'\ç_ú','',0,'?'),(_binary 'FFvŒ‘V;vð8/ž\rµ','wp-includes/SimplePie/Misc.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4Pöò\r\Êi÷B™Be\ïúŽ',_binary '÷¢q¼\î\çÑ°£¶É§Ó¿lpKò9 \Õ^¬´/t‚\Ì4,','',0,'?'),(_binary 'FH\\Sº‹\í£\Ëeª+$j|','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Property/CSSNamespace.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ü_k¾oM\Í\è\è\ÔS»™ng',_binary '`\Ö\çk\æFA¡/¯Àð\Âi\áZ\î”Y\Ù1\á\rKb˜õc','',0,'?'),(_binary 'FHŒŽ¼30m:½¸s›¶','wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xR\Þ	¬YµXž\Ô\ÛÝ¤\ä\Þ\æ',_binary 'm¦Á¿\Zc¼§—Ä­\Íó¶½]ð\ï\ìŠ[ˆ\Ô^\ÞP…·w','',0,'?'),(_binary 'F`Mß¸cÿN§!¡·¯\í','wp-includes/blocks/image/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\êº\ÞÊ‚›<¢­¾N@ž',_binary '.•Ô¿L„|\ÑH¨ÄŽŸ\æ n[~¨ù\Ä\ìÑ¶aÈ¶o','',0,'?'),(_binary 'Fv±Vš,¿š—&©Võ\Ðr','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-badge/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ê‡\å…\Âw\É:ñ.d€¨',_binary '\r6\è5F~)râŒ­\Åpn¶$ºq\Õ)gh\Þ\Ô\Ïk\r#','',0,'?'),(_binary 'F|÷œ§§w\ÜZQ,O—þ','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\Ú\ã\Ï?\Ñ\n\å	:®Â›{Q%',_binary '„\ß—ZªIK/IµøwÂ¥‘Ovy›EøBi\\$G‹&','',0,'?'),(_binary 'F}3Š(Ì¬þOI  ¸','wp-content/themes/twentytwentyone/assets/sass/05-blocks/separator/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\íl\ÖN-oX‘\Äm‚«\Ëm¾',_binary 'm7w\ÍÁW˜¶§&emðC›šŒ\Ð\Ê1¸¸a\Ûc	=27','',0,'?'),(_binary 'F‹L°Bu3œl\'m','wp-content/plugins/products-compare-for-woocommerce/style_templates/nice-green/nice-green.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n[pgfpRöUP× ®<',_binary '\ÙÅ‘›³˜þ~I\Ãm¸\Èúq‘’|§ð)(¦ ]$†','',0,'?'),(_binary 'F’\Ù_=^«ü\äa‡E®¦}','wp-content/plugins/contact-form-7/admin/edit-contact-form.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nVšFU¶\åñ5@ùT\Ìý',_binary 'J¬n\ê÷G\roYD;\à]X1\Å\Ìc[(÷l\ìÿ—²\0','',0,'?'),(_binary 'F«\\\äÁŠ$õ£ii4ù\ä1‚','wp-content/plugins/woocommerce/src/Internal/Utilities/URL.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Èõ’4o<€VD¬À\Î',_binary '¶b_¦‘ô\Ñ4tpl2±Ñ³x\ÔKbY•XÈ³—L‰ú','',0,'?'),(_binary 'F«\Óp\êv|\É\æ¡ƒ„N','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¶øm¤g\Ù\ÙSf¶0\ÌafK',_binary '\ÊgºÌ“fŽ´\ß\éÁ_H¯óQ<šP@/M ÿtµ\Ç','',0,'?'),(_binary 'F­\\ºC?\ÌZ\Öúö\Öý','wp-includes/css/customize-preview-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³\ÃÞ‰ž®\ÖôÚ«dŸ¡3',_binary '~ð\'¾§[z\Ð{‡\Ø:õ\Ì›\ÑLÄ€N7A›ž	','',0,'?'),(_binary 'F»G.§²‘\ÊO°¶\ê\Ä','wp-content/plugins/woocommerce-multilingual/templates/status/conf-warn.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ø‡9°^özf¤:h¾\ã÷',_binary '$²<¥Ç¥€\\Ž\Õ	\Ã\íÁJu\à’T;F\Ñ\ÐyH','',0,'?'),(_binary 'F½‘u`ÿ\îù	ŽVz¥6[\è','wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/abstracts/mixins.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\Â\Äþž:)\Þ3o\ßòQ',_binary 'q\0½(p\ÔQ3§š:“:œW\Ò]WDÒ\ïe\ÐH©~\ë','',0,'?'),(_binary 'FÁô¬Ãƒ\\ŸO\ç¡fg\î','wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ê\î1\ì\íõv•ŠR',_binary 'N3G\Ñ\'²`\Î÷+R>¢P]E\ëúÎ³g/ÿb?¬¨UX','',0,'?'),(_binary 'F\ÄOul*ˆµ\Û\0Cž¥^\Ø','wp-content/plugins/woocommerce/vendor/bin/mozart',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„\Õm–\Õ\Ù+L‰G¬X\æH',_binary '¸74f¨¶(	\rú·\\A&§\æ]u\ê	2Ž`¢1\èrÿ\Í\ì','',0,'?'),(_binary 'F\Ð\'£B¤/\í4{J\Í{w','wp-admin/js/edit-comments.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°=\n\àõk)Ô¶þ ÿˆW',_binary '2~¼•¨[5‡{\0š\ìŠ^\ç|¼žv¤©TO\î†\íI','',0,'?'),(_binary 'F\Þùnj5\Ô›E\ÈWúH','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-shopping-button-block/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\ä\ã]\Ûlr\àqMú',_binary '\Ã\Úg*gS2(Q6± ©FSi~d\Ò{Ê†A’Gˆš\ê\Z\â','',0,'?'),(_binary 'F\à\Ûú,;×¼•I\ä-v?˜','wp-content/plugins/woocommerce/assets/js/prettyPhoto/jquery.prettyPhoto.init.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸\ÑZ?¨/Ú´u¼¼\â\Õ',_binary '\ì—fjyy§,&‚Ì¨!uZ/¹~R<Ái@:-’…','',0,'?'),(_binary 'F\å¥\ì\ÙN\Ú=”õ€E.\å','wp-content/plugins/woocommerce-currency-switcher/css/fontello.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦µ\Äc¶\Z\ç¿e\Ô1”l',_binary 'z×žT<?\ÔWÂ‰+Î„8Ÿy ¹E\å\çÿl\Ø\ïM7-¶‰','',0,'?'),(_binary 'F\éO–M<n¨œ\ÜC¢','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-ui.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>þ{“ý&\Æ&iœU\à',_binary 'W±Î¼G¼Vl[z7§RÇŒ\Z¾q\äzßµ 6&HR','',0,'?'),(_binary 'F\í+“\çŒ£½/\ï\ÙÇ…','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/policies/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†-\ËGq2÷	»€\Ó\Â',_binary '\ã)$_¾\Ô÷“ %O¾]MD?|9Ÿ¢—U—¸\Ö\Ù\Î','',0,'?'),(_binary 'Fó\Â\ï?\æ‰C;$Œ\éH\r\r','wp-admin/css/color-picker.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ú<´¨—^\Ò\r’¨q!\Z',_binary '³=Li7\Í	t¾I}›|¸\ë9 –\Öohú\Ç`o¬\æ\Í=CD','',0,'?'),(_binary 'Fô8*\"Ú¹þpEm–&-\æj','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ïœ(a.\0ónœ1-§hš³°',_binary '°n„\"¹Xª¬Í‚\\eð€fgn\×@\Ú\Ï\Òñ\ÖHrz›ô^','',0,'?'),(_binary 'FõV—\È\ë÷Á¹Od%\Ë|u‹','wp-content/plugins/wordfence/images/wordfence-logo.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\Ü\è±\Ñ\Ç]\êj-\ã‘ø¦™',_binary '8šü»\Ô\Ú#Ì„(8ø\áÿˆOû\"\Ç	+h\"Fb–\ìƒ','',0,'?'),(_binary 'FøŽúW˜fo^­\î\ä\0‰1H','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-name/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ó\'øXd\äg\Ê\Þ&¼',_binary 'uK:‹T¸B\éÔ§\Õt2¶i>*´Š±\ìö\à‚¬ª','',0,'?'),(_binary 'Fûü\ä€úÂ›p\îb°u¾\Ýy','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-log-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7m;\ã[Ò²ú½š„šq4h',_binary 'I\çŽe)K;f	r”\ÌjH8VLB•Wö\Ö€¦\Æ#e','',0,'?'),(_binary 'Fÿ©¸¬<›”‚[«b \Û','wp-content/plugins/woocommerce/includes/legacy/api/v1/interface-wc-api-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.õv<cö…\ã\Å7Í„ô;+',_binary '¾\à9q\Ïc–¤%þÿC]\Ð7\Z01}ô\äö¤?\nÄ¬G\ç','',0,'?'),(_binary 'G-”&cF\ëñ¥#úôn','wp-content/plugins/nextend-facebook-connect/NSL/Persistent/Storage/Abstract.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%¶±;L=\Ö\ï<û½[6ƒ',_binary '™ü}›\ê\Ð\ËN0\Â\ìT\ç\Íó2\é\Ôw~¥û\Å(%\\','',0,'?'),(_binary 'G(‰‡œT\æh\Ì\ÉD6[','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/grids/grid-8.svg',0,_binary '3‡D Kõý\ér#0½»(',_binary '3‡D Kõý\ér#0½»(',_binary '»fô\éù—„\â±þ4o‘)¢È§°–c§!54\âµ\0‡\Ø','',0,'?'),(_binary 'G´.L\äHµ9)7€÷C®','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/query-state/selectors.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹…OÇ¨\0	W`±‰s­¼[ó',_binary '\î®$‰\Õ]7MXJw9g\Zßºt\Ý(m\íM)£½„q:','',0,'?'),(_binary 'G Xeô·x\ï\Åw0\\\Éo8','wp-includes/Requests/Response/Headers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»dVND1\ãC\Õ\Ùñ\á.',_binary '›?\ì\\v¢¨­Ò§ªx«P\ÃEp\Æ\ç\à…ý\ì§6ô\í!IP','',0,'?'),(_binary 'G\'\É\Õð…\ÝJ‡0\r|MK','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-taxonomies.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7{S-¸>’D8\0\Åh',_binary 'w#Ž\å£Á/UYON€•°Î™bp\È:)†c\ÞØª`‚º','',0,'?'),(_binary 'G*\è=\Þ\Ö†û(\Û>Jš{ü','wp-content/plugins/ti-woocommerce-wishlist/views/section-field.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñ\ì9…\ì±?J\Õ3Â‡\Ï^',_binary 'O\êùz¦\Æ\"Nû–‚+U@ž\æBú\ëËŽ\å¬`³½¬\æ%','',0,'?'),(_binary 'G6U\æ2\01Rü¸“¢\ÏJ','wp-admin/js/theme.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SŒŸt}ƒcPJú\Ì\"Z',_binary '°ó³©-\íP-\Ðy0>Oz‹…\Ê/Im^\è€@\Ãñµ\Üe\Ê:','',0,'?'),(_binary 'G:Z¹\×]Y!tI¯¯¡\Ü\"','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfBBc-AMP6lQ.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÚjI78Ÿ{’·r\ÉP­',_binary 'Uk…ú\æ´†¿ôZM=OEw¨D²”Šw‡\è |I¼;','',0,'?'),(_binary 'GDú !8j\ÂE}±È—¥Ž','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-el.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SW”Y§+3$²†‚\Ùú#',_binary '£bµ\ë\ë\Ó!\è:\Ç\Ó\äh9ùl=ž\Ù[.\Æ0\Í\\\çü\Ûk’','',0,'?'),(_binary 'GF\'_\Ôû1GªZº¹\Þ:•e','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/category-list/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Î\à{6|\êœ\àcý¼ ',_binary '¥\ì’r²hµ3¾Ró­F?\çU· Jcao=\ÏG','',0,'?'),(_binary 'GH\\DŠ¥Ö›D &\â\Í#/','wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/onboarding-product-notice.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' >ƒ³&\n\Ø}Jƒ¶8W',_binary '.¹e]¨†~3\ì‘õLº\ä\ç¤`Ò“9YE\\\é),\Ê','',0,'?'),(_binary 'GP\"ª,|­•‰X]‰¥ñ¥','wp-content/plugins/ti-woocommerce-wishlist/views/wizard/step-support.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}Tw\Î{\Ò,²Td0I÷À',_binary 'û`…˜—ü•\ÃÃ€\ï\Øð\n¥\èŸ\à—ø\ï\Ã@Gw·o','',0,'?'),(_binary 'GT˜Ã†arFp™#\á$—·´','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-zh_CN.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\â¡ö•;\àœØ¹þ\Û\Ü',_binary 'P•L\Ì\Ý\Øtòe\ïõS\Ð\Ãð ó«\ãs%xw3EjÝ³¿¼','',0,'?'),(_binary 'GUöy–òbˆ\r¼v\É\Ü','wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/marketing-coupons.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“\ê\Â\Æk²€W2x\Ôx\åR\Î\ã',_binary '«6\Z\î}\ÃÁ\Þ8\ë$^\ËüÓ†)X‰´3\çÛ^.œ!\È','',0,'?'),(_binary 'GY:Ön2\Þ\r\Z¸KVcûn','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hocs/with-scroll-to-top/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ë\Îþ¦\\1¾J>‰¹—C:HU',_binary 'tÑ¼\×M3\Ýù6tq²\Þõdpý˜\àž]&SW\\,','',0,'?'),(_binary 'G\\ûY¥øU¼\'x?el__','wp-content/themes/flatsome/inc/admin/customizer/img/align-center.svg',0,_binary 'ý³gŽ5,Šš\ÆVQ‡F',_binary 'ý³gŽ5,Šš\ÆVQ‡F',_binary '\îO\ÂU\Ú\ãÁrq ÿV”\ÕIv³€\Ûj\ÙR\ß\'3©†ôN','',0,'?'),(_binary 'Gh¶\ØHÐ²Ž~*\åûÚ','wp-content/plugins/woocommerce/assets/client/admin/chunks/analytics-report-downloads.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\álw–6n\Û\éS\Óþ',_binary '„7õ\\x¥\î\×e\Â\äg!¾\áaD\ÓE@v\ê E\Ý0¶\Çy','',0,'?'),(_binary 'Gm¹™:†MÄ¾VÀ‘LÐ‰','wp-includes/js/tinymce/utils/editable_selects.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡J“‰q2¤¢I\'\ÆJ—9ÿE',_binary '¿v\à¡\ÑGjs\ß\Ýf™Ÿ	eªd\É&\ä¥g·ÿ+¡ö\Ë','',0,'?'),(_binary 'Gu¹¢\Ø\èþ\Ò\Ò\ÒÊ­ò','wp-includes/class-wp-meta-query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hK\é?¤µø\æuõB•öœx',_binary '\äí’Œ§€œI´(\ÈnŒ\à{–™•{g£\à¼wGhƒ¬','',0,'?'),(_binary 'Gu5‰\Ã•aÔ¯\Þö§','wp-includes/rest-api/search/class-wp-rest-post-search-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}*„yY\ê\ìÕ¨ñ´Fý',_binary '1´‚SD\é\âŠvªjk3ù\0²G\æ<\Ý\'|†‡!„€º','',0,'?'),(_binary 'Guµ^¨/1\Æ\ÔÕSñŽ7','wp-includes/atomlib.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à¢\Â2*rMb3Ñ‹\Ëy\Ô\ã',_binary '¯ü:£\Õ8\È\ápx\Ã \î‰¿€‹\Ö\ç\æ}\Ü)õ!›','',0,'?'),(_binary 'G|4&\ä\Ê\rC‡Ý‰8/','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-product/example.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚C3\Ã¶—ü°LNq.',_binary '‹},*\áú_¨rXb\0=\Z©ð™g²ýº\ÊpT7˜JiÀ','',0,'?'),(_binary 'G~hðýGä•”¦oÜ£','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Handler/StringHandler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\ä}^m#\Z‰	B•¥',_binary 'Ð˜Aª™`øgø\Ð\Ð_W$pü\â¨\åu—&·ef×Ž^>$E','',0,'?'),(_binary 'G€9qóñ\ë=Ê¥[3?a\è','wp-admin/images/bubble_bg-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ï¬qšj™Œ\nŠX\Â<',_binary 'n¬¼%4\ëL¦©\í6{/Ð¢[¬Ä¬?XW_A.r','',0,'?'),(_binary 'G…û#•ˆ¥)\\)Ó´º·\Í','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-upgrade.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç\Ô%CU›9H\çLµS£‰\"',_binary '¸6‘\Ö\é\ç5ªZ©\Êû)TtºK(§_\\@ÀúHtS\Ã','',0,'?'),(_binary 'G‘ÿö3s+‡\Ñ.\"]m','wp-content/plugins/woocommerce-currency-switcher/js/sd/controllers/drop-down.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\îsò\×…U½¦¼S×¦',_binary 'ûoxk#ˆ™\ÛlWƒqS\ÑÏ¯\Ú\äZ?HJ^o\Ðè„•7Ÿ)','',0,'?'),(_binary 'G–7\Zž\æ²I&:\íx','wp-admin/edit-form-comment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<x<ô6\ÖB=—L^©¶W ',_binary 'i\é2÷Õ’ 9µK69\ÔÖ¦¬\îýx\Ü\Ê	PþU‘','',0,'?'),(_binary 'G¨?¸¨#¾¹\"®nH\Öjl\0','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/filled-mini-cart-contents-block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æžûDüÄ‘.\ÙXWŠ\Û\Ì\r',_binary '2ký¬ò\á?û\É;›\\U‰a‚,\Ôù}¬*ðmENŒP«¤','',0,'?'),(_binary 'Gª3¦°\í\ÒZƒJ\ÐË¥‰ú','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/notices/ApiConnection.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=)æ“Š@ù7¾\Þg£?1\à',_binary '1e\Û\Õl`B»	\Ó(ú€5‹gVË˜Œ)§ÿ¼ü\ÝLL\Æ','',0,'?'),(_binary 'G·\ëX²þL)\É\é_,³\Ü','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/reviews-by-category.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ù\áb\r’ö[r”6AZßž©\r',_binary '\ê`…€N\Úvì€•H+ê±”Œe?\ÏJ>§\ä«ù\Óil','',0,'?'),(_binary 'G\È\Ö5À\Ö\Ön\Î,¤Ÿ\Üó','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-crud-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤Á“¾k\ÉgÂ¥\ÝL¯Æ²ºˆ',_binary ']\ÐK’ŽAû\0\Ù]\Â0ú¥\0ôsU¥\Ã,§I´y½>l¢iö','',0,'?'),(_binary 'G\Ï7B\ÊO_kz˜¾¾,µž','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/dropdown-selector/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\\\ncE:VÆ‘\ÑVD',_binary 'ÿ¡\è\Í^\Ç%-ú\Üôa\å\Ç{F	õÂ…`–P«UcL ','',0,'?'),(_binary 'G\Òi’øa°Ž¼„»¹mJwf','wp-content/plugins/woocommerce/legacy/js/frontend/geolocation.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­m;¤mÁ6\ë…”³[ù',_binary 'dJ=’ˆ\Ê×‚Þ¬\0=°:µL®þxÞœ?™	W³;·ü','',0,'?'),(_binary 'G\Ö\'L$„Jqbÿþ¸	„õ','wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/main.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…\ÐO\èë¯™J 6¦>ùùZ',_binary 'ø2Q–`\Ð\0œ\Õúþ\Õ\à#O7^‰\Å;l\\;\Ä†\Ë5','',0,'?'),(_binary 'G\Ú\ëZ\Çù™\\ Q…rû,\Ð','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-litespeed-cache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú\ÍR\0;\Ü_†\í\Ãf„\ëŠp',_binary '\Ð\Ùp\Ó|Y\â§)— Ø¡L\Â2…\'ð¡\Æ§÷%ª\×Ljp','',0,'?'),(_binary 'G\Þ0@Ò„/M\íÐ‘¢-?\Þ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ž–\Õr¿Bm„ \åþ›_bD',_binary '>\ÃO²YŠø\å\è¸ˆó\íU#\Æ•G<\ÑË„”1°·','',0,'?'),(_binary 'G\á„?ºyÄ°\É¯\â¤~r&','wp-content/themes/twentytwentyone/assets/sass/05-blocks/group/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*»¾É¾\ê^Þ‹l 51ø',_binary '&T\Ú)\'4:«\Óò\"vót*\Þ\Ø\ê\n\É\î\ÌóôJ\ZR\ç','',0,'?'),(_binary 'G\â\rü¾\Øh=•ú^\Z','wp-content/plugins/contact-form-7/includes/file.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’öü	\á›\Õ`\n\ÔñÿÁ˜',_binary '\åð¦öó‰;U^\Ò%wÁ\"öcò\'x\Ý\ZT}\Ífu8V$j','',0,'?'),(_binary 'G\ãC‹\ßNq¸ÃŠ„E5}','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-pointers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ýomU#L#\Øð\Ì\"\é',_binary 'ú[ŒÕº\è\\aŠ)P¿\êŒr0I”r+þÁh\Öñl\Í^ú\ì','',0,'?'),(_binary 'G\è¥Àö\î‡Aú*šYw','wp-content/plugins/yith-woocommerce-wishlist/includes/class-yith-wcwl-shortcode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜J§A‡­»¬ù\Ã!E\æ',_binary '—¿\Êò•[\à&K\'1œ\îœ3˜{_E[’+¸\Î`¾','',0,'?'),(_binary 'G\ë[2L¯±\ß\Å_òˆ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/tabs/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\à0$­ƒ\×6¤\Ú5¢¯',_binary 'öHüŒÿG_ÅŠ\è@¯;•\Ñ]Tý6\0\Zô\\\Óòý\ç„','',0,'?'),(_binary 'G\íPþ>¼“Ü:)','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/text-button.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þª\0F\á\éø¨›Ï°y\á¤',_binary '\ÉD£!_I*h¥ºD\'	ƒÉ³sO\×ôUž\É?S‹¼3½\Ì','',0,'?'),(_binary 'G\î\ëògÀù}\r\ÒUp>øa','wp-content/themes/flatsome/assets/js/flatsome.js',0,_binary '1\âÙ§‰uij15{Hó',_binary '1\âÙ§‰uij15{Hó',_binary '\ÉÍ«\ï©_|\Ëxû¦0/\Å\ÇY¢Zf¼¡@\ÆeÊ“\'M6e','',0,'?'),(_binary 'Gù®úZÖ²\ìY¤\Ö,]$b','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/query-state-context.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñö!O¬ºš»ò½¯¦¸',_binary '>Žß\"–aWuû‚%U\Ý\èœ.}`\ÑNc\ÃBŽ¤aQ','',0,'?'),(_binary 'H\0,\ØÀß‘\î\Ä-S?7ý\"','wp-content/plugins/woocommerce/src/Admin/API/Reports/Orders/Controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ºÿB\Ñ\\šŸù$‹\Z”´!s½',_binary '{¿. \ë~e\è~c\æ#ˆˆ\Ì4\Þ2 T5·‹ÙŽK\È\í','',0,'?'),(_binary 'H\áN\âÌµm²gcaÖ”\ç±','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\ä\ê~ð}p\ë\ïc+',_binary '…w£\æ.h\"O’º\ê#õç²Š:{U+®\"ƒct-','',0,'?'),(_binary 'H\æ˜\Ñ)}x\Ão`sŽ','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/icon-wpml-refresh.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B:A,\î?\è%xo£Á9\Ù ˜',_binary '{,tŒ\Û\\µ\èBzz§f2%‰`,C\ËRq7:\ë6A','',0,'?'),(_binary 'H­\0 ¹\íŽ N¤HB]I','wp-content/themes/twentytwentyone/template-parts/content/content-none.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\êœò\n}\írú\ÆÿdÕœi',_binary '\Ä>›•Q\ã#*¥¯¹¾ÿ¹^_(VY&I\Ú@Â‰H\ÞÒ‡[\è','',0,'?'),(_binary 'H	4O}\ä87s²bD,\ç0','wp-content/plugins/woocommerce-multilingual/classes/Block/Convert/ConverterProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½\Þõø©\É\\hH^J!ji¹',_binary 'ñ_µ½ÕŠ{–IÒ§\àš\rJL5.\ÛL\Æx\nø¼','',0,'?'),(_binary 'HñýYfUH\èu„pd','wp-includes/Requests/Exception/HTTP/400.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†ò\Ë^\ÝoA\Ú\ìhÜ¦3ö\Z',_binary '³d«>\Ä÷†¼º	¢i\ìH®º¬\ßb$ª&žn\è\à\ê6—p\Z','',0,'?'),(_binary 'H…\×yj.\ç9\ÙBC\Þ\Ý','wp-content/plugins/woocommerce/src/Admin/API/Reports/Taxes/Stats/Segmenter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xˆû\ÆX_°x0‡~Uƒ',_binary 'Ÿ À¨a:Ó•°e=\îD\Ì;ky\Ô\Ñ3F´uE½\Æ5\Â\Ë','',0,'?'),(_binary 'H§E˜\ÊD—Š¹„*$','wp-content/plugins/woocommerce-multilingual/inc/template-classes/setup/class-wcml-setup-store-pages-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•yóþqµ\ãíˆ¸f  ',_binary '\ÅLSP\å¬\Çœ2TR\×%þn™Cü-\Î\\ö)i¥r€\É\Ï','',0,'?'),(_binary 'H!bÿ\ÖÝ‹÷û\é\ÙU/U:','wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-sanitize-values.php',0,_binary '\Þ\æ\æq\ÅO°\"¨BZb\0L',_binary '\Þ\æ\æq\ÅO°\"¨BZb\0L',_binary '•T[A»qð‡\Ïw\Z¸\Ñ!\áU®$Q®ý«»¾µ\ïA-\Þ','',0,'?'),(_binary 'H!\ÅE\ÏÈ‚+ƒóU\rŠ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/rating/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥µôÃ˜e;‚°X\nC',_binary 'ª\Ú\Ñ\ìWñELoJj9Ol\à–n-º´À\Õ1,ª±yŠœ','',0,'?'),(_binary 'H#Òžø?Y¹Ü¹\Î@cµ\Û','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/state-input/StateInputProps.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ë\ê?\Z\ÌR=?®hdv\È5&s',_binary '\Ì9š\Í<±o>›:\Å\Ô?\ÕfÎ£þy¹9G(\ë`ˆ‡Ã¸','',0,'?'),(_binary 'H%§ˆ-y¦P`djÔ’\Íi,','wp-content/plugins/wordfence/modules/login-security/js/admin.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g“‚ej\Éñ›ˆ\'†Iø7',_binary 'U\á¹%jÁGÄ§\Ø\à\Ì|]S¹Ð©n2ò\ÜP¦T™+J','',0,'?'),(_binary 'H%Â·\Ó!6e2”\Öa;j','wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-product-addons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\ë\à\ç\Ì.|R©œÀC®W',_binary 'Ý¿Ku‹–†A\åÒŸXO\Íu£\rÁ \\ nbzöQä½‡','',0,'?'),(_binary 'H+€E~™}§1Q\Ûð½®\Ù','wp-includes/js/wp-util.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†76 ‰7$\'µ/¡\nC\Øœ',_binary 'G7\Ür<pS«C¿\Â\\þø\ÈzÊ‹úI¹G¶','',0,'?'),(_binary 'H6\ß\Û\Ìœ*ÈŒ©\Æ8z','wp-content/themes/flatsome/inc/structure/structure-sidebars.php',0,_binary '{·0û€F­XÂ²¤Ö®Z?',_binary '{·0û€F­XÂ²¤Ö®Z?',_binary '­}\nS\n˜”³\ì\"«ñôT“\àú­7£mDut±&\âr\ÍO','',0,'?'),(_binary 'H=ù3P;œTø\Ø\Ã~‡','wp-includes/blocks/separator/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ãú@	½ß»-œQ—',_binary '»üZò\ät\Ø\ä\Ëš«\Äó;<½\Ç\Zóú*¬\ãH\ì\'','',0,'?'),(_binary 'HA„¸þf¾,Áõ\ä$F-\î','wp-admin/css/customize-nav-menus-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\á6ì‘±\èóµ\Ú\ÖCð\Ï',_binary '\Í\"vf:\0ý\Ì\ãº`£J±´\â\Ë^\Ç|cAõø¤“\ß\ï´\Å','',0,'?'),(_binary 'HEõ9¨`†d x®/2¤','wp-content/plugins/woocommerce/packages/action-scheduler/classes/schedules/ActionScheduler_CronSchedule.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\âW\"2•\Æ\Þ(‚\'H\ÑKyv',_binary ';\ìô¢[ó9#ñj(Ž¨d*Z¨7V]J2ôA™Y\é','',0,'?'),(_binary 'HGh\'\ßÁxúR‡¼Ž~\n','wp-admin/js/customize-nav-menus.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ù· \n7MXr\ÜxT¾\×\n3ÿ',_binary '\érl †\Ç\Öb,ü‡\îlù*áºœ\"[ý8 /Kˆ0:„*g‡','',0,'?'),(_binary 'HLE¸Íˆ\å#‘ˆ¥~\Ó','wp-content/themes/flatsome/page-blank-sub-nav-vertical.php',0,_binary '·P9A\Ô\àYgö\\oû\Zqµ»',_binary '·P9A\Ô\àYgö\\oû\Zqµ»',_binary 'Áoƒ*Ä´†X5E\Úð>S T®\é©Á;2J«Vó\ã{','',0,'?'),(_binary 'HL\ítüó²Tª\Ã#Œ\rñ\Îy','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Tg?\ÎB	!Æ½:\âW‚\Íu',_binary '\äð\àþ\ì½(œ¡¹ˆ\Ã”Aƒ}«n\r\ÐÔŒ²\'gAv','',0,'?'),(_binary 'HY¡À“UÁüOuQd„U’Z','wp-content/plugins/woocommerce-multilingual/classes/media/class-wcml-product-gallery-filter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\î™!6Ó”s\Èg\É+Ñ†\ë\Ú\ß',_binary ' S™‘N\à-–3‚\Û8´\ÉN_¨eˆC\ë‡8§	i%”','',0,'?'),(_binary 'H`°\\ñ \æœr²§·Y\êC','wp-admin/includes/class-theme-upgrader-skin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e­È£\Ð\0¤\Ó—O¾)l+',_binary 'u\ä\ßS´…¡¯u¬¡\Þ\Æ\æiDˆp,\\«C¦M5\é','',0,'?'),(_binary 'Hl#%S\å!G¤;\Ý^ög','wp-content/plugins/ti-woocommerce-wishlist/public/cart.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Cl77ù}\á¥\á\êb<\é¼r',_binary 'ë¯ª›I‚RÕ¯4m\ç\0&\ï…¨¼\äÁõ$´·¸Ó','',0,'?'),(_binary 'HmÏ¡\n\Íð\0M\Ò}0\"Ø’\Ø','wp-content/themes/twentytwentyone/template-parts/header/excerpt-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ç¿2bD¶÷‚\çI\á†i†',_binary '¥¢ Ÿ\ßwüMüŠ•Ó³Yú\r”%©¬%ñ\' aOôA&¹x','',0,'?'),(_binary 'HnM†8ƒ6&CDŸM\åM‹N','wp-content/plugins/woocommerce/assets/css/woocommerce-layout-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\Ó3VI©‰©^y!E\È\æ',_binary '\Çr+-‘4·\ÊaÖ’Áý“Z+ *^^{•–\Þ*T’\'*','',0,'?'),(_binary 'Hxñ~i\ÎwˆBzšZ…','wp-content/plugins/woocommerce/templates/content-widget-price-filter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zT±S{\Ó\áÀÄ¥˜\ï­\íHr',_binary '¤ó“%[‘¹U4²ã’•óŒNY<¥¦\é\Ýx!º	x#ù','',0,'?'),(_binary 'H|\0`B£•\Öðœ*²Q¬—','wp-includes/blocks/post-navigation-link/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>}„mOš\ÍPB«“C¦RŸ',_binary '\î\èP½Œ\íQ¼\ã\rP3\\\Ä\Ö|\ÙÒ¢\ï\Þ(¶ø\ÄPA¹','',0,'?'),(_binary 'H€@Q-\ä—	Ÿ8üIÅ¶ž','wp-content/plugins/wordfence/modules/login-security/css/login.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'½\Ã\0|\á\Z1—ïŽ¬\Ó\r',_binary '£FÝŒ\rw,žK\Þ\Ò_\íŒmñ-”ýN–ª\êº\"*”tšF\È','',0,'?'),(_binary 'H	ÚÁQþ—·$\Ô?9\åý','wp-content/plugins/contact-form-7/admin/includes/admin-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\á¹^÷+\ê¬‡›Qv\ÕýÂ‘',_binary '\01~—S¹ú#M*F%l\×X‡ƒ\ËÚ’\Âl>T\ál«','',0,'?'),(_binary 'H[ó¦Huip\nÿ¡¿s','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/woo_tabs.svg',0,_binary '\Ýr³#\âÀJ4­™Co',_binary '\Ýr³#\âÀJ4­™Co',_binary '0g++¾ÿ<…U\Ò3¶\"©5¨Ý˜„’±S€ZšT©','',0,'?'),(_binary 'H–b{´\×^WT\áv¾“•Š','wp-content/plugins/products-compare-for-woocommerce/berocket/libraries/templates/templates.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹4¨\ØÚªG·\Öqrh\ÃÉŸ',_binary '…\î\Z\\EÍ¡ ùMÕ›\ÖnR‚Ã…£=\Ø\Óg#Q','',0,'?'),(_binary 'H–²ûÆ\r’#N\nb,','wp-content/plugins/nextend-facebook-connect/admin/images/stars-small.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'â¶‘;£\ZkR,H²Jg“',_binary 'õl”–YN\á’\ÜHj\á\Ï\Â&;c\"\"PŠ\ß.*·','',0,'?'),(_binary 'HŸšÔ…„ó­\ÛY«n©·e\á','wp-content/plugins/woocommerce/assets/images/marketplace-header-bg@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\é´À:\çƒ,V˜h£ý',_binary '¦\ì\\†–ŠøfZÁ¹¥\æ?G¢§\ÌÀ­;p&¹\í\"}\Ô’','',0,'?'),(_binary 'H·¨Y6o\ï\ãD{ˆLH\ê˜','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305/State.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u.S\Öõƒy\îl\ã=\0C¥>',_binary 'ñƒ?ƒ\\x`‡²Q™=ü\É\ï©8:’v´sTº\Õ','',0,'?'),(_binary 'HÃ½\Íñi\íZ¾U,H»L','wp-admin/includes/meta-boxes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯•vuMzÀ\\„y¸\àp',_binary '‡^•¸\ß\æŠ\0GPÛ¶Õˆ\"\×ZšHX)²\Z\ãf','',0,'?'),(_binary 'H\Ãø\Ü\ÍC©Tp(^\Þ\Ùl\í¼','wp-content/plugins/wordfence/modules/login-security/classes/controller/users.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':ó»o°¶\Ú\nq]\\:\\c\ì‰',_binary '<¶\'@Ã¾\ê\Ö\ÇZh\Þ\ÃÓ€\Óÿ\Ö\Ùo\è@>˜ú·òºö','',0,'?'),(_binary 'HÄ…–µ<g\Õpø‰û!r','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/notices/WPMLTexts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_¤VŸ‚°\à\Äm[.›{K',_binary '|F\ÚD;\éxŒÊºB£”\ÊÇƒ\Ï²C÷x®…X8\0[6q','',0,'?'),(_binary 'H\Ñ0xNlµ?V‰—óûD','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/PluginsActivatedRuleProcessor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TõV|ùº{.\ÜÚ‰3',_binary 'p\çh‰ˆ\ÕKU•:8\Ý2¤Œÿ÷\ÙY]ª¢•\Î\Ý])','',0,'?'),(_binary 'H\ã&\àš\×sZX\É\ÊL*›','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œ«Y02Ž*i\ïK¿,]\î±',_binary '\×PÅ„² L\ï]Yj‹_ß¿š–~ù÷*W‚}\çŒ\ï\á†','',0,'?'),(_binary 'H\ä¡ü-\ë8\Åf•P[^','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÐþÁf©(‰ö¬. >#N',_binary '{Nl§+\É\Ë8†\ÛE$\ßb³\Í\Í7¦‰Xˆ\Íô¸o','',0,'?'),(_binary 'H\êe\Ý#¤¥D)­\ä4¥ü','wp-content/plugins/woocommerce-multilingual/inc/currencies/class-wcml-multi-currency-coupons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô8N»	ý¯FZµN\0<^',_binary 'üF±Ld3Z\Ô\í­\è\ä´ü0ˆ÷I\n¿W­ý\Ðqú¨','',0,'?'),(_binary 'H\ê\Ñû!¾‹[?\Êz>þò\Õ\Û','wp-content/plugins/akismet/class.akismet-rest-api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'âº…º:K\àŽ\È7&Z9Hc',_binary '½*\âF\ã\Ð:®£Ã…=IH\'x“\â\\\"\Ã\Ð\'‘³:','',0,'?'),(_binary 'Hû4©ý?4’\n°\n?r˜','wp-content/plugins/woocommerce/templates/myaccount/form-lost-password.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=\Ùg‘²\'\rµ¥Dp\Å3š',_binary '\Z~\æü\åÁ-UQ~2»\æ¦kJ‹ß›L/\Í\ÃI\Æ\è\Þ{§4','',0,'?'),(_binary 'I1š\ÈT‡¡\è§\è\Ø\Þ','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-de_DE.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nNN•ù\0ý’b·\ÅKÁ-B',_binary '\ÑH¤A#Á#\ÂB\ÓjÊ²(ý\Ê\Õö‰]„W\á<\ïû\Æ','',0,'?'),(_binary 'I»\ì•0N\ì÷ž$µ\Í','wp-content/plugins/woocommerce/src/Admin/API/Reports/Orders/Stats/Controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'í€³™j›Uv%\Ê\éñ\Ç',_binary '\Ä\íº[l‘CHÙ‹K¸\ØIZœÓšsX\ë±h xò[','',0,'?'),(_binary 'I†\Ú/ˆ8°B·\è\ÆÀ]','wp-content/plugins/woocommerce/src/Admin/API/Reports/Coupons/Query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'HW…¾¶O²\Ú/9ž¹\ã\æf\ï',_binary 'ÀQ´÷¤p\ë¡\ã\ZnÊ¥?j@uöz±\ÈNM,KS¶OZ1s','',0,'?'),(_binary 'I\r8p:Í	Þž}`‹\Z\ã','wp-includes/blocks/query-pagination/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†¶\â?ûŸl\ÍÞ«\à(ó',_binary '.Ž\ne\ZÛ¢<ý¢©…ô)¿Bu\ß&8¨¬#rJ,ó','',0,'?'),(_binary 'IW\ï“9\Ùa€\ÖWœ±3(','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/mysql.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ôÂ™†q\ÌW¿\Ù\0\ÓN(\Ë',_binary 'ý·´\é÷zÿ4dÒ»À`ú¯	\0B5Š…M\ç ˜„œ','',0,'?'),(_binary 'I\Z`w¾\É1œó;\Çôw','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/attributes.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æK\Ôl[¤\ç¶N\Ò\ï÷',_binary '\Þ[r\ÓÀAx•¦/i^€\\O…¼µVžó¸•\npI\Ö','',0,'?'),(_binary 'I\Zµ›\ÌVv…F€\ß>','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/fonts/font-awesome/fontawesome-webfont.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯z\å©\î\Õø¸\æ˜ 6‡>',_binary '­\ß@â£‚©L\ëEQññ‰(ieº–q[N|&°\ãùÃ÷','',0,'?'),(_binary 'I\Z¹C\îüô\É\ÐU¼\\(\r4','wp-content/plugins/woocommerce-multilingual/inc/template-classes/currency-switcher/class-wcml-currency-switcher-options-dialog.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`ž\ä)\Ñ@&\Öü\Âf’¿',_binary '\ÄI\Í,\Å\ìiÊ¯U9µ\Ü\èþT¿šü\íd2‹=\ÉR\ê','',0,'?'),(_binary 'I›[]µx»?dÛ»IO','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-sortable.php',0,_binary '\ì\â–û$E\\4Kñ¹£4v',_binary '\ì\â–û$E\\4Kñ¹£4v',_binary 'ÿj±S$%%È†)t¥“i^:rþh\ÉH1j]\çJ\Ù\íCŽ','',0,'?'),(_binary 'I%w\n\È\áIuŽ\Ó³…½','wp-content/themes/flatsome/woocommerce/content-product-small.php',0,_binary '2\Î+fj\æk™oZó\Ïj\è±1',_binary '2\Î+fj\æk™oZó\Ïj\è±1',_binary '$nÞ¯\n\â‰\á7†¤\æi±\Ñ\Æ\Ñð\á|\â‚h»#k\'Ñ¬','',0,'?'),(_binary 'I/–DŒ\Ñó…Ž‰*¥\r','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--cart-blocks/order-summary-shipping--checkout-blocks/billing-address--checkout-blocks/order--5b8feb0b-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r¡°Üž[\Ê\Ñ1\Èp\\v9',_binary 'Ú¿cjB~±c\å$®ü\"@\Ô!NJ\ãq¾Wkúª8T¸f\"','',0,'?'),(_binary 'I0\Åó¹Sþ$2£T\ÐüB*','wp-includes/widgets/class-wp-widget-calendar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ût\Ý#kjX—b /\é0œE',_binary '¹€u.\ß)GF\Ð\êˆ9?4š ñù*2\Ì>G\'l','',0,'?'),(_binary 'I5\')©˜°F&s\×H÷\ët','wp-content/plugins/nextend-facebook-connect/nextend-social-login.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñ{…}igk¤k=9H\Óa',_binary '\Çs\ä8’\Íô•4X\no>:44\Î\Õ3\Â\ã|w¿ŽÖº','',0,'?'),(_binary 'I6.:\n(\ÍÀùi\0Bø\Ï','wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Å)•™\â¾\ä¼\ËZ)£*j£D',_binary '‘z7–„úcb{\ê9\ZJ\í0Ó£\Ê7÷}•\"Ï½Rû[\n[\Ì','',0,'?'),(_binary 'I6U‰\r7´\ÓúŠ\Ö3p\í¸','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/falsepositive.key',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ž‚h<ª\é¶|\Û7bš©¸',_binary '\Õ\Ù_ú^F\"ý\æ;+r&Z~Ó¦Q\Ð\êð¨\Íø|\ã±ø5¥','',0,'?'),(_binary 'IB\Ìø Å­UO\ã¡~c\ë ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/block-error-boundary/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ö\ÆUÀ¡\niC®._¾Ö§',_binary 'üFŸ2L¢«/fK7¨-gx³­#µ9œ\Ô	\Ãd[','',0,'?'),(_binary 'IIñ\ÃqŽ)yžF	¨\ç','wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Shipping/UnsupportedShipping.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ü\Ê?\ãE\Ì:œ:Áó§SZy8',_binary 'Þ‹c\ì·„W§B…h\Ï\nJ¯\"\à=1þ´\é\Ç8\á','',0,'?'),(_binary 'IO/g\"¸\ß%4e<i·\Ò','wp-content/themes/flatsome/template-parts/header/partials/element-languages-sidebar.php',0,_binary '6š¬¢\Çé¼½\ÙjCóQz\Ê',_binary '6š¬¢\Çé¼½\ÙjCóQz\Ê',_binary 'š\Þa\â9S¬¤÷œü$	xÒl>R¶\à:Ž:RmÁ\Ý','',0,'?'),(_binary 'IQ\r\Ö\ÍR\ÛrJ)¸v','wp-content/themes/flatsome/assets/libs/isotope.pkgd.min.js',0,_binary '\ß\ç²,–ñ’|Z\ÃK]Px',_binary '\ß\ç²,–ñ’|Z\ÃK]Px',_binary '47m´+\Øxô\ÒaÂ©\ZŸú³/¨\ä1Wa:4÷& \àµ_','',0,'?'),(_binary 'IrY\Z \n½Y”´E\0¬G','wp-content/themes/flatsome/inc/admin/customizer/img/slider-focus.svg',0,_binary ' A‡*\ë£uŠ\\¯3ª%¨',_binary ' A‡*\ë£uŠ\\¯3ª%¨',_binary '\çl[(\ÌÍ¯I{9\áÁx	ñÁ¹\Ök\éV\ëR¦j\n]¨§\ç','',0,'?'),(_binary 'Iz\ë`–s\Ü6\Z\Õ4U','wp-content/plugins/woocommerce-currency-switcher/css/admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FYkƒJÁ+$ò´¸¨Ô«G',_binary 'ž=m\'2\Ò#v¦\æCp0‚¸X‚ö3\ß\ã\æ“þ2˜1P¢','',0,'?'),(_binary 'IŠ\É\È[\ÚÙ¬\èõ:Z¹gr','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-radio-image.php',0,_binary '\×w÷(Pü\Ü[\ß&™~^‰',_binary '\×w÷(Pü\Ü[\ß&™~^‰',_binary '\Ò?¤Me€Yœ(/ƒ÷6~\Ñu§os\Å\Ü\èA','',0,'?'),(_binary 'IŽ\ç§ÿ{¨ŠT™TQ','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Åºû½\Ç>‡pÒ¸]Tš¦:',_binary 'lO|TÀK\Å\åf\â.Á€`~´Œ¥4,X–v†I›ˆ¥t','',0,'?'),(_binary 'IW½!jd%mÀ[¨	‘C','wp-content/plugins/woocommerce/includes/admin/helper/views/html-oauth-start.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6ô\Ïx\ÛKDo:¿&C\å',_binary '\ïú“†H!&½)Re·º…±Qn=}…ÝŸœ\æ®S\Ê','',0,'?'),(_binary 'I‘·\í¨ù³0©Ý„Æ”À','wp-content/plugins/woocommerce/src/Admin/DeprecatedClassFacade.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô#^µ\á\Ìl\Û\Æ“x\ÛS>ò',_binary '&†½eš–7+¿·?Iög:%\âöD\Óxi³¶±ùVx','',0,'?'),(_binary 'I•\Ä:Bs\Þ#\×\çÿ\Þ@\×','wp-blog-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_BZF1ƒñ\Æûy¨¼\Ñ\Ñ)',_binary ';\ZŽ/\\b„\ä\Ñtú‚«Iô¤Œ¿Í¯ž\Ëh\Ä\Ôw\è','',0,'?'),(_binary 'I–5j„_¼&oN\â\Zy_µ','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-variations.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Þ–Hþ\ä{>cY„§|×ª',_binary 'K$S\ÂW¤\r/S\È\Ò]e\è—@\Ý\ãp\×#‘OP[û\ìZ','',0,'?'),(_binary 'I–À2¼2O,Žl\ÎRÄ¼h','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/product-response.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r/~z˜gW\ÆqöLŸ&',_binary '2}€·$6{ý\à[’\ä[n\Ã	P\ïO:œÒ”Á\0;w\ÄV','',0,'?'),(_binary 'I§_½‡§V9\áœº`Ž(','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Formatters/HtmlFormatter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd[\Ëÿg§k‘±–\ÖKšo',_binary '; w°O,4KvgÑ†6Žp‡ŠÀ\çF~›\'­¥\"$¼{','',0,'?'),(_binary 'I«4\"¤úoiq\âTM','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/title/types.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Û¥®´˜‚[.â—«¥f¸‘ð',_binary '¤]­À¢¨o\Zd\ÕM\ÒGŸó:›&\Z.u?›-\à\\;ÉŠ\Û','',0,'?'),(_binary 'I«*/9Z \Z_\Üò°gó\Ô','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/init.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\0þ/\Ùs—\Ì\Æjô‘X*',_binary 'Dõ\âš\á¦\ë®\ê{›\ÊÃºŒs\Øýk.øô\ã9*\ïv','',0,'?'),(_binary 'I¬Ëœ°e\Ð}*£û\Ùf','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/payment-methods/actions.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@Š¬\á[¦,T{õuÀ\':',_binary '\"ò—>\äp2M\Ö)%ûs¤nq?£µr!Ý²$p@','',0,'?'),(_binary 'I¯9ŠÓœ/¥÷k#ê…­','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/payment-methods/test/registry.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&Z˜¹*ª\Ôù~\ÔH.',_binary 'w!\è\çV™j—¼óÎ‰\ïù\ÕšÛš\Æ6n&\Ô+ù\'K','',0,'?'),(_binary 'I¯…\ÖX$®òQ\Ò:','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ErrorSchema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\åV\ãòÀ4¿µ¸\Ý	ÉŠñ',_binary 'FP¶£ƒ?r\ËvÚ²$w\ëŽº\Ç;¢ºu\rÚ¾K\É:Lù(','',0,'?'),(_binary 'I°P\à:ˆ]<r\Ç5qCª','wp-content/plugins/woocommerce/includes/wc-order-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨¶Ó­\Ë(w§Ì´\åõ\r®',_binary 'žlšÒž\àGž^¬A\î—^\Þ\æ\Ù)\Þ\æH[”\Ä\ÃEG','',0,'?'),(_binary 'I´3°Œ!Ü€V-\Ñpfœ\ïA','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-store-pages.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'À}[Al¦mt\n©!\Å9\0V',_binary '’¡\Ó~\ï´\Ìd\ï•wT8ˆQ%3\Îü$½ÿ©žò\Òé¹‹7','',0,'?'),(_binary 'I´t\0L\Ú{\Z\n©Ž¾\Þ','wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-grid-style-1.php',0,_binary 'šñX\ãvÁ¹¯O&(Ô®k',_binary 'šñX\ãvÁ¹¯O&(Ô®k',_binary '\Ù\Çl¹¶•¬\äú‚E¾\ÏH\Ö8P¥UXì†\ÃY)”','',0,'?'),(_binary 'I¸ñ4\ÐkP\ä±lMû—/,','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ð\Î÷€!\Ä\ÈHÿ¥hœŸ',_binary '\Î9.YlS®‰ö\Ë\Ì\ÈA\ÙXN‹\Ôo*b€º¾l','',0,'?'),(_binary 'I¹ŽÅ´»²Û˜(4´\\P','wp-content/plugins/woocommerce-multilingual/classes/PaymentGateways/Hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·|\Ä.B3^­S%\â8ó\\',_binary '¤ÁQÏ½†²<-ž\É*³ú\î{öØ¶\Ä_\ï\Ù¤¥”','',0,'?'),(_binary 'I¾£§½~\Z\Ïu¿È ô\ÜE\Å','wp-content/plugins/woocommerce/templates/myaccount/navigation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\á\'~©:„‚\Ë\Å=#³\Z;W',_binary 'mÉÁ†iŒFE!”!‡\íYK°ó,dñûÂ\ï{Þ›ûbõ¥','',0,'?'),(_binary 'IÂƒ“&{ýž;\Ð-H\Ö\ï‹','wp-includes/blocks/site-logo/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ë5\×\Ó\'sa\Â \É!”=à«–',_binary '%\ÚD“|:=Kÿ\ç–æ‡š;ð?\Î\ÓÔ”{MÛŒ','',0,'?'),(_binary 'I\ÆÔ¬óló¬©ð²§v0O','wp-includes/js/dist/core-data.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ØB…q\æDû\ï\ç\çc÷\ã)ö',_binary 'Åž–JEC\Æ /,¾…\å—A¸?=Œ¡3‰x%1z\à\Î','',0,'?'),(_binary 'I\ÕÅ··\Ò\ãõvRI\Ú\ê\Üñ','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-setting-options-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬ðs·¶0 ;7`Äƒ…\ä\Ü9',_binary '~\í~=\Å[\â…\Í\É?}\Ø1°‡\ï\êdy™‘*\çž=k~','',0,'?'),(_binary 'I\ÖPE\ÐXtœFH\ï%–','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®šó\0\Âõ\ìLv¿[c\Þ\Î)?',_binary '¤C\Úh!Ý€F$\ì}¹wd¸7b(¦!\äp÷IF.L','',0,'?'),(_binary 'I\×ñ8ß½ýTû\Zµª²™0£','wp-includes/blocks/list/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[AwÌŸ\ë\É\ïÑ–ü­X19°',_binary 'G\Ú\âQÁ¡—µ”Ry_I™ERœ[X=\ÍSY‰¢\"Ž—\Ä','',0,'?'),(_binary 'I\Ý\ík}ü^=L\Ôð’','wp-content/plugins/woocommerce-currency-switcher/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ô[X,®\ØhÇ‹tq4T…°',_binary '>{\ï•Ö¡¾»“¸úYK:Il(\Ð\Ùc~\ê Cl’u>0\Ý','',0,'?'),(_binary 'I\äHCø‰œOûZ3.¢','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/gfml/icon-256x256.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$ê•¹\å*\Æ\ãR\Ùe\ËÉšPš',_binary '¡™Iiwò‡›™<q¼\È\í¢¡i7……\ìh5Ð±#','',0,'?'),(_binary 'IñV/’ðµ6¤s\ã\Ãø','wp-admin/js/editor-expand.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Â´R’[ ÿ6\\gTÔ„L_ø',_binary '\ïövI\n6‘\ä6¶”%VG°ö}Á\Å\ï“\Â@of\Èe;','',0,'?'),(_binary 'JOŸ‹hªï€¶\ì£\rYf','wp-content/plugins/products-compare-for-woocommerce/berocket/libraries/tutorial.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yzù\0¦Œ†\á‚o»\Ì\Ó<',_binary '\Ñ\Ç,\ç×†}\ÚIrY_\Þ\Ý4Ô½»òÌ±\ÂùúiR\á5D','',0,'?'),(_binary 'J\Î%.¬ó~œÂ—q\ál¼','wp-includes/class-wp-text-diff-renderer-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡-\Æ€‡Žg0HFuIô',_binary '\Ú_h+\ÂU­ƒHi\Çû\Ö_¼Že£	w\È\Æ‘6\ç\Ö','',0,'?'),(_binary 'J?#³ÍŒ$Mù7\Óc„','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/AbstractPlaceRecord.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\ÄI.:›\â`PR\ä',_binary '#z\Ô¸R™\ZHU\è\É\î>B\ènP,Ÿœ’\'ƒeT¬tßº','',0,'?'),(_binary 'J\n«^?N3±‡jHm”\Ü','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-title.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ªY\ÉFA\Ð?—.\ëqÇ£lr',_binary '*Y\àri\íR+›÷8\ì~3«³\n\Î\Æ\r\r\r§\áƒ1óÂ›\è´','',0,'?'),(_binary 'Jf¸3?ö“‡_r\ÛC‘','wp-admin/images/w-logo-white.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n¦\Ì\îJvÛ¢~»y¬\\…',_binary 'nÁDš°‹ _\Ï;\Ó!G«×cVƒ0M9i\ë‚=½','',0,'?'),(_binary 'J<Ú†®ª\Æ\']móó','wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/modules/google/googlefontapi.js',0,_binary 'p\ÐôŸ}\"\ã\Z?}F',_binary 'p\ÐôŸ}\"\ã\Z?}F',_binary '·\'Q÷¯´5–\Üi,Œ\n,J«\Ôý„ª´\Êô\Ø\â›Rµ‹','',0,'?'),(_binary 'Jþ‰E[¥7U\Ò\Ó\Z\ï~','wp-includes/js/plupload/handlers.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”¾»j^R\×p2\Æ]e(\"Vù',_binary 'ƒ)Mo\Ç\Èõ!D\Çüòùi&I­¸\Û#26\×\ÆQT±j¥','',0,'?'),(_binary 'J\Ýo°¹-IXU6\î*\Ð','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/share.svg',0,_binary '\çÄ\Z”@«(…€‰(\ß',_binary '\çÄ\Z”@«(…€‰(\ß',_binary '„Ì²À@P\Ü3¬\ã¤!‡<Þ¯ ½\ï—YIøÿ27oiKE','',0,'?'),(_binary 'J‹}\Ñ{\Í\Õ\Ñ*8\0h\â','wp-content/plugins/yith-woocommerce-compare/assets/images/socials/linkedin.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÜC·Sñ`\î\ë\á\ÎT@\ÌZ',_binary '\æ…\Ã\ß9\ÎkC\ê,^\×6}\Â7T¤WõôÍŠ_\Ô8Œž\ä','',0,'?'),(_binary 'J!­o“Q\Ï\ÄMÓºišt7','wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷&¾V^¢\Ç\Ý\Øð#´6¤\å',_binary '=c-h\Î8½\å3>&ª	‘kf„µ3#pO8þB–¢|cC','',0,'?'),(_binary 'J#:¾2Á!x¬CA\ßY–','wp-content/plugins/woocommerce/assets/images/icons/star-golden.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?2ú¦•?!¯Þ³G•\âÜ„—',_binary 'r’CF7\0\Ì«‚œœ³§á«–\ÊA‚˜…&’t\åhJ”','',0,'?'),(_binary 'J\'\ÂTª\åðRo<{Gö0','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-3-col-full.svg',0,_binary 'Ÿ\×r\Ä7”»HI\È\Îò¿',_binary 'Ÿ\×r\Ä7”»HI\È\Îò¿',_binary '—,\ã\ÝR\ÔPÀK\\\É¢\Ó\Ê\ÂxUg\É6ao»’T	©','',0,'?'),(_binary 'J*§Îšó[‹z\ÃA^›0\ë','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-dependencies.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gPG©28†ÿµÀõ²\"µ',_binary '»à´¸\ëf÷Srˆ05hz±®iá¦¹Ò™\ÃÛ€’\\vW','',0,'?'),(_binary 'J8N$Î ŸP©,Ç¬ÿvY','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«”~%‰w\å\â\rœb\0w¡u',_binary '‚\ßöˆ±a%…\ã°üŸüpN”Wð\ï\\.\ÅŠ \ç\'','',0,'?'),(_binary 'J8þE˜žDh+¦ŸF','wp-admin/js/site-health.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\ÔIdC¤“˜\ëVP\ÞQ_',_binary 'fz,,x‘—wZ\n\0\"\è¸|´\"¥ZI´\è\Ö`¿\ìxG©','',0,'?'),(_binary 'J9\nE½\Þs4Tœú¯\Î\åu','wp-content/plugins/woocommerce/includes/class-wc-regenerate-images.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Fp\é§-‚\ï8¸“V´yG-',_binary '\×Ö a\Í\àUWs\ÝV&=\ã ’OCL$¤G\Óz&#i±','',0,'?'),(_binary 'J?ø«4­Y‹•h‰e!>O','wp-content/plugins/contact-form-7/modules/submit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰\Ôuß®s\ÔF\áW‘û\ÌK',_binary 'r\ÖÉ°´\ìžKEƒŸ¹r¤m\Ðð<*=/n!\\}=•%™','',0,'?'),(_binary 'JR\å¬\íoyzô\'g‘}','wp-content/themes/flatsome/inc/builder/shortcodes/values/masks.php',0,_binary 'Á#b2;\04t\Ë\' ó˜¬²',_binary 'Á#b2;\04t\Ë\' ó˜¬²',_binary '\æ h­\Ù:\Þ£Dz@\ÌJAT#û¸\ÜTžóº¡ux(@H','',0,'?'),(_binary 'J\\\êÍ€€Â¨}ü@+,“(','wp-content/plugins/woocommerce/vendor/symfony/css-selector/XPath/Extension/AttributeMatchingExtension.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0š;\èJ\Ë9®‚~¼\×Mû',_binary '˜Š`.\ì¤\íKyk|__Êž[±7\íX\nh\Ë\ãÕ¦hú','',0,'?'),(_binary 'Jjš\0pmw\ì¹ãš‰b(','wp-includes/blocks/code/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\àYW |¡`©+[T}@@',_binary 'ºÐ¿\ÅO	\Ò8j’\Ûøo¢\Ñ@D6V\nL¦¦cvC¦','',0,'?'),(_binary 'Jlš\Æ¨1ž\Ï\ã¥\ê\ç','wp-content/plugins/wordfence/models/.htaccess',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£E\"xK\Ê\ê{\Ç8ödS³',_binary 'C‡¾ö½\'r…9½\ì@\âK¡Þ†t¡ª™ö\â§w#@kº','',0,'?'),(_binary 'J{£Ö¹Zi^Ã¹x•I','wp-admin/media-new.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\êJœ}úZOc…h\ÌŽ',_binary ':‚3&ÍƒQ\èM\n\Ï\é!ƒ1P° ª\ë\ïee\äû','',0,'?'),(_binary 'J}\ë)\àlµÓ± ›]\Én§','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/error-placeholder/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')—8¡®¤š”v\"UP²#',_binary '‰R\Ö}û÷±{y¡¡\Å\Å„kWSw\å\ÞV4˜©S-h&','',0,'?'),(_binary 'Jƒ_\é]\ÈÌ¿\ÐÉ¸¢^ºb','wp-content/themes/flatsome/inc/builder/shortcodes/ux_menu_title.php',0,_binary '\Ú1’a™KÂ¬L:<zÊ¥',_binary '\Ú1’a™KÂ¬L:<zÊ¥',_binary '\Éô	Ñ˜/i-õs\ÎXü5cˆ\éŸ€¯ Q]Ø›o±!','',0,'?'),(_binary 'J†°:-«›WŽ”k†¤4š','wp-content/plugins/nextend-facebook-connect/compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÍS5`z«°Ñ£y.QO*\éd',_binary '\ÜHv[¼‘\ÊÁgð\ê}ð÷1¦G4\'\ni¨O®¹\ëþè¡¼š','',0,'?'),(_binary 'J‰‚K\ášó½À]\Ëýþ6','wp-content/plugins/nextend-facebook-connect/admin/images/google/light.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”\0%]„ýÑ’\í\ÌD!\àw',_binary 'ü?\Ó]•g¼E‰/\Ø\ì\Ö6xƒþ\Ëú÷ÿ‡J­\ï','',0,'?'),(_binary 'JŠ.¶FG\ØûZ„7cØ•','wp-content/themes/twentytwentytwo/inc/patterns/query-text-grid.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÇÿUp¨Y¢P\Ð\Û~š\Â\Ø',_binary 'ì¡ª\"z>/°ýWËª\ãý\ÉØµ -ŸrÚµvM\Îoð!','',0,'?'),(_binary 'J‹\ÙmQmŒU@‘<\0¨ø','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ß\Ò+ør\"`lÒ®ú\Õ\Þvv',_binary '#5}Í	ó\\fŒ\ÞW–¶¼Ä°\Ý\ï~C\Ñ`¥‡Où\ë”c,€','',0,'?'),(_binary 'J“vþÀ?\Ù\0~0˜\Ç\Ñ','wp-content/themes/flatsome/template-parts/header/partials/element-search-form.php',0,_binary 'ë£_mx”uN0òØˆ\Ø',_binary 'ë£_mx”uN0òØˆ\Ø',_binary '–p\È}D¤\èK\ê»À]+ÿ\î\Ýã§¡8t¾¿¼°','',0,'?'),(_binary 'J Xòòýè¦¬\Ä=~ÿ','wp-content/plugins/woocommerce/includes/data-stores/class-wc-shipping-zone-data-store.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±6^x¢H˜ \ám\Ëé†§?\Æ',_binary 'vq¯WóTŠ\é/\Å\ÙJ,r@\àmúŽÒ…[·É§\çô¾','',0,'?'),(_binary 'J¢>\×\æ\ï£\Åø\"\Í\ä/','wp-includes/Requests/Auth.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+…»\é\Óy-uPü5²M9Ð½',_binary 'k¬‘ñ\æ¾w\Ï6XN\rŸ»—£\ç0\Úc\ç\Ò\Ù\ïÕ–ò','',0,'?'),(_binary 'J³¤µ;<\ß\ÊC{ß«©®NŸ','wp-includes/blocks/spacer/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ð»†B\á\Í\Å\Â\â>eþ …X',_binary '-Ó¡‘núÚ²ŠyŠqqx-jÀ„¦!p\ÒBÙ )XT4VN[','',0,'?'),(_binary 'J»jH‰š\Ð&\á\Ð\åK\Í\î5u','wp-content/plugins/woocommerce/includes/legacy/abstract-wc-legacy-payment-token.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ)Ã©úO~¸\îô›¶¿',_binary 'l1e†m\ß\å\Þ:\Åb¹\0.©\0ªm\×ø•6Áv\Zò\\²A','',0,'?'),(_binary 'J½nh?û¶‰D…}­+7','wp-content/themes/flatsome/inc/admin/customizer/img/form-login.svg',0,_binary '\Údûu¹ñ ¼\íú™ü…',_binary '\Údûu¹ñ ¼\íú™ü…',_binary '2|Ì¿~\Â\çW\Î*„f«ª-GuùŒf\'6´fM\Ó','',0,'?'),(_binary 'J¾:£ý”<®LqÏ±f\ÐV','wp-content/plugins/woocommerce/legacy/css/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ [Mr\Ð\Îo‹qXØ¤qW\ê',_binary '}[\ËK;\Ç\â§5lÀ¨-¾¾_ˆZL4©Ož\ëñ\Âx/«','',0,'?'),(_binary 'JÀð\Ø\á\ÂÇ´ Ô¾ñcÿ','wp-content/themes/twentynineteen/images/pattern_01.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\Æ;\ï²QB†„Xþ±Œ¯',_binary '\Ý\Ì(‹û3¾g`&}\Ã5)›sñ‹}me2·G¢µ[\Ç','',0,'?'),(_binary 'J\ËB\å…>ZI¥õ¸FûC','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-checkout.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\í¢\íP@þ48\ÃB\r2uÑŒ',_binary '®\ÕL€y@›\Ù¼¨i\0e\ÖNu*c¥\çP\Ç~^#','',0,'?'),(_binary 'J\ÌF”\Ð~¨@ªa\rªcˆ\í','wp-content/plugins/woocommerce/assets/css/photoswipe/default-skin/default-skin.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²WúœZ\È\Å¬Mw¦g\Î)C',_binary '´¡ö5#tjõV‰c6ÿ\èû\Æ\n\à©P‹n1\ÂoŒƒ\'','',0,'?'),(_binary 'JÕ¬4…\ç\r\àn\ê\Î\ç¦','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777620_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ëJ—\\c7’yþx\ÆÐ³l',_binary '³~À\ÍqVš\Â¯¾*\'\Å1”¥¤š]3^‘öž\Í\Ém','',0,'?'),(_binary 'J\à\n>‰\Þ G‰Ž\Î^+:','wp-content/themes/flatsome/inc/builder/core/server/src/Services/Container.php',0,_binary '\×J˜ÿ,×‚š‡.\\›G\è',_binary '\×J˜ÿ,×‚š‡.\\›G\è',_binary '•Á\Ë?…jH¤±T«Šœs4—Œ€‘\'þ\Õq\ØR	OÉ«','',0,'?'),(_binary 'J\èñ\\\'à·•M--Š‘e!','wp-content/plugins/woocommerce/includes/data-stores/class-wc-payment-token-data-store.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ê\É\Ë6„¸ügûžM—üHþ',_binary '\Ö.uút7û›HXQ«õ‹bO†˜B\Öf¼\Æ;Vû','',0,'?'),(_binary 'Jò¾¬´\ÊOh\Óý\ÐsDØ¾','wp-includes/js/zxcvbn.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|	Ž¼¦#PV	/{•Mü_',_binary 'vXI9\Õþ³nõ1e†6\ë\ÛCô\\\Ó.p+\Þ\"»ðKþ','',0,'?'),(_binary 'Jú&@Á >B)‘Y¾o\"','wp-content/themes/flatsome/inc/admin/customizer/img/product-box-add-to-cart-tools.svg',0,_binary '\æ·vù½œˆ\Ìp¢\à\Ø\ê_\É',_binary '\æ·vù½œˆ\Ìp¢\à\Ø\ê_\É',_binary 'C\rBÁAš\ßË©\è\Í#E¢/Z‚:.!†J\Ä=•‰','',0,'?'),(_binary 'K\Ú1;õˆ\ìúfý;ü\çû','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z Š\"I\îó\Ë/„ú…®',_binary '\"÷¾´[&\æPz>|Öª!­HX1¯»©\æ\Ó\Ò\Èb','',0,'?'),(_binary 'KIò`)ˆ(ú§:f\ãû','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-category/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦§\ï\Ç\æŒœ-\ÆK?.\nú',_binary 'šj¡ c‰\n8|\Ç°\ÂY\íÁp\Þ\Äa.1\ã¾16\ëb','',0,'?'),(_binary 'K)h\ØÏŽˆhÍ’oÐª','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/fonts/otgs-icons.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x®3o²’\"M½5p¡ÿ',_binary 'Ê„Ô¾\ÈEe“}G\Î\nP\×\Z©l&=9-ŠšR‡\Ù~','',0,'?'),(_binary 'KQ\ËZ°“:…N3yr-)','wp-content/plugins/woocommerce/includes/admin/helper/views/html-helper-compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–\0~\r}}¦<™Dóö\ÎP',_binary 'FL÷JPR¸\ç\Ínú\à\äEµ2ß¾9rV1’5 \æ›ð','',0,'?'),(_binary 'K¢,ý\î¯<‚fÆ‘Y¡','wp-content/themes/twentytwenty/inc/custom-css.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'º½÷uRl[°|J\â¥qˆ§',_binary 'Î³š½­C¨(Fu¼©ƒ?œ\Ëqtk!\ró¥\nw¸;=\ß5\Â','',0,'?'),(_binary 'K¾\ä÷ßº\á†b¤','wp-content/plugins/wordfence/lib/compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\îµ\ãø\Îzðx”ŠCŠ}',_binary '¾NÜ“»#d\Òt¤B!\"MÕžÿ==\Ë@o‚²','',0,'?'),(_binary 'K\'c\ÃŠ\0\r‹­k5ˆ\É','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/editor-container-block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N¥ò.û>°KnU×·',_binary '«p=\r\é\é™Zn“‰!d€É¥Ox7R`¢\àg\î¶\å[','',0,'?'),(_binary 'K0µöò\r\Å\é–Ücn\çû','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Util.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì29YÂ¿,E#ó/Œµ‹§',_binary '\Ä ™ û·h<)sœ\Ô>-PŽ˜{ó\ë\îK‹¿ùI\ì\0žƒ','',0,'?'),(_binary 'K1±“„GfÂ°•\Ö`ñG÷','wp-content/plugins/ti-woocommerce-wishlist/integrations/clever-swatches.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ï\Þ?KúƒRº¨¼!\Öz½Q8',_binary '\"„\é¢G£xR•\Íx–?A>\ã‡þ¾{ù°Þ€\Ïg\çHù\Ú','',0,'?'),(_binary 'K4vZ[‘6*û \Úø','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/filter-element-label/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`öŸf‰`M—Ò¢¼D¨=',_binary '¶+“\\[‚À­W³‰»l4øs øB¨Fö+™š\Ãu§','',0,'?'),(_binary 'K4\×p–Ww¤2ó\Öc  \Õ','wp-content/themes/flatsome/inc/shortcodes/team_members.php',0,_binary 'ŽHÁ¼\ã¤Â¾š\ÅÔ¡óv8`',_binary 'ŽHÁ¼\ã¤Â¾š\ÅÔ¡óv8`',_binary '\Ù\ê$lúC\ZE\Ó`¶~|°ßŸ, ±TÀ\É\ÌRªß®','',0,'?'),(_binary 'K;\çò~\r¨º\Í\ÍRñý\ï\r-','wp-content/plugins/woocommerce/includes/interfaces/class-wc-logger-interface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iPCT\Ñ\î:þ\ïF\ÚN!¾R',_binary '·lÜ‰s\'r#!]8\n‰¸\ÌO—9¥B÷?\í1KœÑŒ_','',0,'?'),(_binary 'K>ˆ^[¯P‘F\í1‹h:','wp-includes/blocks/social-link.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(G„Ñ»x\ÛzµƒT@\"ð',_binary 'N\Û<Äš]ý\r\Ø$\ë ›n\Ä\ßÑõ_O\Û\ïd÷ª','',0,'?'),(_binary 'KKOfºSd«iB0Ovó\ê','wp-content/plugins/wordfence/views/scanner/scanner-status.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2ú±·\ë´øv\Ç\ïœt\í',_binary '\Í\í9¥\Ø\ë›`NŒ>Éžõ9:¿ŒA\Ú\Ó\Ë\0Ž\ÕL…“–˜','',0,'?'),(_binary 'KS}˜B÷\Ú\Æ.ª_n¬\0','wp-content/plugins/woocommerce-multilingual/locale/orig/woocommerce-multilingual.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6450Û¸‚ƒ1\È:¹‹\ï',_binary '5l¸‡Fd^\ÇG\r\Ê\âBžy¶·¼\èô\ãy²›d\ígE','',0,'?'),(_binary 'KX#Z°s\Õ\à$#\Îblõ','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\ßcsD‰h%\éŒ[p!˜4\"',_binary '£;Žø\Ã<¸ª·EU%”Hw¸\Ï\×Dû\áD†Ë‹–ƒ8T','',0,'?'),(_binary 'KZ6ot7.˜ò\Þx_þUY','wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-sixteen.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uJ\Ð/ö+)\Z2¡*ýU¨·',_binary '›\ä\âpW,\êR~ ‚{\Z%µ­Z1_¹2$ W\Ã”J_§','',0,'?'),(_binary 'K`¯A\çŸR$½0·\çi>','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Node/ClassNode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bA\ÍQlŒR™\Æ\r\r99’\Î',_binary '\Ò=\ã\Êxûq¡Û—ß¿û\Ê¼›|Á\Äk™BO\êD','',0,'?'),(_binary 'Kd\ÑH	H\î‡\Öcb\Ü','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/sysinfo/tabs/error-log.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ùU°\Z \ÌpDG‘L¼’¦£',_binary 'R\ÚvÀ†ðe¢IøEQþ-mM±\Âs¸¶¥›‚>\ÊK','',0,'?'),(_binary 'Kpx \Ò%ªk\Ê~\ÈÁ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings/shared/test/get-setting.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\åŽQ@Ñ“ð†÷=9$­ \Øj',_binary 'u\Æ<aöþ&\Ò!\ÇiÝ’½ÛŠ>\Ö~\È\" „?tA¯','',0,'?'),(_binary 'KnÒ‹D&sRôWU(‹','wp-admin/css/farbtastic.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\Õ^µ:ˆG€(“‚±:k\n',_binary '4·°7V‡f›\Ý ñ¾/\ï‰¼\å€\ê\Ã\Ã\æDŒúW3p','',0,'?'),(_binary 'K\ï\ÎG_A!\ê+’½1v','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/arrow_down.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷\ä\Ü3k\ÑþöL\Ìs†—«¯',_binary '·\Ç\àÆ”-2n\à|©‰Qm\É96\Ô&\ìÿ[É¼T6=´\Ñh','',0,'?'),(_binary 'K–\Ø¦¥…\'Š­%û£S†´','wp-content/plugins/yith-woocommerce-compare/assets/images/09.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*TrÖµ\áLÖ‹\Ùo\í\è',_binary '\à\0ôûŽ\ÖW™=Ÿnv\ç\å_¤…±ÿ¿~ `l»§ôŒ²','',0,'?'),(_binary 'K—\ÎX«LH\\®\ã±®','wp-content/themes/flatsome/inc/admin/options/blog/options-blog.php',0,_binary '\Ö\í1LZ\Ê} †;z\ÙG',_binary '\Ö\í1LZ\Ê} †;z\ÙG',_binary '˜\Ð\é8š\"\nÛ–B\è\ÞÌšKB¬Œo9©ezM~’ú€’','',0,'?'),(_binary 'K¥‚ûˆc—\0o\ÂóWŽ½','wp-content/plugins/woocommerce-multilingual/classes/class-woocommerce-wpml.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„´IŸ$¦\ÚÕœ\Þ!Wû¿¥8',_binary '\á·\ä|\Ó£]\ß~\"ýw}¥Ž/\Ùœ—\ã·MôüY\\ñ\"','',0,'?'),(_binary 'K­ô‘‡\ËR	wA\Å\ä\Ðe','wp-includes/blocks/latest-posts/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'RUú°!L)ðt”÷õ_ò',_binary 'Ž@¹\Ùf\Ó1”´‹\â	<¼‘=¨*\ÜMl«U\àœ\Z\ìñ','',0,'?'),(_binary 'K¯cŽŠ#2s’/(…\"Ž','wp-includes/widgets/class-wp-widget-pages.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\µ¦õ!$\Ì\Ç:_:G',_binary '\â*\Û\ÂÀ\"#å€®´U\î8÷¨¦cÿ\Ô*[‡\æj\'','',0,'?'),(_binary 'K¯ª<©H<7\ÅEž,l\ç\ß','wp-content/plugins/wordfence/views/waf/options-group-brute-force.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',ùpõk<û\É‚#Y',_binary 'Qx\ÌbÁ’nbWK\É\é\â\ÈE*¤lŽo\ä\áÞ…\ï\ÝÊ›Ÿõ','',0,'?'),(_binary 'K¹¿\ã \r\\Uz÷õ\Z:\'','wp-includes/sodium_compat/namespaced/Core/ChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ìV\Å*û\ÊFè°¯ñ<Ž¤l',_binary '\åÂ®¢R”l–Uñ\Ù ™wz\×ank–\ÇG\Þtº3\î','',0,'?'),(_binary 'K¾€\Ç*\èŒ\Ö\èP¬§d','wp-content/plugins/woocommerce/legacy/js/admin/quick-edit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'À¯‹\Æ0\\cÀ\Úl\Ã^>Œ\ã',_binary '7]“!ú\çs\"\ßyq-õ][\Ö\Õ\0ZûÀ\ë\ïÃ \ëm~','',0,'?'),(_binary 'K¿\å]C\í\î©l7:\ÄD\0','wp-admin/js/widgets/media-audio-widget.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P IM\Ý;p8vn³\Ç[ôS',_binary '›¡ˆ•9j€ñlxB\ØeH:¿y¥%}óc	TP§_\×','',0,'?'),(_binary 'K\É\Üý½xwo;‡\"¹CÚ©','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£Dþ^·°;‡\ë9\Æp\Ô',_binary '¯ƒ(Pd‹L°\Å\è¿\Óì»˜9¬\ÂI\íÿ\à\Ëw y›1Q','',0,'?'),(_binary 'KÊ©\ç:¤Š;o¬®½E\0(','wp-content/plugins/yith-woocommerce-compare/assets/css/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']4%Põrs8ž´Šò\Ð',_binary 'š½È±\Ãh$šª\êP¦7\î\"¥ª””g4~\ÕPœp)ú±‘','',0,'?'),(_binary 'K\ËLx<C Ž˜H”ôe\Z','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HSalsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-·EN\äÄ‚Û›(\nún',_binary 'š÷\Þ¡Ñ¬}^EF\Ðù›\Ê\Þ>ô’Ú‚B\ì\Û','',0,'?'),(_binary 'K\×ÃŠ=\ÒpÆ‚:ÿ\Õ\Ò','wp-content/plugins/products-compare-for-woocommerce/berocket/templates/settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^‰ˆ#\ë¬%\Íÿ/»m¾WLo',_binary '(Re:•é©¤d¯Fs|Œ› XOVTn¼#\Ç\î\"Fb','',0,'?'),(_binary 'K\ØT\ëg‡:eùô†‡5\Åþ','wp-content/plugins/yith-woocommerce-compare/plugin-fw/init.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\0þ/\Ùs—\Ì\Æjô‘X*',_binary 'Dõ\âš\á¦\ë®\ê{›\ÊÃºŒs\Øýk.øô\ã9*\ïv','',0,'?'),(_binary 'KÙ ];\'€‘þY2õ\Ý','wp-content/plugins/woocommerce/templates/emails/email-order-details.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\È]G\Ä\åG‰0\Ó\'œŸ¹µ	›',_binary '3`;.\É‰\ã®#ü¿—1yI‰\Z~ó;\ÝhE6','',0,'?'),(_binary 'K\ÝX B-m¾¡\Ê(U\ã\ÕÁ','wp-content/plugins/woocommerce/src/Admin/API/Products.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\-WN‘O÷ò\\/Ô¬ü',_binary ')ôaj4\ì\í_øªj\ÓÓªˆ\ÌR\Z ±\îOð@ƒ\"l“R','',0,'?'),(_binary 'K\â9Y*‡0\æžòÿ÷u\r','wp-content/plugins/woocommerce/includes/class-wc-product-variable.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹ð\Úpa_½°8\É\Ú	\Õ\0\"',_binary '±é®ˆ‚\ì\É&\\¢*¶¬xþFHa\Ã\']z\ç=iº\Ì~','',0,'?'),(_binary 'K\èñ¦\\(É‡R?BŽŸ','wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-product-addon.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\'\í½&Óº©\Õ\Î\ë¶Èž',_binary 'n¡Á\Ôó`ôøz\Çw±]÷ <ô@›\nö4œtg5\n×„/','',0,'?'),(_binary 'Kù \èžõ*‰;Ü¼\Ænc','wp-includes/blocks/calendar/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(a$°jg}\×S5N\Åj\ì',_binary 'œ\\\"Š>\ç‘\áv¸¹A\Ç(§²€KŠm\ÑÃ².‘[L«£','',0,'?'),(_binary 'KùdüM0ú4ž\Õq\Ý-÷S‚','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sale-badge/constants.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')m¦]\Äø‚H 8¹±s	',_binary '@$\Òù\Ó}\ÄvWð\äBS$UY\å\éQÎ\á±\'V‚š«¸:','',0,'?'),(_binary 'KùCwPÏ˜]þ6¼\å =','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÐþÁf©(‰ö¬. >#N',_binary '{Nl§+\É\Ë8†\ÛE$\ßb³\Í\Í7¦‰Xˆ\Íô¸o','',0,'?'),(_binary 'Kú\ÚWÿ&\0\0Kµ\06‚Gô','wp-admin/js/set-post-thumbnail.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':1N°(\èxlX\Ýü¿\'',_binary 'v9\í‡\n{lKŠ†~q\â°#’>‰\éß¦·½¡ J…`~','',0,'?'),(_binary 'KýK+\ì†À2¤	aeZ“e','wp-includes/class-walker-comment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½7¾%ôv\íOù«\É\ß@',_binary '\Ãó\ÆNQ\Ó\ç\Ã#\å\0¯¯\Ûð:·`þ9\é’¡wt\Âñ„','',0,'?'),(_binary 'Ln Ê†¾7?\É3+\nû','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/tag-list/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!¨S\ÈR·Õ±e\ä\Ô}8þQ.',_binary 'k\î\ß#\ÉLŸW*r®­º±>Š°\ã\ìn¹%F+Q\×\Ö8','',0,'?'),(_binary 'LD\ÛÈ‘X|k\íZSEM¿','wp-content/plugins/woocommerce/assets/css/network-order-widget.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\2R\ëf‘\ÇYô\'q.@',_binary 'vZTh#ºD\Û<f•+\îFYŒbœ¸©z¢I!\Ì{Î³¸x','',0,'?'),(_binary 'LVb\'µÙQâ¶]\Ð','wp-content/themes/flatsome/inc/admin/customizer/img/product-box-center.svg',0,_binary '\Ö4(;:›¡C«¥ù…=WŽŽ',_binary '\Ö4(;:›¡C«¥ù…=WŽŽ',_binary '1Pe\àX\Ý9\Ù×¸KÈŠNp†¼•+\ÌÁƒÊƒ@­^Ô¾K','',0,'?'),(_binary 'L<#³ó†\Z\Ò\á¼\Ó\Ü}','wp-includes/js/tinymce/skins/lightgray/img/loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9K¯\Ã\ÌMû:\äŒTf•9',_binary 'öñ;‘´ÀT‹¥O`(6\Ì\Ø,Àsk†Z‹ûc\ØR\Å˜+','',0,'?'),(_binary 'L#>\ï¥4x¿\Õ Þ¸Cu','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/globe.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¶£RcY6›\Ù*žÎ¿Qóù',_binary 'þ4€\êXºø©Ž²ü–š­r³\'2ô…\í@cÜ €Ñ¥À¬','',0,'?'),(_binary 'L#\Ö¬/Û°*\Ìø3ò\Ò\ì\r','wp-admin/includes/class-wp-terms-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\Ãþ;I%8)(öN­j\Þhû',_binary '7’~¦C‘quk\ß\Æ)j» p­¥\å\ÇA\áC—•ª«\ç]#Â½','',0,'?'),(_binary 'L(š“1+X6-ñda ¿','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­\Ì@5´\à$\Äuoúa \Ö',_binary '…¸À\èN8fý›©?l«\êû}\ï§i­\Zn¼p†\ßø}','',0,'?'),(_binary 'L(\Êý¢nø9[2ÀC6\åš','wp-includes/js/zxcvbn-async.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÆðE\Õ\çŸ\nO\\\é\ÊYb',_binary '…\Ò\'FP\ä\Z¨/G\n“\àJ·¦ˆ\ë§\\Bõž\Z®ˆIT’','',0,'?'),(_binary 'L2}\èT2¾…H\Õû¼Šµ\Ý','wp-content/plugins/woocommerce/src/Internal/Admin/Events.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\ÈQufP÷\Ýl‘&Sõ• M',_binary '#\àuõ,\ÚE}\Ø\à\"š\×.b[°…B]V©\Ì\Z³’¹+q\Ñ','',0,'?'),(_binary 'L:/#\"Ñ¯fpÚ·›Ã¥Y','wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-c.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2p\åf\ç\Õ{É¡¼\è‹\ë\Ï',_binary '.‡ðP\éùAŠ\Éö\Z|¾(W\Æ@]‘üq±\Å\ÉnAm\Êp\Ýú','',0,'?'),(_binary 'L@\Ñ[›×zó“ \ï\Ç|_-','wp-content/plugins/ti-woocommerce-wishlist/assets/css/public-rtl.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÅŒÝ™\å¤û3€¹¥\ÚÚ‰1\×',_binary '°¡º‚Ã¥€†ô\Ê)U0®m¯´%®XŽw\0\Ï\Ê','',0,'?'),(_binary 'LF.•\Ê\ÛO‰þ. ±','wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-seventeen.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–2R\r­b/ƒ~m¾‹±}',_binary 'w¸mÀ`Ÿ\Ør\á­\\S9\Ï%ø\r“ºý\äW¬¶rm|p4º','',0,'?'),(_binary 'LLGš=Z\É0Cù‰\'Pu','wp-content/plugins/woocommerce/assets/css/woocommerce-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ\Ãõ\É\á¾\r\ÅÎ·¥÷›C',_binary '9ˆU\è”\ËWšýü¼¤Eø²U¥@þp¬Qy\Ô\í\Ü!º','',0,'?'),(_binary 'LQ—4\ìü\\\ÝJ;\ïC+‘7','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-ar.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±L¹\ãr\ÖQüø³®\Ò?',_binary 'œ–{\×\ÅÒ¤\Ö\Ñö\ì).±^c¬ƒ“\Ãþ¨úOU÷Q\ÇZ7','',0,'?'),(_binary 'LR7Q¼\äToG|\Ä{','wp-content/plugins/wordfence/lib/viewFullActivityLog.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\\™œF\r\êv›Cõ',_binary 'óƒ’X¹74ñù¦u\rt{½œMl×„‰¥qT}\Ô\êð¼','',0,'?'),(_binary 'LYH¹ú}º?c_—\È\n','wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/options.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±y•;!Vù»\\ª¼Q\íð³ù',_binary 'ýˆ¥1’\àg\Ü\Ù\è\îžG£§\Ú\ÒhXb†p‡¥l—þ´½','',0,'?'),(_binary 'LaL*\Ä.;ñ\Ô\Ög½\ãõŒ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/payment-methods/event-emit.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S«]½\ê†w[õ\í`',_binary '¯\ÛLWo\\f“Hÿ»\0€~0\rÀWû.™%\ä\íØµS\ã;\ë','',0,'?'),(_binary 'Lap•²8gôV\ã,¾\æg\Û','wp-includes/js/dist/vendor/react-dom.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»\Ñ<¬9¼·Ž7\Ú¾\ÌY',_binary '©c¦€\Z\È\á6‘eÔ„\Þ/,™^4_\Ç\\¦g³ª','',0,'?'),(_binary 'Lc’n=Ç¯€\ÅY·~MˆX','wp-content/themes/flatsome/inc/widgets/widget-upsell.php',0,_binary 'HpB‚ƒõ¯µ”‰V} K',_binary 'HpB‚ƒõ¯µ”‰V} K',_binary 'Ác\éý™úß«ö“\Ðé‘›l01p§b’Å¼8eL\Ô','',0,'?'),(_binary 'Ld‡h\Æ?»Ú†?•[ô','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/amex.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}X\ß\Õ4\ãf­Á&ë«\Ô\à',_binary 'T=¬\ìx\ífÑ´nQW—/®R\á­.ê–¾\æó8$¨','',0,'?'),(_binary 'LsÐ‡Å›\n²c}>ÿK—‡','wp-includes/css/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡H;£\ëa.@\Í\Î\Å\ä\Ñ\æG',_binary '#!q\Ïaz\È_\ìº\ê0 nÖ±t r\ç€&W\rK\Þr¿','',0,'?'),(_binary 'Lw+„\É$ó4|‹ns\Õw','wp-content/themes/twentynineteen/template-parts/content/content-none.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PŸûP>-\ë\Äfƒ«?\Ô',_binary '@u\â |-\í\ZK\Zbk…^¦\á¥R4hM\àÎ¨»‰““','',0,'?'),(_binary 'Ly\ÒUN\ß\Úu¡°@‹ï»µ¼','wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nž±õ:ûZí¯sœ†w8',_binary 'ú_\ÚV¢\áôµ-š\Ñ\ïùü§ÀÇ¦÷\è\ÔH¿\êXÈ˜>','',0,'?'),(_binary 'Lzù\Ð\ïZ\Ñüø#<','wp-includes/class-wp-locale-switcher.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ë\Ã\"\Æ?\ÏF´w,\èT\Æò',_binary '!@Bù\Ó<6¿ê’\ÂKu\ê\ßPm=®ƒ+¯/c_\ë','',0,'?'),(_binary 'L|½\Ùew\ÃEC\r\ëò³”)À','wp-content/plugins/woocommerce/templates/myaccount/form-add-payment-method.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P([®…{xd\0/xAj¡',_binary '5‹P\Û\æÏ™‰)¬<Vš‘Ú“ ¼Iñz§T‘Û·†c','',0,'?'),(_binary 'Lö\Ì!Œ±z¼mxw\Ô','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…9\\0&%‡cf©G\Äý\è\Ø',_binary 'hr€\n]nŸùi\ë»zZ\ã¨h6„õd\í\Ïq\á\Ò\\u','',0,'?'),(_binary 'L‡õ\é\Èbi\é6$\ÅDu4´7','wp-content/plugins/products-compare-for-woocommerce/berocket/languages/BeRocket_domain-ru_RU.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';„Ô¦ý`¹õX\×IøÀ\ì',_binary '|e–``\Ë,~Œ7\0¨A\\Q#×ªX¤ýZò¯\n€ac±\Ó','',0,'?'),(_binary 'L–ó‰Õ»Ë»vMlW«ždœ','wp-includes/blocks/pullquote/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']o\Ý\Ëa¤©!\'\ËÁ',_binary 'OJg­I}Ol\n4?k¹aœ¼W‘K÷!o\â\êQ±†','',0,'?'),(_binary 'L¦”8}U«4.\ÍbK\Ì4Q','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PantheonInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	Î´Ñµ3øl\î]\Ø\r¥üE\ï',_binary 'Né«¼³‡”U³˜P}\Ä\'!7o\Öþÿ‹møš-)~','',0,'?'),(_binary 'L¯¿@$ó‰+¨ús\Ê','wp-content/themes/flatsome/woocommerce/single-product/layouts/product-left-sidebar-full.php',0,_binary 'a<þ÷\Í\äqš\ÌI¸j±)',_binary 'a<þ÷\Í\äqš\ÌI¸j±)',_binary '\îHO®ûK7\'\á•\Ü\ìT›$õ.úØ¿Ùƒ‚•\"f\í','',0,'?'),(_binary 'L¶c\Ó\í®øúÊ¬\Þ\ä\\<','wp-content/plugins/ti-woocommerce-wishlist/includes/api/yoasti18n/i18n-module-wordpressorg.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿~>¶`øPz\ã\Ù\Ñ=¢~¾',_binary 'p˜´ª–¦\ã3ˆÁw`B\Ü;úþ„w4:J>\Ùh¦O‰T}0','',0,'?'),(_binary 'L¸G7M\èA ;U	Žr','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-multicolor.php',0,_binary '7žb #»\ÂƒÍšu]}',_binary '7žb #»\ÂƒÍšu]}',_binary '•ý&Ñ’Ò·§hI°ª¥Gûˆaü\ÇK\ã\á\Ò\è>S\ìsÝ‰','',0,'?'),(_binary 'L½¿\ÔLSE”¬7Oo','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/AddFirstProduct.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`p6”¢\È\Ós=`\äª/',_binary '\ï—\á)‰úÁ¸©1#­g\Üz\à— ³³#4w\n\Z2D=5','',0,'?'),(_binary 'LÁ@«\Ý}6E\Ék™!É‘','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/icons-overview.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'È›7\å\çŒ\r\Ë~s_\ÇÁ”',_binary 'R¯u··\Ör90¢ðNbóˆž]\É\æªYÎŽ˜H™\Ú','',0,'?'),(_binary 'LÁA¿\Ô9H­`»ë›˜\Ù\ê©','wp-content/plugins/woocommerce/includes/admin/settings/views/html-keys-edit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zd­2–ŠƒHM\"F?j',_binary ':\ß\ÕY/¦a=ò_”)}x’e?gQÛ¤k\Ü]\'#\ëÅ²','',0,'?'),(_binary 'L\ÂŠe¡t\"pc(	’e\Ç','wp-includes/wp-db.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\Ä\' §ôŠ{ÿ[t',_binary '=\ë†\Å\Ë\Åh!þ\Ê|UžÇ¸\ÛÓ˜’ä‡§Á»B\Øu','',0,'?'),(_binary 'L\Â\ß\ï·E¦\ïg\Ïý\â\ÖF9','wp-includes/blocks/post-featured-image/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0£{\ZY—”\Ý):ƒ¥\ç_\Ö',_binary 'þkžlžn…\×ù\á \0\èÁ\æ[\0ÿ\Z¤?$©¶\Ïý…','',0,'?'),(_binary 'L\Ég¶)‡¦·*•\ÂUÁE\Ô','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ò\é°\×L°ˆ\ÏýŠ—JM',_binary 'V\n»¸\Ë#\nõA†@,c]:ú¤a# ™†a­Œ\n&¹7','',0,'?'),(_binary 'LÍ¥8ºK\êù8/\Ì\ì8\æ´r','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/shared-attributes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	[ø(yÌ£®D\r¡fø	h',_binary '\Ç~\çDº\Å>§-ú“[¹¦ÁFKñKFš×‹/\Û\îL\Å','',0,'?'),(_binary 'L\Î\å¿7†{¸\æA\á‡\èv','wp-content/plugins/yith-woocommerce-wishlist/includes/data-stores/class-yith-wcwl-wishlist-data-store.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\Ï\Ñ	Nð/ÁN¦\ß\à˜-EA',_binary '+ÒˆT	0%ôK\æ^\éÎ²¢2\0·‹\\#6Lµ—d‰\ël','',0,'?'),(_binary 'L\Ð\çe\èZ\ÙF›%\äÃ©•','wp-content/plugins/woocommerce/includes/interfaces/class-wc-object-data-store-interface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ð¦5‰‹\Ö,P\âJ',_binary '§’ýÁ‰\Z…\èA7\rp\Þ}\é\áy[ö\Ñ+ô\æZJ\Ìøc3','',0,'?'),(_binary 'L\àÀ\r\æ%\Â\Â{®·','wp-includes/blocks/social-link/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M58øp9ˆ\Ñ\ï_uCZ',_binary 'Dû\Ìý®–-{A”Ÿ>&u¢ô\Þ%2 \îh\èŽ·L','',0,'?'),(_binary 'L\áPN\ÂÑµ?”WF8\ß','wp-content/plugins/woocommerce/src/Admin/API/Reports/Coupons/Stats/Query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Yÿ_¡„&t\êÐ§\Ú?¨\Ù',_binary '¬9:ˆyd~˜Ñ€ø\å\Ò6^u™e\Ô:ÿ\á&\åÔ’Òµc','',0,'?'),(_binary 'L\ã.ô!Ý¾i3.<ôÿOH','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/utils.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤–H¸l¯Rk‡{2(\ÎL',_binary 'L²l(b\Å\ê\\¹|\ïù¦ÿ¶q\áŒ\ÂÆœþ¶_Á¨Zˆ','',0,'?'),(_binary 'L\æ¿\r¡†È¦:\Õ\ènòh\'','wp-content/plugins/akismet/_inc/akismet.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ï„½±nfº¦¤â‚µ¡ù²',_binary '\ß®_s\Ü3¼\Ê\æœo\é\\õñ3úO þO­I?Iœ^‰_T','',0,'?'),(_binary 'L\ìÏ–\0÷y\"P\í\Í','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^“S;ùxW¨6œ-\'Fv3',_binary 'þ³]]þ¥U¹\Ó\Åú\Ç[\Û0u³oTý\\Pýõº•nšŸ','',0,'?'),(_binary 'L\ì@\Æ\×og©\ßH«	\r','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/support/class-otgs-installer-connection-test-ajax.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'øDJ¯DšM?T\×0U',_binary '\Ú\Â½»\Õ-¹tVˆ#œY\îGgKŒ›ùE¸ti<%B','',0,'?'),(_binary 'Lï¬+q¹V\Ê;—h\Ð\ËY•','wp-includes/fonts/dashicons.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M¶¬¡N:\Â\Ò\'\åÊ¤·\ÛÈ¹',_binary 'Jó˜!Š¯\É\ËXLl`’eþ\ÃO¯\ì°s\ÐH¹‰¸\ãƒ','',0,'?'),(_binary 'Lñ>t™õšNÿˆ†‹\Ý','wp-admin/css/colors/blue/colors.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eG\ÜBH\èI\Þ\ï×Æ–ŒS',_binary '†¹Å’’µû†ƒSÆ†òtrÉ…{\ß[o<o¾ü“Tª\è&','',0,'?'),(_binary 'Ló\Ú\ßÁD©†:`º*ñ…L','wp-content/plugins/woocommerce-multilingual/templates/removed-cart-items.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZiÝ’¡B\ÝÝŠ£÷Cõt',_binary '\Ú5±YõA¢E—\ë66Ÿ \ÌC\ÖÎ£VA\îK—lK\Í','',0,'?'),(_binary 'LöÐŠtÆ³ÛŽq{\î\âŸB','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OÃYõ,‡\\Ÿ®-\Zñ*',_binary 'V#›|q1V\îü×-\Ê(\ã\ß#‚‘òô\ÕØ®3-','',0,'?'),(_binary 'L÷…)\Ñ\Ùa$­D-\ïÓ®ªJ','wp-includes/js/tinymce/plugins/wplink/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm¾‘3\Ñ÷\ë\ÔÜ–3þóŸ¤M',_binary 'z\ÇN\'A¥%\ÄS“˜@4ùU\Ú\Õ\ÆBD™¨®qö’¤ ','',0,'?'),(_binary 'Lø|ñ `^EšU\ÊD ','wp-content/plugins/woocommerce/packages/action-scheduler/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ü\ÌS5ß‘\æ\îÜ„–Ð» ',_binary 'ñ\nõ‹ š\ên\é.ÿg$À÷¾¶X˜u,\ë\Ô\n^\ß†5¶¸','',0,'?'),(_binary 'M\0ðx¸“h\é\ÄJ~÷¸\ê','wp-content/themes/flatsome/inc/builder/shortcodes/ux_gallery.php',0,_binary 'H3 \Ñ\çý·\Ëc‰v\Øù~)',_binary 'H3 \Ñ\çý·\Ëc‰v\Øù~)',_binary 'C#T<ýhº&¾\ß{\ÉF\Øó\Âk:X\ëH¶÷\'\å:4o','',0,'?'),(_binary 'M	;5ñNbOõ¯\Zh\'}!','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/languages/yith-plugin-fw.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q+Yƒú…÷Á\ê\è\Ð\á\éK',_binary '\Ç\Äô P¢;\Þj%KP‹\0r’S\î^öYE]3ÑH\æ\Î`','',0,'?'),(_binary 'Mx1Ç‹Tm¾R_2o','wp-content/plugins/wordfence/views/dashboard/global-status.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ë«\'½m\Ì`£0>ð+#¢\Î',_binary 'úœœ\Þð\ç\æ˜\Ã\ÄpûøÁ³\çPv?Z\ÇF²\êQQcj','',0,'?'),(_binary 'Mùr\éfŽ~\ßqÃš$`&\Ã','wp-content/plugins/yith-woocommerce-compare/includes/class.yith-woocompare-admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ê„M\èH³ƒ\Èû{ÔµyN',_binary ' \Ãt\Â`4\Ê>£þeÖ§£zBYq®IÓ«¨mb¹Gl¸6','',0,'?'),(_binary 'M«`\r¥_¯\ßVk‘ý(\n','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/SellingOnlineCourses.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'òKŸuÖœ†³¨¿õ\Öüý­†',_binary '\í7¦fr\Z…‹y\\a>\ít›“\êg/£T¥“©J1®ö','',0,'?'),(_binary 'M [w¥j—Qÿu~º\ãŠ','wp-content/themes/flatsome/inc/shortcodes/ux_slider.php',0,_binary 's\Ä\ÙÐ¹~¸\Æ\"\à[­¼',_binary 's\Ä\ÙÐ¹~¸\Æ\"\à[­¼',_binary 'œ€š\á¸d“½Ÿ÷³},{C’\ÈÂ£_\Ä#t\è\ïD\ß','',0,'?'),(_binary 'M)’hÀ¦SÛŽs¡‚C','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/attribute-filter-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{ñg\Z\àU\íz”†\ÍZ\'X³',_binary ' À?\Z\Ü\Ù\\*\Ð\ì\n‚JÍ¬–;Š\íÀ¿¡œ¿','',0,'?'),(_binary 'M.S{Ž\×\ÄR	\Óf²“','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-tag/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Eï°†p\Ë\'ƒ\nH\ÒQN\â',_binary ';v\Ò \Ú\05TS¦ù1\ìx†ŸƒU\æ\Þlø\ÏkE8\ni†','',0,'?'),(_binary 'M1\Ò\Ú/ªn§\íÌ–Q‡ ','wp-includes/css/dist/components/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥=ÿÃ™\0E‰:\ÈxýZ',_binary '{j\ÝlóM\ä\r	\Ãþ‘,H]	\éƒcñ¸\Ò[|¦dƒ\Ñ','',0,'?'),(_binary 'M?,5\Ø*\îó\Éú\ÜK*\Åf','wp-admin/js/post.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’ˆ\r§Ÿ³\n\Æ[Y',_binary '\"¶\í¿	4ÃŠ\ál´\ÉºŒ?~7\Ô<ý\ÂÍ…>k.S	','',0,'?'),(_binary 'MM*/›¿~—–\á~‹\rW','wp-content/plugins/yith-woocommerce-wishlist/assets/css/admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ñv¥E\ßþƒH>ˆ',_binary '2\ß&Ÿ \ÅgG¾üú;º\n\Í&fl•ÝŠR?µ\í\Å%','',0,'?'),(_binary 'MN„_\0Tøhª¯\ÄN+qÁ','wp-content/plugins/woocommerce-currency-switcher/js/chosen/chosen.jquery.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\âòž\Ì\çM¶IGcamF©0',_binary '—Š/*\ÛYÎ¶\ãõ\rù¡Lµ¼\Û\ë\ãð.=IK8¯{\Ùaÿ','',0,'?'),(_binary 'MW€	\å¦¾:\É\ä˜ÙŠ','wp-admin/images/align-none.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñ­eqd2 ¡\Úu‘¥\Âñ\r',_binary '¤g(¸1†X\ã¤{† [].¡üT‚Ž¡“A\Ù\Äõ','',0,'?'),(_binary 'MYŒñGˆ°\\tXû„’/','wp-includes/customize/class-wp-customize-color-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·&µ»S?\ã…\ã³|ñôG',_binary 'h	\Â3|:Q9z€­ò4Y1[\É{^¸	$;¤#šq¨\Ð','',0,'?'),(_binary 'MZnœ\ä|/1\Ä\Ém9e\Â','wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-plugin-info.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×4&\Z¬C±sC1',_binary '\ÚdNSÑª\ÌflbÎ§b‰!\ëœ·§HH5/·\"ÏŽ','',0,'?'),(_binary 'M^.¯üŒ¤ÁÀòh\È¾\Ä','wp-content/plugins/contact-form-7/load.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²\à \îuš6\íBõ\Ç[eo',_binary '?”h“\ë÷[\Ô\Êr ·%%\ãÛ©+ðÁc7ÿ:\ã','',0,'?'),(_binary 'M^Ioºo+óIR±r\Øzx','wp-content/themes/flatsome/inc/builder/core/server/src/Elements/ElementOption.php',0,_binary 'l\å\Îj¢x¯ø—O¢4k',_binary 'l\å\Îj¢x¯ø—O¢4k',_binary '¡ƒ†\nÿˆæ¡‹šCšö\ßP\Â»ƒ³\Û~dÿÁ÷\ã9.','',0,'?'),(_binary 'Me\Ûf”Ç´†ÀØ±Œ<K','wp-content/themes/flatsome/template-parts/footer/footer-transparent.php',0,_binary '­þy#; ŠxN…I',_binary '­þy#; ŠxN…I',_binary '^¿–…™/Uü	)b£ÿl’\ç-L\áOQ)A“®ªË€Ž','',0,'?'),(_binary 'Mo\È%‚\áóøS§\0Xx\r','wp-content/themes/flatsome/inc/admin/advanced/assets/js/cookie.js',0,_binary 'Ô¦&ªðÀJ\nE\Êb\Ë	',_binary 'Ô¦&ªðÀJ\nE\Êb\Ë	',_binary '²\Âüœ:_o^Bªt_û™÷›X5JÜ®¿)\ÛÈˆ\Õõ','',0,'?'),(_binary 'Mv\ÐU–%LÒµ‰›´²\àm','wp-includes/blocks/navigation/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\è‘Ñ¦Ÿ\Ë\înþ–$z\Ë\Û',_binary 'PŽ—ñ¶\àö\ÍDv\ïŸ±\æ\ê2\íP]¹.*5‘\ÄH\×<','',0,'?'),(_binary 'M~[X³ú\Üñ\']\à„ï¤¿','wp-content/plugins/woocommerce-multilingual/classes/class-wcml-admin-cookie.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\ÆA%£n¸÷\ÅÛ °Ü‚g',_binary 'k#T0m)9¾	IþJfñ\æ¢\îõ¦§”Yi>$ðš\×j¤\Ý','',0,'?'),(_binary 'M‚•˜þ9jq–J¾ž\ä_¸','wp-content/plugins/woocommerce/src/Internal/DependencyManagement/ServiceProviders/OrdersDataStoreServiceProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\á\ZQ«{:\n4\Ûv®·ª‘\ÚU',_binary 'K´\ì¤\Æ\0\Óy7Ÿ¾ô[Y‡±IUU ë²¬\íX\'','',0,'?'),(_binary 'M™\â¡\î\Ã2—¤\æ\â\È\îº','wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/sofort.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\æ?šM”ï”¨öR¸´|',_binary '{V?bjj<žkyx\Ü¶\é<¡3ó¢‚‹®y\êY\ÏÈ','',0,'?'),(_binary 'M\Ô¨—+wôexõ#)‚','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-line-items-block/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬+gN‹<Ÿ\ÞF#—',_binary 'ð	f÷“\Õ\çØ¤³Y£nÑ€J ¶#”\ÇQ_¤@žL¶d','',0,'?'),(_binary 'M¥3þüOšB\Å\å','wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/print-shipping-label-banner.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\ÜG2˜c\ã\ØÀµM8I',_binary '¨\í-¦\êk\ËÁc\Ò6œ¦-ñ4AQ\×\âò\Ö8¶§\ÝT','',0,'?'),(_binary 'MµsU\áøR0#}7a?W','wp-content/plugins/woocommerce-multilingual/inc/currencies/class-wcml-multi-currency.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ë\æ%^!YŽ÷ï—·mø3d',_binary '\ê,	ó§wojîœ¦D\ìPw`¯yLo\Ò\Çj%`','',0,'?'),(_binary 'M¹V_3«ýG\è/\ã•]f6','wp-content/plugins/woocommerce/packages/woocommerce-blocks/global.d.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õöÁýï¾®ÍœZ\Öú;$',_binary '°xò\ÃÒ½\Þ)#\í<\è…\'FSŸN1¦n`vi5yy\'¡\Ú','',0,'?'),(_binary 'M\Ì>û\ê”qŸ§\ç15ýœI','wp-content/themes/flatsome/inc/admin/customizer/img/portfolio-shade.svg',0,_binary '\ãw›ø\ïÙ›•o`y·»Vo',_binary '\ãw›ø\ïÙ›•o`y·»Vo',_binary ':\ç0KlŸ&H5\×Y\\|öó!MQ\n·\ç²%“ñ®','',0,'?'),(_binary 'MÐ \0šAŸª»9Q\Þ+ \Í','wp-includes/js/admin-bar.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹áˆ‡\ã™n°&­a1a\0',_binary '(L‚ø<…—ø£Kùi§-¼“U4\ÝWÜ¸` ¯Žrl$º','',0,'?'),(_binary 'M\Ò\'\ås1I)ò/Ãž¶x','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`	\Ú=\Û{¥³`F˜\ZG7',_binary 'c6\Õy ó)ö‡‹µ\Õ\ÌSº\Ò\êº‰Šq![d\îkúmø','',0,'?'),(_binary 'M\Ø–\0Ô¿\Êzv½®ð','wp-content/plugins/woocommerce-currency-switcher/js/sd/front-cache.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬\Ø\Ó\Ó\Èö!\Æ\ÞÖš^PÉ\n',_binary 'ymhº=\Ø”û·¿½\Äxƒ\ëd\ã\Ãdc«a\á%\æ¿','',0,'?'),(_binary 'M\âjmQ\È%p\ír~\0C\Ð\n\Ì','wp-content/plugins/woocommerce/assets/client/admin/wcpay-payment-welcome-page/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\Ô\æõ#\å\ÑqÌ¿¯“e',_binary 'õ¯ yÓ¿äª’4TdZ‚\áL(XRxµý…9%¤\Ö\0','',0,'?'),(_binary 'M\å;C\å\Ì\Ï\Õ\Õ8Yyï²','wp-includes/js/twemoji.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\á	!AÖ—ô//x4\î\ß',_binary 'gs‡!ûW¾-.?\Âwh\Î\åN©õKÿIt®{¦÷|','',0,'?'),(_binary 'M\î´)Ä£Ô„\ÛoDb#\\u','wp-content/themes/flatsome/template-parts/header/partials/element-departments.php',0,_binary 'U¡µ0ˆ÷²´1!oŒp',_binary 'U¡µ0ˆ÷²´1!oŒp',_binary 'ZbG3¢\è`{v\\«ÿ¡ÒŒƒ7Xnþ“öZxn\"','',0,'?'),(_binary 'Mù<	Jfúÿ’[j”\äÕ¢','wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-nl_NL.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ò\çp*\ì\â;n\Ûv?t¯¢',_binary '“”N\Æ)g¶º®‰—¼‘1\ã¸W\æ&WIýß·\å5g&','',0,'?'),(_binary 'Mü\ÞwM€f©0ôb\\‚','wp-content/themes/twentytwentyone/assets/sass/05-blocks/preformatted/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\È[©²ÿ\àv\'\Úø\Ù2¶l',_binary 'üŽƒð«{ðªZ¿>„1k||‘}Pµ­ŸC®TC‹ A','',0,'?'),(_binary 'MüÁI‚M\Ô\ïüÀrDõ-','wp-includes/post-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾­°‹ \n\nL¦\ØÉŽ',_binary 'Ý®¯d±.\'G!\r\'MABITÈ­q1U\éË–ã«¶','',0,'?'),(_binary 'Mþ\êu±\ï\èÒ¤\å˜j\Âp','wp-content/plugins/woocommerce/includes/cli/class-wc-cli-tracker-command.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X}\ë¿üúYøž»i¨Bv\\',_binary '\Zûñpd‚\Ý\Z@\í\ÓÅ¯×B\'ºMo\ã¯	ª¿[:º\Å>òO','',0,'?'),(_binary 'Nüˆ\Ø#iÁtiv\Ô\Â(:','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/sidebar-right.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q]*¬.\Ë\ÂøV\ÝWÊŸ\Ù\î²',_binary '\ë*Cùl\Ã\Ò¤\àð™h¯{(\Ù\Åw¡¹ŽcÎ².†\Ì','',0,'?'),(_binary 'N\ÏË€…<’°\ß3ªýKµ´','wp-content/themes/flatsome/inc/admin/customizer/img/cart-icon-cart.svg',0,_binary 'K¦\ÒwÕ³ƒ\Ûü—ûz°j',_binary 'K¦\ÒwÕ³ƒ\Ûü—ûz°j',_binary '\r”~\Ýj\ry]\Â\íBs\ç%8;û\Æ\Ã1R\Ùx=|²;-','',0,'?'),(_binary 'Nù½¶?ˆ@•\Õ<\Ý\Âhm','wp-content/plugins/products-compare-for-woocommerce/style_templates/nice-blue/nice-blue.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\ÕØ§žb\'o#¢2E¶B',_binary '…\Â\Ô\Æú‚*¬\Ö[ù\è/¨\Ïð\Ì\Z‡7Z`†\ÚxE=Qš','',0,'?'),(_binary 'N\á\Þ:\ïb\â—\è\Ù\êA\Þ','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7´\ïù\å`¦e|5\Õ1ˆ\ä',_binary '\ÖÓƒ°µ\Z+oº\ÐØ¨`ó‹\ZNtý•¨\Ï\ën+D¦\Ô\ã','',0,'?'),(_binary 'Nö›q\ßÝ¯Vð-\Ü.L\Û','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Integrations/IntegrationInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9W\'†Ú\Ún\Çÿ\×%n',_binary 'ð1óZ\×Y‡Kü&\ä\äR‡[²´:_n/ì–›¬×»m´','',0,'?'),(_binary 'N j\ëel¬\ã\Òin^r','wp-content/themes/flatsome/inc/shortcodes/commons/border.php',0,_binary 'Ž\"±øo;?\n\Ö#\áTÂ´,',_binary 'Ž\"±øo;?\n\Ö#\áTÂ´,',_binary '_\é–\nOQ*”JUO¯\Ù0%(\Ü\\+\Ø\ß÷`ª\æž^]','',0,'?'),(_binary 'N\'†ö\Üg\Î\æ¹/.](L','wp-content/themes/twentytwentytwo/inc/patterns/footer-dark.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '² \ã8Dz˜šªC²\áÿ',_binary 'ÿHš.[ÿ¦gÌ€˜Ù\î\Òs\ÚrY*Rh\'?\ÕD©®c¯¿','',0,'?'),(_binary 'N)fr\Ã\ÙC\Z¯öÁvü³ü\í','wp-content/plugins/products-compare-for-woocommerce/berocket/includes/ico.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F¹±ŸEü\r+À\ÊU€THB',_binary 'þªŽ \Ó=°\Â\ã\Ël÷gýµ-z\Z\í§\Î+‘9rœj','',0,'?'),(_binary 'N7—A\ä´\0\ÂnnV¾Ö‘\í','wp-content/plugins/wordfence/images/checkbox.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"³\ÈG\rû6|ôˆ˜€\'',_binary 'ð‚y~`w(j\×~\Þ=ë¤¼&·ýÝ´Š\ß\ìQ>`^\Þx','',0,'?'),(_binary 'N=®f\Ð>$KŠ\ä\âH¼T\Î','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ç\Ó\ë‘?G{òõ¸ñg',_binary 'Ä€Ð <WŸ;-\Zñ€™¾—(C+¼,Mþ•\ÌU\â\áW6','',0,'?'),(_binary 'N>zshž%ªÜ¨ªý\è\Ð','wp-content/plugins/woocommerce-multilingual/templates/php/plugins-wrap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Í ‹‰Uþ\Ëp‡ö¼˜\ç',_binary '½ Â¹uº¥R$n\">Tq\äf\Ã eU\é\Çd\é\ï²Ã´„\Î','',0,'?'),(_binary 'N@ý\ÌÿŒú+C>“U','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-status.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U~&]H„—O{¥µ˜Ø³',_binary 'Dû$*˜Rr—\'²\ä\ÇÐ–¸gšBdV\Ã&jˆŠ(\Ó,T\Û','',0,'?'),(_binary 'NJ\È~\ãõD±&•Vp]±“\"','wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-server.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²Ÿ·‹NŸ\ÚNŸ<+õsˆ-p',_binary '|‹Œ§ˆ=1nsµG·\Ûde²‡ø‘—W€\nõeˆ\Õ\Ý”','',0,'?'),(_binary 'NP¸(a _jðL…u5”Z','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/form-step/test/__snapshots__/index.js.snap',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\r\Ï\Ês‡\Ã	(TxX',_binary ';(¾77\ç\0\Ä\å­Ð¿dqN?¸ÿ\íGø \ÄÛ\í\ã-\Ñ','',0,'?'),(_binary 'N_=„\É\Ú=Ó©\æ\Û\Ý','wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-invoice.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PþQ\â@¨ñÈº•öMŠ\Þ',_binary '\á…¨\Îœ‡&ZS¸kf5f\Ï\Îz0¬Õ`6¨@\íq','',0,'?'),(_binary 'N`²IñQŒ§‰\Ï_Ì»\'Š','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/store-snackbar-notices/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•yöˆˆ\ìŒ\Ò4ˆ\ám©		',_binary '.[£Í•û›0B)z\×L9©ŸeñUM\ï\\+\Ä\ÜÕ¨','',0,'?'),(_binary 'Ni\Å~	\Õ`ø\à®W°E','wp-content/plugins/wordfence/lib/wfAlerts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™Kù(A¬ž|ŠÏ¯y±ðL',_binary 'ô \'_Œ;?\á|US5d}K/+,I!|\Å\à®t','',0,'?'),(_binary 'Ns\ë¸z¬<\è0\\ Ô‰–\0','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/tag-list/save.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`?\èýÓ¥A~k\r÷¤',_binary 'û•P\ÝôRñ š3\Î\á\É=\ãr‘\ÂùSdù¨\ÛD\Õ\Ë','',0,'?'),(_binary 'N|þÂ‡JÐ²ªzn\×ösw','wp-includes/pluggable-deprecated.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@†¥\è\"•j\Òô£2ß–',_binary 'ú\ÄU\Û\Ñ\Ã=¦ˆ\Å\Çco\âò=t1\Î-\\\î\r÷=','',0,'?'),(_binary 'N„ü“¨ý\Ë\É\é4üs‡\r','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-express-payment-block/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6³\ä’S/•I-ƒS\á<',_binary '\ê\Ý6,LHF¢>œ\åŠ6_P‚ÿ¢B\0¢´\Ëù\Ø\Å\0’','',0,'?'),(_binary 'N3\Ýj@pu5“«¶¿^›†','wp-includes/js/tinymce/skins/wordpress/images/more.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ü·¼\Ô\n¼\nm\0;üË«\æz',_binary '$³v\ç\Úo^„²\ØU› ¿A\0\ëô:ò\\C¨u¿½','',0,'?'),(_binary 'N˜…*ò‘\Z\r-¨d¼?ý','wp-content/plugins/woocommerce/includes/tracks/class-wc-tracks-client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—oF±ñ[\ÑyAn\êŸýŽB',_binary ' \ây¯$\r†½ò´ÀI\Ë\ë~rLðž\'Ÿc ¤)­J','',0,'?'),(_binary 'N§z\Íè²š?Û†gk\î','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-shipping-method.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©\Ô¾DyœH\î°O\ÙÌ¿',_binary 'Å”\ÐnÍ¸™T9˜-u»/Á.œ\ÌKY÷Z¿\ÆM\Ôo\Ã','',0,'?'),(_binary 'N¸\å²\Ó#\ï\Ò6\Ýy30.','wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-product-bundles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×qóJqU\ÅÓ¬}§l',_binary '¢Câº•Š\Øz\×\0-\ê`\á\Ñ¼÷[s\á#1\Ø~dvG','',0,'?'),(_binary 'N\Âq–\'\ä!=°kXð1\Æxª','wp-content/plugins/ti-woocommerce-wishlist/assets/img/select_caret_t@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†–/‰ÀÏ°´#jqQª;T',_binary '·\0ƒ+Ìµ¸f¬ñß¥A¬Ð¯\\¬\áz\Z9th\Þ*','',0,'?'),(_binary 'N\ÎÀƒy~^\í\"\ç\í±\ÅY®U','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/express-payment-methods.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's&}¨m\Ö‰78\ÖH',_binary '‡ö¨´—\Zu$\È\ïöœT$DU\àœ½—¦ó{i¬D\Ç','',0,'?'),(_binary 'N\ÔOKŽ}¶•;>4bq\Ì\Ð','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/multi-colorpicker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PjY]5\ïYWD:,6¶',_binary '{\ÝqQþñ\æ.Q˜HI¾¿uò\Zh\0%^,™\Ç®É¬','',0,'?'),(_binary 'N\Ýîª‰²vÏ®´Qd\ï±þ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/register-components.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\è\Ôe\Ù\nS.‘G\á\Ú4º6\Ý',_binary '\"#u©žôÉ¦A¨R\êO”\à˜\êõ¼UjvS\î\ê\ÜV7','',0,'?'),(_binary 'N\æD\ÄÀ£·É»\å8Ã¢ö+\Â','wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-video.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­.ý?\Ï\0\ê\äI\Í\ß\Ëÿ™û\á',_binary '\É\é‘N9¬u´½\\h\ÝpGÑ¶‘\É>\Z†&”Ü\á\\','',0,'?'),(_binary 'NñeUx\í\nkÿ#WŽJ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/variable/variation-attributes/attribute-select-control.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±¬±©Q­Aaö{f\"Á\ç',_binary '™›Ÿ\r³(ðe\Ø,9-Ñ›\Âj*²&\\üªÓ‚gIª¬ó4«','',0,'?'),(_binary 'Nñ\ãþHVû®\Õõ}¶4G','wp-admin/css/customize-widgets-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Eq\È_\î\ã\Þú´U\í¯R',_binary '»\åQ.$\ÓJû±€%b³¨\È\î&M1a¢LñWÁmF`','',0,'?'),(_binary 'NôÀ»´UByša€\Ø \Ï\É','wp-includes/blocks/columns/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›ƒ(‰`\ÌFp”T1\nf\Ñ ',_binary 'S¸\'_­õx\èò\ë´\"‡U·gj¹~/Äº y\Ç<#\'±\ß\n°','',0,'?'),(_binary 'Nøt#\ÓË¬„ôø\á\Í-','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/country-input/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñ\âTx·1´žƒœ;wo¶',_binary '=\îS\\b\ß\Zh\ÃòFŠe\ãˆóL\Ö\í\n©Õ»œ¨¹\0','',0,'?'),(_binary 'Nÿ±a\È\Þâ¿™e]ó§“','wp-content/themes/twentytwentyone/assets/sass/05-blocks/columns/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Å\å”¤¾>?CzA‡',_binary '–’BX™öò\ÕV¸AÓ‹6¨4\Âö\ç‹\Ê/MkÁ\Èf¥','',0,'?'),(_binary 'O	‡\ÒS ý•\Ç#\ÅÿYiòv','wp-admin/includes/class-wp-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ù\á\îˆ]\"\æþSF™™',_binary 'J`!1Ï¹÷X\Ï\ÝL1\Ô\à8±µô»(ã”«qò|¬\ê}','',0,'?'),(_binary 'O„Ò½PT\í^•4~\Å\ÅB','wp-includes/css/dist/editor/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ýh„\Ã\Í1Všôj–*TµxS',_binary '¿ô\\%\Ò\Ø\"¾\ÓÿY¦H0\á_®M´²\Å3f\àÿ\ß!','',0,'?'),(_binary 'OÉ½\È\Än	la1=Yoº','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-wc-memberships.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Å\Ë¾Âžl\Z\0¯T–¹,jf',_binary '\Ïmu\ÙÁ§RÃ–÷e~M‚Iþ}\ä\0ÿñ‰?\Çmþ\0>','',0,'?'),(_binary 'O\Z\0m?Õ¯8!:¬\Z4.','wp-content/plugins/woocommerce-multilingual/classes/multi-currency/payment-gateways/class-wcml-payment-gateway.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's—.\"´až™kÀ\Ý	\Ë`o6',_binary 'ø\ÏU©kp;v\Z2$F„”ðª®´§˜;\Îs2)Â‚Pù\'','',0,'?'),(_binary 'O =(:\Ë\Ä<\á	\Þ1F¿','wp-includes/class-wp-feed-cache-transient.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†x¨\Ý?^î»¡>\ß³Oô',_binary ':˜\Ì;h\Ó!xE\Ôzû¯P+¦dV¤0—Žù¹Dµ','',0,'?'),(_binary 'O+ý­\Û[›IB÷Ž\Ém‰m\'','wp-content/plugins/wordfence/images/wf-central-logo.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\à(\Ï\ÅVÑ¤ª\ê®',_binary '\0{\rªß˜²J/\× ø^†+\áõ,\Î\ìS™\Ð½‹Ÿ\á','',0,'?'),(_binary 'O.­\Ùõ7Q}kB¶\ã','wp-content/plugins/woocommerce-multilingual/inc/currencies/class-wcml-multi-currency-reports.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®o·µ&;ƒù5ŒzŸ˜ˆ\Î',_binary '¡)+f™2[\ÙŒ<½35oõ¾+D<«‰\Ï\ß\'ŸF<','',0,'?'),(_binary 'O1ÖŸK€RÖ\Ï8Iv!','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-zh_CN.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ä\Ä#]\Ø\Î\Ü\Èœ4¹H',_binary 'Rýÿ-y€ªõ\ç©[v¼3ºtY\ã:\âM:J7Ž‰™','',0,'?'),(_binary 'O2É‚H\ï€\Þ\æ!Ö’ñœ[=','wp-includes/blocks/pattern/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ|ó±¨Ø¨‹\Ü,™\ç]—',_binary '\Äs’÷‡Pl€ð&:R`Y¼1\ÖOö\×\ïhÛ¾…\×','',0,'?'),(_binary 'O4‹Ç³WQ™\0”\ÒRø\ï','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>Çˆ­»©\"C\åixœü¹',_binary 'ðª\Ëxçœª!™¢Ÿ\Ä}ò—\Z¶…˜\Ê‚Wª¯ú\Ëd','',0,'?'),(_binary 'O=ü\Èh·\0}O\í\årL£b','wp-content/plugins/wordfence/vendor/composer/ca-bundle/src/CaBundle.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZšU÷¯~¼L5\Â@\ZVU',_binary '/§r\Ö\ìT„rm¬š¥\ØG­Ñ \rª%˜e\r\Ó\í|\âú[','',0,'?'),(_binary 'ON,R²>Ù\ç\áŠW¯õ','wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yith-dashboard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`7v>ðjiv^Y	6\ä¥',_binary '\ß\Õ\Åd\Ä\Z´+\àtþŽ;DP3ù\éduw¯</\Ø&½zù¬H','',0,'?'),(_binary 'OQ=\'kYÁ‰ŸŒƒ%¤\ÑO','wp-content/plugins/woocommerce/assets/css/privacy-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\èÈŠ,>Šù°…A¸¡',_binary '»™\Üû[IbÆ…Ug`¼Üª7–/ƒ4L\ÞÅ¶º\á“Ù¸7','',0,'?'),(_binary 'OS\ïY\ÓWz!8õÊ£j±','wp-content/plugins/wordfence/views/gdpr/banner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>6¢9!øG÷\Ùz®>òS',_binary 'ùZ¼Q\ÆaÌ¿ù|ê£ž`!ªC\Ð\è2C\ÊKµ%#ül¼','',0,'?'),(_binary 'O^}ks\\\ä³F¤ÿ\è8','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-reviews.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5±S\í$I–CAì°ŽH\\',_binary '·˜LhGFó\èMø9g÷\éh×š†\ÙzŸfZ]vÉ”','',0,'?'),(_binary 'Oa_¤¸b,„+\È7tg”^','wp-content/themes/twentytwentytwo/inc/patterns/header-centered-title-navigation-social.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\î,g~“UT`1ŸˆQÿ',_binary 'N\ÌEØµ—\ä\ßóxŸ]Ÿœ‘°d_ªaöžÜ¹\à±','',0,'?'),(_binary 'Of$Ÿ(DBAŒ\Å=À›','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/zh-CN.js',0,_binary '²´tn,©»_\ë§r\å',_binary '²´tn,©»_\ë§r\å',_binary 'ñ\Õ.\âü>Ú¸½Ã‰\çŸ\È`~@\Õ\ã\ê®¿dF\n‡ýb\ä','',0,'?'),(_binary 'OlqCcÛŽ\Ð\ï\Ö\Ê\ã\Ï\Ì\Ð\Í','wp-admin/css/forms-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_•ö´•ÎŽ{\îq˜ü¦\ç,',_binary 'L¤\ÐÒ¼\r\ÜC„‹\ZÒ‘³¯\Ï%\×ð\Ù™Ÿª(Žm÷bK/','',0,'?'),(_binary 'OtÃ¾\ç|°ÿò!a«†]','wp-includes/blocks/code/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?B\ìôùÉƒ„>‰\\¾-‚',_binary 'w£ùñ\ç\ê\àÃ«„YK\á\n¢aR„µ\ÓX´&øÑ¥V£','',0,'?'),(_binary 'Oy™}Ma\Íˆ_\Öú“I','wp-includes/Requests/Exception/HTTP/504.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Aµÿ¯ª\æ wj»Ñ™—9\Ô',_binary 'ù<¯˜£“!B¬|$k¨®¼Ýˆ # Œe¬i%0','',0,'?'),(_binary 'Ozòq\Ç\Î÷_Ty«Ÿ\Ón','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zones-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷vü­TJˆ(ãƒúH',_binary '„c‹\n/\Æv¢¨&²»¡\â@­ƒü\nøô\"øb—ºw’','',0,'?'),(_binary 'OGv\Þ\\ñ`û¢B†@o›','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-product-reviews-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' O½\ê™JñùT ö\ï\ÈM',_binary 'q!	/‡\0\Ç<s2\Ì-}<\ãÔ–0v\è$q„0[¨','',0,'?'),(_binary 'O‚æ½¼m$¸òž—Ý‹&_','wp-content/plugins/wordfence/modules/login-security/views/manage/deactivate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ð\Ï^\ãF\Ë\n÷D«ˆÒ­¯',_binary '2\"œÞ¡\ß4e‚\Ò\ÊKÓ—ƒp!w#½\ëñ¥\Ä1¬ø\ä,','',0,'?'),(_binary 'Oû\\©¢µP5\Ñ\Óÿ{¾R®','wp-admin/plugins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\"L\ÝV\â\Î3žB  ð²',_binary 'g¼Q@\'Bÿ\Ò1\ê\\`A/nÅ‚%ÿÐŒ}4¹˜9¸«®w,','',0,'?'),(_binary 'OŸ\Ã\ìþ¨„ÁR$\'‹-E','wp-content/themes/flatsome/inc/admin/envato_setup/envato_setup_init.php',0,_binary '¢\íz\r\Ü<\Ü÷¸¾j{&•\éP',_binary '¢\íz\r\Ü<\Ü÷¸¾j{&•\éP',_binary 'qfwi\"·\ng´¡<T|/ÄŒj\âL\ÃÁLú™ƒ','',0,'?'),(_binary 'O§ƒµ\à&\Ârè“•\ê ','wp-admin/freedoms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„$\Øæ½³„pˆ´\ç\ÉÏµÈ»',_binary 'À\"\ÉZ2\È\âTtW\Ý\ã[\Ï\îCµO!#ÁT\é,£¿\ß','',0,'?'),(_binary 'O¬¬ú³R¯r¾©£\èD•?—','wp-admin/js/postbox.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥\Òbˆ‚\áÀˆJ“\â«z%p',_binary '†qG%`\Ú3E÷:j~^\ZÒŒ¾õ;,ó','',0,'?'),(_binary 'O°^/°–÷pj¸£B—5','wp-content/plugins/woocommerce-multilingual/classes/multi-currency/geolocation/GeolocationFrontendHooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŒÓ²ž¾\\B<•F\Ù',_binary 'Fñ\\\Ú\Þi\îù¡j•!5e\ÙHþ\Ö\í--\êO¸‘¦\Ã2\Ì;\Ò','',0,'?'),(_binary 'O½1‚\É>vxÉž b7d','wp-content/plugins/woocommerce/assets/client/admin/chunks/analytics-report-products.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r¤ù\ÙÛ²\Ó÷û“l¨b\Ñ',_binary 'ò™Xd8_kc7\äM\ç\ÚL\ç¦w*¨~b\î¤\ÂÂ˜L0L','',0,'?'),(_binary 'OÄ€H…\ã\ë:÷C« f\Ê','wp-content/plugins/yith-woocommerce-wishlist/assets/css/unminified/font-awesome.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ä•eHix[\Ã\ß`!fJ\Ñ',_binary '°¬\Ú\ç¨}ø\ÍË¹t$­\È)\ÃÊ¦»’Pñü1À~Ü€ú\Ù','',0,'?'),(_binary 'O\Ïå™\ÕqÚ·:/)£À','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-debug-info.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U&4ø.r\Ö\0P\ê`\Ég&',_binary 'og»N	ûÁ‡\Ìú\íú@I\ç˜V\ìÁ\Zi\ËV{ÆˆM“±U','',0,'?'),(_binary 'O\ÔÃ¼\Îq\Êj(½ûŒˆ\ÂV;','wp-content/plugins/woocommerce/src/Admin/Notes/NoteTraits.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«ð+\ËLc\Z\0E:FI¾\Ñ\ß',_binary '	qR\Ærhñ\âJ\Åý\Ô$\ÞW\Z´ˆõôžü{=£`6¯¬','',0,'?'),(_binary 'O\Õ-\Çº6.`¤\ÅC\â','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-data-continents-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•\àû$ø(MÍ‰\Z\à\Ì\ä˜\Æ\Ä',_binary 'õdÀñ·#_˜c G\îü\ê\åª#3\\L|D\ÊðF\æ','',0,'?'),(_binary 'O\Ú3\"B&µ\Ê^(®w©ùj\ë','wp-content/themes/flatsome/woocommerce/single-product/title.php',0,_binary ';h\'Ó˜Â‹A)«µ”g\ïõ',_binary ';h\'Ó˜Â‹A)«µ”g\ïõ',_binary 'B’Þ¶¨Å»\íÁZ·ÉŒP2;\Äú’ W˜·$s','',0,'?'),(_binary 'O\áû\Æ\Õ\Þy ®ýk	b±','wp-admin/css/customize-nav-menus-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\âJ\ï\ìv\Ï\Ï~ö¼·•',_binary '¿™S\Èš\Ím™ŽV,\âHüY	\é7.J¼]!\ÚYš','',0,'?'),(_binary 'O\å\ë\Ï\Ì\åHI!K!0[\Ú','wp-content/plugins/wordfence/lib/menu_scanner_options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/€ú\Ì\á\ßDôX\Ò;üI',_binary '£‰\ÈC\Þ&YB—p_d$€,+†—ý†•’Åœ\Ô\Ê\ÇJ€¾','',0,'?'),(_binary 'O\ç\î€]´…«R\èØ†¬\Ä','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/sub-tabs-nav.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ôr\îjfH/\ÞÛ‰¶\Ö~§',_binary 'B¯`¯ˆž\Ü¬CcØƒ®[¾\ÊÍ¬°\æu\Ê5rU\ì^','',0,'?'),(_binary 'O\í5e\Ì\î\î;hz—w@’W','wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Metadata.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'šZ<º†\æ‰\Ç{~G\á¢f(',_binary '\çó´,×‘[\Z¯£\Öú@¿+\ê\Ö\Â?x³’\ãP\Ó\ÝÐ§','',0,'?'),(_binary 'O\î­@\ê=¨\ÜA\í?qž\ì¬','wp-content/plugins/woocommerce/templates/emails/plain/customer-refunded-order.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r¾\Ð\ïžv^\í4Ia8',_binary '\Ã*ÂX2™ˆ\ËSd`ñ*¦?Tò\É.X!U³÷¤!','',0,'?'),(_binary 'Oñ»\ßO\àM_K7\Âùnš\á','wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\r¸g`‰“röô‡./ )J',_binary ')µ‚)\r’ ˜-ùâŸ©\Ãb¾Ä±\ÈÅ‘]ø¢¢J','',0,'?'),(_binary 'Oùlv9žµò¶\ë\ÑNš8M$','wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-pointers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':Q\Ð\0\ß\ÑWž”{S+«š~À',_binary 'Nž6b¯»\Ã8W\ß%u˜\"\ÕÙ“sM\î•‰i\ìXŒn','',0,'?'),(_binary 'Oüœ~.\ZT;y 9b\Þ\Ç','wp-content/plugins/woocommerce-currency-switcher/img/help.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õQ5j«l)“¢\r)·¹',_binary '¤\Õ\Ì-\0~k–ˆôH¤?»¦p/IÓ´\Ûñ- \Êf\Ö.Q','',0,'?'),(_binary 'Oþhu²G¯ý\á²&\0\ïLÿ','wp-includes/Text/Diff/Engine/native.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯Sö\Õ„\r“ž$\ÔT',_binary 'S\Ï\ê\04\â¡v@\ÝÅ±`›DG V\ÏuÀe\ËRý’Bç«‡3Œ','',0,'?'),(_binary 'PðŸH­\ßZ`\â=¼²','wp-includes/blocks/pullquote/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Özøô%ò›ûD’\\,&°',_binary 'fÑ®%\Z·ó\Þ!)~¢\êOeS+\ßv\ë4p \æ—\ÓH','',0,'?'),(_binary 'P¶bw¿=‚\Ìõ”©i\ë–\Ò','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\ZÁ\ÄIw5AlLÛ¢',_binary 'ú\ã´K{þ8¦Àfl…7s…Rh\Îú\ëžå—‹\Ê‘I','',0,'?'),(_binary 'P\Ð/:\ï\ÕÌ®¸Ò‰¶û\ÖH','wp-content/plugins/wordfence/waf/pomo/streams.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ºÐ—:4†z™\ÔM\ÃEô7\å¢',_binary '\à±!8\Óösº\àw\Î#©)˜\ï\r\Þ<¶r|2y*LS^','',0,'?'),(_binary 'P\r‹;V\Þ\Ó\Þ\Ù\Ó\ÎmV¯/6','wp-content/plugins/wordfence/css/license/free.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'šg\âÁ‡¾–)ƒ#Ds',_binary '¿\Ð\Ç£!5š®ñý’,»¨µûÎ;f\éE\Ñ@\Ú','',0,'?'),(_binary 'P\ËH.œ%@\î\'¶:I“','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-add-to-cart.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x-`4wf×¯Ð“\Ê\ÒnW',_binary ':Z63T3û—³² \ÈüéŠ°‹A”oE[-\ç+“\ÙÊˆ','',0,'?'),(_binary 'PEÛ«½7r|oI±6ÿð>','wp-includes/js/backbone.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ár\Î\È\×¼rS…z†¿‹4…',_binary 'Ig¥‡0\ÍC :F\Îo ½š\Ø*]\ØtL}º\ÝROØ†','',0,'?'),(_binary 'P „ô\ÒNtD«ÝŒŸn\"±','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Fe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a¨\Â!´,¯‘^\Òq—',_binary 'Xß‡p÷Õ”\ÃZ’Ð‰\ÒÖ±o\Ä\r»=Ë¸<!„~²3\æ','',0,'?'),(_binary 'P&_#\Ï\'\ÜzT\â†Žs','wp-includes/Requests/Exception/HTTP/417.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oP\Ø%~Á75jN†§}a\ß',_binary '€˜€L\áT˜²Ò˜$xDsš^ùh_!kC»\"1\'ü™_\Ô','',0,'?'),(_binary 'P\'ƒ(µô\ë?+‹z´“$¡','wp-admin/js/postbox.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"$;ó9HôS_÷·7œò\Ç',_binary '\é\å`¬\Ø\åRŸú\æf!Rd\Þ<¢Áÿ\ÂþQˆ¸ ¦†GIJ','',0,'?'),(_binary 'P73o\è©	§\ë\0\æ=\áŠ\Ò','wp-admin/js/word-count.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ë\rffB)†\ç†øü…±–',_binary 'µ\Ç6j¸,A\èÞªÇ­s\åD½ÁeCÿz‡&‘ý\nü²\à','',0,'?'),(_binary 'PJ’~]øú; ž‹`y','wp-includes/widgets/class-wp-widget-media-image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÄdCa\äü*C^e~OriA¨',_binary '\îLú/\èT|ù\à¸´w\ÔpEf1\ÈLn­\Ä!yµ‡\Ê','',0,'?'),(_binary 'PK‚([\ä±-F{½Xj‡','wp-content/plugins/woocommerce/templates/emails/plain/email-order-items.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦°xh+ÇŠ#)Q“À\'¶',_binary '(ªv\Ê\\’ûj§\Îõˆ»“‹[\Zë›‹²Ž\ÇRý¿^C','',0,'?'),(_binary 'PKˆ³2´Iªó«Á)¥‚','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_static.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3[«h÷k©da4\îp',_binary 'õ&û!\Õø7^\Ïú@\Ñ9¢­ùN\ÌBT\Çþ\í\Ú\Ç\Ö*8\×','',0,'?'),(_binary 'PL•ŸF^\Ñ9R\á6z³p','wp-includes/blocks/navigation-submenu/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\â\Â%vgi}²ôCˆûn\\',_binary '–Ey\"N)\ç$Ÿ¬²\É—Ã…Â¸ueöAº\Ð\0”G\Ý','',0,'?'),(_binary 'PfŠ®s šŸ‹À\ëñ1f','wp-content/themes/flatsome/assets/img/payment-icons/icon-elo.svg.php',0,_binary '9]ý“\ì‘]žm\Ä\Ìi‰\Ï÷I',_binary '9]ý“\ì‘]žm\Ä\Ìi‰\Ï÷I',_binary '\Zo;\ëvd\îª´JO\Z Ù¬«ó§ùI\Ê\"~709£','',0,'?'),(_binary 'Pk‚[\ÝóL§…“ÀyX±','wp-content/themes/flatsome/woocommerce/single-product/layouts/product-no-sidebar.php',0,_binary '=\âmŠ\Û\Ì&\"\å¼\Â\Ô\ë¢}',_binary '=\âmŠ\Û\Ì&\"\å¼\Â\Ô\ë¢}',_binary '¡Xaüö\"GT\ÐÆ ©<ð‰Ž9\0\ãŠ\ßÿÃ®ƒž)','',0,'?'),(_binary 'Pløf¤{ø=bGBt\Ð\Â','wp-content/themes/flatsome/inc/builder/shortcodes/woocommerce_checkout.php',0,_binary '\ëE:ñ&\Ã\çÿ(žþadŸX',_binary '\ëE:ñ&\Ã\çÿ(žþadŸX',_binary '_Áò4o\Ô\Ûvx\r©\Ë¢39‰E\Ú\'B©œ·Yx\ÓzŸ','',0,'?'),(_binary 'Pz:~€[:å¶¢L¾hc\Õ=','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/PaymentsRemindMeLater.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q&\Ó\é”\Åt,’M}\Ã\æ­',_binary '>ô\Z½r\í7\\ÿ\Ù5j\Ú\"m?rN»‹‹\'ý^%\Ä','',0,'?'),(_binary 'P…L ¯Ï…6\íX#\â\ÝDz','wp-content/themes/flatsome/assets/img/payment-icons/icon-cashondelivery.svg.php',0,_binary '‚±nò_v$\å\Ò(“UU\\n',_binary '‚±nò_v$\å\Ò(“UU\\n',_binary '£¸\"#¸k\Ç6«±ª1FR\ä\Þe–}o	´þ`\r¦\Ö÷\â','',0,'?'),(_binary 'P†²[ˆD\áXPõ€a\É‰\é','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Subdivision.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›\Ø\ï;uÂ‰ýS¹‚\ìµl',_binary 'ºM>:\rù&\áVý\Ì`\Î\Z:¶O0\éSv;\0þÁVµw','',0,'?'),(_binary 'P‰ù\ç8¬e3põ\Êo\íÔ‰”','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductPrice.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ó\Ö\Ò{—6\Ñ\Ã~È‰<{™',_binary 'þq†Býb\ìh›¢Gž¿¨t˜>˜`M¦•}þ§Ë¶²¦ô','',0,'?'),(_binary 'PŠ\Åiz¡t\îa\é}\Ôa','wp-admin/users.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}€«\Êt\Åõ>T®¶\á\ç¥<',_binary '‘÷Yœzc†²C=‰MVÈÄ¦ð®Îº „²\ê;','',0,'?'),(_binary 'P£€høý\ãüŸ~\é·\â›P\Î','wp-includes/blocks/page-list/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì\Ü%YRº\0÷ac÷!\Ä=',_binary 'ø*\Ñ?u\çSN¢¸o\ìö–ó†õš\Üö#²d+Ä€’–»0','',0,'?'),(_binary 'P¬pV\îµÀûxü\âP\Þ?','wp-content/plugins/yith-woocommerce-wishlist/templates/wishlist-view-footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ò\í\'ÿ¬F®TdPb’Í³“´',_binary 'a %0}Y¨6¯ºÜ®_›\å‹\Ñ\×Ëi\Ìa2®¸\Ð','',0,'?'),(_binary 'P¯º\à`°\èØ›¡\Ç\\y—J¾','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/select2.full.js',0,_binary ' $°}4\êò\Ö$È€?1\Ðv',_binary ' $°}4\êò\Ö$È€?1\Ðv',_binary '\îƒü\ï 2\Ë.TX”P³¥~¦\"A\ß\ÔLS¤M/-','',0,'?'),(_binary 'PµLž%”\"¸Œ ˆ\Ý)hP','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartExtensions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ªo”xþ´òÍ™\ï‡E\Ã',_binary 'J •!\×K‹=ÿ“^x¼\rø|[ƒamJþNŠME¶a\è¸u','',0,'?'),(_binary 'Pµ\á\nÿe¡\äðuµ\"\í','wp-includes/sodium_compat/lib/php72compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xù\ÊB­c“»f4\ï[\\',_binary '\'ò¢{~¶ªVýA(üp½X\Üû”¶Èµ\ÆE/\éù','',0,'?'),(_binary 'P¼¤\"‰\Í[Š	·^(+','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/all-reviews/no-reviews-placeholder.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—@H¶mØª\àxµj\ß\Ü<F',_binary '\ëeÝº\Ã|p\å(£¨sª\Õ\nÔ”7\Ù@\Ä\Å	x	\Í','',0,'?'),(_binary 'P\Â[7öU~¹,U\\®ÀP','wp-content/plugins/woocommerce/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' TY+½\ækƒ+\ÄµR#\ë',_binary '‘»\\üŠd\êP:\nu]\ßH\écõ·5_¢Â©a\ÎZ…P‚\ÈS\ë','',0,'?'),(_binary 'P\Ãÿ@¡„\É;b<\n¸c\á','wp-includes/class-wp-oembed-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Í•«\âha°p… \å^–\âf',_binary 'ŒüLzúA{Œ@g†\0‹Œ\ë·\Ñ{Î“Ø¼qxÒ†X','',0,'?'),(_binary 'P\ÅÃ‹\ë\'\Ýe–\\\ÌðzV\Ô','wp-content/plugins/woocommerce-multilingual/inc/currencies/class-wcml-multi-currency-orders.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\á\Ç\Êùøl\ã…\Øn\Øz¹S',_binary '\èŒT}[\Ö\ÄWVi\0«Â¹œF¯E„y\åI	…„ “','',0,'?'),(_binary 'P\Å\Óý	L™qÁ\rRðJ\Ëõ','wp-content/plugins/woocommerce/packages/action-scheduler/classes/actions/ActionScheduler_Action.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' X-CAl%{÷\0÷†ò\ä',_binary 'ª\î\Ô:…ºý˜ôk\Þm¹:-4´%\è,E\Ë\çmB553','',0,'?'),(_binary 'P\ÆM\î\Z\ÖIÌ¸Ý­Y`r','wp-content/plugins/wordfence/lib/wfHelperString.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×EuÆ»\\S w?,\Ý_™L`',_binary '£\Îñ Ÿ¶i\ÂLÆ›wµ\Æ\Ö6\É_§¾\ç,n—2S£\äZh)','',0,'?'),(_binary 'P\Ë\ÍFõ\É\n:º\Ó5\Æ27\Ï','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/store-snackbar-notices/components/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—­¸£yyš¦RG;¶÷¹',_binary 'û—¯L6\\»­¯ì­‘cß†\Ò\êR\Ö^\ÔV<w‰.1\ÃQ\à','',0,'?'),(_binary 'P\ÍLYb-°±6p\'\ï','wp-content/plugins/ti-woocommerce-wishlist/includes/form.helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦$ó\rÿË„€\Ì¡5¦¬',_binary '\Z³5\ÄF\Ã)[\n-•¬È»_ƒ›\åUM¹Ë„u¬¹RZ','',0,'?'),(_binary 'P\Þ1$¶‰ó\\*\åC','wp-admin/images/stars-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õ\êA”§œ#\æS²Me.^',_binary '[®òè€¿ý_(\rhª\×\çYÁˆ´Tî¤¹ð\ßqZ±\Õ','',0,'?'),(_binary 'P\ã…ñ0¹a‹¼R\Óz= ','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Û3\çgkeÍ¿Ý¾Œ\Ü\á| h',_binary '\ØHzjéž¨%\Â‰¹²…p=\ÚZ\Õ\à–iNA‡Zô','',0,'?'),(_binary 'P\ã5\æþ\Ù\äV¬ÁŠ£bº','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-post-types.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’ƒ·#|\Ð\ÇÛ“®möN\Ä',_binary '1_\0\Ñ\à‡#~¡°E4§±x•uù°¯9òI\ËK\×>»','',0,'?'),(_binary 'P\è¨ÕŸ5ø$s\ãTºt¢ ó','wp-content/plugins/woocommerce/templates/loop/price.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\î	~Ë†¯\ê•p^²•\Æ^',_binary '<Ú¶DAjð§r\Ä\Çä‚¬\ÏÌ…ñi\n\Æütð.”','',0,'?'),(_binary 'P\é\Î¯Éœ\Ë96•UZ69\Ö','wp-content/plugins/woocommerce/assets/client/admin/app/index.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'IºV\Ó|i½yB³—d/`',_binary '\ÃÓ˜Ð­÷´fš\æÃ¾/·ð2\ã\Ý<*?n\Ó³.\ß=9','',0,'?'),(_binary 'P\î/uðWðòÐ˜5¨I9','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/proceed-to-checkout-block/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é‡Ï¦¹^9xN\Ã7\ãl\Í',_binary '\Å\Í–yhB/¿~®¼†®\\«\ÖÇ‘‹ù\Ë\ètŽ\Ô:¦','',0,'?'),(_binary 'Pô¿p«û^w0³F•>ž»','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/KnownInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H.(»¯°ýN7\×\ë\r',_binary '_¦©ý¸ÿ\Ü›Gd„11g Y—”1~ú¦>B$t\ÛðªX´','',0,'?'),(_binary 'P÷´H„F\ÏE8\ÆdjB“','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/express-payment-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rË¹\ÌC¾³Á†}v}»',_binary '~(3•Â£>AŸüX\ÇùAO¹‘‚þ\áŠ%zTŸKˆ','',0,'?'),(_binary 'Q\×\å•T¹L°`,´/-y','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-totals-block/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<?\É\\\ÇG¹O6\Zn\ï\Ôz—',_binary '„½\Ët|!uqqª\nH\á\á0OÛ¥	`ƒT\éº\"b0e\Õ','',0,'?'),(_binary 'QÚ´\î\Î_\ÑI…úN°','wp-content/plugins/woocommerce/legacy/js/admin/backbone-modal.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o´zwvxŸ›h)k\Î\à/j',_binary '*•øÇ½\×6aS\ã\è†ql˜\ÙoY|=Hžƒ\Í','',0,'?'),(_binary 'QŒ–¿L•Á¾¥S\rñI†•','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartCouponsByCode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™(Í¨¿a;\è\â¢b\ç`\é/',_binary 'Š\Þ\ã\Ìø³r/«\ãò@|pÂ°1 1\ÞQ\Í\Õ\ÒX”\Ú','',0,'?'),(_binary 'Q\Zú7ô\Æw^4kÇ¡Ÿ‘ñ','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yit-wp-pointer.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wF<J%\Ñœ‰ 8\ÈP‘',_binary '\ÔWƒ}Á\ä\Ü8Ó DqRö¿\Ý:y–Ì¼ofŠü°\ÝX','',0,'?'),(_binary 'Q$d¶7*ót3\Ë_Pù§','wp-content/plugins/woocommerce/assets/images/onboarding/cod.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£\Û÷v~\×t\Îv\í0 \Ë\Ø\Ð',_binary '³\ë\Ù†)|ž™úªeˆ,¥yX\íúž7Ë£\à³t°½w¼','',0,'?'),(_binary 'Q)\ëw’E˜¸·ŸGC0›','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-relevanssi.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P¡û·^o\ëVQ.´Ì‡y ',_binary 'ž¾ù\ÇO)\à#\×]G\çžµ\ÊYC¼;\Ô\Ü”q\ç–K','',0,'?'),(_binary 'Q/‘\ßF\Z3‚S„Žþ¦(\Û','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/sidebar-layout/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñ\Ç\Ï~\0@\ä\âT\ÛE\î\á9¡k',_binary '«ÿ\Úp)V>³DúÚ—_¦!—v!c\Ó¶ó´\Ï3’\Ê_','',0,'?'),(_binary 'Q;s<zÛ…\ß=\Í)n¦','wp-content/plugins/woocommerce/legacy/js/select2/select2.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸òm\Ös<\Ìbc\Ë\'>‚«',_binary 'ßš\Ïv+2*¨,Ÿ_iš\Ë\nzV\í\ÄG\ÌV ÷³>\Î','',0,'?'),(_binary 'Q;\Úò\é(ü±¬Mp*ñ‹','wp-admin/js/widgets/media-widgets.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™$MŸ8]Jb¤=EK©\î',_binary '\Õøù\á\Ëõ\ç¼„Á:\ÐU\ï{Fdž™÷F‘Zw\ÉZyG','',0,'?'),(_binary 'QCýÈ§¤ÀŸ$9B)¼ŽM','wp-includes/blocks/tag-cloud/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0ý ´eÌ‡`sYiò™\Ï',_binary '\Ð\Ú8Ÿì“´\êÇ–A+ú\0…LD9\Å\Õ†\"%\ê9ônv\à','',0,'?'),(_binary 'QJÀ›\Ís3\çR\ÔaU*\Ùs','wp-content/themes/twentynineteen/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’>n9!<\â[€qO!\Ø',_binary '0öed €\Õs¦þXˆœ¢–€Q8\è³\Ø\Ø3·Z«\É','',0,'?'),(_binary 'QJ\ÆV‰\Ö\åa\×\Z\0Q\ï','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/order-note-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7V}›|“\\\Øg¼rúj¶m',_binary 'w–©#>\Ç\Ì¨´úC¬˜ûN(\í¶xÅ»\ÖcU\"mšv‘','',0,'?'),(_binary 'QT«ñò*f\×P„\å¥.¿','wp-admin/includes/file.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì£\ßBÜ±•»ŽºioFC',_binary 'ý÷q}\Í\å/ð\0ß¨<c‚¹µð\èkdqs\ÑX3Œy','',0,'?'),(_binary 'QY—\ê1ðTl’¹Vr<','wp-includes/js/customize-views.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"r›<`¢ó\Ä\ÅùD\Í\â…',_binary 'b2¿M¨ÿ!o‡;±-ô’veqü\Ë\\f´]l¤”À°:','',0,'?'),(_binary 'Qd—\ë\×øòpF†\Þ+a£\n\Ð','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/single-product/edit/api-error.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'cBÿ\Ì·\'\ÅY(wN',_binary ')˜0¿v\îõ±xl—A\æ”\É\ä\ÜKð<\Ì8¦Á}K>\ín^G','',0,'?'),(_binary 'Qh”p0—nÉsR@\Ñd\Ç','wp-content/themes/flatsome/inc/functions/fl-template-functions.php',0,_binary 'õúñ¹>kH7øŸš\çƒL\á',_binary 'õúñ¹>kH7øŸš\çƒL\á',_binary 'Y\Ì}I=ª*\ËC\Ùc{¬\Ãk\Ð\ß0$\ånŸ‹À~‡Ð¢\É!','',0,'?'),(_binary 'QpK‰&Iu\ßC—\n†³wtE','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/php/support/header-instance.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9A_Ff\å\Û\ß\Ò]W08˜ô',_binary 'B06&¨\ï¸~¸;X¡W\Ä~k;\ê^¤q±\æ€\Â@s\ï³','',0,'?'),(_binary 'QuoPX\Ø\Ø\0«¸SÚž','wp-admin/images/bubble_bg.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú~\Ïg<Ä‡óI Á¬®0',_binary '\'+u\ÒW\ë`-A²¶\èþ\ÝS\'¤}S~Sõ\Òb¤\Ì—','',0,'?'),(_binary 'Qwa•›t%FŽ%2\á«\å','wp-content/themes/twentytwenty/templates/template-full-width.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž*%þAŠ\Ów\Ã\ÃUB\å',_binary 'Hh‚E÷.P\ïÚ¬\ãû.¸ªM\í\ÆeMoˆ@\0\Ç\ÆW\Ü','',0,'?'),(_binary 'Q|˜E¡qf\Ía!h\á#´','wp-content/themes/flatsome/inc/builder/core/server/helpers/page.php',0,_binary 'Md\\\â/\Ù¾\ê‚\Öc',_binary 'Md\\\â/\Ù¾\ê‚\Öc',_binary 'ŽQ½£‚0LøT-¤ar7ýC¦À¬(˜l«)¹','',0,'?'),(_binary 'Qƒþcm\ÖuX\Z3ûB+‡žX','wp-content/plugins/wordfence/views/gdpr/disabled-overlay.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$›mR\Í_»Ÿ`\éW6\Ë\0',_binary 's)W´?PÓŽ\àÿB›*?xóûBZº\ìdÉ—\äeZÙž{','',0,'?'),(_binary 'QŽ\Ü\ÅPAý±\Õéš\Ìz\Ï','wp-includes/blocks/columns/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\×`ZµžY9\Ï |oKÀ',_binary '6<\í!CÈ¶6CDúú\ØU|¸•\Î\âw6ü¼[=-\0¸€','',0,'?'),(_binary 'Q“P5Z¸\Î÷\Öw÷Nia\Â','wp-includes/blocks/quote/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N1¨lÁX\Ð\Â_Áƒó',_binary ';¼‡\Û\ÅƒB9jV=~•?x…O)Ñ¬\åT¾¸A','',0,'?'),(_binary 'Q”­\Ë\Äúq\É)`\Ò\Û~\ã','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductButton.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H÷G‘üù&g$½=z/:y',_binary '\\\ÐÿóQ\ÒÅ¹#\r\Ø\Ü\'Y\ÚE‡–\Ö8i\ÓÐ¦F–\ÃUÈ‚','',0,'?'),(_binary 'Q˜®\Ü3é”‘]\âúY\ÕRZY','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/blocks.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±ø\Ç\ëñ°(]\éÿ\âw(F',_binary '£Y&2jô¯»)OŸÀ³(~m9^³\Â\ÔC','',0,'?'),(_binary 'Q(©Y\Ç±m·1Œ/','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/css/fontawesome4-compat.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ëLßˆ`nù„Ð¨P7ýù`',_binary 'pwb\rÜ\ëe³¯)bC\î¼@«	À|ûâ“’4','',0,'?'),(_binary 'Q§\Û÷6K4ö\Ê¨€\ÒðH','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xAI6m\åNdSpVB×‡',_binary 'Z?˜RA™²+û7#šC\Ëý-ó”ú\\4g[o?J¶_£g','',0,'?'),(_binary 'Q­,f\è¿y½\Ý\ÑÁ‚5¸','wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/previews/pennant.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®\ÅQ\ë³\É[@ÿZ»$Y\Ót',_binary '¶—\ÃÁV=#B¤\á\Ú\æT²4Ô°¤Ý½ˆb\í,®ÿ‚','',0,'?'),(_binary 'Q¯x˜¾Ì¿Py€º\á\'uE|','wp-includes/blocks/page-list/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥\ïñ\Çün\'ð¨¶¥e+÷',_binary 'g³q\ZXt¡Jó™&L¢jL@Mþ9ö‘S‰\áºö<ñ','',0,'?'),(_binary 'Q°ö-ùC-]C\É\Ï\Ðø','wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ó%ˆƒ®\nG\n¥\ÒR6',_binary '³ˆ­v$øÍ´\Â\×,«\å†5\Ê6Xö~XÊ§…\éâ„\Ô\Û\å','',0,'?'),(_binary 'Q·`ºö\ä8þM¸8','wp-admin/press-this.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘\'xq ù>Š/¯\Ð\ÏEQüL',_binary '>Œžk\ï(ÿ¦²B­‘®©ù‹h\\ŽÑ«Íœ:','',0,'?'),(_binary 'Q\Å:ü\çl)®_\Ì\ï\Íj»','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Parser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”W§õÒ‡´ów­;üQ\Þ\Î%',_binary '®z\'íŽ³¥v¨ÊŒ\ÄSˆò\Æ\Î:qm\Õj)\Ìº¢f/›¤','',0,'?'),(_binary 'Q\Ôû\nôtó÷Tý¿Fù‚','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-ko_KR.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4?Aag\ìI\r\ìºm\é´Á',_binary '´P(L”4\íª>3\Õ\Ür:þ1a\Þ$!õ–±Rý','',0,'?'),(_binary 'Q\á\Ä9ô\Ðr¹3’‚¤Oý','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-fr_FR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨v\"AA\r\Êö…ö<f[U\\',_binary 'Àö€1¢\èo\n‹ý‡\å\Åd°\ÌAŸdÅ¹A\ë¹/\î¸','',0,'?'),(_binary 'Q\ê³Y\ÈQf¡7¶@2xC','wp-content/themes/twentynineteen/images/pattern_02.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ö\Î\Ðß¢Ð‘^N\0‡[1#U',_binary 'OH[óƒByj\Ì\ë‘[\É#¦–Aç¸¬8Ä–\Æ_7	r\æ','',0,'?'),(_binary 'Qù.Ã¬¼\\¦‚\ëûXeOI','wp-content/plugins/wordfence/views/dashboard/options-group-general.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N»Fþ\íY­\ï\"ñ4\\ú',_binary 'fN©„œÏ»`¼\nq\è^ûZ\Z~\á<’÷\'•I[¡!¬','',0,'?'),(_binary 'Qý©ƒ\Ï\ÛÁl\êg´-\Äó','wp-admin/js/comment.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\ãtöù(-\Ñ\Ñp³y\rº',_binary 'Þ³ÈŠ³Ÿ\Ê;|´X†ú1¶Ij6ªûÁg[±“5\ê','',0,'?'),(_binary 'Qý\ïlrP¦)Á…ôóO;','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductAddToCart.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰\ì=ñn6Ã›\Ä\Ù\0B\Ø\Ã',_binary 'Y\Ö\ê=«\Ýœ6J \r*]-Bü”J^g\âð^üRP','',0,'?'),(_binary 'R\ÝA›§üb%¹(T','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-generic.php',0,_binary '\Ì{û¶–.4wkE\ê•Ø—\Õ',_binary '\Ì{û¶–.4wkE\ê•Ø—\Õ',_binary '¾š\ç;¼û\×ó¾b\É!ž]Þ³g¡KVþp÷\ã)Fò2\Þ_','',0,'?'),(_binary 'Rºv5­–W6\Ð`\ÆÚ¾\á¼','wp-includes/css/dist/nux/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	‰4ó\Ö\ÎN^¯@¥a',_binary '—3AØ\Äûk\Ðp\Í\ã›/mm\n¦¡F3\ÐñTT[òpy','',0,'?'),(_binary 'R\Ñ›\'7—z6øW\ÌÚ‘\ß','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/SyliusInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zúQÆ2Ï¦\ÚD\ã\Ç',_binary 'b“o?|Lˆ\Ü\Ýc¢3fò}š‰® QÕ“ª»G]X','',0,'?'),(_binary 'R.ðó	\ÐU¤¤\Ø\Zfg','wp-content/plugins/woocommerce/includes/react-admin/core-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6ÿ}Q«/§ûU÷Æ˜\Âe­',_binary '•1ó¶4Yr¿ôÛ½¼Î‡´h‡¤_#É·-	€4™\"u*','',0,'?'),(_binary 'R\ZŠ²ôŒ~\ã~ôöJCþ','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-core/icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–v\Í4›‚£ø\Ê+\ÞM\Ï Át',_binary '“\ë¾øD•OR:3\ßB\çþ\×C-žw\ëO!\Í\Ù5','',0,'?'),(_binary 'R ‹\é\î\ÕA%¤\Â\ZA©\Ø','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/types/icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹²M‘\rò\ï´Ðº\ßö»/',_binary 'Óº\èI÷*©‘\ëgŠit\ÚNZ¡Ž\Ú;*^X\ì°M\Ò%','',0,'?'),(_binary 'R-ÿ©bõ:õUq¿€V','wp-content/plugins/woocommerce/templates/emails/plain/admin-new-order.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6›Ò§÷\é\Õö2¡\Õø‚\ßf',_binary '^P£¤ ^­\â&\Ñ`—’B\ã\Ç\áeúÊšMxü\Ì(9+','',0,'?'),(_binary 'R3ð¸Us\ë3\Ã\È}T\êœ\ÛÁ','wp-includes/js/autosave.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÉòÇ‹ücJönûH¬\'',_binary 'òþT%\Ä\Ý#€5rý„¢ôc5¿\Åê˜©Œ·\Ù\Õöm7','',0,'?'),(_binary 'R9”[‹›——ryŠ|=\\Ÿ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'š*EI%dn\ãWú[Š#F',_binary '½š”<B\ËŒøòë“½…\\J\Û\n\É\ÞE<\ì3#%\È6¸','',0,'?'),(_binary 'R=Œ‹¯° ·xù38^„\\','wp-content/plugins/woocommerce/assets/css/twenty-twenty-two-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+&å¦³Áô\É\ì\Ø\èX\ì†',_binary '<\é©>Y\Ûð\\X\Í\ë}\ì§\í\Ê[¼„}Ùˆ>j.\Ûz','',0,'?'),(_binary 'RA\ç\æù\Þt»OfŒ\ÂÅ…„','wp-content/themes/flatsome/inc/builder/core/server/src/Ajax/WpAttachment.php',0,_binary '\Ìy\Ü\Å\"\ßü ›ƒ˜3’\Ú',_binary '\Ìy\Ü\Å\"\ßü ›ƒ˜3’\Ú',_binary 'eÁ\è¶—\'	ü3- <XY¡\âM¨’×¹J¢]e›\ã3','',0,'?'),(_binary 'RK_²\Ì\Ïj|»¦\ï±où','wp-content/themes/flatsome/inc/admin/options/header/img/header-simple.svg',0,_binary '3”p\\}\ÛF-°fª?t',_binary '3”p\\}\ÛF-°fª?t',_binary '\Èq£Cc°\0m„k2]÷ÇŠ\Èx¯Uµ,ªò$Æ¡\éa”','',0,'?'),(_binary 'RQ¼\rÛº¹\Ö\É÷8XtQ6','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-toggle.php',0,_binary '†b\á Â‘L\ÔÊ·i\r',_binary '†b\á Â‘L\ÔÊ·i\r',_binary 'ýX¾Œ\× ûÊœxÈ—%w(§ {rPÿ\ÏF\ÜI¥>','',0,'?'),(_binary 'RQ÷b7f§\È |~Û“†(','wp-admin/js/widgets.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4®>¸A\ÅP¿P\Ùu4Ä„\Þ',_binary '‘°§º\Ävý5áªmÑ”\"-ò‘²*~`\Ñ`Qg1FÀ\Ñ/','',0,'?'),(_binary 'Ra¯\î˜Áce\ä\ÊúJT\Ëü','wp-content/themes/twentytwentyone/assets/sass/03-generic/clearings.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>Ø½\ïS“Ákb^–\í¼',_binary '¦‚…\â\Æ\ÊFŽ\Ù\0Oñ.Qm+vŠHjùE\ÍodFX¦','',0,'?'),(_binary 'Rf\Æ\ç5\Ï\ÉY·8X\å\ãZk\è','wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/modules/google/fontapiparser.js',0,_binary '»h]À¬%9\Ùù(—_\åªE',_binary '»h]À¬%9\Ùù(—_\åªE',_binary 'ú÷L\ÆYö?N˜@¢(\Ìj\éª,\Ñú…‰\ÔA\Ø|\êc\Â','',0,'?'),(_binary 'Rj¦qñ¡IÓ\Z®Y&ý','wp-includes/sodium_compat/src/Core/Curve25519/H.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Æ\î\Ì0\rJ`X\ç½\"8¾by',_binary 'oHi©¿YƒN3	>­\Å÷ô\Ý_”\Õöœ¾JŒ,®·–S^','',0,'?'),(_binary 'Rv#D¡õ¾$|7	\ÊÐ¥©','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-tp-support.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®coM[{ß§<wú€¿',_binary 'Z´68yN§\Ùð;Dü\ä½\ÕK‡óô¾[A \ã9\Òû\Ôi','',0,'?'),(_binary 'Rwjl\åŽ3\ÇO­÷ûM€','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-orders-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“*ºd\Çü(HÖ±“\í©',_binary 'S·(Q·ôrºn1\æi•vQû\Þy	;Ô§\é\Í/\èå „','',0,'?'),(_binary 'R;9grlû\Î³±Ÿµ\ß','wp-content/plugins/wordfence/css/wf-colorbox.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PX)p!ƒ¾N8¦j­Œ',_binary 'o©t0³\r™P2¡\è±N¹­ó\æ\éi\Ì\×\ÂK\æ\Ûu¤\àõ','',0,'?'),(_binary 'RŒ:]*Ms\Ìk\Î;,‚92','wp-content/plugins/woocommerce-multilingual/res/js/multi-currency.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'è’ž ô^Õ¼nöCR\Å',_binary 'ˆ¨	E‡ð\Ï&º¹Yñ\Ä\Ç\ÉÞ›o2z§6z\ê1\í´','',0,'?'),(_binary 'RŽµú1?™ûˆY\ÓVDt»','wp-content/plugins/wordfence/lib/.htaccess',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£E\"xK\Ê\ê{\Ç8ödS³',_binary 'C‡¾ö½\'r…9½\ì@\âK¡Þ†t¡ª™ö\â§w#@kº','',0,'?'),(_binary 'RO8	“Pf;I<g*','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/datepicker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rnkñ­ƒP;¦±/\r\Þ=',_binary '°\íp8gŸ\Âƒ=\ÖHÁ\n3Š¦‰,9\È>\r[œ÷\ì|','',0,'?'),(_binary 'R“b:Z³Kµ\ç“ûLø','wp-admin/js/application-passwords.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'An\Ê\Ðf°.t¢7Ht†º',_binary 'òE¥ˆ\0ƒ\ÎD­.\Â<®„\'ƒ\Ý\í¬iZAÆ¬4n\â÷¾','',0,'?'),(_binary 'R–x®4Mp@°9u\nÖŠ p','wp-includes/images/wpspin.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hkžu\ËRª\r@9k÷’\ç',_binary '»³÷!\ÚF×±‡\äò¸(œ‰µ#õ\äˆ1†‰:\ã','',0,'?'),(_binary 'R—§|Rx/\ãbzn9\0*\ÑJ','wp-admin/includes/plugin-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B·\ÈD\\}D*\ç¢‹\Ð&T',_binary '·×£ô\×Ã®–f¡µÇ¤=\Ç\îF\ãö=\â‰-ô\0|½q','',0,'?'),(_binary 'R­ð\"p5\çði”\row[6¿','wp-content/plugins/woocommerce/assets/js/admin/wc-setup.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾.\04£¡\Çù\Ç\ÐB¿‘‡',_binary '— ¶-O\æÐº\ä\Þ3Æ†\È\ã^ô\Zjr¡­Ò‰°\Ð\Ã}Q©','',0,'?'),(_binary 'R¯\\SC¯|ju\Ó9µ¿A','wp-includes/js/media-grid.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Î\Ò?Zý«eÁ\ÔÊ ',_binary '˜”.R%/¨\ÕöF–v`”ƒŽñR\íj¡Œ\ï>¶Ðž','',0,'?'),(_binary 'R»Œp„ýš¢ Ý¿‡','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-taxes/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é‡Ï¦¹^9xN\Ã7\ãl\Í',_binary '\Å\Í–yhB/¿~®¼†®\\«\ÖÇ‘‹ù\Ë\ètŽ\Ô:¦','',0,'?'),(_binary 'RÂ¥ø²®\Í\ÊLeýq	ð&\Ô','wp-admin/js/user-suggest.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jlõ,µf.\ÏVh…\È',_binary 'Œ—\ZÔ‚	8§Õœg\\°ö—“IS½€ª\Ëôã‚°6¥‘\Ö','',0,'?'),(_binary 'R\Ê\ÈÜ°oL\É8~\\\ÊlCR','wp-includes/blocks/audio/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„T,G\\2*eA‰\Ô\Õ~\åò',_binary '6SN\'\åct\Ç<\n,HWõ´01–ý®ŠK','',0,'?'),(_binary 'R\ãH\r0ü!„d‘?c&','wp-includes/widgets/class-wp-widget-categories.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´+~;¶ÁŽ\è2¹xö\r`',_binary ':I¾Ÿ£a.\Ø\0ø\"\\ýW7\"ªê¿©¡Œ®Œ4\î','',0,'?'),(_binary 'Rå°‚izsÊ„\"Çœš\Ì','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/shipping-calculator/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\á‰&SØ—]\Óñ‘?Dô=\ï',_binary '`—U\ËfJ\ÎðûƒÌ©Â‚–\ëu&\"-„È½\Â\Ö','',0,'?'),(_binary 'R\è$%–r¹°r½Ó‚¹J\Ë','wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-it_IT.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A³.¡Xÿ©ªôšF,bÄ°',_binary 'ø7·\Åx÷\Â\à‚\Â\0‹m}(ƒ¥–ªø-f¡¥\Ì\É-…_|','',0,'?'),(_binary 'Rô&„\ÕELö¼”]h¥¹+','wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart-variation.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\Îr<rr:¤	E\çi',_binary '¶!1·\Í\Ù\íd\Û`ò“‰½ˆñ’p\Ø53ü§~þ:NS:','',0,'?'),(_binary 'R÷’û™\ä\è#\Â\Þ5´B','wp-content/plugins/woocommerce/templates/myaccount/form-edit-account.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0++{\Ë~—´\á\ÇJ^dT',_binary '![\'UTÈ¥%+]U½¶ªþ±Ù¨K\Ã*; ­g','',0,'?'),(_binary 'Rþz\0\Ê\Ù\ß}\åM#pŒÀ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/global.d.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©º•|^ $Cœ~ÿE]\Ì',_binary 'ZýŽ\âV\ï,\ê\ä\Ò\åý\ÎÏµ\Ü7‘u°ò\ÕY?õ—eT?','',0,'?'),(_binary 'S\0\é?:°qNY\èG+	','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',÷Jª¤´\ÃD§Å©\æˆ',_binary '8\à³¢¦ô}+º‹{3{9\n²ŒBxž¶ñ=\'0¼\Ï','',0,'?'),(_binary 'S¬\ÄW+ÆŠž¡g\à\n','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®„£§=`ˆ‡w\Õ2‰6\îd',_binary '6óÅ·\ÙWh‹	Šú›·0¬W?\êžÞ\ÏYÇm\ç·','',0,'?'),(_binary 'S?¯d\ìxS“•\àÙŽ@','wp-includes/blocks/query-pagination/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷gd\æmnlš5\è3n\Ì|}ù',_binary 'õ¥bšoM\íû\×y¦òžö\Å\×\Íßˆi\0ˆ[¨¼\í×¥Y@','',0,'?'),(_binary 'SXT®º–+e\àŽÈ²£h','wp-content/plugins/woocommerce-multilingual/templates/status/products.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\í™ú\Ðwœp®vÁù\ì&2',_binary 'YNJÄ¨ e:q\r9\æýP\n\Ó/\è?I\ÆÞ¨;‚œùÏœ','',0,'?'),(_binary 'Sšù>ª\áž	\Â¤\Þ','wp-content/themes/flatsome/assets/img/payment-icons/icon-wirecard.svg.php',0,_binary 'C\àõ\Úù=e?h£eš’ˆ',_binary 'C\àõ\Úù=e?h£eš’ˆ',_binary '*q\Ü%zRü™¼«£k*%\Û\ïìµ¹µ\0ljN£\Îù/','',0,'?'),(_binary 'S.FÈ«A¾j®ÿ\ä( :','wp-includes/js/hoverIntent.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡g/‡Øº†ð	E@²›m—',_binary 'ûñ\â N\Þ_ÿž¤ç‚›¶od\ëð•@\×ñ2‚®_q\ãH\Â','',0,'?'),(_binary 'S.\ÏUñ‡ õü÷¡\Ù1B','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/ui-icons_2e83ff_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vL7\ï¿mükFo­\Æò\Ê',_binary 'Tzòa\áÔ‹§Ÿ3¡[mË¬¥_ofŒ0þjsW','',0,'?'),(_binary 'S0ôÖ¾\â\×K/17uüŽ\ì”','wp-includes/js/jquery/ui/selectmenu.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•2]g78\ç‚9–¶ý-Zr',_binary '?Kr\ÙÁó\å/„¬¢y³|8¼\Ûs°S\ÉÚˆ:½ý','',0,'?'),(_binary 'S4*\Ö\îoG7\ÈüeK\Î\"\ä','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-block/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yIy:•(\í)K{°^',_binary '9A 2½‘„€%É–:Š¯ý›Ëºu‹±«KVœò','',0,'?'),(_binary 'SM}`¸\Ú}b\ËIõ‰+','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/multisite-updater.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'RÜŒ/j‚ez“u{™',_binary '±\ßZR:û«dØ¿	—gU\Ü.Ñ³:\\q*ñ \Ã\Ô\Â&Z˜´','',0,'?'),(_binary 'SV\Þa\êPPdXš\Úy¯Ô»¿','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/payment-methods/express-payment-method-config.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q0pš\ç1ô\á\r\çØŒ\à',_binary 'µø–vc¢°¬\Ù*‘‚Vòf#E¯ñ0V§¢ª±\ì«','',0,'?'),(_binary 'SX+7\Êû1?\Åõ\Ï\î-','wp-includes/js/jcrop/Jcrop.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z‹ý7e½¯¼ò\ÍQ°%K',_binary '!ˆŸ@¤X—7JÅƒÀ\äþ¼p›3K\Ò;S*!¸õ°L','',0,'?'),(_binary 'SZ;t×¯0²\ÇÈ½`ýf†','wp-content/themes/flatsome/inc/admin/customizer/img/product-box-add-to-cart-button.svg',0,_binary ',zUp¦0E+µ	´>',_binary ',zUp¦0E+µ	´>',_binary '@â¥¢nRnÁz\ëŒ\Úù¿j“q qAoe½	\Ü \ã©|i','',0,'?'),(_binary 'S]Ø›$§@û¢Š\Â¡','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/MigrateFromShopify.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B5n¥\å\ãmºW‡Xø©V¾.',_binary 'j/”¶{\î°`6+\ìEpK;¢ù)‚l\Ô,”\ÃÇ·¼#õD','',0,'?'),(_binary 'Sj\á~6›{¨€œÁ‚X','wp-admin/css/colors/modern/colors-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z³µ-\î!sL±vž\ÑÁó\ë',_binary 'BM\Ñ@n\Äf¿¦a\î\Ëþv=¨=s ·¯Æƒ³','',0,'?'),(_binary 'Sx¬®s®¹\"±™\\qšúš\ï','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-network-orders-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\â·\åŽj_\ÄÿW] \\',_binary 'À•ì¯´ü\×\Þad½V‰£¹Àº¡—¬åšˆŽ* |\Z\\Œ','',0,'?'),(_binary 'SzW\î\ì¥NKUS\Ñ\æ','wp-includes/blocks/calendar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\×1Kl±´A\ÒíŽª',_binary '(­tw\Õ zHK8¼\Þ\ÚIBÁ\Çpö^\nùb8½b\Ù\î\ä”\â\Þ','',0,'?'),(_binary 'S{!\â_I\â\Òm÷¦\È<','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-zh_CN.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜QÌœº	·LˆPùq\ï',_binary '\ë1\ç$V+Í«µ­û\ïÁ³2ù†>j\è¿\"\'=‹Yñ@','',0,'?'),(_binary 'S†Y4\\šd„­79\èf','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/Checkout.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_G··¯T;ŸC$ütJ4',_binary 'ø0–ÑŠ*®÷÷?\Ð;}wðb\ç\"ˆfMŒ¢\ËPAZ','',0,'?'),(_binary 'S†\æ^2`SNÕ‚\n?$\Æ`','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-coupons-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ\×v\èM\Ùû‹©y\n”\ß}S',_binary '©„\ÚH²t^Õ<¿\Û÷§­vtˆ\ÒSõ­ö\ÈûpQ…Fy','',0,'?'),(_binary 'S‡C\Þ½i1Û­ j\àù','wp-content/plugins/wordfence/modules/login-security/classes/controller/settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ó%Ÿø|¼6\ã€V!¸;O',_binary '\æJ’DÆœ½ŽŒ¿À‡.¡[\á—\Þ\Ä\à€€\â‹)ž{\Â','',0,'?'),(_binary 'Sˆÿ÷\Üp\Ø>\Ù\ÝWr½YE','wp-comments-post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷ •\'Œ`ÿ\Æ{§¼\å§',_binary 'sv%\Ãô[8´\âöR·û•\î\ä+aM!\"\Ëð\ÑV/6´','',0,'?'),(_binary 'S‘dlz\ÌsˆV7','wp-content/plugins/wordfence/vendor/maxmind-db/reader/autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V«~ÐœI\Ô÷XP/®©$',_binary '³s\Äem‰’/¢;˜™Ö˜ö\Î\ì\Ì aZ—H`Ÿg3','',0,'?'),(_binary 'S“!TNx\Ô	ò5}','wp-content/plugins/woocommerce/assets/client/admin/tracks/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.+†ð1MÁ\0Ê·_‡|D“',_binary '“Mö¶\ÙÖ‘f?X¹¼‚˜}o2?\è£ðk¡ü\ì\ró','',0,'?'),(_binary 'S”ž¹•HÐžW Q\nž\Ð','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/images/Feature-request-form-title.webp',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r¯‰iIh\"Ÿ\n\Ã_÷J¯\î',_binary ':\Ï]>7ð‡I%®\'×¾Wh \Ë>\ÔÀoXÿv‰%8Qy›k','',0,'?'),(_binary 'SŸ\Í’-\ì„\È\n¢¯ž\î','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-shipping.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L {­9\ä‚È¥.\Ùüútø',_binary '\ÆMg7Cþ\ç[\\2\Õ]\íVú\ì\ÆqõTw˜&\0\'\ã±\n','',0,'?'),(_binary 'S¥´t\ç ð\ÆJ\è9©ý†G','wp-includes/css/dist/block-directory/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡\Ù:\åñt\Ò6qA]#ˆö\Ç',_binary '\ßËƒ™gÉŒ\èÓ£]Ÿ\Û5c´÷t\nK©<*\Ûo´\ä5@\n','',0,'?'),(_binary 'S¥ÏŸ;$2\á\ä¥ß¼Z$z','wp-content/themes/flatsome/inc/integrations/contact-form-7/contact-form-7.php',0,_binary 'ViR¦^–\Ûúth½\Îù',_binary 'ViR¦^–\Ûúth½\Îù',_binary '£Ø…K\ÈJª\à0g\\T7¤BMsÛ¹ú\Õ\è\Ý\Èb‹','',0,'?'),(_binary 'S­“ù\n\ápÞG%­','wp-content/plugins/wordfence/crypto/vendor/composer/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•]_\åŒ#Dö´\0óƒµ\â',_binary '\Z ŸøÛ’ö%§4~N\Ù~Gh!b\Ø­:w‚˜ÉŒ¿™\'','',0,'?'),(_binary 'S½„3$~\×z<\ã\ç“\rt\Óô','wp-content/plugins/woocommerce-currency-switcher/js/sd/options.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œ¦õ\nñ*÷KŸš]<m\Ç0e',_binary 'kª\åµÒ]”3;%\æô4^éšžwVº\ß|,„R\ÏS˜','',0,'?'),(_binary 'S½¾\ÜU®\æ½]%w\n9','wp-content/plugins/woocommerce/src/Internal/Admin/CouponsMovedTrait.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't¦´Œ¢\Ø\Ñqû+K¶(C‰',_binary '\æû–\ÏGœü‚X Ø¬ˆ\æ?¢x[’/\Ì\Érq[øŠ\Ð\â','',0,'?'),(_binary 'S½\Ù;C=r„\0Uó\\\ßù\Õ|','wp-content/plugins/contact-form-7/includes/block-editor/block-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÃN®›Xø\ÐW¹VÀ\"”',_binary 'úða&&ò$cÝ³¶ðÜ…™gŒ\ÅùÚŠ|,†’‚ž4<','',0,'?'),(_binary 'S¿°\á\êBð£\Úw{\ãûN_>','wp-content/themes/twentytwentytwo/assets/images/icon-binoculars.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\É\Æñþˆÿ\Ï—2=5\'˜',_binary 'Ô—\ß&IÙ¾–\åÈ¡\0‡\è\Ü	Š³P­–a!\\c7\ä','',0,'?'),(_binary 'S\Ë}¹þy$¦\ØcŠ*¼¡ö','wp-content/plugins/woocommerce/legacy/js/frontend/lost-password.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ø\0H®Y[\Â_\È\Ö\Äùfž²œ',_binary 'ªDžÝ·z{\ç™.ò.šþ2	ý€´\èÆ\Ë\î€a\åõ','',0,'?'),(_binary 'S\Ð&\ßr\ÎŸ\Æ\é\Ðš,\r','wp-content/plugins/woocommerce/includes/admin/plugin-updates/views/html-notice-untested-extensions-modal.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´$aL\ÎÀ*a¯Ž-\Ý\Ý',_binary '\'\Í,\áF\ÏV@\à\ßw\0–{»­a,Ü·h','',0,'?'),(_binary 'S\Û\Ê&\ëaz8öJØ¶9§','wp-includes/widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'É†ôvG%ø\í“\ê¼[\Ù\Û',_binary '\È3\ê—q??\\\Ý\'”?O8\Ú]o\ÆÔ•0~|¨øÀ\Ï\ã\È','',0,'?'),(_binary 'S\Ûß™ÿ1²$1\Ê\Å ¦','wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Shipping/ShippingHooksFactory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\ÆD\Ç=mBþ»\È\Ò!\n\ã',_binary ' i·Ji\ÛT[[Wñ3ˆ\ÝýR\Ì­49xG¬-@2l!','',0,'?'),(_binary 'S\ç^ù7jK5I6K\æ2!','wp-includes/Requests/Cookie.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't›V…\ã‹\×sUNÀ–ód­',_binary '\"†½+f5f(gdC“\Î<i\ÕË³]uÆ¨2\ÙõÄ¼','',0,'?'),(_binary 'Só¸~±2³1Iyý\Óò¹-ˆ','wp-content/plugins/woocommerce/assets/js/flexslider/jquery.flexslider.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“A;n¹£ómC¯«Å‡',_binary '¡&/eƒg†”·n@ZhòŸ\ßH53»=˜6\ë	\×\àù­N','',0,'?'),(_binary 'SûM3D±U}óœõ·','wp-content/plugins/woocommerce-currency-switcher/js/options-2.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž:5$E\ìp\ìg¡a³v\ë',_binary 'ñŸmd(\ïy\ç\Âj\å_ßº¢%Cx—ô‚EW¬Öžm\ÂD','',0,'?'),(_binary 'Sû¯\Ù|¥\á„d]¢206','wp-content/plugins/woocommerce/assets/js/admin/reports.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0*+1J\"ûû·¥¼\Ç\Ù\ì\ã',_binary '	\ßZ$cTi/¹«y%\á\ãÏ˜\06\Õq;)\Þ4µqhµ²%','',0,'?'),(_binary 'Sü%“\n*\à³\Ê\ì\×ZÛ»­€','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/repository/class-otgs-installer-repositories.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x‰­u·ƒO†¤¯\×*ÁF\â\Ó',_binary 'º\á2´O\0W¥d‰ñ¥e(ýDž½=P¼\Ð$ÃŸ› ¯®','',0,'?'),(_binary 'T\rh›\Ð\ÞX@a\é]ŒUó','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-stock-indicator.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ë®\rž¡³B\'½Gqr§',_binary ',E§Òšý,Æ¯E\Ì\Æù\Ö3\Ø\ï]\åõˆ\Ö°u\í	','',0,'?'),(_binary 'T\Ñrñ\Â\å~\ÏW]\ï','wp-includes/class-wp-comment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J0n‚N.¡øyÆªbù\Ú',_binary '\Ê}¨u\0tE\nô»€&’÷Œyt2ý\ã\çB\à\Ñü\ç¡','',0,'?'),(_binary 'TVh§]£\ÆeX”hx¦','wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\ì~\nž]Zs™ðC',_binary 'òFX”O÷dn°\Ä\0\ZÕ¬z˜\Å\ÜL\æR§&¸5Ÿ³[1Í¿','',0,'?'),(_binary 'T””vÙŸIM!2£\ËQ','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/jquery.colorbox.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'È\ßò\Ç\è¸ß¤$\íTŸ-',_binary 'b)\Ó0[8™\È<¸Á\Ø\Ñ.´Å¸2…\Öq\Ù´˜P´Ÿ','',0,'?'),(_binary 'T\ÒýK”\Ã\ÐxÀ¥\Ø5¡','wp-content/themes/flatsome/template-parts/header/header-wrapper.php',0,_binary 'kü{´5þó]Rw\Ã\Øv(L',_binary 'kü{´5þó]Rw\Ã\Øv(L',_binary '®\×&I\×\ÌÂˆ‹£©´¥\áˆ\Ìr\à\Þ\Ê\äV\Z­ƒ”\à\Ë','',0,'?'),(_binary 'Tr¨=4f´ƒ','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/sl.js',0,_binary '\é€c\á\ÄC]]!X\Üx¸£\ã´',_binary '\é€c\á\ÄC]]!X\Üx¸£\ã´',_binary '\ÚN\ÕÈ£‡F3Ã´P\'\Z¨jŸÿh\äŠ|ŽWª\ÊO\Ë\í€','',0,'?'),(_binary 'T\â\á \Ã^l-\íÂa/','wp-content/plugins/woocommerce-multilingual/dist/css/multicurrencyShippingAdmin/styles.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤\Ù(ƒ—\\.OtT¾\íB\á',_binary 'ŠkF¢V\á\Ë8Ç€–‚9\ÑPº‡´y(Šû\r\à›1Á','',0,'?'),(_binary 'T1oH4H\ÛXŽ\Ä\Â~Ÿ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sale-badge/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'š†¹·G;jz»+þ\ä$°¼t',_binary '\âþ,\ÏpN\ÆM\Âa\ZªŒˆ¤\ÏZ]6þLz83\ç±Jig','',0,'?'),(_binary 'T6K?†”´s\Ó ‚7(ù','wp-includes/customize/class-wp-customize-sidebar-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Vj¯½B\á\á¢\ÛØ±ô\ÅÁ…q',_binary '›š{#\Ôi«` ÷\0\Ìÿ«\âj£Á\Ã` pÇ+öfFñ','',0,'?'),(_binary 'T<+\Íö\")B;Ì²û<s','wp-content/themes/flatsome/template-parts/posts/layout.php',0,_binary '˜CŠ\Ùse‰ø¢M$',_binary '˜CŠ\Ùse‰ø¢M$',_binary '»¶f¸Í³[Z9 è´«ŸN¸›¦0\É}T\çU\Ñû÷s ','',0,'?'),(_binary 'T<~º4pÙ‰;\î\ÅýQ­','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/woocommerce/woocommerce-upload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ\Z\ß=µB±¨\Þny˜',_binary '.Æ»¤`– é¼ Ai™\Zfi\Ó\×^ÿ\á¡ýA\Ê° ','',0,'?'),(_binary 'T?„?:q×®P\Ãóah\'««','wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µºˆANðX[`h\0ª\ç¡»',_binary '£\"xI¦B6šE?‡\é\É\Ä\ìiŠ\'26\Ì5y/™¦','',0,'?'),(_binary 'TLÁeQ¯G\nÓ‚ß¸gÀ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-category.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾\âù\ïa\Ä\ËÍŠžŒD<\"[Ÿ',_binary 'Ë¨\ÝpÂ‰$:ùxÉ¶k1Lwh\',/Â’›\Í7\Øv‚3','',0,'?'),(_binary 'TMò¢\Æü\Ê\Ýlòþ\Õôº\ß','wp-admin/includes/class-wp-screen.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"CRu¢Š\Ýw\Õ3bà´§\æ',_binary 'f³¹¹©v\\`‡ò)Y¯\ç¦û!E©™!Q/®ý=n¥','',0,'?'),(_binary 'TO_×¨wEÏ§<\çvÎ','wp-includes/blocks/navigation/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿhf©\çG\'$XT\Ø\Ä',_binary '9ø6>:“¼¢«\à\ßgg€Ja~\Ø\ÎF\ãiø,\æÕ¸³','',0,'?'),(_binary 'TPaŸÏ‡¯Kx\"\èŸ','wp-content/themes/flatsome/inc/shortcodes/ux_instagram_feed.php',0,_binary '¢hK^ªN\Èykð»\rÿö',_binary '¢hK^ªN\Èykð»\rÿö',_binary 'W2`²z\ßŽ\Ê¨%N„øËª~kXzP¥÷pb\ÒXƒ.','',0,'?'),(_binary 'TPÃšq®i\ê6•³• ¨¦','wp-content/themes/flatsome/woocommerce/single-product-reviews.php',0,_binary '¢7ø\Ý\"¯$\ë\Ô+Ÿù8ÀF',_binary '¢7ø\Ý\"¯$\ë\Ô+Ÿù8ÀF',_binary 'w\ÎÖž­ø.ó§Ð…Ü¨\0$\á\Ð{PoNS¸¢¿¬^','',0,'?'),(_binary 'TZ¯\Þû¥ Rç¹‡¬7','wp-content/themes/flatsome/inc/admin/customizer/img/nav-icon-nav-outline-round.svg',0,_binary '¥\í\rc½\Êv\"5GVòö¢\ç;',_binary '¥\í\rc½\Êv\"5GVòö¢\ç;',_binary 'þŸ\îoœd¶@}¤Ž\àp–V‰^?\áW\êj\ä\Â\Å\ï‰','',0,'?'),(_binary 'T\\T\Ø\ä¾=4 F\ÝDL\ÛP\Ã','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-attributes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oV`÷\Åmõ\Ý\Âñ{‚jL‘',_binary '“\á\Î\Ó$\Æ\\e@÷¯N		\à§¸\ÕJ\îú–•¹:','',0,'?'),(_binary 'Tb§¢\Ý-a,?”˜m\Ç','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`ŽK¸\Î\Çl¿\Ø\ÅpWº\ê',_binary '/¾t»/(T5÷\Û,3\Íõ¢Ži¹wÿÚ——…‰\\ºl','',0,'?'),(_binary 'Tg¾BrYZ`\ÏPE‰3¾','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/layouts/icon-128x128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\îy¥¡b\Zø)j%^œy',_binary 'ç¥±†¶\æ5’,\\UÜªÏ¥dC\íÐ­\Ð|/*L\Ó7','',0,'?'),(_binary 'Tu£™¸\Èo\ÆlÒ“WÌ–','wp-content/plugins/woocommerce/vendor/bin/phpcs',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\êK\r\r‚rŒ \n‡=¢',_binary 'V¤z)+!½÷ý#Ý®¥Úµ®X3D]yûZŽþGò*,‚','',0,'?'),(_binary 'Tw»ø=‰Á+¦6\×ø\Ð\Æ\×','wp-includes/js/tinymce/wp-tinymce.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©›\ÂAÀf…ž\'2|0…\å5',_binary 'Áª§P\ßs	$d}Ñ‘%žµ\Êû¿Hóƒ¤€ \Ï8\ä','',0,'?'),(_binary 'T{\'¶½\Åg,(:~\ÛG','wp-content/themes/twentynineteen/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'HZñTŠK\Ä`©\ìm\ï[Kö\Ä',_binary '£RSV%¾6ñ){Ž‚OÁ˜\×x2\ã\ÒN»A†¾\Îú','',0,'?'),(_binary 'T‡.o@Î¨2ÿwõvŽŸX¹','wp-includes/js/jcrop/jquery.Jcrop.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/a«˜Lru\Ç4ÿ\ZÁ',_binary '»ú·Ï·\Û\åydýix—{­p+Á\Ön\ÜeÚª©f¥','',0,'?'),(_binary 'Tˆ½|#¥\Â\å\èY©\ÉU','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/woo_upsells.svg',0,_binary 'n2eÌ„þóò¢ö\ÉóŸ',_binary 'n2eÌ„þóò¢ö\ÉóŸ',_binary '\æj\Ï?›²‚Â¢lÀ*f\á‡:Nbã£ƒ‹4(•\08','',0,'?'),(_binary 'T‰Ÿ)¦ƒ\ÜW&\Ö\Zx\Ç','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/radio.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡qltñ†L\0¼\"¨IÖ¬',_binary '²\Éwœ\n^,^¤\0Q©\ã—\äV*z_¡ˆõ·£”V\Zý‘\É','',0,'?'),(_binary 'TŒŠ³vm?,³a\Þ\é\ãT4\ê','wp-includes/ID3/module.audio-video.quicktime.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yÿ»Ÿø‹½mø÷œ]»¦',_binary 'ea\åy¾\Z•o*@0X–\'´Èºo\ãD‹ûò“]x\ÞI','',0,'?'),(_binary 'T™¶<ªº\ÊW‹»DñY7È ','wp-content/plugins/products-compare-for-woocommerce/berocket/includes/admin_notices.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A”Ë‰\×ü¦žš…\í‰oH@8',_binary '6%›–g}sg‚\ë[ÀÞº„Ë‚´Ž!C´œ\Ôh\ÈR\â','',0,'?'),(_binary 'T£4Ÿ¬¸Ô”z\è\æ¦Ë±','wp-content/themes/flatsome/woocommerce/single-product/product-image-stacked.php',0,_binary 'FùTZnm\'†\ì\Ï$ûUº',_binary 'FùTZnm\'†\ì\Ï$ûUº',_binary '°ª§(¥„²\å\ëI\ì”S¥‹(µ,W[Û©3¶4\Ñ\Ð[ø','',0,'?'),(_binary 'T¦\Òñ\röfV„+\Üø j›','wp-content/plugins/wordfence/modules/login-security/views/page/tabbar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gxX€£JT\Ñ\ïŠbx\Êú',_binary 'f˜x¤/\Òx\è¨À\ë°G\Ü\n8‡5ú6‰	Zô+','',0,'?'),(_binary 'T¨\Ôp‰Á3#k~uG','wp-content/plugins/ti-woocommerce-wishlist/assets/img/color_icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Š¸ó\"\ÎN¦©\Ä{–™\\T\n',_binary 'l>Gna;\ä\Åmm\'ÒŸd¸5bÔ£™³KNkúªYñ','',0,'?'),(_binary 'T¨ùòV¥-­•ß‰Œsx²&','wp-content/plugins/nextend-facebook-connect/providers/microsoft/microsoft.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ê\ã)Àñ¤\ë@4¶\ç»\\',_binary '¼È¦ß”|SÁjù¼$úÁ;-˜†­\è#‚\É}\Í\ãn\Ä','',0,'?'),(_binary 'Tº2ˆÞžü\×Á£ülT','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\\ûLëºµ\'ð÷\ãQ',_binary 'ø‹0&Šö\ÅþM¬ŽsÔŽþñ\Û\ÇÌ©c\Ö|˜÷\Ê	›av','',0,'?'),(_binary 'T¿Ç¯ó\ÚaÅ¿\àb\0(]z','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/ref-sites/icon-128x128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Û\ÂNNôxÀƒÌ \Ìill\Ó\É',_binary '&3 ,úvò\0ú_³*{Pý¼5‘™\Ãs¢\Ö\ìe}•`õµ','',0,'?'),(_binary 'T\Å\Ù`5™¹\È2z/>\àšw','wp-includes/blocks/query-pagination/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oÀ>@¬\Z\ÜGmI§NX',_binary '¿y@†®\Û?Ç¶†\0¹RsÙ”.\Ðø6DûðÏ“£½\0+','',0,'?'),(_binary 'T\Åù.¢\ß)m\Â&ö\Í\ä\ëI','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/HttpException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”41l#}·p\æ\Ç\Æzk1',_binary '¡\Ôh†š	\Ó_‚\ÎÖšž÷–ª!E¡\Ó4‰\Zv®\îF˜³','',0,'?'),(_binary 'T\Èx”\î\Z;\â\ì6°','wp-content/plugins/woocommerce/assets/client/admin/tracks/index.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'IP@Œ\0Hó\é®%N\à(\ì\ë’',_binary '%Rí±™`\Ã{1Æ½™®‰qf‰ (,\ÍN}\ØfO+','',0,'?'),(_binary 'T\Ìuø\'/\É-7\ë\Øk','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/toggle-element.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›&Ô¾jú\ÏZD@\Ô\Ç\Z/Zp',_binary '·­o\Ý%†\×\Óp»(\Ç	u\äŠfat\âmW©{\ê5\ÊGˆ\Ð','',0,'?'),(_binary 'TÜŒŠ7`\0ôý®\Ö\ï(','wp-includes/js/mediaelement/renderers/vimeo.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡C9†¤¥YúO±\×\Ç',_binary '‹„\Ç+÷Â®-FVpýÝ¨Iht\ØL\ßiP%K\×\Ýüiÿ6','',0,'?'),(_binary 'TÝ–›p\nAklY£~','wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/payment-method-promotions.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•zª\Åk\íLý\ÒM±\Zrbõ',_binary 'b¯–À-\'Gu\î±+b¸bË³\rÐº\êƒ>Eý#\ØH','',0,'?'),(_binary 'T\Þ\ÍL³/{Q¦IŽJ*','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Payments/PaymentContext.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*xVˆ3W\á\0Ÿ\ëµñ<	',_binary '’VxzŒjtM(zN\Õ\ê\âI»\n„4híŠŸ|\í¸/’','',0,'?'),(_binary 'T\æE\Þü‘E\ìmC­\Ï-–J','wp-content/plugins/woocommerce/includes/legacy/api/class-wc-rest-legacy-coupons-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nt\ë1\îŽw[…ºUV',_binary '<\Éú/”\Z\ß;q \èiø67\r¾Œ=ý\ÑHy\Êu½¨c','',0,'?'),(_binary 'T\ìi^!K\ëXH¶ªÍOù','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-low-stock-badge/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é 0÷\Ædj\'Áµ ',_binary 'q\å\Z²-$E\Z‘µe„«mS‹f3ž^ˆ€\Û9Ÿº_','',0,'?'),(_binary 'Tð\È,ªÕ¿Ë›u\'•zŸ','wp-content/plugins/ti-woocommerce-wishlist/includes/product/local.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Î\ì\ë7\âAOCþ”ucUµ',_binary '‚b1—\âô\Ö:(@ƒ¾™%€*S†}…\n/\á¸6\È','',0,'?'),(_binary 'Tÿ¸\ß!\Ò\ÎzW\Äw.Z\ì','wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-refunded-order.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤˜÷Cc-p\ØFñ{¥²^',_binary '4øTa\Ï\Ï%7m·ØÃ©òû\0Ï«¨dM7X©\Þ-^\Ðœ','',0,'?'),(_binary 'Uð\\p{Jþ˜O\ÃQ\Ë&','wp-includes/SimplePie/Cache/Base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b­ÄžA˜Ê–þä¦´j½\äÁ',_binary '›\åoOw¢½~9K·ö™\Ö4oY‚[Køe\Ä\Í\\RG','',0,'?'),(_binary 'Uî¡Œ\ÃÅ¿ò\ã\rÖˆc','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-product/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y}õÏ­†ÿ\ïa\Ñ+\Û(P\Õ\æ',_binary '••/@®Mö\à õ2\É\Ò_\éJCMd1ó\É[\Ú\ë\Åe ','',0,'?'),(_binary 'Uï»«šü=\Ðü‹0~¹ñm','wp-content/plugins/nextend-facebook-connect/providers/wordpress/wordpress.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'cR\Ò\Ã@Eýb0ªt!³]',_binary 'UÉ§‘¿™(\à¨Cù!0L(‰«ôˆ]²~^f’N2W','',0,'?'),(_binary 'U\Z¯ƒpf\nS\Ý\ãi','wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/arrow-down-black.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Û 1…„¼J£\Æ\Ï!VÀ',_binary '£\n:–6l¾¦9‰\Î\ÐSG?aq9[\Õ>\ázÈ‚u;€ú','',0,'?'),(_binary 'U$<\ßV\n\Ð\Ø\âTqz\Û\Ôx','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.pie.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–þ-!\n* õ\ßm#ª\æ',_binary '\Æ<\Ö7ŸsÃGjC\à\îlÏ¢!Šf<KT,¾Tv¯\Ø','',0,'?'),(_binary 'U(¸n¾k¦)…r}oœcž','wp-content/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹o%(>›T#\ßÎ¯\Ø\\\Ã',_binary '!NÍª„°\Î\Ðc*L\'—>Ü²õ”k\Ëô\æ:\î79«©bJQ','',0,'?'),(_binary 'U,\çž \æñŠû\ï¡\îiõ','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-upload.php',0,_binary '\ï\Úgi7ÿn–’ˆ­”.',_binary '\ï\Úgi7ÿn–’ˆ­”.',_binary 'tF\áSNZ<\í\Z\Þdy\êzt†µOtø|a®]ŽŸC\Ö','',0,'?'),(_binary 'U2ifqun.1œw8ó%6','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-plugin-factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I—t™\ÏÁ¸\é«)\nûm\r­',_binary '^Za#¾\r˜J!¾UA\ÑÂ¾vò¢.\ì=j1','',0,'?'),(_binary 'U9)ù#?u\Í\ë¥\Å\Ò\ì#','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-product-attribute-terms-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Bö·DRcÓ‹1\Äk.O\æ',_binary 'QÄ·Ü˜8\Üp5òmª„ÿ¾,²5¥L\\Rñ½\Ù\á›\æ','',0,'?'),(_binary 'U9I\0\Õ(cÍ¿ú\ÉÝ¸ù','wp-content/themes/flatsome/inc/admin/envato_setup/child-theme/functions.php',0,_binary '\r\ÙÁš(Ù#Vù0_£ð* ',_binary '\r\ÙÁš(Ù#Vù0_£ð* ',_binary 'C¯&±œ˜,\í\Ç2\ãX¯Ä³o¼–\é÷Y\ã\éuù¾²','',0,'?'),(_binary 'U@u¦\Åø¥\ä\Z“\ÈcC¬	g','wp-content/plugins/woocommerce-currency-switcher/views/widgets/converter_form.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\èñŒlðkX`\ä•,—w',_binary 'rd‚1S3¥“Oý\Æ0÷\0+¶²Ì©	F\âõ‡/®MQ<','',0,'?'),(_binary 'UAû”-\Ó.Û¶‹€Î½FP','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings/shared/utils.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·M´B %V\ÛZö\Øe\ß',_binary 'Ë› \Â\å\î\ÏHo«r@«u!5“T°t«s\È\çwPU5ðk','',0,'?'),(_binary 'UI‚_•\Ñ\Ë\êYm«\ç\Ñ_','wp-content/plugins/wordfence/lib/menu_tools_livetraffic.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ¸o\\—\Î%k\ß&½Ðµ\ì\á',_binary 'WW®»?Ÿ“¾,#zNtª“Š” qC—\Âûƒþ.g\êF','',0,'?'),(_binary 'US¶?^\ÞQ¶w\åo°¥\á_','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-notes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AQ*+\æš3ºuxªðóåŽš',_binary ':”U±A%\Ç5%cñb\î¾/‘Nh¦¶:\Z6{\ä\ç\Ö\×','',0,'?'),(_binary 'UT\\¶Ž™\æ|(ß¬\è¬\n\æ¸','wp-content/plugins/woocommerce-currency-switcher/css/switcher23.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X¦8»¡G\ÎU„o!¼\0C',_binary '<zBK»/ô¨«°°)\ï”oYevD\rOø*»\Ý','',0,'?'),(_binary 'UW\æ\Är\nY`öw`‡-`\Ø','wp-content/themes/flatsome/inc/builder/core/server/templates/iframe-frontend.php',0,_binary 'kBBšq#¦…\Ýó•M–w',_binary 'kBBšq#¦…\Ýó•M–w',_binary '¯ÿ_Àõü¶ £“\èÓ‡g¸\ê/+|\ni*\ÏrŒ','',0,'?'),(_binary 'Ue¦tA&\ØR|¯²\rQV','wp-content/themes/twentytwentyone/assets/sass/04-elements/forms-editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ\Ç[\å¡\àÁ*rj\ÃP”ó,',_binary 'A¬Hg\â\Î[rG\ß^ŸŠ\ÒkÎ˜\Õú©‚i¸©<“\0œ','',0,'?'),(_binary 'UfT¥^1\à\Ó\Ü\0\ê=6”','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-payment-token.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\É\åÁEøc\r\Æ\ãùJ•‘',_binary 'qŸ¤ñ2P¨E\Þ=þ®´\èö48ß‰“z\Ëô~“@\ê\î\Í','',0,'?'),(_binary 'Ujˆñ¯õf5D7}¤Ž','wp-content/plugins/woocommerce/includes/class-wc-log-levels.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÉdG+\0B±5ŽI2\ï„]',_binary 'Û—\×\×\îd°c5qž¨™«d\Ê\à‡ô*\0ñ†¨\àUO}','',0,'?'),(_binary 'U€.\Õô½‘G\0\ã\Äh7K','wp-content/plugins/wordfence/modules/login-security/classes/model/view/tab.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Š÷{\Î\ÈÇ²\Ù\Ùê²Š\æòT',_binary 'sÁ×·my(\å[¦~„úMŸÀ™®\Ë\ßN\ÓÔ˜óø\é;i','',0,'?'),(_binary 'U† $A=©He\Ø|\îzÈ–(','wp-includes/Requests/SSL.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÓôSUa \ío²\Ø\È¦‡',_binary '¦&©K•¿psÖy\äÿ\Z˜@?7GŸc®#EU›','',0,'?'),(_binary 'U£–*„\")õ¨×·:”','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-control/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õ¦Íª7Zÿ5Žl\ßú~¬',_binary 'A€8UUo\Âa½(\ì”% \05£O+¦t¼ø~$\Þ\Ê','',0,'?'),(_binary 'U<¢›[\"\Ê7¼9ÿW','wp-content/plugins/woocommerce/includes/admin/views/html-notice-no-shipping-methods.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0s’Ž…\Ü\Ãà²ž\"b·{\Æ',_binary 'Ló°Œ9(\Þþ\ÍðÝ»z½Ua¾õˆ\Ã\Ù1¨3=','',0,'?'),(_binary 'U¢R®\Å\Ðf[\Ô\ê˜ôb','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader/class-php-autoloader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'šú†ù\"Sy\æ9Añ. b´',_binary '5Ð“ªŠ–¯¶:\â§]Fª2?>ùT\îƒ\ê\Î­˜hœ','',0,'?'),(_binary 'U¢\ÊI0Y\á¼Z…¿öµŠÞ˜','wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src/HtmlProcessor/AbstractHtmlProcessor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ºUcNÆ…Ñ-°i<þ¾À',_binary 'k÷\ËY :†Hœ¾˜qM\Æ\î\Ëy 6ñ`\Þpi\Â','',0,'?'),(_binary 'U¤¾3-õd\Õ\èñ}\ï','wp-content/plugins/woocommerce-currency-switcher/views/plugin_options_2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ó	ƒ\Ð\à,N\ï\í\ê>',_binary '%:™ o\ê\ì”\Òu\Z’\ÜdŒ#gM\êøŠ0\ãvóôÀEm»','',0,'?'),(_binary 'U¥´‡¸ºª\å0c§\"','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/use-forced-layout.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ù¸\Ø*ƒ¿´oÓ°d\Ü\ØhXð',_binary '°$<N0„´ú[þF#K\\/óœºþ¹„¶Bo\0\Ãö\î','',0,'?'),(_binary 'U«3\ïS¦Ø²#³\Û','wp-content/plugins/woocommerce-multilingual/inc/wcml-core-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'txôD´j¹9‘\ÍÁ',_binary 'ú\ìLI<™Rø˜x[ 9y`j?^§\Z¢@jTŽ¶n®ó®','',0,'?'),(_binary 'U¬nÉ“b4lZ,I','wp-admin/css/about-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å‡\rü\æÜ†\ÛUj•¨w',_binary '^>2o=†ñ¹˜DþB\ß\Å\Å\Í&\Ä\Ôòo0	ð!W»ZO','',0,'?'),(_binary 'U­U‡C6Uh\×{(´M‰|','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.resize.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\Ù;PI\Þj\ê)‹ ¦‰Û—x',_binary 'v/Ó£³©ë³ƒWñªVü\Ú\Óh×®\Ì2oÀ+~C¤®rcœ','',0,'?'),(_binary 'U®Uqˆü:~†C‡\ï&HÀd','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/colorpicker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<Ð¬´ZJˆh\åj/Î',_binary '°R\ÞJ\Ä\Þ0±—–?ÈƒD\Ö\Óf\Ï;!?ŽF\r‡À’n','',0,'?'),(_binary 'Uµñee)\Ò\ÐG}	uG\á','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/single-product.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹«\å\Ø„-¯¢\çw6·\×',_binary '\0ù\íecy¥o—J²\Û\ÍRQOCA\Ë!\í;‘\å\ÊM','',0,'?'),(_binary 'U\Ã\å\à$i\"u\Â\Ê&\Ëô¸9','wp-includes/images/crystal/video.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”\ÛýŽl¥‰Ú¤¸;õ=',_binary 'ú™S\rI¾°U›Œ9_<\â÷µf`…\ì&HYw\Âuˆ','',0,'?'),(_binary 'U\Æ³»ôBT{<ƒP]Jf“','wp-content/themes/twentytwentytwo/inc/patterns/query-grid.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' *]\êX>%F5Am\Ìj+',_binary '„h0\ÖÕ’Rý¬Y\á”n¿w\Ü@\í>Z<™T•\ÄN+tŸ','',0,'?'),(_binary 'UÈ‡Žµr9÷\Úi;/t>','wp-content/plugins/woocommerce-multilingual/inc/template-classes/setup/class-wcml-setup-translation-options-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' X\ÎÀt\Øðp\ã`¸§\ÕóR`',_binary '¯\Ò\æ÷8¿\ãu\Èn¡Vñ<¾“¸ aü\n¾Âƒ¤•½*','',0,'?'),(_binary 'U\Ì\×=\ãþ\Å>¼†wX','wp-content/themes/twentytwentytwo/inc/patterns/header-title-navigation-social.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ü8µ\n©\Ïhdò9\ß\Û\åM7\é',_binary 'ò\í´÷ó\ãW\"\ï—\Ãf\ï#1­ÿ«Etbúj\ã','',0,'?'),(_binary 'U\ÎS5ñ”\Â/‰\Ý\êø\î\ßBc','wp-content/plugins/woocommerce-currency-switcher/js/sd/ranger-23.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'é‘·Qf¤k<\Z˜”qf¦',_binary 'E\Â ½ ¶¸iÿ¢¼z®¨Kæ”¤¼vk|\ÂÐ','',0,'?'),(_binary 'U\Ï^\Î H\íT¤7j','wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-audio.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&¬\ä÷Ä ±\î÷ä–³Rû',_binary 'ù\Å\Ï\Â\ÄÎƒ,\È\"wó,úúL» Rj\0\á¦)M³o\ì—','',0,'?'),(_binary 'U\ÐÕ¸$\r¾\Ñ0\â{Z\áT','wp-content/plugins/ti-woocommerce-wishlist/includes/deprecated/filters.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Á‰D\É-ƒ¨\ÊZU]©!%z',_binary '¬¼„2rp‚ja)`*¼J\Ö_Q½·]J\Ó\åÎŸ~7¶','',0,'?'),(_binary 'U\Ôf+ž\nþ\î\ê5pyýÜD','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-tab-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X¥\ãYv÷\ÍŸ«qD',_binary 'wZƒ\ÖjC±”N\Ô`O­3\È ð\í\ë)(™<T\ê+ý\Å V\ç','',0,'?'),(_binary 'U\×i…\ÚZ^§_‚dµi¢‡<','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/ManifestGenerator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O&o’=ŸEðñº,\î*µ\Í',_binary 'XIž¿\Ó\áb(°L$×&†ðIÑ³A\ë‚w\à~‡ÿ(','',0,'?'),(_binary 'U\ØX¬\\R\0’}™\Òñ‹²\Ð','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-zh_TW.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D4XŸò\Ôsv™Ë°­\å\Êú',_binary '¿Zsƒ†§]F=ˆ8zbö\Æ\'`z\É\Å\Û7R0\ÎF˜5','',0,'?'),(_binary 'U\ÜtL\Üùð\'±\Ö÷\î,\ä;\×','wp-content/plugins/woocommerce/includes/data-stores/class-wc-customer-data-store-session.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"W\çŒw+g®QŽy˜ý\Ï',_binary '„„|v\Öbšù\Ê\Ê’c\ÚKÛ‚\Ï\Õ\Ì\Ír\â\ï\Ò','',0,'?'),(_binary 'U\ì\Øù\'û\ßò@<Ë»w','wp-content/plugins/ti-woocommerce-wishlist/admin/basesection.helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(h¥2\'°DLcc\ì3/\ë¨',_binary '}±ºD\ÊÝ©…¬\ì]\Z!\Ê\Ò\â—\Zy¬È¯Ï°O=õ`','',0,'?'),(_binary 'Uö\rIˆ¢\"õ5\ÎR\Z\Ç','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7´\ïù\å`¦e|5\Õ1ˆ\ä',_binary '\ÖÓƒ°µ\Z+oº\ÐØ¨`ó‹\ZNtý•¨\Ï\ën+D¦\Ô\ã','',0,'?'),(_binary 'Uù*­\ëp\Ùq†ˆðH‘\á','wp-content/plugins/woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Logger.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'aôO®W\Ùü(\Æv°!ò£',_binary 'þQ\\Wm\ä\Ç%\0’—Ÿ˜\ÒÆ¡b~µ\åÎª8\Ç\"T\ÓO','',0,'?'),(_binary 'Uù]¿½\èvøø‡!\Ä\Üú','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/express-payment/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ðzó„£ËžT\"™).\È\Ò',_binary 'U »À5\äNn)žmP{¤­e>>\Ä.\Ì2¢\Ä>\'g\Ë','',0,'?'),(_binary 'Uý\nug\Çÿñ‚”\ã:¥\äj³','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-address-block/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ù\ïao `qš\ß@ +»#òž',_binary 'ºN÷×­¡0ú\ÃS^D\Éü¼+ŒGk\ìu~\Ì\ÐV?','',0,'?'),(_binary 'V†q¡]o÷BÃŒ€•¾','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Parsing/OutputException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨‘\çÀ©¥\ï+6Ð¥',_binary 'W¶/¥\ØP\r•\Ò\à«ý8).º·;¡;ýô˜ÁŽl&s\ß','',0,'?'),(_binary 'V\n\Õ\ÉU`½_š5ú˜­8','wp-includes/js/customize-base.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@a\Æ\ÕÀ‰<\Þ„½’',_binary 'eÆ­ÿÇƒ\Ö\â‰=þ\ã©Ü FB}\ì:\ärŠbbŽœl','',0,'?'),(_binary 'V‘ô¹<\é™7Gºn\Ôÿ²—','wp-includes/blocks/separator/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚\\8My‹nWj|\0<\0',_binary '3\nf$R‚¯y£\í@Õ«2§­.KšHù>\äz`\Ò¦‹f','',0,'?'),(_binary 'VA\Í\ê\í\ê”D\Õ(\Z™Ay','wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-fr_FR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\àŒw¡Ë³\Æ\ÈC&\âm¸',_binary '\'š\ä\ÜSM;!ü\ê\çÏ‘\Ø­—%WN\Ö\åÛ“\Ü\ï\Ò','',0,'?'),(_binary 'V·¡\ä\Z§þ_\åRª','wp-content/themes/twentynineteen/js/priority-menu.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\¼ p7þ\rš%mÅž\Ä\Ôö*',_binary 'D(¥Tu}5{¦•\Ýþƒ\Ð \0+ü\Ü5g7`\è)\êyÿ','',0,'?'),(_binary 'V¼\r\ê§3#ž“Jò÷{','wp-includes/sodium_compat/composer.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“²X\é‘7¥{(G5ˆÁ',_binary '5<›±H\à\ß\éX0ý³\Éøtœ>®-\Ú\Ø­\à\Äýþ','',0,'?'),(_binary 'V#7A”‚¨²þ@\ë?÷øû)','wp-content/plugins/wordfence/views/unsupported-php/admin-message.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ò(`ª÷HMD¿¹A»7\Ê9',_binary 'y\Â\×I~	@VŒY247Ÿ&\ÈUü\ê˜uÞ‰«¹ \â','',0,'?'),(_binary 'V)\"#µ\Ê£\nÄŸ¿','wp-content/plugins/woocommerce/packages/action-scheduler/lib/cron-expression/CronExpression_AbstractField.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\ÆX\æúv\ÓvlX­8…š\Î',_binary 'qdwLÔ¹ºL“\é90¨\æ‡\Äk¶“9dZÿ£+T€`','',0,'?'),(_binary 'V2\ÇL\Öü\0Ûºó½','wp-includes/js/jquery/ui/controlgroup.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ê¦S}jCAe®—`\Ð×)',_binary 'HòN\æ\Öü÷=6‚«\\±8„\È3ú\å\ÆmŒ~\ä0\á\Âa','',0,'?'),(_binary 'V8\Ü\Ì8­ßŸ\rZò5','wp-content/themes/twentynineteen/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€\ÈEZÀcO.¹83¿\ç',_binary '\á4¨x\"œ#\Ø4\×Ï™½§w2 E\à\ï7¦ló4“1Ÿ','',0,'?'),(_binary 'V:•/}/Š¹\ÙhfT‡	','wp-content/plugins/woocommerce/vendor/bin/export-plural-rules',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ïò\ïU–Nl©\ËúÁý`‡',_binary '#)\Ê1ñyXws\ï=gF\È\ïŠ­‚Ÿ^|jp\Ì	_\ÝQ','',0,'?'),(_binary 'V=?[ñ—k:N“œ\"','wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/mercadopago.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5I¾<qd\\+Ooò©',_binary '5\ÒbaEh\Ë+,ð*o‚U\Ù~o8\ï\r½¾9G\Ð<K›M','',0,'?'),(_binary 'V?ºOŽN…ˆ\Íe‹ZF\\Œ','wp-includes/js/jquery/ui/accordion.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N÷r°\\˜\ÖY^q3Ÿw½Œ\'',_binary 't\Ò8±¬DGFˆ\æü d˜\Ç}¹rl¶Q\ã˜\Þ^\ßux”','',0,'?'),(_binary 'VJ*f°5\äön>9—>¸\ä','wp-content/themes/flatsome/template-parts/portfolio/single-portfolio-top-full.php',0,_binary '£Å†)+\å±7\n\ÒG\Úq',_binary '£Å†)+\å±7\n\ÒG\Úq',_binary '\ê‹5–\á²-?\ì”<ÿ\ÇO_f\îu®‚‹÷€g%’•Šš','',0,'?'),(_binary 'VL6\Ý7G^l%D5z3\È\è','wp-includes/default-widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\äB z\\f\0\É\í\Æó\Ç',_binary '%ürN8*G#˜’C¹\ÂUá´­P\àzôp_-\Ë\Ï\à\nÖŒ','',0,'?'),(_binary 'VOb%v\'À\ç°\ê!—f	ö','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-3-shadow-col.svg',0,_binary '\Â\Úõi´¤©æ™\é\îRšx…',_binary '\Â\Úõi´¤©æ™\é\îRšx…',_binary 'r”\Ú(0v¨\\\ßöœ4ˆ%­\ëW	¶\ê¸\Ô\É\ÂV0\Ì','',0,'?'),(_binary 'VWñ;zô\æ*°\Ã\ã(\ØºŒ','wp-includes/blocks/navigation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£Y.½¨\0q=\ÑÁŠWG§',_binary '«BT\Ð\'\âÖ‘O‘\Ï3šö\'2€\áØ©\ç0C^\ïHW','',0,'?'),(_binary 'V`¬Ú´ž\'!\ÉÀ¯ûŸh›','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-report-orders-totals-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZoüG‰\ÌUQ5X$\0¿',_binary 'XnI¡Q â‚»¿¿2Í±\ãl˜b–\áJ\ífF‹û”:ý]','',0,'?'),(_binary 'Vg	?ƒÈ\ä¾WI˜`','wp-content/themes/flatsome/inc/admin/admin-init.php',0,_binary '\Ý\Ú!û	¯å©«ðb”',_binary '\Ý\Ú!û	¯å©«ðb”',_binary '\Âÿn\éQ¯’\Æ\0>¢n›\Ü^Þˆ±	P•XK\Í\ç\"ÀR','',0,'?'),(_binary 'VhQµŽß•Ç¹«lh°Ò’','wp-content/plugins/woocommerce/includes/wccom-site/rest-api/class-wc-rest-wccom-site-installer-errors.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£\Z\ÕLQ©\ëU!ôŸ\ZšK',_binary 'sA°/\Ñ-Î’\æ­[ybsEx)\Ëq¦s7y\î\ça','',0,'?'),(_binary 'Vh\î\ÑXn\ÌA\Õó.\á2™z','wp-content/themes/twentytwentytwo/parts/header.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hPV\Ãÿ}e­¡J½”*\Öü',_binary '§g7u’Å\Ü\Ôgñ#÷S\ãE¶¢\Õ\Þ	ƒò\é÷bl \æŸE','',0,'?'),(_binary 'Vi\'\×\ãRu\Ëh:þÀ³u\Õ','wp-includes/blocks/query-pagination-previous.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(ZÝ¡•\ã[\âH…\àrµÁ½-',_binary 'ž‰\Ö2óc\Õò\Ä\Ù\Ô>2\åüQ_\èqD¦ª\Ö\rTD«','',0,'?'),(_binary 'Vne!\Êz0u1?¬¿','wp-includes/shortcodes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Á\ê¨›¤Vo	h±,Xö„',_binary '¶¨E[\Æ?¦\èö\Óò\ëeËRc¯úO\Í£4\Ú\'_“\Ï\r','',0,'?'),(_binary 'Vrm‘KE§p¼j\×\ä6—','wp-admin/images/w-logo-blue.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ý[N°W¢ð_p\àw®0',_binary 'Þ£^Qt\ä3ôHunUâ»\É\à~²\'»T2','',0,'?'),(_binary 'Vz˜Ü«¡ô\èû\r»·§','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-reports.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Zšq½–dÈš\"kN¿!W\Ïþ',_binary '¡(4¿{0YnöZ[\ÒnCñ‘\é\Ân~]\Üòÿv8\Ë','',0,'?'),(_binary 'V{µ\Ä\ÇP\\\í\íùt','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/order-summary-subtotal-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£Q\\ö\ê0ž¤¡±Ü£\ï,Hª',_binary 'º¬\ØÆ\Ñ\"š`²\\\ê’vG–´%S$±4‘½\ê\ÚA','',0,'?'),(_binary 'V}l…´ùAø\ÆÌ¢ŸÅ ôð','wp-content/plugins/woocommerce/assets/client/admin/marketing-coupons/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Å\×k.\Ù\Ù~gDù¡D4',_binary '£w„N\å6·…¸\Ç^¾³rú¿\î|+ÁÜ™\'\è\Ï\ß','',0,'?'),(_binary 'V€}§\éd–Ù¨\ìÒšML\ß9','wp-content/plugins/woocommerce-multilingual/res/js/scripts.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R²\Zþcß¯\Úö\ÓTŒ*´\Z',_binary '\Ýè‰¶Oû\ÃÏ´2W*~(GÁ¨˜eD\Äþ¨eJ	l','',0,'?'),(_binary 'V€«†Dp«6@Ž %\\','wp-content/plugins/wordfence/css/license/care-global.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œkK·.\ÒÇ´¬U¦\Í^',_binary '2òÆ²˜v{\"S\Ûó=««^!\Úþ«W:C,OJ•e:\É9','',0,'?'),(_binary 'V…\Ñ÷qqMµy\Ø4r¬(\È','wp-content/plugins/woocommerce/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregateInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Zþt£«†4¡=qÀ:¹Jj',_binary '\æeÇ¸e-u¤ý² %„ûn\Û\Ïý]§F\ï‹!3hŒz:','',0,'?'),(_binary 'V‹\á\Z­^‡xœ^½+¿«','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/taxes/stories/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zÍ§°qü°ø~£Ž\Ú',_binary '—kt»“¬u\Æ\'Ÿ\È\'CB…²a`¬©\Í_Ðü³vFh‘¶','',0,'?'),(_binary 'VŒ$‘\Ð–gKL\èÁªø\ÖB','wp-content/plugins/woocommerce/vendor/psr/container/src/NotFoundExceptionInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Æ\Ó\Ò	›ñý£\'1W\È\Ó',_binary 'Ó˜LúHyÃ‰}i|¹\Â\Û\0nn§\Ä\ÎG$¿j¬\ÝÁðÁ','',0,'?'),(_binary 'VŽ=PS©\0ö©ƒÆ¸¬^\ï','wp-content/plugins/nextend-facebook-connect/providers/disqus/disqus.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†Ô»+u5yU\Â\"ù¢\Ê',_binary '/#©s»ñêœœ\"­b\nBA—¿2\ÏUúŠMƒ[´þ','',0,'?'),(_binary 'Vž…\ï‚™ëŒ$\ØïŒŠx','wp-admin/js/post.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨\Â\ÛpþD|Ø¤m”\ÉÊ§\Ü',_binary '\åzt•¸G-¦(€11\î&2÷C5¿Uö\ík™/ÀbG‹','',0,'?'),(_binary 'V£\Ì4ƒ\êlÄ¦òwˆ\É/','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\á¾8\Û\Ú41„—5bE{',_binary ';e™\\ñ\ãYM÷\ï\Ë\Ú\ÏJ¢º]£¾hù[K“S~Ø§\ì\â\n','',0,'?'),(_binary 'V§\èUë¥®@£#ó2ûÝ»','wp-content/themes/flatsome/inc/builder/core/server/src/Collections/Collection.php',0,_binary '<p\ß1¶x\Ý\å/Ù£%xp',_binary '<p\ß1¶x\Ý\å/Ù£%xp',_binary '¨¨Æ¶ƒM\ã’\êŒ¸	tu¢4tk\åbšf\Ð\Ùòqa8,','',0,'?'),(_binary 'Vªü\Ça\è‰\Ü\Ò¶„7\Ü','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Formatters/FormatterInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']®9‘\ë|\ÝD)B­x%\n',_binary '¦ñHSÔ‘?÷•g¹n‡ª©À	ú›h\èh‰·;F³ð','',0,'?'),(_binary 'V¬Œ\í\Þrz\Í(¾nol*','wp-content/plugins/wordfence/modules/login-security/classes/controller/permissions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ê)¯S4C@\ár\0\\Z',_binary '\0\Çn°b„Ç»‘\á\ØIê¾ŠNºÜ‚–—Ó \åfR\Äz\ä','',0,'?'),(_binary 'VµQ^_—§\î`¬3ž¯jò','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Â*3]\Þ<\Íõ\Ý]\È\'Ž–',_binary 'Ð½rt\Ò\Û}¾Q\Ù7üˆ@¥ÿI=}´amu“(˜Q','',0,'?'),(_binary 'V\ÂT\ã“\Ò}bTû‚r(Š','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\×\ì,¼S=–\Ð\Í\ØT³8¨',_binary '»–ÑŠcY2\Ü5%Œ\É\Ï=dt}¯µ¨~^ÿ\Ä\Ë?','',0,'?'),(_binary 'V\Ê\Æ:\Ú0°Ä§ù[Hª¾','wp-content/plugins/woocommerce-multilingual/locale/woocommerce-multilingual-it_IT.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PƒßŽ3|c–VtG¹Á\â¬',_binary '½K7–?%Â£&qŒ.\Ý[0œ”\Þ\ÌO\Ô:œ¾5n±E:','',0,'?'),(_binary 'VÍ€I¹\ís›C \Ö\Ø]','wp-content/themes/flatsome/inc/builder/core/server/src/Transformers/StringToArray.php',0,_binary '\Í7œ>¯oh±”‚ª\Ø$',_binary '\Í7œ>¯oh±”‚ª\Ø$',_binary '|\ä)Ÿ1Ä¹\êZ©\Ã\ïÍ’Ž\ç_ñ¹\Ø\Ç|¢¤ú]9w\Å','',0,'?'),(_binary 'VÏœI°˜&t“‡F®²Q','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-products.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w}811vœ™!{ºBCY“',_binary '7	{¨§\Ü7Rµ‹®\Î@t\åX4­9\Õ\nñª\ìŒw','',0,'?'),(_binary 'VÔ‘ž\'UY\ÃL¬\ÞC\\?','wp-content/themes/flatsome/inc/admin/kirki/modules/webfonts/class-kirki-modules-webfonts.php',0,_binary 'YC‹\Ô|\à\ÆK\Ø³\ç	Z',_binary 'YC‹\Ô|\à\ÆK\Ø³\ç	Z',_binary 'hWXT´y5†j~;\à‡†\Ñ\ïY8\à¦Á/¨\'r\í_','',0,'?'),(_binary 'V×€\ã\Ä\'hý—Äˆ+:ŸÀ','wp-admin/includes/network.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Å‹Fz,À©|<³Ÿ¸@$',_binary '7ªZ\Ô-\î\Ç¾Sôô#v>\Ú(»M1¨ÃŽžŸ–\Ä','',0,'?'),(_binary 'VÚµ5¸(ü$\ÅÊ‡¬>3','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/button-outline-circle.svg',0,_binary '‰ 6$z\Ì\Ð[·˜#\Ö\çI',_binary '‰ 6$z\Ì\Ð[·˜#\Ö\çI',_binary 'ôZYöaeIG<V#ù{H}]E†I	·¥ˆo`µ=/\Û','',0,'?'),(_binary 'V\Û+’qx[`H±©\Î','wp-content/plugins/products-compare-for-woocommerce/style_templates/grey-gradient/grey-gradient.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô\×òo>n\Ù\Ã\r%[d\å\nR',_binary '={-£÷ˆ°õL[¸ªm.pý¥\èŒ\ë+Š\"§x|Zv\ß','',0,'?'),(_binary 'Vù¿ñ£²vÁij\ßr¶ð','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PantheonInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	Î´Ñµ3øl\î]\Ø\r¥üE\ï',_binary 'Né«¼³‡”U³˜P}\Ä\'!7o\Öþÿ‹møš-)~','',0,'?'),(_binary 'Vù\È\ÃøÁt~ò©ü\î 8%','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/css/abstracts/_mixins.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­óŽ¬	bñ6y­|\Ù\àÿ',_binary '\à-³J\ë\æ\è¤\n\ÐË‹T7§\Ó}Á\Øú\çÄŠW;\îq#^±','',0,'?'),(_binary 'Vú [•¯\\#\ÙOòø÷\ç','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-shipping/attributes.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z9’ó\\q®b{Š3(P{G',_binary '™;Èµ[\äkÁ|tõ÷-\Ä~\å\Ä\Å\é#\Üu‘Š\Í\ßS','',0,'?'),(_binary 'W\0¯\Ì§ù‡7fc|\ÂsA','wp-content/plugins/woocommerce/includes/class-wc-structured-data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«‚\Î~^>EurÛ®Ÿ\Ñ¼',_binary '-’„= \ÅJ¸tndn5*%À\å<Ê£%\æM\Ú\ë/sÂ¼(„','',0,'?'),(_binary 'W\Ñ\\°÷\Ü\î?ü \ãI›[','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/schema/utils.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q)F¤\ßzÜªd8‡\ìY@\î',_binary 'ý\ÔV›l“\Ê\îwŒ5Š§[!p£z%õ*\ÙA\ã','',0,'?'),(_binary 'Ws™$8\Õ~œ‚NÈ-œ@','wp-includes/js/mediaelement/mediaelementplayer.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ1\çÄªL¨\ïö5ú\Ñ!\n¡',_binary 'o­ò^:v\\‚¢õm¦o\×\Ù¾\ÆcTW[\é\ß\äŸk','',0,'?'),(_binary 'W\ÙýÈºþj\è.r\çY','wp-content/plugins/woocommerce/lib/packages/League/Container/ServiceProvider/BootableServiceProviderInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\çýUH‘\n5³±\Üê“ò',_binary ')@¡9€n3K‰p$9«bSü£P\Íed]\Æ:\Ã\r°õ','',0,'?'),(_binary 'W{1œ?\Ð\Ú0˜;hø\Ü3’','wp-content/plugins/woocommerce-currency-switcher/js/chosen/chosen-sprite.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%¹¬±µ\É\\k•\Ã9†·1~',_binary '‰ s7óelù^\Z°e5Gxû^¨\Ò eböO¥r','',0,'?'),(_binary 'Wkú„mÿ¯`¡^ScV\×G','wp-content/plugins/contact-form-7/includes/capabilities.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™™FþÎŒ6ñBMM¢ÛŸ±',_binary 'm\â\ãý)dVƒc¸ õU\'\Ù\ÚB\Z°\Ës)«Gk™»E','',0,'?'),(_binary 'W&\ËÖ´ ª)+ôÚ±¥ö\å','wp-admin/includes/class-plugin-installer-skin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŒYõ2cÙ‹„¤\ë\"\'ž',_binary 'Žh\í)\â\âª\äˆEÑŽw0@$ ,\0\æ3§˜~\ÍY\0ú¼]=','',0,'?'),(_binary 'W\'r(\Ç\ÓKø.‘(ö‡ox','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/elementor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æ¦Q¿/z\'	°aAóºk&L',_binary '%-ò¦‰\çþ´õ7H¾ý\ÐD: \ßòA Æ‡‘v+tM$','',0,'?'),(_binary 'W0Ã·g\Éb%ƒ>4µû','wp-content/plugins/woocommerce/assets/css/dashboard.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[%\ÐÁ\åýËˆÿPV&A‚¾',_binary '\í§ƒªÐ„\î“A\Îúˆ\Þô¥V’4\n¶Ž8_ô’','',0,'?'),(_binary 'W1A\ÖkðØ²¦¢\Úq•\'5','wp-content/plugins/yith-woocommerce-compare/assets/js/woocompare-admin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F²H\ÖTó|§=¶$M±¬',_binary 'Ù²ƒuŸ“”¡R4\Z+ö\'\ZkÐ²DˆœNh\r\Ü\çØ»b*','',0,'?'),(_binary 'W8h°!É©k®Ä‰\'“','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Cached.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r RU¬b\â*\Í\Ò\0\'µ',_binary 'x\í\î\Ñò<\Ùs£’BZš2œj§RM\'0%$¹\Üi{ V','',0,'?'),(_binary 'W;ÿi…“w\ëU-Ÿ\Ç|oû','wp-content/plugins/woocommerce-multilingual/classes/Reviews/Translations/FrontEndHooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"G—N’,d\á\î+\Éy',_binary ';%ù\Û\Êz\êi“M9 ‰\Ò\ÌCzu\Çqb9\îw\ížyN','',0,'?'),(_binary 'W?2.¨Ž\Ð\Ìö™¥W 3','wp-content/plugins/woocommerce/assets/js/frontend/add-payment-method.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'üûÇ©\Ùc	^e‹Šùc.´\Ü',_binary '\Þ\ßîš„]p\ÈsBÉ§º\Ç\"þIWTnŸR?\ä‡W','',0,'?'),(_binary 'WC<R\Z¼\ÝXŠ|¼f\Ò!V','wp-content/themes/flatsome/inc/builder/core/server/src/Options/Options.php',0,_binary 'µ\nD<¤‘\á\\›\ÖA\áŽûÀG',_binary 'µ\nD<¤‘\á\\›\ÖA\áŽûÀG',_binary 'O\î\Z\Ì\èBÿ±.¸q½4Qr{hB\Ú2\È\ØóV\è9{eT\ê','',0,'?'),(_binary 'WKœ\Å)3vI\Í9¹ß™j','wp-content/plugins/woocommerce/lib/packages/League/Container/Argument/RawArgumentInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç\ëÂ›Ð™O<ƒ©€]–NV*',_binary 'dsÏ·µ´þ\'&i6\Ê\ã¿Ø©ý¥\é‚<±ÍŒ®ð­','',0,'?'),(_binary 'WO[B\0\ï\ËAõ&‚ö\àˆ','wp-content/plugins/woocommerce-multilingual/classes/AdminNotices/Review.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'š’N ˜}wQó\Ì-&\Ñ',_binary 'ƒ\ÄHˆ¼H1\0®õ3Ÿ3[ýœ]U\ÄY¡$‹ui:\éZY\\','',0,'?'),(_binary 'W]µmó\ëA\ÈdUt·%Î','wp-content/themes/flatsome/inc/classes/class-flatsome-envato-registration.php',0,_binary '\Þ\îA\n±»³\ã´\Ç}ü\"U',_binary '\Þ\îA\n±»³\ã´\Ç}ü\"U',_binary '\æ	eÝ¢r~‹%pB¯®8D\îbK`?ß›ˆ„¹_¸','',0,'?'),(_binary 'Wco¾yjcg·\nœuû•™','wp-content/plugins/woocommerce/assets/images/mercadopago.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '““d\Z8\è\'3¾\ç\ì\èAq²',_binary '»•g\0\Þ‰=±Œ3šÁ-Óº®œ«\ß[YÒ4\Ç\æ\Æ','',0,'?'),(_binary 'Ws\å\ç{N\ÎhP—ršã¼±','wp-content/plugins/wordfence/lib/dashboard/widget_ips.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\áw\àð·9\Ê64\"òky',_binary 'øXù“Œ•\Öó\Í\"v\Ñù’‹\Ä-*¼ô£í­·ºøñ3','',0,'?'),(_binary 'Wvfñ-Ú™’\ãr\æ\æ€','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-st/icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\'®\Ûdñk\Û\Íƒ¶M',_binary '`<H®eAbk\Ú\í\ÇD¡£\Ø¢|•«\Â\ÓR•ÿ…§','',0,'?'),(_binary 'Wx\Z§Ta\ë\Ø7{\ï\Ë','wp-content/plugins/wordfence/modules/login-security/classes/model/asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\×|€€s,€=K#ó‹Á',_binary '6¶·\Öly„6É¦iú\Õ3U¡ \ë,’E[é²“9£‰','',0,'?'),(_binary 'W{°g- Xò\éû\'=n8','wp-admin/moderation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\ØEVUÀ÷uú\Û\Ú‡¤ú',_binary 'ºƒFq\ç6³£1»¶¢\É<£©ªw„t&\ßb\ß\Â\Ë\Ù1¦¹','',0,'?'),(_binary 'W})Ó–7£Œ\êe\ç}5\æ9,','wp-admin/load-styles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\á;\Ä\Íô¦\Í<²½¸\Ø\r1',_binary 'À; öö{—÷\Ô(\'Lñ\ä#N›¤¨ƒ=vyy','',0,'?'),(_binary 'Wƒ¨/	[_µ\ÖÕ·º\ã_','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/image-bottom.svg',0,_binary '¨H‡)õ\ï \á\Ìí›£d',_binary '¨H‡)õ\ï \á\Ìí›£d',_binary 'S)ž\Ç\ê,‚M\Í\á+™|[|B¼92J«®\Ò\Õ\Èþ$½ø','',0,'?'),(_binary 'W†…%ý \ëJ\ãµRŒ\æÌ•','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EðWMi6\ê=<*@}m¢ð',_binary '€ù…¦DŽ¤RV\\Å­\à<7ty	³,8\áY\ämLÁ','',0,'?'),(_binary 'W\ÍLjN/¼@Ï¢\ßÆ°‚','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SecretStream/State.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T	˜\Änrkœ\ï•',_binary '\å³;\\ø\ÂXÚ\î\ê/0;¾œQòP†.“B4\Ãò\Z\Ô','',0,'?'),(_binary 'W”U\Íƒ?À\ætl£/W >','wp-content/themes/twentynineteen/style-editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÁU\ëÑµz\Ù\èC7™S\ÚÁ‡',_binary '[¼\ÛEP\"b\0ÉŠ¾\ãª\"¯¬ŽBŸGµÜƒ\ê$™','',0,'?'),(_binary 'W”‰»að—>4\Þ\Ô\âº/™','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/module-manager/icon-128x128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5U4\ë\Â0J\íù˜¦\Ê\Ü\È',_binary '˜¼3Al€„¡x‰›\èö\ç\Ê\Z\ì	Êªg9¯… \ZK‘‚','',0,'?'),(_binary 'Wš+¨Å±ñdg\Ì>ˆ¹\Ïô6','wp-content/plugins/nextend-facebook-connect/providers/line/line.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ß‡ý•ò\Æ\ã2þÍ®\Z_\"9',_binary '°\Õl“O\Öyø\Ý\â\Ð\×Ióúnu$h€´¨ý\Þ\È)0R','',0,'?'),(_binary 'W¦’ÃŠõ`%\êp:I\Ð\í„','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/sime-right.svg',0,_binary '²ež.\ëŠ.­¿´tt',_binary '²ež.\ëŠ.­¿´tt',_binary 'c™\ÃÙž \Û\ãÜ²™ù¡^\ÇSv3i„R¿','',0,'?'),(_binary 'W³*¶Gó\É@\"‡\à‰ƒ¿Š','wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/builders/elementor/class-yith-elementor-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñú‹½ÈŒEb\0C¯ó³',_binary 'K\Ün&\á¶KŸ¨|½\î¼8\éli\Ú\Â\×L>¼£\ê','',0,'?'),(_binary 'Wûp0\àÑ—ŽÄƒ3Þ„”K','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/packager/icon-256x256.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%6go0Zshßƒ	\Ä \r\Ùø',_binary '¦¸p\í­pÎ’_‡Ÿ\Êvr\Ð\Ù\ÕÛ©0 P¼ú F\Â','',0,'?'),(_binary 'X\Õ\â¯\\shv]\ÝiB§','wp-content/plugins/wordfence/waf/wfWAFGeoIP2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ý‡­(ž0,m\æ‰G_Y3',_binary '^™)o¥B˜“¹¼½Ÿf¶g\Ë*\ÃV•P˜?…~\Æ\ìšu:','',0,'?'),(_binary 'X¸ñ˜cz¤R¢\é´\Ï','wp-content/plugins/woocommerce/assets/client/admin/analytics-report-taxes/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=n¤—¸û·!*Y\'ö“',_binary '=€£”\ë°	L”>\Ø}\ï0\Â\ÈË•ðÁXb‹ª‚8','',0,'?'),(_binary 'X\rþúˆ\ÔvX¾i£¦i','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»	m_d&Ôºô—‚0w',_binary '0”ìŠ¿úksÏ†z\Ê@þâ±‡)\Í·T÷+…ôœ\Ú\Ï','',0,'?'),(_binary 'Xœ°tð\ï\åb\Âþ\ÄE','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-price-filter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4HOõ™Ù…\Ì/\ÙUO e\ì',_binary '\Étud\ïÓ¬ž¤\áTo#°\ï|¡Å¿±±Ê´µphð‡—S','',0,'?'),(_binary 'XZi7	óþ9’6\Ã~`\Z','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/payment-method-icons/utils.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\è@\ÜE×Ÿf›n?±E\ëS\Ø',_binary '4bE_F\Ü²lº\ÜÐžqjgs«™¼JnMh\Ô”','',0,'?'),(_binary 'X*.<\×1m´P¿ \Òd#‰','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-video.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ri-ôü%e1\ÞiMf§\ï»',_binary 'os‘\ßÿ\r}p V¼\èü/*{\ïÿ¸v 8\îžh<R','',0,'?'),(_binary 'X*…+®\ç´\Ë\å•J','wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-troubleshooting-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZoÚŽ=\Ê|4\ÊbZ¦.\Ì ˆ',_binary ')r‘Ö¥>\×t•²\âHn1þGOœœ¾ñ³\åsNH¡','',0,'?'),(_binary 'X+Ló\0°}nÏ£\r\èe÷','wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/affirm.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\'\î0wŽ\ä\rl®½£Á',_binary '\r\Ô3S>\æª\\¨E=°nXI¼\àœûþ–','',0,'?'),(_binary 'X+Ù´°³\Ý3ˆ0†1ñ¢','wp-content/themes/twentytwentyone/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M3üžj\Þ\Å\Ûû²­“»p',_binary 'e­­›±h\\G\r\îDü|uLµ=¿~\r\ë¨\Ó\r~\"¦i','',0,'?'),(_binary 'X,\çEõCj$_ƒ¬8I§‚0','wp-includes/images/smilies/icon_cool.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n `—\ì÷\à\Íivj.\ß',_binary '\âäº‹F„9;2_	…$\Ê$~¾LOžaø6\Óññ¿_','',0,'?'),(_binary 'XIÐ–“\ê–^\0\êeŒË£','wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-completed-order.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\È{0a­Vô\èM\Ð\è9kþ',_binary 'Š‚l>\æX\Êø$º›ñŒ\"õ+\×\Ñ_\í?5ÿ’\Ì\ß![‚','',0,'?'),(_binary 'XLÁOnl¬y\Ç\Ñ~™s9*J','wp-content/plugins/products-compare-for-woocommerce/style_templates/sweet-alert/berocket-sweet-alert.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' u³}³f¦#jU&/',_binary 'O‡;n$E„\\%Õ³&\Ñ\Ï\Úq\Ê`†“\ÅPÏ‘ü','',0,'?'),(_binary 'XMŠ³„\\3\î-¤\é’\ï¥L','wp-content/themes/flatsome/inc/admin/panel/sections/tab-changelog.php',0,_binary '\å[;kvH\'_-|¾:{uÁ',_binary '\å[;kvH\'_-|¾:{uÁ',_binary 'þŒ÷@\ÞG\åÌ‘\Ô\ÉUBv*K•O3Z\Ã\ëÊ¦»','',0,'?'),(_binary 'XNí‡™Ôª¿–\Ý4*\Ü','wp-content/plugins/woocommerce/assets/js/round/round.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ò^]Ñ“!y3\ÄcŒ_\Ã',_binary '•ù\â\Ê®¤£Z ¿?S]oˆGú\Í(~n\Þ0_»','',0,'?'),(_binary 'XPŽA\È81ýƒª1=Z\è\ß','wp-content/plugins/woocommerce/assets/client/admin/customer-effort-score/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µÉ¿\æŸ@oE–\Ö4ž\Ò',_binary '[z\Î>vP\ÚSKW&\íT\Ë2Z£\Ðcvx\ãq{Ù£º','',0,'?'),(_binary 'XPÓ´!Ã¾À`³Á*\Ô\Ùc','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Property/Selector.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\ÉÁˆv¢GKº ±+`',_binary '\Î~<n¼vA\\¦òŽu:\rø=\Î\Ê\å\Ë\Ù.\\7','',0,'?'),(_binary 'Xe\ìø\Í|\Ø]\'3•»þ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/price-slider/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œ³7eeôm~\âs\Ò:p',_binary 'ŸØ·T01NnR‰2%¡!\×C“z–W¡h‰T\é\áˆr','',0,'?'),(_binary 'Xg#»m\rfšjž7m®^','wp-includes/blocks/post-title.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÍýuzT½»0sµ\Ý\'e9G',_binary '&=±Ç˜¿óýP)7\åýu9a$¥\Ê\ã\Èn	¬\å\Ö\åEy‰','',0,'?'),(_binary 'Xlc£`Œ·¸\ê\Â\r','wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-fr_FR.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\"’·¾MRtkrrGñ¿œ',_binary 'µo\èÞ¶5\çAî° ¿ùñU&™\ï\Û0y^˜ÿ5ù9\Ì','',0,'?'),(_binary 'Xq@W¹$)5ÿÇ»Z[2Ó¸','wp-content/plugins/woocommerce/assets/images/select2-spinner.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®ä€\0nwb†&‡òG=¼',_binary '*XO£\æuÔŸ\'®X›.¿…+VúV¡Ø®O\Û`ƒºƒ','',0,'?'),(_binary 'Xt&\ìjÀ\r7úXvs:\Ç\á','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/jquery-tiptip/jquery.tipTip.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÎCœ(\Ý\Û\ÄÁœO\ÛO\0=<\Ù',_binary 'ƒž\ÑeQZk®CÖ»ü¾²n\ßF¸`\Í~Tá»’\íi×¶','',0,'?'),(_binary 'XxT8\É\Ñü;\áL¾¶¯','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/grids/grid-1.svg',0,_binary '›\ÎL³5ªAEûi#+W',_binary '›\ÎL³5ªAEûi#+W',_binary 'Ñ‘{\ÐA\Þ\ãý\àw\ìÃ´½$\Ê9\ÎÐ„û\áx5A\âºw','',0,'?'),(_binary 'Xz_\Ê\ÉX¡Ÿ\'\Ã\×F\á','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zone-locations-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(Zl\Å\Õn\Þ\n?r÷”N\à',_binary '>\n¸\êûÆ›Â¡b§\ç®f«ilW¦o¦\é\Æ\æ	T\î³','',0,'?'),(_binary 'X„}ý\ämƒ\"u&jÄpÃ´','wp-content/plugins/ti-woocommerce-wishlist/includes/api/wishlist.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ìÿ|\'¦:Ì…ó=¶\å‚B\Ô\"',_binary 'ñ¡j™\Ö}™ûóDfjÁlñ\Ñ\æ1lU\Úóµµ\ÛT\âZß¬F\å','',0,'?'),(_binary 'X‘/HIô£\ä\Î\Òò°4,­q','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-wp-components-hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\È\0Ig0ŽŒd?™\Ð\Â',_binary '?Ê¶|\Ò}“Š\Ý¾f~	³Ü‚LC-J`À„','',0,'?'),(_binary 'X•eÃº\ØÍº!^\\\ê8\Ùl','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/summary/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚¥\Íö&4 	\Ä9c\àO7',_binary '\éÅ“ö)ƒ\Çe·L£½8õ–‘ó\êÈ˜\Ó:Y|¶r','',0,'?'),(_binary 'X–\êM¾·š\ÃxÚ³üJð¹ö','wp-includes/Requests/Hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…\ÉAQ\Íþ¬U;:\ÐBH\ë\éi',_binary 'ªÕšü¾”\è Qûæ†D¼P•\ÎØ‚_?y\Ñ`Œ£¡ø«','',0,'?'),(_binary 'X—:8+Ë“2>V]¬\Ë8\à','wp-admin/images/sort-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘´AÃ¬k\ì:¼bÑ‚vFj',_binary '\'ˆ—­aK\Å\0tGJ¯Bq…©XW*(J|1š£õz[(','',0,'?'),(_binary 'Xš¤¾v–\ZÆ’¯Š\"\ë$','wp-includes/Requests/Exception/HTTP/409.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|:\Ô\á™\í7¿È²uO',_binary '‘÷\Ç_M\Ô\á8Uü¼«.pF«÷ù\ÂwŽ:E`ðMB\âü§','',0,'?'),(_binary 'X–Ÿn\0Àm\ä¯òq\Ô','wp-content/plugins/woocommerce-currency-switcher/css/fixed.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘\\8.h…\Ø58\êüý÷',_binary 'm>0ð§C½/I§\Ì7¢\Ò	EušðF÷ü&Ã™ˆE@¡','',0,'?'),(_binary 'X¢\ØFlØ¯\ËfÅ‘›o\Û','wp-content/themes/flatsome/inc/functions/function-fonts.php',0,_binary '\É\ÖFñ£QŸ^\Â\ï\ÅjÓŽ\Üý',_binary '\É\ÖFñ£QŸ^\Â\ï\ÅjÓŽ\Üý',_binary 'øg±œ\ßøDI\áÙ³¾¸“j\â”÷kfO;J\'Ù·‹\ã’','',0,'?'),(_binary 'X¤G\rzp‹tŽ¯g\ä\ãió','wp-content/plugins/products-compare-for-woocommerce/style_templates/full-footer-buttons/full-footer-buttons.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I¹S©ü\Ó3Âµ¶ý²\æ|0',_binary 'ú®©Ó¿\îRòÀ]\Z²Q•X»POk©.ö›ˆg\æ','',0,'?'),(_binary 'X¥2›FGr‚\Ðm\âøóF\Þ','wp-includes/blocks/button/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Æcó£\æ\Ã\ê^€\ZWŸtˆ',_binary 'g\Ø\0³U_*§uø\í<\"å­‰¶À&\í%\ï\ê*Do]','',0,'?'),(_binary 'X²*U6`dc\é¬\Åf&0o','wp-content/plugins/woocommerce/packages/woocommerce-admin/woocommerce-admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÔŒÙ\0²\é€	˜\ìøB~',_binary '\ã°\ÄB˜üšûôÈ™o¹$\'®A\äd›“L¤•™xR¸U','',0,'?'),(_binary 'X²w˜Â‰r\Ûa˜˜.3','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-shared-hocs.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8huW\'‰\Ø\\Ròª7',_binary '\Ò%\ÇJ\Ï\â\ÌJY:_”XŽ3u“3\êX©^.\Ïÿ','',0,'?'),(_binary 'Xµs™\ÊÿYq\Ú\åžePL','wp-includes/blocks/code/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ð\ìä¥\ßô\Ö¿\êCx?ò',_binary ')Ÿ­\ÍR>Ih¦%¼\â\ï³# Q~ôõ\rP*~\ìÏ@c\êg','',0,'?'),(_binary 'X¸Oö¤ó7\×^öZf#¸\"','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-enhanced-select.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')z)—\á! J 1‘ÿ!',_binary '\ÉP&+xKþe™t‡5_\Ò8úÐ¹Òˆ\âÍš\È\ÛM','',0,'?'),(_binary 'X¸[â‹˜HÀnú\×Ì–	$','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ú®\ÓÏˆ\çB¢Ó‚LŒUó\Þ',_binary '²8WQ¾Fa\â~h\Zq>ôL\rþ\é\Ðò™Q\ìhžÜ§tñ','',0,'?'),(_binary 'X\Â\×\ßG°¦“ö•\åz„X','wp-admin/includes/class-wp-upgrader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&øB&\Æø(\Ê2\ÖL¥¨',_binary 'Ÿ\'¦¸c\à«\Ëod\åS%\í\Æ\0\È_„¯!U™C°½Á^>','',0,'?'),(_binary 'X\Æ~\ÊVzl!_˜]/ž-3','wp-content/plugins/wordfence/models/firewall/wfFirewall.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’Xü\ÏC’Á#B·sTøb',_binary 'Ã—GH\ì\Î\æ\Ï5kÓ¹r\ÂÜ°RR£\Ç_£x\Â-¨','',0,'?'),(_binary 'X\Ðk(Dñ\ÖqÈ›÷ýGö¨','wp-includes/js/jquery/ui/slider.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\ç/¾Lƒ\\Ÿ]¤\É\Ö\Ñ',_binary '’aN\æÿU¬ø›¡F¦F¥dî–™[¹sÁ\ÈÑ¼@ˆc','',0,'?'),(_binary 'X\ÔŠ\nIpµ¾W¬u\Í','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library/woo.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\Ãu¯:ñ«»œL .ñ\Û\Í',_binary '¯¢u¸!·\ÒKAï´’\ÌÂ®\áXÊô<L¶\0—;ØŠ·ª`','',0,'?'),(_binary 'X\Ö\'\ËM\ì-ó¥\ï\Ç]\Æ','wp-content/plugins/woocommerce/includes/shipping/flat-rate/includes/settings-flat-rate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\ÛoÁo1»Jw,g\í\Ì!',_binary 'pCQ™\ßümA,¦XóL\ÛT-J`u›–d\Ø\áI/+','',0,'?'),(_binary 'X\Ø\ÜN¡½8„jøƒ³¢cù','wp-includes/blocks/post-excerpt/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›vÀ1\Ú,Í¯eÜ’ð\Ó\Ê',_binary '”WÞ»i˜¨¶7ô5^gDn~Q\Â\"5Q WÉŸ„','',0,'?'),(_binary 'X\âõµ‚\É\Z®#g\r\Ñ','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Shortcut/HashParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÄÝºù\æýn\ØJ\Ê=0Ÿ',_binary '*L\Öê³®ÄžKW\ê\Ø\ê’_†ªø¨‰fÑ¼¹ÅƒP2','',0,'?'),(_binary 'X\ãº\ÌEg8|et+ºLõ\Â','wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-composite-products.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'É¥G$Ù²¬¼ü½?J^',_binary '¾\éš\îh¹ž\àš\Ñôz\Ý\"\Ä\á­?Y¨š.¹S&Öª_','',0,'?'),(_binary 'X\ä€F2“\Þ/\"ª¥\Ñ=h','wp-content/plugins/woocommerce/assets/js/frontend/country-select.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª\æ\áfñMÁö\ß\è\æs¿g',_binary 'Î—9\ê#l#\Ó%\Þ;2kðIOQ·\Þ~øÌ¿)Ï¿«±','',0,'?'),(_binary 'X\ê=\Ó2h4÷/{ +','wp-includes/spl-autoload-compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6õuõ{\ît¤\Õò‰›',_binary '\ç\Ë,\ÉZ\rM	>Ü…€\àg\ïpò/\é	Z\Z#`!û.','',0,'?'),(_binary 'Xð‡TCW_^¨·ogô\ê','wp-admin/includes/class-wp-debug-data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²X–­\Äf\Z\é0%À”\n',_binary '™\í\ÅPZÊŸ}ªMe`Auª\è±ÿú¸b	Z¯\í\È	','',0,'?'),(_binary 'X÷Vô!\ì&lšù†€\Ñ7\Ò','wp-content/plugins/woocommerce/legacy/css/twenty-twenty-two.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô\ØL6÷¬\ÝÕ*	r',_binary 'žt°^Y¨÷‹°R>\Õj\ÌûÁ,\riŒ E*O\Ø\Ç(\Íþm','',0,'?'),(_binary 'Xø@»¹O\Ò.caB\ßw','wp-content/themes/flatsome/inc/shortcodes/tabs.php',0,_binary 'ý\â•/Ý \Û1}ÿx¸·',_binary 'ý\â•/Ý \Û1}ÿx¸·',_binary '“\Ë†ƒe±[„\ê\"ª3\Ë?ª!Þ¹ö!³2c\á\à\éUu','',0,'?'),(_binary 'Xü]-\Ü1\éPR£15r\ÝP','wp-content/plugins/woocommerce/assets/css/photoswipe/photoswipe.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\â¯\êÇ~ðl…C\Í(~‘\Ì',_binary '\ÉÀ”Ù­¢\ì;„\áûYCÿŠµ¯\Âõ•|=†–•.’(ö','',0,'?'),(_binary 'Yeü\Ô|ù©\íƒ\Ã\0õ','wp-content/plugins/woocommerce/legacy/js/frontend/single-product.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£\ØrX1X\'\ÝrO\ê—&\Ð\Ö',_binary '6\nL|Wˆ¤®\"\èO˜¥ÒŒ„,´qB>5­nùœ‡#','',0,'?'),(_binary 'Yg\Ôv*\ã~)&\É\ZQ\Ê\0°','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Node/AbstractNode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[47¶¦\Ôw¸m`¢ª\Ü|u',_binary 'œˆ\Çl\Ã\ÔN(·¥\Ü\r…Ý‘Jƒ\é­l\éo¦ü=2','',0,'?'),(_binary 'Y›´¶ŠbÚ§,\Åý÷J','wp-includes/Requests/Exception/HTTP/405.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r)qOel\Ûñ\Æ\ãN\è\Ê~',_binary 'jòb\é±íš„\Ìð^U¨sv8\ÑÂ$b´„M\á3y’','',0,'?'),(_binary 'Y&¬\Ñ~ž$²8(¾\Èd','wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_OptionLock.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iË°g„u\ÜzžSºš\n)\r',_binary '&1R›‡p©O£Õ¹K˜u\Ø.i‡N/\æ5¶0ÿ&','',0,'?'),(_binary 'Y’—üEŠZS\åMù|','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Á\"…%{Ÿ´¥\èq)Uq—º',_binary 'ug\'\ì®²\Î\æ@%b?:,¢B£‡…ŽõÉ‘‹Y\'','',0,'?'),(_binary 'Y(\ãKýª\èg\0ûó_','wp-includes/js/dist/annotations.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Â¤{\Å.¨\Ì\Å\ÕAl',_binary '6~v”5ºeº´]/LrW\ìI²·¨*:³¯¨ÿ','',0,'?'),(_binary 'Y(\æWZgŒ½3Ø“)2§¥','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-wpfastest-cache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ýs\ZYn`ƒh #µû¡¸«',_binary '#ôPŽ*¹òjS\ÕBpˆHqÛ¸:“Y\ï\Åì´¡nt;‡','',0,'?'),(_binary 'Y,Qp\êgmu#—eŸ±¼~','wp-includes/widgets/class-wp-nav-menu-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ß;d\ä³|h{\îfw0.•',_binary '7a&5$€÷m‡ü\Zj?#\ßl:Å°\Æ\0FÐ¶fÇƒm)=','',0,'?'),(_binary 'Y/\ÝÞ‘ö	¡\Î\â\Züñ“','wp-includes/js/dist/escape-html.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Å\Î/\Ñ)\çVõ\"3\Üúj±',_binary 'Pt\ZY6\âx2J\Ô8\ãA«ÁÀd8a˜\Ï&|\'¦\ÌI','',0,'?'),(_binary 'Y3”,\Ùdò¯˜\0©V\Ów\Ø','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/StarbugInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·•\ÔõûŒbÀ£\n\Ë\Û4±\Ü',_binary ':\ÖÔšÛšŸ€”ü´\r°7»\0\ÙXŠB]%óHU','',0,'?'),(_binary 'Y=I²\'Õllª˜R8.¾','wp-content/plugins/nextend-facebook-connect/admin/templates-provider/settings-pro.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ªtÀ†6ò:\\:\îCŸg8',_binary '\ÒC3¡ùÖŸw1£\ïùŠ,Y\ÆG}>\0±&–B°\Ã29ø','',0,'?'),(_binary 'Y@˜E¾\ÊÇ²¢¡\ÏÒmü','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K«8Iºdp˜o?E',_binary 'Tó!›H	ù¢Ø˜ñ,Cô­a~¼KO\×PJ\è\áÿ\Ì9\ß','',0,'?'),(_binary 'YB`\æ¿º²&A~´h','wp-content/plugins/woocommerce-currency-switcher/img/icon/site-structure-optimization.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!3Ÿ”8¼ù6\ß>&þ\n\Ê\æ',_binary 'D¸w9\"€>¦%<‡·>Žgw“B‡:e«ð\ã’Å’ó\è#','',0,'?'),(_binary 'YBt\nª\nc\åÝŸ.µývi','wp-content/plugins/wordfence/views/diagnostics/text.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£\î\àŒnž”ÿW\Æhg€¼qž',_binary '\ê;þ<c¢½6\Ï|_‡]¹)\Ëÿm£ \Ó\É}pdþ­Ág	','',0,'?'),(_binary 'YFB1\í°j-\Ýé¶¢À)r','wp-content/plugins/woocommerce/src/Admin/API/Templates/digital_product.csv',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­ö\ì˜.\ÊÔ\Ñ4’u²c]',_binary '\Æ&U$g²\Æ\á[4³\"~ý~w>u!.\äm \ÏT\Ò\È|m','',0,'?'),(_binary 'YVô™2™•9}D8£','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\á=on~Zƒ„\ÒTOQ–Be',_binary '€<¸HÀ„¢\"\ØôF¯@÷¬Œõ%®®\Ú1`7<\Òð	¢\Í}','',0,'?'),(_binary 'Y]o>É–\Öþq´—\Çbµœ','wp-content/plugins/products-compare-for-woocommerce/berocket/includes/conditions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘¤t¡†Ÿ·] hÁ,¯g‘',_binary '˜NP±P§ë©¢²”\'/{slõG È·Š\ïô®H\Ä9P+','',0,'?'),(_binary 'Yaø¥Û²;\ÉÀ{h’ß˜','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/compatibility-notices/woo-image.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷´ƒ_c:‰ˆy\0¤\éd',_binary '\Ý.ÁYø\æ\éV\äsýÀS/¢\\¡œhg¸\â®ÿ»°‹ý‚','',0,'?'),(_binary 'Yi\ÐiW·S&>–i¶[r','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/GravInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\âÞ‘®»—U\ì@^LŸ]',_binary ')šƒ\ÌLB|@£š©£\"\ßU™eJE»Wz ƒƒ','',0,'?'),(_binary 'Yxx ÷E®Ðš6÷B\Æc','wp-content/plugins/woocommerce-multilingual/classes/Utilities/Post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Wuü\ÑAÉ»nR¸”>d\Ì',_binary '_ÿ\Õ\ê¬6ZKZ‚„é»´ò_ý\á\æ>™j¸\äö?\r\n','',0,'?'),(_binary 'Y}\Ýmc/F	=„<‡¾E','wp-content/plugins/woocommerce/templates/single-product/price.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½ý„zNuûF{3	¶u\Þ',_binary '™LE\å;¡~¡\Ä\Ö\åô\Ô&\Õ3Àg\n;ü÷«ñDt¡I\å','',0,'?'),(_binary 'Y…La\Ø€µh\Ð(','wp-admin/edit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñ\î¸I6$N».J\ëD?',_binary 'JP:‡\í)\ëq\æ±\ÕÁ»–«Vð}\nn´\íG‘Á¯\rñõ†','',0,'?'),(_binary 'Yˆ,e\êAõ¼wÀ`\á\Ä','wp-includes/images/media/archive.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\Ò\î\ßòhû\0\Ú\ÓÃ¬‘u',_binary '\0ýBb¼3˜»\'\Ï\Ô\'°„)JG –À](G\Å9Pr2 s','',0,'?'),(_binary 'YŒ\èA# ‹\Êú\Ôømd','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/previews/products.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?§H5 IT˜½\îyŸ}¶',_binary 'qÌ¼¨¶}\ÜO´u’YÆ¢+\èÑ’\ìy\ÝMñò—‡','',0,'?'),(_binary 'Y“‡\ÙÎ±\ÖÜº4V\È}µE','wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/eps.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡i¯rn\ë\Ó\Ïþ\Ø\Ç[',_binary 'y\æW³þ’„Ïƒ	—Ž¤\Äc®KC¶*fs§øƒù.œÁÁ','',0,'?'),(_binary 'Y™BŽô\É½\ï6%Ÿ•\Î','wp-content/plugins/products-compare-for-woocommerce/style_templates/full-footer-buttons/full-footer-buttons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\íÞ»&•ö«.ˆ\'õ/At\Ì',_binary '\Ö2\ìœ\Éü\r£#þ>…\Ã= ‹\ìöa0hGLs‹­2','',0,'?'),(_binary 'YŸBWy	+\æB‘Om\Çýz','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#ž:š\áN\Å\'”Dxƒ\ÑN',_binary '¦[§õ_|Ð\Ø~E©¶©\í+¯~\ÅE\ì€(‘`\í_ª¾','',0,'?'),(_binary 'Y 68\ÔH;%,¹_c\n€','wp-includes/css/wp-auth-check.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Új¼\àb\Öu¹\Ö=\á`c',_binary '¼\r[‰B\î{\'C½N5zZw’ pÈˆ’—IKñe ’\Ý','',0,'?'),(_binary 'Y¡8Ty\Õk\Ä1™\ÍMs`','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/payment-methods/test/payment-method-config-helper.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷fÐ–V³\0\ÊŸÖ¶',_binary '8¼º¡T…E¥.I\é\×ù2a\äÙ®\ã\ÙÏˆ\ïõ\Ä\Z´£','',0,'?'),(_binary 'Y¥½²õúD½Y\Å®\Ô','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/container-width-context.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'É¤ú\Ûü\Â/¨\\>9',_binary ';2¥\Ã\ê¼\0{\ÖLö\á‘\Éø\ås^¹•\Õ\ÔqÆ²~–Q','',0,'?'),(_binary 'Y­£ €…dP\'ª\Î\"!õû\á','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Åºû½\Ç>‡pÒ¸]Tš¦:',_binary 'lO|TÀK\Å\åf\â.Á€`~´Œ¥4,X–v†I›ˆ¥t','',0,'?'),(_binary 'Y²›j±ˆi€\ï\à›','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ãñ%Ô¼º{\Þ\ÇÀ§\àm\áü',_binary '\â¯\Ö\é\ß ô•U©,á¤™\"¥8%² £%OJ\ê','',0,'?'),(_binary 'Y¶\êabí†¸g\Zðs3# ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/title/constants.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®ö×´z:x\ÓÒ«“TPö',_binary '(ÿ¼\æ²h¾V{x·w\Øw‚³\ÌM\î¿\\÷=UÕ•÷.†','',0,'?'),(_binary 'Y¾J´\Ð|\È\í[D½\ìy±Y','wp-content/plugins/wordfence/waf/.htaccess',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£E\"xK\Ê\ê{\Ç8ödS³',_binary 'C‡¾ö½\'r…9½\ì@\âK¡Þ†t¡ª™ö\â§w#@kº','',0,'?'),(_binary 'YÀª\Ö \êW®Þ±GþŠNŠ','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/notices/Notice.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚\Û\ÂÂ¨HR•\Ãe•\ÆZ',_binary '.¹kžp\Ý@m\ìÁ«\ì\Ã×¨[ñ¼>M%Ž08R\"Þ¦\è ','',0,'?'),(_binary 'Y\Ânºa.k Ê³–˜','wp-content/plugins/yith-woocommerce-compare/plugin-fw/languages/yith-plugin-fw-es_ES.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ûfžm²–“jJ#tuU10',_binary '–—ü~ò„œœa\'ÀoFmŠ¢pis;Œò\ä\Â]M','',0,'?'),(_binary 'Y\Í~\åò*Mb‹¼=JC¢','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/custom.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Noi]\ì;±l’fKð\ï‘{',_binary '’o’mc\ë62 %C}\ÐgÐ—	¯”õ\ëó\Ï]˜\Ùb','',0,'?'),(_binary 'Y\Ô\ä\Ö\í]¦®ÅžI†•¨','wp-includes/js/jquery/ui/effect-slide.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à¶\îp5FŸ«4˜(‡\ç\ï!÷',_binary '½¢LŠªÇ‹ŸLøq?‡\í‚cø{;¬\ã\ÜQ~BJ~ñiF','',0,'?'),(_binary 'YÖ»Uª€\Õ\Ï}\Ãr/','wp-includes/SimplePie/Cache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	û§~Ü¯{Ê¹›½¦+h\É',_binary 'ùmd…¼§•\án\Înun”pU0 l½\à6­¤—ZišR','',0,'?'),(_binary 'Y\Ý\n·r¶òPGJ„Q¶ý','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/utils/render-standalone-blocks.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\ï©\ÖMš€vð4Kj!6',_binary '\Êe\à”%ö,\Õs\Î9\Þ\ç\"y1K?!†ì‡‰AS\"Pt(','',0,'?'),(_binary 'Y\ä\Ñ)\ì^÷n\'–¬“\íün\\','wp-content/themes/flatsome/inc/admin/options/header/options-header-refresh.php',0,_binary 'ü{¢\æ{~¥\ÕÕ¦\Å+',_binary 'ü{¢\æ{~¥\ÕÕ¦\Å+',_binary '’5/†þ\ÉT’Ê©‹t6Q»õ\Ð ˜æ¨¸ó\Ðõ','',0,'?'),(_binary 'Y\çULŠ5J\×Þ”\Ýv[ž','wp-includes/rest-api/search/class-wp-rest-search-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',ƒôx&\Ô°†ð{\n²xœ\\',_binary '\ÏsÞ¢š›™zj\ÔÎ»ñ\'Ò²\ÊŸ÷wE\Ì?õ†','',0,'?'),(_binary 'YôÂ°\ÇVùn”›\éB¬o\ï','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-multicheck.php',0,_binary '´\Ø6y\Ë$ƒwl€~{`\Ý',_binary '´\Ø6y\Ë$ƒwl€~{`\Ý',_binary 'Üª\ÂÂ¡¾¡HkY£„‹•\Õ:\Ú(¥\Âu\îœ\Ã\Ö\à0','',0,'?'),(_binary 'Yõ\ÊõÉŒ’8\\k¨±‘º†','wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-data-store-interface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ùm\×}~1mJdhŠm¡z…',_binary '‰°\ÄT½\á54·#˜\ç‹hD/i\ì@;@b¤\à\Ëo\Ó7','',0,'?'),(_binary 'ZÒ¶”\àƒªm”ME“\ä\Ð','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/tag-list/edit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l,“TÎº\ÄÇ†!\ÏF\Ë',_binary 'c‹´\Ú\ÃBüm4/0Lt+lJ9ZÊ«\Äñ‰ú²Ó€¿{1','',0,'?'),(_binary 'Zu\äRA­Q†\Õ~²\Í','wp-content/themes/twentytwentytwo/inc/patterns/general-image-with-caption.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´sŒ\Ó L\î“QD…B',_binary '©¿\Ú\Ü?\'\È1E\n9\ÓZxG1\ä\'\Ó\í~8˜ô\á±[\í','',0,'?'),(_binary 'Z<ÿ[KUu£e§´Œ†','wp-content/themes/twentytwentytwo/inc/patterns/page-about-large-image-and-buttons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2j‹qµ\Úðš\Ø9\Ï\ÞKŽ3',_binary '\\´ò–&e p<ƒœ\Ùä¥ŸoGsØ´w«X[G~”Sñ\Ú','',0,'?'),(_binary 'Z‚P(\ç\ìÄ\ã\ÓK®C¨3','wp-content/plugins/woocommerce/includes/admin/views/html-notice-regenerating-thumbnails.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´\ï>\ÄV@)©©;±ø\é†Zð',_binary '-5ñ[\ÑsòJfÙ²¿geå§Š\ryu¡WHag=¬','',0,'?'),(_binary 'Zy—pó-™\éºL\å\ê\ë4','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-subtotal/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(ŒÄ«[k\×m8\ç±J\Þ\à(',_binary 'lKŒÑŒV4A{©\Ý¾A^~‰2—XE\çý}–¤\å\Å','',0,'?'),(_binary 'Z\Z\'ñt\Ô|¾õW\ÊB\å','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/StarbugInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·•\ÔõûŒbÀ£\n\Ë\Û4±\Ü',_binary ':\ÖÔšÛšŸ€”ü´\r°7»\0\ÙXŠB]%óHU','',0,'?'),(_binary 'Z]È—\Z¦d€J-,:#qN','wp-content/themes/flatsome/assets/img/payment-icons/icon-visa.svg.php',0,_binary 'X\Úmk\àj\Ð\ß,g´ð+\Ù',_binary 'X\Úmk\àj\Ð\ß,g´ð+\Ù',_binary '8Æ€•\è\è\ß.q‡\Ðd~¡ª×ª‚v\Ø\Û+\é','',0,'?'),(_binary 'Z\'ô\ã;%”\í\è\Ð.Ç“©','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-top-rated/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´W\Ç\éòb\r‘\ë¶{zxØ…',_binary '\ÎNv˜\'\æ‚\à_€”?ª^\Ñi%û3zYx\Ì8¿«#o','',0,'?'),(_binary 'Z,œ\î€\Ú\"ú÷dT¡¤p','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/error-placeholder/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#‡DŽ?g[º`¢ò`\Ö\Å',_binary '>¬˜1™i\Ô[\Üÿ\æŽ \Îý‰	O%fE/•£ˆ«Dò\æ\n','',0,'?'),(_binary 'Z2ûtÛ”[yCU|P8©','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/countdown.svg',0,_binary '\Æ\r#&¢\Ì\ÅF\îP’v\Ê',_binary '\Æ\r#&¢\Ì\ÅF\îP’v\Ê',_binary '\å\ê[%Cl\Ï`Í‚O1“øª$P¯3ò}wv,«5ù#\è_','',0,'?'),(_binary 'Z3Í´´\ÍAÀ\äðs‚„','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/button-round.svg',0,_binary '®ÇŠ_\ë\á%:û\î„HM',_binary '®ÇŠ_\ë\á%:û\î„HM',_binary '\n-‘º\Ã\Ô\á”ôj\n:±=\Èu\Ù(\îW\Ë&DP9ˆ†|Z','',0,'?'),(_binary 'Z3øþ¶h9›vlûŽ)\à\È','wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/privacy/yit-privacy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž\â•gh\Ð\r:ZÓ©',_binary '|\ZSmO\Ò&b»¸XÂº;s€½xF•©\èJ\éfzQ/¿À','',0,'?'),(_binary 'Z4<n?e˜ñ²','wp-content/plugins/wordfence/lib/wfConfig.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—\ì¸\Õk—\è\Êû\×\Îkg',_binary 'œaŽ5,4ü\ä‹k@SJü&/`ó…—D~»•%Mözõ','',0,'?'),(_binary 'Z9“¶\Ó}.\Ò\ÂJ¤\Âk=ª','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P1p1.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8I¢\ã¶\Z\n\ÙÓ£‘',_binary 'i>z’½R“@¯\Åò\á\Â\ãkôW\à6ušk\Õyˆ','',0,'?'),(_binary 'ZA£P\çð¾ºz›¤¯\Ñ','wp-includes/blocks/pullquote/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±\Ì\ÍGÔ¤F¢Ç¾ÈœJÿ\â2',_binary '±f\ê\É?\îÊ¤;«À\Éú\Ä;µCœ€©d¨›`Ý•j','',0,'?'),(_binary 'ZD\á°:-h\Ð${\ãma\Ï','wp-content/plugins/wordfence/images/sort_desc.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ä\ã?Õ¦‡)X²?¬N˜',_binary 'b\ÆEÔš\çBŠ#:\Â(²#\î=_(\Å\Z€Ÿ\Ú| ‹U\æ#\Ä','',0,'?'),(_binary 'ZEr*If\Ñ)ŽÜ—v¸','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/chip/test/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–·£²¶ôö}œ#µM\Ó\Z\Ø',_binary 'sÅ‚BvJŠ`n•wRB\"4Õ¶«¥<z\Ô%e\0\îu¿ÀT','',0,'?'),(_binary 'ZHÅšnš\Ð\à²W2š‘¬\Ï','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/filter-registry/test/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñ¯\íŽ\Ùñ0º\Ø\Î}\Ê\ÃþD',_binary '\Ñ4¯†¦Qº`\á\Æ_\ÓP6‹\×ú\nn\Ì\È\Ã}\ê\ÅcI	u','',0,'?'),(_binary 'ZNÿ‘¤d°¬c\ÔûÉ®\ÍR','wp-content/themes/flatsome/inc/shortcodes/gap.php',0,_binary '\Óf¤5…›\Ï\ç(L4j\ã',_binary '\Óf¤5…›\Ï\ç(L4j\ã',_binary 'À=$Ôµ0\àF\î--H\nõZ\Èû‰\ëý>/M\Ø[ž:ƒ?%','',0,'?'),(_binary 'ZPµe2I„® \å\Ò[Í ¹','wp-content/themes/twentytwentyone/assets/sass/07-utilities/a11y.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \Ð\'˜\æ£\ë\îŽ=y,q',_binary 'À\â$’FT\æ’\Êœ~K\ËK\ã`Ÿe\ëc=«ü;ñ\Ù\á;','',0,'?'),(_binary 'Zcö0\Ï\æ”hv5«\Zš¸','wp-content/plugins/woocommerce-multilingual/templates/languages-notice.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—NwVJ3-®\"‹f6	±',_binary '0	\à\ß>TRŠKQe©g€—_\ËÑ¦ðk€„w ¸“\Ï','',0,'?'),(_binary 'Zh²\ç!\Í{Df©Ÿ6 ÷','wp-content/plugins/woocommerce/assets/images/marketing/automatewoo.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾\ÔûZ\äŸ|ü\Ø)	',_binary ')\n\ëÁÊ¾{B2­HG\Ô|Ú’%\É\Í.Bp2\È\0¡\ì\ã','',0,'?'),(_binary 'Zxˆÿ1¡2K\ÓZ¤,¸\ì','wp-includes/customize/class-wp-customize-header-image-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<Œ\0W>$\î\Î\Ì\å©l\Ì^Ò³',_binary 'Qy(uš&¬©\Îv²Ó³\'-\áù}\åhÕ’ª\ÙX…\îŠt¡','',0,'?'),(_binary 'Zx\à5\ÒØ¢\ãQzD™¸¦ý~','wp-content/plugins/woocommerce/legacy/js/admin/wc-enhanced-select.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?e‹£\0\ÜG=B’†\Â',_binary 'žðÿu¿F	²b²œ\ê~T,”˜’XÁ\Ú\Ôl\ÉN2Ùª\Þ','',0,'?'),(_binary 'Zz©Ž·Š_)Y›—u™¢ôP','wp-content/plugins/woocommerce/uninstall.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÎL&Ÿûr#\"=zm®¥',_binary '9ß‰\å4ñ\ÈýAK\è)6lB9=+úI:º®S¦\Ïiù:)„q','',0,'?'),(_binary 'Z|™g\éhœ\ßyÆ„ld','wp-content/plugins/woocommerce/assets/client/admin/chunks/8544.style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸\àyVtXŠEm	ƒX\Ä',_binary 'wñK¨­Z\Å0·Í˜ðbtn?§ÿ.®·n3u•	£ê³','',0,'?'),(_binary 'Z}q\ë0\Ï\×\"5&Í¹>–','wp-content/plugins/woocommerce-multilingual/res/js/wpml_tm.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¶^ô\Ë-¼,`Q\ï[YÁd“',_binary 'YWnÿ¼Ã¿z@pü\Ø\"†\ÞðN¦xõ?2\ä\îr/7®G','',0,'?'),(_binary 'ZÒŒ£[¼ø\nv\â\Ë\â	F','wp-includes/SimplePie/gzdecode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'š„rF<”\ZiÇ¨u¼\Ù',_binary '|–R\'gAE©ÛŽš†\ÓqŠ±qT!\Ü\Þ:\ÆÿO0\Ê_','',0,'?'),(_binary 'Z„\ëÕ‘Y+ø§EXe\Û\Ç\É','wp-content/themes/flatsome/template-parts/portfolio/single-portfolio-bottom-full.php',0,_binary 'O(o4¦Ñª½\äý¦@©§',_binary 'O(o4¦Ñª½\äý¦@©§',_binary 'ð—o!Mº¹W=ÙŽ\á\r’¡3q°\ë!@\ËE¢\ÓÕƒ¹','',0,'?'),(_binary 'Z‰ðŽ˜0s{²\0Gt\Þ÷\ÔZ','wp-includes/blocks/categories/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p›ù	¾=«9!U¨\Õb',_binary '/ù\Ú]\íOl‰\ïkÚµ\×/Ò ¼[qŽ>>\åÿ<x\Ê\Íl','',0,'?'),(_binary 'Z‘8¤\nš«„Ï\å€\à','wp-content/themes/twentytwentytwo/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'se«”\Ê5F\ÞýÑ…”\r\\M',_binary 'wnñú\ÛSsŒ6”¢•¾q\ÎB\êq\ÙHAz5S›\ç°ó','',0,'?'),(_binary 'Z•R«óR—¤b½µ\ß','wp-content/themes/flatsome/inc/builder/shortcodes/commons/background.php',0,_binary 'žI ;4rUh\0˜=EŽž',_binary 'žI ;4rUh\0˜=EŽž',_binary '¹\Ô‚\ÆDw¤]K‰\Ö,Ô­=K»\ãpÍ±„ƒû¤Žˆ\Æ','',0,'?'),(_binary 'Z˜_\"Œ\ê~´J\ÏÀ\É\ä\ä','wp-includes/js/wp-custom-header.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€³ª¥n˜ÿ(F\ÑÌ½\Î',_binary 'e¿¸>\Å\Ø\ÖWZ\È]\î‰\ßm\×ö˜lÎ¢j‹Œ³ei','',0,'?'),(_binary 'ZŸQq¿œôô\Ýþ]}f–÷>','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductTags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÀUs)S\å\Ç·£p§G8¯',_binary '›¦›XA\ê&ñuõ¹@pc¨\ëþ2\ÚM‹À\èok€','',0,'?'),(_binary 'Z£°Ñô„ûÝ’¯ºS¥','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ló¿Œ\Z^Z’HG³%©O£',_binary '‰m¤»Ÿc´;ò\nyã²\È\Å0,\Æ5ÿ‹\ÙF|=\ÈC','',0,'?'),(_binary 'Z¬\n®ù¢%¾\r\â\È0Á\×%','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Comment/Comment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\è\Zªµw4÷ð\Ä+û\ç˜:',_binary '–¸‘ªrY)\ïo1k°Å s}\êý^€\ÐÇ¦ú@3','',0,'?'),(_binary 'Z¬\Ê\è\Ä %/»Z¿z9ý\ì','wp-admin/includes/taxonomy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ô=™—VR<`ñ¶&º!QJ\ä',_binary 'þ#UiS¢žu’œ‘sò\no\ïHÝ¨t\Ípa˜(ˆfþ','',0,'?'),(_binary 'Z®\ÃBŽ‹4{¯«\Ýˆ\ä','wp-content/plugins/woocommerce/src/Internal/DownloadPermissionsAdjuster.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹ÁMpö\ã\Þ\"i\Ì\â-Ch',_binary '\Çþ¾mMðn\ê„\ÙñqB \Ð`ú\Ô\Ä\ëX \ä†2jL/G\Æf','',0,'?'),(_binary 'Z±\0ƒœYˆ³’³ Ã¦fg','wp-includes/js/crop/marqueeVert.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®š\Ìñ\0¤¹“9­ÿR\Ô\Ü\Ç',_binary 'Kªcg$£eÁ²Š2\\p\È$\à1z¥Ž™œ`CkJ\Æ','',0,'?'),(_binary 'Z³E`f-Z+­’­\Â\Û\"','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/jquery-ui/images/ui-icons_222222_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's£Nµ5‹J¤šA\ßZe6',_binary '´Êª”»Z6\ì‚\Å\å?c7<”J\Ú&–˜\Ø\\`jF\×','',0,'?'),(_binary 'Z\Â!HI´h„ \Îy\àr\ÚG®','wp-content/plugins/woocommerce/src/Internal/Admin/WCPayPromotion/Init.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Š\0ŽÍ§o W1û\è?õ',_binary '\Z41øø7Í…nX­ªN{\Û×ƒZ,µ\È\'öY*','',0,'?'),(_binary 'Z\É\Î]À¿û’™=Ö–q\î','wp-content/plugins/woocommerce/src/Admin/API/OnboardingTasks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '££ºW¹\â®\Ìž…ç™œ¯\ä',_binary '’\ï§Y”\é€\ÊôM&kU¡5u\ÎSÚº\á-\Zq\'ù\n','',0,'?'),(_binary 'Z\ÑO{\åWÏœA¬:q¡M','wp-content/plugins/woocommerce/src/Admin/API/Reports/Taxes/Stats/Controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\ÕN„\åò\ë \Þ\äû¯3¶',_binary '4öuŠÕ£|ù\ãü\Ð\0\Ë;´Ý¨\ã\â\Ì\Õ4µƒ\n?3','',0,'?'),(_binary 'Z\Ò	ù\Õ3\ä°\Ä\ßñ[ˆ¸\Â','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/payment-methods/use-payment-method-interface.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h<¸‡†[¹\çz\êF9',_binary '”´\Ò5¯²\æ°ø’•cbh!t\"#e00ý\ì¨\ï\Âøž0','',0,'?'),(_binary 'Z\×_ô\Ã\Â\ÌPf<7#¦™4\Û','wp-content/plugins/woocommerce/assets/js/jquery-tiptip/jquery.tipTip.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÐÜ¯û)+7²±ó\ZÁ\Ò­',_binary '÷¨»gù\ç$óÒ®\å)pSuŒ¿\âi:…ƒ.¤\Å\çü¡','',0,'?'),(_binary 'Z×œ¼˜›¿Ô¿óGH\Ó','wp-content/themes/flatsome/inc/admin/customizer/img/product-title-featured-center.svg',0,_binary 'â¼ŽŸ»Mð\Ì8DlxeS',_binary 'â¼ŽŸ»Mð\Ì8DlxeS',_binary '%<´\0’\Ï\ï\ÑuÚpð…±\Òzž>À~p¿_B>ý\r¾\\\ì','',0,'?'),(_binary 'Z×žþ÷\Ç\"ý\çöÚ³¥m\Æ	','wp-content/plugins/yith-woocommerce-compare/assets/images/06.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ãz‹+¦­\Ò\È\r®',_binary '¥j<-jš\Úo\0kpG¯(l:—-ö¥\ß\Ôù#n\r[…','',0,'?'),(_binary 'Z\å°u=\â7¼\î¥0µ','wp-content/themes/twentytwentyone/assets/sass/03-generic/vertical-margins.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'º\Ùò²ùó9…¹/´\Ú+',_binary '³i¡>D 4rÎ#¯<7r^Y\ëi\0*zP\é\Ä#\Ó7','',0,'?'),(_binary 'Z\å\Î÷÷Gˆc\ÃÖ—Àø©','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/customtabs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'š\àD“”\ä´\Î0_Xû–r\Ñq',_binary 'a\ZØ˜“~£^#WQ7oR\àH`¨—\ÅK¥\ÅT¿¤qÀ«$','',0,'?'),(_binary 'Z\ç*Ô·ª!ö\"E\ZŸ@','wp-includes/blocks/pullquote/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BIÅ€Àÿ‹C}M\ã9¯\Z#x',_binary '°a 	\Û~a¹UlbG²AHbY®i18žb\Ð5Áˆ|','',0,'?'),(_binary 'Z\èR§\Ò\Ìr(ð&b°£:¸-','wp-includes/css/dist/format-library/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é+\Õ.\Í/ü\Î\Çk\á÷(¡',_binary '\áN\Z	‡Ÿ;ü\ï²\rBR¤x\ì\Ê%\Ð%\æCR‘<','',0,'?'),(_binary 'Z\é^†ø\îR\Å\Ð\\rg.\ï','wp-content/plugins/woocommerce-currency-switcher/views/fixed/product_user_role_data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ä¢\å½\Ì\Ø\ï–3ÒžË‚Û²',_binary '\æV;•3>a“]{]Qù¿ôƒ±1§\Ô\ÂŠ‘','',0,'?'),(_binary 'Z\é\Î=Ó§\Årc\"²”y®','wp-includes/IXR/class-IXR-date.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\î\ÊVdB+A·J?ƒù#',_binary '‡\á{~Ÿ(#\å¦\Z6už\îð¡\Ú,Œ\ê\Õ\Ç?€jk2\íñ`','',0,'?'),(_binary 'Zø3ù(çŒ¬\åòò’','wp-content/themes/flatsome/inc/admin/customizer/img/layout-left-full.svg',0,_binary '\È3\îŠÖ–™™i\×ôòúXô',_binary '\È3\îŠÖ–™™i\×ôòúXô',_binary '‘sk~†µ@\çr¼‹\ä\ïX\Ðnqe5	o÷#','',0,'?'),(_binary 'Zù¨Ô¾I$v\íM\Ö\ßVŒH','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/price-format.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C»)®µ/ŠÝ—‡+g\Ã',_binary '…/­ú2\ä7x\0ûÆ½\n‚oh¨œCŽúºF»\Ð6ðCo','',0,'?'),(_binary '[\0¥WEGjp°èŒ»ox€','wp-content/plugins/woocommerce/templates/emails/email-order-items.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' 7^»Òƒ=¿Ð©Ê­\Ã',_binary 'Ð©.¶\Ãjù/\Ò(\Ùë©­‡½!šþo\ZÜ¥£\í1=´.\Úr','',0,'?'),(_binary '[Ì‰\Ã\Ú$¨®®\'ƒ\á','wp-content/themes/twentynineteen/sass/navigation/_next-previous.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\í0]‡\åmI6¾.\Ì\â›\ÙY',_binary 'c\ê·úV”¼½\ßx±y(#il8L}eÞ·œð÷³','',0,'?'),(_binary '[\ÇG»¤üeöa\'\íi\è­\Ú','wp-includes/js/jquery/ui/datepicker.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'š.W¦…D—i½Aƒ—\Ö\ä\ê',_binary '%\Í\",ˆ\r`Öµ\n‰\Û|ød)‹&1|¶¢\Ï	É°q\æ','',0,'?'),(_binary '[R\ã6:”:\ËeºGôÁ','wp-content/themes/flatsome/template-parts/portfolio/portfolio-summary-full.php',0,_binary 'H¤¥b\Ò,KØ\Ä;v\çw',_binary 'H¤¥b\Ò,KØ\Ä;v\çw',_binary 'Ê¨\Ò\×JT1™d\Ïv}T^™\r\æ{\ÃG£Ž¤\Ó\Ä\ÕD7','',0,'?'),(_binary '[KÚŸ\ÔL»rJ·%¢; \'','wp-content/themes/flatsome/inc/admin/advanced/functions/functions.admin.php',0,_binary '»ü„\á’j<±+I¦Ÿa8AŒ',_binary '»ü„\á’j<±+I¦Ÿa8AŒ',_binary 'ûX\Íñ‹\ÛøgYBd\'%\æJ\ÇL”®\\À¨¡ù!9þm\Í','',0,'?'),(_binary '[$_Wwr–\é)ÿ\Ç^òo','wp-content/themes/flatsome/template-parts/header/page-loader.php',0,_binary '­ý	UD\Þ¼€´+»\æ',_binary '­ý	UD\Þ¼€´+»\æ',_binary 'N\Å`0k0Ð”¹}Ñ…\á¥\Ô\Ø\Ï\áˆ{Hlø5Ü˜\0}û','',0,'?'),(_binary '[&a\Ùd…ŸXmñ0ú¦Y˜','wp-content/themes/twentytwentytwo/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Á¶š1ˆÙ¡ji–',_binary '†‹k¤˜\\\êhˆŽ6k…¦K4&ümy0gø€ôF','',0,'?'),(_binary '[2üRöB€˜P\ÉûU^\Æ','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/images/submenu-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"§\ã«ª/ò‡5\Þ\Û\à\Æ\ê',_binary '†;ñŒv{m²Roøß‰˜ð\âI)m8Št¤aÀUŒ‚','',0,'?'),(_binary '[5ùš\×Y\ÙNh¦«ŠKˆM\è','wp-includes/customize/class-wp-widget-area-customize-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ó\è¢<wÜŒ*\Ñt”’\Î!’',_binary '44¡w\åVv…Oa5G•\Õ39ô\ÛI±Œ½ =÷5\È\âi','',0,'?'),(_binary '[;’;­@G\Ã|t\íWT_#','wp-content/themes/flatsome/inc/admin/customizer/img/product-page-title-featured-center.svg',0,_binary ',£Lü‹_ýXEõòE\Æ\ÔØ»',_binary ',£Lü‹_ýXEõòE\Æ\ÔØ»',_binary 'wÛ»S\':’\ï>\ÏK\ZŒ¯Š\Ý\Ù\Â@Ac\íMgE‹©Q','',0,'?'),(_binary '[?\Ó\ìú²\Â¼\Ç\Z\ã]£','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-reports-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';:1?¢Ô-öè±¤¹›\Ô\Ã',_binary 'xòH\ÆEu–\á½\êê¿ƒ¤28»þ\ßS\È\Ý\ÌSS\Í','',0,'?'),(_binary '[K\æ\ÆB@µø¬#9/2T¸','wp-content/plugins/nextend-facebook-connect/admin/templates-provider/settings-other.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\Ûü®¹Dy!‹4s',_binary '\å\È\Ëf\Ïr\'\ãÿ D\ÄgI\Æ\Ë\Ð4Ž!{Äµ$\×\íG\ä0','',0,'?'),(_binary '[S\ß\ÖDœ\Îw\ÍööˆÀH\Ò','wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-fullscreen-fashion.php',0,_binary 'Xô*²Æ•±\ØÆ»)\ÛS',_binary 'Xô*²Æ•±\ØÆ»)\ÛS',_binary 'dþ”\ÃyaM()Àò“\ÍDE\ÖNxG(KY 6»o<õô¡WL','',0,'?'),(_binary '[yd\Òd\ë\ì•ø¿?š\ÔOñL','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-2-3-col.svg',0,_binary '\nš“øóÄ‰¶~½f\'¥(',_binary '\nš“øóÄ‰¶~½f\'¥(',_binary '¨;NqD`l­¶ ¬+‚¡é§¿Ubž¬õ¨¢KŽ\ÞF','',0,'?'),(_binary '[Š\rœ•p‹\äË\ä¹6?¥','wp-content/themes/flatsome/woocommerce/cart/cart.php',0,_binary '\Âå•²g­\Â\ïÀ0f+\Ó',_binary '\Âå•²g­\Â\ïÀ0f+\Ó',_binary '\íR\ÊËºy¯A]&+i\äKµ´Ä¾\ÚU\àAH\áES<Á¯n','',0,'?'),(_binary '[Œ\Ã#Ü§\Z>]¿<¦','wp-admin/css/colors/ectoplasm/colors.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Âl¡\×•T¶”˜G1f1',_binary '%¿ßªg6zƒO(Dg\Ì`V\Ë\Ì\êdœ3\Ï;5¡*\Ãc','',0,'?'),(_binary '[|M\"\Í o³n\\‰¡6','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/box-right.svg',0,_binary '\Í?PðHVFY…XÀ¼YQ',_binary '\Í?PðHVFY…XÀ¼YQ',_binary 'c‘}\r\îiCq@\r&\æ\ë>¥\Ø±ýlVç»™g@6\0²','',0,'?'),(_binary '[’>•x‚;òwn/tH','wp-includes/js/wp-emoji.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+g³D>ówùf™Ù…*´D',_binary 'M£aF±©$®*\ëM©\Ï_¤¹“‘\án8¨\í·\Äv\ïûu\ã','',0,'?'),(_binary '[”¶]{ò­,ð j\"S','wp-content/plugins/products-compare-for-woocommerce/wpml-config.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…+ñ\'\'ë°¨ø\à?”û¬',_binary 'Òœ³D0:Q03v‹0	–\à½\Æ\åEc3…\ÓÑ‚','',0,'?'),(_binary '[œ\×#g\ÜÁ `\Í-RJ„','wp-content/plugins/woocommerce-multilingual/res/js/widgets.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'df¶\Â\n*~¥$uw—{L\Ñ',_binary '\ä%\Ñ| JH9G›”©K\ç>Lˆý+]Ýˆ\éû»\Ê\Òma\\','',0,'?'),(_binary '[«¥‹5„~ŽÀ&×\Õ','wp-content/themes/flatsome/inc/admin/customizer/img/layout-full-gallery.svg',0,_binary 'Kýa”\Ï\ÆÐ˜vNf“	Í†',_binary 'Kýa”\Ï\ÆÐ˜vNf“	Í†',_binary '¾û‘%÷ ª\Æ65ÞŒ=\Ó\×\ÉÖ€ka½D3\ÊMÏ¢ÿ³','',0,'?'),(_binary '[°*©Ê©ª—J†‚óA³','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yit-wp-pointer.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wF<J%\Ñœ‰ 8\ÈP‘',_binary '\ÔWƒ}Á\ä\Ü8Ó DqRö¿\Ý:y–Ì¼ofŠü°\ÝX','',0,'?'),(_binary '[±€\à1¶YAdkö,','wp-includes/SimplePie/Sanitize.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W,a4ò½Vk\Å\ç6\Å6L',_binary '`‚QòV;\â±`¶€¢ƒ§üª›_1p\Ø\ë\Í\ÕR±Fõ;','',0,'?'),(_binary '[±\ÐÛ¨\éÁ\å\æUaò\'‡™','wp-content/themes/flatsome/woocommerce/single-product/layouts/product-left-sidebar-small.php',0,_binary 'oOl\ë\Âl\á\Ðÿ o:',_binary 'oOl\ë\Âl\á\Ðÿ o:',_binary 'V\Z2©\Øò_:/XÁK\ê²8ý\Þ<ó !ÇŸK\Ê5F\Ú\êS','',0,'?'),(_binary '[¶E^aax\n\Ì?µ™iŠa','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/MantisBTInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×\ã‚{”„\ÖXTc¢\Í<Ÿž†',_binary '\ëvŒ¼‡/¨±\ãUþc’\äbd\æIŒ4$c™\Ñ\áwS‰','',0,'?'),(_binary '[»8O×­¾=‰zÀõž4«','wp-content/themes/flatsome/inc/woocommerce/structure-wc-single-product-custom.php',0,_binary '\ë4\ä.Î†\ßP\É0©\"¬',_binary '\ë4\ä.Î†\ßP\É0©\"¬',_binary '\Þ2F\Ô\Û-”\É>r\Ýg*\áz+£\ÐxN\Ó+‘¥','',0,'?'),(_binary '[½%–\ä\àB_$¸\ÃÕ”Ó±','wp-content/plugins/yith-woocommerce-wishlist/assets/fonts/fontawesome-webfont.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘.\Æmurÿ‚I1“–G\Þ',_binary 'Lr7D@yŒ¿\ÂÉ‚]NK‡(–\Ñti\ØG9\ÎÀù \ÈTm=','',0,'?'),(_binary '[À¼Aù0¤b[\åBùG','wp-content/plugins/wordfence/images/logos/shield-free.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm3k#¿^´–\Z\Z+W',_binary '£Lmdö–1¥a ×£M§\\¯m(#p„^1Mô‹','',0,'?'),(_binary '[Á4\Þpg\ã¯C%*±o÷','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°•+°²+ç…¬Æœ°až$',_binary '\Ô”\å†.Š@pò­b\àI\à6‘…3\Ê_,¹³¦…Dú','',0,'?'),(_binary '[\ÅYÁ\Ð44óOr¶•l0\Í','wp-includes/Requests/Exception/HTTP/414.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\Ãr¤Nf}½-°¤â½ª',_binary '¥H\àÁ»\Ô\Ì\Æ\Úiž\à\íc÷!§™I).ehˆµ‘¯·‰','',0,'?'),(_binary '[\Ç`!?\Ï‚-|¨Œ4Á\ë','wp-content/plugins/products-compare-for-woocommerce/style_templates/sweet-alert/sweet-alert.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸{¿\Ä×¬ö‡¿]\ÕC',_binary '<ð¶Ñ§£\ãt\Ùh=VcÌ…¤à­\ê\Ïöa	hór@','',0,'?'),(_binary '[\ÈÊ°cFÿ,µ!Põ\éEº','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/stock-indicator/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	ðbž¬~ú9\rˆ\Ð\Ñ\ï',_binary '\0\Ñw=\îö‰ªØ¶N\ê\Ë\ï\åg\Ú\\¢jš\'\âðö','',0,'?'),(_binary '[\ÊBX\n¤\ÂQ¿\Å±“c\Ô','wp-includes/blocks/file/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ý|Um´–^õÄ¢eº¼H}Œ',_binary 'z\Úq±ÿ\Z\È7\"%+\ä/,@O\0±	-\Ú\ZM«H3À','',0,'?'),(_binary '[\ÓkW\Õ&@‡¤@Ä²–','wp-content/themes/flatsome/inc/admin/advanced/assets/js/smof.js',0,_binary '\Îh€B¤|1\Òy5¾”H\Úh',_binary '\Îh€B¤|1\Òy5¾”H\Úh',_binary 'óF*“§k¬I\Û\ä§Av\Ò\ãË˜.G{\í?“§Z','',0,'?'),(_binary '[\Ûöq\îE\'œa\ç?¿‰ž','wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-blog-posts-right.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ùY\Æû\\½û²|:°~“3J',_binary '©ûÿ*\Î\×0¢$—“b+DWÓŸ²\'(‘µq¬.\Z\Þ','',0,'?'),(_binary '[\ßA|v\ÞÁz°\î\è\êEJ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-stock-control/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Íó\ì\ÖZfx¶–ºl\Â',_binary 'þ!l=!\Ì;´IâŽÙ¸«t€\ÃCE\î^5ø—o.\Ë','',0,'?'),(_binary '[\è±[(P\ï-‰ÿŽ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/test/use-store-products.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!ea\Æ{p[‹¯]¦½ÿ^.R',_binary '\å0”ù\áùw@³>Ú¼~\í2M7%C#a\Æõ9wN|5','',0,'?'),(_binary '[ê \æ|Kòo\ÊÛŒb7ð','wp-admin/user/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\îxCS6¿LC\é2!\Ýu',_binary 'Á`K¶\ç\Ä\ä¿y2Mþ\ÐplÎ¾\"a\0ï¬°št\ÑÞ¡D','',0,'?'),(_binary '[ù^\Íx:Ý¯Q4€\Å_','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-editor-style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»b?¸@+-\ê–6 ¹§D+',_binary '2²u°\Û\ÛttFq¾¢\0\àøª¶mù=÷\ÎÃ±Ÿ)}\Ì','',0,'?'),(_binary '\\í‡²xZ\ë\Þ\ï\Â\á\ßö','wp-content/plugins/woocommerce/includes/blocks/class-wc-blocks-utils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9€S¤šc\äþ—=¶C4',_binary '\×Æƒó\ç\ÞÁ\äýN¨}¿h/FÏ‡ûH\ã†ø\Ã','',0,'?'),(_binary '\\¿%\à÷?Œ>ˆ™\í\Üe8','wp-includes/class-wp-block-pattern-categories-registry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GŽ¤Q{.W;ye',_binary '\×CCmq•\Ô\'°V&‘I/&\×w\Z©¤nþ¿ì±Ÿ­Ÿ{n\è','',0,'?'),(_binary '\\\nñ;:\ÆI\Ñ\"\ï@\ïOh\É','wp-content/plugins/contact-form-7/modules/response.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'aÙ¤@\ï÷W+\éX*\Ï1©ô',_binary '½ø9žH\n\Ô 6¼˜™m`…ñ£\ÏM\æ\ävL®\Ï\Î« œ¿','',0,'?'),(_binary '\\\é¶ \n7\â\Ð“ \ÐF','wp-content/themes/flatsome/inc/shortcodes/google_maps.php',0,_binary '˜Á<ji:õ\î\Þe)»\Õqˆ',_binary '˜Á<ji:õ\î\Þe)»\Õqˆ',_binary '.\ÜF7_M\ËiDaÆ´þH•…ðøV[_E$)a¦\ç\æ\î','',0,'?'),(_binary '\\\Ü\Ü…•Œ9‡ƒ·\È\Ì÷','wp-admin/ms-upgrade-network.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qc”ó8®š\ÔE\×%Œ«!',_binary '	\ÍH\ê_c\Þ\è•Q\ÕüX€ùÌ¤„ÕLsºÚ­ÿ','',0,'?'),(_binary '\\°\")ý·:—œ-\ìtŸl9','wp-content/themes/flatsome/template-parts/posts/partials/entry-image.php',0,_binary 'zz\èÐŒ¢hKX`–‹»',_binary 'zz\èÐŒ¢hKX`–‹»',_binary 'õD\ÍW:ÚªÁ2\Ñö‚s;X€\ëoD;‡þK\Ü®r','',0,'?'),(_binary '\\#Y·¬þ;y0\rûbqõ¼','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘öØ¥øgƒ \î\ç\é]b\â',_binary 'gD>IB9\é·¯šLI\Ó	*œ\Â\îð1\Ûó16Ž\Ù0\îC|','',0,'?'),(_binary '\\$\Ã‰ù_8Ü’\è¤1','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/banner-premium.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9X\Â=\Ñ:)z\'„\ÅXH',_binary '9^\"B\Æ\å\Ù\ÂòE;:­-t\Ñ~›+&ú%An','',0,'?'),(_binary '\\$\Ã\ßam†\"ô_\ßq…\Ð\×','wp-content/plugins/woocommerce/src/Admin/Features/Navigation/Init.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\ã4»8»\Ã:.\È*{\ÛRw',_binary 'ü‡^\Ç‚	)ß±¿D\ç\ìÅ–\Ó:Ü¸ò.03W1\ÈF\"\É','',0,'?'),(_binary '\\$\Ôj0Fó™²b\Z\ëŸ{	','wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-parallax-shop.php',0,_binary 'K\ÅðoÕ–Jò§\Å\Î)',_binary 'K\ÅðoÕ–Jò§\Å\Î)',_binary '—aoidˆ\Õ\î²Ú˜=6Š=\ÝU\Õs&\âEŽ.o\ë','',0,'?'),(_binary '\\8\Ï\Üûd@\ï\áb\Zn!ÿO','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-short-description.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Èôu 6Ž•\"§x\è»\éš',_binary '*0;Cˆ6\ÈZ>(%\î÷‚2AZ¥\Í‚rC¿\Ó\Ë°:','',0,'?'),(_binary '\\9{U\r­Z4ˆ°Hž‘\æó','wp-content/plugins/products-compare-for-woocommerce/berocket/libraries/addons/default.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\Ý-Ñ–;ùU‡•\Û\Ý\04\r',_binary '\á˜Zb·	óˆ\èñ2š’y\nŠ9\ÆR	.¤#ƒ2¼ž','',0,'?'),(_binary '\\<\Ê +%WŸ\Å\ï\ÂœG£\á','wp-content/themes/flatsome/inc/builder/shortcodes/team_member.php',0,_binary 'šcð3úœ9¬\0tÞ¸(',_binary 'šcð3úœ9¬\0tÞ¸(',_binary 'Äœ\ë/2\ÐÇ\Ìò»¨ŒDVº\Û\0\ZÕ¡ýT\Ùr\r-š','',0,'?'),(_binary '\\<Í“L\ël’K\éŽòC\å¥','wp-content/plugins/woocommerce/src/Admin/API/DataCountries.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/5:[ö6\ä_)y[J~ö',_binary 'o\Ê\Èõù÷“”(\Ù\Ô]|Šòú÷»ôM8.7F|\å€Q]','',0,'?'),(_binary '\\>\Óö¬K•Ì?Ù°\ã\Î','wp-content/plugins/woocommerce-currency-switcher/languages/woocommerce-currency-switcher-ru_RU.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ð\Ì\ÞM¦C&†./À\Ã',_binary ':\\\"\Ù\rZo¥uD\nRüt\ÓrM¨§”)\ÛM3z','',0,'?'),(_binary '\\B”¢‚6/ŒaDf?0òi','wp-content/plugins/woocommerce/legacy/css/marketplace-suggestions.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ùl5¿PÌ­\0Ú…aUV¾',_binary 'ó½z›p0\Úl¨\Å\ï\'¦\Æ\ÍbVÄ¬I»G¥7I)\Õ\Ò\Æ~','',0,'?'),(_binary '\\H¢û–:”¢u3\à%‹Fw','wp-content/plugins/wordfence/views/waf/waf-install-success.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't¥2\ØH\ÊÁ‚$\á\n\ã',_binary '5¤(\Ë/´¹PhJS\ÈZ\"&]}“ù\Òr³Ip¥(\ä-t\Í\Û','',0,'?'),(_binary '\\L+„‹\Ü`6<\Ò(\ìmE','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/editor-utils.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ñ·\0\Êt´ÂŒÓ’|\Z`\Æ',_binary '‚±d’/&\éœõTeq\éL¡)\Èm‘!—\â72ÿ0—\Ò','',0,'?'),(_binary '\\L\Þ}\Ò÷\æY–~\ÜlaŠ£','wp-includes/blocks/gallery/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\ÍüˆyÐ“\ÓðL+¤ƒ5¦	',_binary 'Œò´z\Û\ì—W·˜\é&G\ßôb\Çðü…þ\Û`xp\çd—\Ò','',0,'?'),(_binary '\\R$û\êGOÎ„\í‹üy','wp-includes/css/dist/block-editor/default-editor-styles.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô<Á¶ÿL«v©.Š',_binary 'Rgu`\Ó\Ùö\îºÂ„g¶‹15Š?PLRû\Â\è\Ô*f0','',0,'?'),(_binary '\\[\æ\íi%Í°<ú˜e“>©','wp-includes/css/wp-pointer-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'â•„)þ\Ì½y-?\Æ',_binary '&ˆ\ÝøP\ê\n\ße5¡o,V?\ÔA\Z\êU\Â;ÿ9¸;¬\Éz','',0,'?'),(_binary '\\\\\Ë^–‹eþ¢—\ãø/`','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\'\Î\Ñ	®ùý\Ç8[\Îÿ',_binary ',u\ÌÀ©$ª¿H:\Z5\Òù¾ƒ~Dª)4ÿ\í@\Z\å%ð','',0,'?'),(_binary '\\`2\Æ\ë\\Xo”,Q{ö@º','wp-content/plugins/woocommerce/assets/css/prettyPhoto-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ý\ËÊµö±˜uo\ÖP™',_binary 'œpD\ì‚!¶³\ï&G2\è€¡ÁÀ¤™¢\Ø÷z\Û_\ßY','',0,'?'),(_binary '\\bmž\ç¹!B!N5pC\Ñ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/view-switcher/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\êð\ä-ršûU^+ú',_binary '¼‡1wv\ê‚\ÙR¦S™\â‘‰û®H]< œH\"\×H«','',0,'?'),(_binary '\\c½\n—5D°6¾(\×Á','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-de_DE.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ù½&û\\…=¿ûï¡…‹#',_binary '»(®{2RSÆ€\ì*\ì\áóó\n\Ïmôd¦{Mz5\0/uû','',0,'?'),(_binary '\\o·02—·u!\é	&','wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/payfast.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†Jc#þ‘\Ó\æý—KºF÷Á',_binary '´M\"\Ãød[m\ÚÊ¦6Á\ìö®òGr‘ÁC-\íûr¥\ÜQ\é','',0,'?'),(_binary '\\p‹&YaT˜\æ™Ë©','wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/options2.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ\0HBz\îC Ž\á‹dŸ',_binary 'Œ1e2\è«\Êo\Î\Êlð\àõt·[µ”\Ë…:yg»','',0,'?'),(_binary '\\vx\Ð\Ìø\ïú¡3û5g','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-fields.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õÁ\ÔFkl»,ˆW=¬c',_binary '¤{¦¿_\Ãtg•\Ã÷mM‹\à¨U\á½\0\Â\Ä\ï˜A\Û\n','',0,'?'),(_binary '\\~^\ìbµk) ¶û©KA','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Library.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯&«±\n\å\Å\r*%‚S€t›',_binary 'ªð…4a‚ý.µ\ï¡[ýD‚\Õ|\å\×s$‚6KŠŒB:R','',0,'?'),(_binary '\\…X½ŽA\0ª\îSó6\Ï','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-pt_BR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jfú©{\ÉLp\ØsG',_binary '>\äŠ]fóš|8q/_pT’»ž\ÉÊš\ÎñBœOóôƒ!','',0,'?'),(_binary '\\†yA\ÝZÑ«@_š\r\n&','wp-content/plugins/woocommerce/src/Utilities/ArrayUtil.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿ!S¶ò¼†µas\nd\ê=',_binary 'Ô¢o\Æ[!N6QÁ¿9£Ë‹¦KØŸ®›u\Ã\Ý¶\í‚eOA','',0,'?'),(_binary '\\Œ,\Ò\Ø)­\Ëóhˆÿ½5ó','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/proceed-to-checkout-block/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–¡ýŒ®÷ô\âˆË¿õ\Ú',_binary '›¦\ÌW\ÒÈ˜k7…3\Ý2b9­öJ\Ì\æHÜ©–I\Ì\ÆB9','',0,'?'),(_binary '\\‘®\í\à\Æ¤7ö\î²Q€o','wp-content/plugins/wordfence/css/images/ui-icons_cc0000_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|¦%;w©ý¯Q»8ø\È@',_binary 'wi>\Þ6·Æ¬\à4\È\å .N\ÊC¹\äž\Zÿ4ªIOž\Ù','',0,'?'),(_binary '\\šÑ‚’?$€Í„8À’¡\æ','wp-admin/includes/dashboard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ß\Ãn,©\á\×\'A´',_binary '\ÏyŸ¸AaQŸ0\è¥;Gi\â@¡\ì¢Ï‡£œON\Ö¹Np','',0,'?'),(_binary '\\žÂ£C\ÆWc¯cž¶z$\á©','wp-content/plugins/woocommerce/assets/client/admin/store-performance/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '  h\í:\îŒ\Ú\ÖÆ§o§',_binary '\ïù\ËµWU0$G#xj›:\éZv\ÅDMSrÓ¡o','',0,'?'),(_binary '\\©\Ä0\Ç\Æ/z\Å\Í\ÙƒG','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-3-collapse-col.svg',0,_binary '\ç£8\Çñ<\0ÿY\Ùù]\Â',_binary '\ç£8\Çñ<\0ÿY\Ùù]\Â',_binary 'º\'eñ\ä\ç\å>4g\Îª:ûa—¦\á\êOgÍ›ó3','',0,'?'),(_binary '\\¯\Òª¬L°¸œ‹¨4t/','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ìs@õ4	\Z—\àºðDw«',_binary 'ü+Yv2\Zƒª\ÂB§P\Ê@bH\ïI\íeñ4\ÝM®','',0,'?'),(_binary '\\°\Ö\Zùf}±K\0}e«','wp-content/themes/flatsome/assets/js/admin/admin-menu.asset.php',0,_binary 'T\Ê:\ïJØ€±å½ˆ\à°\Þ\Ò',_binary 'T\Ê:\ïJØ€±å½ˆ\à°\Þ\Ò',_binary '‘= S\"ZNq\"»“\å\Ölˆþ\Õ%¯.J¯e\\Š½\Þ(±','',0,'?'),(_binary '\\°u¶]\êA%» ¯','wp-content/themes/twentytwenty/package.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ØùŽÒŒÿô\0G<ôC¼\áw',_binary '¢\ï\Ì\×øüK\Äù\Æ;}YP¬÷¡\Ôû“Œ\\\ZZ4Œ\ÕD','',0,'?'),(_binary '\\¸;¼¿üŸ\Ý\ØY \Ó\Ø\êr','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/discount/stories/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ{îŠ}£Q~/òh\\5E',_binary 'cm\ça7ro\Ê\å\ç-†m™\ä\ç?mTõ\Ñb”‹#¾·ƒš','',0,'?'),(_binary '\\ÑšWû\Ò\n»Ì¹£\íˆ','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-panel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÏR\r(\ÕL\Ñ`A0h@\ç—	»',_binary '@=öüAy©À]  §øœ\\´ü´µY¼[¼³¥>','',0,'?'),(_binary '\\\Ó\0õ£>¦+¢³ÁFb\Ð\í','wp-admin/revision.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'óš$QÙ¼\'¼p\åT:B~ø',_binary '¨\ë\Åös\Ò\Ú­À¿\éÏ“\âŒIm”\É$\ßø\Ër\ß@Xeÿ)','',0,'?'),(_binary '\\\Ö\ZÀó¬»t5C\ä“\ìd','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/radio-control/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\0@\ëd}P«r¥=ÿ£°\0',_binary 'Ÿn\Ì9›e5\×\Ùý[ûi=\á6ªŽ}\ïtr\Ìor','',0,'?'),(_binary '\\Ö¶¶S¿©\n¶»P\á:¾','wp-content/themes/twentynineteen/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OÁuºø¢nl¯!\Î',_binary '\ÅNª1³\î\Ì1\ÈÿswR¦«§¾õ¼»¸º„¯¨','',0,'?'),(_binary '\\\å\nœe%¤°)›‰q´¼7$','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oG£\áûü¾\ÑE ü\Ë\r',_binary '\åÿ}\ÐDl˜qÁ\×X»\"a›G\å\ÙGuª¶VX}¿Œ=','',0,'?'),(_binary '\\\êÁLƒ\â\ä¢\Ý\rn¸iø®','wp-includes/blocks/template-part/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª\"/\íh¡€O·k@Þ¤',_binary '\â%˜‚Xä»(•ƒKbô¸6q\ÇF¢›*F30]–™·¢h','',0,'?'),(_binary '\\ô0–*õ««ü f.R&','wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-plugin-panel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\ÚG„¼V³NcA`a',_binary 'ËŽ^^]\Zú1u×¾	3nF7S„Ÿ¶zA\"j~µ','',0,'?'),(_binary ']¹J*Æ’XÀºRE\á','wp-includes/block-supports/dimensions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$`\×ÿT\ä˜g\Z4>\äÀ4',_binary '®\É\á\ëiglLWˆ\Ç\'“‘ÿYšUJV¢6E¹•\Ó_','',0,'?'),(_binary ']\Õ\Î\"6\nžH\ê\ä,Bð','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/webfonts/fa-solid-900.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0y «k\ìM§\Ö\áo*.‡\Íq',_binary 'L‹¨°_^I\á*\ÙV\nkü“t®\\`7½3\å=ŽOµS','',0,'?'),(_binary '](Ù‡¦>4”~Qiz\Óc«','wp-content/plugins/woocommerce/legacy/js/jquery-flot/jquery.flot.resize.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"¢Zª\Ì\àÊ²+P’\Ím§¤¬',_binary '\Ì\Ä\"·EdúD´ø\è2>§\×3L\×N\0hqö\í,•u²1','',0,'?'),(_binary ']ì¯ª/\Éô+Z,\ZW°[','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-methods-block/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ü\"\ïÝ“¿\ÞüÓ´¹X*O&2',_binary '\í\ÛòQµo¡ù0m!öž{^üO¥C-\nx&W§)Z²','',0,'?'),(_binary ']&ó\ÏA\îý\æ!\êSšK>³','wp-content/themes/twentytwentyone/assets/images/Reading.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=§*\Ó\ì\åŠ|).Ž¦h',_binary '„\ÙQ\Ð-:\áÃ±õ\Ö1Z¡Å´CxÊž£dd;Z\Òb\ì^','',0,'?'),(_binary '](Rª&!\â\Æ1;™3˜\ê','wp-includes/js/wp-ajax-response.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'MðwG^€aS…¼\î¡F\×',_binary 'ôLóŸC}\Ñ žk\êV{ö\ì\å \ÃUª\nƒ¦*˜*\ïz\Ð','',0,'?'),(_binary ']*\áýð9¡þòöW€','wp-content/plugins/wordfence/modules/login-security/css/admin.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÓS¾:ò”\ÙW\ÓÝ±b',_binary '”`¿\ÅÊ‚w†\Ù\'·\ÐJ^\í8V–h\Óo7„cú0','',0,'?'),(_binary '].t\í\'=6\rLðµ\Ð','wp-content/themes/flatsome/inc/builder/core/server/setup.php',0,_binary 'ŸL02ûC-žB\Øf\Ñ!dY',_binary 'ŸL02ûC-žB\Øf\Ñ!dY',_binary '>z\ìh\ÞÅ®]†h:‰}\ì¦Bx˜ÿU<®b|ˆ\Î','',0,'?'),(_binary '].&€?™¹\æ\æþ\é]','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/phone-number/test/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\Å	\Ãc\â©\Æ!\è)G\Ü',_binary 'ÏŠ“L¹\ç—lˆðŒÔK†«#þ9À•¼Ë„õK\È\Ä','',0,'?'),(_binary ']9.Ÿpe\Ï\Ï\ìT\Ðð”\å','wp-content/themes/twentynineteen/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç¯bv€.\Ýø\ÞýM\Ýs2“',_binary '†JÃ‚¸\Ô÷­W›S³\ë\"¸V\ëJZÉŒM²Ú›\ÒõD','',0,'?'),(_binary ']B#\Í2\èz\Ú\ìúbUœ\É/','wp-includes/Text/Diff.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rôÁŒ‘ \ZV\é\î\Ó:÷¤',_binary 'ŸN\'¥uýp¬ú\Û=Z\Ý\"-øK\Ù\ëý¼½ñ…r','',0,'?'),(_binary ']Ceöœzc%­Ú\Í\Îô','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/support/class-otgs-installer-support-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-0>¥ñ®’ý§ô§',_binary 'P#†ÿ¡8?—½\ÜVöž\Í\Z¢@\Ù\îK\Í	Ï \Ç¢€','',0,'?'),(_binary ']L0ºò\ìeE“\"uÀ ­‹','wp-includes/js/mediaelement/mediaelement-migrate.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'óOAZ¥n\Ù\0\î\Ï?!*\ÛW\â',_binary 'q¡{2\ÎfXž¹õ\Ê\áöJgXCŠ•û\äc\æY\Ø3\Òò','',0,'?'),(_binary ']S\"8yV\ã\Â\Ùsôt^K','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/multisite-updater.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'RÜŒ/j‚ez“u{™',_binary '±\ßZR:û«dØ¿	—gU\Ü.Ñ³:\\q*ñ \Ã\Ô\Â&Z˜´','',0,'?'),(_binary ']Tc4JCG\à…œ\äOX<J','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-payment-block/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd0qÀ›}­\Ññ½U°F',_binary '\×ýWt	G(³gA8yQ\ZŸÁÁ¶\æ8S\ÂO’•d«¹5\Í','',0,'?'),(_binary ']dM\î‡X\×mb0‘Õ”ˆ\ì\Ù','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’\Íö,œoF\ÝD:Nˆ¾4',_binary '²jKžb ¼Êy,`ª\Êÿy¾5o\ï\êfÚ®_¶e','',0,'?'),(_binary ']k˜0Ø•\Ô~\ãK4­V¸¼','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/shipping/reducers.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚=\Ä{kO\îe•?úl¶n=ý',_binary '\Ã\ÐVo-ßº\å½úw\Ê\ÇñMd4›\æ\Ónü³º\âYtö','',0,'?'),(_binary ']~\Êy9c\Ð?9R\Ü|_ˆ.','wp-content/themes/flatsome/woocommerce/content-product_cat.php',0,_binary '²‡Š_`b½G\ás§\Î{ù°*',_binary '²‡Š_`b½G\ás§\Î{ù°*',_binary 'Ž2-S\Ä5Š§¦ ˜¶ú\\I\äs\Å\'N†Y®€\Ã\Í\êI','',0,'?'),(_binary ']\Éõ¤Î°¸ñ¾m','wp-content/themes/twentytwenty/assets/images/2020-landscape-2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2“ˆŸ\É\Ô\áj\Æ^®\É!\Æ\äž',_binary '°\Å)ç§=\Êl2^m\Å\r­\Ø•uV20òÚ˜M{ª','',0,'?'),(_binary ']ƒŠ\ÔN\Î\×JjÓŽe½£‚','wp-includes/widgets/class-wp-widget-media.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ü>º¯\Åw\êý™\àCÒª',_binary '}“ü?\Ç-¸°\Ùfq™q}±V‰QŠŠ?\Ùc°ÿ','',0,'?'),(_binary ']‡&\á»Q¢€.F°\æt²','wp-content/plugins/woocommerce/assets/images/onboarding/fb-woocommerce.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ï\ÎpD™Jq\í\ÇxX*',_binary '\Z§>\Ùa`â…‹k%zmk®^\ã\ÃU0$×º\ÝV¢D','',0,'?'),(_binary ']‰±·‰žW©F.\æ„2£\î\Å','wp-content/plugins/woocommerce/legacy/js/frontend/cart-fragments.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­\Âü\Û\é˜+ö\äŠtK[',_binary '\Íy6ºc\\€ŒGH\èÁqy“‰SŸòÁú\Èu-~	\Ð','',0,'?'),(_binary ']Ž\Ôr™:@´…I¦','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Enterprise.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„¡…6:”õö¾2kP3ú®¼',_binary '%uˆ¸Mpñ\Ú\á\É,.\0\Ñ@²ZqŒ\ër¿/\ÃûµŸQ','',0,'?'),(_binary ']“¢«VOù\ç|J™m\Âb','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/stock-indicator/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z^\ëFÿ´yz%µ»`Z]/',_binary '!hm?\ä7$K‚ñl\Ô\Ó\0\Ë \ï\ZTž5\ê™5ÑÿX§\î','',0,'?'),(_binary ']£ú\ÍCyð.a\ÓA,\Ç-\ê','wp-content/plugins/woocommerce/assets/fonts/WooCommerce.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ\ÙC‘\ÇÐ±T¤o¿ôI¹',_binary 'I\Åï´±¨\r\Î\n«}ž­Öµ)º\0\Î\ê\ïI…Ñ¿ P¤sÙ—#','',0,'?'),(_binary ']¥‚P·¿\îTkvtŠº8A','wp-admin/network/menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Þv³W¨a9™m¡l\îT1',_binary '¶“=Þ‘\ï÷o÷9”d‘„-X\éÏ®®h¦8…\Ü>q¦;','',0,'?'),(_binary ']¥¤\Ê*…¤…ÿJ–','wp-content/plugins/wordfence/images/icons/email_go.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ºªj\Ì\ÙEü´H)«.½\í',_binary '÷½& ôqC1QU´_.O\Ø\î3¿\Â\Ëò1!&\Ð\ç—Û´ªû','',0,'?'),(_binary ']¥\Ú\æp‡[%3QLV\Ù\Ïs','wp-content/plugins/woocommerce/templates/order/tracking.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸Bly˜]\Ã­xÂƒ\'',_binary '†CNŸ\ìL%º{¥=‰€q`«\Â\Ðü–QóW¤¿Mx#','',0,'?'),(_binary ']§Ÿ‹\âù\"}[’Y\ÜR\Ú','wp-admin/css/edit-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¶‡—k)h§k×Š®ðM\r¼',_binary 'œ q\nø$>²Û¢?Áþ§`÷¨/U´V','',0,'?'),(_binary ']¬`IaKu\È1SÚ±#’\ÈÀ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/block-error-boundary/types.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\í-]q´ŠS«uŒ\ÉQ2^',_binary '\â\Ö†Yr³3$ø?Füj±\ÕÀmª—!÷ôE','',0,'?'),(_binary ']²1I½\Ú\â\Î.I}Ú—Í‹','wp-content/themes/twentytwentytwo/inc/patterns/general-two-images-text.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—S\"^[¿1)I ¿¾\Ê',_binary '5¼(b3:H´\Ý[Iðv­f\æFV\Z…g&˜€\Ï01awq','',0,'?'),(_binary ']¼\Ä-þW\Ì\È3\Ös¤\ÅYð','wp-content/plugins/woocommerce/src/Internal/Admin/WCPayPromotion/WCPayPromotionDataSourcePoller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\Ó*0?®U@\íøO	',_binary '2˜éˆ‚g|ú-\Ï\é.•7ljN\Ö\Ð\ìÊ¸‚,','',0,'?'),(_binary ']Àš°À–•Á3›\Þ\É`ò','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-recent-reviews.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1ó1\ZPf[\ã¼Æó',_binary 'Ñ¦d\ÂCu\ÆÀ¤í“¤5eo#:šan©6\n\æ\ï','',0,'?'),(_binary ']\Äý]mb\×ò{œ\ÆE:<¡','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/form-step/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T®ŽHoTIÆpŒž\ã',_binary 'KO‰3B7¯¶a*\í3÷_®\ä8\Ç\rWbju½û','',0,'?'),(_binary ']\Å\Ö\êú‚Áe2ø¯Kº\Ø&e','wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-agency.php',0,_binary '\åø\Öô¥°®»\É\ß\Ì|\ä.',_binary '\åø\Öô¥°®»\É\ß\Ì|\ä.',_binary '\Ø\âžúf\Ø~8‘\âò¾ú ¶Xœ(Eg˜\ÜôGÞ“,','',0,'?'),(_binary ']\ÈCƒö>%l”\ÏSò','wp-content/plugins/woocommerce/assets/css/twenty-seventeen-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…\à`øP\È\ÄÌÅ’¯†\Ä0\"',_binary 'ü>Ÿ(.\n–¼Fƒ²’—Ÿ‚]yøÄž\Ñ\Ûg¦l‡M1\â','',0,'?'),(_binary ']\è4dû9´À\àC\Ä<s“3','wp-includes/blocks/video/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!?tv\ßóF\\Ž&\à9\è',_binary 'ˆrò\ãvŽù÷b&\í?¡§\ç\Åþ~9r »Dù%\×7\ëW','',0,'?'),(_binary ']\èÿ\Üß±-Bô”¦Fˆ%','wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/onboarding-homepage-notice.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8¹¯Â»•D{¯\ë§h',_binary 'O\Ç+e\Ð\'&‡n¬\Úg\íNõý€g\Ü\íðqš‘','',0,'?'),(_binary ']\êh9¯|\æäˆªa\r±\å','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/image/attributes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´­c™µ\Êh0*_pM\Â\Ï',_binary '\à­# i‹\ÜM79pº\ÂWõT0Ú„cö,A³‘‡/','',0,'?'),(_binary ']\ë;†¾ó\'\Úñû\Ó\Ç\Ë','wp-content/themes/flatsome/inc/admin/envato_setup/create_childtheme.php',0,_binary ';\îû\0wzk\ÐBe·\Ó<#\ï©',_binary ';\îû\0wzk\ÐBe·\Ó<#\ï©',_binary 'þ[\ËT\ÅnŸEjd\Ý(²$:!Áh\ÔÎ\0›s\è><','',0,'?'),(_binary ']üÿz¬÷^\ë\É,_™','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/quantity-badge/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\îŸ*:P\"ktL™\ÕF\Ù\í',_binary '9\ÙJ7\ìuU\ä*\Ó\Ý\ëÁó¶\Íú\Äÿ)¬!™\åz\Ôÿs|i','',0,'?'),(_binary ']þs?)^8´w‚V%,¥L','wp-content/plugins/ti-woocommerce-wishlist/assets/css/theme.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y	S%©6ˆz/G@d³',_binary 'Bþ\èy\è\íŠ1\Î\0\Õ\è R$ö¾ú{pc|ÿ\Ó~w^g¨¶¹','',0,'?'),(_binary '^¦i\í[*¶ÿøu4k¡','wp-content/plugins/woocommerce/assets/client/admin/chunks/2502.style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡c£„¶\Îx´]*Œ5O\Ê\Û',_binary 'Tj³\åL\è¨32Ð‰†\Ï÷9¦õ»òP\êu\çcý®oð','',0,'?'),(_binary '^Uð\Í\ÏBp±II™¯öUu','wp-content/themes/flatsome/inc/woocommerce/structure-wc-category-page-header.php',0,_binary '+S8yx¨¢\ï\ÚgC\ëÂ¥‰',_binary '+S8yx¨¢\ï\ÚgC\ëÂ¥‰',_binary 'p\ç‚<\ä0\Ç5š\n*\æ–OF\n)p†–\nUy^™(','',0,'?'),(_binary '^‘4\îj¾|¤\áIƒ\Ð','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/OutOfQueriesException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5ôúH*f\Ò\ä$°ðÊÓ',_binary 'þò\ÐÆic\ßz\ÙPû1\â\"Ý¢Ó›o¶TWry‹*F','',0,'?'),(_binary '^\nG\â~Ÿ`®¾Mø#\"\È|','wp-content/plugins/woocommerce/includes/walkers/class-wc-product-cat-dropdown-walker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\Ññl\ÎË¢\ÑøI\è\åy\ê˜',_binary 'F{hüø‚¸˜¶ò\ÙôƒrŒ\ïl>`}«Á³„ó7-º|','',0,'?'),(_binary '^[C¬\Ú\äzðv\æ}Ø”š','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/payment-method-error-boundary.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±\ê\ï%—V¢ö®1¾\'\Ù',_binary 'Y\Æó–§u=*ùe´\às¿‘yø\Ø¬6ðytðQ$i','',0,'?'),(_binary '^(Â§3„H¸\Þú²\'\îØ¾','wp-content/plugins/woocommerce/includes/class-wc-order-refund.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯\Ùü\È\×4a\";gGÞƒ;GÀ',_binary 'g~+\Ý6dûI\Ö[Š[\Îqua€_U[¼Œ¼½\å.\Ü','',0,'?'),(_binary '^,“R”÷d¿¾®}´«#½','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/price/constants.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÌvŸf]\è¬EK’\\\ç',_binary '\ê«v­¦4$l\æ¶rý¾P9’+\áú[¬\àð\'>\áwlR','',0,'?'),(_binary '^2\Ý*nô\Ñ.\ÌEJÝym/','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-terms-block/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\Òug\ßü?ý\éÂ¸\ßhV·',_binary '\âü\ØM0\nWü‡n;W\ïNšÿsÁ‘ÿ<ðü¼˜¸e','',0,'?'),(_binary '^2û\Èn{\Ú	o¡Ç©*\Ï','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/slider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ì S}JŸJs0PŒ\Ê\á',_binary '¼\Ì`K¡Óƒ\Î4Z\ZlÀ’²mN†\Òr–9øïš¦Û­3','',0,'?'),(_binary '^3\'\Ýj\à«\Ç0b«\ÅV\Û','wp-content/plugins/nextend-facebook-connect/providers/google/google-client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ö\\€x\Ù÷±sˆ[\Zo”å…«',_binary 'Lb®W]¡§\å’ö_“\És˜M1Gt#³\å¥\Ô\ÄømP§','',0,'?'),(_binary '^4y\Ù#W~‚Sª\íJ','wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/marketing-coupons.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õ¦\ßK(ž,\nž’\Î\Ì\Ç',_binary '\â\ÉTr-\Æ%\ß\0K2\ß@z]6¨\Ó\í\åEpNe¹-','',0,'?'),(_binary '^9(-(Å²\Åy ‰÷\Ê0q*','wp-admin/user/about.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!šN ‚š\Ù9\â3nDl',_binary 'r—¾¯R89\ã<†;9i1l•Z²ŒQú\ìoC#ñY–´','',0,'?'),(_binary '^=¢z…_G\0\ÙDù1±0E','wp-content/plugins/woocommerce/assets/client/admin/ce7c51567f54d0aceb37.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ,~\ËIø~c4m¡®\0AŽ',_binary ']¡hM?-5\âY\î—\êƒ\ï#$\Ãõ\ë$A \æ\Ä*½zúw','',0,'?'),(_binary '^@Õ²{\'«©_\è\â›92','wp-admin/upgrade-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Õô–[a\î@1.¥šQ\Ì\îZ',_binary '\ätË¥¬ù£˜9{‰\Ä/\Âÿ„y´g1\'þuVþ¾l¤','',0,'?'),(_binary '^D\"˜–Mf³iC\"=>','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/select.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Yw@Y˜p\ZZ=\Z\ZóGv',_binary '\ÂMT\îˆ1}–’\éE\æ’\ß…&N†¤‘…„Ú‡D„\ÜBœ','',0,'?'),(_binary '^DžV\å\á\Õ!o$+','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_2e83ff_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Û;‹\Ð`\Æòxý\é\á;”\ã',_binary '6„4 \Û\Ðc\Ú\Õ(°\'G¾òF¼ˆ€&\íU]b@\"±\ÛV0','',0,'?'),(_binary '^H\0õB|\Û\Ø4\Û@zÁ÷','wp-includes/IXR/class-IXR-error.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g6\"¬•\íu\\\'3¼²­œbŠ',_binary '*?\ÍÛ§U=Ž?¨,]¤\Ú0=C\Êø““ Z-†6Dq.˜G','',0,'?'),(_binary '^Uðœ.i¾\ÖypG\Â¶™','wp-includes/js/mediaelement/mediaelementplayer-legacy.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\äA\ÒVýt\ÐFÆ£¶‰–',_binary ' 2\Èq{Y\Â*lXø[qkd“–\á}\ÎJp\ê™\ä\à\Ó¶','',0,'?'),(_binary '^d?e™ø.ošù¿Ê¨›L','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/psalm-below-3.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì[\íC\í=sy3ðLü\Õ\È',_binary '·_ý\Ïo3\Õt°Y¶’_o¢ò‰f2k#•‹0¾6Ps;','',0,'?'),(_binary '^n¢0Îºý\ÑX|pœ¯','wp-content/plugins/nextend-facebook-connect/admin/images/exclamation-mark.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ûô=ºñ\îWùÀ\æ\îw\çUJ',_binary '\\ÖªK\Òþ\Ù|\Ù\æ‚=\Ë\áý¡þ;	\å€\å\év&H€\ÉG\ä','',0,'?'),(_binary '^rH\Å\ÃnIA\ÈûyÀ<','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\Ù\ïW7\æPA,ºÿIx\'',_binary 'ý>:\ç\ê\íiIš\Ôsk\à~­\á\È\ä+\Ý\ã¡Klœ)\Èsi\ê','',0,'?'),(_binary '^yG=ÚœFg;3‘Ã¡©','wp-content/plugins/wordfence/images/button-grad-grey.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•\ÄRC\ì¿\ÊTy\Õý?\Þ',_binary 'D\Þú€\ÃÁ\ÖH\Ù~µ’´Ï¨¢Pº_\á§{!\Ê\×','',0,'?'),(_binary '^}—\Ã7¶áŒ³\íÙ–•t\Çú','wp-content/plugins/woocommerce-multilingual/vendor/composer/ClassLoader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ‰\×\Ù|%þ‡*T*ú`',_binary '˜˜’\ä¡289vu3’n	C2s¯¼va/Ÿ','',0,'?'),(_binary '^\åƒÃ¯ðˆ¯+…y|\Ð','wp-includes/images/crystal/spreadsheet.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5†9øÐ¢1€T\Ë\Çn¤\ê',_binary 'e\rC¬ˆi0\ã\×[¯\êR¬8@\æ÷ð\ÍG’¥ðaJN\Í','',0,'?'),(_binary '^‘\ÊË]\ÌL÷|Ž\Æ\Ð','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/tag/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Äò\Ú\r\ÄpˆC\Þú¬`\Ì\'',_binary '6c\ÐM\ç7\å¿$t±…3¶N ð¸Sg ö¦¢7','',0,'?'),(_binary '^™\Û#å®µ!§P\ê#\ÌÈž','wp-content/plugins/products-compare-for-woocommerce/languages/products-compare-for-woocommerce.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“Å‚\Ã_\ÛbZ8gEcšÿc',_binary '­g—¶*œ”Þ³Mi€Q¬õG‰\Z-i´ž€[\ï»\Ä\êi ','',0,'?'),(_binary '^ zžU\é\Ä	µ¹nqK·8','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ProductCollectionDataSchema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L`w\ê¡8$\ìf¯SH\äTsý',_binary 'U\ÔY·×²{ñ`;<-·y\ëM[A\ÍRAˆ\ï','',0,'?'),(_binary '^¡?\\d˜	\0†!m\í _','wp-content/plugins/woocommerce-multilingual/vendor/jakeasmith/http_build_url/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜Š\Ù­L SùÇ“\ÚR',_binary 'ô\È`\é\ÓP¨Ž\Ø\á†\êk\Øtk28\îð@\Þþ9§¿¿Ö¶1o€','',0,'?'),(_binary '^¥‡^ÿ9V5}\ì\áGm}¶','wp-content/plugins/woocommerce/includes/data-stores/class-wc-product-variable-data-store-cpt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°VgõøŒ‘¯¬÷\î\Ë³h',_binary 'P˜&\nlkFa\Ñ\å¬341³026\çüW>\Þ\Õ\Ýöø\è\è\Î','',0,'?'),(_binary '^©ž\ïR•\n#v\rœ¬\×q','wp-content/themes/flatsome/inc/admin/advanced/functions/functions.interface.php',0,_binary '¨¡)¤cY\\\ß¹‘§]',_binary '¨¡)¤cY\\\ß¹‘§]',_binary '\0tiú±±”¶1x\×½ù(-«\r\Ê2YÆ‘e%>ü','',0,'?'),(_binary '^µN“¯¢\Ñ)XJ\Ê?_\ï','wp-content/themes/flatsome/inc/admin/customizer/img/category-featured.svg',0,_binary 'Ái.˜Œ\Ôa’ž\é\Ö\ß:ÿz`',_binary 'Ái.˜Œ\Ôa’ž\é\Ö\ß:ÿz`',_binary 'a/„*– þ\ÆLFo{>1¾oÝ¾¿_òN»&\åK','',0,'?'),(_binary '^¸hƒ•—…u–\×qvx','wp-content/themes/flatsome/assets/libs/float-labels.min.js',0,_binary '}\Ù\è\ß\'3\Õû[V;o^',_binary '}\Ù\è\ß\'3\Õû[V;o^',_binary '³ôa¦Y½º;\ÎdM5H=\ë\×W`\í?\Å\\?“Ii[·|','',0,'?'),(_binary '^¹\Ã2©7}—¢õ¨\ÙIý\ä','wp-content/themes/twentytwentyone/assets/sass/05-blocks/latest-posts/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5‚­-F\\¶©Z$\åÁR®\Æ',_binary 'vZ…®\×dÂ¥›Á\âbNpz04\\\Þô\ZL¦òIŽúvõ','',0,'?'),(_binary '^Á±u\ëºuƒ¬W‘dœM=•','wp-content/plugins/wordfence/crypto/vendor/composer/platform_check.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Æz\Ö\Ø=E‘o0¯´[ò±',_binary 'µm?\Z\Ã\"\Êg\ë=€0\àN\"„öQ‡ˆ`¦u\'\ì°\ë~I','',0,'?'),(_binary '^Ç¿\áÀ\á«+C%K·òxž','wp-content/themes/twentytwentyone/template-parts/content/content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©®<š¡IJL‹›¢\Øq.|\Ê',_binary '\é¡\Ã\Ý0CfIÎ°a‰\Þ\èþBqG\ê8¯²O‹u>\íWÃ¾','',0,'?'),(_binary '^\Ü\ÜPA›è¸G\Öo\î','wp-content/plugins/wordfence/css/jquery-ui.theme.min.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b’K¿0ŽböºxÑ™]',_binary '4\Ãõýù\Ç\n–cµE2=V“{\Æ+\è\\goÐ…O‡¤','',0,'?'),(_binary '^é‡K„¾b\æbD·¹z¬','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼E[±?\åµ;~\Ù\à7&B_',_binary 'ˆŒLÐ¬\Ä+ñ\Öd\çvðÀ\Þÿ\ÏawQ±‹ù4C¯\ì','',0,'?'),(_binary '^\ïù^\\Qó\Ã=(w²\î†','wp-includes/js/imagesloaded.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':Vu+sf5¿i\Ë›ˆ\Ëý',_binary '–\Í\á\Õ4H‰û1˜Pcƒ¼ð)C6cýD\ÐaHum\Z#cV','',0,'?'),(_binary '_\Õ\'\Ê~uN29s\"ˆ€','wp-content/themes/flatsome/inc/admin/customizer/img/form-login-lightbox-left-panel.svg',0,_binary 'ªs.®rRaöŒ\ÍLýjd\nC',_binary 'ªs.®rRaöŒ\ÍLýjd\nC',_binary '\\òü†\'‰Hbúž¶ø>\"bµ·Ð·o‚\Ð\0a\Å4(‚¹Hm¡','',0,'?'),(_binary '_°\0\ß\Åd •MP~\Û\ëD','wp-includes/revision.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%¹\Ý\ÂW®-’1ŽU\ÄL',_binary 'ü€\ÄX\ÔwC\ì\ÓMó£—¼Kv#6¹Ç›ª6F»IAöø','',0,'?'),(_binary '_£k4\é÷·!*}ˆ‚Ý„ ','wp-content/plugins/wordfence/vendor/composer/ClassLoader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ‰\×\Ù|%þ‡*T*ú`',_binary '˜˜’\ä¡289vu3’n	C2s¯¼va/Ÿ','',0,'?'),(_binary '_\r!N‘¥û|\ïÉ¼\Î\ÈE¾','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-category-list.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\év\àð£Qõ®\Ã\Þ\Â\Ì÷',_binary 'ö\Ë\à~%\Ë3ú\Ú\ébý/\Þ\íO…+Ž ¯\Ç,–\ÖÁª„','',0,'?'),(_binary '_\r\'gÅª¢g•6\É\Úß¦µ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader/class-container.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.^WLra’\Ì\è)o6bg©',_binary '\à„ÁÀòõYoTcŠ!h\Õp-~k§Gzi]P~û]Š','',0,'?'),(_binary '_Ž¯÷§Ÿ	,þzbk\ZÍ§','wp-content/plugins/woocommerce/includes/class-wc-tracker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\'P2{´ðs\æb‰',_binary '\èlS\à™\íö¡½\ä\Õ\Ô\Ãÿd\áy ]bI\æ|Zµ¡ð–“','',0,'?'),(_binary '_šK\\­\äü:˜d¾~W?','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œg\ã\0ð÷p\Ä	f\æ/ˆl:',_binary '\à\ç)„œ\Ê_¹T´\ïù\éM\"«4\Ö\Öó¶\0ƒÙœ(\æ','',0,'?'),(_binary '_Vú¿D\ÌM\Ã\"\Äq\ÌE\Ô','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Handler/IdentifierHandler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(j\'C_­²Bd ¾;üû¨',_binary '\0nsû—\ÖB²Î‘-•g•Ò•Eƒ„\Í&Š¶ú^\Üdj>','',0,'?'),(_binary '_*\Äâ½žLÿ0\â>\r','wp-includes/feed-rss2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´­lN+\î5	¨›O?',_binary '@!\ë`C\Ê\Ïø*Meù\êûz«j@	´@ \Þ\ÒL°jw…','',0,'?'),(_binary '_\Ì#\è‹ñU1púGSò³','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SipHash.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z°Š\Årt½\Âýwú\É(˜e',_binary '¨Ò¿D\ÜI<õ^\Èi2dW‚]G\â_\ä-+…A8óW','',0,'?'),(_binary '_,.u#ÀœŠ\n\'#\09T','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ð\ÜðyŒn\ÙòxO\Þ.~°O',_binary '\r§\'\êS€\æT+«\Ç\Æôt=\È\éIœ°3ñµƒE\Î9\Û','',0,'?'),(_binary '_6©‡KI¾Wd¿ñ×#A\Û','wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Init.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ç\ë³\í\á\\ß‚Àzq„8»q',_binary '¼¹²€Ÿ24hu\Ç9£\à\n^Z\\.–RÝ¦¿n1û\á‰ó','',0,'?'),(_binary '_8‡ö\ä‚MH!¦|ò\nÜ¯','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/blocks/icon-128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.³¤_E1á¦¨[\ãùZ9ü',_binary '\î*\Ìÿ\É%‹_/2Ê§tç°—¦(þ_ñG\ÍÀ\ãª&«','',0,'?'),(_binary '_@\Ù7§ˆ1úÅn¡É…','wp-content/plugins/ti-woocommerce-wishlist/wpm-config.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\ÑUúÿ˜ô\ÄN¿\ß:\0†',_binary 'ñ¦wù\Ì-e!\àž\'R\ç}ªm8:ÿ\È\à;§ja.\Ú\É','',0,'?'),(_binary '_B\è\0\é\Ãr\Èp–Iu¨À','wp-content/themes/twentynineteen/sass/variables-site/_structure.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']¿µúVj-mˆ\n\á\í·J‡ˆ',_binary '=\Þ\0tÀd\n\ËüJ\î\ÑeøÜø¬Z<Ÿýs´n6\î\Ôøt›','',0,'?'),(_binary '_G9t¸]º\×Û†\äIQ\á–','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Â*3]\Þ<\Íõ\Ý]\È\'Ž–',_binary 'Ð½rt\Ò\Û}¾Q\Ù7üˆ@¥ÿI=}´amu“(˜Q','',0,'?'),(_binary '_c8ø\ä[ž&DÙŽ\ìsc','wp-content/plugins/woocommerce/includes/data-stores/class-wc-customer-download-log-data-store.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ö\á>¨\ÍA®ù³\Ôå½N‘',_binary 'òYº__GFŸF^cò÷|…­ÿvÖƒxƒ	-¸\Ïû±','',0,'?'),(_binary '_i9ªð\×\ë}P×©k\äó#N','wp-content/plugins/woocommerce-multilingual/res/js/widgets.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€-¸‡\Ô.òÂª#Š[$÷F_',_binary '›øRžô|\æ®{¸%W\Õ\çø[ •xaB‡\Ên6§\×','',0,'?'),(_binary '_jõð‡_±¨/\Ô\Ì\ÖyÓ±','wp-includes/load.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z¦U„a2<¾\áœ',_binary 'ö‚\È]\Ôu\'®6¨p$>Ëˆ2ƒu]¤\ìˆ*wøô	x','',0,'?'),(_binary '_uu%ãƒŽsŸ’\ÅX','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-top-rated/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xßŒ\ì\Ô;Tw\ï¿<†‰{',_binary '°\å\Òª¥‘’$oE{¢µ\Ñ\Þvš\r+xºŠ\ÊZN\ê\ã','',0,'?'),(_binary '_wRR«¦~j\"ñ·„','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/dropdown-selector/menu.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ò*ZÝªŽ½¸y',_binary '‘¤Ÿ‘ Š \â\åFöo÷\Ò&}°®\ÇòLz’	Voº','',0,'?'),(_binary '_w¹ú°\æÀ\Øö\'\×JS6','wp-includes/blocks/gallery/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0S‘\âU\Ä\'\Ï\É2dP¸Úž',_binary ' \Ôc\'®›/D.h@¦\×\Ø9~±„#º7_Š0?)\è','',0,'?'),(_binary '_y$°;©~cs\Öz\r\ïE«\î','wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-plugins-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A•‹‘·‘cü\Õ[\à\ä\Ðü',_binary 'u8E¢\æh„ajz\Çgd6 ¢•ö÷…M`ƒA;óé±½M','',0,'?'),(_binary '_{sýW·øù@D\ì®l\Ð','wp-content/plugins/woocommerce/assets/css/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£Dþ^·°;‡\ë9\Æp\Ô',_binary '¯ƒ(Pd‹L°\Å\è¿\Óì»˜9¬\ÂI\íÿ\à\Ëw y›1Q','',0,'?'),(_binary '_€9·§\ÑqL„˜`·™$u','wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-plugin-subpanel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Øí©Dþ¿f£A',_binary '\r\ç‹z—©Ü°\åó°Ùÿt·\í“[jß«šP¸T¿.','',0,'?'),(_binary '_€hl\àŒž.?”²\Ñ#SŽ','wp-content/themes/flatsome/assets/js/builder/core/content.js',0,_binary '¥¿ £]\È4¼ó	ƒbñ',_binary '¥¿ £]\È4¼ó	ƒbñ',_binary 'Hºnü˜sû\Ô\Ç\à\ß46p2C(t\âo\íRs²\ß\'c\ë¯,','',0,'?'),(_binary '_‚š³/T2FInœ\Øÿ','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Property/Charset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÑNŒ”`ð_L—F¥(\É',_binary '1\Ù	mq• ¥nòªÊŽ48?F\Ñ\Ö5wðö–¶*','',0,'?'),(_binary '_†žEeo¾\n\åDo5À…\Ä','wp-content/themes/twentytwentytwo/inc/patterns/footer-about-title-logo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*÷6eË‡\ãHgºø”\Ë',_binary 'IfQÓ¹<©‚Ÿ¹øbE‰\ÈJ|8þv(8š—C\Ó\î¬\Ä\Z','',0,'?'),(_binary '_¨Žœø9ù\ç\Ç\ÕË‚\Ô','wp-content/plugins/woocommerce/assets/js/frontend/checkout.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'óùVmb\n«Pž—%’œ±',_binary '¥J¨\ïb^¾\Ò!úþo~\î¦j\È^²œ\×\íS\ìø\Þ\ï','',0,'?'),(_binary '_¨)\Æ\ØÿÉ¦eŽ:²¯…\â','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/radio-control-accordion/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ËCl§*=·,õ+¶6ü',_binary 'Q‰\àº[6j\r\È\"<CI%\Ö&9ö\ÞÀLô>','',0,'?'),(_binary '_¨W\0û±ûH\Åc\Z4aŠ','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/divider.svg',0,_binary '¬}v¦×Ÿ\è‡V·:*\àG',_binary '¬}v¦×Ÿ\è‡V·:*\àG',_binary '²Ñ¤\â%Wòû²]þ²ùF\Õc|Ÿ2/Õ¢*ýg\Ð\Ý>®*','',0,'?'),(_binary '_³\ít9@² _)J=_\Ä','wp-content/plugins/contact-form-7/includes/validation-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_Ï;ôŸŽý-™ˆoð/¦',_binary '\àV¢)‰¡sAZ«n\î\ã~‚sF\à¤FM\çd\Û)','',0,'?'),(_binary '_\È6\Ç\âò‹\ÅüE™3`ô','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-product.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾ˆ\ãL\ÇJ)¾*\Ò\')\È',_binary '5\Äû(m	üÁÁ\ã\Çr—\ÜTF=-»A§0„¶[\ÓC\Ç','',0,'?'),(_binary '_\Ö|œ¯T¢M^\î½õ\ÄJ','wp-includes/css/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '? ($c–\êg2\ËóPš¡',_binary '\ÖE‚ j\ZÌ…\Ë9\×,{\0\Ï\Í©½\ãwEkñÕƒ¡\ÚV˜','',0,'?'),(_binary '_\Ö\à4\ä3“\Í\Ë=Ž“','wp-includes/images/uploader-icons.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´“\\M\ÏÿÀùm–€',_binary '\Ìp\È\×ú\Ëúü+/\Ñ\Ü\Í\í\Ç\îi÷\Þ!Z®Å£6úm†','',0,'?'),(_binary '_\Ùi\'ŒñÁ\Å\ÔÀiG2','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/active-filters.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤V\ØH \â—É€…_\\_Ì„',_binary 'µD¿†\é\Ù\èC±-½AæŠ²s \\°f9\ßñNx´\Û\Ì','',0,'?'),(_binary '_\Þ\çøZy\Úx³(!†¸','wp-content/plugins/woocommerce-currency-switcher/css/auto_switcher/classic_blocks.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷Ë™\â½Vv/ùÒ‚\ê\È',_binary 'S\ë¬Ui £õ—\çúÿ\ÍQ\Úð-ù’””\ÎIQ¯¹fƒ½','',0,'?'),(_binary '_\å ök\Òw¤\Â\Â&¤Eò','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\ÃvE…‰\"¹Â™M\\\ÙñM\Ã',_binary '4(eõ“ýô\ÊI892¡\×ö-…ë±ŽóÄ¼®~™]','',0,'?'),(_binary '_\î‘(\íC˜Œ\ÂM6˜9\É','wp-admin/includes/class-wp-links-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ø,\Õ\É\È\à:xulQ\ç',_binary 'u\Í\äÓ«@ÿ\í–aÂšB¯ú\\e4\Ý\áb°$\í\Â6','',0,'?'),(_binary '_õ´\ïý\á8}\Ì\ßœ?\åŽ','wp-includes/css/media-views-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yÅ´\ä\æR›LV]‰ü@',_binary '\ê¹ó\ÏFB\ÉZ\Ä5s¼\'ö\èlŸòþ´0œ|Y¹\Æøt.+','',0,'?'),(_binary '_ûŽ2oø±ÀU¶§úE6','wp-includes/blocks/query-pagination-next.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$™\í†P£w\ÚuŠ\àJ.',_binary '3ŸEnaK9\Ïê˜§@#ò§o\rÈµtx~G3\ì(°>','',0,'?'),(_binary '`\0\rÙ•p#µ\áö1\Üû','wp-content/plugins/woocommerce/includes/cli/class-wc-cli-rest-command.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ø+…|{¼\Ð\è»R’™\êG',_binary 'l\ÈG’™vEh_µØ¤~vA^/.Ñ»\rp\Ð`\í0\ÎÁ\Òô','',0,'?'),(_binary '`Al:‘2\n®U>pi','wp-content/plugins/woocommerce/includes/integrations/maxmind-geolocation/views/html-admin-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ëŒHui\È]˜“µ¦„£!',_binary '¢\Ø\ÆX¥\È\×\ÄPö5‘òAúº\ä€AQv\×Èœ,\'þ\ç>','',0,'?'),(_binary '`Gûo”)¢u\Ù\âJ»†p','wp-content/plugins/woocommerce/src/Database/Migrations/CustomOrderTable/MetaToCustomTableMigrator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3I\0sR\åX(\àg\é*(',_binary 'úõ§¯©$‹ò§\èÂ¨tB3i\Ê\í»\àŽ‡3e\\b\nN','',0,'?'),(_binary '`¿\\.9_þ\Åß®oJ¾+','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z©1\Ôcjs[2<\Ë^ÿ',_binary '\ÉËªN¦¡G{c•[údù6[\'\ä@\ï¹\Ãþ\Î>\Ê\ìE','',0,'?'),(_binary '`\r+\É¿‹‡{Hü<œ‡\äk','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/label/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\ëHÚŒßª#PÁ|\'°—',_binary '<\ë\æ.\"PZjo8+KgOÆ¶,¶&H»	ðœ\Éý','',0,'?'),(_binary '`‡\é\ë°\Ípêº¨ø@\ì\'','wp-content/themes/flatsome/assets/img/payment-icons/icon-mastercard.svg.php',0,_binary '\ÙBv\0V›\Ï}¹­GV%(†',_binary '\ÙBv\0V›\Ï}¹­GV%(†',_binary '8’f\0ù\Z“–C\í\Ðú?’<Qf2\Ä\ãv\Öá”˜ð÷cød','',0,'?'),(_binary '`=1ø\Ù\Ðøp»¸Æ’','wp-content/plugins/woocommerce/includes/react-admin/emails/plain-merchant-notification.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'š\Ëa${,]‰Lú\ã‘)€',_binary 'ÿ™†±ê„‰~ Sg¨‚\â\Ò(°\Ø\Þ[\Ócð›q¶oO','',0,'?'),(_binary '`\Îþ\ÇS”`NI‹^G\ï','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(€i@\ÆG\Ïg\ëô®0\åp',_binary 'G\ç½ù<š/÷14Å…\ÕL\ë\Ò5Ÿ»¸¹£œ¸!','',0,'?'),(_binary '`^\Ã&ÿp\äQq<L›\Ï','wp-content/plugins/woocommerce/i18n/phone.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'û£Gó¬™	(|•:K\Ä{ž',_binary ';½Ž”“ýVbù2m\ì\êŠ7I7$†ª\ÕüC	üª\Z','',0,'?'),(_binary '`%­Ö½\áj®±\'‡\ÒPù´','wp-admin/js/edit-comments.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¶L\ä\Åõúe\n\à‚t¥',_binary '¾Ç–$þúÂªrO$w\0\Õý»šrÈ•Kd\î¶71\ß\Ö','',0,'?'),(_binary '`4œ}Ø®\ÎÙ‡u·Â¾\Ì','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library/filled-cart.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?=K\æ˜+’£\Ø\Ý\Ä\â½\ã¶',_binary 'wp\î\ÜÁ“…µ@*L\Ï	<\å­p\â\ä(\0 \Õ÷H“','',0,'?'),(_binary '`9o¸‰›B\Þ% Ÿ®\Åj','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/with-searched-products.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\è.\èÓ‡²S\â¨J\Æ\"¾',_binary '*?7,:oÖ¬ý*Ù¾Ìº\Íc(\Ã\rnB²²ú\ÜS','',0,'?'),(_binary '`Bd3ó¼ Cöj¤3š\Ýn','wp-includes/blocks/verse/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AXß\é\á\í`j²„\Ä\â\ã',_binary '%_¹°Ò·74ÁŽ‘\Âw\'ò\è\çGŠ\ä&dr#÷\éx‹','',0,'?'),(_binary '`Q¤QUœD\Ñm\á…#ZY','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-name/stories/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§Wa-Ã­\Ó\rl\í>\ÄÃµ',_binary 'õhI¯ºRf\rTzû\"„† p–lJH;l<Ò†\É\æ’','',0,'?'),(_binary '`Wó a;87ƒKø¬”','wp-content/plugins/woocommerce-multilingual/templates/currency-switchers/legacy-dropdown/template.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾\é/(s¬ð\0\æ\îŠÍ¤\Ã.',_binary '\È*h\ÞöUŸ™œ\Ô5•N	‚S\ä‰ùhBD€oü2›·¿','',0,'?'),(_binary '`2	#\Î\\À¾©Z$úƒ©','wp-content/themes/flatsome/inc/builder/core/server/helpers/components.php',0,_binary 'Ôºo|b¥µh\Êjj\Ò\ï0',_binary 'Ôºo|b¥µh\Êjj\Ò\ï0',_binary '\Z–:-v\ëR»T_lF\á=\Ó{½)ø;p\íC\r•\Æ\Ô','',0,'?'),(_binary '`…\ïo\Ý\'‡c? –/ \è','wp-content/themes/twentynineteen/template-parts/header/entry-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0D½ÿ\á›\àÂ‰j<’',_binary '\ØI\Zª{¹\á!™\îM}OL¡bdpOˆ‚\âhV\çÃ›þ','',0,'?'),(_binary '`‹ŸN2E‰ï¾®\Ñ\ÇpC\è','wp-admin/images/privacy.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñ‹¦W(*/\ÊE­;G{£›',_binary '°;n0|:£¿\Í\è\Äðý,¸2”«¶\äX6V½B5yˆQ–','',0,'?'),(_binary '`Œ\Çû\nƒýó†2¬\ê¯‹','wp-admin/css/code-editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å\ë¿\íö–V¡¯DBQVgF',_binary 'wþ\Ç86=\ÅÝ”—ý‡\Â2\é—\rD%VˆÿE5½Sø	ôT°','',0,'?'),(_binary '`—ù\Î40‰‹t.\ÂNO\Ã','wp-content/themes/flatsome/inc/builder/shortcodes/values/filters.php',0,_binary '\ÔZVÉ¨ÀX¤ÌŽÁ(½,',_binary '\ÔZVÉ¨ÀX¤ÌŽÁ(½,',_binary 'iè—Ÿ¸ý\Û~\Þ³/\Ö[\0¿X<\Åj\"˜üÐ¸ð,‚4\Åm','',0,'?'),(_binary '`š\í^±¿È•„8Ž\Íº7','wp-content/plugins/woocommerce/assets/images/task_list/basics-section-illustration.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'æ†—g\Í\Ü\Î?\î–ò)Ë¡',_binary 'j•6m;ú\É2ey4S¡Wò—HŒ¿V\è§0q\0™\æ&?','',0,'?'),(_binary '`¤aŠ(Šg°ú\"„—','wp-includes/js/dist/html-entities.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú\ÕrŒ\í(ÿ%\îkc[ˆNd',_binary '#(ºu0\ØEm\Ç&¹;óNj\ænÀO\Ý\Õ)\Z\Íb5ŒB“4','',0,'?'),(_binary '`¤—¯®„G½.\ç2oC\Ø','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/class-php-autoloader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9{ºlý{Žm¼\Ä|a^wóý',_binary 'i•†¹‚\Ï\Ã\å\Ú\Ü\nSý\0À0\è·\"¸’±;;yS‹','',0,'?'),(_binary '`§§£\î6[¿~\Ú\Æg/','wp-content/plugins/woocommerce/legacy/js/admin/wc-orders.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h3\Î\'\ì¬\Âh«œ‹…ÔŸ\n{',_binary '\Ée]PQ)Ÿ†0†ó‡b¶*ßŒ›™ò¾ñ i','',0,'?'),(_binary '`¨\ÇQõ\âI\\qt\çŒQ5ò','wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-custom-taxonomy-translation-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e¬Á\ÙOR\Óeˆc\Ì4º–°',_binary '\å\×Àº6g\0¬¾¦—7\îev=.›´½[q°kþC\'\"','',0,'?'),(_binary '`»c0¯ž\Ù\\ù\â\ë•3\æ','wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	>\ÂU6Æªgý³v\Èf',_binary 'R\ë&sX$6#\ÞŽ‰_£ÁÎ½\í¾J\ß|\Äþb0Šo','',0,'?'),(_binary '`¾˜»²Œ\æö›]\Ú\ê¶#','wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-l10n.php',0,_binary 'Î­qJ’ŸXÁ\Ö\îv\Â-\åh',_binary 'Î­qJ’ŸXÁ\Ö\îv\Â-\åh',_binary '¥\è~¤\ÝNó5\Ëõ¯\'\\¤•\â\Ð\ê>ô-d\Ìz*m6','',0,'?'),(_binary '`\Ö\ÆMy¦±;\Î>\Æ<\'öwP','wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status-logs-db.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vkG›I\×\ÙAx\ï\\\Òso',_binary 'QA\ë\Þ7>K\ÙZiv®ÿ€v?AŠÕ­C‚\ÉØ¹n\Z1º\ê ','',0,'?'),(_binary '`\×\0\ÊT‹\Öi_Ü“emh','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-guards/string.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—Á„ƒ\Ú\Äk}\ÑôI	€ø(',_binary '6\å?þ\Ó6Dó˜µ\ÔLmf;S\î8	jO\çD‰š¯','',0,'?'),(_binary '`\á:\Þ6\ÊT«;ú#¿c\è','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/ChoosingTheme.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '00>Û“x¦”\èr”Øž1›',_binary '¨b6\Ê§´T\æ\ß7 ®­ÁW\'\è\ïû¡bB\Òi\ì','',0,'?'),(_binary '`\çÊ/\ë\Ø1ž\Ô)0c','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/inline-fields.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ò\Ê\ì\ÜP,À=\é\Ã\ê\nðý',_binary '½‘›!\Ä†“Mù›\È\ä\ÈgË«\ØHH’IwÅ›\ë\êd\Ãn','',0,'?'),(_binary '`\îœ\Ür¾‚w§~‰\ç','wp-content/plugins/woocommerce/vendor/symfony/polyfill-php80/PhpToken.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P­M‰°Ô‰£™¡1\ß',_binary 'ToqF•’¼R\Ñ^Ï«ý&ø‰yö#ñC°,‘s:','',0,'?'),(_binary '`ö¦”; \"­-¹ÿ\È+~;','wp-includes/js/tinymce/plugins/media/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ß#@,\Ù4dGº\ÔM',_binary 'XHx¿¤¶\É0ƒÖX¹\Z³š„OG‹÷|\é{—F2','',0,'?'),(_binary '`ø¹FW\Ä\Â\íLºl\ÐF«\Z\å','wp-content/plugins/woocommerce-multilingual/inc/currencies/class-wcml-multi-currency-shipping.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hb\á\Ú0\ÜÚº\ë\àkbP\n25',_binary '$Nû½ôHŠK}t°\èf(g(\ß\\\êÀie*q/ÜŒ\ÌÅŠ','',0,'?'),(_binary '`ú\ÌöKT\Ë3ž`Ž¾qª','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/Redaxo5Installer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')§µ\à\ì\êŠýº\ë^R!-\Â',_binary '`¦\ç`Œù1œ\Ý\0˜2•\Þ\'\ÐðU·A•ÝŒ !²^B\Å','',0,'?'),(_binary '`ý}+\í6±L-q[©®$','wp-includes/sodium_compat/src/Core32/Util.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œ£1\î`£\Ø¯0›¡£\Ñ\ç',_binary '\à¤qÆ–•‚\×\â‰%/\Ýy¤g’rwÃ›‹\r\ËLR>=Y','',0,'?'),(_binary '`þU®2‘šmdW','wp-includes/class-wp-customize-nav-menus.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GQ|\ÉWò÷d v°qWSe',_binary '‘\á¯@ÀjŸe<X+\ê{†¨\Z\Ñ6(xhsù£!1Qc','',0,'?'),(_binary 'a\äü)6\ç\ï¢À‚ÑŽ\ã','wp-includes/js/plupload/moxie.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰#C\r¡š5Ç±\ïÇ’¶üš',_binary '¿\èó\ÃI\Ò9_/x\Ôt5š\å¤\à(¿.g\âtT\Z}&¾°›','',0,'?'),(_binary 'aj¥Ý‹(š\È‰\Ò','wp-content/plugins/woocommerce/includes/admin/settings/views/html-admin-page-shipping-zones-instance.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ß-c…a\'\Ä-LŽš\ï¢úY\í',_binary 'óÎ”)K”)‚þ>ø\åEšz”.+`\ÙXˆMø;ú“=\Ã','',0,'?'),(_binary 'a.J\ÅÇ”ôT=tspÉ·','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦ó³\ïº6g«O5|ð\ï ',_binary 'pƒns¦\Ã#dóÁF$ˆ—\ÏWÍ•Á\ß\Ù(QŒ¡7Á6','',0,'?'),(_binary 'a\Î\Õ9‡£\Ñ\n\Õ\ÖO\Æmª','wp-content/plugins/woocommerce/src/Autoloader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}-˜d?·±\Ã[M-9',_binary '»%\ëü}~\Ú=\Òlþ&F\nDO\æù\"','',0,'?'),(_binary 'aQPóžªlT•\Æ}Ye','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\îI\Å!ði\×Q†Hz\"”÷',_binary 'A\Úmð¯\ÍD\ã	(V»\È~\\’F•LQ\\*$C\Ç\ïo\á‰\Ï','',0,'?'),(_binary 'a\ÏB>û2¾\Òð\és´6ñŠ','wp-content/plugins/woocommerce-currency-switcher/js/meta-box.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÈN\'a`¸N\Ü\'‰Y“3¡}',_binary 'T¡[\ïTÖ‹O\rQ˜§†ø×‡ºYq\Ýý\ØU\Þx3+','',0,'?'),(_binary 'a£<j&k|\Ó-VeŠ\Ú','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-theme-licence.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ï\á)5®(ð5D5\\\Ñö',_binary '‹Y`>øh„Ÿ’%—\Z$q!\ZAô-·OB‰ý½\noH','',0,'?'),(_binary 'aoeô<}ì’†|\Z','wp-content/plugins/ti-woocommerce-wishlist/assets/css/public.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OÙ»zŽ—\ÒUð4®z8)€\ä',_binary '‘Ró•\îo\nï“®5vR¤>/Ñ¢\è\Ç\ç\ÅZ9a\' ','',0,'?'),(_binary 'a$\ê…\ÜjŒ\Î€›•?z=','wp-content/plugins/woocommerce/includes/class-wc-discounts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\Â\ì\Éd„p#\ÈTÿ\0K¬_',_binary '\Ú\çF\Ë\àrï‹¸¤HÂ cõ\èX.Ç“-v«\ãÓµ„h','',0,'?'),(_binary 'a)žTMW\á¸Ooˆ¸Q”|\Ü','wp-admin/images/media-button.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²¶\Ã\ã6@p\è’z^yeó\Î',_binary '_\Z\êúˆýòSj×–Y ½óð\è•V¿ZŸ\îGen\ç°_','',0,'?'),(_binary 'a.IýŽc\ÈtRŒ\Ûs.¢','wp-content/plugins/contact-form-7/includes/controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\Û\Éd ³¯‘¡l\"\Ò}',_binary 'O}\ÜÁñ¡m\ÓFç­Œ|\Ãcó\ß\åb8E[E*)\Ë\îƒ','',0,'?'),(_binary 'a5\Èc\Èó­Á¶l)!ž°l','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/context.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´oÎ®\äd\ìH_¬¦Á´\ç.',_binary 'x‰\Í!É¹OÁö§„n­(I\Ç\Æ&\æ\ß%4&\ßl­{','',0,'?'),(_binary 'a>•¾é‘†§~\nþ\Î\ÉP™*','wp-content/plugins/woocommerce-multilingual/inc/template-classes/store-urls/class-wcml-store-urls-edit-base-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\ä÷m…÷iLþy\ë',_binary '¿uûsH$ˆ`\Å=j<¤Œ•iT.°­@\É\Ê\ÈØ….OKœO','',0,'?'),(_binary 'aD2¤±\ÅÁ\âðµð;Y:x–','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/discounts-meta/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'¦‰–G\í¢<A(A,\á¿\Ä',_binary '\ÉÆ…\ÏE°Œ™ý}£nt†\×-\æ/¯!ÿô†¹\é‘EÄ¥-5','',0,'?'),(_binary 'aSR_\ÅmÄ©X“\éü4\Úò','wp-content/plugins/woocommerce/assets/css/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œ«Y02Ž*i\ïK¿,]\î±',_binary '\×PÅ„² L\ï]Yj‹_ß¿š–~ù÷*W‚}\çŒ\ï\á†','',0,'?'),(_binary 'aUC\Î\â¢1$\æ\çR/£€ô','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/spinner.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°£\Ý\ã1c~\'ªdv\ÔvHq',_binary '\éI\ÜÁ9%ûŽ-7C­Œª¹P\Ï<„r\ï\\cª\"x\×{','',0,'?'),(_binary 'a\\c,I\"5T\Í±#Ì‹þ','wp-admin/images/media-button-music.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4^&$o\Ã\è uf&ô˜',_binary '\èwWdÂ¼8PœF6\êA½µ\î\×Ü´´to-\Ö\ÓX\\‡þa$','',0,'?'),(_binary 'ae\î§\ç)‰\èaù…\í','wp-content/plugins/yith-woocommerce-compare/plugin-fw/yit-plugin-registration-hook.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\é\ÓobHºn\\Eÿã•\'•',_binary 'ù¯ilh)òdJƒ \áú¦C3ywœU·_8\ì*','',0,'?'),(_binary 'agOIK¹1Þ‡.\nõgB\Þ','wp-includes/blocks/navigation/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<§ º4\rW4µB\Æp2‰',_binary 'ß¿¸•R$\ãg¥œ	eô¦E\Æ;\ÖÀ*Cñ\Ê\Ï ','',0,'?'),(_binary 'ax#`\Ô\èJ9:\å³\Å;B*','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/previews/reviews.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Æµ„”n‡\ÔeD\îÉ´Ž',_binary '¶0CTš/HÏ±‹C4\\\äóGø‘ƒœ»oF\Þgo\Â-]W','',0,'?'),(_binary 'a€Sœ?\í:se¯±]:\Äó','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/onoff.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©\r¨ú+-*Š´{µdj\Ì',_binary '„·…¾\ä‚\Î\Ë_:ÊŠ\'›\ÎÀ¼Mz\Ð\ã¦dÚ½-','',0,'?'),(_binary 'a‚w™U\Ìð\ZTzºK„','wp-includes/blocks/post-excerpt/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\ä\á¤)\0Ð¬ñš/o',_binary 'F·+hš•\áªp³”a\ÜqÃ‰\ÈFb\ÂA\Ü3i÷<\Â\Ö','',0,'?'),(_binary 'a†o²aØ“=çŠ¢­¥\Í)J','wp-content/plugins/woocommerce/includes/shipping/flat-rate/class-wc-shipping-flat-rate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' MþF;\ê$š«\ÌNB<t',_binary '\"Üº7·1DNÇ™²¾\ndžTO\ß	\Ø\Í\Ý\é½ÁðZ\íD¿r','',0,'?'),(_binary 'a‡÷¹\â	¯òšþ¾\ì™\â','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/shared/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñ²m‡2¯\ÏT\"’',_binary '»×’9¼7§.G5\ÏÏ¯1\Û%\ÛX\ÅZ.\è¼\à‘\á´','',0,'?'),(_binary 'a\ÇV£mO\Ð\Ç¼\Ìq','wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-refund-data-store-interface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-‘\ë:…Õ‚\ÊFiHluŒ-',_binary 'O_§¾\Ç\Î\ë¦bµ¿è”»‰\ç¼Q1\ï.1$\Ã5¤( ','',0,'?'),(_binary 'a™vdÂ’ý&…ü\\\×','wp-content/plugins/woocommerce/assets/client/admin/currency/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’\ëgN|g\î¹Uöx',_binary 'yB0\â+\nW”?[l»B\n°ðEq¼ú\ÑLX—O','',0,'?'),(_binary 'a§?£ª_\×Ë¢¾\Ð6j¨\ìX','readme.html',0,_binary '˜4®ÀÀ™q\ë$ö¸\Ö{',_binary '˜4®ÀÀ™q\ë$ö¸\Ö{',_binary '\Çð²ii°òM\ïä‰Å´\É\ÒKò\Ï\Ï<8\áX','',0,'?'),(_binary 'a¯ýõ=â»».¡\Ì¢f ','wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-coupon.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ò\\\ÌG\Þ\Ï9dö\È3“³ÇŽ\\',_binary 'k‚”Ø™‹Pö\Ö\ÍÏŽ\Ù.\ãóKÑ“Õ”\Ûfg¥nó9µ','',0,'?'),(_binary 'a¸û\ÅÛ¼óD¤g\èøý\É','wp-content/plugins/woocommerce-currency-switcher/css/data-table-23.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nXš*´),*\åo^o˜',_binary 'ô/Á\ÅþHÏ¨-d\Õ_ ™q(o\0\âVžu]SŒú5½','',0,'?'),(_binary 'a»#õ÷È‘ó\n!pl£!','wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/onboarding-homepage-notice.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.÷ql¦!ú¢E]¨¥ncú',_binary '¯\ëa:\Å&¯oƒˆ\Ì>ƒi¡5·nIõ\Ý\"»ñœ¹ûU','',0,'?'),(_binary 'a¿J”’r\Ó\ä\Ý&\Æ-D\Ý','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto32.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U¦ªo\ç}S}Á–8.',_binary '\î$®\Ös¶\Óôˆƒ\ì\È?;f¢Ä =`\r\Ù	\Þ\Ä&¹«!','',0,'?'),(_binary 'a\Æ\Åƒ\Éû(m\àEBýl\É','wp-includes/media-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Üh\ì‚\ä\ãD7¥S1 c=M ',_binary '\å	t(ðNE&Í·CÔ°@Sû\0\0¦0·\Ûô#…\Ä[:','',0,'?'),(_binary 'a\ÉcµCH\r…‘=l@Ä¸','wp-admin/plugin-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[f—ÀøCw\Þ\ß\r\áª\'§”;',_binary '\'\Ôd\Ûq9û\09Ä¨ñK‰\Çr\é5û\r‹\Ï\åý¼\â—','',0,'?'),(_binary 'a\Ñy›9\ç˜}`n’²l®','wp-content/themes/twentytwentytwo/templates/page-no-separators.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Š^l6úøC#¶„{¸„\ß',_binary '€¡·ª8FH>/>\è(YÌ‚fXW	=0&&\rÿ	\r','',0,'?'),(_binary 'a\ÔISy\Ç\Ç\Ô\Õ1ßŸ¿B','wp-content/plugins/woocommerce/templates/single-product/tabs/tabs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_úz³\Ò\æ$•7iý»NÇ³',_binary '±÷­ŠHDª\Ðuóµ‡§:5›Æˆ®´™B£¤eŠ\rž','',0,'?'),(_binary 'a\Ô~*k`D¿np§}·¾f','wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-customize.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%»m\â\0 w\Ý\ß+ :hø',_binary '\Ýß g£>\nÕžV5ª|\èµm\Ò~s‰ˆ¦\Ú6Œ%','',0,'?'),(_binary 'a\Û0\Ö}\Ðè¸€ª@\Õ\Ü\æ~','wp-content/themes/twentytwentyone/template-parts/footer/footer-widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Š\îes\\±9ø»õ©',_binary '\Èb\n=W®¬pú°”ù\é=Ž¤”¬3§¨Œ9\"Ö—;','',0,'?'),(_binary 'a\ã®+.\Ùsõ)x„¦z˜üg','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/views/icon-256x256.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9tD‰À´S”7=\ä¾\æ¼\\',_binary '¨5©.i@W¾òÒ·a?±ú\êHõj¿0‚\Ë×­‰{','',0,'?'),(_binary 'a\å\Õw·\ÚI£”ðò\Çûb(','wp-content/plugins/woocommerce/vendor/composer/autoload_psr4.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡Vÿ¯\ç.NL\Ê7!Ì’',_binary '^s\Ùp[U€w\Êô®¿~\áWW³@Aq}7†\Èÿd\ã\Î|\Ú','',0,'?'),(_binary 'a\æai\çGö¬ˆ}\ï\Þ\Z ¹','wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»ºŒpYö\êÿ‹jpªð?',_binary '˜\Û\êñ©\ÒQÈ¤#\Ýf\ïXN(!\ãTøy\Ìz\\/cH	','',0,'?'),(_binary 'bLŒ\ÚP!<\Ã\âô4\èt„0','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductTag.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oÊ2\Ë\ÚZ=%ˆy\Å\n)\Ñ',_binary 'j9\Z4‡&®SµZ¼Ž\n3ª\ä¨V\ïœ,S4òº†1','',0,'?'),(_binary 'bªí€”\Ê%ù‡;®','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/sep.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G”>!¬0–›\Ñ\äTm”K¶',_binary '?„$»\n7£\È\ÝY€…\r—\Å\â\È@\ÞA\Ó*\ã(i}\í','',0,'?'),(_binary 'b\Ëú}›·aŒRdò7‡¸õ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/price-filter/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C>¤v‚J1a÷µžõV\r¯',_binary '\×<¢\å[u¿µ\ß\ê•y‘4¤¡0¡n8k½-†G>·','',0,'?'),(_binary 'b*þ¿Z\ÝÞ‰VÄŽB]±Q','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/products/repository/OTGS_Products_Bucket_Repository.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Û\ë\éA¸%¾\ÕKuZ$\'\"',_binary 'ºJqü\á\îtcDAGŒX‹cºY‘q\íu…«\Åþ','',0,'?'),(_binary 'b-zba‰$;œ\Ïbñ|ð1','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/quantity-selector/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O]G\í-;S\rY\ì\Ê½',_binary 's®„\n\Z\ÓDAó\çç™ºeL&EÀ‰‡\Â¨2JFq','',0,'?'),(_binary 'b3›Z¸!U“s¬\àYyoM','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/filled-mini-cart-contents-block/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N3\ê.³žÿ\ÇD\Ë	\ß|Œý',_binary '\Þ\r~>½”Æ¯4(1\Zû\ì\×d¼\éI\Ü\É-ªIšc\ÖY\êž','',0,'?'),(_binary 'b4_ø’z\ã_\ÙLl¨‡Y|','wp-content/plugins/woocommerce-multilingual/classes/AdminDashboard/Hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\î¦\Ñx \0±{~9øw©‹S',_binary 'Jzõ\Ì[žºÿ¦\ä£\ÑU\ÛX\×dð\éúª\Â\ãÁ\à \ä\ß\á\Þ?','',0,'?'),(_binary 'b>Ÿûm§r±\Æ÷J\ä','wp-content/themes/flatsome/inc/admin/customizer/img/portfolio-overlay.svg',0,_binary 'U!\ÖG\åS2lf‘?\Ò\é]x',_binary 'U!\ÖG\åS2lf‘?\Ò\é]x',_binary '\ì™Cn\'ð§\Ç\ÄuhO%Š¡\à°*\îSm‘Xiá³š81','',0,'?'),(_binary 'b?9u¼\äO¤öDŒF\Ò','wp-content/plugins/products-compare-for-woocommerce/berocket/framework_version.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§Õ«\ÂŽS#†JÇƒ‚‘\Ö',_binary 'ýi+F‚\Ïh@\è\ëíŠº\È!ò56ŒÁÿ÷{m›\á','',0,'?'),(_binary 'b@¬\áa³&\Ã\Î3Ž“\æü±','wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/DeprecatedExtendedTask.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ô}ºö)\çƒ¤­`Ò°J',_binary '\Û3“ŸY‹\å@\Çm#‚W6\ÐðWK;#xs%%\Î{','',0,'?'),(_binary 'bG\á\×÷\"»öæ¤©/ûÂ´','wp-content/themes/flatsome/inc/builder/shortcodes/ux_html.php',0,_binary ' É°%úo&´%\ãû¯Ž',_binary ' É°%úo&´%\ãû¯Ž',_binary 'š`d€P:1l\Ê\n¥ý\ä0´Å’Ï“ð‰˜as·k','',0,'?'),(_binary 'bXÇ¨¯Ô¦À,]~´¤ô','wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-eleven.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\ÌÕº9Y¤ôô©û',_binary 'u7ƒ†¹°/¥þ©oO,V-Of#E#1#×©¯„¾m','',0,'?'),(_binary 'bY\Æ,¥°Ï¥YªrÛ\Ñ;¾','wp-includes/js/crop/cropper.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ky5ôni*M(\í™',_binary 'ôÙ¸¸T†\äÞO“³\ÙwL¦y=}\ÎgTlÀº±¤½÷','',0,'?'),(_binary 'b^\Êk\à\éC\ã\nþ<<»;h','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/shipping/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨p\Ñ÷\Ìuþ<\É\"6Á¥\Ýÿ',_binary 'dE]ji\0qW‰öF!#\Ïð¢\nŽÀ\Â:¢*d\Å\Ãó','',0,'?'),(_binary 'bb\nŽn\\V\ç\È\ï’o&','wp-content/themes/twentytwentytwo/inc/patterns/page-about-media-left.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-¢8ú\Ûhe‰Ý©D9‰z',_binary '\êÍ¬\ë\0\Ä<\áÈ’Âÿ\ì˜?\ç-)ªøÀf\ÞzSH','',0,'?'),(_binary 'bq@\ÞH¥;•´ÅŸ\Ò ','wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/styles/style-1/actions.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\Ç\Z¹Â…Vx¸Q÷\ÅD‹\Ý',_binary '\ÞË³-kxz‡Z\æ\ìhœ\Ñ\à§1\Å\\T:0’•Ð‰R','',0,'?'),(_binary 'bvjŽq¨óù[ð\nH\Ûq¹','wp-content/plugins/woocommerce/includes/class-wc-post-types.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬Ã£…\ÞQF©I\Ö\\\æ:­\Ë',_binary '^pEu\ê¶lŽó‘óT-\ïyº¼Zñ\"\ê¥l£(ˆn\ÊE','',0,'?'),(_binary 'b\ßI\ÚG“p\êI6[¾ƒuš','wp-content/plugins/woocommerce/src/Admin/API/Reports/Taxes/Controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æ0…9{ˆ% \rsZ\'O?Ÿ!',_binary '\ç\Z¹¤D)\ÚeÏ²\ZúNöoû•8\ë\Î\í^¾ˆ\É$/š¬˜\Ñ','',0,'?'),(_binary 'b’»HV†\ìmA ’Mh­\"÷','wp-content/themes/twentytwenty/assets/images/2020-square-1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÖÜ´\ß\ê«\Ý÷6T÷k\ãx',_binary '\èL£w%ùø\êª7˜M®¡È´\æxñ \ê” >þ­?\\õ','',0,'?'),(_binary 'b–\àÀã¼`zO„\ê\è§\î„','wp-content/plugins/woocommerce/src/Admin/API/Reports/Stock/Stats/Query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ìi-\rB\Æg;ú l\âSZ3',_binary '!\íMŠ‰‡\ÑQD\\\Î76W\Ý\ãjD“¡ò3²D\r§¢óž¯','',0,'?'),(_binary 'bŸO\Û^—\'x!²ú¡\Æ:)a','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/utils.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\é\'\æ&\É\Ö\æ´*‚S\Z<s´',_binary '\ìD\ç*FÇ›|dä”Z¢¬¯\âyôñj\Èq\èm&l\æ','',0,'?'),(_binary 'b¥\ZEN Ö™D¤œ','wp-content/themes/flatsome/inc/builder/core/shortcodes/gallery.php',0,_binary 'õ¥Æ„\\ñøÿ\Å„¡g\È',_binary 'õ¥Æ„\\ñøÿ\Å„¡g\È',_binary '\n*\åš*\Ô2ô_ø¬•boÉ®v=\ÝO_R%\0\ß]N\Ñ\è¼','',0,'?'),(_binary 'b½A¦ôgª§“\Éz¹«','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/fonts/otgs-icons.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\Õ\nžk\ê\â\Ëk¶/³þ…',_binary 'Ó¶F\âE\n¦=Ô†õˆ¤2§\Ël*\Å0˜dò~¢\Ç','',0,'?'),(_binary 'bÄ·„n<øp}§\'®q¡ý','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hooks/test/use-previous.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\ï~0\Ð\î\ç#bE\Õaþi',_binary 'Y56k¦‚•“\ÕP	h š€Cz5h-9Á’¾±¶\Ä','',0,'?'),(_binary 'b\Å\Ë2_ý7\Ó\åü\â½L…','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/test/with-transform-single-select-to-multiple-select.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þf/M\ã?\Æ-\ÉDK\ì1YW',_binary 'rò—|]•|õ‚˜\ÈÔ \È4\n\n„y\âVfü9\áTy','',0,'?'),(_binary 'b\Ê¥ñHzfW˜ …­gw›','wp-content/plugins/wordfence/lib/wfSchema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Oƒ@£ö\Ý©	\ì|…\Æ\ÙOš',_binary 'g±v…ž­\ÉK%·\ÃoiS‚7Ÿ.\ï]ñsiH±±2:p','',0,'?'),(_binary 'b\Ë\ç±8\îq\á#„\âv:','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-editor.php',0,_binary 'U÷qŒ\Ü\àô\ç?\Å\"',_binary 'U÷qŒ\Ü\àô\ç?\Å\"',_binary 'Áb\êY¬(þŠ\n¯«Qø\É;)+eE\Ù)Œ\'vPa,','',0,'?'),(_binary 'bÒ¶r¾dn+’±ûÑ’m/\"','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/js/colpick.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zW\ÅOö70¦<.\í',_binary '\Ú#_\Ãj&‰Ff1/Šƒ‡±¹\Â1a\ÙLI\ã\Â0Sz-p\ß\â','',0,'?'),(_binary 'b\à”û¿”ÒŒ &\é?¬{','wp-includes/js/customize-loader.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³-û¡À·“#\Ø5&*šo¢',_binary '\Î<ÅŸ;\r#8²+=dK\Þ\è\ÜFê¡»ÀS)8ž×†>]’','',0,'?'),(_binary 'b\á\Þ1£N\ì\Â4Y—\Úe','wp-content/plugins/ti-woocommerce-wishlist/views/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×YÙ°G\ÅÊª\Ò?\êp\È=',_binary '\ÆÊ¢ú±­¼\Üv¬24DHö¤»·6J¬õ\Î#/5lšÀ','',0,'?'),(_binary 'b\â÷+Æ´ÝŸó´3\ï†','wp-includes/customize/class-wp-customize-nav-menu-location-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–”U!\Ü\Ýös^–7\ÆL',_binary ';ôlÏ“Žb^¸\Å\äò\Ù0ª(†@\ï®L§#B£¡','',0,'?'),(_binary 'b\äzp1{rx@\Ç\äm%\Û\Ö','wp-content/plugins/woocommerce/legacy/css/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\íD\ç¡\È5BJi†M••³^ò',_binary 'ª§ŸB\é\ß\ÉZý\Ýøf¼\ê6;\Ä#…™XªV\ém‡Š','',0,'?'),(_binary 'b\ê\0c‚ô\ÂCq‰B~Ú¹Ss','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒºm°ÄŽå¦\r\"³Bx\Ê~',_binary 'ñP¹˜Š§Lò²`û\'™R<DòJ\ÕU>1•÷\ÝD«,','',0,'?');
INSERT INTO `wp_wffilemods` VALUES (_binary 'bñ\è#À‚:\ä,™Á¬dW','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/products.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\ê¾\á}\ì+\'\â©\èý¦\Ù$',_binary 'ö/qŒ^\Ò\Æ ¼}%wô\ØþJ‚øyZö¹‚U:BK','',0,'?'),(_binary 'bñª¥²K\Äþ+x¹€ šwF','wp-admin/css/site-health.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ûdr1˜\és\åx0Zg¬\Ç',_binary '¤SºðeÂ²â…¼\Ö,½r\Ç\nWz{E‰°!1\Ís','',0,'?'),(_binary 'cé¤Ÿ¸´(Ok1‹!Í‚','wp-admin/privacy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\èÇ‚®rs~¾_\Åð|¹¨’',_binary '€\ãÁz\ÎI\Ée°•)J\à\'Mœú\ËÙ\Ã,ú\ãÃ½4\î¯`','',0,'?'),(_binary 'c	^Qß”\Z\Ãu\Ýu‡_ô¹','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/toggle-element-fixed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>x”(\Þ\Z*‚ñY•‡',_binary '*W\êò´5½\î˜}\ÏX\ÂCð\Ñ\Â~8\×¡\"\í—iø9','',0,'?'),(_binary 'c\nî£¶í”8›ô)ˆš\Ì','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/WCAdminActiveForRuleProcessor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wu3\×\â-g@|°FY´',_binary '`|q\"å¥¹a~\Ò\Ê\Û\Ô\íÎÄŽn	\É÷¹P\î´;','',0,'?'),(_binary 'c³u²7\Ïež§\"x´\Ù|','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/testimonials.svg',0,_binary '\0\ë9\ëo[Ž¹$P><9',_binary '\0\ë9\ëo[Ž¹$P><9',_binary '€³\ÑY\åCÕ‹\ë/pV\Z³‘v1Vð0zBZ\çU¨† \ï`','',0,'?'),(_binary 'c4\ê)\Ç\Ù\ë}¶_¨“ô','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value/CSSFunction.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&g·FöšlXi\Ölû	O',_binary 'ùŸ2–*\Ú\Ò8÷±‡HÑ°­8—\"\Ã\Ï¬u\nyÜ´ –','',0,'?'),(_binary 'c§4L]ôËž®·Mc','wp-admin/includes/class-wp-post-comments-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú@d©B½¸#­&&»¦',_binary '{¯\Äbkö†\r»ö\Þ}ñ’	{=\Öú\×\\\Û=6\ã`l¾\Ô	','',0,'?'),(_binary 'cÂ‹¥¸ºp	øPU3/\Í','wp-content/plugins/wordfence/modules/login-security/classes/model/request.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&Ü®Mª÷‹,~/\âø\ér',_binary 'F;ôô\ÌW]¬\Ï&ñ¸\åz~o\'ð/€q\Ì+¸¨','',0,'?'),(_binary 'c\"—i\Ä\Ð%\æO;>\Ý_	ó','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/discount/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ë¤#@qŒžod\ã,ì­´9',_binary '¬\Úú\áúZ[{\\ó_wXŽ\éa\Û\çdZ`ý%e;','',0,'?'),(_binary 'c%¼;8\ÛQVWÆdÈ‡õ:','wp-includes/blocks/paragraph/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GC.¸EŸˆl\Éò üñ',_binary '}š>—w\Õ8\Æ]#\0ÿbŒ´V•\×\ÔÍG\Õ\ì‡$','',0,'?'),(_binary 'c&²ò×ŠŽ¤K\ÂX)4oÿY','wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/arrow-down.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\èO\â&œ]N\Ð–J&-Ð°',_binary 'BBA$U^X\çœF\æ~·Y?Ç…ÈŠdøC\ß?(óœ','',0,'?'),(_binary 'c\'qõ\ÇV \Øõ\Ò\ísü/~½','wp-content/plugins/woocommerce/includes/libraries/class-wc-eval-math.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\Ù\'N D\Ã\áVˆ\è‡$\àô',_binary '‡PX\ÔfÛ¤w\'\Ä`„\åš\Ãow¡¢\"Ï´„!ó\0+\rm`','',0,'?'),(_binary 'c)¨o‚²¡m\Ã-·8','wp-content/plugins/products-compare-for-woocommerce/berocket/sale/cyber.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'üò>\Ö\0-ñ\nlD~-[R',_binary '’\Ê+›xtµ\ìŠT|\Æ)gO¹\ì»&-<¥°\ØaqÇ”','',0,'?'),(_binary 'c,½…°[xÞ«ô3¥\nù@','wp-includes/js/jquery/jquery.masonry.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Í³@`–ÿ€&n|}A‘†',_binary 'ö\\Û™§¿\áŠ\ã	}M’g\ß ¿$ý0± [\ä\Ý\åB','',0,'?'),(_binary 'c42j›§\Îx\åc\ì\Äd','wp-includes/Requests/Session.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\Ï|;ˆ\ÂUE\î*\Õ¬{Y',_binary 'ø½^\î\Î	ntº\"V8ÁM@õHØŸQ÷¯[S$','',0,'?'),(_binary 'c:Q\ï»²¹¥LžK¯o|','wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-authentication.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%let\"`þ\ÎIÈ˜š\"\Ò\Í',_binary ',\Õ/þ\æ\Ö\"»»—ø\ê”\Å\Õ™\Þ9&+ø;G¨','',0,'?'),(_binary 'cR¼Œ,,\ËK\Ù\ç0YXð\Ô','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/woo_short_desc.svg',0,_binary 'õ\Û\ÄH6Î›øKk¿?\äT',_binary 'õ\Û\ÄH6Î›øKk¿?\äT',_binary '\rg+\É\Ò\âý’¨¶c\Ñþ»Y{”G»\ìhL÷\Ç8d9„þº','',0,'?'),(_binary 'cTœ3LªYø`‹?{\Ü7\Å|','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-taxes-by-code.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†2d†õž”mt§G\Ê\Ï	u',_binary '\'µ°K/¬.Bõ•f‡ü\àX^«¢\Î[‚ôû¥\å-|','',0,'?'),(_binary 'cUuò%`iñ—@r\ë£J','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/summary/constants.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»¶¤7[\ÔÐ€±¡D¦ž',_binary 'NL6j]\ÎDR%Œ\Â±Q=%…\ÛÏ«Q\Ó±\é-','',0,'?'),(_binary 'c[«:k\Ç\îŠi8õ~t','wp-content/themes/flatsome/inc/admin/customizer/img/nav-line.svg',0,_binary '\ïÿ	aüJ¥°&›(T@ò',_binary '\ïÿ	aüJ¥°&›(T@ò',_binary '\Þ6\\÷1cU\Û\æ\áy¥\å\Í\Þñ¢2Dõ]\Ð\Ê','',0,'?'),(_binary 'cd\à~“H\îl\ßg\Ã','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/shipping-rates-control-package/render-package-rate-option.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'øó,\Ü(\à\Ú\ÆùŒÚ†ó:V',_binary 'K¶K¿´>\î2Š£\É5­\\³[8W7Á\Î\"Š!\ä\rZ¿ø','',0,'?'),(_binary 'cm\ãt\éøWð2[Ì€ˆ','wp-content/themes/flatsome/woocommerce/checkout/layouts/checkout-focused.php',0,_binary '\ß#\ÓòL9“\Ôª%½',_binary '\ß#\ÓòL9“\Ôª%½',_binary '\Ô\ï„MÏ¼;\È<ƒr†cõ.Lg>\Þ\ã\Â^\ÓöUnß‰\á','',0,'?'),(_binary 'ct\Å×©’X\îÙ¾\Þu\Ûyv','wp-includes/blocks/image/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r›nŠ×“6\r¶\0iò',_binary '&7/\Ëo’¿‚º\èt•C\0cY¸¼¿™mEc\æÇ™Á‹°','',0,'?'),(_binary 'c€±!ÿQ®B˜Ð›“\ëð','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\\ûLëºµ\'ð÷\ãQ',_binary 'ø‹0&Šö\ÅþM¬ŽsÔŽþñ\Û\ÇÌ©c\Ö|˜÷\Ê	›av','',0,'?'),(_binary 'c”\Ü÷ß´y]¢>\ÕQ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/combobox/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\äPö\ÏÒ³S¿9•Œb¯.ˆ',_binary '\Ø*\ï\0\Ô~^Ù¡.4µ¾6Åžð†¡°³™®#\Öy´\'\Ô*','',0,'?'),(_binary 'c•Q€\Úi\Ó\Ü\É\à\æQv','wp-includes/css/dist/editor/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OÒ•aª°™¦]3w\é ô',_binary '\Ç\Ì`\ã²B„´‰|úƒä™¬Yƒç±”iEô¬3ý\Ü','',0,'?'),(_binary 'c—8\Ò\\\ÖZ’¡ý8p\npõ','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-promo.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—¶c8–µ)\ê¼yÛˆ\à–',_binary 'm\ÐMvõ\î¦@­bY`&Û‡ð\ß\×Ë£(\0€´\åõ\ÑC|','',0,'?'),(_binary 'cŸtv6hý\ëRg»)\Ë','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings/blocks/constants.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ä2#\Ïb\05X5Ž©‚Z¡',_binary '4wgg¬N,ˆsZÖ‡Œ.\åŠ\Zý¢—>Owœ¯*•','',0,'?'),(_binary 'c£Y__ž m ‚ž7\ßw ','wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸¼\ën)%6YŽ\Ô\ÒM',_binary 'FF\Ï\ÔQj¹?-¯g“\"}®ˆœ\'\ÔcÆŠÕ–\ØN•S®]\'','',0,'?'),(_binary 'cµÀ\ß±3‘e\Ê1þr\Ë','wp-content/plugins/woocommerce/src/Admin/API/Reports/Downloads/Controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H%6è”‡!,,Æ®…v I',_binary '§òA¼š¹\Í\íkØ„šM\étk›úžgñO/œ&ø’X','',0,'?'),(_binary 'cµ³¨p	´c9¯`ú’ˆ','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-tr_TR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õwÅ¼` K€ñ',_binary '\'ðžfÚƒ\ËN\é\'\ãH#-¤³pƒ-NX^\0j>\'\0]','',0,'?'),(_binary 'c·\"wk¡€…Z\ÍòY','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-category/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŒûR\\\ä\Â<\Íðó\Ä\ä¶(\Ã',_binary 'e;^•J/Ž_®+>wýM‹€\rER:\ïTX³“Š‡xž™','',0,'?'),(_binary 'c\Æf\ï\æq	HB&\Z·bzÿ','wp-content/plugins/woocommerce-currency-switcher/css/auto_switcher/round_select.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž´·(q	–\Ê\Ó%»\Ñy',_binary ']\æ\n\Æ\í·\î÷\ÂILfbs^·\Äü;¡º¯\Ïþ£F2¯•','',0,'?'),(_binary 'c\Év8¶\Ô\ß\ÕmRª8\Ýd\'™','wp-content/plugins/woocommerce/legacy/js/jquery-cookie/jquery.cookie.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Qg½9–³ò\ÖÀŽm\ïŽhý',_binary '\ï~&\Ûa¯T›~\Þú\Ù\Û_×±¥\ÊÀoÞ¼IWÚŠ8','',0,'?'),(_binary 'c\ÎU–w`\Åû§ù\ì¬õ>†','wp-content/themes/flatsome/template-parts/posts/archive-2-col.php',0,_binary '*qAm‹™±\â¿\r\â\ÝU',_binary '*qAm‹™±\â¿\r\â\ÝU',_binary 'þóÁØ¡I\ë !¹$T}f1f)ë©••ñŽ|fhf\Í','',0,'?'),(_binary 'c\Ú\r\Í4\Ú/a\\:I\Ö+³','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/form/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ùKT}	V\ìxY“\ë\n`',_binary '>Ø‹\çñ¾µtk}û}0à­\é\í\â£[ll\ã3\ã,\Ü','',0,'?'),(_binary 'c\Ýÿ\êw\"¡Ä¥\ì¤.º7\Ø','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-contact-information-block/attributes.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'özD8÷PQ„®8\ëJõ',_binary '‘û\ë]WIr¡8~p\Ò¹s\Éfw\0˜\Ê\Z2Ÿ\'Å–\Â','',0,'?'),(_binary 'cñc©¶º«ªÀgu\Î\ä\Ì','wp-content/plugins/wordfence/vendor/geoip2/geoip2/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';ƒ\ï–8e_\ÈT\Ý\ÃÆ½W',_binary 'Ý¬\ïISôP\"õa•» 7JŒ6\çQSv„“ô_³y’','',0,'?'),(_binary 'cód\É\Æmè³´\Ø\ë\Þv²\Ø+','wp-content/themes/flatsome/inc/builder/core/server/helpers/urls.php',0,_binary 'Š\Ô0v\ËF8¨Q%ý3ŠY',_binary 'Š\Ô0v\ËF8¨Q%ý3ŠY',_binary '\é©?üá¼²O,/Å˜c\í	æ®»‚x¶f¸¹Wn\Ù4','',0,'?'),(_binary 'cõd	\n¹M‰\Ë)\Òwk\ÛHZ','wp-content/themes/flatsome/assets/img/payment-icons/icon-amazon.svg.php',0,_binary 'T\Ùx\ë\æ7‰eL+—\Ô|Š±',_binary 'T\Ùx\ë\æ7‰eL+—\Ô|Š±',_binary '\ÚK<vL;\ë¨hZ†JRHd-¼¥\ßo—T_5¢\Ï\ì\Ñt','',0,'?'),(_binary 'cö6](ó4¢\ÅU\"\\®†p','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-checkbox.php',0,_binary '±v4A\Î1\Ëeò´ªþ²±C',_binary '±v4A\Î1\Ëeò´ªþ²±C',_binary '­kA\Úi&š\Ø`\Â÷~¦{V•¾6Á6ÿ=þx_jƒ\ë.','',0,'?'),(_binary 'cö[lšiIój?','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/featured-category.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"eK4h\ØfsEÞ3',_binary '\n\Å&«\íÔŒŽV¦z¶#$g\r\Ð\ïkF…\ä\r\êA¢o','',0,'?'),(_binary 'cþ†[b]\ËÀþÝ½‡JF','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§I]˜UÀ\æ	XÀgƒ¬‹¾',_binary 'þT\ÂÏš-\Ã1 [\ëž@./ió’¶¦”i\È\Åq\Ù\ë0˜o','',0,'?'),(_binary 'dõ\å:w¤\î\ÐO\ÍÐ†','wp-includes/ID3/getid3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'šµTòxôÜ¬•\çM^\É ¬',_binary 'Ÿ‡ópöf£B\'/üoF·¿€Iü‡\\\Þ\ÔlƒÔˆð;','',0,'?'),(_binary 'd\ã\ì­1\íìµ“-…;O˜ö','wp-admin/js/custom-background.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”óP\ÍA3†\Ã K\Ý}Ã›ž$',_binary '4hN\n\×\Ó:Q\ÛqX\äz! \Þ\Åiq°^sYÄ„\ä,i€','',0,'?'),(_binary 'd\Ú\àE¤ƒ\Ê\Þ\Þe\Õj4\Ð\é','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart/test/reducers.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ð•R8ô>At÷ w\nj]\ï',_binary 'ú³ô\çŠÐ—&q\rG:µ=6\n,\â\0¯\'òC/\á|­\äù','',0,'?'),(_binary 'd$µ+n]@KU§h¬\á\Ë','wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-item-product-data-store-interface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©7\ïž\"µ\Ç\Ø8Žž¶I',_binary 'a *†\"«aHiN\àv¹m\rg£\ãK·˜›\Z\Õ','',0,'?'),(_binary 'd0_\î^Ó£©Š.¡g\Ø\ZÁ','wp-content/plugins/products-compare-for-woocommerce/css/admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ\ã\ÍC\Ûj\ÜD>\á7\à\Ä\ã\È)',_binary '½\ç—y0öx÷4nHW (+\Ü\"x\ç\Ì*\Ñ5ö*ËJQ\Ô','',0,'?'),(_binary 'd3\ç€\ïòy‘¼$Â¾—”;','wp-content/plugins/woocommerce/legacy/css/jquery-ui/images/ui-icons_2e83ff_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ä<QJñ\É,yÓ£ð»R\Ô',_binary 'B¢j¤0=\Åb\éW]F\è|þ\åh	Ÿ\ïø\ä\Ò5Rn³ö‡','',0,'?'),(_binary 'd9\êõ1ƒ£¬ÿ=Cÿ\ã§','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/title/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Õ¶¦\Åg\ïd¥š\Ð\ãS',_binary '%\Ñû€\äWo;š¶\Ï\è\ëBY\â<\â\"Bxù>6ù+t+','',0,'?'),(_binary 'd<”\Í\r§a½¨qN£\Úô','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/grids/grid-3.svg',0,_binary '†½DD@·>€\æiƒ­W`',_binary '†½DD@·>€\æiƒ­W`',_binary '45ô•J<\Ä\ï\è\×cþ6F(\é\ÃË‚ï’™š#°D<\Ðý','',0,'?'),(_binary 'dF=úˆ\Ïjˆ²Hcÿ ‚–','wp-content/plugins/akismet/wrapper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ]x¦\"šY—‹\ÚŠ\ïKJ',_binary '\Z“Iaú^\à’°ñ\ëiJ‹žHŠ:žj\ê:•ºÀb\ÂÂŠ«','',0,'?'),(_binary 'dO Q‰\Óû-/­ü’','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Handler/HandlerInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†Nct\Ð]‚Î…\ßõY¾„',_binary '²ˆ€\á¡k.)H\æ|\ç\îö^»Ô±™!)§k\à','',0,'?'),(_binary 'da\Ê2¾ødO§0\à]\è','wp-content/themes/flatsome/inc/admin/customizer/img/portfolio.svg',0,_binary 'Ú¶º£RÇ¨\Ú4°„²F\Ê',_binary 'Ú¶º£RÇ¨\Ú4°„²F\Ê',_binary '°³O5hKw7{	öx‘±<ª\È> ¾ò\Ñ[\å,\Û\Ø','',0,'?'),(_binary 'dq\Æ\Ë\Ñ6“{É‡˜nD\æ','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/text.svg',0,_binary 'Ñ­ûU\Õ\nq=€,9',_binary 'Ñ­ûU\Õ\nq=€,9',_binary '\îH¥g\Ö\Ê\r•7³·ÁZo§ŽÀ>¼Ô¼?I\Ìô\Ü)Ç´','',0,'?'),(_binary 'dsd\0½\ZMÿ\0x#¶ù\â•\Ù','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/popup/br_popup.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ^\ËÄ®:\ÅÍ”>ù\Ïy‰\ë',_binary 'X\î\Îúcje#ôw¿&]\ß[ø	\è\"<L\éÞ”K\rI¾','',0,'?'),(_binary 'dxh{\ÅU~·\â\Úø	ž\\ú','wp-content/plugins/woocommerce/packages/woocommerce-blocks/templates/templates/taxonomy-product_cat.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°2	ª•\äWŠ6\ßþº\í',_binary '˜\áõ\Ç\ØmQB>YlET=Ÿú¦\ålJóP•”Šy‹\ì','',0,'?'),(_binary 'dx\ë\r	=\0\"\0\03fL¯´','wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-coupon-data-store.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«‹\ëS|r\é˜\â\é;\ÕEf',_binary 'ˆ¨ô+\0‘µý\ìNup`+\Ò\Î\Åy†Í x§*:\æ>','',0,'?'),(_binary 'd‚\ÚÉ¢4ÐªU \ÃS\Ýt,l','wp-content/themes/flatsome/inc/admin/customizer/img/layout-wide-gallery.svg',0,_binary 'DÜpf£I|U¿‹/)\Ò',_binary 'DÜpf£I|U¿‹/)\Ò',_binary '¿ò\Ä\ÎIÏ´m+vGüz\Èóu³\ÙSŸ:\ÂT4F','',0,'?'),(_binary 'd‹E•jHU†<~\n>3±ZW','wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡\ÅN\ß}­}ýý\àö\î\ä_ñ',_binary 'ôú)&O<Œ 3_¸ðè°Žê‡ƒ\È“, \Û\Ý0\Ê\åX','',0,'?'),(_binary 'd‘\ÒGj\Ú\Þ\Êð‡\Ñ{”','wp-content/plugins/yith-woocommerce-wishlist/assets/images/twitter.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Pm…U%\È\Î\'#DC«',_binary 'ÿÕ¤Ä‹µ~0f\àIZŽIhŽÁ¬\èû\Ôwÿ `2¼','',0,'?'),(_binary 'd•kòû‘JQAw6im<B1','wp-content/plugins/wordfence/modules/login-security/wordfence-login-security.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡s¶}ch§\ãV´¦L³\Ì/',_binary '\êp¡d‹\Ô\é\É™®2a«\Í\å\á¨ˆo¸I:\Âõ’?\Ñ#@','',0,'?'),(_binary 'd˜8ª‡Ìeñ	¦ëš–','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•^€Y8‡îŠ¢‡\Ù%ik',_binary '3Y/r_på°‹\0*ÏŠ\á°\Ú8‹‚ñ{ql²Û‘\ç','',0,'?'),(_binary 'd˜£…Auh\Å\ê 041\á','wp-includes/blocks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Zõºv~u\ä{j´\î:o¡',_binary 'þFÁ\î\è0Àp6we¹÷Ù¤2ý™Zu«cN\Þ\r¿w_','',0,'?'),(_binary 'dœ¯\ß\n=\Æ\n@«q¼Wª¹\×','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-translation-service-info.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ¿\Ú\ç.mNñ\Ë\Â}',_binary '¹kM”­\ç¾\Ý\0QU\ZˆhÀ¡¡f§§€‰hM™»','',0,'?'),(_binary 'd£¹vùÀ¶f´à®™Cˆ}','wp-content/plugins/woocommerce/src/Internal/Admin/Schedulers/OrdersScheduler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘Rÿ‰sº\í\È\Øf_H,\rM',_binary '7B\î_i…Vfü”\Ès\é†Ø˜dnð_Ku\â=7L','',0,'?'),(_binary 'd\Ã0ÀÙ·\Z\É\Ç\èóðÔŒn','wp-content/plugins/wordfence/views/scanner/issue-wafStatus.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ü\Üù0<N5Ò–o\èô\ãuM',_binary 'pô\"\r‰³¯<\Ò¡P13ùr£°z\î\Õ\Ò=\×\×\È\âÆ“]','',0,'?'),(_binary 'd\Ånk¬~•µt2¹£³\Ú3','wp-content/plugins/woocommerce/src/Admin/ReportExporter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¶*µ.˜´tj\åC„±\Ô',_binary 'E\Í\É\Ûýõ#\Ý;$—Š\ì\ÈÕ(3z\"~\ÅX\åd1%q','',0,'?'),(_binary 'd\ËhIcl­}J~BL@','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/attribute-filter/preview.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Vò,\ÕLªVdô\ës|ˆ',_binary 'H\ï°\Ãm\Ç|Rn\Õ0\0\Ò0›³`\×\ÔC•¾_~\Ô)I','',0,'?'),(_binary 'd\Ó`of\\®<VQ+„@ž\è','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/form-step/form-step-heading.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\äVs±¶#‚l/^ò„\èz',_binary '%\'\rŸõ•F]e¡„@±\nŒ‡\à\Ñ=û¦#¿Pj\Ós\Ñ','',0,'?'),(_binary 'd\Õ(\Ä\È%J\éù\Þ@õG†','wp-admin/options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì²nª\î>†8;*a\Zû\ßJ',_binary 'h°\ã\ßbÿx\È^ù\rE\åD\nË¬³#J«\Ê}Û¼','',0,'?'),(_binary 'd\Ý\r\æ	\ï}ˆ¦£œ¾³\Ú','wp-content/plugins/wordfence/js/date.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œô\Õj½P¾ER\Ð_¯cÀ',_binary '€B=\ë\è0\ÕdÆ©\"B‰tUc¨¹^1€>–q&ø','',0,'?'),(_binary 'd\ás\ra\ÜD¼š\àÍ¥w5','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/support/icon-256x256.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jx\Çó8\\\Çuß›;¸',_binary '3¤\Ö{hÆ“}\Ã\à\Ò>`\0R°ˆ÷	/QyT\Ì¡!¡\Ðûp','',0,'?'),(_binary 'd\áŽm\Þ\0$¥‡\Ía\Ï\é;›\Ê','wp-content/plugins/woocommerce/templates/emails/plain/customer-completed-order.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®VB\"Œ\×ÿ<—”R',_binary '	ø—0\0\Ç\ÃõÒ«hQ^\ï™\Ê\0‹\ßrU¢d›#\îv\ì','',0,'?'),(_binary 'd\á§\à1T\Êgˆbž¦€!','wp-includes/blocks/query-title.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q0<\ß\0\Î~÷™3«!\Ï',_binary 'Ÿ˜l¿â•¼ @\å^\Þ¾5\ÑýYº)X\äø\04drG\Ë<','',0,'?'),(_binary 'd\âºhÄ§{q4‡2÷K\"\ß','wp-includes/SimplePie/Rating.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸jkB³-\r?Q3Qw\îU7',_binary '{nH\Ñ(>}Q(¹\ï·\Í©a‘Œ\í\Û±b‹>“À\n’FY+','',0,'?'),(_binary 'd\ç×¨;v,QhlóP\Zw>','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-categories/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\Ä`ep\ß!ôTGfñk÷',_binary '…ø©k\Ð9Ž‡~òz\Õ.¾9÷9}\ëIvÑ =fý:','',0,'?'),(_binary 'd\è4j\à2U\ÂVŽ·$öP','wp-admin/css/wp-admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–7#Qª&M?Â»‡ù|ó[',_binary 'Q\ÃD¦ \Ì6¦¹›hP\Ö\Â\ÌqqM9\ÏFO\Ú\Ò\\O–','',0,'?'),(_binary 'd\èˆ@!\í\Æd§J€\Åû','wp-includes/js/mediaelement/mejs-controls.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡.Û·Z#e0¿< l–¿',_binary '›X\ã*\á\î\Z»ŽX\Û(\ÞZ!\ë·È½¨ñD2aB','',0,'?'),(_binary 'd\ê\ÇA\ç9pd,«\0W\rBY<','wp-content/plugins/woocommerce-multilingual/classes/Rest/Frontend/Language.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\H\Ød—¾63\î?A¦\Æt',_binary 'Z§dz\è[þöÁû8™uDmUr\Òø\Ðz,>€ˆø','',0,'?'),(_binary 'dø\Ò-\Z\ÓD\Ì!À\ê‚\Ø!','wp-content/plugins/woocommerce-currency-switcher/fonts/fontello.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡¯)\Ò<—›&‹gœŠ„·+',_binary 'X\Ù\r\ãIy2O\íö\Ä}V\ÒGÉº6G\Ë\álŸ*\Çt\Ú','',0,'?'),(_binary 'dù„1\ç\Í²-€†’','wp-content/themes/flatsome/inc/builder/shortcodes/templates/divider.html',0,_binary '©\ã®\Ùeg¢ý\ÂÚ…i.',_binary '©\ã®\Ùeg¢ý\ÂÚ…i.',_binary 'ö*/h±È¿ø[5\ÃJ\æ\äð©”\Ã\n31_j~cªÒ™','',0,'?'),(_binary 'dþ\ÛÉ¦\Ú%ðHUI˜ó]\Í','wp-content/plugins/woocommerce/packages/action-scheduler/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥¥³šÿ?QM­i\àö$\Û\Ø',_binary '	wòb8]©F\Ü%\Â_\Ë\Â/Jø\Ùd\ãvý{òd¿?','',0,'?'),(_binary 'e\0À\ÍýžhóL‰ú‰Ñ‰¸\ç','wp-content/plugins/wordfence/lib/email_unsubscribeRequest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YÁ\â\ØÑ±Æ”Uy¤þ{š',_binary 'pa™þŠ\ÂiŒñvö\ÂINa\'%\Ö\âfE?ŸMvø\Ð','',0,'?'),(_binary 'e—ºe{ª\Ú:\0„vy','wp-content/themes/twentytwentyone/assets/js/skip-link-focus-fix.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“5Ðº•XÓ­;ÿ\Æðƒ\ê',_binary '³\Ï\è}QñU@xd\Î]n]\Ù	+hh½\Ã÷‘\ÎD','',0,'?'),(_binary 'e\r÷šZf‹‰\ÅÞž\Ê\É|\ï','wp-includes/js/api-request.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹\ìk#ñ(\ÝÄ©\ã\Ã\èª\Æ',_binary '\\„\å\ßQõMƒ`ú$¼Ú£gªE\ã\0|·Pne\Ìr]','',0,'?'),(_binary 'ez±‚&\Ñ\Ëð©7\\z ','wp-content/plugins/woocommerce/includes/tracks/class-wc-tracks-event.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'öG\Z\ÔÍŽÃ¸z¯žQw#—a',_binary '>69˜\ZB&ü·fý¡0F4±¼Ï¯\ß>Iÿ¤ˆ\æ“ük‡','',0,'?'),(_binary 'e\Ç\ì\ÌXÇŒ.\\\ì(&ýd','wp-content/plugins/wordfence/views/scanner/issue-coreUnknown.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'æŽ¨c¥@gº\Ãó®…\Ðh',_binary 'É¿T¹†¸>\ìEžfg÷¿«\ÅK°û\î¯ r\ë¹õº)»','',0,'?'),(_binary 'e\ÆB‰h¯y:RÁ$ô•','wp-content/themes/flatsome/inc/builder/shortcodes/templates/ux_image.html',0,_binary 'Ñ¨\ÝÓŸ€6Tq—%vvU',_binary 'Ñ¨\ÝÓŸ€6Tq—%vvU',_binary 'þ­³4\r\ÖÁ5Južïˆ¦¾Ž±—¯\È\ÑGG\Ý','',0,'?'),(_binary 'e§\Ó	~\àð.\ëbÄ…u','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hooks/use-throw-error.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ø\ÃÔ‹y¥8T}½®,¡\Æÿ¤',_binary 'uXz\Ë\ê5\0\ÂP\ÕÄµ¡£kø­WE7\Æf\çU7¬¬¸\"','',0,'?'),(_binary 'e-n\á\Ã?“h?ž“\"^c','wp-content/plugins/woocommerce-currency-switcher/css/images/ui-icons_2e83ff_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%+øW¨\ëƒ\ê“*XCnI',_binary '.+\Âc\ì·w¤@õ h^ûóû£\nû\çú2Gd˜l\ÄJ','',0,'?'),(_binary 'e.PÈ´NB‡Sx[\Û&Á¼','wp-admin/includes/class-wp-plugin-install-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Èx»q\Ð7‘‹ŒOŽf\Ã',_binary 'Ü¼\ÉKfà¿š‚N§ýpm›W0IFµž5–\ìò\0­6','',0,'?'),(_binary 'e.¨ûÿÀñ¯L\Êx)’','wp-content/plugins/woocommerce/assets/client/admin/chunks/analytics-report-variations.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«k	mm\Ä\Z(;)û‘\â\\Ÿ',_binary 'Š,xÇ‰/ò5\á§qyõ—\á)µtý²\ÞÊ‡Õœ\ÒaU¦y','',0,'?'),(_binary 'e0\Ó8\Ì\Î/¢;t…','wp-includes/blocks/tag-cloud/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v~ySl<¸\Ð…\'\ïv',_binary 'À²T\Ã\ÔI%B\â\ÔÅŸ•q¸$ÿSþ+\Ý\éf2À','',0,'?'),(_binary 'e9T\â9©–FMtù\Þ','wp-content/themes/flatsome/inc/admin/customizer/img/icon-plain.svg',0,_binary '‘Qq\ÖQÁEºtª!',_binary '‘Qq\ÖQÁEºtª!',_binary '*\êb¯ª³XEØ¸\Æ\Îoò2±\Èw.\È]@ 7me¬','',0,'?'),(_binary 'e>3|\\ü¶Ž2[d\îi','wp-content/themes/flatsome/template-parts/header/partials/element-social.php',0,_binary '\ÅÃœºkŠƒ\'\Ø\Z\ÌKŒ2Á',_binary '\ÅÃœºkŠƒ\'\Ø\Z\ÌKŒ2Á',_binary '†\ävC\íð<$\â\r¼e}j}\äGG)´/„6BD‘>¦£','',0,'?'),(_binary 'eB{v\'A’¦•œ\Äó[´\Ù','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-heading/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×z3\ÍO–ñ,ª·8üµ\ê',_binary ' -\Ô\ëY¥n8U-(~À9)]\ë\"±’II\Z¥¶\n','',0,'?'),(_binary 'eD\Õ7\' \×J­b\ÈW\Ñúð','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/default-states.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÄP]n0BP\íO',_binary 'u\ä\æZ§©¤\ÛBYA„ò\ÂdwÛ€cbb\ë±¯µ\Þ>','',0,'?'),(_binary 'eRW\È)b)nv\Ã>(j','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/payment-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' µñ\ZÖ½ð¿þ\î04\Î',_binary '9\Óùþ\ÜO_œc\Ãß–Œ\\ûsW™c\î8d´','',0,'?'),(_binary 'eW#\\A\Í\"\âÓŠ‡†\Þk\×','wp-content/plugins/woocommerce-multilingual/classes/multi-currency/exchange-rate-services/Fixerio.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç\Ö\É!R\rx²¨4#\Î',_binary 'uô}:§F·\ÔTº¼0\í*-\Å÷;\Ö`‚xük.XX','',0,'?'),(_binary 'ei›‡y\ïø\Ì,:¶\ê\áT\Ù)','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Country.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0¦Q#2Ð‘´óR€´•',_binary '~G)\âR¡³\ê7i-\ë#\â\ÞR 9H°þÇ«÷ b','',0,'?'),(_binary 'ep\r}\Èu_4ý¿‘±ó–Ÿ','wp-content/plugins/wordfence/views/scanner/issue-checkSpamIP.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ð©3®^7‡DPk¾@c_›l',_binary 'e½ž½­\ê× c\ã1°¾0F\Ç\ê^\Êb¼\ÕB\ÚQ@Buª¢','',0,'?'),(_binary 'euo\Îð\ì(¦\ê8?5','wp-includes/js/jquery/ui/menu.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<‹*\ÓLùÇ‰\ç\ã‹aûl\Æ',_binary '^(C4AH@\êý¶\å£\îa^\Ó\äxnHõ	obA\"¾²','',0,'?'),(_binary 'e{z\íø­Fa_\Ö\èU80','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-price/test/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰‡Ý‰R[wØ´\á°\î¿',_binary 'ô®(\ÂY\è2¹\Çy\Ë 8~{}\nu8\Ìþ\Ï}k4;}š\'','',0,'?'),(_binary 'e}0wTnv_óg§~','wp-content/plugins/wordfence/views/scanner/options-group-basic.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VEƒgOº`#jV\Ô4§C|',_binary '\Ðs«c‡ñ	;¦ƒ*r3$X¸‰÷öG8Í¬RK\Ç','',0,'?'),(_binary 'eœ\Ú\ZµˆÏ§\Ô\0©˜}y','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-product.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\ËF\èN\'*l¨{\ÔD¨<',_binary 'ž\Âþ¼X\Ôsr\ì\ÌK«v¹`°«dÚœ±.—7 \\','',0,'?'),(_binary 'e§R˜b}¨Cø¶tóþ ','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/resources/select2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ó}ˆ8Ñšzº\î¡”\Ù2\Ó}',_binary 'ð85k­\Ê\ç=Tg» {¦–­ƒ_þ)D_:ƒv9FÁ','',0,'?'),(_binary 'eª˜lsUO|°R}Ü“i','wp-includes/sodium_compat/src/Crypto32.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\r}jŒÇŠQX]m“ÿ',_binary 'É±ù\Åä±ƒFn÷ž»2c.n\ßM±\íÚ£² A¿µ¿','',0,'?'),(_binary 'e¬P\rmXiomUÿT>¢‡','wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»ÝµB\ÌÈ\Ä\Ý/\Éh)1',_binary '|\Ìf)\ÒñM5“†\ä3‚<\Ê=pŸ\Ï\ÚÔ ™o\ê§ë¯ ','',0,'?'),(_binary 'e®\ä__ó%÷\è®xˆÀ\Û','wp-includes/class-snoopy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñ[üPQœ\ÍI¨¹P4!š\ìš',_binary '…+÷	\×\ÌuzRŠW	QW¨|\î\Ö5‚¬\Ç j[;U|¨','',0,'?'),(_binary 'e°¾:\ZVTS@¬_\ÝÀ\è¶','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/test/payment-methods.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\nòn\íì©›Ÿ\áQ²²Eb',_binary '7\Ò\ä\Ø$ Oˆ/\ß\"Iò\äÔ‰óœ\ÎgP\Z¸x…sy_','',0,'?'),(_binary 'e±z‹‡üØž;\"d»\ï²','wp-content/plugins/woocommerce/templates/loop/orderby.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬oL©Á\ÇG´­CÉ²L',_binary ' Z\ÑvFQ=˜6M°©\Z\ã —ÿvø§„DÚŒ','',0,'?'),(_binary 'eºw\n¶¤@•*\ÍÀ\Ë4\áQ˜','wp-content/themes/flatsome/inc/builder/shortcodes/commons/visibility.php',0,_binary '\ß¦\n›®lI5hóý—\0\Ã',_binary '\ß¦\n›®lI5hóý—\0\Ã',_binary 'ý>0™{\ì,\Ït]g¦¥\ãó\n°¸\î~Nù®s)Õ£\Ô','',0,'?'),(_binary 'e½^#|Û¢TÐ©’ˆz','wp-includes/Text/Diff/Engine/xdiff.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ö¹\ÈbŠt­X8šGX',_binary 'ú[<¡0°Ä…—¿aD)tJûh\í¿(C›[uH}sÒ˜i„','',0,'?'),(_binary 'e½<\0\0UE\æ›Ob\Z’È¥','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/prices/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h=bƒ\ã½l\ê\Þx{†\æ',_binary '¢•‘\Ë\"j.g·Rü“²1ñ\Ãb2\Ô÷\0A‹Kn„','',0,'?'),(_binary 'eÁ)[œföeÖŒTg§¥\É','wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-plugin-panel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆµ bz÷ªª0­›N\ã\Ö7\ç',_binary 'ŸœWQ¢,\'ø_™J	!M\É\Ý\Ü\Î;;õ\ÉV³!)XÄ¦\"','',0,'?'),(_binary 'eÈœ)\n\Ô\ä¨Gs¬™','wp-content/themes/flatsome/assets/img/payment-icons/icon-ideal.svg.php',0,_binary '“e°¥ºˆ³\ÐB”Qq\éŒ',_binary '“e°¥ºˆ³\ÐB”Qq\éŒ',_binary '²\è·J\'©®\åÏ¦>¸B\Ä\rñm¹9ªa ´\ÔÁaK\Ø','',0,'?'),(_binary 'e\Í\'±ð÷7„\r€‚\í\Ú\Ï\Ø','wp-includes/blocks/group/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nd»«™\È\ïh«\r¡õ?',_binary 'qÀ\ê/›q\èj^:Ó„™¡\ï\ÓU¦¥	aüŠ›‰\Ûe','',0,'?'),(_binary 'e\Ó\é\Â!¬ù‚Šb@mB','wp-content/plugins/woocommerce-currency-switcher/js/wselect/wSelect.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°\êNl\ãÿ´òy\'ó³J•‚',_binary 'Œ1^oD.ñ„\ãz\ÍhFu!ždg\ZK\Ö	d\ÒÐŽs','',0,'?'),(_binary 'e\Óeûj|\é‹HSJšh+ ¹','wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/UK.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡W¾\íX}cD6=›ó',_binary 'ƒŽZ	§^¾ÀÞgQ‚\ÄM[zô\r\Zë¸¿nšž`','',0,'?'),(_binary 'eÞ‡†ÀD\Ûz\r\Z\n\â\É)','wp-content/themes/twentytwentyone/assets/sass/05-blocks/image/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \Ü2¤\â…Ê‹Ÿ\ß1',_binary 'Wq$!MW^fq]]‘÷Y/‚e\ß>®xW3\Ì\"Ñ¿','',0,'?'),(_binary 'eþ\ØújX\ZŒ¥ƒA\Í\Û\ç','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/RuleSet/DeclarationBlock.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2a~q¶+Ž@”›-ùa',_binary '\ÛF\Îgy<dA×ƒ<±§1À¸Í‰—f‹B\r„`^P','',0,'?'),(_binary 'f¬DTŸÆœž\Ë4$³#\Ú','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hooks/use-position-relative-to-viewport.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ËJ´n\ÊZqR®\Ìý\Ç',_binary 'wç¶‰\Ðü\åQ¼®Ô©!¾\Æi­Q¼DT–?\'±\Âg3jZ','',0,'?'),(_binary 'f6d›\å\Ýs«Œ\ïk½[','wp-content/plugins/woocommerce/src/Admin/Features/PaymentGatewaySuggestions/EvaluateSuggestion.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Éñ9\Ô\Æ\ç\Æ\Ê\È@\Ó5ð',_binary '\ÍH%Do3±ñ‰ P2)µ¤\É\Ýˆ\á‰?¿\æ¡D','',0,'?'),(_binary 'f\È\Õ\ë¹<±\n‘»\â\Í','wp-content/themes/flatsome/woocommerce/checkout/header-small.php',0,_binary 'Qª\0?a3\ï¯c\çHúžšð8',_binary 'Qª\0?a3\ï¯c\çHúžšð8',_binary '«\n½Œ\ÜG\å6ƒò®6û÷3…Qnœ\Õ#\èŒ\Ì\åDf','',0,'?'),(_binary 'f ^9«À,vs7+\0’m','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/debug/class-otgs-installer-logger.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“\×ò\Ò$Š6\Ö\æg²Lƒx^',_binary 'æ´¯Vp¸\í$®ŠK\Ñpþ\Ý#$\Óñ\Ö\É\ÜÞŒ\r‹_S³%','',0,'?'),(_binary 'f%¯@ñ¸d·a\Ã#ŸL0C','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/blocks/icon-256.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·y\ÑH5\".\Þ\êóh6\á_M?',_binary '\Úh\é\ÛqGt#T¥¼†¾¹sûe;ž\ÜŠ\Þi','',0,'?'),(_binary 'f+ÓbH)™µ\n’\ØóEý\Ê','wp-content/plugins/woocommerce/templates/myaccount/view-order.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\é6pÿòr\Ç4Ww+CX',_binary 'pÕ·õðŸF„2FÕ¢?w*o¶¢:\ÆiUû\ËÀ\ßOG\ÍJ','',0,'?'),(_binary 'f:%5,™‰Àn™;D¨¥\Þ\Z','wp-content/plugins/woocommerce/assets/js/admin/backbone-modal.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o´zwvxŸ›h)k\Î\à/j',_binary '*•øÇ½\×6aS\ã\è†ql˜\ÙoY|=Hžƒ\Í','',0,'?'),(_binary 'fHe\'„ƒö¬?1³¼','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Node/CombinedSelectorNode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Â\Å&ÀD\Ù0\å(',_binary 'ËŸ™VÂ‚ó\Z\Ì£=©Š\à\n%\àTõó¿6°Ÿ5§','',0,'?'),(_binary 'fK\á\Ó\Ï\Å<5hß¡\Ï{Œ','wp-content/plugins/yith-woocommerce-wishlist/assets/images/email.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ðÎžE\è¢”-¦\ê\Ã0',_binary '„·=û“Ê©‰‹y€­\Ï\ÛØ¡\Ú\â\àJ±Zÿ\0\Ñq]','',0,'?'),(_binary 'fN’/J(‡\\˜o\Ê\Ø%\Ø\Ñ','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/dist/js/domPurify/app.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ò3»)p›´[¢\0€\Û\Ë\Ñ',_binary '(hÖª+s)Dgb9RYs%aò\Â<\rŠj‰kEô','',0,'?'),(_binary 'fQ5×«TŒYIK÷%ts','wp-content/plugins/woocommerce-multilingual/classes/multi-currency/class-wcml-exchange-rates.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yt_jR õ”m`ð0\ç_',_binary '¾,˜ŠÜ»BI\Í<T®Hw\ë\áSLp9\Óc7B;ild','',0,'?'),(_binary 'fQ¤JóGj\ã\å7z','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ù\î ]|AJñ\È]\Î`',_binary '®Dpò¡T‡7¿Mñ3«Ô’³L–/3Ÿÿ5p%Yuk\Ð`{','',0,'?'),(_binary 'fR˜@\ã¾\Ù÷\ÉWßž~ò','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/webfonts/fa-regular-400.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\Zðšf¶Â®e\ê\Å\Ýoˆ',_binary '\Z¼r‚u¹S5!|y‰Cõ3b@:‚ðmº3pFŠ^Y«','',0,'?'),(_binary 'fWþC¸—H	&vM²fû','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-code.php',0,_binary '®H\ÔQ )96+:-@7',_binary '®H\ÔQ )96+:-@7',_binary '²‚\Â—„U\í\ë}\Ú2}ZˆQ\é&<S‘§R\Ê9•_@','',0,'?'),(_binary 'fW\Ædú	…É³ñ{\ZYNG','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤0R\à\ïö$|~š\nü“v',_binary '\ïk\èipEû0mÅ—\ê™\Ç1tõM¡F\Üe\ÅZ\Ð\n\éRR±®','',0,'?'),(_binary 'fZO+e\âÌ‰\È^ùõó','wp-content/themes/flatsome/inc/admin/options/shop/options-shop-store-notice.php',0,_binary '\ÊaG9\Ïp\ê£À¡½M5',_binary '\ÊaG9\Ïp\ê£À¡½M5',_binary 'S¢ˆ !\èd\æ†8‘·¸Zœk…§\é\â5ò\ìŸ\Êó˜','',0,'?'),(_binary 'f^ýqb\r	\èN²­…#Ya…','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-sale-badge-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½|%\Öhñoh \å¡\ÈS\0\ê',_binary 'á©œ}#¥l\ÞKZw¹\Ý\é\ÕÅ»|e×˜\ï—,’•G1','',0,'?'),(_binary 'f_\Ó3\ä\Õ÷´A³±T{IZ','wp-content/plugins/woocommerce-multilingual/res/js/dialogs.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\â`\Ð~\è];šI<x\Õ}\ìW',_binary '\Å\ç º`0Ž}Q\Ó\r´’\ÊS’„\ËÑ«{\ÚQU˜ÿE‰\ÚqŒ','',0,'?'),(_binary 'f`\ÅÙ¦ƒ\áM\înq+vR','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/shipping.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P•ô0Ý¼‰(ã³—¼wdu',_binary '©ö¬r\Åóùz(|š¸ \ÏÒ½ŠþÀ×Q³\äf9','',0,'?'),(_binary 'fk\î(zµ¢¤U‰m\n)\Â# ','wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/square.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?43\á|÷\á\Öfoª“\Å\"',_binary 'a&¸z\ì¤•\ëû.†&\ßYn\n\í\ä¼\ÂS½}U$Z\Ð`L¶','',0,'?'),(_binary 'fp†ú“\ê\ç\ÈjóH›\'','wp-content/plugins/wordfence/views/blocking/blocking-status.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§šD\ç•\ãa\Øò\ÓG]:',_binary '^Ä¶\ÖU•O\ë95E¡Ö¹\È~Á»z\åqM\çq\È3@','',0,'?'),(_binary 'fw\Ã}WE~\ÅQ\"%…õ','wp-content/plugins/woocommerce/assets/css/prettyPhoto.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W£GH¾=#Y“ôñ\ì;,',_binary '\ï­µº7´;\nq®ÿ\ÈkPJc[=@­\Î\Ä\è\n¤\n&y','',0,'?'),(_binary 'f€rûNA SWv\Ä8;H','wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-orders.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZM\ÉUŸ¥ôNG!“i­w[',_binary '\î¶-H\ß[y\â#ög~\ÞD½uU#´\Ñ\ÛD\ã\Í\æ\ëK}ð´','',0,'?'),(_binary 'f„#w‹SZ¥`Z£e','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/simple-text.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷P2s*;6$\È%\Íð‰òi',_binary '\"OD¦\Ê9 TÒ¥~Ë™$Œû•÷\ì\í@=ÿ 3´C\ë','',0,'?'),(_binary 'f…u3\n¸M\\Á}6*0\íž','wp-includes/class-wp-customize-setting.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\Ë¹K–NŠ\'óÝ¦8põ\Õ',_binary '\ç\è\ØöŸG‡x°9|ô\ÒZý\Z`iÀú!E/n5E:A/º1\Ü','',0,'?'),(_binary 'f‰F\âõAŽ£lû‘Upýð\Ø','wp-includes/blocks/post-featured-image/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Òi\á\'µ\Ðž”öG—g:',_binary 'F——…!\á`<\Üþ	³m€j€ŽbpHÿ‡¦\êõõoÌ¿ˆ','',0,'?'),(_binary 'f™\Å*$\Æ(yó		ô˜¦#','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-wc-name-your-price.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì\àŸðö`xJ¼Zõ\\\åÿ',_binary '¤j.Z£\Ór‚\×Ö‹½:žr©ÿB\Í4úV\å\ä','',0,'?'),(_binary 'f éœ°fØŸ|hû¹U’L','wp-admin/includes/ms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼F°\æ¼!<(\åqš\Ðx\Z\'¤',_binary ' ra\Û+\ÄÈ«µ/á»·Hâ’Î§\é’¥@˜Bh\Å\Õ=','',0,'?'),(_binary 'f¢-ß¹RZ\är~¼ò\á<\Æ','wp-content/themes/flatsome/inc/admin/kirki/modules/webfonts/class-kirki-modules-webfonts-async.php',0,_binary '[u,˜\ß%HK–ÁñsI/',_binary '[u,˜\ß%HK–ÁñsI/',_binary 'ï¾°c¬À“\\ˆþ.\ê•g)\åŒ¨ù\ÞKJg\ÝA\ÜŸk','',0,'?'),(_binary 'f£¦mÈ„©%¦#!y\rÀ','wp-includes/blocks/navigation-submenu/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”$?f¾Žcÿ¯,­4+p',_binary '~!°Cuw¹}JDý5ˆ‘FS\Ë\Æ\\\é‚O\ÝÉ­‡\ß2¾','',0,'?'),(_binary 'f¤Z\Ôk«òøƒ8<©\ì½','wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!tZ:‹\ÚÞ\Ð\ä	\íó 09',_binary '£°=m\é8l¯?Ú’ljFÃ”‹u¥2g\Û(¤÷Â‹\èš','',0,'?'),(_binary 'f¨Å­\Ý8®ÿ;\ÑslV','wp-admin/js/privacy-tools.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»³ô\Äeš›öo`Q[ò.\é',_binary 'Œ\ë_A6»\Ø}•\âK–\r9\Ñ@\rroÿ¨\ßN³\Z\êÿ','',0,'?'),(_binary 'f³¦±*pd ²Ž\n^','wp-content/themes/twentytwentyone/template-parts/header/site-branding.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Æt\×VŒT€À\é\à°<\åT',_binary '\é\æä ¦c¥ˆ\îir\Ú™›fozñ±¯ó1B+','',0,'?'),(_binary 'f·„÷5\Ý\r\ÈG“ù]\×}L\Ô','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-dashboard-setup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?iE	C¡VŒó›O\0FŽ\0',_binary 'M(U„\Ìñx^\î˜ÁúO–ø´÷aU¶\â\Z{13ø}T‰Z','',0,'?'),(_binary 'f¿+¥Þ¡	™’iÁ½±«¢<','wp-content/plugins/woocommerce-currency-switcher/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rÅ“\Ñn™‰RÍy\î3\Æó',_binary 'T•2%\Ü­\Ò¬S\0\æ%Êœ\Ñ¢\ÄOš\Ìó¾\'Å²\ËIn','',0,'?'),(_binary 'f¿¸\Ù\ÌBœD\êFr\r\rž','wp-includes/Requests/Transport/fsockopen.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ä\ä±‹ØƒS\èg\\\nGB\Ô',_binary '·º„9ûç¸™;ƒO[x`—\à*\ã8H\É*rý.P\ì','',0,'?'),(_binary 'fÀ²Á¶J\Ý\Êcôû5Kôo','wp-content/themes/flatsome/inc/builder/shortcodes/commons/repeater-cats.php',0,_binary '\ÔŒÙ\0²\é€	˜\ìøB~',_binary '\ÔŒÙ\0²\é€	˜\ìøB~',_binary '\ã°\ÄB˜üšûôÈ™o¹$\'®A\äd›“L¤•™xR¸U','',0,'?'),(_binary 'fÄ™-˜i\Êr¶±\ÓÉŒ“@','wp-content/plugins/products-compare-for-woocommerce/berocket/libraries/check_init.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\èYtˆØ”¬ýŠ\çj\Êk¯',_binary '¯GÁ,„˜\êV\Ú\ëA{zŸƒlø­\à\n®tC\ÕÁ7H™x.7°','',0,'?'),(_binary 'f\Ê-­$¥ûG2Jšd\Õ','wp-content/themes/twentynineteen/package.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'MdQøù2Ž3· [,	˜',_binary '3FNAx·Y“ÁXß \Å-qSH\ÈU\Ú\Îm>®I','',0,'?'),(_binary 'f\Ëû§cY\Ã\ì\Ä\Õ2G¤','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-best-sellers/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯ù\Ìùx½\ì~e¿ª\\„',_binary '=± ˆh®œ¡_ŽD@n\r¥Kœœ\ÔFŒö\Þ\ß\è‹\"N$','',0,'?'),(_binary 'f\Î\ä \Ùý\Âe«ªR¹)\Ú','wp-includes/SimplePie/Item.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xiñq»l U\ÃG‘Õ‘',_binary '\ßg‚ŒP‡L/¯(Oõ\È)\ÔG™.\çµG„¨…n£„E','',0,'?'),(_binary 'f\Ï3\×ý¸Y\Æú©ñT','wp-includes/js/jquery/ui/tabs.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Å\Ô?Dg¯P\ä\"Q)\ÙU',_binary 'ªû¤«\Ãê›²‡Ä€x¸d\Ñx5úO\Ï\ÑpŠ«\ÛSÁ','',0,'?'),(_binary 'f\Ñ\ïj)&TF¿ù\å@M\Ø\È7','wp-content/plugins/woocommerce/templates/checkout/thankyou.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÜÑ‘s®\Å\å”bÌ®\ÌRŠ',_binary '$FT5;˜!e$&)&¡Sn±pT…¸\ì®\í\Ìy~T','',0,'?'),(_binary 'fÖˆó½ù¦¼V\íÔ¹)\ä9','wp-includes/theme-compat/embed-content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ì\Ù÷me\Þð\æ8¦\Ðó\Âó›',_binary '}Ec¼£\îzÀ]#\în¢¸\êýw?y\Ú\àR‘a©–0Þ…6','',0,'?'),(_binary 'f\Ö\ïr&Ì [µ¼\Õ\Ðx¤','wp-content/plugins/ti-woocommerce-wishlist/integrations/yith-woocommerce-product-add-ons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\éz\Ôžc£Öžó\Ü\r!oy\È',_binary 'ªr«ü{:$¸Wœš\Ì2)Ò£\n\ÅKý\Ìm\Ò\Â\0\á\Ïl I','',0,'?'),(_binary 'f\á\Å{\rJk§žÖ”›¢\ÎÏ‡','wp-content/plugins/woocommerce/includes/class-wc-deprecated-filter-hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ãú!¯bÀ\Éz3(u',_binary '’\æ{Ð¶…\æ\ëv\É:K\í™*I l_G\È#	•\éL','',0,'?'),(_binary 'f\æ\Ô°®\Ç]G~6','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-category-control/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½\â”¯ƒ‹\Ý\'i\Ó6¡½',_binary 'ŽbbŽÿ9©w\ç{®v\à\Äóñ•}»»\"*¼+\Î\Z¹\Ç\Ç','',0,'?'),(_binary 'fë‘¤s#%<XRX\î@>\Â','wp-content/themes/twentytwenty/assets/fonts/inter/Inter-italic-var.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì\Û*x\àœ&B—õ¯!À$fW',_binary 'Á. 7^V»t\ÃY˜\ïüU\Ô@ÄŽš\'~(:>ªkô','',0,'?'),(_binary 'fùŠP­\Ï%ù>E§\Ä\ìFI','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Registry/SharedType.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y5@WùöwUë““>0œ\È',_binary '+PVø§4M\Å_r\ÛA\ÖdóYhº—VJh ','',0,'?'),(_binary 'fû‡&5b¤N\Âð\ä8/\îõ','wp-content/plugins/woocommerce/templates/auth/form-grant-access.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\ç,ANuR\Íuó›™Ž\Ý\Ö',_binary '¼£ƒL¿¼\ÊIwˆ5Œ[³µ¥ ijÊ²7]\ZòkÙ”','',0,'?'),(_binary 'g-S\ê.?\Ù%\Íý:j','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-frontend.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰Ú£w²^³<¤#\Ñi\n\î5',_binary 'ùþƒ±¬bI†d9\'r\n44xd“\Ét\ÈX#¤\Í','',0,'?'),(_binary 'g	u\r]+7«\ßN\æmœµ','wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_AdminView.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\ãv4ÉŠl\écÞ®&f¥',_binary '£ó¡m…(ÎŒ»6.„éš¶•\í#šùB¾0¾P\ÓV;ñ','',0,'?'),(_binary 'gÀ_Xr|’B/£¦Oó!ž','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/NewSalesRecord.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\äi«²\'y\×\êLõXá¢·—',_binary '¾\í×«8\Ã8¯Àe\å}wñE†:\r=V]iÆ‡ó\í\æ\\Y\É','',0,'?'),(_binary 'g’t<t\á,6=“:','wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/woocs_converter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\Öô)˜\î¢\è®\0Q\íMÛ¦',_binary '§\ÏÛ®©fvÿ\ÅË€_³ô²×€Ng\Òq<\Û\Û‘Z…¸³','',0,'?'),(_binary 'g°®\ï\ä\ëV·\'l\nkRK','wp-content/plugins/woocommerce/assets/client/admin/experimental/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-2—L\í/°j¡»­±\Ùd',_binary '5x` 3\åù§IL¬LCC-@?\ã‡\âl‘r{\Ú\×','',0,'?'),(_binary 'g#\é,vM‘ÿŽ‹—\ß:õ\ä','wp-includes/js/jquery/jquery.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ã·m¨R&‰l’7NHÃK',_binary '¸\îS\Ø\Õf\Ì\Üò˜\0ˆ¹\å\Ý\ÛHR“E\Ë\ì0\éiØ›sf\Ã','',0,'?'),(_binary 'g%6„\Ó °P\âƒ5ô@[f','wp-content/plugins/wordfence/css/license/care.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£qC\ï*ú²&h)F',_binary '\Ô\ìš\Zm\ÆÊ˜\ì:NÓ¹®Àž_\n8”Q&y\rx˜_Qy\Ç','',0,'?'),(_binary 'g&N\ÉT¼¨V•–7…xF','wp-content/themes/flatsome/inc/shortcodes/custom-product.php',0,_binary '‡X_\ê\é^T‰u)‘®L½',_binary '‡X_\ê\é^T‰u)‘®L½',_binary '\nbE†\Ô\Ë\âb‡X DW&£\ë\Ñu\æ\ïTPðiÐ„\ÆO','',0,'?'),(_binary 'g+yr‰\ä\Ðq„€ö€D©´/','wp-includes/vars.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ\Zm«´\Íf1q\Î\àË´',_binary 'ùnl\Z\Å\Ë\àh¯1he\Æù-ŒM\Å\Ï5Nl¹’bd¢Hpz\è','',0,'?'),(_binary 'g+±·\çwJoGÿ\í\ï{b','wp-includes/js/dist/vendor/wp-polyfill-formdata.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ\Ø\Ø\ïhU4øSm`\Ñ\Z‡S*',_binary '›WVð\îú£\ãRq³1Sx\ì–-o5x sn²¾\\²\é','',0,'?'),(_binary 'g0hUõ¡ƒg¢I	x+','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/autoload_files.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\á*K\ìû”ˆU=z2¬\'\Í',_binary '•gž…n\è\êG·\áÁ\ç<ž6\Ë)†6\Ð\ÆQ¤eH/?¼l','',0,'?'),(_binary 'g1ZŽ \ã=\Ú\Ø\ÚoÁ÷Ñ´','wp-content/themes/flatsome/inc/builder/shortcodes/values/box-layouts.php',0,_binary 'ó/<\ïÁ•\ØA«&	DŸf€•',_binary 'ó/<\ïÁ•\ØA«&	DŸf€•',_binary 'GpH\× ó®WWþ^`K_¸¸Lúµ—ñh– \Õ7','',0,'?'),(_binary 'g4#\Òý\à`Ø‰\Î#xö«\É','wp-content/plugins/ti-woocommerce-wishlist/includes/product/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ð™ .ƒ‹J5n>k«w.',_binary 'õŸ\ÏÞ2£”\êüD’l“<ˆ©\Ôhõ¸MZVk ','',0,'?'),(_binary 'g=H¼K¥´w\ëZ®^¿','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-background.php',0,_binary '\ÆK)#yø^”·\ß\Ü\ä$Á',_binary '\ÆK)#yø^”·\ß\Ü\ä$Á',_binary 'P«ð¯`(F—¼³û\Ð\nDzü\ì7Oß¿S\Î\'‡\æ¬\\','',0,'?'),(_binary 'gQirˆüë˜¿¦\é™/!½Ÿ','wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')`ô\Þ1ªQº D;¡±7Z',_binary '\Ô\ÏD\Ø?\Ï\'Â·o¾]‡4‡\æÞ½\Éä’«©z8û}*','',0,'?'),(_binary 'gSv\×*t\ê¾\È.¸z_{u¿','wp-content/plugins/nextend-facebook-connect/providers/tiktok/tiktok.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>	Rº‡Ñ¨*4…€À‚›}',_binary ';•«¼Z\Ü?¨E„¸^‡\\¯‘~{ô\ÙN¢\ÌoËªGN‡©','',0,'?'),(_binary 'gn\ï#É°DI)\æ\"÷\ç','wp-content/plugins/yith-woocommerce-compare/assets/images/socials/rss.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\É‹c5?.~®°¤Þ£vˆ',_binary 'þ!@j\ÝÜ§ó\Ðö”\ëoÕ‘Ñ¿\×qøðÖ¢x×¼','',0,'?'),(_binary 'gn\ÍY–\În\Â\æQ\ã_”)','wp-content/plugins/woocommerce/includes/emails/class-wc-email.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ü\Ó=6ðJ¥\ÕDü\á-*ŸG',_binary 'Ì­)›ž1)y\Ï\ï½aA»ö5ª\Ü9G9±\ãB\Ëð¢\'','',0,'?'),(_binary 'gr0™•wßžg\äu3ý\Ë','wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-cute-shop.php',0,_binary '¡$‚+\\²þ\Õ\ä•ö\Ý\åt¹±',_binary '¡$‚+\\²þ\Õ\ä•ö\Ý\åt¹±',_binary 'Z<$\èý¾r`†Aþ@‘–°¿ô\å¼s¹i&]\ë†','',0,'?'),(_binary 'grú\â|[¸-T\Ù	\âQ¥£D','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/colorpicker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<Ð¬´ZJˆh\åj/Î',_binary '°R\ÞJ\Ä\Þ0±—–?ÈƒD\Ö\Óf\Ï;!?ŽF\r‡À’n','',0,'?'),(_binary 'gu‹¹¸\ëZÀ\Ç\éš6Œ[','wp-content/plugins/woocommerce/legacy/js/admin/reports.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\":k¯-\ã3ŽÍ,Ï¹b\ê',_binary 'F|\Ì9ù¨¹®\êG„üÞ‘û²±7ñ§ï “T‰*\ëŒ','',0,'?'),(_binary 'gv\Ô\Ù\ZUOÿ\Ýòñð­ö\É','wp-includes/blocks/html/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2™3„X8÷\Ü<4)eK\ãb',_binary '<[n)3¶a`T\íÁ!:˜]\æ±ÿE\ë\Éw{O\á”ù','',0,'?'),(_binary 'gx\"ƒ×²O*\ßA\ÏR\Çm','wp-content/plugins/woocommerce/assets/js/admin/wc-clipboard.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=6yý+\Ôö\Î\æRô%ñ\ß6',_binary '¼\Ô\ç¶\Þ6„–k#Tbÿ\æõ_)¾\ÈRð	W>™\êEöVÇ»','',0,'?'),(_binary 'g|y_“o4\"‰©X†Nšù','wp-includes/images/smilies/mrgreen.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-5Á\à^±”‘\ÓJ\Ýj\Ú',_binary 'Á\æ\ÐMƒñg¨$·\æ¥+;¿²\0\Ç5\Ñ\É\Ê\íH&\\E6%w','',0,'?'),(_binary 'g~î¬£\Ì%§\í¯f}‡~','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/filters/block-list-block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\É#\Ø\Û\ê3\ß\Ö\Å\Üð=	bE',_binary '\Í\0­ú­„·Oð¥>t>†\ìZ)g\ÖüCs\ÔÞ•/ñ;’9','',0,'?'),(_binary 'g€±¡É‘\Ý\Åû{\"Z\î ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/trim-html.d.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à,K…Ä’·ö\ÝI\êß·d',_binary 'CxB¥¡h¢b›…E\Í\Æ}’e\É4q”¶ªQ©q,„%N','',0,'?'),(_binary 'g”\Z˜ \ÍÅžþ\í|qš(','wp-includes/sodium_compat/src/Core32/ChaCha20/Ctx.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŸzW\î±Mž\ê&˜8\Ç3\â6',_binary 'TR@pe\Ó\ÖùS`F¿a×±C«>+öVˆ%\Éú8\íJyQ','',0,'?'),(_binary 'g”$G\\¾\ë±;©r\Ä\Ä\Ï1X','wp-includes/images/wpicons.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dSüøuq‘V_®\Ü\ãaô',_binary '¶¥\ÞcZ_”\Ä?n_Ÿ\çK‹6\ë\îŽ1\\}r','',0,'?'),(_binary 'g”K³„™\ÒN>JªÀ4','wp-includes/blocks/freeform/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÄŸK\ë\èm¢¼×€‹£\áœ',_binary 'g1\ÅgŽ,@2\Ñ_\ês{ð\Â$›\çyó9s°¬´7=\á@','',0,'?'),(_binary 'g•(0^|\Í_u\ÎšqŽ·\Û','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/checkout-order-error/constants.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þb\"I+\ÖE µ­^&6•½',_binary 'žˆ¼¸\ê\ì4c«&#59~SPf\r G˜\â4µ7¥¾\ä','',0,'?'),(_binary 'g`\ÞU/M	BHÿ\ìQ¡','wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.theme.min.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kXøZb¸ö\Ø\åª5\Ä\ê˜',_binary '[\0Nù†²’EÀgð—\ì¤\Ñgd¶q\r\Ò\í¿\Ú\è*\'I\Â','',0,'?'),(_binary 'g »½\'õ\âs†¼¶\á\áy;','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-pip.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µp#¾7¢™8OÖ‚Ä¸[',_binary '¬F“õ\ë\\+;®N.\Ë\Z\0ù\Üv\ÎQqs(O\æn\Ñ—','',0,'?'),(_binary 'g¤Á¸\Ñ\äLDÀpEGJ¶*÷','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/sidebar-right.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q]*¬.\Ë\ÂøV\ÝWÊŸ\Ù\î²',_binary '\ë*Cùl\Ã\Ò¤\àð™h¯{(\Ù\Åw¡¹ŽcÎ².†\Ì','',0,'?'),(_binary 'g¦—|(9u¼MüM¤\"','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/cart/use-store-cart-coupons.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'º¦\"¹	\0<Hiz\ì\ã}³',_binary '\âD+» üŸ­4‰mt\'ýX•p¤(wô\ÔÝ©B*','',0,'?'),(_binary 'g­N\åjz½\Íæ’·Ü¯\ÞÁ','wp-content/plugins/woocommerce/src/Internal/Admin/WCAdminUser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒùk,§ø‚3\ì\Z¼tY\Ã',_binary 'ÌŒŸ\Ý6´0p%Œ´FF\ãŸyŒL\Ð\Æ	·\é \Â/','',0,'?'),(_binary 'g±fö1ûÛ¶òy\ä;´_','wp-includes/class-wp-http-proxy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D:\íƒiœfÎ¿\Ì4',_binary '¢e¡ðQ…õ39MEE>±pWCRÄ§¹_-ý™','',0,'?'),(_binary 'g´ƒ\ß8,÷ vÿ=\ÅbK«','wp-content/plugins/woocommerce-currency-switcher/img/woocs_price_info_icon_old.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”Š„2ò*ú©Qv*ø\Ã',_binary 'v3û;d1m\èüÐ’¼ž¢‚E‡\Ç\ì,¯NnB\è¾h„ð','',0,'?'),(_binary 'gµsô\Î)¡³mý\ç%','wp-content/plugins/wordfence/views/waf/options-group-whitelisted.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ì\ç“`rœll¡3@Þ !s',_binary 'F+RZÏ‚®eQ$ep\ë•G%Ev\Ñ-\ÞþxE','',0,'?'),(_binary 'g¶]e…\Ô!^…‹(PKð\Ë','wp-content/plugins/wordfence/models/common/wfTab.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2öT\Ô}šHW\'<}\\',_binary 'ZÂ¥|ÿs\éS\Ì8e•Œ3\è‹EØ—ª$‰Œ\Ö\ÆÜœ-h\å','',0,'?'),(_binary 'g¸Ë„\ÙÇ\ÄnÑ‰\É}½¿Z','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/sidebar-layout/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Amö®ø§9\ê\Ù;x]ß‰\Ù',_binary '\Ý^¬Q•”Kc\\P\Ú÷Þ©”— ˆ\â\Ål^•\"Û‚OŸg••','',0,'?'),(_binary 'g\Åž©»µ»&¥°\'\Åñ','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-maxstore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÏÀˆ\ÛÝšH\Ìsø\ÈXø$',_binary 'þ1¢ Kz‰2\Ú\rù¾	\èIºXV³‘¨ûB\á\ÇU¶*','',0,'?'),(_binary 'g\Ð¶~)²~¥sºÊž“ûI','wp-admin/includes/class-language-pack-upgrader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñ6d³,Ÿ’–€û8E\æ',_binary '\ÄG•y…€mT\É8=\ï?€5\é \Ã5\Æ\ïy\å.‘','',0,'?'),(_binary 'g\Ðûd-L¯\ç0+\'n\Òk$','wp-content/themes/flatsome/inc/admin/customizer/img/align-left.svg',0,_binary 'ø3™ü+!š\"¥Î Z\ÐeE',_binary 'ø3™ü+!š\"¥Î Z\ÐeE',_binary ';7xœF\ÌÏ¬h\0‡L÷†£˜<\Ô&\Îs\Þ;c+Ÿ1\í¹','',0,'?'),(_binary 'gÑ½35“~;aP¸¬õhD','wp-content/plugins/woocommerce/src/Internal/Admin/ShippingLabelBanner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';òi»µµ\ëu s‡Ùˆ',_binary '°ùoÈ²A\0¿\Û\Ê(q\rL<]ö\Íu}39É‹›\É','',0,'?'),(_binary 'g\ÓmXÁJŸ¯z\îaO{','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-ko_KR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²]9+\ÐM¨”Jµ\Z¿\r\è2',_binary 'œ\ç\ã:3	\ïüb\ê^ø\Þ&n „¶>ˆ$í¢ð´r_˜','',0,'?'),(_binary 'gÓ\Ù\"}øH\ß\ê,\ë–dñ','wp-includes/blocks/social-links/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qw‹»a\ÑS—~S(r\Ï]',_binary 'â’\"ñ¾\×\ËN\ï&\'\ê\à©1\"Ÿ\è=\è§ôË\Ò\×Z','',0,'?'),(_binary 'gÔ¨Z©Š’k¦v$ð\æC\Ã','wp-content/plugins/woocommerce/includes/walkers/class-product-cat-list-walker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŸipU¸m\àkÉª\Ù\n',_binary '\ç\"$\æ\æöÇ²Ó¬$A~³d“³²§•£\Õñ]†\èýŒñi','',0,'?'),(_binary 'g\Ü\ÅJ¿e\Â4‚\Öï¦“G','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductAttributeTerms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\'*uey¥ˆ_\"\ât\ï£\Ú',_binary 'ë—³˜«µ¼\àiö\Ö\0\æ·²ù&!9\çz7\æ)','',0,'?'),(_binary 'gÝ©\í>ÿ2«@&\"¿/ ','wp-content/plugins/woocommerce-multilingual/inc/currencies/class-wcml-multi-currency-resources.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Æ\Â\éV\íYSÑ¾[\Ð\í²\Â%',_binary '÷R9S?XX\Ï\Å	tu\Õ+¤Y\å¤INP½\Øk&)ñõ\'°','',0,'?'),(_binary 'g\à¬T‘+<M~ª’|Xš','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-report-sales-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f³†ž\ÂkA‡!©n5\Çuc',_binary '«\ä­S—V ö6Šžv¼\Ç|ÿ‹ÿ/m\ÝH^n˜\niû9«P','',0,'?'),(_binary 'g\à\ÞÖ‘…Ÿ¦±a6¬Võ «','wp-content/plugins/woocommerce/src/Admin/API/Reports/Categories/DataStore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±\Ä0ª}1\Z\'óÄ¸`ÿ H',_binary '–¸%\Û\ì”q-¦Ì®.–•\Ã\ÂLßº;ˆ¸z\ÏH,ö4','',0,'?'),(_binary 'g\â\Ýø ƒ\æ\"\Êp\ï\è¤\'','wp-content/themes/flatsome/inc/admin/customizer/img/nav-icon-fill-round.svg',0,_binary '¨Ø¤š\áhd&ðF˜†Çð',_binary '¨Ø¤š\áhd&ðF˜†Çð',_binary '°\Ä[ Þ¼\Î~K”;¤O\Ë‡ƒ\á]fþ\ï\Ìn÷‡°','',0,'?'),(_binary 'g\äú­™9Ô¾V¤³\×','wp-content/plugins/woocommerce/includes/react-admin/emails/html-merchant-notification.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÞÚ²Ôš\Ù2óB5›t‹’',_binary '9\î-\êawˆ;j†F´\ãc-ªõtŽBD\ÔZ)”\ä‰}','',0,'?'),(_binary 'g\é3†\\\ê›\Õ!BšK= 	o','wp-content/themes/flatsome/inc/shortcodes/ux_menu_title.php',0,_binary 'r_².ˆ\ê‚\à–353}\Z',_binary 'r_².ˆ\ê‚\à–353}\Z',_binary '\Ü2\î§÷¿sT\ÅWŠOœÄ¶\Ê,Ò¼‡™ZŸaG¡¬^\ã','',0,'?'),(_binary 'g\é;Sc¡\Ü\Æ[\Ü>\îŸ\Ô','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/RouteInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ÷\éAv{ý.\êpBÊ ',_binary '5º\Þ\ã;¿¦Ñ«ÊˆML†\×`zñL—.­n\ÐÆ”-À]','',0,'?'),(_binary 'g\í\ØfNµ\n^ý¦2öú û','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/shared/hocs/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pŽ\0²0ö.òV!z\Ú',_binary '{\Ä`/ˆ.­)(Ž\Zg\Ù\æÓ¬ÝŸ˜\Ù>\êt*/V™+','',0,'?'),(_binary 'g\ï\ía \"^À­\Ï\Ì1Vº','wp-content/themes/flatsome/inc/admin/options/header/img/header-wide-nav-dark.svg',0,_binary '\èiI_\ÊGk\Ä\Å0\ê\ä',_binary '\èiI_\ÊGk\Ä\Å0\ê\ä',_binary 'e–¿\Ð\ßÜ¨\çg!xÕ:±+a‹±:\ÏCj›m\à–','',0,'?'),(_binary 'gð*±&¨\Ó\×w;zþ¿mU','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/toggle-element.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›&Ô¾jú\ÏZD@\Ô\Ç\Z/Zp',_binary '·­o\Ý%†\×\Óp»(\Ç	u\äŠfat\âmW©{\ê5\ÊGˆ\Ð','',0,'?'),(_binary 'gõ\ä]bR%ˆ Z\ÛEº','wp-includes/js/shortcode.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†Ad¬\'w#6?¾÷w±',_binary 'óû¦µ‡¨³Q¾ 9I\Ë¦oµ\ÃT-ž79_!¶–\ç‹`','',0,'?'),(_binary 'gþEd\É\ã1¢\ÒD}\Â\Âü‘Š','wp-includes/js/jquery/ui/autocomplete.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Æ\éj0±>Be.¨Š·',_binary 'Á÷]U´›ˆ5	ƒ\ç‡om®\'(Š>&b\Ç\î4R','',0,'?'),(_binary 'høv\n~«/‡ù\ê^c6x$','wp-content/themes/flatsome/template-parts/pages/page-title-centered.php',0,_binary '\'°H x#û\ÃTCöÏŠz\Æ\Ý',_binary '\'°H x#û\ÃTCöÏŠz\Æ\Ý',_binary '\Å\ànmƒh\Æ/ù žº\åò(¶ZgF4{š•DŒ¶p','',0,'?'),(_binary 'hZ[ý€=—\ïw–rŒ','wp-includes/sodium_compat/src/Core32/XSalsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ü\\™®”ñõ\à:R/\â+',_binary '\ÞÉ«¡ÿ‡¨\Ðø\ç\Ì:ª»¶jN\êmm©ú†½R·ª¸[','',0,'?'),(_binary 'h\ZOhlø\ç_ø\ÍLm/\å·','wp-includes/class-wp-customize-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rjõr‘]\0\êÞš\åû2',_binary '\ë6UN¢·øÃ»³sÀ+\íH]€\Äg\é_\Ð\ÏEüùjùJ4','',0,'?'),(_binary 'h d\Ñ’ê»…2ö\Ã_Àr','wp-includes/functions.wp-styles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n¬ç°ª:°\Å\Ì\Ï Z\Ö`',_binary '¦}\Ä!^nÑ‘û\Þ\ÞT®£9\ê\à†m‘ù\Étb® “ó=','',0,'?'),(_binary 'h*,\Ý_\çuø‡7H\×.r','wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/payu.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'óQ\êY,÷«DrL\à9ff‚',_binary '7E¬U/\êË‡\Ñ{ú\ä\Ý\è²d ­÷2ãŒ²e9Œ','',0,'?'),(_binary 'h0X-\Èiÿ»\Õ\á^\ÌG`8','wp-includes/pluggable.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯•ƒ\áw°?A\ÒQ»N¥',_binary '\ØkŒ­K¥ä’¦u[T\0\îµ[ó#ôTa!b\ï/e','',0,'?'),(_binary 'h4¬‹ò#3\Ç`Ž-Ýˆ¨\"¢','wp-admin/profile.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\î\0ð\Ö,”û\Èøg;ê™´',_binary 'ûC«™q¨ñýN,\Ù`v¬S›±*\î\Ò\ßZ[\Ü`\Ó\Êô­m\ä','',0,'?'),(_binary 'h@Z\É%R\ë•F\ß;ti\\m','wp-admin/css/login-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V÷\ä\Í>\âzd	s»¾_',_binary 'JV/T‘£~#\Ûsa±\É\È{Ux.÷7NV\n\Ç³[K','',0,'?'),(_binary 'hFšµÕ„¶\ç\Ø)\ßi\äh','wp-content/plugins/woocommerce/assets/js/jquery-tiptip/jquery.tipTip.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Yc7-\Ë\É\"œ\åþÊ¬b',_binary 'Í…õñ\Û\Ü~\ÚR*\åkÕ»mZ\í\'¾\ç\îóð\íp01 ','',0,'?'),(_binary 'hM:\î‘3_NŸ\ÍºM#b','wp-content/plugins/yith-woocommerce-wishlist/assets/fonts/FontAwesome.otf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\'\Í]…>\\v\\ 2\ß\Ô\ZM',_binary 'qoÁO$K]¡Ž°g3\ÐnûÃ’±Ñ\Ò~\îøù(€R€','',0,'?'),(_binary 'hP\×+\0G\Ât°M¯Õ¢','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å­KK—yñÞ«pr\Ä]',_binary '\Z\Îñ\n„‡¹=I#Zˆ\\‘¥4„lÖ™\Äµ¤\ïuó°®\å`','',0,'?'),(_binary 'hc—\Ü\ï‹\æ\Ö\á‚)õT','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-details/test/__snapshots__/index.js.snap',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì\ãÀ”k·Ò¿\Ä5.º\áÊ¸',_binary '¿Wd’š¨I…r€‹¤$™}\Ü=\Ó_Ts9D&§¯ˆ´','',0,'?'),(_binary 'hc\Þ\Îøþ=õ £ð\à¯0\é','wp-includes/block-patterns/social-links-shared-background-color.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆŽ\â}¢\Û;`\ZÔ´ˆª',_binary '>\ê**°¹?\Ä-T*þ\íH¾%9\Ä/ðE¬Vy\ìf','',0,'?'),(_binary 'heV\â°i¹|g<\ÒþHª¼\Ï','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/event-emit/test/emitters.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ql’O\Â\'\ØK \á‹Yð©',_binary '—E\çM—8¯\Þt×ª165°)\Ø@¿óó™„ˆg','',0,'?'),(_binary 'hgj\Ô7P\ãjq\åB;\å','wp-content/plugins/woocommerce/includes/interfaces/class-wc-shipping-zone-data-store-interface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡U9Š\'PJ³\ÔK:',_binary '\âži!\Äõ®j\í\Æj	¼\è£A£nk²ƒ8	n\Óù†\ê','',0,'?'),(_binary 'h|5\\Šô©˜|\Ùõ±qÛ›\Æ','wp-content/plugins/woocommerce/assets/js/selectWoo/selectWoo.full.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ã\":X¶5Xõ\ÆRÆ’‹Œ',_binary 'ö\Ë?«Y_8ù\íÞ¡¿i³°w•\nCó\ÙUM\Úú€÷«oG\Þ','',0,'?'),(_binary 'h|hEˆˆf:Æ±2š‚~','wp-admin/network/theme-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'å ·È¹\èüµH^r€',_binary '\ëfˆkL‡\ìö\Z¥)h/F_\ÜÁ\ÆMŽ9¥jùªV¢','',0,'?'),(_binary 'ht/ÿ­‹5¢\'\á\'\à^\Üþ','wp-content/plugins/nextend-facebook-connect/admin/templates/settings/login-form-pro.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜SDý\éÿ\ây—µÂ–C\ß',_binary 'g€H\Û<\Ò\ç“2kºüú\èW\Ò3­n({\Í\á1¥G8\"¾','',0,'?'),(_binary 'h\Ú7\Ù3\çù%ÿ\ê\àœ²\ÈY','wp-content/themes/flatsome/woocommerce/cart/cart-empty.php',0,_binary '\Ù\ÒT\âp\Ö\"sL\áŸ',_binary '\Ù\ÒT\âp\Ö\"sL\áŸ',_binary '™pEŽ^9“n§+¢¥uý»w^6\ÑÞ»ø±…','',0,'?'),(_binary 'h OT,$\Ý\â(ú˜\ç\ç\ã\Ëô','wp-includes/blocks/site-title/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ø\Ç\ì\'ú\Ø\Ûw\Ý-[C°\è',_binary '­u\ë˜V\ÊnF\é‡}{ûó\ÎWbI:;a\ç\à\Û\Ì\Ög¿','',0,'?'),(_binary 'h®\Ë~cTOo¶y4|','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯f\"ü»Œ\ç#6${ JL\'\"',_binary '\ËeÅ‡Ž6\Z(«q\Ë&…Ú¶¬\í\Â]œ\Ì\Æ\n÷Cli‡Þ©‡','',0,'?'),(_binary 'hºM±Vžm\É •\Ó›²','wp-includes/blocks/categories/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´À=)…`K×®ó!2:7',_binary '™“´1¼\ã\×\'s\ì1I¨MøøZš¡š“\ÔÕ´$iD','',0,'?'),(_binary 'h»<²]“”\ìOpNCÆ´\æ','wp-content/plugins/wordfence/lib/wordfenceURLHoover.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0¢{\î£C-½ô\ï.¨»ùƒ',_binary '5%ž±ê’›¦âš\Êd\Ò*<nÔ—\ÐÒœN¼Z²ózŠ','',0,'?'),(_binary 'h¾”rº˜ˆ/\ÃBÿ\'³0','wp-content/themes/twentynineteen/screenshot.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\×xü•4®Òªª€ª',_binary 'd\Þ@À\ÇŒšd%1M“ö³Mo6ª¹1\Ä\è–ÁVk','',0,'?'),(_binary 'h\ÇMAþ{Ô”¯-ÿ\Çv\Ð','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/payment-method-card.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Âs\nóq\ëó•hIðR8\Å9',_binary 'MZ&mñ\ê« …?„÷£”….¬F9³{®:GŸ\n\Ò\Ô','',0,'?'),(_binary 'h\É}â¤­ŸG@\ÎT\Ä','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„Ž“PÌ†©¿¨‘x¥Ç‹',_binary '´D•\ìmMõY|\Ûx\"<ALfp³x3³)®H\"–','',0,'?'),(_binary 'h\ÛóÈŒ¼S™\èjŽÆ›¾—','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/ms.js',0,_binary 'R.ý_K§õ‹ù+\Ç\ÉI',_binary 'R.ý_K§õ‹ù+\Ç\ÉI',_binary '´Ü‰\ßzu}üþ’,fšù±øŠT¯\è4\Æ<%GT\Ü','',0,'?'),(_binary 'h\á\ä\äD?l7£®_\Í\è\æ','wp-content/plugins/products-compare-for-woocommerce/berocket/languages/BeRocket_domain.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­ó=‹\á\ÅN÷¢±\ê*fST',_binary 'a„tf\íp\r†ðP\Ñ{\ÄI\áþ¾vÀH\í¹es1!–','',0,'?'),(_binary 'h\ã6;Ò’½c%À¤œú7','wp-content/themes/twentytwentyone/assets/images/the-garden-at-bougival-1884.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ï\Îß±l\Zp“\à\Ö\"µ',_binary '¼?\çfD‚\r\Õù…5×§š	\Þ\çß‹\ÌÞ™\ìñ\ÝJ\Õ6£qm','',0,'?'),(_binary 'h\æ²/*¯$/oi3À\Ås','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-address-block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–\Å<\æ‰\×C9]9\ã\"ð#ÿ',_binary 'ÿƒ¥\ÆOô\ny*\Äý\ç½iS@\íq°¢›PY\'ó\Éi\Ý[','',0,'?'),(_binary 'hò\Î\ÇQKøV<r:Mg_\Ï\æ','wp-includes/js/dist/format-library.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\r3N2\0\Í\ÍWqÁŒ©\Å',_binary 'Pñcò\Îq©±\ãóšcŒ†ñ‰Û–„<­Œ\í¦<\Çr²®','',0,'?'),(_binary 'iM[#\å\0¨D\Õ\'','wp-content/plugins/woocommerce-multilingual/screenshot-6.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾\Âÿ{¸ÿd\ÝÔŽ_OÝ–Ä¤',_binary 'XzOw¸ªŒ\Þ\n±(¥N¶\Ð	v\åðž‡5\r:\ÔQŒk','',0,'?'),(_binary 'i\àõ>\å\ëÀ¬õd—%:','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/reviews-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'º÷£S\ä$\0~\Ö\Íü)\Ö÷t',_binary '°\Ð\Ït\è%O#• üšð‚O•Q¯s7¤\na¦\'-','',0,'?'),(_binary 'iŠ\í\ÇkmCxþÊ·\Ëòù','wp-content/plugins/wordfence/lib/wfDashboard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e‰\É.\×q¿:óü—j\ß\íR',_binary 'u¨a\Æv\ÜR°û +We\rÿT†J%˜\"\Â\r7¤f»™\Ï','',0,'?'),(_binary 'iz\Èm½\ç:=}`\çžv*','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-bookings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ó\æW]?Vö%\æh•\Ü\ÝF˜',_binary '¤cÿªö==c6f!\ÂT@XV\èù0d\Ï]·)²³¢','',0,'?'),(_binary 'i¢™;\Ùõ&™¾o\â®?','wp-includes/IXR/class-IXR-base64.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\î*6\Ö\Õ¯D¶T\æe™»',_binary '?F]Lª2}‡\Ù\ë\rSþ@b\Ñ2÷O­o\ÇuU\'O„ª','',0,'?'),(_binary 'i$\Û\"\ÜnŽ÷cùƒÍ’|¾','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/text-array.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1ÒŒ\0\å®\Ì0±1Sv©WŠr',_binary '©x”-Š‰\rNñ™<\Ø=V\å%\'\Ú_^¡\\eµx…','',0,'?'),(_binary 'i,©ü“sXŠZ¢N’}\'·\Ö','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-typography.php',0,_binary '‡/eg	BÅ¢¨)\ÙL',_binary '‡/eg	BÅ¢¨)\ÙL',_binary '¶¿©ûò¿ \Ém\"#\ïþµº.\Z1$A¸hö	\'dM\Ý','',0,'?'),(_binary 'i/ˆ~.WŸ·f\0™8ð¡','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/filled-mini-cart-contents-block/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Þ<\åT­\ÊQ„\è(„\éß¿=',_binary 'Š^\ÓWÁ>d…ñý†%û ð\'[Xý\ä\åX¥©‹¡AE','',0,'?'),(_binary 'i<n¥§–X…I\ÓüLò4q','wp-content/plugins/woocommerce/src/Admin/API/Reports/Products/Stats/Segmenter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'û¥ó8¼\ï\×Ý›Š\Ä\n:',_binary '\Æ\"ž\â;,éˆ`n|\Î,\ÈÈ—¦Ý€Y)\Ë(ú[¼¹JÀ\Ð','',0,'?'),(_binary 'i@#‘o‹ñ6SDXc','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/eu.js',0,_binary '%pÇ±’i]”*À³Š¤',_binary '%pÇ±’i]”*À³Š¤',_binary 'NCOhmó#ùf#m¸)ˆ\ïº`œrd\ÞF°ÈŠf','',0,'?'),(_binary 'iG\Z2*†\Ìnt\Í\ÓPH°','wp-content/plugins/wordfence/js/jquery.colorbox-min.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y5±=\ç÷\Ìq\îþ)–\È',_binary 'H¦\Ö4\\¼óv÷\â/XŒG›÷K†¿—:gkl','',0,'?'),(_binary 'iLtN\ÆbKþð$¥Ã¦¹\Å','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/collections/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿª Wž³´\È\ã\r',_binary 'dV‚Å±™[V]‚\0\ÒR\ê%ý³ü3j-\ß\ß,4•¨À\Í\är²','',0,'?'),(_binary 'iZ2$óü^¢®òh¸#Rù','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/ar.js',0,_binary '4)±‰\0¦-\"z„´ù\î',_binary '4)±‰\0¦-\"z„´ù\î',_binary 'õ\ÂðH4\ØZK\Ù2VzN.\åá¡¨\ï¶‘uEŽ5w:','',0,'?'),(_binary 'i\\>ŽŽ\ïƒ¼¯§÷ÀnŸT','wp-content/plugins/woocommerce-currency-switcher/classes/alert.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼4V\Ê\Äy(Q(E‘§§',_binary '&nòB ò£	yV‹&œ\'É¿\Ë96¯§]\í:?ÿ53','',0,'?'),(_binary 'ia{–-\Ï\Û\Z÷Ø™o³’','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/SipHash.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž}©<\Ì\ÄÜŽ‚s¾òœ9',_binary 'þ\ÝQ\Çþ\'\Ør™† ¼t7¥\â=s*a`<¾z\Úo\Ô_','',0,'?'),(_binary 'idÜ¶\Ç1¾\"—ôù\É^\ï','wp-includes/blocks/separator/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\Æ.4	ÀXª6h\Ý\Ìb{\ß',_binary '+‘]püŸK\nO³>,*~Ü§]m_«€P\Ó\'\é]','',0,'?'),(_binary 'ii·Â\"oýC\È„³\×`','wp-includes/sodium_compat/src/Core/HChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[Rz@\ëMMQmr÷ƒ…',_binary '±qÀ‘òX9Oøþ¡a4ÁA¯\Þ\æÀ\Ä\Ï\'ôøò\ÝÌ¾e','',0,'?'),(_binary 'irR’R)&˜8°»³¿K','wp-content/plugins/woocommerce/includes/admin/class-wc-admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Þ{-ý¸0IEf\Ó\Â$\ÔT',_binary '~†²B¡znlkmý\Å[ÈšrM™Q\ÍIm” >\æÛ‰a€','',0,'?'),(_binary 'irüc\âh›†œº\ÉÿôT','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/event-emit/emitters.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bq#\ë\çµ+·q›øm',_binary '7<{o-ø—EJ\ß\n\Éa\0´D‡Á\"ƒ“\ça3_û(4ßŠ','',0,'?'),(_binary 'iwü—Xø¼¿R›\ç£œ¯','wp-content/plugins/woocommerce/src/Internal/DataStores/Orders/CustomOrdersTableController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_²ú*qGJ¯\æ¿\Õ\ä“',_binary '-.\îBJda¹ýž„Q§Ì¶ö“(\'&wˆ\Ä\å,\Ë\É','',0,'?'),(_binary 'iy²™‘tC\îñ(³\r†z','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-background.php',0,_binary 'D\ë6[ªn®9ûW\â4E3e\Z',_binary 'D\ë6[ªn®9ûW\â4E3e\Z',_binary '®K…A\â-÷‹\Ç\Ê\ïo¥#,ö„h¶\Ð~SWc~;4t','',0,'?'),(_binary 'i€rE	jWGC™”®\n0F','wp-content/themes/flatsome/inc/extensions/flatsome-cart-refresh/flatsome-cart-refresh.php',0,_binary '\Ñ%&(\ãv±¶IDL\Þ\Ñ',_binary '\Ñ%&(\ãv±¶IDL\Þ\Ñ',_binary 'wR>Ë“J÷9ŸX3´(ª÷J@K\ÒDñŽJ9T','',0,'?'),(_binary 'i117Œ’yTü+mNò','wp-content/plugins/ti-woocommerce-wishlist/assets/img/chevron_icon@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\Õ\ËLA¬L‘•7zƒx\âp”',_binary 'e‘W?§AÒ§¥\ÍÁx$‘kGm÷|q\ÚÄ²yþ\ïP\Ý','',0,'?'),(_binary 'i„¯\ÜÍœŸg5\ïþ<\Ú\ê\Ì','wp-content/themes/flatsome/woocommerce/cart/cart-shipping.php',0,_binary '¾c²£\å¥?>˜SL',_binary '¾c²£\å¥?>˜SL',_binary 'Þ“Þ‡x\Ã¦\0¾ÐŒU\à„ŽtI)Rod‰\å3kó\'óa','',0,'?'),(_binary 'i¶\ë¶x…ZS[JøW\Ú','wp-content/themes/flatsome/inc/builder/shortcodes/ux_hotspot.php',0,_binary 'GG\à\ß\\!\Ò\ÍA=o=\È',_binary 'GG\à\ß\\!\Ò\ÍA=o=\È',_binary '†\å9e\Ô[´S\äX\èÐ’þ%–\Þóoz™yÿ\Ý#‰#\è¸F','',0,'?'),(_binary 'iŽ\Úq…Ž\Å\ÑxjpR–\Û','wp-content/themes/twentytwenty/template-parts/featured-image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\Ë7„˜\Þk\íŽò ',_binary '„Fš\"\Ý×˜»VX±\Ë\Ð\ÉR\ÙH¿^\Ùv,\"o†œ','',0,'?'),(_binary 'iŸö¤\Ôjº†L3=ûKð','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-all-import/icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ') ‘n‡u]}Od\Ñ\ç\äiR',_binary 'I6,\Ûõ \çœ\"\0¦\Ã\ã\ÖPkÇŠ\0›ò»R\nÇ§õ¸','',0,'?'),(_binary 'i±\ÕÉ˜Hùü­ñ\Ë‹‹','wp-content/themes/flatsome/inc/admin/customizer/customizer-config.php',0,_binary '¤¢\Ç\Ñ?\Å\ír“Þ’“',_binary '¤¢\Ç\Ñ?\Å\ír“Þ’“',_binary '‡\ÑxjB\çD\Ê l\Ü¯\î*Qø:UcWu9È','',0,'?'),(_binary 'i²-ÿ\ÐX±8V[~Eû','wp-admin/css/install-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨¸ù·÷^\Ñ\ÏP!“-–n…l',_binary '|^ráª—ó©Ñ˜D ô£—›^[hÁ5\Ð\Û\åX\Åu','',0,'?'),(_binary 'iÀ\\´¯›=X\ïh$','wp-admin/js/language-chooser.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŸÓ¤\Êku‘lLS©',_binary ' \ãõr4\Ø\é¹ùiÀ‹j¿\"Üˆ‰\Ë\â\Ë6¹\Ì\Ï&','',0,'?'),(_binary 'i\Èj\æ¿!œ&\êRƒ/°*ª','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/js/dismiss-nag.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷2~t	.a\Î\Å*:–³\å',_binary '^±º\ìÆ¡º\Ì©ùN”\ã\Õ\\Ü­žŽGJIÒ¡q','',0,'?'),(_binary 'iÌ§¦_”p†Z9÷\Ìf®\Ø','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/stock-indicator/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b.\á2»®\ÇùôPL\Éx',_binary 'ú¾;X\Õzº\Ó)Ò·4þ\'\ë\Æ\í\ã_\ëó¢É¬\ãø4c','',0,'?'),(_binary 'i\Ò-¸x\àbÒš>@t\ÚJ\"','wp-content/plugins/woocommerce-multilingual/res/js/wcml-setup.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÜE®V¥`\ë:¼µ-dÃ†Z\á',_binary '\ÅmÓ(¤™®\êj)g\Ý\ébŠü…–\ÂO\ånSc±\É\Æm¢g','',0,'?'),(_binary 'i\ÔU\\n;Á°\ìJð…ý','wp-content/plugins/woocommerce/includes/class-wc-https.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'aÁ\Ýd\Êôw¤6…	\Ãtú',_binary 's¿œ\Ê<üò¥E\ìX\"dˆUCÿR9A\ï¢\ÅH_\"-r—L9','',0,'?'),(_binary 'i\ÖAa¦b¡b’\î¦BÅ­d','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-metadata/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\è[[ó¨øbª\å,šÂ­”\î\0',_binary '‰†Ë¶hXž’c\ß(«g/[õ0½Fr?ÿÅ¢9','',0,'?'),(_binary 'iÖ§\ì`\0¶\Ñ\ß\Ø\"Í¶ª˜)','wp-content/themes/flatsome/inc/admin/envato_setup/importer/envato-content-import.php',0,_binary 'h\ê(\àÌ¶†\ä\Óq\îªÃ£\î',_binary 'h\ê(\àÌ¶†\ä\Óq\îªÃ£\î',_binary '&\ëg›\Û<Šª# §t˜¾ÂŠ	¿46\Éf6ð*Å·{\Ò3I\ê','',0,'?'),(_binary 'i\Ýo\æ¶6\Ë\Õ\\0Œ\äDˆ','wp-content/plugins/nextend-facebook-connect/NSL/Persistent/Storage/Transient.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$²¦©\ëš\å(\ËH\î',_binary '\Ú\ëp\äa¯ƒ½l_ÁR£â½£Ç„º	y!wB$¹','',0,'?'),(_binary 'i\ák\ìñ­½Cñ\íT,\ì','wp-content/plugins/wordfence/lib/wfIPWhitelist.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2¥h‰\Û2aE\Ò™0',_binary '©D\ê:\ä]è¸z°\Ù\Ð\Âýw%[‹j\Ìo†\Ð\ÝûŽX`\×û','',0,'?'),(_binary 'iç“ƒ\â\Ð4\Å\Ø%™\Îñ>’','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ß\Ò+ør\"`lÒ®ú\Õ\Þvv',_binary '#5}Í	ó\\fŒ\ÞW–¶¼Ä°\Ý\ï~C\Ñ`¥‡Où\ë”c,€','',0,'?'),(_binary 'i\ïÁy·¾fúdQ\ÂnœU','wp-content/plugins/woocommerce/src/Admin/API/Orders.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ò‰\Å\\¬³ev\'eò½¤',_binary 'Ï¹«\Û)qz]3øÿÄ¿fI¾òK=is¯\éiÿ‰õ\æ\Z','',0,'?'),(_binary 'iû³ý°þi–\Ë³A×ˆC','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/loader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´\ÖG1KÇ ´˜™#£l\ï',_binary '\ÕY\0(T&(\0|¹·s;.³\Î1n±1\è´–Q¨SS‹','',0,'?'),(_binary 'iÿ½\'†\ÖPFT—}aL','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/order-summary-coupon-form-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ù€&2x\Ú\Í;CV­\Ùqw>\Í',_binary 'ÿ\îˆ\ê\æTe=¨£\Õ\r&÷\\=”(W½@š˜mc*4È¶G\ä','',0,'?'),(_binary 'j\äÃŸ\íûr’³\êUôü³','wp-content/themes/flatsome/woocommerce/notices/success.php',0,_binary '\0Uµpº”)\ï3\n\Ý\â\â',_binary '\0Uµpº”)\ï3\n\Ý\â\â',_binary '?\Í\Z‘ÂŸ^¼3Y>\ÚxN\Ù.x”>EfØ¦®-\0Y\Ù','',0,'?'),(_binary 'j\r\àijL\â9#\æ6M','wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src/Utilities/ArrayIntersector.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µcû\'¢Š‹wÿ¢e‡\ç',_binary '‘Ÿ•n^ö©\Ó$Wbø£¯øÈ¿pVkÁ\áP6¤nöúQDi','',0,'?'),(_binary 'jJ\Ûæ†§\æQ†\Â&†²\Î','wp-content/plugins/woocommerce/legacy/js/select2/select2.full.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©S#\ËG`\0\î×¢Rxmùc',_binary 'šI\ä ;QYk\é^P“&~õ™ü¬\Ó\ÙÉ®?©W¢\Â','',0,'?'),(_binary 'j&ºV1™¬®6“4ª¯\ë\â','wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾\í\ér‰Á9 #\Ó{…',_binary 'ï¾±\Ï\Ün—Ñ¿¹0c~Nüÿr\æñAuóg~Î”\Î\àI','',0,'?'),(_binary 'j3\âë³\ï7¥w¿þg\Ðr4','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/notices/Hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\åY¬„‹Œ~g«Ö‚ÿ\\È¨<',_binary '\'¬\ÌÆª\å®\Ù\îòý·Zv§µÉ´W‹o-	^zÚœ','',0,'?'),(_binary 'j3\ïlµ`°\ÕB$ù\Ô	\Çö\n','wp-content/plugins/woocommerce/assets/images/onboarding/paystack.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±\0xþX¯\ì\è\â[~\Í\Ð\Ù\Õ',_binary '½–‹\ÑqS¨b0–/\Îû\Îd\Ø¿0C–l‚Šd¹.\Ó','',0,'?'),(_binary 'j;¡\Ç_§=\Ø\Zü“˜','wp-includes/blocks/group/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'š\â!Ž¤6SHp1h}G*\'',_binary '˜í‹ž¡0x£\Ø{ü\Æ\âI¦<\Õß¥«C\ÅB[xR\Äd\ä¦','',0,'?'),(_binary 'j>e+|~^\Ó\Æ}»B¢!i','wp-content/themes/flatsome/assets/img/payment-icons/icon-bitcoin.svg.php',0,_binary 'ˆ!€ü\ÝB\"s¦\Í0\Î\ç_56',_binary 'ˆ!€ü\ÝB\"s¦\Í0\Î\ç_56',_binary 'aº\ZZLAD^SxJU(>…5û.$Q«3WYTúý ','',0,'?'),(_binary 'jAq-_²\îˆ«ó¥°[','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-details/test/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ôþ²Za]§\0\Ô\ì$ò8‹',_binary 'ˆ}\È\Ê\Ó£÷W\\\Ïó\"\"\ê,úõ\Ã<¾·“â¤¸\é\Ø','',0,'?'),(_binary 'jA¡-ƒ˜\ìñR#2JZx','wp-content/themes/flatsome/inc/admin/customizer/img/product-swatches-stacked.svg',0,_binary 'ýÞŸ\é‘\Ósƒô^k½\0OiA',_binary 'ýÞŸ\é‘\Ósƒô^k½\0OiA',_binary 'ó°¦‰!! \ã>§\Zc\æ¤cx.{\Ï)#ò\Â-&\ß\Íb\èM','',0,'?'),(_binary 'jQ\å\èô\Êm\ç¿Ô¥°’´','wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/previews/cap.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.#5&op¢%ø=¯º',_binary '\0Ìº\æZ§¬±—ô\É\ç\Ôu|\0ƒk\ß\Ë\Ä\Ì:·¤','',0,'?'),(_binary 'jQûõ—e÷Šø;\âe','wp-includes/css/wp-pointer-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾>\r¿ÿ@\çoª\Ç4¨±R',_binary 'H×£²\Ìm|oC4\ï¿ùU\\;uPô6¬uœ0²ù\n°\Äl','',0,'?'),(_binary 'j[Ç£H\'†\Ç!›% @\Æ','wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-plugin-subpanel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J4Š,]:ž(Š\ã^Ë«A',_binary 'þ»ó\Íbþ]>ŽÕ\â°÷ñ\ì“\Ðó“V\rTò\ëw','',0,'?'),(_binary 'ja¼.½:×²A¤.R›W','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-ajax-layered-nav-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÉŒ€Ë”\Ëóiñhy_º',_binary '6KMW·;q\ä¡\É\î)¯Úµ\Â\êª¬´u`þ\Ä\è¿ý','',0,'?'),(_binary 'jf5\á±+\n8K|ñv¤©','wp-content/plugins/woocommerce/includes/integrations/maxmind-geolocation/class-wc-integration-maxmind-geolocation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2p.t¥\rK®&g Ñ¯\Â6',_binary '¥\çe¥@9‰–o\ÅJ™#\Ìcœÿ»b•\ä9\\[òcŽ@A','',0,'?'),(_binary 'jiw—\ÌÖ —\ã( Š…q’','wp-content/plugins/woocommerce-multilingual/compatibility/res/js/wcml-members.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æ\êù @B(² ‰TW\Ã8ö',_binary '§,jEJD(¬‹\é¡Úˆ\ß\ÜÛ½c…\Òù¿·rkÏ·I','',0,'?'),(_binary 'jiš»T“…ž¥	\Ñ','wp-content/plugins/ti-woocommerce-wishlist/views/section-field-style.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y¶ †EXJyh8q–‚U¥',_binary 'Cw}\Ä!6µ†³¨[Qk©\ëIó3\Æ\Ò\0Šó=\ÝÚ®\á','',0,'?'),(_binary 'jmE¤\ÑAX\Ýuw›>Ü†','wp-admin/css/colors/ectoplasm/colors-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\ì`8±‚…FEÖ†{2',_binary 'S2O\Â\îƒNË”\ÆÜŠn\Ý$ò¼a÷*±\á\î¿\áš','',0,'?'),(_binary 'jt¼\ÙZ\á\êÜ¿\î,‡µ','wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xIIzQXKMny.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rš¼\ÂøÁa©a\å\îi',_binary '{J®L \Ù\ßÍ»&\Õñ{©½{¢\ÌT:š¥£\Â\ã‡B','',0,'?'),(_binary 'jyH¨(aZ—\\','wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-version-selector.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×­¥AJ$\í‰ã§¤\Ð\â¬:',_binary 'q9Mß¨¿¿€f\é\ÈW¸N\áö\ÃøŸñ\Ï=j3\éŸõ9•\È','',0,'?'),(_binary 'j~I{ƒÀLb\ÃBkò,ö','wp-content/themes/flatsome/inc/admin/customizer/img/product-page-title-featured.svg',0,_binary '\\.\ØxÿU }KXøÀ\r',_binary '\\.\ØxÿU }KXøÀ\r',_binary 'L\ÂRÑ­¤8œ‹*vOnD“ME§™>\èÀ\Ú	\Ø/¼¬4ú','',0,'?'),(_binary 'jä±‹¹¿\áð%ˆ\Ý\Ã]€','wp-includes/class-wp-xmlrpc-server.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•\à\Êk¦ù¨!¸†?“)',_binary 'Š»‹¹\Zý’JtV£MŸ6#\ÙtG\Õ7ž*ùT`	òxŠ','',0,'?'),(_binary 'j†_m\ÚEQ±,£¶k\Ç','wp-content/themes/twentytwenty/template-parts/entry-author-bio.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¶)E˜\çË®%hÐ\à\Í\Ó',_binary 'R\ï¬\îžò\Í\ã{«ÁXùg§\ÈÉû1T~í¨˜\ß\Ü=','',0,'?'),(_binary 'jŠ´‰«pø\0Z\Íò™','wp-content/plugins/wordfence/modules/login-security/views/email/login-verification.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\ÊZ¾xuµt´\nµµxô',_binary '\Ú\Âp!Å—$–­ˆ”\å¼<\á#|j\Ý\ßf#¡-z\éˆ','',0,'?'),(_binary 'jŒ\Õiò\Í\ä\â¡fê”’B\Ûû','wp-content/plugins/woocommerce/includes/class-wc-datetime.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æ·\å¸v\×)‚\ë\Ó\Ú&\å±|',_binary 'ŽZt†\ä!\Í¶/\È\âv7€ú\è#\èô‹¯‰›—o®','',0,'?'),(_binary 'j¯\Ò)nƒQ8Þ®\á¬DŒ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"¯t0\Þ,06ö¬‘<¹û',_binary '\ÔQ#f²º£9\ë‡;©8Ž\Ù*B3ºWõao3Fc\ì','',0,'?'),(_binary 'j—£\Éÿ5F+¸¯\ío','wp-includes/images/crystal/interactive.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯R\Ïm`ò\íº`™9§\æ',_binary '$­Áöë©˜<x1²\éÕ“»\íIR\ï›V-VZ\\jg.‡þˆ','',0,'?'),(_binary 'jš\Ööœ“´<hx\ì%I','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-uk.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰L\éø\Ì	¤MóDk\0ww',_binary '«¾Ý±~h»\ì5f`2\Ý.\í®*\Û\êq§®m—”-b‘\ì','',0,'?'),(_binary 'j¢tl\ël&H‘N(\Ø54','wp-content/themes/twentytwentyone/assets/css/ie.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4>nk¤\á\ÔþB”’· ',_binary '\×^\\h 2™\×U‰us\\ÖŽ\\ISe÷Û°ñö|Ž\é','',0,'?'),(_binary 'j§m\Ã*Ž[g+HFJ¯','wp-content/plugins/woocommerce/templates/checkout/form-pay.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£\Ôu\ÈX\Ç~ž%ó\Úˆ',_binary 'Qøþÿõ÷B\ÜóDKNT5g·Žya](\è\ìh','',0,'?'),(_binary 'jª?q8D\Út\Öeþú\Zªo','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Õ{ü’F‹‰\ç¹Á\Ês',_binary '\Ö\æC\â—f\é½j¹I\0óQ¦»önmþJþªI*Á','',0,'?'),(_binary 'j±\êòen¥ú7[¹\ÉkO','wp-content/themes/flatsome/woocommerce/cart/continue-shopping.php',0,_binary '\ã\Ñ$N&1l\åd1\'*\Å\í\Ü:',_binary '\ã\Ñ$N&1l\åd1\'*\Å\í\Ü:',_binary '\Òûo\ß\Îˆ\äÑ­¿®$Û¯Cˆ*,¹ÁJâ¨±ƒ²ªD%\Ó','',0,'?'),(_binary 'j²¦4-«O Õ„‚\êrL\n','wp-content/plugins/wordfence/models/block/wfRateLimit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸À$1\âD€\'w³¬m€½ƒ',_binary 'E&&\n·¯a\Ê\îñ~\Ùb+\Z \Ä\á)j\Çþ\ÞM\ÓpŸ†M‰','',0,'?'),(_binary 'j´gs\Í66\Î$€¤8*¨E\Ù','wp-includes/class-wp-dependency.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\È§—NV}ÿ\äb.\'\é5m',_binary '\Æ[\ë4Mž,\Ü4¤Ü“\Æx¢wBBÌ•=Bg•µ}I\ìl¿','',0,'?'),(_binary 'j¿H®\ìNw#=`\é\Â','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-order.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\È^ñô\Ô÷\Ìv^q?§…\Ç$?',_binary '¸4pœ\Ý;óiõÑ¤I(+>{EJ]\é\âò¿ƒ3}ƒw','',0,'?'),(_binary 'j\È\é‰òAV…‡®ˆ\ÞX','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-taxes/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9Ä’Hõ·1©±0C4\åˆ',_binary '­¦”²‡âˆŠp±ºvdµ\ËbD³5˜R}/•û…rõJ\Ì','',0,'?'),(_binary 'j\Òp\áB\0ù˜Mx\ãü‹Å','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/empty-cart-block/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\Þ\â’h’AŸLAG Ç¤g',_binary '©/¯ý\Õ~ª&{¦Ìš\Ï|cC\çkö×©µ9„P\Õm5ñ','',0,'?'),(_binary 'j\ÚnñŽ.;Gu€%7“w\Ü','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/Transformers/ArrayFlatten.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ê«¶¢\Þ\È(@1öŸ²•f\Ê',_binary '@-R0u²UW>\ÇyªpX¢Z‚,\ÔÎª]kp+2ƒJY','',0,'?'),(_binary 'j\çj\Ë¸\Þ>Œ›]\'ˆù','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-methods-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nS(e\rX®<“¢´(	\"',_binary 'T@øw\Ý\Ý\â›\×À¢k]³)œ)½òö‘“\'ŽS','',0,'?'),(_binary 'jô\r“™=\É8F¨\Ñ<©\Þ&','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/products.svg',0,_binary '\í~™¥\ZG\Ü3‹s\n\Ý',_binary '\í~™¥\ZG\Ü3‹s\n\Ý',_binary 'q{§uºó±o™“1ø }ª¨\0‹[¦R\Z=%€XQþ>','',0,'?'),(_binary 'jøCË¹\ß÷,)À\Ð;c\Ä','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-coupon-form/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÇeÆ´8õ\íM™\ì\Ø4œÁ\Çh',_binary '?Ã¾÷~\ÓðA\Ü+6‘\ÊÛ¶ñY\Ç	#ßš‚^g\ÔT¹˜\à','',0,'?'),(_binary 'jûd\ËCT[^\êˆRž\×ò','wp-includes/block-patterns/query-large-title-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\ç>\Ï\â‰[­M±ù\Î9\í+º',_binary '}³ô™%\Z@qtš D4õ	‰Ïƒ ¦®\àŽñK','',0,'?'),(_binary 'k	»§\Ú<\í™(G\Úwô\Û‚','wp-content/plugins/contact-form-7/modules/number.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿ0‰HU¢Uùž\ìx7\ß',_binary 'ô]¨‰n\ë!Z5¾4\î\æ	‹mdY¦À ð Ö¹”\r','',0,'?'),(_binary 'ku\ÕÁ7†\Õ	y‰ó±<','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/Plugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WnhJ¤4¯/©Žu4\0vob',_binary 'y\àW?G|7³þúHÿ~A<~äª„3\à‰úp·\è’µ','',0,'?'),(_binary 'k‚ˆ¸$6O³\Ò-N…x ','wp-includes/js/tinymce/plugins/charmap/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=B¶ìŸ„‹¶P\rLö\â ',_binary 'Â•ˆx[žG“‹-ó90b.z‘Gõ\Þaz\Ú>\Êr','',0,'?'),(_binary 'k%÷\r0Ì¯·IN6\äD\'¯y','wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\Ä+øÚ©Àd\ÞÝ¬@­óý',_binary 'w bjY…\Ì”SŠÀ¾\Ãtc¸Šƒ š¢I¨óŒdQ','',0,'?'),(_binary 'k\'`=J\â#·v\á\É\ìþ;´','wp-content/plugins/ti-woocommerce-wishlist/public/tinvwl.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ØÃµŸ€œ]*\Êñ\î²,\Û/',_binary '\ÇÀ\êœ\ç ·x+¬§ºtÒˆª5Ÿ\Ð\\u9¡¥','',0,'?'),(_binary 'k/\Ãñ\Ø\Òû\n¥xœ- \â','wp-content/plugins/yith-woocommerce-compare/assets/images/02-bg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ù?b‰y\È\Û\Ñy})\Ñ}¦',_binary 'Í…e€D0X\În€\ài\ípk¾>³”\Ü_\ãžÏ“U','',0,'?'),(_binary 'k2?S+¿‹qd¢\n5v÷','wp-content/themes/flatsome/inc/builder/core/server/helpers/elements.php',0,_binary '\ãAŒ®K\Õ^‘\'ª˜²ú9',_binary '\ãAŒ®K\Õ^‘\'ª˜²ú9',_binary '„+\ío\ÓiFk\ïw÷ª–E²y÷|ž\×5(¿õ\â&&.','',0,'?'),(_binary 'k3„\ß>#9lB8ût','wp-content/plugins/woocommerce/assets/client/admin/chunks/8597.style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gh€Çž\ä<Œ\ÊwAµ\æ',_binary 'Y¼¾<\äjhW¼+žˆtBW$\nðui<·swSš\Ö#','',0,'?'),(_binary 'k6„þ *\â\Ü\ßHœ	ŒuÙ¡','wp-content/plugins/wordfence/lib/dashboard/widget_notifications.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!¦,d\\	º•Ta;ð±õR',_binary '‰\Ú7\è#\È}5V\Ùõ\0\\\æ\Æ\ZO?v?\â\ì\ÂôÀAÔ','',0,'?'),(_binary 'kD¥­VC_$]¤ÜŽ8\"!','wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-json-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ia\Â\Ö$üy“X“3w÷·b',_binary '¦cW*J/sÅ¯·Es—\Õ\Ç\reJ\Ïó…¬\"´\ì\ëš','',0,'?'),(_binary 'kE\ìðn‚fÏ‹ßŸ\È\'qb','wp-includes/blocks/video/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/cO¡ÿA\Ü\Ûÿûq\âña',_binary '\É\Þ\î xÑ­Á\Z¶V\ÇPûžsŽbªsÒ‚\ÄÏ…”l(A','',0,'?'),(_binary 'kIf©\ï£?Wo\ß#Ÿ~B½¡','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypesController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÀggŠ’%Gþ\ÞD‡ó­',_binary 'f*CpS\Ê\ë¯iNŸ\î\'¾Wg\ÒS\ZöGa_’\áe','',0,'?'),(_binary 'kM\Ïü–œ¦š\îÌ™Ysp','wp-admin/credits.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r-\r\Ø¨*\Ñy\ïz\Ü\è',_binary ' 1Š\ìÁ¾7(\Ä6\êoð\éI#bà¤˜«Ëµ\Åg\Ø\n(\ÈY','',0,'?'),(_binary 'kN˜\ë(l«Zf„E\"Lm\É','wp-content/plugins/contact-form-7/wp-contact-form-7.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷ù=¡&Z%XM‚]Œ³*?¢',_binary '‰\å\ÊFŒO4£JN¾Ÿæ’¡\Î\Þ&\'$ü\ÈM¿ûY','',0,'?'),(_binary 'kO\Ðo9˜\nFe‹\ì7„\â\Ù','wp-content/plugins/woocommerce-multilingual/templates/store-urls/edit-base.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘PP$N?D\Ú]ŽPª\ßÿ½',_binary '™}ÁÙ¬¤²%\ïy\ë#ù</Èª¸4h†\Ø\íúšƒp','',0,'?'),(_binary 'kP¥­c\r¡2ôX%ôLA&','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»	m_d&Ôºô—‚0w',_binary '0”ìŠ¿úksÏ†z\Ê@þâ±‡)\Í·T÷+…ôœ\Ú\Ï','',0,'?'),(_binary 'kW:(À\Ç\Ç9ZŽw\ë\Ú4ò','wp-content/plugins/woocommerce-currency-switcher/img/side-switcher.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Õ®À\ãtùNY\0öe®Ÿþ',_binary '\É\æ\ß]\à ó š\Ôm\Ì\à.-\\DR\í|I\á½Û£','',0,'?'),(_binary 'k^^38!-*K„§‚ô\ÏPt','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-wp-share-local-components-setting-hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\ág\ä\Ú\îhX¬hò|I',_binary '+§&)\å!D?ú\ã²i‰Ö¨\r\è\è%¡\ì5x¯IB\×','',0,'?'),(_binary 'kb:\"ýç¬œ·€4v¶3','wp-content/plugins/woocommerce/assets/client/admin/chunks/727.style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%—+eÑ¦¾a\ÕFºŒ\Íü…\â',_binary '8r:aÿ£K\\m!\ÃK	\ê\ÛÖ–¬\æ©#u‹^±g','',0,'?'),(_binary 'kg›ö\'\Ñ\ãžc\á\â}§','wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿«ûhº\ÝVx\Ù\î%$',_binary 'Ÿ‘8y0’NÀô\ÚôO«\Ü]!µ\Í;9az•x¶+','',0,'?'),(_binary 'kg»G-r\ì<\ÓûÖ¾)\Øj','wp-content/plugins/products-compare-for-woocommerce/berocket/libraries/addons/addon_lib.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œ\Ågž9Ò•}c\Ü1k\Â\"',_binary 'IJ–	ö¨\è\'\Þ\×\í!\è*;^É”3qÀi&¼é©°G²P','',0,'?'),(_binary 'km§|÷‡Kma0\í\"*ˆk','wp-admin/js/tags-suggest.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ç!›Í¨\Óp\Ý\ê­\Õd•ùú\Ø',_binary '€r0 \"\Ó\Ël\nòE„Ý´š*¦7‘\ÚvL\ç÷{d','',0,'?'),(_binary 'kpÃ¤n0ÀF£K\í‘GR','wp-content/plugins/yith-woocommerce-wishlist/includes/functions-yith-wcwl.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€iuL\Õ\Ð\àk)ˆùõ\Zd`',_binary 'ŒU+\Ø\Ã\Â}¡ó3Õ>ûò}þgŠXº@\nPý\ÎI‘˜Á?','',0,'?'),(_binary 'kr3mQ‚qfôO3¿_Y˜','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤°\á\ÄY6ýoz\ÞÀ/›C',_binary 'e×º‹k+±oC \è\È\Ç@Æ¹\éOK<\æh¹S_','',0,'?'),(_binary 'ksšk¶\Ø%n\Øo¡| œ\0','wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-webhook.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9†ýsT·©Ü“\Ùwþb.õ¶',_binary '†h\Õ\'\ç\ãð9R’p\é¶\Ð_•\ëI¬º\ÑMN‡¹zK\î·','',0,'?'),(_binary 'kxGhCU«)\à}j·Ò Bñ','wp-content/plugins/wordfence/js/knockout-3.5.1.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(«žaUHwË²I†\ÂO',_binary '\ã³\Ê\ë&$\Ìùz\Ü\è;o,ý\àº4‡ca˜‘¦ÿ','',0,'?'),(_binary 'k}:\Åý\ç\Ø\ßVN\à\å\î\ÈG','wp-content/plugins/wordfence/vendor/composer/ca-bundle/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x>P¨òH\åe6\â[GF\Ð5¯',_binary 'Œðq!Ÿí™\ç\Ê%Þ€PÙ§§ H¹”r´.L‰…~','',0,'?'),(_binary 'k…z<?\ÝüMRý\ÙG\ï\Î','wp-content/plugins/woocommerce/templates/cart/proceed-to-checkout-button.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÉVbsÐ±aV,öBŠDFõ',_binary 'Z,÷“þ½bH­³º’\ä«3ú;\\l°?z#@¬a{Š','',0,'?'),(_binary 'k‰’1¿ûƒ/—Í“Ý%=°','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/MaxMind.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥Dq“d6ž+\"¾U‡ð',_binary 'ÁI¸³¯\äýs;Ö®ž´Ÿ«i“¼“\Ók\ë\ßEŸ@ú)','',0,'?'),(_binary 'k\îb7hýù>‰&\Ü\ÆkŠ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•]_\åŒ#Dö´\0óƒµ\â',_binary '\Z ŸøÛ’ö%§4~N\Ù~Gh!b\Ø­:w‚˜ÉŒ¿™\'','',0,'?'),(_binary 'k—Žz=š\Å\ä‚Gøq…p\Ë','wp-content/plugins/woocommerce-multilingual/templates/status/multi_currencies.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•ž\rI”\'9Jf0®šKÂŽc',_binary 'hø}\ÜNXC^¿(\Êet‚›\'gó9q\\•g0,\Z”¢:\Ò','',0,'?'),(_binary 'k—¢nO.a¾\É[At','wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/class-kirki-modules-webfont-loader.php',0,_binary 'phœ‹!þþùØ£G\Ì,t',_binary 'phœ‹!þþùØ£G\Ì,t',_binary 'Þª¿¨U]rGƒ˜•}:¹m1\è\á°\Õ!«K‚','',0,'?'),(_binary 'kŸ1k\çl\rnl\Ú!‰?\"','wp-content/plugins/woocommerce/src/Internal/Admin/Onboarding/OnboardingIndustries.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\È8:\à\Ó\Ø/Tý\ç	§m',_binary '£,\è\Éx¼\ï\ØùQ\ÞtÆ—\î2öù\Ý\Ûróºõ\Ë\á\rÛ‚','',0,'?'),(_binary 'k©2p\ì\ÈO×ˆ\ëÓŸ„G','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/component-init.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\é\é§	\ÓÚ¾k\Í6÷®ò\Z',_binary 'ü~Œ}ž\Û	¦\ê·Ç¥¼\\\"–\n\Í\ÊmˆŽM»\\ñ\Úem','',0,'?'),(_binary 'kª\Ê\Z\0x/\ÒYÝ¤\î\Ò','wp-content/plugins/wordfence/css/wf-adminbar.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½9±õ’\"·TU%¥\È\ËNŠ~',_binary '˜ð G\\\Õ\ïZA\Þ(rI\ÍT.1\äq<I‡\Ú\r\Ù	\éQ','',0,'?'),(_binary 'k«XÁgO\ç•}r³h\'P\Þ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-methods-block/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^¬~wÎ¾13\ØÆ·Š·˜òR',_binary '¾Á\ìimq”)\nKq<·\ÖÇ“r}Sþ/À½\Þ7‚û','',0,'?'),(_binary 'kµHb\É\Ú)»Ïª‡\ÍjA½','wp-content/plugins/woocommerce-currency-switcher/css/images/ui-bg_flat_75_ffffff_40x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†’\æ\ï\Ýø‚¬¿ñDÃŽ§\ß\ß',_binary '\Îf\ï(¿\ï»æ‚\ÎC,\Z‰j4¨\Ò_ú~\ìþõ=5t\ç5','',0,'?'),(_binary 'kµ\Ð\Åý\Ôòx\á\åEzX¾&','wp-content/themes/flatsome/inc/admin/customizer/img/icon-fill-round.svg',0,_binary 'K/\r)Ym.0Y•jk.f\Æ',_binary 'K/\r)Ym.0Y•jk.f\Æ',_binary '­òb\àØŸŒI’!\Ô\0³\Ö4þIs…²¢¿’~2\ä¥\Ô À','',0,'?'),(_binary 'k¹I=õøru\Ï Þ\Æt\ï','wp-content/plugins/yith-woocommerce-compare/wpml-config.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à+ŽÖ‘À\â\Èýw3\ì',_binary '\é)\n%‹)\0\Ï\å\Ø9WŸQ,«Tü¥eS´:†\âW>C','',0,'?'),(_binary 'k»\îñ\ÙÓ™ºJmv\Î\Ö%+8','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-items-block/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜C\Õ$\á÷†\Çkò',_binary '\ÙÒ¤ýp56G’¹Ç©AQ]3ô‹V\ìƒygùqw\Ñ\Ñ','',0,'?'),(_binary 'k½úBËž\ãb=y†\Ú','wp-includes/user.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†Æ¿`o$\Ó& \0\ÊÜ¿',_binary '1ýýº£3zyƒ²­¶\\½°«\Ïw-Ô€Qy\Ã\ë+Š\ä','',0,'?'),(_binary 'kÂ“»›U/‘^\Þ\î\Þð ','wp-content/plugins/wordfence/lib/rest-api/wfRESTAuthenticationController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z±ÂƒÖŸ0}_\Ù\Ï€',_binary 'Oö+­WEüŽ(\Zvl‘%`”\ÓôˆÂ¢§x¥6¶\Ýn\Ø ','',0,'?'),(_binary 'k\ÌS¦—GA·|Tý–\Ì?\\','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-tm/icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷X2…*\Ù	µ°‚\ÆD—',_binary '\'B\Ã\ZocÍ¢¬«\ÂZ2”y\Ó/n€# \Ða2Ö‚\ßl­','',0,'?'),(_binary 'k\Òq‘\\ª7\ßnüö˜2úG','wp-content/plugins/woocommerce/assets/js/stupidtable/stupidtable.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±ýy¹R\ÐN\Ë5\çH@s',_binary '/BË¸Á§{\ãú–ˆY¥zªPý\ÎõÁkGL‡yom\nH\è','',0,'?'),(_binary 'k\â\'\n+&=¸\Än`ò3Ÿ','wp-includes/js/dist/dom-ready.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\Ü	Ä(\Ó%y\ZLqT',_binary '\ä\Ð\ÜJ†\åþ‰v©\áý—7\ÂF)M\'¬Ñ³\è\ïì·ŒphŠ]','',0,'?'),(_binary 'k\ã§\Ë‡À„‹^m\æ\\‡–”','wp-includes/blocks/navigation-link/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.G¥\Ï\ê;:1RØ¬=}\Ú/',_binary 'œý\Ê]ú«×—\rvd\èÁ=·R>ªo:^\r$œ‡‹§N','',0,'?'),(_binary 'k\æ\ß\Î1]\ë¬µXKP\Û\ï*','wp-content/themes/flatsome/template-parts/header/partials/element-account.php',0,_binary 'F\ímq«8\n¥ýLWm\'eµ',_binary 'F\ímq«8\n¥ýLWm\'eµ',_binary '¹3\ÆvŸ;³\çh}D+˜>r‘ØH\Ümv1b~n\É\â­I+','',0,'?'),(_binary 'k\çx]¡:\âmY»óÊ®	}','wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-zones.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\ëûÚ«°ø+S««Î£\ç',_binary '\rBAŽ5Öœ\È5§‹­†\à1\'(\ã\Ê1v%h','',0,'?'),(_binary 'kç‰»õ\r±S\0RuM	Š','wp-content/themes/flatsome/inc/admin/kirki/modules/css/property/class-kirki-output-property-background-position.php',0,_binary '^\\\ë]½©\Æ\Ï$\Õ\\\Å.\Ø\å',_binary '^\\\ë]½©\Æ\Ï$\Õ\\\Å.\Ø\å',_binary '^Ñ£¨T}Š/&\È\ä§Ó·„Ó˜“E\'_\êjr‹fº=ˆ­þ','',0,'?'),(_binary 'k\ëôJÛ£eÛŸþR<\Õv','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/select2/select2.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\Ë%\â€\Ã\Ü\Ì|=2\Û',_binary '¦z·Cd\å\Åw>R\ß=™û \Üt:dcKgK.XC]Ny','',0,'?'),(_binary 'kõzeN¹R€¶€­M½%K','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/panel/help-tab.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'û=Gu†‚<ž\rV¼i\Þ\Ý\n',_binary '5\Ô\ì %!¾#=R\é\Í\ÐÔ¡µ[NªW\r/ø\Ì¦1ò{º\Ô','',0,'?'),(_binary 'kø1¨¶ò\à:\çŠ\r«)´ò0','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-subtotal/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®‹\É!À€…¶_€ÿ ž…',_binary 'f^d\rõñc9¯´ùµ\Û+«br[\â.ùS50\ß\Ñ$\Í','',0,'?'),(_binary 'l7\íN˜þ<ß³VÊ¦Z','wp-content/themes/twentytwentyone/inc/template-tags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'cž§®H¢¢ò®	j\ì',_binary '\ç\Îqž\Ù3#­»\Õù›žSr\Üc:×¹w¢L¾','',0,'?'),(_binary 'l¾J”Z–}\Ñ‘ð—þ','wp-content/plugins/ti-woocommerce-wishlist/assets/fonts/tinvwl-webfont.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'òRxª\é\ÜF\ßd…³/\ë\ß',_binary '¿÷_Þ¡¿M’\Åe¿Á4\ÐQ†z¦\ìm\ï$\ßÞœ“…','',0,'?'),(_binary 'l=\0<©™WòýÒ¶¹Š§','wp-content/plugins/woocommerce-multilingual/classes/multi-currency/exchange-rate-services/OpenExchangeRates.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½2\Ü\'«\áË¡.«\ß÷',_binary 'K\ã\âþbÁ\Æ\ày$\Ð%¥\Z\å\Þ \Ò|\Ð&eñ›\ÒV÷','',0,'?'),(_binary 'l\àZ\à\ÍK.žVˆÀ&¶h','wp-content/plugins/woocommerce/packages/action-scheduler/lib/cron-expression/CronExpression_DayOfMonthField.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\ÖOüÔ‚b¼t4\Ò\\',_binary '§\åÚ’5fCSQ\0Q†\ê·)=\Zkò$ Ÿ\Æ\0I˜','',0,'?'),(_binary 'l¬\Ý\èg•}‡>s\ì\åú~','wp-content/plugins/woocommerce/assets/client/admin/experimental/index.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5o˜\r¨\Ó||\ÏQG\Å\Ò{',_binary '\'ù÷$õ,b‚¸\Ãd1œ2\'\Öd\èR\è\ãq,$\Ôg9@','',0,'?'),(_binary 'l	¹#£™\Ë\î[R2v','wp-content/plugins/woocommerce/assets/css/admin-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v@7c¦\ÄC¶\êº5<\nYR\è',_binary '¸\Ñ:£z±^\Û\r\È\î\é’kÖ‡€ÐŠÛO\Ë\Ìt€®\êd›\Ç','',0,'?'),(_binary 'l-o\Ù\á^™·\és>?','wp-content/plugins/ti-woocommerce-wishlist/assets/img/select_caret_t.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÍŽ‘„r·i»Ü·\Zi*\ì',_binary '[üJX`Ü‰Iþ¥D¼µ2l\çƒþý\Ã»\Û\Ò/’4²','',0,'?'),(_binary 'l/\n\ÑÔ€°WÁÍ±-c\Ï','wp-includes/widgets/class-wp-widget-recent-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I%*\ÕŠ1¡¿9Ÿðñ',_binary 'u÷¢×›w\ëŸ\îx¡mI\é{‡\Öcºu€ló”²\Å','',0,'?'),(_binary 'l/{¬z×™òiø\ÒM%!','wp-content/themes/flatsome/inc/admin/customizer/img/icon-outline.svg',0,_binary 'Â½?\ÆÁ\r_\Ò!\æOÛ©m3¤',_binary 'Â½?\ÆÁ\r_\Ò!\æOÛ©m3¤',_binary '`I//´U©¨\íÃ»Z[&Üµ\Ê&¥<\Ô\Ú\ÐòC¥T\îI','',0,'?'),(_binary 'l5›†~^š}ÿ~7ý‹M÷','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-line-items-block/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\ç\èa²3”\Å~¨\Ö\ï',_binary '\ØV\íWt\È`A`œ°\ÆPnx]¨\åÑˆ;\Êu\ë™\Ú','',0,'?'),(_binary 'l9\é¹=¯üh\Ç,>\Ù\Ã\ç&','wp-content/plugins/wordfence/lib/wfDiagnostic.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·òX\äôs?\ã\Ù\Í\ÉúËŸñg',_binary '?`ªyþRýÕ¥\×\è`UÊ™´\ÈZÇ†\Þf³™sð\áb\âsOœ','',0,'?'),(_binary 'lA¡›Ž,M¹¢^˜','wp-content/plugins/woocommerce/assets/client/admin/onboarding/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§5&\â\r`uw)\å\éHt&š',_binary '7>K>/\ÔDR@D\ÔbA\Ô\ß\Þ\ç\Ê=¯UW3R?HY#','',0,'?'),(_binary 'lAË¢J|þ\ßþhU)ö\Þ:','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/events.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\ã©\Âòú\É\r\ØVvóþwm•',_binary '©¤\âJÁ¦Ü€{>9¯\ÆkÀ\èG£\×\Ò+\Üõº\Ù\ë','',0,'?'),(_binary 'lHÁ\È²SˆÔ\"Mƒf^','wp-content/themes/flatsome/page-blank.php',0,_binary '½¿¦µ„\ÈÈ˜\Ä\É5B',_binary '½¿¦µ„\ÈÈ˜\Ä\É5B',_binary '’º\êó\ÊV\îˆ8_æ‡‡\ân%*+Õ™\Èú$\Õ\ZI','',0,'?'),(_binary 'lL›k•¦o_¾!cK+\íÿ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-fields-block/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œ\ë™\ç}ƒ\Þz8\ç°uÚ…#Š',_binary '»\ê~\\ò|RP©÷d\è™h¿¶ð‘Lü\æxGN','',0,'?'),(_binary 'lM§ Võ\ï½<}`fy\ÜY\Ï','wp-content/plugins/woocommerce/src/Admin/API/Reports/Variations/Controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\rXW\ÝûöÙ¾\ì=ƒ¾¥\×',_binary '\í] ¸CN\Â33xw¯\"¥>þ\ï÷…QB~øÉ³‹†J','',0,'?'),(_binary 'lZ¿q¡#eS%s˜õ7Y\æ','wp-includes/js/dist/notices.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñ¹ð±š\Âþ9\ã_VÀ4',_binary '\ì\Í\×\Z±©ù¹V\æ÷H€gf¾\ìW\éòXK¿c\Ä‡Š\\2','',0,'?'),(_binary 'l_öA6w }_}ÿû\ã','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/quantity-selector/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ït®º—†B\ÙI\Û×ºû',_binary 'þ³qS\Ñ\íKœÌ¡ç»§\î@ŠÙŠpÇ¡Vû\Üy\Ì\ëP','',0,'?'),(_binary 'la±\ÚÐ»Cg•\rD­\È4','wp-content/plugins/woocommerce-multilingual/classes/Reports/Products/Query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Nƒ\Úñ§ð\ê~Yð>Ð‘ˆ,',_binary 'L6 a\ÌÊ¿—Œ×²¢C\ßd\ÐP;Î¸ú¤‚guÄžý˜ñ','',0,'?'),(_binary 'le\ç³s\ÞƒÏ«¨','wp-content/plugins/woocommerce-multilingual/res/font/otgs-icons.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ã\îKl$\Æ©\Û7<W\ÚN',_binary '\0_a>oQci`\Ý%\ï,Œ\ÄÕ·f\Za`ÆžtD\éB¬#','',0,'?'),(_binary 'lf:RW\ÉZ\ß\ÃQ(H*‘W','wp-content/plugins/woocommerce/src/Admin/API/Reports/Revenue/Query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uUœ\ï­$>ù½à·¬\Óõa\Þ',_binary '\ëŒ8Is\r»N\Üh„¡.\Ñ|]\é$\ãFw þ\Îüè™’L\Ã','',0,'?'),(_binary 'lgc÷n¦ó“g&q<\Ù\n†¶','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/payment-methods/utils.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A%-\ÙK„¼Q…<¨ÀÎ¨',_binary 'Ma\Ì£µ@\ã\"ƒÑe\ì\×}e–‰Nc\â¹l\Ð%','',0,'?'),(_binary 'l€bÁþ¿¡\Ï\Øuÿë°¾','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/channel-selector.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\éa;ñ%‚õ¢\'	\Ñ',_binary '`S×ò|¾\æ³«\Ýö\ã\æ\\ ´ˆ\'4šK~\Ûä‘¬B\ê','',0,'?'),(_binary 'lƒ\ëo+#\í\ÃÔ¤ˆ5£\ç','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-items-block/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Î8\0œ<Íª\Ó\Ø\r‡\ï\ÌÆ¢',_binary '‰\êós­3=\Üq€\\\Ù.\Ç\íöZ†³\Ó	õ®1¶d','',0,'?'),(_binary 'l†ð÷“&B\Û\Õ}/\Ï=ô','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/search-list-control/item.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô›1@L\n\á+\Ìf¨\í',_binary 'º	£‹ŠHO@-Û±\×\ãoü«}	eO…\Ýü™§ý¡—','',0,'?'),(_binary 'lŽ—bÀÉŒ¦r^z\î#','wp-content/themes/twentytwentyone/assets/sass/05-blocks/utilities/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z‚ä»Œ„9\Ã$”C”·A',_binary '#C”¿¯¸?\ì¦=ŒZù\\N-ev\Ö\Z\Å\àw–GU!J€\é\Z','',0,'?'),(_binary 'l˜~iús«Ž©ª™m_û','wp-content/plugins/woocommerce/i18n/states.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\æ9<ºQªà©·\Ó\é\ÕG',_binary '\'\Ä6kgpÀ\ÔwN\Ì|ŒUy\Ø\Ãbi|D„‚C³','',0,'?'),(_binary 'l£\É\Âfˆ-„\çw¼‹K5)˜','wp-content/themes/flatsome/inc/admin/admin-bar.php',0,_binary '¸v±\Þ	ö‡G×Š•´®',_binary '¸v±\Þ	ö‡G×Š•´®',_binary 'ò¿\è^d\Ø;\à3e–1:\Ñ}·\"­\nS\â\ègÔŒ k“\É','',0,'?'),(_binary 'l«\ßûSNVng\à\æ³yŒ<','wp-includes/blocks/image/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ØyôuK\Ã0†@*¤±c',_binary '\ÈC³\ÕÀ\ß[ýp«£]Š\Î\ßOŠy\î¥(Ž(\Ì{ÁY&','',0,'?'),(_binary 'l¸€_¥#\ÔoÝ©D×÷','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-deprecated-hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œ\à…ro\Ö\"0ªw˜@',_binary '/\Þ\ê7Ì®f«“¢\ÆW¥%¥Ry{~L¦ŽQOdxeH','',0,'?'),(_binary 'l¹\Ìö<»ô#\Ýqˆ,\æ¡','wp-includes/blocks/archives/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'š£Û¹\n\å\'}Š\ÑlñU\ÜM\0',_binary 'pJcùB¬¬¶`oB9\Í«·µŒŸ¯\Z…:\Ò\Ìy®®','',0,'?'),(_binary 'lºµó6\'\È\Ûa2 )K\Ð\Ä','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-extra-product-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¶§\ÜIv¾\ï~—&G\Í*»K',_binary '\çŸk¢š`¸¥n6T\ÆÜ«\Ö)%B¨š‡\ÚÍ™]D\êœ','',0,'?'),(_binary 'lºó-*¾@\×iyG\×','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sku/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ðX“\ÔPH\\-¹\Ë$Eb8H',_binary '«§}N\Æ\n4\rÝ¥ _ó&pMP\îq„\èA+\Ð³\Ó*g','',0,'?'),(_binary 'l\Î`\ÌF‰™\ãb¢M¼7','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'üÛš£üý„\ë‚U~\Û',_binary 'ž.>-QŠ•‚û\Ë\Ì\Âp%ü\Î±\Ü\Ù=™Ñ”>X','',0,'?'),(_binary 'l\Ý€14†¯&y\íaûƒW','wp-includes/css/dist/customize-widgets/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r¤—W\Ó\×\á\Ò\è¾qJG ',_binary '­6\íÏ³sL\ÜF\Ða\Èn\à•\Ä\Ä(=†\",ƒ\Ã—ˆ\Ã{','',0,'?'),(_binary 'l\àF«q\Òß‘³\é\Ã^p4´°','wp-content/plugins/woocommerce/assets/client/admin/chunks/6824.style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ìA,\Ðø6,uû\Ó7u \æ',_binary '©\è\çd4¨\"q|-þ+ò{±\Íh5‘\Ê\Ñ\í\Ã\ËÖ','',0,'?'),(_binary 'l\á\ÊNfx¼‹\Ü>\\\Ð\ê\×\Ê','wp-content/plugins/woocommerce/includes/wccom-site/class-wc-wccom-site-installer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X%œº,?<J•¶av9\á',_binary '@^(^«%¤8õ\Ãsg\é\å¾òIx-#\á¦6Ù´5\Íð','',0,'?'),(_binary 'l\âÅÑ‘\íp´gò²S™|','wp-content/themes/twentytwentyone/assets/sass/05-blocks/query-loop/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘v¾=åœ­ 6PŽ',_binary '¨\ÜH\àv±‹O#»^[f\é\Ð8¼\å:\Î\Þ» M3ò¯M„','',0,'?'),(_binary 'l\è\ÎaýBv‰t=!Ä½K','wp-content/themes/flatsome/assets/libs/ie-flexibility.js',0,_binary '\ãKÂ²¸è–‹¼2=l‘*Œb',_binary '\ãKÂ²¸è–‹¼2=l‘*Œb',_binary '°{Æˆ\à…Ï’kž7\Ý(	ž\Õþ\èls¼˜“\Ì\"÷/n','',0,'?'),(_binary 'lñ´j½Õ¨ôP\Ø~fqöý(','wp-content/plugins/woocommerce/packages/action-scheduler/classes/migration/Config.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$-0ò³½ÏŸ´j\ì\Å',_binary '3“7¶o\\¦27ª	\"\àd–\Û/\rþ\æ¶Aú\Þ\\8&ýA','',0,'?'),(_binary 'm)\r¼…\äôaHš­E±','wp-includes/blocks/social-links/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\'[\ÍdQŠ\rh‡«\"¿',_binary '¯\ß1S§\Ñ`¥<š’\ä\Ã7u\×\Z›@|v\ßq\á_\ë±','',0,'?'),(_binary 'm\né©¶­W±X\É\×?','wp-content/plugins/woocommerce/assets/js/frontend/tokenization-form.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ì¿Ç…t\ë60±[¦¦9¥\'…',_binary '}wpÿ\îƒ{¥7û3\æcY\éˆù¦\å\Ð@S‚\á\Ø\à\ËI','',0,'?'),(_binary 'mD’\ÆTŽms‘·òA©}','wp-includes/certificates/ca-bundle.crt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UC%PÊ…\êˆ$À\ËpöŸ¥',_binary '\à·<eN¬¢§fÀFKþFƒ¸öoò-¿Yö\ì\Ö\ÓSlUø','',0,'?'),(_binary 'mµ»‡—®C\Ê+‰ø)\èT¹','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/shipping/utils.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\É\Ù\êÕ¶/°[R«4¹…',_binary '¯\0}Â¹Ù—\æ[\\}\ãü¤Ÿ®tÈ®A™0„ú$;','',0,'?'),(_binary 'mº©³ù]›\Þ¥\Æ\ÝU|x','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/FailRuleProcessor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<Q÷Žy‚6Ž¦¨1yw\ì\Z',_binary '‘v™(Œü…2g\ÖN«ób\0³D\'\æ”# \Õ\Üm\å','',0,'?'),(_binary 'm\îÝ‡_¤\Öº\Ï\ÑIò','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-plugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰[Ò’XE¾já¿€Ý„f',_binary '…Š9$\ÙÞ¹ð\Ð/\æ`Qa\\G8¤§”Î‹p¥“º\ï','',0,'?'),(_binary 'm\åª<\ÙÛ ‘Q³qp@','wp-content/plugins/woocommerce/assets/js/select2/select2.full.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©S#\ËG`\0\î×¢Rxmùc',_binary 'šI\ä ;QYk\é^P“&~õ™ü¬\Ó\ÙÉ®?©W¢\Â','',0,'?'),(_binary 'm\Í$Ÿ\Ãc\ÕÁˆ‰\n\ë “','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-payment-block/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñ%š±„T7\nD&\Þ\Î',_binary 'ý\á\Æ\\=\ß\ÄU{\Î<\ÏiF	c\Ïz00\×wt\Ü\ç\Þ\Ö]|\É','',0,'?'),(_binary 'm%\Ï)\ÐT\Éo\îPƒŸfy\Ó','wp-content/themes/flatsome/inc/functions/function-update.php',0,_binary '³‡\Ä+]ª@L\Öü0º\Í',_binary '³‡\Ä+]ª@L\Öü0º\Í',_binary '“\Öd\Æ\\z*«^²<\Öýy\Ä\Ð8°ÿfY_\r™˜ðB','',0,'?'),(_binary 'm9cø\Ô\îô\ço6\"@C©','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/AttributeFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\è¹ú›)gú\à§þ5\ï',_binary '¬pˆ\ÆçGÀŒqe\åN¯ÁH\ç»4‡á¨£','',0,'?'),(_binary 'm9n<û¡:.®\Ø\ìž%õ‡','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/access/icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C¾£‰\\=€y¡\Z\êRq˜œv',_binary '\Âî¦ªR\\5>ð€¡;n“\ÙÆ¦\ãRsGk/Õ—4šóv','',0,'?'),(_binary 'm:ù#JQ\Ó_²(\ìsœS','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-subtotal/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(ŒÄ«[k\×m8\ç±J\Þ\à(',_binary 'lKŒÑŒV4A{©\Ý¾A^~‰2—XE\çý}–¤\å\Å','',0,'?'),(_binary 'm?z\î…#Bò6+#=«2¾','wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yith-gutenberg.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ðC#E\Ëûxá‡¢ˆ`1',_binary '-ƒ[!\Ø¤»µŒX\Ï\Û*-ñˆ¬ùcdcMÃ‚°g¨','',0,'?'),(_binary 'mA\Âp\ä\×	1—\ÞGõU/','wp-content/plugins/wordfence/modules/login-security/views/options/option-ip-source.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ø×‹¿Po\Ëv·”`­',_binary 'ñZu®E-Á-ßˆ‰«‚ªþŒü¼SÿC‘\Ëdi5$r','',0,'?'),(_binary 'mA\çðY·\à\ÊÀ®Rb|\ÞSŽ','wp-includes/ms-default-constants.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\Û~\è8IAAÔ¶±žh› ',_binary '\Ðüò{\ßû XNZ\Ï\0K,4ö€8’ªoŒ3[1\äc™«\Î','',0,'?'),(_binary 'mEš¯ñö¾º\\\ç)\Þ\Øo\Ô','wp-includes/js/jquery/ui/spinner.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'šm\é¤Ul©?ˆh5ž',_binary '±U,ð\ß{‡Oˆ3­(\ï>¸\ÕhH´\Ìb†7ogy\Ã5','',0,'?'),(_binary 'mGÍƒ´ù®sqv~	i','wp-content/plugins/woocommerce/legacy/js/admin/meta-boxes-product-variation.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\éGu…Á¹\Ô:p\ä¯Zf/',_binary '®C¹\È\ÓöHS@qÃ†±9}”nGc-®\é#¡Y8R2‡','',0,'?'),(_binary 'mJŸG@z\'\éCŽ;¶Qs!','wp-content/themes/twentytwentytwo/inc/patterns/page-about-simple-dark.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gÔ¢,.\ì³ÌˆH·D\r[‘',_binary '¢@\â@2\Ðo0|Š†\Ä[€µüwc§\ÔWCKF¤\'\ï','',0,'?'),(_binary 'mLü_¤ðn\Ä‡¨nú','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-upgrade.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\0dŽ·N\æ\ËZ¢sR»',_binary '<lt‹®\ã\ãaV)(3™Ž	¾?¥\í¬s!“ù\r^o(…\Ê','',0,'?'),(_binary 'mRj˜9\ØpDX¤w´ŽÓ¼','wp-content/plugins/woocommerce/src/Utilities/DatabaseUtil.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	„¡Q\ã`ó_\0` ©\å',_binary 'Vªš\ÐE½l§^–=6¦ú+\Óög>{1Ü§þ~.m’','',0,'?'),(_binary 'mY·Á“š}É½\ë…?','wp-includes/js/jquery/jquery.ui.touch-punch.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\Èm\ÄQ4Öƒ\ãˆ]±',_binary 'k>jT@©—Žz\Ì\Ã\È¯\êÕœ.OB\×Àj\É0\'ô\êt','',0,'?'),(_binary 'm[\Ô*¯udà©„6+g\Ç','wp-content/plugins/woocommerce/src/Admin/PluginsHelper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Gˆ–¼s<’¼`\Ò\\A§]_',_binary '\âjJ9\Õ_8\ÜX\ÅE·G\æS7\ï\r–™-Ž?š:ð¬C','',0,'?'),(_binary 'm_¦AIô\Ç¬}ˆÎ‘ò\Ø','wp-content/plugins/woocommerce-multilingual/res/images/image_watermark.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~ô|\0&\Ë:¬\rðrû',_binary '\áõ\ãIò÷k^˜t˜y©A\ËB9»‡UoM‰¥Ô€\Å','',0,'?'),(_binary 'mcˆÛ²\Ê[kò´ƒMjüB}','wp-content/plugins/woocommerce-multilingual/vendor/composer/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•]_\åŒ#Dö´\0óƒµ\â',_binary '\Z ŸøÛ’ö%§4~N\Ù~Gh!b\Ø­:w‚˜ÉŒ¿™\'','',0,'?'),(_binary 'md\Ü_w\'¢\0dù\ç(','wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/beta-features-tracking-modal.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•?\ì{;`+ni¦Á™©',_binary 't¢\ìñ=\Ó\ÎVvKô\éK0n\Ú{O–d@\ê·g\édEgõ(','',0,'?'),(_binary 'mhQ†Š²·‡D?»f“M','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/subtotal/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ïy9\ãO17õr£§þh¯ó',_binary 'i\Ó\ÖŠ/p“\rBP<	Â§>¹\Âñv\Õ\èAÓ¬}\Èp','',0,'?'),(_binary 'mmó#=\\(º¸Á{¡rG','wp-content/plugins/yith-woocommerce-compare/assets/images/socials/skype.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“pøª3u\\·	§s©§°',_binary 'ŒÔµ3â”‚,\â\\±2\Ëô\\¯C\ÐW\Ü4>œ\×\î$[','',0,'?'),(_binary 'mqr‹\à6i*v#[E3oJ','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/simple-left.svg',0,_binary 'pŠLTK\È4ta.\×\Ø\Ä',_binary 'pŠLTK\È4ta.\×\Ø\Ä',_binary '\0¥­7Ü¤E\Ìÿ€\Ïò,z¶f\Äh6	\Ü\ï©u\Ë¼\è','',0,'?'),(_binary 'mr/\å¼3­\å(ú¨B¥\ë','wp-content/plugins/woocommerce-multilingual/templates/setup/notice.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4˜»\ì¢ý*×†pþ',_binary ';\Ãn\È2ø\"yÜ„\r·\Ú	ŒµÉ¡˜h\\s•«\n¯\ëò}Y\ë','',0,'?'),(_binary 'm}u¢\Ðy\Ô$Eh\Å\ã','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/css/mail.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&h¥ÀSö\ÑÚ²\å¢m¼}',_binary '5Ž;ò\Í3”¨´&\nŽô5&1\î¶;\ê«Ú¦\ï\"\çø','',0,'?'),(_binary 'm€Å§­\ËX\ÜMW\ËÃ­\Ï@','wp-content/plugins/ti-woocommerce-wishlist/integrations/wp-rocket.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4Eš\"xB+C\Çx˜6r\Ì',_binary '¯3“{	)4\ì-E*\êð4ì™²DŽŸ\ïH¸…Öñ','',0,'?'),(_binary 'm„X?‰¨=öD\â7¥B®','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-contact-information-block/login-prompt.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Å¸‡XþTs´+Á\Î\Ïp',_binary '\Ýÿ\ì\Ó\éw\êÝ“\ÒM™\Ég¿´â½½yì’“\èø˜%l','',0,'?'),(_binary 'mˆº-\Zm1½¥\Èû£w\Ç\ï','wp-includes/js/jquery/ui/sortable.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œ*\Îb­`þ\ÛRƒð¯¸¤«',_binary '‹f)\Ñ\ï\×_\ç\îª#²ê›£OL\Ï?\r\r}N\ë;qqc','',0,'?'),(_binary 'm‘hz ¤›@š¾_l“','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/acfml/icon-256x256.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tú×ª\É8l\êIzºóL‰',_binary 'PÕ²_{!nT\ë\Î:\Ó³}6o\Ú‘ Ë•=\È=_œ˜§','',0,'?'),(_binary 'm Á5˜º§~}\Êö­a\Ð','wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-progress.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3€#\áYAÞ¿`\ÖiOF	|',_binary '·©kÚúf\×y•Ÿw]VL ³%NG¾	„ý \Æ\ÔL\å','',0,'?'),(_binary 'm \ï\î\ëÁË‘\ÂI\ÉóEµ\Õ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/payment-methods/use-payment-method-dispatchers.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'szöÐŠøiVª\Â\×v\â',_binary '‚’mZª£cVni{œ\'¨­w›Q\Ñõ’\â\îÁŠ2W{]','',0,'?'),(_binary 'm´·L%AöML><]','wp-content/plugins/woocommerce/includes/class-wc-frontend-scripts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å5M \äbŠ¾	\Èü`\0\Ö',_binary 'jwÓœ›™g\æg\Ì\ç\â(ó©vÔ³\Øški\Û\à\á\í2P','',0,'?'),(_binary 'mµ¹˜;Õ­\Î\êr1ö\ë‚','wp-content/themes/twentytwentytwo/inc/patterns/header-image-background.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z87˜|:qE±T\Å\Úk\Þ',_binary '$‰N«\Ìúñ	ÐŸ_ó\Ú\ï40DõW-pAœZ','',0,'?'),(_binary 'm»»\Ö\Ä\à\ï}\ß|üµ\í—','wp-content/plugins/woocommerce/includes/wc-coupon-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	Â@,\æŽ>¼ûe˜8a\Ñ',_binary '! ²nµQç”þmÃƒÏ°5\éò´…|\Ò:\Ç%Íˆ\á¢','',0,'?'),(_binary 'm\Ä\è\Ñ\á;+v³>\\\ì\ÓN','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/radio-control/types.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#sU?J‡\à%/%\ì©z',_binary '<s‡v™s\"£\îöASv˜=–p4U¢Áa7\n¯','',0,'?'),(_binary 'm\Ó»\åŠÁûþ\Ît,^{','wp-content/plugins/woocommerce/includes/export/class-wc-product-csv-exporter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼P^Ú¡mQNŒ \éy\Ý\Þ',_binary 'c/SÞµ+®£@Ã˜=~WOuŸ!Bñ™Š\ÆZQ\Åuý©a6\Ä','',0,'?'),(_binary 'm×‚\è\íGÁ+\Û|\ì\Íß–','wp-content/plugins/woocommerce/assets/js/jquery-cookie/jquery.cookie.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Qg½9–³ò\ÖÀŽm\ïŽhý',_binary '\ï~&\Ûa¯T›~\Þú\Ù\Û_×±¥\ÊÀoÞ¼IWÚŠ8','',0,'?'),(_binary 'm\ÝF¿÷5\ç\å÷ò','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŠÍ…72f¹>HõŒS-:',_binary '\ÔtX!ˆÉ¿hi\Êj4=F~\Ú)d2ð\ïô‰®–Ÿ','',0,'?'),(_binary 'm\ßÑ©µ®Hù]\É:¿\Ë\Ä9\Ä','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/single-product/save.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ºü8\r\å>8.µ4&ƒq\0',_binary '\Ø\Þ\êfªz\Õu>\\ø;#£f\ÑTù¿¢ ¾9h\×\Ü5','',0,'?'),(_binary 'mâ‹´\0t¬„ú®\Ê\Û\ÔyF','wp-content/plugins/woocommerce/packages/action-scheduler/classes/data-stores/ActionScheduler_HybridStore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'øH½b¯\Ë>¿ªê¶½<',_binary '«œ$iV\ã±\áª\È\åÂ:|‹\Òú%9\\\Í\Ø\ÉI9\ë','',0,'?'),(_binary 'm\ìSU)Yk6¡\Ú	Ì·','wp-content/plugins/woocommerce/includes/data-stores/class-wc-product-variation-data-store-cpt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Û\Õõ$0dÇ¿a°7\n\é',_binary '\×1\Ý:©ŸÇ«KÀ”\Ób¬joŒ¦Í…j\Æ™\ØfÛ†ô\á¤','',0,'?'),(_binary 'mó2F%; É“@ž\ë{ž?‘','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/shipping/use-select-shipping-rate.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\á·\íw÷n¿‚tùö£',_binary '\Ýþ@}\Ù\Û÷3ÀU\äC´þe½\×\ë‘øJW«a‘\ÍrY','',0,'?'),(_binary 'mõR\Ø/t9\èC¶&\Ö^{','wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-sl_SI.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']HPyö%\Å÷FP:³k',_binary '\ä\ÆR÷\Õa$\ê#»XF´=ô\Zû\Ý!¯ˆ¢kS’d¤*> ','',0,'?'),(_binary 'mþ2\æ¿okZ\È\ÈC\îb’¥','wp-content/themes/flatsome/inc/admin/customizer/img/category-title.svg',0,_binary '\Ü?þ3{x°\Ä\ì,ù,\0',_binary '\Ü?þ3{x°\Ä\ì,ù,\0',_binary '·\Ü\Ø\ã2Å‹ý\î/³\Ï\ÑW¿…·Kùj\Ï2Pw}Ÿ\Ö','',0,'?'),(_binary 'nùñ\Ï\Þ\ZWõR\0ð	¤\Ùh','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/use-emit-response.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W6\Ö||Øµœú?<?',_binary 'HœEv‰U\Î\ÛÐµ\ì…É¨iû\àß¹sñ	R·s','',0,'?'),(_binary 'nQ¸\ÊÊ’\'”k\Ã\Þ\"%\ã','wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\r\×\îÎ ;K\ÞÛ”ºb/\Û',_binary 'ß ‡P x²|\íÎ˜Q=­	\ë\í„¤Tc²vL\n*È°','',0,'?'),(_binary 'n]ûj7<3ISsQ\ß','wp-admin/images/post-formats32-vs.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·t.E¶­\ê5G¥N\Zóþv',_binary '(Z¨,…œ\îªIm­Y,Î‡üÔ—ñ\ÆtGŸ©£žú¯¸«a','',0,'?'),(_binary 'n[	X”‡ƒ}\É0‚','wp-content/plugins/wordfence/views/scanner/issue-spamvertizeCheck.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LL’#\Ã\Å\0‡uD,\ÑYþi]',_binary '®~^ô\Ï\ÍÙ´\Õ	d·\íi*\ÐŽ˜\ÌW„õ‹\ß<6ô¯\Æ','',0,'?'),(_binary 'n\Þ{\Ù\Î9\êt\é®#\Ì\ïƒ','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/support/icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ˜\'€ª†Y¼B7w\Ï\ãIb',_binary '€H˜\\Oó„ú¼m©¶3£©\Ï\â¹_|s\ÂCQµŸC','',0,'?'),(_binary 'n ½\àºüb[lŒ0nX@ù¿','wp-content/plugins/woocommerce/assets/client/admin/chunks/leaderboards.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ùò…¤¹”õ÷P?Y‰*B\Ö\Í',_binary 'dQh\ØDt\'\ß<·‹\ç	)˜”W![5Ñ€^ÿö0','',0,'?'),(_binary 'n#©t=•\'…’Á\Þõb]{ñ','wp-includes/js/tinymce/themes/modern/theme.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UŽ\Ûö\ÈE\É\È|\Òh(Zf³',_binary 'Ó£	}•Ê«\ÌEŽ0ò).TX\Âø\äK\×d~\ÙHµÿNlK20','',0,'?'),(_binary 'n%‡Àø1{þó\'?m\0\Ò','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-fields.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õÁ\ÔFkl»,ˆW=¬c',_binary '¤{¦¿_\Ãtg•\Ã÷mM‹\à¨U\á½\0\Â\Ä\ï˜A\Û\n','',0,'?'),(_binary 'n\'õ•*›x Uø\î]jƒ','wp-content/themes/flatsome/inc/builder/shortcodes/commons/repeater-slider.php',0,_binary 'f$S1\\0@8ü7¥±ýœ|',_binary 'f$S1\\0@8ü7¥±ýœ|',_binary '¨D\Ög´….b52\Â7±\ÎñGy%!DfzE¬[;&}','',0,'?'),(_binary 'n,£|/@\ê{§\ã°\ä','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oG£\áûü¾\ÑE ü\Ë\r',_binary '\åÿ}\ÐDl˜qÁ\×X»\"a›G\å\ÙGuª¶VX}¿Œ=','',0,'?'),(_binary 'n.\Åð\Í\0’,\È\ë¯<ü‘\êü','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zones-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ï©¢šô_U\Þ0”xf',_binary 'ü9Yy†8Y˜ŠLfñÏ…—\Æ\\¸+¨|\ë¹\Ð\â™~\Ý|','',0,'?'),(_binary 'n5wT™i”™°k\Ì\ßóƒ¤','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/summary/edit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H^¨lrlo„\Ìö°a\Ü\à6¹',_binary '´#}CS\Ï#¸­zy\Î\×išž\ì\ì85“Å·r	Qô','',0,'?'),(_binary 'n;­¦m°b\\»Š\Ë=g­w','wp-content/plugins/woocommerce/legacy/css/photoswipe/default-skin/default-skin.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²WúœZ\È\Å¬Mw¦g\Î)C',_binary '´¡ö5#tjõV‰c6ÿ\èû\Æ\n\à©P‹n1\ÂoŒƒ\'','',0,'?'),(_binary 'n?\Þ\å<}rm\'\Üeq c','wp-includes/blocks/site-title/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u{(\Ù)°ŽJ\Óô°R˜\è\\',_binary '¥yµ]¨ð\Ä\Î3;“ÿZv\ÓD—(&³|7\ê«\ãcz\'\ë','',0,'?'),(_binary 'nAj+´uªúVG7d','wp-content/plugins/wordfence/views/waf/status-tooltip-learning-mode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nR1\íÕž‘\Â\nþixBi',_binary '‹µ\ìSóâƒ§\í¯\É=ÈŒbjK„½\ÝðŸ\Ýiý$\ïý\ê”y«','',0,'?'),(_binary 'nG/4!§‹ƒ‘dwš\Â\Ü','wp-content/plugins/woocommerce/assets/images/marketing/mailchimp.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®Z³Á-\Ï\ß\åÜ¬Ü¨V½\Ê',_binary '\Ì\æ70n->¼1°Z\îC.~“Zßš+»Pº\ä P','',0,'?'),(_binary 'nZ/1T:{&^„/n¿ý†','wp-admin/js/media-gallery.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ö”_8\Ù\ß5o\Ø÷?\éþ–',_binary 'Æ¤$\Ù30™·I”øX\ß\ÇC,b¼‘Ž\"0l»N\æžF','',0,'?'),(_binary 'n\\K\ìôCb\Ë\îÉºNoŽ','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/icon-refund-refresh.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–\'—|=Ç”`\áˆYÇ¯\×',_binary '¬\ÇûK©]\Ílüðz]C×¸^T‚Ž—,•\ÞCP\ã\ÉUzV','',0,'?'),(_binary 'ncZ()\Ô\ÐI.[\Þ+€¶¼','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/acfml/icon-128.x128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÁHT-ü¾Ý¢¤W©4·u\Ë',_binary '˜ü~4\Ä\Ò[›‹Ë€W)”h:)\Õ([‘ŽJ\"¶','',0,'?'),(_binary 'nc ¢w“À><Z¢´‹','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-tag.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Áe°É±’\Ì@Ó¨;a\Ô\Ã',_binary '\ß\ÖX_D³\Ì\Â\no¼ð—Z\\p‘b\ê\Í\Ö Àe»¯†¯ô+','',0,'?'),(_binary 'nk´X*VÀ‘\Z¡œLd\ã','wp-content/themes/twentytwentytwo/templates/page.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`/)7%«¾ÝŽ›LYlùlC',_binary '\'ft\àg\àŽx\Õ9I¥±8&l<	P\0¯\'¹\rQ\Îh(À3','',0,'?'),(_binary 'nsŽ‡øþNk‚\0†W\Õz=','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-methods-block/no-shipping-placeholder/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1ÿz¢´t¼p‘E^Ÿ',_binary 'wB)\Ø\Í\0\Ç²,\Åò\î\Ñ\ê®$XT\êm­6­°ã­‹\ì','',0,'?'),(_binary 'nxtD‹û¹Pt_v\Æ\ì','wp-content/plugins/woocommerce/templates/loop/no-products-found.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ\ÜR62úŸ2LŽ4#e[\ïs',_binary '¥Ù³öž£;`õ|v|\áª	“(÷hœk\n÷KZ\nu­','',0,'?'),(_binary 'n|Œ6\ç z}µ(ˆ¢–µ','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/checkbox.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ð¡û˜E<V®+\ÓiŠ',_binary 'Lü\ï~_‘ü5©A[£\á+r\Ø³³ýF \Ê8¸`ž\à\Ãt¿','',0,'?'),(_binary 'n~V\ç\Ø‡üôñÄ.Û´','wp-content/plugins/woocommerce/templates/myaccount/orders.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' „0)n\Ð\"\ZÀ³w@+',_binary '†®\í\ã´5\nBµ÷ZmŸ™|kŽ\"u¿ŽC\èMµd˜','',0,'?'),(_binary 'n„{\ÍÒ„±:\ÓP‹“\Ä\Ä','wp-admin/images/about-header-about.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SZŒ‘ŸA¨`8f\ÇôÕ®†',_binary '\ãºòs;×¸\';\'´=Z8€‹»½\Ö{\ÝDb\ÌJ8“¥','',0,'?'),(_binary 'nŠ£(c‘#‘\ÊÈ','wp-content/themes/flatsome/template-parts/posts/loop/post-simple.php',0,_binary '¶u”¼\âöx-d´­ÿ\í¸',_binary '¶u”¼\âöx-d´­ÿ\í¸',_binary '|£\\¿\Ì5Wˆg\Öó\îP¶?\\<¦õD\Z, ýˆL','',0,'?'),(_binary 'nŽ2GQ\ÄhýC„p\ïb\Ó-','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8ôIÿ0¸mj@0\Ý%øUø',_binary '{¥{oª]ùvrlñSaX\Êr‚óP\ÖÎ“?‰%.\ÃùE','',0,'?'),(_binary 'n“\Æ\í\Ä@’§AŽùF´','wp-admin/network/sites.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x_€h2žoß“!G’f)-',_binary 'ÿ\ÃÛ…Š\ÍB\å0$MF¤\Ëk}§å¹¤Ó®\È\ÚÁ‹Ð™°\î','',0,'?'),(_binary 'n¡‰El||\Ìs÷%“%','wp-content/plugins/woocommerce/includes/payment-tokens/class-wc-payment-token-cc.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NÄ¡¶=±-\áywLK€½\Ïù',_binary 'ûDuò:©\í±\×47‘òO>\Z\äRŽ2V^-€š Æ¸\î','',0,'?'),(_binary 'n­\åTG¦ý\nõ«sÍ­\ßÿ','wp-content/plugins/woocommerce-multilingual/classes/Rest/Exceptions/InvalidCurrency.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '×œ®‰õ5\ís\ëÄµŽP˜ó',_binary '9%p0\Ó5T\äUô§\áw\Õqñ\×\ï®™<\r7VR™+9','',0,'?'),(_binary 'n\ÂKŸó\ÇS@\ê`\Ú\'J\ß¸','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-fee/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pvB‘O`9ŒO˜g\Ñ\ÞY',_binary 'y^E\ÄI \íÏ½.<6Œ¬˜¨\ìx\à\î2¾\Åy\ê-‰\ÌÏ‹','',0,'?'),(_binary 'nÅ¢¨)\á®cˆ›\Þq^\"','wp-includes/Requests/Exception/HTTP/503.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%§5\Æñ\Æy:	cx2',_binary '¾}¶¬=3xûA9¼ªñ\Ël«p\0‚Æ°\Ó9e.O','',0,'?'),(_binary 'n\ÊM2C>\ä\ÔY\Éö\îu','wp-content/plugins/woocommerce/src/Admin/Overrides/OrderRefund.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/:óÐ´€ò0« Np%Y\0#',_binary '\'\á?\ÔÇ©J„ˆ\ßr\Ð@\à>ø\Z\î\Ñ\ÉN\Çb8¤ˆw+','',0,'?'),(_binary 'n\Êeö„—ü\è;‡\ÜÀ£\ä‚<','wp-content/themes/twentytwentyone/assets/sass/style-editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y‹¯¶Cù=ûòno\ã\ç',_binary 'uL;\æÞ©Ý’<¹sby\r7J¡Vûð®±5[*ZzK€ˆ','',0,'?'),(_binary 'n\Ôc_ù}$\Õ6Á\Ô_ÔºQ','wp-content/plugins/woocommerce-multilingual/res/js/wcml-translation-editor.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œöB³V8\Åû¦½<—9Y,',_binary 'F\èw˜ \É\íš\ê\Äe\0\ÔöU¼¿_¦?\É\ÕtHšv\'\ä','',0,'?'),(_binary 'n\Ô\Í\æn\á¾Ç‹\ÕSH€†›','wp-content/plugins/contact-form-7/admin/includes/config-validator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';mº˜s3BF\n®1”þN\â\ï',_binary 'I;b|HR\\O*ö’™\'¤ß«v\Zœ¡(À”Û‰´Q-µ{0','',0,'?'),(_binary 'n\ãÐº™\Óvýnj=Í®','wp-admin/includes/class-bulk-plugin-upgrader-skin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6/M…<Ï‹‘­vk5',_binary '\Ës„q³<\âú”$ùwtü¶ªÒª¾kÔ‡6´KL\ç','',0,'?'),(_binary 'n\æ\Ìo»\í\í€øy\êø\ì','wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨}\rÁ\èpƒXP5$\ì^º£',_binary '>Ž¶M¬,ï˜¢¢üAö¤¹a²§\Ñk–¼\0¥m,˜D·\Ð','',0,'?'),(_binary 'nï‡,\ÑQû\éð3b¹õO','wp-includes/js/dist/warning.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'úøž°—q\0W†ÛŒI\ïÎº',_binary 'tP7Ñ¾\ëY\Ý5˜ó.¤N\ÉM µ”°\Ó?\Ø\è¥|\ï','',0,'?'),(_binary 'nð\ï\å\Ç\Öd9šG&¡}n','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/jquery.colorbox.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼‡	j4\åDòªHj!Y¦\í\ë',_binary '?r\Ô&s:»¸0˜;WûÖg\\V‰F#`†Áˆ1\Ôð\ã-\à','',0,'?'),(_binary 'nó\Êó09j®v8õ\"','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Å‡\0ùs\Ï4§zž9€>\Ö_†',_binary '	D+®Ä´Œ¿\Þ\Ï!¡³Í„Q\Ðþõ“…¬\ÎWŸªC','',0,'?'),(_binary 'n÷½\n“,\r\ïw+\Ù\ÊS—R','wp-content/plugins/woocommerce/packages/action-scheduler/deprecated/ActionScheduler_AdminView_Deprecated.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ò\ív\æ¦ ¸¾?_Q',_binary 'V•¦¦Ü¢18U±\r\ì&]_RPºf~¯9Od\0\ÕL·Iwvô','',0,'?'),(_binary 'nú\ît+\î”K\ÆZP»pš\Í','wp-content/plugins/yith-woocommerce-compare/templates/compare.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\×e\×\Èe\\²øþ†¿ð\Ê',_binary '„:A\èQ-\ç¿\én–+\r`Vß–T\ÑZR›¯ôÈ³Žô','',0,'?'),(_binary 'nÿ®Û—\ÔðvXH)\é','wp-includes/sodium_compat/src/Core32/Curve25519/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y¢ªÏ›\ÑvjŸ\×\nÀ…\Ï',_binary '\ãS\Óx–^öV>m\Ð!-ªq\ì÷\ÌñD\ÙeV\Ñ\ß\Î\È\è','',0,'?'),(_binary 'oŸoƒ—×¨$­û\çC‘\ï','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-color-alpha.php',0,_binary 'ûœr\ïBIŒ\ÓÆ¢\é»\æ›',_binary 'ûœr\ïBIŒ\ÓÆ¢\é»\æ›',_binary '\Ï>.‡T.†3P\æ¬}1Ù£fòS}Æ‚\å\ß\'OA?s','',0,'?'),(_binary 'o\ÃdnFd\ì€[\"5ˆ\å]','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/support/class-otgs-installer-support-hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"ƒ¹³ü \Øõ³}ŠX ',_binary '}/)-µÒŠKDuƒ&\àŠcLe+\Ä\Ú}¬\ÍPÀO¬{#>','',0,'?'),(_binary 'o­•9qmË¹=þË¯‘¿\ß','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/with-category.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§¤ñN;J»\ËCEŸg¹\å\×',_binary '\rG\ìW@\ã‡^p1‹¤\Ñwœ°\Ø,Ó\êZx² hb­\ÃÝº','',0,'?'),(_binary 'o#qö\á ^\Z¬J…1\Êl\â','wp-content/plugins/woocommerce/lib/packages/League/Container/Definition/DefinitionInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡8\è¹\ã\Æ\á†.A \í> ›',_binary 'yŸM¡iZ¥F\ã™ý•\\>5J\Ô\îsx\Èf§{GŽs@','',0,'?'),(_binary 'o\'RD-”\Ü\0¶±¡o‰\É','wp-content/plugins/wordfence/images/support.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬Cl\â$£‡r¼“£¼n<.',_binary 'Ž\Ê$\ãMû¡Ô®¦&\æ\â\Ã(á©˜s¬µ^	Ï¢*NÀ\Þ','',0,'?'),(_binary 'o1iðL5¸“\Ïz®$·õ7','wp-content/plugins/wordfence/modules/login-security/classes/model/compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»u1ò\È\\\ÈÁ8‹‚;#j-',_binary 'Pµ²\ê„|±l“_‹ƒ\ïZ…\È3z<NÉ§Ký\ß\Î','',0,'?'),(_binary 'o8m\ç\Í+÷\Ñ|c%Kö\Z¥>','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/text-toolbar-button/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é\ížö¶CcTØ¦#QŸBAv',_binary 'NÞ–&\éF3›\Ú\ZŒ7\Î\èÊ”ýŸ©p5\Í`\ßaG&','',0,'?'),(_binary 'oC\É\"À\Ï…Q¸\ë\àtƒ\Ñy','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±\Â+Á\ë’þõ%',_binary 'Á4!ýˆHü:6>\ËlE\î\æEc#œ\Ð\Øùa{A´{','',0,'?'),(_binary 'oI3œG2p\Ü~Æ›\ß\0x','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-search.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\í#ª¿,rI’2ø\'\ã~Vw',_binary 'ŸJõK\ìþwú¢-\ëz:!2ý\ãöÁ\á–ç—¨”g','',0,'?'),(_binary 'oPðûc™‡\ìo©.\är','wp-includes/js/tinymce/skins/lightgray/img/object.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'órdP\×E}u\n/M”A\Ç\î ',_binary '† #;!\ä\áI§ˆ.À>\çuÊòSVŽ\Ým{|ñe-','',0,'?'),(_binary 'oQ\Ìu\Ñ:„!¯×¤±I´','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-package-product-finder.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zG”\Õ\çªIRû¥\à\ê\n\à',_binary 'S=œÇ•9ôg¬ó\r\×U0YÁ•ƒ&¬\îfŸÐ ’¦<','',0,'?'),(_binary 'oS]\ã~(\ä\ï7;\à™ \rœ','wp-includes/js/dist/shortcode.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AÒº¹óâ ™\Ì’\êG',_binary '%\Îò’\ê+v›CCE\êqˆxÆµ\Z\\}Íq	Þ‡\äc','',0,'?'),(_binary 'oY G(±§jÒ©nQ+¹','wp-content/plugins/yith-woocommerce-compare/plugin-fw/dist/gutenberg/index.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\á\Ð1<^yž´\ÄAu®\Þ\Ô',_binary 'uŠ¥¨j[ 	÷õ¨/^6W\Ê\ãO2… tŸ›\Æ\'U\ÉP','',0,'?'),(_binary 'oZ0†š÷ù\Ñ\Ø\Ô<c\Í0','wp-includes/SimplePie/IRI.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\Ýñ9,¯zÓ„ycE¯',_binary 'Yeõ«kÀ\Ú\íô\Zkžt~‰n4‹&—\Ê\Ë\Ûóp#\îÓœ','',0,'?'),(_binary 'od\Îj\Ã\È\ìõ²IaÀlõŽ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/add-to-cart-form/form-state/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V»‘• ‰ñ`\å,0«­',_binary '¶\"ŒH¬ÀoE˜G‘d©\Äj‚\áŒx@yT£¾¦‡\Ò\æ\Ù','',0,'?'),(_binary 'of\ëGk\ÌL†Á›ù`t@','wp-includes/blocks/cover/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\àgô)l¿BÈ§›i=$cU',_binary '‰snÃ\ØE³~\Ä]HƒñÁ\å™\äM;œ\ï.š\ZB—ÿl6','',0,'?'),(_binary 'ov¸\Ü?\É\Ïò—)™ª!Áy','wp-content/plugins/woocommerce/assets/images/icons/loader.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r7c)[\Æ\Ð\Òw´ñ^\Ñ',_binary 'B\Êeõ vO+\Ò\É\å‰\î» \Z*e–Ò¿ Wü3~\Ò\â\Ë\í','',0,'?'),(_binary 'o}\ÛCÜŠ8ôEø\ïGð','wp-content/plugins/wordfence/views/scanner/site-cleaning-high-sense.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E8\ëñu\ÅChG<\ÛoÜ…\"',_binary 'þTQ\Ç\étû\Ý\êÝ“±¢z\ØÏ‰T¹ú0\ÆõA','',0,'?'),(_binary 'oÿ`\ÍD¾£‘\Ä\ä‹`\í’\ï','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Handler/CommentHandler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Dû;˜•s\Þ`o\Ød\Ò%ƒ˜h',_binary '`iõ\è{]›·¥a¯5\å\Ã/Ð¢Œ>˜\0šs>•\Ô¬','',0,'?'),(_binary 'ož¸e\\Î¥^=66½D','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/get-valid-block-attributes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9HmU\0\Ûp#½Afñ‰\Åy',_binary '0=ˆ@OrC”)\×\ë†8—?rñ˜\0 õ÷:Òš;&\Ç\æº','',0,'?'),(_binary 'o”\\K:uÓ˜£\n7¾-UƒS','wp-content/plugins/woocommerce/assets/css/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³hcÞŸ„±1\Õ\ä\í€\Ó—D',_binary 't\Ä\n†„7e\0\ÎZ¦\ÉI¬˜|ÅžŒ÷Ãœ0•\Õô+–','',0,'?'),(_binary 'o¬	Ç»ÿ	&\ã\ïc÷\Þ\Ú','wp-includes/blocks/paragraph/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÙšD}u»\ÆP\ÈÁ5”+',_binary 'Kº¹¥fÁOúò\ÞHÛª5fw£\Z-\äÍ¼œ¡\Í§\\š\Ú','',0,'?'),(_binary 'o®RlhdÅ‚Ü³\ï`¡«\Þ','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/repository-registered.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸a½þ*\ÈJO£\\#¦©',_binary '¦\Ô~A™¶ •§e\Ï\Þ;¼\ëÀ˜\ç.«~­‡HIf0d\Ò','',0,'?'),(_binary 'o°Y\ä 9¶óG^\ÇNt-c','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/webfonts/fa-regular-400.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'sþÿ¿8/I˜1 ©ñ†&',_binary '\á\ÇP\á£<½Rl(š\Ûa\ëóÌ›R$+…x¡†#\âõ','',0,'?'),(_binary 'o¿w*ö\nÎ›Î¢GÒœ]','wp-content/plugins/wordfence/modules/login-security/img/header.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\Ü\è±\Ñ\Ç]\êj-\ã‘ø¦™',_binary '8šü»\Ô\Ú#Ì„(8ø\áÿˆOû\"\Ç	+h\"Fb–\ìƒ','',0,'?'),(_binary 'oÁm¤5M\Ä^dmKñg','wp-content/plugins/woocommerce/includes/admin/views/html-notice-updated.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8.ÿ\'ZXMK\ë\èÍ‹1',_binary '3\\\æ¦>´š€u\Zø2½\ã;\èPü\ä4ýžkw]öÁ\å_','',0,'?'),(_binary 'o\Ìc~90aÿ}\êò7\Ç&\È','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-color-palette.php',0,_binary '·rÆ‘<\ÕXüZ-Î°$',_binary '·rÆ‘<\ÕXüZ-Î°$',_binary 'Ë»Á‚\Ê\ä¶Ò‘]bß®X<F‹,‚\ãnõk8\'‹µû…','',0,'?'),(_binary 'o\Ïl9ý:Æ¢<Ö÷°­\Ï','wp-content/plugins/woocommerce/includes/class-wc-order-item-fee.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '({K4\àÎB#•³´’•',_binary '\ËJ®”?žaÝ™\îú;d0bS¦ƒ‚ªª¹\é\Ý','',0,'?'),(_binary 'oÐƒ*ñú\\ðž®Á Ëÿ','wp-content/themes/flatsome/inc/admin/options/shop/options-shop-product-page.php',0,_binary '<&z4\×OOò.ó\ï\Ôco›',_binary '<&z4\×OOò.ó\ï\Ôco›',_binary '™©oÄ¬6\Ë\ØqÊ½C;>ÿ?†!\Ý&\î”j‡ö”','',0,'?'),(_binary 'oÔ¹\âªh¿„„\Ï`Ázs','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/use-store-products.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ü5\Ãó8BQ\Z°¦\Zè€´\å',_binary '\Åè¼\Î+°\Í\Ë¡ƒg\ã=\ç2œj2Œ\Ê_4|q…\Û','',0,'?'),(_binary 'o\áµaÊ¥Ê¬…\ä\ÃTH}t','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/diners.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'snÝ„±D‡¡\è\Ç¥?.õÿ',_binary 'D\\ùj*‰œC\Ú\ÏiÃ¯7™7\n¤ŽJ±:^L@\Ñ\ÝEI','',0,'?'),(_binary 'oã®š-\×;?X:ûpÒ¡','wp-trackback.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿™À\ÚÑŒWe=]!Bð›',_binary 'µ\à\'ßµ€¦\Ñ3‰MØžÃ˜§¡5¥ÿ¶c\ØoûM\îU³%','',0,'?'),(_binary 'o\ä\ÙÀ\ßùYŠ\ÆÚ…”\ÌX¼','wp-content/plugins/wordfence/images/flags.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W7\Ì ‚Œ(\ÐË¿!­\Z7\Ô',_binary 'Bxö0%Lyµ6øú!—óX\\z/< n²6=\ZW\Ä','',0,'?'),(_binary 'o\í“[¬\Ðn3u‚\ÈÊ¹ŸP5','wp-admin/options-general.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ö\\”3º\Z\åX1?i¯x',_binary '€o1Œ3›\åJ9\Ïv©„`W)ªf—H+\æ{/\î$¥','',0,'?'),(_binary 'oõ_(\Û2—’ñR\Þò\Òú—','wp-content/themes/flatsome/inc/admin/customizer/img/product-title-featured.svg',0,_binary '\Ï/\á\ãý89°3Pµ†',_binary '\Ï/\á\ãý89°3Pµ†',_binary 'Q«\0{-´¤ü\ÖÂ¦Ft\Ü\0lm\Ë|	U%B\Þð\×\í\ÉH','',0,'?'),(_binary 'oû¥¸L²Ñ—5ùÙ¯a¥x›','wp-content/themes/flatsome/inc/builder/core/server/filters/post-options.php',0,_binary ';Ž¢Ìª\çQ¼RQM!l\Äz',_binary ';Ž¢Ìª\çQ¼RQM!l\Äz',_binary 'gí Ž¹—O‹ªhôö´ž¥\âXº¯kMƒö[;Ö™','',0,'?'),(_binary 'p\Í<*I?\Åù\"¹BJ','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/yit-plugin-panel.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·N‹KôQ\É\ÊD¦),˜ys',_binary '3\æ¹wñÝºXò\ÏKöªPÍ§X•\Ãiö˜—y¼','',0,'?'),(_binary 'pôô7u\ÌL\Í_{2Ã›–','wp-includes/js/jquery/ui/draggable.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*›`X·Å6Ht]™a',_binary '\ã\ä¼\ÄSˆ¬\â0„\ìø\×\Å7\èc¾\ÙEóJ(=','',0,'?'),(_binary 'p\ßÒª]\Ìn!\ìxvƒ\Ê1','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/codemirror/codemirror.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<ü\n`Ë£\Ã\È\0ƒFø¡¾°<',_binary '­\ÑÂ…7 *Kfì–‚\æñ¤ªõ(\Ò`@ðg¢az¬\ç','',0,'?'),(_binary 'p}\Ðò.8Èƒ2‚m]šÀ','wp-content/plugins/woocommerce-multilingual/templates/compatibility/product-addons-prices-dialog.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ö-™¢Œº\ÔûyN¨ül>\å',_binary '“e3aµu‹a¿\Çaù\Ûpn¯,ÊŽ\ä!u­\È3\Úi','',0,'?'),(_binary 'p\n	\r½\áf‚fóO–<\Û','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-data-countries-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\ãHÕôW@™vìŸ¼',_binary '™Ž\"”ºnFB€ƒ\Ê~B»d÷ùŽ·\ß0\â\r²3ò\"$','',0,'?'),(_binary 'p>¼~ \àŠF®\é¼\Zs','wp-content/plugins/woocommerce/includes/class-wc-order.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@ö\Ç\Þ¥~S¤\Õ\Å\Û|¨G',_binary 'Ñ¸9-^\ë(#e\æ¦N:Þs °}Ø®\ãŒè£{¶','',0,'?'),(_binary 'p\Ð\Çt@\Ô\äþœC´F','wp-includes/blocks/template-part/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷À·IŸ\Îs\Â\àyÎ½\Ý',_binary '$¢ÁtE¢ú\Õh)ÁpuËž–ê¨‚\Ã \Ô…\ä»>@\"','',0,'?'),(_binary 'pÁ\Ónp\Ôjª\"K *œ¿­','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-checkout-field-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£ð,:Žö\Ó\ÊbeqnÀ',_binary '%´9¬†À\êT\Ù<\0Œ\ß²^\Å4\É\âñp.y`¦P','',0,'?'),(_binary 'p{\r¶¨ \â%>/üZÿ\ë:','wp-content/plugins/wordfence/views/scanner/issue-base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm|\é¬&vfÆ²~Œ¶',_binary '\æi\"\î¬m¬$óÿPyM\Â\í¡\Ûñd‘	ø««S\éŸ','',0,'?'),(_binary 'pÕ•Œ½=AZO„\ìw\í','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/title/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\Ç\å\0]D/\Õ\Ú\ÎX†',_binary 'M]y§\Ãë®2ø,\Ë\ËA³n\â-R¯MX4D>£­','',0,'?'),(_binary 'p˜XZñV:šB:+ƒ.','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductTagList.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚qñØ„Â²Šœù³¨ 9…',_binary 'ž€\ï¾­\è\ì\Ú\"¯£\á>Åµ^\Ô)5+7:c»²;÷^','',0,'?'),(_binary 'p$™±&ùðPMÉ¸–\ØW','wp-content/plugins/woocommerce/includes/admin/list-tables/class-wc-admin-list-table-orders.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NY1«\Îe\rÞ±,}F„c',_binary 'w\ä\Z‚Ž4sª8Œ«þeŒó·3—úŒŠµ¨±pO8','',0,'?'),(_binary 'p:\0m ³\0”K\ç€5?‰\Î','wp-content/plugins/woocommerce-currency-switcher/img/envato-mid-sale-2020.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\áw\Únñð œoi`ž\Å',_binary 'r§ð_$\ãŸÿB\è{\Üpm\ë@M\È8 —2\Êò','',0,'?'),(_binary 'p:”,¯`OlL´(\éA','wp-content/plugins/wordfence/views/waf/waf-uninstall-success.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k¥~\ÂH°À\é7»<¿B\á\Þ',_binary '\0!¥F\æE¦¶\×KP³£7ß»”0\Õ\æ\n;6”}Š\æ$','',0,'?'),(_binary 'pBPu,›\ï›µ°\ìa>\Þ\Ï','wp-content/plugins/woocommerce/assets/css/network-order-widget-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\2R\ëf‘\ÇYô\'q.@',_binary 'vZTh#ºD\Û<f•+\îFYŒbœ¸©z¢I!\Ì{Î³¸x','',0,'?'),(_binary 'pIû‚:S€ºˆ•v†u','wp-content/plugins/contact-form-7/includes/formatting.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÎKJ¦v’þ\'x	\ZPz~',_binary 'ƒÀ:†l©\ÉÀXD™\Ø\Å9•\ë_\ÈWg	ñ›\Ã‹õm','',0,'?'),(_binary 'pJyºKö>\îN\Ö?Ÿ\î','wp-content/plugins/woocommerce-multilingual/dist/js/multicurrencyAnalytics/app.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',SË£T:¤5\èD\Ï\\º.	',_binary 'F\ÝPQÏœ–s^¿ŽJfZ\åG-qg¯#q]pœòrc','',0,'?'),(_binary 'pK&y\Õ\á»;“úp¼ý\ä\Ý','wp-content/plugins/woocommerce-multilingual/res/images/buttons.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨j\Îp\ê®\é´îŒž]v_ª',_binary '´ŸTœp+4~I\Ø¹/\ÂM\ÚccŽý\Ôñu\Þüd\Û5\\','',0,'?'),(_binary 'pUyüa	\êb¯\àva„;¡8','wp-includes/js/comment-reply.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÇF‚´“D6®ÿ\ì\Èx\Ê',_binary '!\ì”x²\ÍG\Â\Òÿô ¢—\àGo\áDf\ÅB8xXC¿','',0,'?'),(_binary 'pVYa\â\0ï­†=€Á\Ä','wp-admin/error_log',0,_binary 'LQ8i\áÌ¹¢m¢\n\Ô2',_binary 'LQ8i\áÌ¹¢m¢\n\Ô2',_binary 'WUaž\ãÊ¥[\à^–\æµE\ÚBý…qKº²ô#Û˜','',0,'?'),(_binary 'pY\"‡a‚\Ðö\äDB\Èû¼\å~','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨z™\'5œ\ÍôF9B',_binary ',\ëû½¤”ó\æ‘\äø‚0!tBõ\Æj­8yv;S\Äq','',0,'?'),(_binary 'pZ\ÞùKŸ\ÊSƒ8p“','wp-content/plugins/products-compare-for-woocommerce/berocket/includes/libraries.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\éŸ|¬Žøñ\ìP$\Öy§þ',_binary 'w=7\ä\ç\Ä}b„\n±‘ZAU3¦ nf%g,·°Ce Q5','',0,'?'),(_binary 'p\\0”‚\æRo\ík/x\ÉL4','wp-content/plugins/woocommerce-currency-switcher/views/plugin_options_data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\Å3\â`Á\Ô\ìÂ¼\ÞùIûL`',_binary '\Ò\Û\ÝiK<\Æd\Î\í[\íA\ÖhE­²¼†z\ç;øTW8FŠew','',0,'?'),(_binary 'phO4pª\Ð57\Ã\Î\â±','wp-content/plugins/woocommerce/includes/libraries/wp-async-request.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'aŒJ)\Ö\âH•H¶N¸±…\nÿ',_binary '\ÓòAŽi\Ô8Ê±ªCB¿vb\Ä’,k\É˜n:‰‡¸\íz','',0,'?'),(_binary 'pi	‡xmA²7»\Ò~|TI','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Exceptions/NotPurchasableException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z(jy3‰¶\ä…;¦\à|',_binary ':JZŽ\ïb\à\Ówê¸ƒÿ\ÅPp¨U\Ñ\ê½\ël\éAD\âA','',0,'?'),(_binary 'pi%;M7bi\0	9–Á©~','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/WooCommerceAdminUpdatedRuleProcessor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ä¬?)¨ÆºŸ1fÍ‘\Èû',_binary '$Á«û]/klˆ¢¯\î…)U¦\Ô ñøx_„Ê ]ðŽ\è ','',0,'?'),(_binary 'plbŠ3$\ç\î„öÀ²]ta','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/search-list-control/test/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ¬Ž‹Ê”À\"&^–šøb‹',_binary 'T¸\ÂÀ\ÛÚ½2º©•p\ÂC¸r‘bc»/•¸–25¸\ï','',0,'?'),(_binary 'pmÖƒ\î´)\Íw­\Â\Ä/7W','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Exception/SyntaxErrorException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡\Ð\æø<\î¥?3÷\îA9²',_binary '\ägò“Tþ2E\×\Õˆ\Õù$Ã\ï\é\ê‡`þ=\ÚZ~£_','',0,'?'),(_binary 'pp\é%)+cf¨!\ÎÁE\Í','wp-content/plugins/woocommerce/templates/emails/customer-refunded-order.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`9\ß2££üoù\ZúSš|\Ý',_binary '\ÖÜŠþ\Íö\ËM‘‰ÿÀ\î¾$r\í\"¾\ØVRo•¼ÿÉ¤•l','',0,'?'),(_binary 'pq\"Cš\Ù@94¥\ë\Ë)\ær','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/sidebar-layout/sidebar-layout.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹;.£‘P’e\Äp%òœµ¨',_binary '\áI~\ÙZ\n“£\Õ\ÊK:\0*xbð!£\n\Î \Ä\ã.¼ñt','',0,'?'),(_binary 'prY©/»i†„?\Ã?ö\Ð','wp-admin/images/about-header-credits.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':L\Äß¡Õ£.÷¼\ìÆ‡>',_binary '\Ù?ÿ\ÄÎ”-[Œ91\"#G”ú|h‘\äýHöZK\Z>B','',0,'?'),(_binary 'prh\Zcj“\å–\Ü÷›','wp-content/themes/flatsome/inc/admin/kirki/modules/field-dependencies/field-dependencies.js',0,_binary '#)/2„õiD‡/†º\Í\Å+',_binary '#)/2„õiD‡/†º\Í\Å+',_binary '1·\ï\ë\ß\äMJ²œ¡\Æ\è]x~Ù¸3W^\ÙG¢\î4y†','',0,'?'),(_binary 'psk—»<}\Ü\È\Ðü‰¾\æ','wp-content/plugins/woocommerce/templates/checkout/order-receipt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ß\ÊK\Ò!Å¦˜™K±\Õþý\Z',_binary 'H\ËÁ\îl£\ë\å×“\äÂ›¸pEþ¡ó÷Á\í\á\æe—\Û{@w','',0,'?'),(_binary 'pw\á\ÒQ„F\éc\Ùß b*','wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu4mxMKTU1Kg.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@$\ÆqG¹2k5$¡†z”',_binary 'Ö†F*`\Ý\'\ê«O tµriR:\íj0\áó’W\Z–=¨j€‹','',0,'?'),(_binary 'pš›q_Œ²­\á)¬J','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/CustomizeStoreWithBlocks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ¼”\Î\Ý\Ý;\ÖW\Ø.ø\ìo7',_binary '¼\Ë\'\Í\"‰˜¹·\'}¨\Õ`oPuº8£$õT\ì*Êˆ3','',0,'?'),(_binary 'p\Ô[€\éu[ù]D¢\æ','wp-content/plugins/woocommerce-multilingual/inc/translation-editor/class-wcml-editor-save-filters.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£«\Ïºú^S2U¹N”e',_binary '7’úQ\èf\ÝK*;ù8u:ZU‰q\é\Û\ë\Ò\Ì2UõŠú½','',0,'?'),(_binary 'p‘/C1\æ”2%XY,D\ÌR','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-plugin-subpanel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J4Š,]:ž(Š\ã^Ë«A',_binary 'þ»ó\Íbþ]>ŽÕ\â°÷ñ\ì“\Ðó“V\rTò\ëw','',0,'?'),(_binary 'p•ð´.Ð°”ó[ÃD¡','wp-includes/deprecated.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ç¢Œ¸uÄª€Hú,©',_binary '\ëµ\àG*¶ù\ÎH	o/¬u³\Ø&8w:dö\ÐÆ½<[Ÿ‡','',0,'?'),(_binary 'pšÝ„\âUÙ»ã­‘\ì¶','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘U-07\ÜÀ\ì\n}m•\\^',_binary 'd¥Taš\ç\Îß°`+’>/!¶!ú\Û^bg$\Ý\n','',0,'?'),(_binary 'p ¤Œ¾jgv¬¼B^›‡','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-aurum.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\íj³\Û\ãqr˜i2^õ\â',_binary 'ç´‘\é;•g\Èqd/ø5\èª©¤N\"n\Z\íjU:G6— ','',0,'?'),(_binary 'p¤\êQNõ!Ø“^\r\n«²!ª','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/shipping/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Å\nž¿´\àvÓZ[cXZÁ',_binary 'v.*\Ç\Íy÷b)ýþ\ÇyR¾úC\"½¹eN\ÉtõV–','',0,'?'),(_binary 'pµ\r%Ö§–‰\"w\à\é\áL³','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartApplyCoupon.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oð\Ý\ÂI\Ý~{\ê\ë0/\î-\Æ',_binary 'V`\ÉQ¢—…lú¹hs\Ö\\)0jK\Z#˜²„ŠQ\Ãy<O’2','',0,'?'),(_binary 'p¸8±•\ØTadºl¤û<8ó','wp-content/plugins/nextend-facebook-connect/admin/images/notice/nslnotice.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',F	T¬Ù£\ì@\×p{/',_binary '<\ÄˆÅPŸ*‚ 4²‰ýùŠmwœMg~g\È','',0,'?'),(_binary 'p»¼\\*e\ê¶\n\rÏˆó\ëú®','wp-content/plugins/wordfence/modules/login-security/classes/controller/notices.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\ècd\Øx\ÊW{f¥\íŽNb',_binary 'O°ºj+hÅ¤\nâµƒ8QÜ®#w¾\Ë_p\ÊýC±\Ë\Üû','',0,'?'),(_binary 'p¼³––ÿM/8\Íòw[:/','wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/core/initialize.js',0,_binary 'ñB%r\æ\í¢\ïÕ«\áR>\Ö',_binary 'ñB%r\æ\í¢\ïÕ«\áR>\Ö',_binary ' ®ò>\Öõu\Úù}!Swy\ï^¿eA@ª|\ÚøÎ´A\Ö','',0,'?'),(_binary 'pÁ­Õ•E¡\È{T','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/button/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€\Âj¼Œ˜’\ï\0µ?…\Ôss)',_binary '\Ñ\Ø7 L¬2\á›\Ï	ˆ=­,F‡¾Q\é\Ôº\ïB&²\ë/','',0,'?'),(_binary 'p\Ä²Yò|üö\Å1\ÐCÅ•(','wp-content/plugins/woocommerce-multilingual/vendor/autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\n r\"¥l\Þ\àžPW€H',_binary 'OŽ¿\å>¦¥\0³™Q’\×R	pœ\Äe yŸ\Ä ','',0,'?'),(_binary 'p\ÅQ %\ÔûNÀ« \ZPu\ÑF','wp-content/plugins/woocommerce-multilingual/res/js/multi-currency.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']D¨¢ý;d\äC®›™F',_binary 'heŒê¹ž¦‚y\à3¢•9j\Ëjù¿Šf»G\Í\ÖD\Ë','',0,'?'),(_binary 'pÅ§–\n\é‚+R\à2Z\Õ\ç¾b','wp-includes/blocks/post-title/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ã€\ÙüÕž \Ñ<h¸\Í\Ø',_binary '¹Xe—dK©€úU\ëñ¤­ ’H\0\ïu£\Ëý:q´D\Z','',0,'?'),(_binary 'pÉŸ%ðýPiÂŸrüð­ý','wp-content/plugins/woocommerce-multilingual/classes/Rest/Wrapper/Products/Products.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ä·˜\Ì\à\ÕE\å•E\Â,\Ú',_binary '¾\Ó\ãý“\Æu‚\ëE\Ý´v\Ýc%š\ÝÑ´]K¦\Ðÿ','',0,'?'),(_binary 'pÌ“0¤2@\ã\ØPF\Îtk','wp-content/plugins/wordfence/views/common/unsubscribe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y:h3ƒ>½½a Ý‘¶4~',_binary 'E\èùqú¸´\ËTg»\çO>F-\ë\ÅOú(\ÍIÆšZ£¿z','',0,'?'),(_binary 'p\Úqö–B+@8±¾JA','wp-content/plugins/woocommerce/packages/action-scheduler/lib/cron-expression/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°p2>¸ü9\ÊÒ•Ÿ{¬+',_binary '}œlX¬|ò‰	”†LgÓ‚‘d[X\Ë\ë¢','',0,'?'),(_binary 'pÜêœ§#‘\Û“_le¥','wp-content/plugins/woocommerce/vendor/maxmind-db/reader/ext/config.w32',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm_\rù\ÖÜ®3\Ã\Õao½\à',_binary '++\Þ\à$U\äSI _\ì• N°µ2õ„L\ÝqŸn~z\Æ\Ï','',0,'?'),(_binary 'pÞ½ Á‹\áó[\ÄO\ê¢\ÝýV','wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-zone-methods.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&Y‹\Ã(_Áº+4ÁJ\Ö\åÇ¬',_binary '«`À¸5\íR·ðUf»P7œG!,f”dø­J²\"`\Â×­÷','',0,'?'),(_binary 'p\î}G÷‚J\é\Î$\â\àx','wp-includes/block-supports/align.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©a\Âü]¼4$^l\Ì\ì',_binary '\Ö\é\Ïz´ia¦;8\Ù\ã\ï:µð`\ÉGWúId¡òQ£\Z','',0,'?'),(_binary 'pøQO¬g?\îC™ ³$‘^','wp-content/plugins/ti-woocommerce-wishlist/assets/img/select_caret.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õY\é\à¨ML%Õ¿uñW',_binary 'TxSŠ¥ó\Ü#o¨\å=\ÝÀYk0K3\Óû\ÑË¸TDø','',0,'?'),(_binary 'pùÀö—b¥~ƒoBk\ÌZ','wp-content/plugins/akismet/class.akismet.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—?»BÛ\í§ZT“¤ž',_binary 'À<hgü\éóT¿†À\Ø\ÛÎ¡ó‹rQ²{\Í*¢','',0,'?'),(_binary 'pú¢uüw¨œS‰É´0¿','wp-content/plugins/hello.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÙE£\Åt·5\0\Æ\Ü\ÌP\ì\Ìw',_binary 'f¥¢s“»	uõcþˆ•µ~ýô\Ä0b\Äñó³\íIõ&5)','',0,'?'),(_binary 'qqC¸¢$²ž\àý¨ƒ@','wp-content/plugins/wordfence/views/common/page-title.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5«ó*<ðX;øø',_binary 'N5%žº=\åœkUHVKÁAþlEI\"3\è¸j\Õ\Óþ','',0,'?'),(_binary 'qs¾¢A­tª\Îd™\\','wp-includes/js/dist/warning.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡Aü7ò\îU\Ê\ïrX²',_binary 'l­)‘*\ÖrÛ,Àr`§´U}Þª\ÛO\Øý¿\êø\åš','',0,'?'),(_binary 'qŒ‚„´Ô¹\ß¾‚\Ù$Pö','wp-content/plugins/woocommerce-multilingual/compatibility/res/css/wcml-bookings.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ò\áPÀ,šXñX—ŠL‰^…',_binary '„]rA\Æ,»4„lÀ\æ‰y¬/\Ê \ÑTDÁ\ç ~\è$ˆ','',0,'?'),(_binary 'q\r\â3\"}õ¥	£¾{','wp-content/plugins/woocommerce-multilingual/res/js/lock_fields.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿Ã•\â,7\â&°—·W\âI¨',_binary '9Z\"@\è\ÝB\Ñb©\";ÿ\Æ=1r\Ãöak­\ãS³\nº†\Ì','',0,'?'),(_binary 'q\"co\ë\Þ£>«2Rh\é]','wp-admin/includes/plugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ø\à“h4\êN\Zm\Â>˜šV',_binary '¶E½þ›¬Y¾\ØS\ÞsýL@Wx\íM­qœY»W\çÙŒ[>','',0,'?'),(_binary 'q%\âõ\Ø)–““ud†\Ê\Ë	ô','wp-includes/blocks/buttons/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Å8u\â\Å\Ý÷\èi­0b\Ú\Û',_binary '±\ãô!r3;Ÿ\ËHÀJô\êK¦Ì¨-1 4½VÍ£×«M','',0,'?'),(_binary 'q/[ÿ[‚9“_¨\ï^','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '](\ÏØ¶\ä1µ‰\\Œx',_binary '£N\ãU1|¹\×¼\ÅJþ²\ÄCD§p^N\Ú\Ïú\ê§Î‡','',0,'?'),(_binary 'q1\ÑHamH Q&pR-^D\á','wp-includes/blocks/image/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ØyôuK\Ã0†@*¤±c',_binary '\ÈC³\ÕÀ\ß[ýp«£]Š\Î\ßOŠy\î¥(Ž(\Ì{ÁY&','',0,'?'),(_binary 'q;\é\á\"\ã)­¹\æ«q\ïU\Ñ\Ò','wp-content/plugins/wordfence/css/wf-ionicons.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Al¡°s\Ü\ÊjÀâ¯ƒ',_binary '×’–ð“4\ÌË®Àv¨ù\ãÁ‰M\æŽ`—V÷\ëýZô','',0,'?'),(_binary 'q=uÁ{‘íœ¼ª¶f\Öh','wp-content/plugins/woocommerce-multilingual/classes/API/VendorAddon/Hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`žn`\åI»E\ÑTeo\á\È\Õ',_binary 'Û\éW¹3¯’lù\Â1qú’\×\Ù	ð!J–\Üºg\ÕE','',0,'?'),(_binary 'qL‹ü\åöI—Lcƒ','wp-includes/class-wp-recovery-mode-link-service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž¾\ÕÀ\å}f/c\Ínx5',_binary '\Ñk‰µ„\Ý\å÷\Ã\æ©Þ™(Z…ŸtôM\0\ì¨\Ò;t\r','',0,'?'),(_binary 'q]¢\ÜZ\à¾î²—\Õ{,','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-uk_UA.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ð\à²y\Û#FW9dù\Ï',_binary 'úø®n<¶v¢k­Ð¬­úü9Kd&³,³}n\ê¯m¶','',0,'?'),(_binary 'qh·ý\ÆÔ‡‡;\ä\Å\ì\ä[ž\Õ','wp-content/plugins/yith-woocommerce-wishlist/includes/class-yith-wcwl-ajax-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c¶±™\Æhz\ÛH¼u\éÞ¢Y',_binary '\ÑlŒ\Ér\å\çIb¡L vðù\Ô×…÷´Ô±±zòµÌ˜1','',0,'?'),(_binary 'qhÿ665—y|ò=\ï?S	','wp-includes/js/jquery/jquery.serialize-object.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*…D\ÐB\ruŸ6ª\ä\Óò!',_binary '©À`ŽRÔ¶µ2É€¢`’µMx\Î\Ïi\ÏG fz\æC2¢','',0,'?'),(_binary 'qj¤\æO.C¸Þ¬Ð˜}\íù\Ç','wp-includes/blocks/navigation-submenu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \ïõ#\ïˆØ…d¹P­d”R',_binary '-°d\Ä6 \ÒO†`\ÎV‡3ZšždSÖœ«)uó3','',0,'?'),(_binary 'qz’@Ž:£.r©ÿE¬¯¸','wp-content/themes/flatsome/inc/admin/options/header/options-header-newsletter.php',0,_binary '˜”s\'Ÿ\\”ô\Þ\ÉkR/',_binary '˜”s\'Ÿ\\”ô\Þ\ÉkR/',_binary 'R\Ùmÿºýó\êPcdÁ±• P\æ•\Ù4©\ëKÂ 3kù~	','',0,'?'),(_binary 'q}:$5²cj\îb/»¡ó','wp-content/themes/twentytwentyone/style.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1„\Þ@EÀn\0üš\äDž',_binary 'yJv«¿T­*­\áûB@V•\æ\Ñ\à·\×ISpw‰\ßÇd	¢','',0,'?'),(_binary 'qfù¼÷EHø7\Âd\íõö','wp-includes/css/dist/editor/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«÷`Z\è¬ò1×¬`xes',_binary '%kdcµ\ës\Í\î§b¡‚yôc_*‚Hø\çþ?$øƒq´','',0,'?'),(_binary 'qŽø!ˆ_|,sEKª','wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-es_ES.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼ð\á9\ë\0 V¿IÍž\äœ',_binary '7[3Á6û¼Ú‹Ñ¾ú»\áŒ±]\ã\ä\ê-©\æÎ¡','',0,'?'),(_binary 'q”s\ß„´Æž\àÃ¹\å\Ö','wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\"\rñK€\Ç\ß\ÚÁ\Û7\Í{',_binary '\Ìlß„roH\Ïü\Úx^\Þ\ë/›†‹q`Tý¥=f|dÂ‘','',0,'?'),(_binary 'qž›ýho‰B øð‰÷K','wp-content/plugins/products-compare-for-woocommerce/berocket/includes/custom_post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'QRbŽnD»\Éh¡¯¢B¬µ',_binary 'ˆ¦o+\ÇD•\ï\åŒò\r±¤>D›­7˜8…vD ','',0,'?'),(_binary 'q \ØZý\0=sˆ\r\ß\Í\r\Ó','wp-includes/blocks/text-columns/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{C„µeN|ø\Ùsz<\Û\é',_binary '”NGô\Ùy€\à\Ï®	\ïyô*½~Ú°|g=\ç\Ú÷\Í\á','',0,'?'),(_binary 'q¡\Þ\ÒR+\Òqù\ZŠ2û','wp-includes/js/dist/edit-post.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÌF\Ö\ÏÁý»\È\ÄwF,5­T—',_binary '.Š©\ä\"mBôu–‰7_Š†“\rC93,R\é™T\Û{ý','',0,'?'),(_binary 'qµfN\Ü\ÎI‘\é\é\åj6ª\È','wp-content/plugins/woocommerce/legacy/js/jquery-ui-touch-punch/jquery-ui-touch-punch.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÈÁ)\í\înª\Ó\'\çYþn\ÄB',_binary 'f\ãG\'5Y“Œ“{\Í\nŠ0\äB\à7X©I	\é\ÈAþ‚¯P!','',0,'?'),(_binary 'q·0ø“\ÄœÁ¿±›\ì5','wp-includes/sodium_compat/src/Core32/SipHash.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª5O&?«Eº	»»%',_binary '^%%ŽhTŠý,‘\æû¨³¾k2¬È®n=n%:\Ò\ï','',0,'?'),(_binary 'q¾†5@£*=õ&´\æ\\X\á','wp-content/plugins/wordfence/lib/wfHelperBin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\ï\×!·È\Ë\É4Q\Õ\ÞX#',_binary '’—Õ¹%-ø^\ê…qƒ\âU\Êq\àM\é\ÒeY“\êð','',0,'?'),(_binary 'q\Å$\'6‹e\âú¶÷-W]','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/PHP52/SplFixedArray.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nbóx	½‹BC§°?‚¼\Z',_binary '½÷e¯‘C8Á&\rö\æ\Þ\Ùh\r»ò2wó(^Ð™\ÔV\0','',0,'?'),(_binary 'q\áž’l&\Ü\Ô¨©ý\ä','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-hr.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆˆNÿ	ln\Í\ÏL&\Ú',_binary '”5!.[\Æø;-®ÿ‡”“ôKŒ‡Sg\äð-(Ls','',0,'?'),(_binary 'q\ä¼X\nÀ^°ª±\Øj^A','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-shipping.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[ðš\'2-‹Ÿ6 \äF\Ù\Ê',_binary 'u\â\ÒfbždÏüg3‚8\ÅF•ªc¹ó^µ¶\ZH‡1½\è','',0,'?'),(_binary 'q\êB\Í\ÊþÁ…Áõ\ÍEy¡j†','wp-content/plugins/woocommerce-multilingual/inc/currencies/class-wcml-multi-currency-prices.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+Q Z~;£?r,H\Ö	O',_binary 'I¦C¨úÜƒ0\îÛ®ú?¾\Ñ\èö{§\é“;X¶ñ¨²\Ï\Å','',0,'?'),(_binary 'q\êL¾\Ûis>u\Ã_&±','wp-content/plugins/woocommerce/templates/emails/plain/email-addresses.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚\ZŽ¢vZÏ•ŒùcNŽ&c',_binary 'O\Íî´–\ÑBÇ’\r\å—ò-F;y†“!ò\Å0\Èá¯Ÿ—ž','',0,'?'),(_binary 'r[\å\Ës2<¥´¦Ž²u','wp-content/themes/twentytwentyone/assets/sass/06-components/posts-and-pages.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ë!\Ö`\ÊŒ™¹\ç^šø',_binary 'µ‹”j½Qo€ˆ\ã<>¼\nû\ÅùY¨÷­ˆŸg1¼b','',0,'?'),(_binary 'r‰[¶—D\Æx\Ïýût”¬','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/register.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q®MW5‘\\=N±¸#þ',_binary 'ù\Í\é_úDù+\ÜÀÁôÿŒ\ê%4ð\'Ÿ+64Fn\Ú1,¥<>','',0,'?'),(_binary 'r¥E\ÂbM†¦cµ÷\rF','wp-content/plugins/woocommerce-currency-switcher/classes/smart-designer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼x4dyŠqd\å\àŠ+m/',_binary '\äBŽT©»U\ZñrÃ•kWg¡>Uˆ‰a\åaªc-8¿£','',0,'?'),(_binary 'r”®h’\Åv†\ÏLk/…ö','wp-admin/network/upgrade.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.ò(p4õ#eúƒ7',_binary '\Zl\ïÔ¦\îô vIŒió‡Y)\\÷øô\êDY0ƒV\åL¨\é','',0,'?'),(_binary 'rù…Tˆò¥nP	\á§','wp-content/plugins/nextend-facebook-connect/nextend-facebook-connect.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘\Æ U#šgŒ\ÑZ–S\Üd',_binary 'l\ç¥8÷¬$V\'žK\Ò|\È\Ã$!Q÷°\Ñö98±³ª','',0,'?'),(_binary 'r¼­“\"þ‚%1}/2Y¬','wp-includes/blocks/pullquote/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸\Ç_Óµ^\î.À\Íx²\Ç\Ñ',_binary '\ÎOƒi¡ø\ì_?%}\\ß‡\0ŒC½\ì_fT}Šw÷','',0,'?'),(_binary 'r\Ôq§W4\ÞZOO,ÿ÷','wp-content/themes/flatsome/inc/functions/function-plugins.php',0,_binary '\Êøù¿\ä\Ù\ËR6\Ì{',_binary '\Êøù¿\ä\Ù\ËR6\Ì{',_binary 'ô[½Æ·\Ò¡nNw\éµ%RSL¸ªo ñgÿýEz\Ý','',0,'?'),(_binary 'r+zk;» 4¯\æWI','wp-includes/js/tinymce/themes/modern/theme.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ïµ(3o\ÞU\ê2ÅUŠ2™',_binary '½2.¯ptú\"r\Å`)¸\ë\r.C\Ül\Ç\\\ZžœBIX','',0,'?'),(_binary 'r3\0ˆ—=\å\î\røjB¦Z','wp-includes/js/dist/widgets.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']k±\ß\Ü9§}`£ú\ÚX·',_binary '„Ÿ„eÉ¯Q\è\03¿}^Êˆ·¾\ï\rvú]{b³Æ‹—','',0,'?'),(_binary 'rA\Ñ\Ð^\ä™Qö>=¸\Ó','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/variable/variation-attributes/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´5u÷Ø±Ml&Ü™C1¸1`',_binary '[JÐ‚	Ž&x\Ä“f¸¾*\Z³š¼\ÙöPbË‹³—ÀO¤','',0,'?'),(_binary 'rG¼¤#7Ø«=\"‚	Ë–','wp-content/plugins/woocommerce/templates/cart/cart-totals.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­¿R=¦Rñ*c\Èr3',_binary '†U\àH\Ò6\ÐY¸‰ À!õ\Ôò\Å\í\å\ê;\Ò9qF…','',0,'?'),(_binary 'rI\0yg\×E!€£û2\0C','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503-lockout.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ï	n\Ú{žñ\É\0\è0U$Àñ',_binary 'G\n\Ø\ÉKsñµ\ÝI\'«\Ûmy9\ZV­\ÑD\\:\ÝÄ‡\ë¨','',0,'?'),(_binary 'rN1\Ôbç¯¤­p\ÂL|.','wp-content/themes/flatsome/inc/admin/customizer/img/nav-icon-fill.svg',0,_binary 'z–J¬m´.÷\ã\Ö:Þú',_binary 'z–J¬m´.÷\ã\Ö:Þú',_binary '?Z*K$ó\ê}=.&z7Üªð†þ\Ê6\ÐTfÂ¡*§>','',0,'?'),(_binary 'rS:…`÷ eà¿¸ùB…','wp-content/plugins/woocommerce/templates/single-product-reviews.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™õ›\Ñ}\Þw\ä^\ç\'ü¨ýð,',_binary 'ù4­@=Ÿ·O\Ì\\™\áô¢ªK\0‡\'P$Q¦Ž_³\rsŒ','',0,'?'),(_binary 'ra\æ¸P{^p._	Àk—','wp-content/plugins/nextend-facebook-connect/providers/wordpress/wordpress.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô\0FG\à\Ên\ÓMPŸnX',_binary '\æ7\ßLzp93»\Æ%\ÜÈ˜ÀBM”»¾ö\Ò.l»\\t','',0,'?'),(_binary 're†ü\'Û·ó11d\å\ß8³','wp-content/themes/twentytwentyone/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T¤qŽ·MÝ‚œÛ”iD',_binary 'H\çs¹´Šœ„„ý\ìP\Ö_v5a÷¿|&µG‹dB','',0,'?'),(_binary 'rfž²¿\\–\nÁÛr×‘','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-customer-list.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'È‰³Q/\ãv—\æ\ã‡j.3¼S',_binary 'u©¯A¢\Î<—d\æ]­T\èJ\"cXŽR½\é¶\Z¨†5ˆj','',0,'?'),(_binary 'riN<hE9dôÂ…\ÖwÜ ','wp-content/themes/flatsome/inc/admin/options/styles/options-css.php',0,_binary '€®F¥ü?•¢•±¶—A9®',_binary '€®F¥ü?•¢•±¶—A9®',_binary '\å\êWû„`´p$\Ì\Â÷‰3\Æö\â4z¹ÁŠa5Š>U|','',0,'?'),(_binary 'rtŸIÂŒg[¼\Ë; õ\ì?','wp-includes/sodium_compat/namespaced/Core/Salsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rV\ÞN…ck0\ã}/õÕƒ\å',_binary 'n\ëK \ÐkZ\Â\Ö	À—ò± N$ Ÿ EÐš¹\×e\Ø$','',0,'?'),(_binary 'ry¿5\Ì\Ëe‰úò\Â7þ6>','wp-content/themes/flatsome/inc/admin/kirki/modules/css/property/class-kirki-output-property.php',0,_binary 'bøˆegO¡\èR\ÛA^ºae',_binary 'bøˆegO¡\èR\ÛA^ºae',_binary '†Ul\ßdC*RMšÕ«Ý¨!à¼•\ä\éKœ³\Ø=sŠƒ\Ì','',0,'?'),(_binary 'r€™©•…­P/\Â\æ','wp-content/themes/flatsome/inc/extensions/flatsome-infinite-scroll/templates/image.php',0,_binary '“#)\Æ\é†Ys\ë–\ìˆÿ\èS',_binary '“#)\Æ\é†Ys\ë–\ìˆÿ\èS',_binary '˜9\0©˜o\ÅóyK\ì\Î4ef\Ø7\ËSB0¼\ÈRñ(','',0,'?'),(_binary 'r‚j´\à‡sö‘0<ÀV','wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/PL.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'saÈ†uS›½·Ó®Ë†¹',_binary '‘\Óþ_]q	ˆE¸\Ûp4$³·2%rÿ\ØÎ3¿]Gd','',0,'?'),(_binary 'r„d|ú\ä¼L2®\ê]\0\Ð','wp-content/themes/flatsome/template-parts/header/header-main.php',0,_binary '—dŸ\àH¿)\Í%®ƒ\Z',_binary '—dŸ\àH¿)\Í%®ƒ\Z',_binary '%TK\rrƒ7AØ·³;Ã€ò=@)Žp/¹:)ˆ\è¼i´4','',0,'?'),(_binary 'r‰(nÕž¨ój\ç—\ßb\"','wp-admin/js/media.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'žL¨Hý\n\è‰!¸!3º\æÜ¨',_binary '+r\àób\Ó\Êõ½D\ÉV•T\äØž|õ}ÿ’ŒPò†Ë','',0,'?'),(_binary 'r‹3ªª\ÅmHLH[{\Ã','wp-content/themes/flatsome/template-parts/posts/single.php',0,_binary 'vI?\'Ž\Ýió…A\r–©ùJC',_binary 'vI?\'Ž\Ýió…A\r–©ùJC',_binary '·µ¾yÖM\Ëz²r^Ãˆ\È-\Ñ\ï~Ò®2É\n¹6X¦','',0,'?'),(_binary 'rŽQ-þ°¶û“/n€‡\Ñ\Î','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/fonts/yith-icon.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¢3Hˆ\êD\Ô\Ý6V\0\É',_binary '\æ®ó\ëaµMœT…´t€0§C]^¸V^;¤,\'\Z186*','',0,'?'),(_binary 'r”\"µ\ì\n‘ñ\Ñ8y® i\'','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/handpicked-products/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oSŒCs3õFDò¹',_binary 'šñ\ÇñùÝ€A\0½?PÀ¾‘ög¥\Û,¼¶C˜\áZ^=ò','',0,'?'),(_binary 'rž\n\Ñ\Å\ÂL—‹{]\êq\ÍE','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-fee/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pvB‘O`9ŒO˜g\Ñ\ÞY',_binary 'y^E\ÄI \íÏ½.<6Œ¬˜¨\ìx\à\î2¾\Åy\ê-‰\ÌÏ‹','',0,'?'),(_binary 'r }+\ï°\ÃG+%K\Ý','wp-content/plugins/nextend-facebook-connect/index.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÔŒÙ\0²\é€	˜\ìøB~',_binary '\ã°\ÄB˜üšûôÈ™o¹$\'®A\äd›“L¤•™xR¸U','',0,'?'),(_binary 'rª\Ü5‡¡“+Ï„ŒýÆªd','wp-content/plugins/ti-woocommerce-wishlist/assets/css/webfont-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„3›ÿ­P ÀÛš&\é\Æ',_binary '\ég˜f2ýÆ²¼ß§*F\ès8–\Ôþ8\ï\Ë\á\ÐMXJr+','',0,'?'),(_binary 'rµ¢š\ì8÷\rþ\"j\ëv^^\à','wp-content/plugins/ti-woocommerce-wishlist/integrations/theme-oceanwp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñ5²«\r\Ø\Ý&õê•²ª›?',_binary 'ý\rº/\"2‰1\ç-°Š«\n’ó\ËvX|\Ï\Ìˆ\ësj¹(','',0,'?'),(_binary 'r¶Ÿö\á&Eö\ÊeD£q','wp-includes/blocks/social-links/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=\Ðþ»q\æ¥	ÉŒÑ·40®',_binary '\à°\ä ‹‚0w8À¿õ1\n¤ÿ/š\Ý/:x\0»].\äø”','',0,'?'),(_binary 'r¾*¾\É\'\ÖTp\è†N¼!\Ü','wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-values.php',0,_binary '(Q\Ý\Ðy®9¯\ÆXh4p–',_binary '(Q\Ý\Ðy®9¯\ÆXh4p–',_binary 'š>s‘šF\Éõ¸¿‚‹xS®Ì±\ã\æs5A\ípZ;','',0,'?'),(_binary 'r¾z™UOú”Á\êù²\ÚÞ¿','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/single-product/edit/editor-block-controls.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ë¦T+øVð\Ñ\ÎK$ö\í',_binary 'Áî º\Ýø~D\Ïi¾o\Êÿ®\\\ái†\æ7_\å³ñ}F1','',0,'?'),(_binary 'rÀtUR)™\ß\è´ó l_','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-subtotal/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wý\'\ÝP™xhVX;ú',_binary '¤ù(K°Js,\"j\Õz\Ã\æ\â+bU{\Ï\è‘Y	™œ','',0,'?'),(_binary 'rÀ\ÙFR6ª(Ð£MV#32','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/banner-premium.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9X\Â=\Ñ:)z\'„\ÅXH',_binary '9^\"B\Æ\å\Ù\ÂòE;:­-t\Ñ~›+&ú%An','',0,'?'),(_binary 'r\Íƒ¬¸^\Ö\Ñw<¾.s¦\Ñ','wp-includes/blocks/post-comments/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—~1¡²\ïKLöMÀ¥‡É©',_binary 'j¾¯`î²+A\å+þ÷9½5·¥¥¥Š SJ:9\Ãr','',0,'?'),(_binary 'r\ã\\b¿\ÎX÷l2A•\nŒ','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-capabilities.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\ä\æx¤\ãG³{`\áñ}',_binary 'õ·\íHk¿¯/Ée±\Ù\Ú ¦^ƒZ\ÊC™\Ñe\ã’`ð\ÙO','',0,'?'),(_binary 'r\è3\Ûe\\ö\Ì,S„q','wp-includes/class-wp-block-supports.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D¿‚°ê¸ª\Ô\Ý4Øˆjf',_binary 'ÿ­¡S)\Þ\Ñ\è¡\ë ¸\èar‡&1\r\Ä3\ï7mv€K','',0,'?'),(_binary 'r\èK\Ñ\Úm\è\ç[\ÖiPö\Ä','wp-content/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories/Admin/UI.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A(ŸLœ¢ð¨÷¸ô‚?:¢',_binary '\"\ã¾C8\Ù\Ü\Íoƒ9p¥O>·\ï%\ãÐžF\é*C\Ê?oB\é','',0,'?'),(_binary 'r\èe,*\ßJ¯`8(ú‘m','wp-content/plugins/woocommerce-multilingual/inc/template-classes/store-urls/class-wcml-store-urls-translation-statuses-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \ãt‘xòü\ì½O²\ÏJz',_binary '\Üu~\Z\ê¬õ°?S¶\ëoÃ†×•Š º4+·¸—.','',0,'?'),(_binary 'r\é_\è/™\ÍHG=\Í%—<º','wp-includes/images/arrow-pointer-blue-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%m\ârÞŒ]4¸9c\Ï',_binary 'Á°{&DOÀz›\ÓA…fó/\É\ÏgÃ¡­†\í\Ï\ÄA]~À(\ç','',0,'?'),(_binary 'r\éör‡(J¯g÷(¨y­t','wp-includes/js/mce-view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2s°H«¡Ù‘;[¿©–	s',_binary '«\È8`9Ú°n\é-.\Ê	H\ÇDp¢«k+\ÐÎ³—ùbI','',0,'?'),(_binary 'r\ìÙWDM\0%6ò\Ö)','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-recently-viewed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£b{¾b:Šò\Ûý—¤\Çø0',_binary 'm,V÷¡j\î\×fØ¨\Ë\\‹Î¯V\â+1/Z§Y:\Üp','',0,'?'),(_binary 'rò.(…¤Fv\ä •\æŽ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/edit-utils.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	úrik}\ægµ \Ô\ÖHC ',_binary '_~]\Ñ6\'!½Ë‹\Å_\Ç\Ýçž€\Õ#L\È\ÖMH^\Ä\Ûg','',0,'?'),(_binary 'rói\Ó+˜le\nñ‡Á]ñ','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-enhanced-select.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')z)—\á! J 1‘ÿ!',_binary '\ÉP&+xKþe™t‡5_\Ò8úÐ¹Òˆ\âÍš\È\ÛM','',0,'?'),(_binary 'r÷)\æ¡ò\éþ\Òe\Úülü','wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6$w~\Êj\Ç\èk7\è\Í\Ñ',_binary '£Å•¶	1‹7©Ø•\ß|¨¯x\'\ß\åtM»\Çt\ãvòW\Ç\Æ-Œ','',0,'?'),(_binary 'rø—h^Ž\ÉŒg«=\Â\Èû','wp-includes/blocks/embed/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e)\Ö}•úQZUžÿ\ã-\Ô',_binary '£kƒ˜	¥xb®{i¤aõ\ë\Äx|\\	Ñ˜\ì\åV¬U±','',0,'?'),(_binary 'rù\Î\n—\Ûb°•#ð©\é','wp-admin/css/media-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Fn`¶”)º\è-<mG2œ£T',_binary 'õö\Æ\'Z \ä\å\ã\Î#\Å#/›‰ovñ\\¢\ÃX–¯6>u]\í','',0,'?'),(_binary 'rù7²\È/y*¸aÚ›P] 0','wp-content/plugins/wordfence/views/blocking/blocking-create.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ºú¼\Ô9l\nXQƒ0h„Q*',_binary '„Å¹œò¤÷øYZ/‚÷\æ+`\â_{\ØT¹þn¢ªH´','',0,'?'),(_binary 'rúŸ\â\î6`\év\áö\'–P9ª','wp-content/plugins/woocommerce/packages/action-scheduler/classes/schedules/ActionScheduler_IntervalSchedule.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿\ÝdB7;ú\Ã6µ\çZU‘2',_binary 'üÑµ8EN$J0G! I~\å&;Ž(·tòÂ˜k\Z\":Y','',0,'?'),(_binary 's¶W…ù\ÆQ\Þ\\K©\ÃG³','wp-content/plugins/woocommerce/assets/css/jquery-ui/images/ui-icons_cd0a0a_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p‚~„¬\èþ\èó%™.',_binary 'DÇ‘”\àÀX†TRœ;\nŠ·\Èß£”_ÀGùPù%ÿG¸1¤','',0,'?'),(_binary 's&\Üç¹—©DCl\ås¿H','wp-content/themes/twentytwentyone/assets/sass/05-blocks/heading/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':J¹\Z^¿\Ì{Ó°”S”T\Ý',_binary 'û¯:Ì¶&E ˆ\0@Ø¼·k\ÅP™	ón2R˜I\×','',0,'?'),(_binary 'sò‹«As”Y¼ºø¸D]','wp-content/plugins/wordfence/views/scanner/options-group-advanced.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\äP¬ˆðÿ\ÕCoº\Ù\ÏÀ>~›',_binary '#­~–½6ƒ…Ëž45–\Åû\ÐLWƒ\Ã\íVŸ©^°','',0,'?'),(_binary 's>bQdF\Äu\Â7u','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ReviewsByCategory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\ÂÀ\n\'Fn/\Z†sï“·',_binary '\Ò\"³\n`÷\è³SMVé•½ðœHØ…PGPg]\î\ÞÁ_','',0,'?'),(_binary 'sg›Š\Ý\è~=Bf†”','wp-content/plugins/woocommerce/templates/product-searchform.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·\Ój/Þ­“qÈ¦@T',_binary 'tO\ÂÞŠ±»fg–ª\Ò\'\'¾Xn!\0\"ù³œ¯T#\ïñi','',0,'?'),(_binary 'sœ\Ä(\Å=3*ƒ9	','wp-content/plugins/wordfence/modules/login-security/css/ionicons.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\áÆ£Ù¿c;®\Û\âz¾‹»',_binary '¬\èNôJ¾s´@\Ñ3	š:h)•7Kò›<”\\Nü+','',0,'?'),(_binary 's:\Õ<¡p\Ú\ZØ‘ô\×\Î?U','wp-content/themes/flatsome/assets/js/builder/vendors/vendors.js',0,_binary '…¼öž\Ó\ÖfK\Ç–Z˜\åm',_binary '…¼öž\Ó\ÖfK\Ç–Z˜\åm',_binary '¦%\Î\Ñ\Ã!S%ò\á&\êžb\à)ö&hHo\ÔDB\Ê#U\Ö','',0,'?'),(_binary 'sD‡‡‹ù\Ë\ìI6Š„|Uö_','wp-includes/blocks/post-template/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}-ªù\Ù\Û?•±ñ«³˜ng',_binary '\ëS‰”\Ê5¾D÷hm\äÉ²þÄ–\ßñ-o%3\á”-Á>','',0,'?'),(_binary 'sL–Y\Å\ÎC›‘aò—','wp-includes/blocks/embed/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ>“\\€P¸~©ûª\Å\à\â',_binary '\â-³k.ŽL\Èß‡­S‚?\×O&Š.¯Ä°\Ð%Ì¡\ÜB','',0,'?'),(_binary 'sN-õûD^¹gŒ\ÐEøÿ\Î6','wp-content/plugins/woocommerce/includes/admin/plugin-updates/class-wc-plugins-screen-updates.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Î9l+Áˆi¦‚ž—Ñ™‚O',_binary 'lÇ¼\ÌÆ\Ûõ…u˜\\`š»\Ù{À\×Gv´\ÔG<!§','',0,'?'),(_binary 'sQm+5^˜ü‚?#§vG,','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/checkbox-list/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g“Z\í\\s\0‰˜2\Ú',_binary 'ŠØ£…žhPý+6s\0]œ8`º…5\Ú\Â\"nj1‚7','',0,'?'),(_binary 's\\{>?#³ ª\ê7§­÷B›','wp-content/plugins/woocommerce-currency-switcher/img/move.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Áôü\Ï3µ¦˜|¦Ï¼a¡\ë',_binary '²Uªô\Ùþ|\ëJ\rV	\æ\×e¦v÷\ÞO|/jñ¥\Ü\Ä','',0,'?'),(_binary 's]«]:\ÍR_¢?Œ‹et','wp-content/plugins/woocommerce-currency-switcher/js/price-slider.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'coVs\ä]Š\Ý\'\ä|L\Él',_binary '\ì–?ÿ nûN\ä…\ÒÅ—J*¸¢\'Ð™M~¬\éòð+Š&•²û','',0,'?'),(_binary 'saO¸Yˆ,~ràµ­k\Ã','wp-includes/blocks/search/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÖÁ­%fk@Q°rh{Á',_binary 'iFQJ¼“Šzn\ä\àò\ãfVf¥Q…Pò‡5‰…\n‡ø','',0,'?'),(_binary 'scn}\í®|f¯y{Ž›','wp-content/plugins/woocommerce-multilingual/res/js/tooltip_init.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\îŽðº\Ío¡-š\n¿\n9\"',_binary 'E\ÄvK\ÖøM?\à\×|\è\Ï!\Õ\î\á\Ù{\0t\Æò?j\Ïn','',0,'?'),(_binary 'sj<\×+£ü\n›ÿùÏ¼\Ûó\Ù','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'žDúœMµR{iŠ®Pc',_binary '&w\"\á©<…˜\É?H\çŠf÷\Ø>\î\î\ZRø1%B–\Ó\Å','',0,'?'),(_binary 'sv,{X\äÄˆþTK]i•','wp-content/themes/flatsome/inc/builder/shortcodes/values/col-spacing.php',0,_binary '&ñû\ï¯\'[\Ò\Ç1}\íñ\Òþ£',_binary '&ñû\ï¯\'[\Ò\Ç1}\íñ\Òþ£',_binary '6iB\Ð\Ï[\î\Î}J\âg\Êò[\å\Ã!mhTpˆ&¬½Ù©‚=\Ê','',0,'?'),(_binary 'sƒ‡4V˜Õ‡¥‘UU\Õ','wp-content/themes/flatsome/assets/img/payment-icons/icon-skrill.svg.php',0,_binary 'q\àfhJŒÝœó™Fyz\ï',_binary 'q\àfhJŒÝœó™Fyz\ï',_binary 'ó\Ê!\ÊRŠ}\â\â°\Ï&x¤cy\ËN\ë\Ås(EŒ L\Óe','',0,'?'),(_binary 's–[cA›“m¹Šm\å','wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/components/table.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ýmÙ…\Êz\åù»Sd˜',_binary '5g2\ÑR\í\Þý0o|ºÆ­m\ãq½\Ñ#m_\Ï‹\Îô\è','',0,'?'),(_binary 's™l\Ò4*\Ú}\Ñü“M','wp-content/plugins/woocommerce-currency-switcher/js/jquery.ddslick.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q^;l¨¦p*4Ÿ[ª\\',_binary '\å\à|\r&‘dˆ Û°p«e?\Æ\Z/n\ã\î\'\0K\Ïb47“\æø','',0,'?'),(_binary 's¡\Î2K\nš°l\ÆFžªu/G','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/jquery-ui.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<*†\\ƒ*\"(\\U\Æí™«²',_binary 'U,ý[PU‹’lò¿oss¿\Ú=³\\¢«ƒ$Ðe','',0,'?'),(_binary 's¦\ìÓ£Jö³\Å~’\çk','wp-content/plugins/akismet/views/stats.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦g©g€\"«a\âû\\M±\Z\Ð',_binary '\0ý1MkuÀ¸;qÜ¡‹\Öm¤\äùM7?’5VÆ¾R\È','',0,'?'),(_binary 's­Àª”ç½´\\“‚—A\æ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/types.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gÕ‡5¿\ÅÕ›D\Ã<—wÿ',_binary '»¥\×rhg3x½\ÌM\ç,@ø†\î!¨¡÷z\æ\Ä\åƒa','',0,'?'),(_binary 's¯1£|\Ðuw»å§¨\è','wp-content/plugins/woocommerce/includes/import/abstract-wc-product-importer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kÿû\n\Zª\í\Òdqnd\Ë\Í',_binary '\'¥^W»3R³¦ÀG™†¾o„œ4—$a\íL÷	3E•¤','',0,'?'),(_binary 's²E¸Îžq\Èp°B\í\Ú\Ö','wp-admin/css/widgets-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”\'T1Š”¡­l\ÙAU',_binary '.l¬4ºZüƒªeI#m÷‘­Eý©•Ÿ‘ŸGC\Ì','',0,'?'),(_binary 's·º(:Ó£$·¾°þ\ä\Ó\r','wp-content/themes/twentynineteen/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡0\Ð\"`Å„´\å´.T\ïN',_binary '\å\Éô¶&ô¯™+¶²a½\Ê ±²É­gW!1“»\r','',0,'?'),(_binary 'sÀ]‹­Pf\ÛðøŠ\Ø\n','wp-content/themes/twentynineteen/sass/variables-site/_columns.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼_É˜¯6L:V™!wu›',_binary 'w¥0–Ìƒ\Ê|^\Æ;Ym\Ë‚°\ãn\ÔL¶\Ùi2¬£4¼','',0,'?'),(_binary 's\Ê\è×–þš:‡û\×h\ØS','wp-content/plugins/contact-form-7/includes/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚e\×Y‘¤®f5A±P¾²ÕŒ',_binary '”ƒj·\Ð\Çr\ÅDi˜/±D£bd\ÓÏ¨†ô#î¤i„«','',0,'?'),(_binary 's\Ð\Â¢Awÿ\åe²EE‡T','wp-content/plugins/woocommerce/includes/wc-page-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\íu\Óqq#eT¿\ß0„\Ã',_binary '­‘ò\Ô^~ƒ_š[#1¯evŒ\ÚL\Æó\Õ3~–·{\Ü ‡/','',0,'?'),(_binary 's\Ò\àüœX=SLVøÀ\Ðú','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z‰¿šrœ>U<z1x\Öe',_binary '\Ó2L¾Y›\È\ì\Ð6[þ½\ÜSŠ\âj\Í\è@KÂŠ#','',0,'?'),(_binary 's\ÖI\ç7Ì¢/\\\Æ\Åª’w)','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/rating/edit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÌYÖ’T¢“‰e8,Ãµ',_binary '/Jªs™^P5\â÷¬o@bÀÀÿ7\èø\ÍW,5\Äwp…','',0,'?'),(_binary 's\ÞKªý!ó\È7m¨{½¸\Þ]','wp-content/plugins/woocommerce/includes/wc-template-hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4i­¬°\Ñ\å5’gnþ„„8',_binary '_\×Ufõóš%§å³˜GFw\Þ=œT\èÐ \"\ÛÁš•\ÞN','',0,'?'),(_binary 's\ÞÅU\'÷\ìÀe@¡d‹','wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ò’:ñ…K\à[\ÏIw\\‰ªg˜',_binary '`e¾‹	“n²\í®O¤¢\ÙJM§%³N\ìhA\ï¯{ghÁf','',0,'?'),(_binary 's\á\í¸4Œ ¢‘R¿X>OŽ','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777777_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h…^n=(Š±&¡ñÝ‚¶N&',_binary 'S²óDIBÿz\Ñ_-?(Y\Î\ãpE¥yûÆ¹A¡','',0,'?'),(_binary 's\æXºŸ(L‘¯‹Y¨7©ö\\','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart/actions.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C|\Æ\ï½Ni‰¥\Úl»\Ðÿ',_binary 'daj¼€üž\0’Sœ™ |ª¨T/T5Y?\Úh\à `ó1\Íb','',0,'?'),(_binary 's\ì$¡\à\ÃcûgAú½\'4\\','wp-content/plugins/ti-woocommerce-wishlist/assets/img/premium_logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷Ápv6I0+{?<Õƒœ',_binary '¥TcôÙ¦l1`©‘9§¨÷\ßj\ã\Çò§<\Û\ÃV\Èþö²','',0,'?'),(_binary 's\ì\ÃË±ŒY*u¿©\áO„','wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ú*q”¶BIt§ÓŸA<\"',_binary '6qQ¥†\î`ð·ˆd!cf¶¶.ð‰øBxq','',0,'?'),(_binary 'sø67)—W\n]/\Ûj8L','wp-content/plugins/woocommerce/templates/single-product/review-meta.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x	ˆ\\Ò¨$\ÌÕ¬\Ö:',_binary 'Œ€[\èc¸-…<´…•€!¥£\áEC¹ÄŒoƒ','',0,'?'),(_binary 'sø\ïˆü*TV©1¯oE','wp-includes/js/jquery/ui/effect-blind.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X=œ¿z\n/´7q»\ìg#¬a',_binary 'tB\çQ¿)ƒ\àþV\æV5ð\í°\ÆTv¥8V‚ë›¥Y/V\Ä','',0,'?'),(_binary 'sú½\\Z)\Ì23ˆh\Íl','wp-content/themes/flatsome/page-blank-title-center.php',0,_binary '(+‡\Òù\Ë\áwÀ&ªžL©¸¾',_binary '(+‡\Òù\Ë\áwÀ&ªžL©¸¾',_binary '?z`\Ø$\Ì\ÊÊ²\ÎG#\Ç0y\"\ÎML©r¾\ÖLs\Í\ÜÔP¹','',0,'?'),(_binary 'sÿC4M¾*µ¾*B«)µ','wp-includes/css/wp-pointer.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\è,\ÜÔ§\ï°ñ(þ«0(y',_binary '°®Ijþõ6Ê„ü{—£éˆŠ§‘\"ó	Ô®ió6Ç­','',0,'?'),(_binary 't¯\È5±]¬Ã¶\Ð±','wp-content/plugins/woocommerce/assets/js/admin/backbone-modal.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬vO\ÐN²\çyYŸšV7\n\Ý',_binary '¾¢/ðQ0H¹ð+\Ïu!«\ÝÓ’+\äÐŠZ\Ã\n¦\í','',0,'?'),(_binary 't§6\Ø=ƒû]c\É:\Å\ß','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-payment-block/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\áŸ\Üú#¯š\ï\Â\ÔÛ¢\Ñ=\Â',_binary '‚\èZ4\Ó$q \à\"%rv}ø\Û\ËS›ð\ê\Ä>Žˆ‚O','',0,'?'),(_binary 't	ôU” iÞ§\ã\"•\Ös¿','wp-includes/blocks/buttons/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹o\îhdÔ¦\ÊK\Çh*H',_binary '\Õû”}Ÿ»·¦zv|1~*So\nEþ\ËÐ¡x\âñø[T','',0,'?'),(_binary 't*´3ùd_`yC–w\è','wp-content/themes/flatsome/inc/helpers/helpers-icons.php',0,_binary '0£)\Ô\ÄûÁU$[\n',_binary '0£)\Ô\ÄûÁU$[\n',_binary '\æ ˆNm\åQÁŒ}\ÙB¼	Sl‡\ß\â‚ó©\ëš\Ï','',0,'?'),(_binary 't\",/A„7\Äj\èGõñ¼','wp-content/plugins/nextend-facebook-connect/providers/twitter/twitter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ä°–B\Ê¦[m·z\È9 ƒ',_binary 'ú	\'\ÊË|Sl=ô)£eª?\"x`&Ež7Ž\Ùh•T•','',0,'?'),(_binary 't&Ó…~þ\ÚýþÀ\Äe‡‘\Â','wp-content/themes/twentytwentytwo/inc/patterns/header-title-and-button.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZÃŒ¿R-¨5Ò¶—\Ù;úX',_binary 'Òµ;\\RûnD–Ÿyºú½UŠ#\×\æ¿m§­þa¯','',0,'?'),(_binary 't/„Œ\æ¯‡Ji6WX\Äý\Þ','wp-includes/class-wp-recovery-mode-cookie-service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\ê-‚©‘¢›*xrf\å˜',_binary '\Û8…-\ÙH0F\ãy¿£ G¹°–÷¡¢\Ú\ãýÇ‹\Þ','',0,'?'),(_binary 't5^	kS(1ý\ézŸG^\Æ\å','wp-includes/blocks/archives/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'MI¬/V\ÖXQÁŒj*',_binary '¾f“\É>\ÛÙŽ_^\ÕU\Ù;/\â\\_0œ—\Ø!o\Ícy','',0,'?'),(_binary 't6·\îžO¬\raŒÈ†\ëf','wp-admin/js/plugin-install.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ä\Îch\äP\Ú\Ì\Æ\éP\rDW',_binary '”ð°)\î ˆ $Kö8v3\ÉñX&\æ¢okv¼\ï\Î','',0,'?'),(_binary 't8ŒÀ\Ð\ïp¯Ì‹\Õz{jDp','wp-includes/css/buttons-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i¡ºÔ]z~c6Ÿ\Û\Ïg6',_binary '\ìL\ÃXæ©•f†\í\Z\ØtC5¯i\ãfS\Ê(\èR¥&ž=‚','',0,'?'),(_binary 't?þŠ£›È‹™¯â Š¬','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/handpicked-products/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\éP£#ÊšS¬”¼\"š',_binary 'Ôš¶\ïÄ•iSÃ«˜\Ä\Å:Q¿\êRÁòI	€ Gž\0%','',0,'?'),(_binary 'tHH-’Ò¨Í¦\0±mÔ€','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-methods-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vR\Ï\ì&÷›\Ýj\Òõˆ1',_binary '¶l\ä£fh¿²\ë˜GLš°>.3Þ°„HþŠQ÷úû§','',0,'?'),(_binary 'tIVü:–Ü)\åNµ¯µ¢','wp-content/themes/flatsome/inc/admin/envato_setup/create_child_theme.php',0,_binary 'B\r\Æ\×ð†4Ì€[\Éö-',_binary 'B\r\Æ\×ð†4Ì€[\Éö-',_binary '\Ûe¹\Ç.%VYùûŒús\ÛWú÷R\ég\é\æ\'/„lÃ‚\ï§','',0,'?'),(_binary 'tU\Ò/Ds¤IÚ¤\Üst\ã','wp-includes/js/wp-auth-check.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'HÀ6\Ó€\Óœb\ËX¾+M\'',_binary 'n@›¬ó¥·to\Ò:—\Ð\\øe!65¶\ê,KƒV\\=','',0,'?'),(_binary 't[[ö=ª6u7;YºžT¥','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4s[•\Í\çlAc4Áf¡¨ö',_binary 'Æº\Ì>\Êy\×.~yK¾^¹)*f´°´‘6F·','',0,'?'),(_binary 'ta©;_Y\npª=[_:BûŠ','wp-content/plugins/wordfence/images/icons/check.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸…DF\Ù\ì¦\Ô…\ËP\èL',_binary '\é\É÷ù+\Ç\ßÊ£“Ñ„È¯÷\Ù?\Ôõ\â+\×ý\0_\ÈÅ´Qq¹','',0,'?'),(_binary 'tj\çº<Uÿ‡\Íòc¡‚%’','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/BillingAddressSchema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž:¯R*šª¬ô)¿°ø‡œ',_binary 'ò\È[\\™G\Æa\âa\']\è´\æÇ ¯†8„\îð·#¢','',0,'?'),(_binary 'tm6Û—ÀqºÿŽ.£=j','wp-admin/css/colors/blue/colors.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1ž~\ç2^eÂ˜Š\ÔD\æõu|',_binary '0s\Û7\â(¯‚\Ü2<í˜”\àÁñ\ìf>Áj*8H„Fƒ\á','',0,'?'),(_binary 'tmH\\#¥”ž™)\n\É\íP','wp-content/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦\Åû~zQûG\ïK©\Ù«',_binary 'U€~xœd-Á/}\Ò>\ÊN€q\ÍÑ·œ\Ç9«ÿ‘ŸP','',0,'?'),(_binary 'tm¶\n£‘GO	\'ú\ZÞµ','wp-includes/js/jquery/ui/mouse.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿–\æ\Öeu½\èj´‘£',_binary '\á;-36jÿ\ÈP3q[O’}{ò÷6ôC—SCk\'2ù\Å\Ü','',0,'?'),(_binary 'ttaöˆ…|\æšw\îZ ò','wp-content/plugins/woocommerce/packages/action-scheduler/classes/schedules/ActionScheduler_Schedule.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ®v\ît;—Z\ã\ãN\×mÄ¼',_binary '\"-Ü¢ýum\â€s–‚w>vu«J•§\ÍÔ¡X[\å±6','',0,'?'),(_binary 'tz\Ùý ß¸Žcšc¯\ÊŠ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/component-metadata.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p§&\Í=PHJÕªzbka',_binary 'j@NBš„fk‹ \Z>U\Þ\ê:ºƒ\r÷F\ß!\Í»ö¶y','',0,'?'),(_binary 't}ü+Az)Ö§hé½¤“J','wp-content/plugins/woocommerce/assets/css/twenty-twenty-two.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ËzÃ›Ã¶{CªòZF^',_binary 'nw÷\Ý}\×ow#?ubñ\äò´Ÿ\êµ\à,ÿ­\Ó+’\Ý\Ç\Ìg','',0,'?'),(_binary 't¨€û‘.¨Ã••81½','wp-includes/random_compat/random_bytes_com_dotnet.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nM@<\ß\ÛA6\Â@!Y\à\ç',_binary '.#©$.Nñ.\Ü\Õ\\\"\ÜÀCuj€%HŠ‰EJÖˆ^a','',0,'?'),(_binary 't‡}“}dŸ¯‘\Æ/\Ø/}e','wp-content/plugins/contact-form-7/modules/constant-contact/service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú°dL\Ç>y\ê\ì`\á;c',_binary '.šú4e\Ûñ±X6\íÞ­?:4\0¤\îð\Ó@\åD^\Z ','',0,'?'),(_binary 'tŠ8õš<Ð•\Ñÿ\Íÿ\éO','wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks/Appearance.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[Æ²ó\ÉÏ˜eHÙ(\ào»',_binary 'B\n6:\Ïyq§Q\æ%C\"¢%½r\×1\Ï%.¯H\Æ^„™œ','',0,'?'),(_binary 'tŽJ>.+\äF|#tr9R','wp-content/plugins/woocommerce/vendor/composer/installed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ö\ËÜ¡³ª+òq\0v¦',_binary 'ÿ—\å\ÙHd•†™ƒ¢-\r+	[õ\å²\àIº¼²%n«%¹','',0,'?'),(_binary 't•žý(LOz#6SF9m¹6','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-da_DK.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿ-\ÈR—I—º¸þW\Ø\"M',_binary '2rš69\â0\ÎþÒ‚>ûEžš£t\×\Z¯Ld}ýˆ5ªkb','',0,'?'),(_binary 'tž»\íR\Ë\ÄOLZ\Ìö\Æ\È\å\'','wp-includes/blocks/query/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ\ëzDyù2>r`U¸œ',_binary 'x)—­ƒQÄ ]\Þe\Ýð\Í+\è}¸r#\Â@\é\Û\Åó','',0,'?'),(_binary 'tž\É0›É™úMz\Ìóq\â','wp-content/plugins/woocommerce/assets/client/admin/navigation-opt-out/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0ù›‹\Ð\Ã?5WS§ »•',_binary '\"D\ÏiEXF\ä¦xÁ\'ô=¯Î¹\Ô}}4fv4\Þ,(ô#D','',0,'?'),(_binary 'tŸV@\0ÁÜ½òq\âW\Ö3õ','wp-content/plugins/woocommerce-multilingual/vendor/wpml-shared/wpml-lib-cache/src/cache/class-wpml-cache-directory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷{,S\Â7\Ítk\Éoo\ê',_binary '\ÎX¡–º\éž3ev$—\çV;cE®lÖ¯\ã#v','',0,'?'),(_binary 't¡W^~L@T´­vJ¬ÿ\Æ','wp-content/plugins/woocommerce-multilingual/classes/Rest/ProductSaveActions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iÌ³\ë\\5Y\Ñ0\ì\Ñ',_binary '¡3¶#\æò´F\r¤ø±\Zì–¾ª\ÕAW\Èb»¿\Ê','',0,'?'),(_binary 't®Z„¿Ð©YPz´;­','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°j_û}ÖŸ\ßÿo\ÜH¯',_binary '£\ì|YÁ\Ó\Õ=uÊª.‰OP¸e\ëÐº%úhS›\0','',0,'?'),(_binary 't±}jløU»º¹’)@¢u','wp-includes/css/dist/edit-site/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™\ÕÀ\ÇPÄ²\Å\Ü\Ì~Mª\Ð\Û',_binary 'b[“\Ýþ \ç]Pzú\Ã6\ï*\Ñ&?ò\'üu\ßV½J<\ë','',0,'?'),(_binary 't²\'®\ë/·\nh’{\0#Œ','wp-content/plugins/wordfence/css/jquery-ui.min.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'À}Oñ“^\×0tGG\ä\ÌQ',_binary '³Ù$rb=p\Ïh¹x\ËK£ù5]8\ÇQþ§˜R‰¯jn4','',0,'?'),(_binary 't¹\Ö9.”Ÿ\Öûq€iB\åf¸','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-privacy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W¥sRZ¦*Ö°YhŒ1',_binary '\Í\Ör\å<<ò½\Ú\"\\7JH\æûµ55¯\Î{Œ‰¼ˆò','',0,'?'),(_binary 't\ÅÀ @¬ì–œ\Ïù\ÌQg','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/AbstractAddressSchema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a4\Íg{š3‘\å¯ó\\\Ð',_binary '”\âø*\"[õcT\ä\n‡¦a³ù`‡F\ï1BVnx\Þ¡','',0,'?'),(_binary 't\Ï@\ÇÁa§\é\Å>l-œ \à\à','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-4-col.svg',0,_binary '.S¼\Ù\éj|4B\Îwx\äqº',_binary '.S¼\Ù\éj|4B\Îwx\äqº',_binary 'ŽKjxvû–²\ïÙ«\Ê\Ú|\ëÍ½¾`1P*º‚K{±¡ñ¾','',0,'?'),(_binary 't\ØŠ\0a¶§\\ _\'W\Þ','wp-includes/blocks/table/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\íÛ°&R1W6zz\ÕX\Ñò',_binary '/•¼‚¯þõ‚º\ÓjÊ†˜jA¾\ã»<9?Þ‚)”w2hû','',0,'?'),(_binary 'tÛ¹‹ñEþW—X{´\ë½','wp-content/plugins/nextend-facebook-connect/NSL/Persistent/Storage/Session.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬A¢Aj´1‘w\Ø Ó©',_binary '¬(wBH‡!p\Äùæ´¢¼V\Ó=\á¢öA£Ãš¾Zt','',0,'?'),(_binary 't\ßL\èW¤‚m‰`i\ÒZ','wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-version-loader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸®\0‘¶e\ílH\Ç86<©',_binary '\Ùu•s‡\å&…\'IXp[x¿ÿ\é\Ýš\ný€\Z;‰?\Ì','',0,'?'),(_binary 't\åã¡ª9+‚’Ö„†\É','wp-content/themes/flatsome/inc/builder/core/server/src/Collections/PostAttributesOptions.php',0,_binary 'p„\ëksy+\Òý;\Ï\Ë\Ùm',_binary 'p„\ëksy+\Òý;\Ï\Ë\Ùm',_binary 'Ü²¡\íS=õ·L—œ[™fOyRk9Ø©€&8!ÀTÆ‡','',0,'?'),(_binary 't\ìXš„‡5\à÷‚\Þa ±õ','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/panel/woocommerce/woocommerce-panel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mõ\ÌoZe“G \nF\å¿',_binary '\íÉ“—OM^Cþ—a¤sõ\\¾Á‚n·þ•s¿­ÿo\Ûý\é','',0,'?'),(_binary 't\î£#\ËùŒ#ò·»•\ç`0','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/class-autoloader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K‰l“ô\î#\\\ê\âð¦TÀH‘',_binary '¬ŒÀG\Þñîœ¯\é\Ñ1ðÑ’•”\r\ÔÌ	§\nòOeûß©òP','',0,'?'),(_binary 'u\ê6\ê\È4E~ñø:ð\ï','wp-content/plugins/wordfence/images/icons/working-indicator.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿«œ\éVF‘ \ë{N	þ\'G',_binary '„fXº\îRZ‚|:O…b \Ç=f\ê[y\ß\Û\á5 ~	','',0,'?'),(_binary 'u<2O¡YC	:0\Ñcž.','wp-content/plugins/woocommerce/packages/action-scheduler/classes/schema/ActionScheduler_StoreSchema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½’…bXT€\ÏU\ä#h\è§',_binary '‡Õ´t\ÛÜ¢>\Ñ3\éO\ê\Í\ÑVh\à\äòñƒ«’Y¤','',0,'?'),(_binary 'u2½~ƒ\Üô|3\ì\È','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-integration.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô¸Wg¥šü!ˆ\âWñJ\0\Ã',_binary '\Ô\í\åPicÑ \n\è\Ë–\Ú‘\Ó\èt>¿0\Èz‚\æX','',0,'?'),(_binary 'u\Í\ÔÄ¯¤pû­ø\ÏÛ¦¤†','wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/class-container.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xBñ\é\ÊÃƒQ\"}\Í5úü€',_binary '\'®\é\'\à\re¨\Òö˜½8\"µŽrMªqwa^¬ô¡','',0,'?'),(_binary 'u!òò+\è\Ï\ZôŽúƒžŸ¾','wp-includes/SimplePie/Cache/Redis.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\à\Ø]´>eŽ\n(40',_binary 'ró\Ö*%\Úÿ®\ÊPœò2Iƒ\Æ7†\Z£Kˆaq#\Ó','',0,'?'),(_binary 'u)z\ïZ\í¥hL\æPˆ|¬','wp-includes/blocks/spacer/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†)vwA®rˆ\Ü4Ö¥\\',_binary 'aÊ´\ë-%M¸\'Sm\Î]¹s\Ö\â\ÆZ\å–\0Cü-','',0,'?'),(_binary 'u6úµ\×oª3l\Ö._I4','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/password.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R.ûfÀ1šI\Ú\Ú\Õ',_binary '–¸Œ\ãe4\ÊG´x\ç\è¸A\è#°B?\"°—Í¯\nG\n\æ;','',0,'?'),(_binary 'u9‹gVÏ½\á\r6Ÿ9Ñƒ','wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/class-shutdown-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Kwú9;\rR+\"…ûN§\ëó…',_binary 'y6™!‚[Ž1ûdQÝŽ,r:Ze\Þö)p¨Nó\È\Ø\Ä','',0,'?'),(_binary 'u>]\0aO<\ïG:œ5\ÅZ¿','wp-includes/blocks/latest-posts/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚‚7žvµÏ…‚<\Ï¤\ß\è',_binary ':´6¹8\ÓMr³\\‹f™€§\ZSLMQ_\ätÙ‘\Énz‰','',0,'?'),(_binary 'uIh=[\Å6ozV¯I¯,ß¬','wp-content/plugins/wordfence/css/phpinfo.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\Å\ëQ÷\Ø\æ!…0w/¨è“´',_binary '\Çýýa@|­®I\r=\Z^Îµ\Âd)ˆ[¶¹ø†\ÎW²\å','',0,'?'),(_binary 'uJc9wŠM¬Š`“ö~\æÆ¨','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Utils/BlockTemplateUtils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿˆ\ía²VY\ë6P–¶Œ\ì‹',_binary '£~’\0m<\Ç\ë£7\í\Ìp?\ë\Í\Ëö	\è\íÊ½\n¶M‘sP','',0,'?'),(_binary 'uVÂ·\Ñe{§•O?6\ín','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-button--product-category-list--product-image--product-price--product-rating--product-sale-b--e17c7c01.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Â\ÆR¦š©ò\ìgYz)E]u',_binary 'XG\Ó[ÁÀ»”(›	y2·›?“‹cB?±>°•ña','',0,'?'),(_binary 'uXÐºC! \å_0ÿÖ‹ob','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/privacy/html-policy-content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q2\É:Ó«‹Id/N/†',_binary 'MU\Ø2)‘Y6yhJ%sf\Ìô¾\Òu	zE\â÷˜•','',0,'?'),(_binary 'u\\i®û‚\è¹3ZÛ¢','wp-content/plugins/woocommerce-multilingual/templates/setup/attributes.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'aÂmsKe­\Ñ5Xr\'',_binary 'jÅ±LbøÁÁ\È\ÜwŽ0Q\Z¿\ÓX ñt\\ \ï\Îh¦\Ó','',0,'?'),(_binary 'u]O \íº]rÊŒ};r','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/error-placeholder/stories/error-message.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÛY!IØµ*,9\ï\íYüa¢/',_binary '}@v´ú§Ý£tÍ³1™¶¼\Þo\ÚoÄŸq;Š\ïˆQˆ','',0,'?'),(_binary 'uc\ÌD\àoD	®\Äšó½\È','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-shipping/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pvB‘O`9ŒO˜g\Ñ\ÞY',_binary 'y^E\ÄI \íÏ½.<6Œ¬˜¨\ìx\à\î2¾\Åy\ê-‰\ÌÏ‹','',0,'?'),(_binary 'ucì²‚Ÿ\Þ?\Ã\È\\a\Û','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\àH‰7gùƒˆ^¸§\'',_binary 'G>bÛ›)\Ò<\Ñ3oq¯´+¶\æ6\ç5\ÉJsIŠ\é¯W\Å\ã','',0,'?'),(_binary 'ue\Ú\Å=ª\ÞV`žN´\Ò','wp-content/plugins/woocommerce-multilingual/templates/currency-switchers/legacy-dropdown-click/template.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e¿Ñ¬Ú‘òún]ý¾6œ}\ç',_binary 'öfM‘ø…4«a<^\ß\'Ÿ¿õcs\ê>;\Øó\æ\n\ãEô','',0,'?'),(_binary 'ueö,\"\n	\îh¸g.','wp-admin/css/colors/_mixins.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X`\ÂÀ oiø`HxþƒºC',_binary '¾\â\ãd\ËpeÜŠ&\Â\äÎþ¥¿\Ñ\á\Ê\ê—\åú’\ì\Ä\Þs-ñ','',0,'?'),(_binary 'uz¢2‘(\é\ÂQ\åƒØ›','wp-content/plugins/woocommerce/legacy/css/twenty-seventeen.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\É\É\×\Ç~”m´\â„Z¦€À6',_binary 'KG\Ò=XlO»e8Köþ6T¸98žló/£?x\Ï5,','',0,'?'),(_binary 'u\\¡.<{˜w ª\çzX','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/empty-cart-block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\")>Ò¯ˆG½„¡p93',_binary 'Éª\íM\ÝT\å¤-”ò»Æ”Hˆ\rRe\Åc;o}\ãgC&\ç\â','',0,'?'),(_binary 'uƒ;>Ì•h¸ƒÿ\á<','wp-content/plugins/woocommerce-currency-switcher/img/icon/clean-code.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\áðW£#Ÿ{“\Î\ë;u¹÷\î',_binary ':w\ÖA‡tŠ,³bAd3S\ÅX±Z¶]†D\êU†6q','',0,'?'),(_binary 'uˆýú\ë[ý…†\ä\ê\ÚD','wp-content/plugins/wordfence/views/waf/waf-modal-wrapper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#g\Åxü\Ì@\ìo\àÁTM³',_binary 'ó\á\Ûee\ë›6s  \Ê-Š-Iµ$\ëüQöÂ¼@Ùy•\Ä','',0,'?'),(_binary 'u”q\'M\Ç^€—¿ŒC\0ôYy','wp-content/plugins/woocommerce-currency-switcher/css/images/ui-bg_flat_0_aaaaaa_40x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*Dû\Ûs`\Æ\"¼ö\Ü\ï‡\Ø',_binary 'z\Ú[‡í’¡r\Ö\Ø\á\\¥øþË–\Ö;5MömM\çtVž°','',0,'?'),(_binary 'uH%u\åñJNõ¸j','wp-content/plugins/nextend-facebook-connect/providers/google/admin/getting-started.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\ÑõL\ß@cA\æ›9\Îsp¡',_binary 'R¯+Ñ¦\Ë\\UBŸadò*\è\á8ú\'¦ÈŽÔ³\ïfs¦.›','',0,'?'),(_binary 'uŸŽ#<$™8 ®œ.}¹','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/state-input/billing-state-input.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0Ÿ\î¢<\Ò_\ÏI¬­\çQ',_binary 'xl\Ý\ì`y\'|õ¯(zÆ¹\Ç*Î„÷h\\Ç²\\¹B\Ñ','',0,'?'),(_binary 'u¦\ÃÀ}\á^³¿ 5)NC','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-terms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\á;³­˜\ÞPò\á\0*p',_binary '~\î7©‰G\Æq‘Y¹—ia–™c6/«l‚¤3','',0,'?'),(_binary 'uªl\Ë\r›aEBŽ\"Z\Â\ÂBf','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-contents-block/filled-cart-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/p\\VösN$htõ	4pŽ\Õ',_binary '_ \êº?\Î\ã3\Þ,\\\ã>Eù\Ø@\Ø\ì\É\ì;|Zð^\ß','',0,'?'),(_binary 'uµ\n«Ÿ0\Äý¡ÿÅ½4Ln','wp-content/plugins/woocommerce/includes/admin/marketplace-suggestions/class-wc-marketplace-suggestions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\">À4ÁAJ\Ã\0\Z_\ÑL',_binary '\ÛaU°\r\\™¶\Æ;¶\Ù2P3.€Y¯/K>\ì9ªŽ8\ÝY•','',0,'?'),(_binary 'u¾\ÄI5q†#¾\î,>£','wp-content/themes/twentytwentyone/assets/js/primary-navigation.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚Á+w/\Ç6¶\ì-\èó\Æ@u',_binary '\äò\0q{x\Ï}õ\ä28\\\Ò\íu¶ndµ®)\ÅÙ~','',0,'?'),(_binary 'u¿\Ü3!pA³f…)R¯M\Û','wp-includes/js/tinymce/plugins/wpgallery/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ç_\ÑvQ8_\Æ$\Í?¤',_binary '<\Ã\èA0\Ø6kJX\nvA/„\í%O\Ü-v_²¢\Ý\'püA@Ø¦','',0,'?'),(_binary 'u\Çm-O\Ô\Ü\'ß\ë]ƒ#','wp-includes/sodium_compat/src/SodiumException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«HDf\é\×ae¤\ã\Ôz°R',_binary 'ã¶œ\\‚©L>LöN-@G\'\Ä\×tmGº\ãi€‡kRß®g\0','',0,'?'),(_binary 'uÌ¥i\Æ(\ì| ûƒ	0O3','wp-content/themes/flatsome/assets/img/payment-icons/icon-sofort.svg.php',0,_binary 'i‰óeä¹ˆÉ˜ž\ëó¤',_binary 'i‰óeä¹ˆÉ˜ž\ëó¤',_binary '…»¨\ÃO}öx\Ö\ÕÙŸ4\ÝJýO6˜\ÙGœA\×ŠqE¦o6','',0,'?'),(_binary 'u\×\Èk6¸O­>õ&ŸW','wp-includes/blocks/text-columns/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c^õ*›\ÆwŒ¶Gã¾Q\×',_binary '–+\\¦–÷1{*C\ãG+\î¸\è˜Jõ\å\æúLv','',0,'?'),(_binary 'uÚ¹eQ\ß]–nñK','wp-content/plugins/woocommerce/assets/client/admin/onboarding/index.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì(\í¯\Ðù¿BBŸjkÁú\Û',_binary '%-2\Û²û\å^ä¼Šy>\"Œ\ÇýÑ“GJZs{v','',0,'?'),(_binary 'u\Û]—\Ñ\rDŠ\ê\ZeD•','wp-content/plugins/woocommerce-currency-switcher/img/woocs_banner.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ý»?S¢\ê>A	¶K\ìme',_binary 'ý\Óü Aº\Ó	‚\ä\Ït\èlN‘ô¿‚\ÔIª™^N[}\r','',0,'?'),(_binary 'u\áqg\Z\0‡8‰hÔ­û\0ð','wp-admin/custom-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Øòyôô³·¶\ì&›',_binary 'óÎ˜ò4ñ\êC\Úw@…Xdo\Ö\ÂN=w\é\ëŽ<~o\Ç','',0,'?'),(_binary 'u\ç²\ËQ­–ÿW\Ây¶>','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-registry.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(7\Ò\ìÐ¡DÙ¥%~]C­Š',_binary '\Þx6¶ R\Û8H\'{‹ \È7\Ö\Ì\ÅX9š%þb‰pc¸,','',0,'?'),(_binary 'u\éÀÒ«»¦ò;^\æ\'B•*','wp-includes/global-styles-and-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡`²xü,œklû©gCú',_binary '\Ü\rT@\Ñ!8¿a3|A]q`0DL\Ì\ÈÄ¶>f+€	Ã‘•','',0,'?'),(_binary 'u\ë&a7L‡5\\R\çß€\Òl','wp-content/themes/flatsome/inc/shortcodes/ux_countdown/countdown-script-min.js',0,_binary '¶#+\Ï\æM\'t',_binary '¶#+\Ï\æM\'t',_binary '\Ç³\Ö7q\Ö\Ò\×~\ê\ëBV-[‘-·yzø\í[ôt\íþœ','',0,'?'),(_binary 'u\í:\ìz§2©DQ\É\ï4','wp-includes/blocks/tag-cloud.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'sÀd/s\ÂOð\ÈCpQ’ƒ:',_binary 'rW÷®,3\"x€<ÿò´Œ!_*é¼¯\áSÇ±ˆ\å\ÒÀ†\×_ð','',0,'?'),(_binary 'uñ\ÉP$\ÇdóEÆ›U','wp-content/plugins/woocommerce/vendor/maxmind-db/reader/ext/tests/001-load.phpt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚QP~II¬\'+ôÌ…£/',_binary 'ýob\Ì\Ç\î\"v2›¿ úr \Þúˆ£*0G@õÕ„\ÞW','',0,'?'),(_binary 'uõü\Ëcz¤\êJ‹±D”÷ºM','wp-includes/blocks/image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\Ü\\L%L¾\ÑJ™¸O¥\Þ\î',_binary 'G+Á˜¾Mq³óeiü¨O)…Sº \rBp@	1j','',0,'?'),(_binary 'uûº²\'M\Æ\Âû…2\Ã','wp-includes/blocks/embed/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X] u¡ž\ÃS\×l½ù’ô\æ(',_binary 'wªóŽ1\Ën¬Ü¤±’o>€§O!\ì‚%DE¥\ï','',0,'?'),(_binary 'vùe¸Ê°\ÇÀ—?|ú‚j','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Domain/Package.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I~Y3=ªt˜³A:\Z',_binary '´¢°\Ø@\ï¥\éhT=ª\áS­>ž\Z\áV`hÚ™\âE\×\äv','',0,'?'),(_binary 'vÚ´¡\å\Ç\ÖV¹½\ØKµúP','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“\á\ÇPNÚ¡\'f\Â\Ï\Ù',_binary '\r]†~[²†¯¿›÷_Ë³¾P˜B\ÊTA`î©½\Ç¯*,O','',0,'?'),(_binary 'v–)F¼\Û~q„‡œ?b','wp-admin/includes/class-plugin-upgrader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'öª2W¿N0»\ËCz\ßvf',_binary '_+‰YD\Ê>öÏ ‹þ_Ó…ð\é\ä»{\'½‘Zs\í\Ã\Äd','',0,'?'),(_binary 'v&5jrûjL #ÀÜ²“','wp-includes/blocks/categories/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«]UpÊ›V\Ò‡\ìµL\n',_binary '\ï`op°Á\é€V\å/2\â‡Ë\Â(NW\ZŽNº\'Kû5','',0,'?'),(_binary 'v(—¦b2X0TPD\Ö^À','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/schema/test/resolvers.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿ+Ši°¬RzH2µ\ì/',_binary 'a„\Ù\ÄÅŒ\Â^#\ã0:H“n–³‚I¶§)\å\Þo©\éº','',0,'?'),(_binary 'v8¨-É«\é\äo	d¹\Õ5¼','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductCategories.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pj\Ïá¹¾\Ëÿ\0\ÑÀ\Ûû',_binary '\ã6}] 9\Zo!O¿p/À»Ÿ\\ý\ÂF‹»\ÔxTÝ”?','',0,'?'),(_binary 'v>\n™ŠA?\íU’\Ü\Â(\Îø','wp-includes/blocks/post-terms/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«t\Ôk\ÍCw²y\Õ?A\ça',_binary 'J5\àD\Ôj\Å$\ìÐ£“šmù[§\ïU„8\æX­a\Z¹','',0,'?'),(_binary 'vEŽŠ\è6ºqa@ûv­','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/icon_error.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%ŸOr«Œ%\â!\0‘œ¦•¥',_binary '¥ˆ*\çFEýD“9!w\Â–¼¤ÿª&xqbq«ûx!','',0,'?'),(_binary 'vH‡V\È\Zú¨Žc@I,6','wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-pt_BR.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&Q\Ñ6p¶¤A.\ÓFKú´“',_binary '\Ò]-»<gP)÷_„9‹»pIk¬Q\ÂH@!\Ó%\\OqY','',0,'?'),(_binary 'vK;@\ÑsºaU1;©	^©','wp-config.php',0,_binary 'ž\Ý\n´\ç\Ñ\Ð“3\Þ\ç(.ö',_binary 'ž\Ý\n´\ç\Ñ\Ð“3\Þ\ç(.ö',_binary 'r;on¾“,š1Ÿl˜)÷jþ|¹•)\×S„8\×\Îpª','',0,'?'),(_binary 'vLM—.f\Õ\ì\Ô%OMR','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›4¹V+=?k\Å\r²\á\Ì',_binary '_¶\â\Þ¾x:\ënOsO¨:d\Ñ\'\0—N=–Œ\Òk\à','',0,'?'),(_binary 'vM¸m*&Z¶`\'/b\Ñ+','wp-includes/js/jquery/ui/effect-puff.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×n±¢\ÍON‡\n\â\Ü\ã‹n',_binary 'ŸH¥šu,hj¡–aÍ´ÿ”üJ\Í^|a¦‘¤º\Ê\Ä8ô','',0,'?'),(_binary 'vP$ÑŸ\æyýdõ`–Š\æ','wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-modules.php',0,_binary '¨ù\æøý\"ž\ç\Õx u¦c\Ï2',_binary '¨ù\æøý\"ž\ç\Õx u¦c\Ï2',_binary '„U\ÆÙƒÊœ\ß{w(ÿ^õ·\Ì<Šžtúk4\Ã8·D¯A','',0,'?'),(_binary 'vU\åJÕ¥=ÁA¢¼Y\çˆ\\g','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/components/resources/action-button-menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\êð\á»fr­$\Úø´ˆp)',_binary '}F“\rX\"$…\ÐwY—u	ƒó\rH\í7NXRDE\ê\î~','',0,'?'),(_binary 'v`¤Ü¦¯¯q\ît\Óa-$\æ','wp-content/plugins/woocommerce/src/Admin/API/Templates/variable_product.csv',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ð½ˆv\Ôû¢\Ñ3Š\Û',_binary 'õdZZL\ÏL‰‘+#´`<`¬%„%$Þ¨•^?kpÂ„Õ¶','',0,'?'),(_binary 've×¶\\°l.—Ñ…{','wp-includes/js/dist/vendor/wp-polyfill-formdata.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')»¨Ä¬gI&LÉœ¦Nn65',_binary '\Ã:q-\ãö³ÿa,/Ï©\ÆZSKJ\æ˜,T\ßôˆa\×5','',0,'?'),(_binary 'vi™fuP\âª0^ù>d¨\Ô','wp-includes/sodium_compat/namespaced/Core/ChaCha20/Ctx.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Â\ËSG°\ÎËº““F¿„\Ã',_binary '[\Þ(˜®R¸Œ\ê\ä\ë\ìôŠ$¦£2o\å\ãtûb÷\ç','',0,'?'),(_binary 'vkh[\×3\ß\Z2Š&¡','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-items-block/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\í»\à\Z\àM\Ö4O\è\Z\í?\â',_binary 'j°•\Ë¿·¶ùþù²¡dü;” \à\ãmñ¹%XI\ã(Ê“','',0,'?'),(_binary 'vw\Ù\Ñ@ˆH\Ê\Éz–F¦','wp-admin/ms-admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…UjA£Ú¦Yq€uˆ­	',_binary '\í\È\"G\nÁÚ”±¢·MhÀQ§2¸\à›l’\'°Üµø','',0,'?'),(_binary 'v}Pó `~–§|$›7–','wp-content/themes/twentytwentyone/assets/sass/05-blocks/legacy/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹\åŒÏ¾M\Í-L&Œ÷aX',_binary '\èxSh¾¿IcU9œX\Ú<FfjT\'hšÚ†Ÿ\ëD­','',0,'?'),(_binary 'v]¿z‹ð\Ô\åš\Ã3»tB','wp-admin/includes/class-wp-importer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ê5V9½ûs°^zPñF',_binary 'i„úx;B4®÷?d˜\Ý\Âù…\Âesq•ýF¦>ø\Ã','',0,'?'),(_binary 'v\èâŸ„¡”Á\æ¦o','wp-content/themes/flatsome/inc/admin/kirki/modules/css/property/class-kirki-output-property-font-family.php',0,_binary ',³?(\Ëdš‡·uQg¤\ÐV',_binary ',³?(\Ëdš‡·uQg¤\ÐV',_binary 's\Ýg„’H=É·›%\ÍBfU®\Ð\'¸\ä¥h^Ý»o³\ë','',0,'?'),(_binary 'v…Œh\Æ\ä7Še\Ëg\é@`m¢','wp-content/plugins/woocommerce/assets/client/admin/chunks/dashboard.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ê\Þ-\Ã\î-\"¥^\ç\"ÊŒf¢',_binary 'Œƒ)\'üG\Ê\ïª\0ò\í\ã\ãQ0\é\ÐÏ¡þóþÿ®ø','',0,'?'),(_binary 'vˆ›‰rº«»¯8#ƒŒ1\Ô','wp-content/plugins/yith-woocommerce-wishlist/includes/class-yith-wcwl-session.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\âdH±£ŽUœt\íñX\Û~',_binary '\Ì\Ú.\Ù3ŸµOs€eHÛœ|^\íg2X{­\ÈV¿-\å','',0,'?'),(_binary 'v‹\\S/Hi\â-¥\ãX¦M','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-search.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T§µ\é\ë<ð°”eEÿ\èˆ',_binary '\æ›zhœ«uh\n1\æŸ\È\Ü)kÓŒ`eš\n¢Mû\'','',0,'?'),(_binary 'v\ÛZl:d•™¬…Nò„','wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-plugin-licence.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ë\ÛÐ’\'\Ñz\ä¯Á T|\'»',_binary 'Ù˜N.	1+\ìQuŒöÁt©\ëY8/\n\ãŽ)V\Æ$²M\Ð','',0,'?'),(_binary 'vŽ!`Ý‹\ÜñJ»\ËÅ¬¨•','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Node/PseudoNode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>P\Z\Çx!‹“«±2üN\Ó',_binary '¬­H\ê\ß\Öz¢\ßP\Ñ\n·ýò˜^\à»_%8\Ë÷Ò¡!‰•','',0,'?'),(_binary 'v“X£#?Nu\ì$ß£«ƒ','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/badge.svg',0,_binary '$¾\éC˜O=¨Î±\Ë[u£',_binary '$¾\éC˜O=¨Î±\Ë[u£',_binary '¯	\è\0(Rü\"O{\Ì\Ú§Mõ¥.ä´ó=¦Æˆ/0º','',0,'?'),(_binary 'v¡–Þ£\ãûR\ï','wp-includes/js/jquery/jquery-migrate.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\É\0õ6¾¿?Ù³÷±t\Ñ\r',_binary 't—\è&\ähpµz‰³wÄð¦& \ÏÅš9&”7ºŠº\åv','',0,'?'),(_binary 'v¬˜³\ËvÌžeÀtÑ¿','wp-content/themes/twentytwentyone/assets/sass/05-blocks/search/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ýˆ\êLª?µ\È\ÔnÊ´wp\Ó',_binary '\r\áL&Þ„®£\0ú}Á€«mu\çLJž¬\Íi..5G—\îl','',0,'?'),(_binary 'v¶+5s¹u‚%f\Ì­\Ò','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';kI«?Vw\r†ÿÞš\ç!‘',_binary '2œi£m¦\Z«G<\ÑC³ÿ|mZX\Êœ}8\å*~Rx\Ñ','',0,'?'),(_binary 'v¼‘}|\Î[bh`Lðù','wp-content/plugins/nextend-facebook-connect/admin/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ú•|N\'YÿRY\Å`™\ãZF\Å',_binary '\×CÀ:\æ\Ì\\Š[¨ò>v/\çO]\âõI/†µüÁ+^\È','',0,'?'),(_binary 'v¿dxuð¬}§A\Íg\ê','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/with-categories.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ê\n\Ãg^B™:.K‡“-',_binary 'Vö-\"m\ä+0R´¦’\\¨f¶\âÇ¥?s¸+¦\ÐWµ\Ññ²\Ý','',0,'?'),(_binary 'vÃ¢,\\­+Q¹\å\Õ\ÛñÖ§','wp-admin/css/l10n-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÁOSµGfKç½šŽ8\Ü\Û]',_binary '­dòx‘¹ñk3rþÁÞ°VNÄª…eüt³-ü ƒ\Ü\ß','',0,'?'),(_binary 'v\Ë.š#PÁ ¼‰\äH2\Ó\á','wp-includes/blocks/buttons/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ë ökø\'\Û\àI\î–v*¿ñ',_binary 'Œ†\nC‚7û^ûK5\ÅAˆÃ‚\Ù\ë¹=\Ý\ã¾\Ôc¬Ê»','',0,'?'),(_binary 'v\Î3\äR}y\'6µ1\â/¹\ê','wp-content/plugins/ti-woocommerce-wishlist/assets/img/admin-rescue@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|ÿü\Ó7]A\Ë?š\ÍF\îŸ',_binary 'dw“AA=½\è\ÂM±@?@ó\é\Õ\äŽmSFA\Ý?QŸ\nµŠ9','',0,'?'),(_binary 'v\Ò\×q?\0\Ú{\í´\Ê=®Å­e','wp-includes/blocks/site-logo/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÓRdaÄˆŽ\ë\ï)¡‡.xu',_binary 'À–¸%D\ÝEŒ[4\êúÓ¤½N\Ök?rAtEHôÀ‚uD\ä','',0,'?'),(_binary 'v\Ówô\èb8\Ô°,¥7‘','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/GivingFeedbackNotes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j—/Âƒ1õÞ´cÁ–V',_binary '\Ï\nƒ‰‘\æŒGö™x2—\æºø\ç½:+Œ\ìF-\èØ','',0,'?'),(_binary 'v\ÕÖ¯™¥½õ6A685ù','wp-content/plugins/yith-woocommerce-wishlist/assets/css/font-awesome.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ó\ì\"ž\ÈcLˆ\ÌL³ò“L',_binary '¦½vV\ÆË¿öE\×\r\'Úªm6\è*„An¨õÒ¶]\ç','',0,'?'),(_binary 'v\âG‚.\Âg·Aõ\Æ#õr\é','wp-admin/images/align-right-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hƒl½>rº]£lW\ÆÀx',_binary '¤V:ðh¯Á\Æ#È†BT\Ö5i\0¥?„ùcÀBc\á„ô\Ý','',0,'?'),(_binary 'v\ä§\Ñ\ä¢!z¿5\ÇH-­','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/cart.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯C¡\Î\â©\Ó\á\ÐQ5mQq',_binary '”h\Ï\áßJ~‘\'ù\Ã5ÿÒ¸~\í#)H \Ùy/œ','',0,'?'),(_binary 'v\æü\á\â4\Ý|>\í<´ÿÀ¨','wp-admin/js/xfn.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ôwcWº£_~\r\×1•>p',_binary '4‘[²¥Á”Å¸$[\Î\\°ŽÆ«4¾-3—–­zü”x°','',0,'?'),(_binary 'v\èN©¬#u\Î\ÏM7›°þ\æ÷','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-refund.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ç¦§_ú´I·DZ\ã›',_binary '\àÊ°`Ph:\îòJú\á	\\o7\×\Þ\Úý™Î§c¡Qw•\Ô\Ë','',0,'?'),(_binary 'vð{#¿¹lš“b\0}\Ó\ãB','wp-admin/css/colors/light/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N†œ·œ~r3Y[^6X\äOù',_binary '\Ýüee\\\æ8Æ®­Q¬\í\Ðz£¾\ç‡P¯\ÅiN+h\à','',0,'?'),(_binary 'vúÒ¸);D°~J\"\àq','wp-includes/js/jquery/jquery.form.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O¨–ö¯f\Ã\×\ï–•ñN',_binary ':\ïþ†U\ß\íŠa8\à\Ù\ZPû™‹‹­I¤\ë	›\Ï¯j\Ð','',0,'?'),(_binary 'w	¶Cs>\Ô\ä\çÍ’K\Ð','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-api-keys-table-list.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þƒ$-t)+u¤“\'€\ê',_binary '8µ\"¦š\Îlów(lo`f¿…4šÂ¨Ž3´\Õ$@ŠE','',0,'?'),(_binary 'w?\ëˆ\Êx	\ÚCÊ‘\rq','wp-content/plugins/woocommerce/legacy/css/privacy.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×÷G,˜}`\ÜN[¾\æó\Ìc%',_binary '%\ÙN</\ê÷w(õôÀY°sœX\Õ\áZQUØ–\ÚGn','',0,'?'),(_binary 'wu\èšl|\åõp˜\ÊQ','wp-includes/js/autosave.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ó‡\ä\ËD\Ñ\èU\r£¸\ìkªž',_binary 'eC²ROõ0.\è™G‹k=\\²õ‘Nš\ÕBb6¢O{\Ä','',0,'?'),(_binary 'w(ðñƒ§³¶ýÛ‰(º\ïý','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/shared-controls.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Oƒù(`\ã¿g©Z\ÃÁgO',_binary 'qB9p-mLV_ò£ÐŸ¾no\é-! \éqY\",\Õ\Ä 2','',0,'?'),(_binary 'w4¶šÕŽ\ÖWgû	cÄˆ6','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-all-import/icon-128.x128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’÷W“²—«[\"LÛ¥',_binary '\ÂD¯_šhC˜q*ÿÝ£ Id\Ò)ôLòÉ¯h­\Ûu\ÇZB','',0,'?'),(_binary 'w5\ç\\\Þ>\îÛŸñ\Üø£1½\ä','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oG´Y>\íy\ç*^Yòú',_binary 'M«ðŒr’¹%kÂ™!ó‚¥²½¸Ó²ŽzÝ	)úð\ÆCþ','',0,'?'),(_binary 'w8h*™\\;°\î\ÍeŠ[\Ø','wp-includes/blocks/archives/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\ï\íÇžs[¢²pÁªO\'¨',_binary '*¹¥÷„»ôzõÿñƒtRM‹R\Ã^/¾¦œcÎŸö','',0,'?'),(_binary 'wC%qÔš/NžXi	\×\à	','wp-content/themes/flatsome/inc/builder/shortcodes/ux_image.php',0,_binary '\×8J\é­\ÓÉ½€›öii*',_binary '\×8J\é­\ÓÉ½€›öii*',_binary '\Ý\á.–t§x^\íö\\õvy T»\í‡§\æK.q(','',0,'?'),(_binary 'wDIš«-EòI\×l\å','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-multiple.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T¾š%öa;B3>|CXý®',_binary 'B;,\Èy_\Ö: $²\È\Ï\Ç\äµ\ìE5¨œB0„\È\0','',0,'?'),(_binary 'wZ\è\è¸kFD9«œ\Ä\Î\Ùh','wp-includes/blocks/site-tagline/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Sb_{³ü~\ä1X.u\Éb\ï',_binary 'ž…g`éµ¨{¥¸Š‘…\Ä\ß?šŸDŸ#h=ú¹1\×','',0,'?'),(_binary 'weü\ÜjÿZôõq²I\Ã','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/City.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(¯,ƒ ”¾¯EÚŽ\æ†;',_binary '5+úS\ïsY>%ór9–7\ä–5[I\é=\Ä`<2M\ç\Ç','',0,'?'),(_binary 'wj|–‡ª“\åpkù\Ñð','wp-content/plugins/woocommerce/includes/tracks/events/class-wc-status-tracking.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ì½‰eƒ2”‘[º\ãÊ”\Üý',_binary '79\Õ^ð.¦âƒ‹q/¦¢#\Ç\ì\â\ØÀk“Z\'H3§,\ÜN¹','',0,'?'),(_binary 'wjÀ˜Ä«\Ç7&¦ÿMl\äñ','wp-content/themes/flatsome/inc/admin/kirki/controls/views/code.php',0,_binary '\Ü]u«,¡PB˜\Ö@¹­‘\ß',_binary '\Ü]u«,¡PB˜\Ö@¹­‘\ß',_binary 'Š©üÉ«X\ëhÇ‹œT=¾]OÖ«\äõÍ–ñgÁy\Ùñƒ','',0,'?'),(_binary 'wsÑ‹¨Ñ»r\È t-³<¹','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-wp-components-setting-resources.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\È€gL¾F XŽ•-ÒŸT',_binary '‹U_õ\ÍG°|­õw\ÆNopDóòc\â\ÒZ\ç\Ìm2b\r\×F','',0,'?'),(_binary 'wx®pP\é…ôg¾xôu†','wp-content/themes/flatsome/woocommerce/single-product/product-image.php',0,_binary '\ê°.!¢žS\È\ï€­\0®@À',_binary '\ê°.!¢žS\È\ï€­\0®@À',_binary '\Üw\ìZzQ[>\æ\Í\ç8$\Í.¯-¿V&û\\b³^¥¾—','',0,'?'),(_binary 'wƒª\Î!¢\åAÌ¦ªÀxO\Â','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartExtensionsSchema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9£½þ€	%ë¹€òÙ‚',_binary '÷^\ÄCl#-\Ýwè·¤F\Ç\Î~¯.ŠµÐžþzY\Ïÿ¢\'','',0,'?'),(_binary 'w‰¥\ÈÐ®q/Á˜ó}> ','wp-content/plugins/woocommerce-multilingual/res/js/trnsl_interface_dialog_warning.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Å\Ã Ÿ\ã^ü–\ëÎŠ\é*',_binary '˜tó“§œ	òu\núû\'#¤~[…¡§£¼ò','',0,'?'),(_binary 'wŒ©W¨4žnGz˜ñ§','wp-content/plugins/ti-woocommerce-wishlist/integrations/automatewoo/trigger-wishlist-item-purchased.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥.0£¼\0ú¶5\îb8\î',_binary 'h]D\àþø—ôI\í>\É\Óðÿ \ÚVÿ˜}_\Â.¯Fö\Æ[Ø¨','',0,'?'),(_binary 'w™\ï´\ÃM\×H\0\nÓ®h o','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\îw8þ\Ê\Ù`\çw•)˜{',_binary '²e\ãjw?´\Ú\ÎH\rnÓ‹”Š^³8vû+KÛŽ¦¤þ','',0,'?'),(_binary 'wœ\Âõ\ê+¦©O2¡Ð±~','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/class-plugin-locator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'û\'>sÁ¾\Ö#\ÊYu·\Õ',_binary '\r\0†÷”½xø€\"-A\çœYÿú\ß	ï‚´µ(;4\Ò','',0,'?'),(_binary 'wž§‡³ý]\é)b\ÓK\\‰','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/price-filter/test/use-price-constraints.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰\'\ÙnqAö™J8(',_binary 'þUZ\ßK {S­=*:\ÉÄ³ø\ÔW\ïzü\Ó\Örƒ\î—”','',0,'?'),(_binary 'w£¤\ïLý\ê£0œ\ïð]r.','wp-includes/images/crystal/code.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\ï1²\Ïú\ï°õ1®9',_binary ';\ê©67˜¤ƒ”\r\Ø!Š\í\Û\çx\Z_@H\×\Ã&C”\Ð-\×\ã','',0,'?'),(_binary 'w§@\ÏI©e\Æ\ÜR²fù7\Ù\Å','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/symmetric.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹›‚hŒR´€\à¬',_binary '§üö=ömHü\Õ/¨\ne\Ûý\ëC¦3\Øu58‚','',0,'?'),(_binary 'w®ô`M\Ë\á>\Ç{\Ôƒ´','wp-admin/includes/noop.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\Óqj¤ö‚\Ñ\Z!ñ\r:´',_binary 'dËŽJ©™Á¡\æ\Ô˜P[\n=¾ŠQc«‚®™P\Þ','',0,'?'),(_binary 'w²~Ó‡\Ì	búI\îÄ','wp-content/plugins/woocommerce/src/Admin/API/OnboardingProductTypes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»\Ìs®»\n[J¶\'\ã\Â$\Â^#',_binary '‚‹®V\ØIFƒIº — ß¼•ù—Ÿ¶pðÊ','',0,'?'),(_binary 'w´\rnT\ÂXpRhùF\åÀH','wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-tr_TR.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œ¬R\Ê/ª±†Lip!Z\Õa',_binary 'q¢6Â	\ëmPW‚9Ud\éG0ð\ÌÙ¶veSŠ','',0,'?'),(_binary 'w¸Z¥e¹\èô„\Ûô†','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X¯\á_c\á\×\'\ØxM9þ¸\à´',_binary '`\íùö³°’S,wD9¹k“C\05Î²®\Ô19jBª[\Í\Ì','',0,'?'),(_binary 'wÃ‹ô\í\Ê9/,+1ý‚','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\ï‹ ƒZ8\åt\"',_binary 'avxu«‹í¶j¦«=žI¢S¶\ÑD{‘ù\ÞÁ’!','',0,'?'),(_binary 'wÅ¡\ç\É,”Œ\É$\Ä\Õø','wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-refund-data-store-cpt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z)\ï»jÿó\Å\r[Ø¸',_binary 'ù	©\Â;:¯vl\ÍCºZ¿<¶\îUƒ¦“[.<\à\Ì\Ê','',0,'?'),(_binary 'w\Ï&\Ë«S9¼|\r–»\Ê','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P-\î^˜0ó3ô\×Í™\Ã5',_binary '>\á-\âÀ…\ß\Þä¸”—T˜	‰1&€¯¦04\é7¬lT','',0,'?'),(_binary 'w\Ö[;U\å ò\Ýýòù','wp-content/themes/flatsome/inc/admin/customizer/img/back-to-top-outline-square.svg',0,_binary '«€\'ó«RúCvi\ÄRS',_binary '«€\'ó«RúCvi\ÄRS',_binary 'fL-j\ÆNz!Zv<R\Ë]ÿ¬X‰\Åfµ­#¯°«õ\Ð\Ë','',0,'?'),(_binary 'w\Ø\î©\ÂÀ?ÚŠ\åÓ—ò¯','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-products-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B~Q;&_ÖžJžµú¼}',_binary '\ÄR\ËOõwwšo¾õ\Ë*P¤^*lu\à\Ü8\Ç.b','',0,'?'),(_binary 'w\ßQJr#¾gû\Z½\Þp=','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-report-sales-v1-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ö…—˜h(c4%‚\á•¡Jõ',_binary 'µ\â\æ4ÀTH\Z\Ä\Î\Ï4\Óû‰EI¼n³:\Å\Z\×P1:¢‰N','',0,'?'),(_binary 'w\á§Õ‹\\\à˜G\Ðû&•¢øA','wp-includes/blocks/template-part/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'šw\Ð!kœk nüW€ý',_binary '\Ü\Ù\ÓÁ»ý\Íreˆ­\Ü~¡$\â\Ò\"tŽ\É±§“','',0,'?'),(_binary 'w\ãM<;2”Uk==k\Ñ\í','wp-content/themes/flatsome/inc/woocommerce/structure-wc-product-page.php',0,_binary '†I> \ØeD\æ*$-÷ÃŽe',_binary '†I> \ØeD\æ*$-÷ÃŽe',_binary '´ôoî ¼ò¢sIöjuC¼K·\Ìy€|&¢vö:n\Ð','',0,'?'),(_binary 'w\í\ä\r«‹h£®B\Ñ#	M','wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-order-tracking.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PFlES½\Z\Âm¹9…\×_',_binary 'a.U¨p\å\'6”ø¹2ŠhZzØ¶p\n8I–³¶jy•','',0,'?'),(_binary 'w\íþŒ.\ä>ügXú<¶\Ò9$','wp-content/plugins/woocommerce/src/Database/Migrations/MigrationErrorLogger.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i>]–Y»8b{\ÅZiŽ',_binary 'ÜŸ\Â9poùPr\ág\ï5Ú£a\Å÷*¬©\É\É\è	°ñ','',0,'?'),(_binary 'wð\Ä0+J\Ô\Ï\Ü\ÓlXu\ÚQL','wp-content/themes/flatsome/woocommerce/layouts/category-off-canvas.php',0,_binary 'ññŽh2\Æ\nÁ?²Š,•U',_binary 'ññŽh2\Æ\nÁ?²Š,•U',_binary '‹bðf\nfó#P#_÷[£\è\0S¢U6\Ü\Û\ZGX§Lœ','',0,'?'),(_binary 'wýú\Úò\á\Ê:}V¹¼P','wp-admin/js/common.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'À\ïC*¾\Þ\Ñ!Žn\Ö©',_binary '^ ;:\ÝÝ¸LÀKv“{Ehµú\Û\ÑF_‹\ÛS¼\é5²<z','',0,'?'),(_binary 'xÎŸ\ÐÎ• m?»öˆ³6P','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/sidebar-layout/sidebar.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ô9\áWW‰\×2ˆ&?¹9\r',_binary '­©7­° v[}5Z\Ý(¡.0¨Ž\ì\0q\ë\Ô5ý,ý&o¾','',0,'?'),(_binary 'xó>\Ó\æE\\°•Q;š\\','wp-content/plugins/contact-form-7/modules/flamingo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ¢¢¼¹Î»Œ\ËT\å^Ž',_binary '½N$\Ì•`ñõ\Þ\éS$\nI\Õu²^ÁØ¯X}­Hô\ß0','',0,'?'),(_binary 'x\Öz\ÒZNrÁ­€š89³','wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/mixins/_grid-framework.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',;²–¦ˆv@ƒ\Ü\ß\î;\r',_binary 'DØ ”\ã’õ]}\ä’\ïWžÒ¶\nÅ±\rÿJk\ã','',0,'?'),(_binary 'x	G!N\ä·$¥.šdŽTb\ï','wp-includes/ID3/module.audio-video.flv.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\Þ\Í\éAZ?¬!x&3h\Å',_binary '¥7T@ü7\Ìl±E\ìÅ“#¡ø±£¨Vð,\ÄLi\î‹\Ð\'­','',0,'?'),(_binary 'x.ú™\\“‹(ss\ÓuEx','wp-content/plugins/woocommerce/includes/interfaces/class-wc-customer-data-store-interface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\gÆ€\Ìõny žQy\Îpð',_binary '\Û\ì$\â†Ï³\ÓXUœ\nË e¼·]þ(™€\È‰¢\ß','',0,'?'),(_binary 'x1\ÛNnz:ø\Í\Ö\êf·\à\Ó','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/utils.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ö\äúö·ñ+ïª®;\ä',_binary 'vX”^ú´\ÞuŸ`”€‚ÀŒ\Ö\Ü\Þ§—\"u\Øü{“\ÊL‹','',0,'?'),(_binary 'x3c!‡ñ²Ã´­xV\Ùò 8','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/colorbox/loading.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K‘\ï\×0\ÆF·\ÚDjôŒ\ÉÄ€',_binary 'p }\ä \Òó¹‹ð\"PX\â¾#d5\ïkÛ­ôtõ\ÒS','',0,'?'),(_binary 'x9@^6œ\Åß‘¬óŸo·\è','wp-includes/images/w-logo-blue.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ý[N°W¢ð_p\àw®0',_binary 'Þ£^Qt\ä3ôHunUâ»\É\à~²\'»T2','',0,'?'),(_binary 'x<1½$2\ë\ï«ÿ\Ûô8\Û','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-radio-buttonset.php',0,_binary 'l&£\ÙW‹ü8 7÷¤\ä\í',_binary 'l&£\ÙW‹ü8 7÷¤\ä\í',_binary '0;7}­¿Mb$í†€²•\ÞH—¢k\n%!\ÄÑ£\n1õ','',0,'?'),(_binary 'x?N\ß0Ù´\Å\ÂeÛˆ\ÞH','wp-content/plugins/woocommerce/templates/single-product/photoswipe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÆZ£ü8¶ªhùòG€\Ú',_binary '›·\Z\Ëû\Ç`A\Â¡\Êù*Ž¿ù§øJ£\Z/\Êq¤£¸(¯','',0,'?'),(_binary 'xA¶ƒ\Ãfw\Ã{ÿ91Á*','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-report-sales-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ö\Ð0—žO\ïó!ðññ‘o',_binary '#¹‘ç•Š3whï¦·TIùóE6¥õ³i4\Êj','',0,'?'),(_binary 'xIH\Þ.”9”Y\Ã\àBO','wp-admin/css/colors/coffee/colors.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^„u©¼ i»\æPA£\Z†Ÿÿ',_binary '©67\ÂSµD><È¶óù\îø ye¼Õ‹V‘N\ÓcMM','',0,'?'),(_binary 'xLKx ––2¸¯Isò!#Q','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/IetfCtx.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Î\r—U¡Šö\Öý\ÚCB\"',_binary 'ƒú)M£¦•ì©‚tU\Ê\ä¯Î´\ÕÔª\Ûù¯\ÌF.ü','',0,'?'),(_binary 'xT\Ó\ï\ë…\â!\ë\í\ï','wp-content/themes/flatsome/woocommerce/global/quantity-input.php',0,_binary 'u\"c(ûÒ¼b\çùó¢‹',_binary 'u\"c(ûÒ¼b\çùó¢‹',_binary 'pu¡-™÷vo²\ìMF^_\Ø\áµ\ÂóQT¶š(ò±1o','',0,'?'),(_binary 'xV‚Mš\é>–n\Ù{O–ÇŸ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-blacklist.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\åI,0`\ç-=¸OxH§¼',_binary 'â°m¼Wka\Ëö—\è2ƒSj\Ô>¨\Ë·…\"\Çwù<','',0,'?'),(_binary 'xWW—\ä©Øtf-h \È','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/simple-left-light.svg',0,_binary 'ŽÈ\r‘44Ÿ\Î\0kªb3\Ã',_binary 'ŽÈ\r‘44Ÿ\Î\0kªb3\Ã',_binary 'ÿ¸½£n2\ß½tF”›©Mv\Ç\Â‰$š„‘>¢ÑŽ_”','',0,'?'),(_binary 'xXVajö\ÓnWˆŒL°$','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×\Ðö\çÕ\âVo5€\ìÚ\\',_binary '\Ü\×\Ô>‘9\ÚùY\rYO´­C4h²‹\í\Ù\î™\ä\ÐužG\Û[','',0,'?'),(_binary 'xZ\É]¬³&ª~ô\âœ','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/phpcs.compatibility.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æøY\Ãq\n—\ßÉ•#˜w',_binary ']øk\Ø\èr]\\\è>	ü‘\ä…ý\åô|–º*©\Ó\Ì$','',0,'?'),(_binary 'xa}>ò:\×Ñ¤x°T','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/fonts/font-awesome/fontawesome-webfont.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘.\Æmurÿ‚I1“–G\Þ',_binary 'Lr7D@yŒ¿\ÂÉ‚]NK‡(–\Ñti\ØG9\ÎÀù \ÈTm=','',0,'?'),(_binary 'xnÁ\'W\è$\Þ\Æ\ìøu\Ðr','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$­cš63>¿©n\ÛM\"',_binary '\Õ\Î\ßõ³üd\â®û\Ê1”Þ™Gp#·\\3\éføš\'\å.','',0,'?'),(_binary 'xu\æ\Éi\ÔÛ»¬¾\×>G+','wp-content/themes/flatsome/assets/img/payment-icons/icon-unionpay.svg.php',0,_binary '¶v\0˜_¯ú›{\Ïq\ãI|/\Ä',_binary '¶v\0˜_¯ú›{\Ïq\ãI|/\Ä',_binary 'g:5]\ã¢n}\ËrÁ1\à\Z¢b³\Ø\à1*<\Þ\ï]\Êb= ','',0,'?'),(_binary 'xy—!\àøôqÁ)ö.Ë‰\"','wp-content/plugins/wordfence/images/sort_desc_disabled.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÎmŽ„†•ÍŸ\Ê\är\Ñ\Ö 9',_binary ';	\Ñ_öY\ï\à·\ítŠ7K\ß\Õs—•mCø\Þ\r\å\à\Ê\îo','',0,'?'),(_binary 'xp\í¨<[’ç¯“¯’,x','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/ui-icons_2e83ff_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vL7\ï¿mükFo­\Æò\Ê',_binary 'Tzòa\áÔ‹§Ÿ3¡[mË¬¥_ofŒ0þjsW','',0,'?'),(_binary 'x†7.D&ôÚ¹\ïg\æ¹','wp-includes/blocks/navigation-submenu/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#X\íó˜\Z‘ö—5\è 2j¸',_binary '}\Ý\Ð8R1=2±òÇ›ôÇ©\Ôªx…v\æ³\×eX\Ò._\È','',0,'?'),(_binary 'x‰h,œw¼\ÞFn/\ÝÑŠü','wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-vendor-shop.php',0,_binary '3Šn{K?1fc\Îþ2‚©',_binary '3Šn{K?1fc\Îþ2‚©',_binary 'H˜4Ä¬Š°˜“±\Ñ\éK£”FœÒŒ+ˆS\î)\æ\â§','',0,'?'),(_binary 'x‰ôôø¹;,ae\í,\r','wp-content/plugins/woocommerce/assets/css/privacy.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ls\0!zÇ•\å,JškPŽ4',_binary '©E\\ˆ¨±”T¦4ÑŒ7zvv\Âó½D«ñÃ·<mG‚','',0,'?'),(_binary 'x“û÷+|¿\Ã7¤\Ê÷','wp-content/plugins/woocommerce/vendor/symfony/polyfill-php80/Php80.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ\ÚxOø†Éš\rg\çKþ',_binary 'ôÅ³nÐ¬;÷}\ã*K7Gº\ß\ÇFù)ý\Í¦uö\Ö\â{','',0,'?'),(_binary 'x”\Çj[\ÒB¸¾ò€ƒ','wp-content/plugins/woocommerce/src/Admin/API/Reports/Downloads/Stats/Query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ïñ+Øž&/Î‹õx“',_binary '‘|j%,(\Åÿò©x…¥¡i`_\Ã|+\0¨\ßõg\Æ[\í;','',0,'?'),(_binary 'x–^m\Ý]Ì²š/õ\ÅL4vU','wp-admin/includes/revision.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·¾š?–c\äC¶R\ÎU\É\Î',_binary '\Êv\ÆÓ€\çÿˆ\Ør\ìD:9\á®3\Ú9mU‡ü¬mh:¬lV','',0,'?'),(_binary 'x˜V*½QTÍ‘\Þ9U4š\ÕB','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/portfolio.svg',0,_binary '¯\á$\Êigz¸ž7·ýÍ³>',_binary '¯\á$\Êigz¸ž7·ýÍ³>',_binary ':\Ôý\Øôæ¯ˆ¾°ar\ìFHKb\ÐL†—þ“\ç÷ú|‹','',0,'?'),(_binary 'x™\áX$:ãˆ³\ï‰ô¤o','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-downloads.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñœô$\í{9X5ýÎ§',_binary '¨YÔºv\Ón@³\Ð[ôD±\ÓS†—ô\×\á\Û\ãq·\á2‘µô','',0,'?'),(_binary 'x®\ånž8I\ÑY©Ÿ1\å','wp-content/themes/twentynineteen/inc/customizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ\ßT\×\Ñ\Ù:8b\Ó|\Ø\rû‹',_binary '‹½¾üX\í\Õ:*–N˜Y‡/‘´\é‡\"\ådõ[Ã†µ','',0,'?'),(_binary 'x°•,G«Ú„¢ó\Ã;6?','wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-steps.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EKdv\ÈFl\Ë\ï\âq\Él',_binary '+Á[¶\'²¬&\ÅGŸj–ü‡vs™\äcl1Ô³Šp','',0,'?'),(_binary 'x´*±\Ð3u<òe\ßZ\à\ìH\"','wp-content/themes/twentytwentytwo/inc/patterns/header-text-only-salmon-background.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kJ.«\ÖÄ fæ°•U',_binary 'ˆÍ»WÁŽ\êŽ\ä÷ó5^`¡F	xb °¡ úV\É>˜*','',0,'?'),(_binary 'x\Í`\å\è(PYh¦\àEU\í\ç','wp-content/themes/flatsome/template-parts/posts/content-search.php',0,_binary 'Ž\ç\Ò\ÍÕ„VkŸ;T„0',_binary 'Ž\ç\Ò\ÍÕ„VkŸ;T„0',_binary '\í\'\éX\Ð9L—8¬@czœ—\Ñsš®9u\ÈûK¯Ý¼\å°2','',0,'?'),(_binary 'x\Ó]¥¿\ï£H¨\í‚ø¿','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-address-block/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹þj^”;©BøS§eNz',_binary '3\r\è½!\î‚\Û\Ð\â:¬\Ï\Z\Z\'R‚5\Ê÷ŽHa³2óR','',0,'?'),(_binary 'x\Ù.½¦ŒXó\ëJ$§É®Ü¹','wp-includes/blocks/pullquote/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡x\Ï\Êòr–YN…Ú—\Å\ær\ï',_binary '+¸ŽOV£h¬q #*W0\âœr\Z]\Î7\É\Ð1Þ©\'¯','',0,'?'),(_binary 'x\à\ä\0>t4n>¾L“º','wp-content/plugins/contact-form-7/modules/recaptcha/service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+ \n\ã™>\ÜYÿŠ*“\á ',_binary '‘\çû$k\Ï4[\îÀ\n9À,Ë­\ëoB_ex\Ù\ÂÂ³Ù®','',0,'?'),(_binary 'x\ã(ôH\â%\Ê\ØÎ‰9i','wp-content/themes/flatsome/inc/admin/envato_setup/importer/wordpress-importer.php',0,_binary ',’eZI6\Î\"é —W',_binary ',’eZI6\Î\"é —W',_binary 'fV¾³\"eb\Zö3š ÚºL\r‘F*\Ê_(¦\é','',0,'?'),(_binary 'xë‚‚Ÿ@}Y\ÇŒi\Ë+','wp-includes/js/tinymce/plugins/tabfocus/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦™ÏŽ\Å@\ï/@MümóN\Ù',_binary 'žxM‘”\'È¤“\ç´=\ÎÚ·¦?$ŠS,Fy¸„¥Ö¥','',0,'?'),(_binary 'x\ïz#\è]”rŒu?0Ÿ®Où','wp-includes/sodium_compat/namespaced/Core/XChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\ß‹\Õg`É¸:Ú•^',_binary '½•ŸF/Q°H\0ù¦\æ^l 0¡BÎ“Õ«6S@Ph\ë','',0,'?'),(_binary 'xõ\"I\Ü£D~SPð•~','wp-content/themes/flatsome/inc/admin/advanced/functions/functions.php',0,_binary '\ÔŒÙ\0²\é€	˜\ìøB~',_binary '\ÔŒÙ\0²\é€	˜\ìøB~',_binary '\ã°\ÄB˜üšûôÈ™o¹$\'®A\äd›“L¤•™xR¸U','',0,'?'),(_binary 'xù\Ç\ÓûPwõ8ñ¹\ØZÿ:','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/AbstractBlock.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾\Ì|4°øóqü\Èy\Zû`',_binary '¼jgOKñ{wtn\"\æ\Z\áÞ´\Éø¢m2\Zh_%X\Û\Ðò€™','',0,'?'),(_binary 'xük!òÍ¯Y”…KzÁ	Às','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-profile.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­©`$jÌƒñŽžGh”“',_binary 'ú‹ž]pÃ›Fœññ™À‚\æS§I±ƒò÷\ÈØ¢šxrOd','',0,'?'),(_binary 'y¹\Õ\é	Dô3u•±Q½','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/autoload_namespaces.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\á,}vÄ¨3¼õGÀ\â)©',_binary 'E½r4@\0¸Ô¡$¦\âz\æú3ð¸$l²\ê\Z\Ð`i\äex\Ãl\Ê','',0,'?'),(_binary 'yŠ­1‰\â-\è†/fI× ','wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ê\ã09\rÉ˜a—d·£øP',_binary 'F*O\àÐžq^\Êl\×\Êgz·‚,I?\Ôb\ÎR\ï]K\ÂÖ³E','',0,'?'),(_binary 'y&E\ÙzÝœ™Z½y×ºÚ²','wp-includes/class-wp-recovery-mode-key-service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´9A…¨l†\Ì\é%<—C',_binary '\îú¡’„{\èŒTg¦}ÁEˆø^\î[—Fe°.\Ô','',0,'?'),(_binary 'y52¤m£\0¥l™\"ùe','wp-includes/js/dist/priority-queue.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡\ÞRª°\Z\Ü\ÉZøFœ›3\0',_binary '\ê\ÙXio\Ì\Üû‹=”cù-‡š¥qL\Ýó€~¯r\Ôd\Ø0','',0,'?'),(_binary 'y92ü¤L’„Øžÿ\Ü6\äP\Ä','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ [Mr\Ð\Îo‹qXØ¤qW\ê',_binary '}[\ËK;\Ç\â§5lÀ¨-¾¾_ˆZL4©Ož\ëñ\Âx/«','',0,'?'),(_binary 'y:”æ•»\r\ßjb.D\ÞYú','wp-content/plugins/products-compare-for-woocommerce/berocket/languages/BeRocket_domain-en_US.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@Ú©6cqø\Ì\n\ró2\í',_binary '?·A*ž4õ\ä\ï~¼\á“7Kw:|&U\á	h¢W\Êz','',0,'?'),(_binary 'yA©‡0»¦•Xz(€ž\'\\','wp-admin/js/widgets/media-gallery-widget.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#D‰\"5.Ž(\Ñ\Þ\Ô5µ\Ð',_binary 'Pe±Z\nG=<Œ\í\Û¹B3±\Õ\n\rÙ˜\ÊÀ<\Â\Æ×…¹Š','',0,'?'),(_binary 'yAµp\"¶}SK7œ¹õE²','wp-content/themes/flatsome/inc/woocommerce/structure-wc-product-page-header.php',0,_binary 'Q\éU”·¥¿\Õ<¦Ä²\ã',_binary 'Q\éU”·¥¿\Õ<¦Ä²\ã',_binary '\Ð\äW\Ð\ï”\â–	¶U¹vFd4·…Ž²?\äGƒ\Ô(\Îp™\r','',0,'?'),(_binary 'yKEo¯e¹§Hˆþeª\ÌQ‰','wp-content/plugins/woocommerce/assets/js/selectWoo/selectWoo.full.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e³4LÝ w*\0<&R&',_binary 'zAü÷Mõú¦ðˆVö’rY\á»\è3_š]Á$RqR\'qN','',0,'?'),(_binary 'yOž\0yjùeB\nVp\Èûð','wp-includes/sodium_compat/src/Core/Curve25519/Ge/P2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–Eí¯·\äƒÆ€küvk¢¥\r',_binary 'ð¾Š¥iiLM»P µ¬4\ÚöÞ¨O_!ü\Íø“iN	»','',0,'?'),(_binary 'yp‘¦e¯\â‚V@M\Ñ÷\Ôú','wp-content/plugins/woocommerce/includes/cli/class-wc-cli-runner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½\'„aió\Î\ÅaŸJ',_binary 'ó¸w\íkpio‚&\é\×#¹žì³£sˆ\îV\æ5Œf§','',0,'?'),(_binary 'y|\Ó\æ$òW:qI›)@qM','wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/template-placeholders/fallback.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\Ì\ÇFÈ¥Oö«;\ïDc´',_binary ';NùGŽ\ä\é\×:©÷[\0•:m e/™¿¹h_4\È','',0,'?'),(_binary 'y\×\n–,\nC\ç|[i','wp-includes/customize/class-wp-customize-selective-refresh.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´½]\ËU‰eŽ¥¡p\Ë Q˜',_binary '\å¨0qóµ\Ð\Ã\í¬cxn›¡}x\Ý\0»\ç°\åzv1ª¨','',0,'?'),(_binary 'y‹ƒ{ˆ\\b\Òa\'\èø\\','wp-includes/customize/class-wp-sidebar-block-editor-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é]m³¿L-D\Ñ\Õ\Ó+ZÙ•',_binary '’o,bL\ÞnB\ÄðQvñ-|qd½¢\Û\'B=ŠX&','',0,'?'),(_binary 'y™Î¸hC øúP\Û<#\à\æ','wp-content/plugins/woocommerce-multilingual/res/js/products-screen-option.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~^ûyR65@csSJr\Åû',_binary '\ÑÀ\æ\Þ<³PbÁ\ëÐ“\Ý\ÐÀf­f7dlö€õøS\Z','',0,'?'),(_binary 'y¨‰ä‚¬\Ô2!‚5»','wp-content/plugins/woocommerce/src/Admin/PluginsProvider/PluginsProviderInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[þ™º9,\âp£\Îûh;G',_binary '\ä\\¼¶µ|\Ï-™[¨\Ô(¡‰E97k\Ê/p‚þÀ  ?\Æ','',0,'?'),(_binary 'y¨\Ï›ÿA«9E\0ÿ$/h','wp-content/themes/flatsome/woocommerce/loop/filter-button.php',0,_binary '\ë\Â\ÝPo6µv[o\è\Å\Ðrr¸',_binary '\ë\Â\ÝPo6µv[o\è\Å\Ðrr¸',_binary 'ý“‘\ÏJA–Ù¼\àñ[¥;=V\'ŸJ9c\Ò\É','',0,'?'),(_binary 'y­†\Äõ«\\ð\Ô\Äjü','wp-content/themes/flatsome/inc/admin/kirki/controls/views/number.php',0,_binary '[\îW\Þõ\ìQÞ‰Š\0›K\ã',_binary '[\îW\Þõ\ìQÞ‰Š\0›K\ã',_binary '4b‚\Åó{(\Z¥\\\Ñ9\Ï|–Ra=S\Ømp	žÞŽ\r^@À','',0,'?'),(_binary 'y±sü|Y\í‚\"ÿK>','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/CSSList/CSSList.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<!þ¥\0‚k@D3\\t%U¢',_binary 'g*b»\éÀ\"Q§¾\'ƒ1\â\Ð\0Ô¥mJ\Í\Õ\\¸\Ý¼0†<','',0,'?'),(_binary 'y±þUj4z\Ç\í¡t\ÖN`','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|ø\ÏD°F\Ë\ÜP`=ø„\Ñ',_binary 'd¯7³lyw‡¦2ñV¾03\Ô\ÒZý\ÈË‹\\_£\âG\Zý\ÞT','',0,'?'),(_binary 'y³xó\Ómœj¡\î\Ì\éGò','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-product-shipping-classes-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kýŒ®\ÉO³‹!O-',_binary '\":ú\Ä­7aChQE\í<´Þ¶H\éÀŠö!-?Tüù\Ã','',0,'?'),(_binary 'y´\í\ÝEa\Ìó:[\0','wp-includes/class.wp-dependencies.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\ÝaH¶dR³‡\Ë\\\é<XŠ',_binary '7`Õ‚	Ô\â‹|ŠU<dNÖ¯Ó¦”*r’c\n\ä|ªJ','',0,'?'),(_binary 'y¹\Újp\çý–\Ïj[&!T','wp-content/plugins/woocommerce-currency-switcher/views/fixed/product_price_data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°\É\ÒeûQÀ|ÒŠ\ZII',_binary 'ˆ\Z­AÀ\ØZ‹—·\Ñ\ÎH\r’**ˆ\îNCi9Ò¥$(\ä','',0,'?'),(_binary 'y\Å5‹7!‘g\Ë\â²\Å 	','wp-content/themes/twentynineteen/js/customize-preview.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bY\Z¢bg •¸œjeCÀ',_binary 'ø0]L\0\ì\ä™W\çð\ã\×=Âœ,ø[\Ï\Ç}|±•\Ã\ì\\š','',0,'?'),(_binary 'y\Ì¸+û\æˆp\Ëh\Äj\È','wp-content/plugins/nextend-facebook-connect/admin/images/ok.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C}œ\ßð?[h\Ç}×¤!Dl',_binary '½\Èsv\ç÷K;,­T\Óa\Ò-C½,U};Co\Ü/?','',0,'?'),(_binary 'y\Ûü?\Ñô3&x\Öýg\n\"ª','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--product-add-to-cart-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Íª.nˆ\Õ	\ê•#l·{',_binary 'a\èn\rÂšGök¯óv\ã\ÄØƒŠOk•\âŠi¾\Î\Ú\0§','',0,'?'),(_binary 'y\ãqŽcµH4\îrd2´Ÿ\Ï','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/return-to-cart-button/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õ²ý×¶c$Twó\\\èË™',_binary '(N…\Ç`“DY\Ë\î\Ïas–d/óLpL\ÂˆÏŸ»\è','',0,'?'),(_binary 'y\æ3¡\Ý\â2/Ÿ¤[X#ù\ÂF','wp-includes/blocks/query-title/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\Ë]iŸ\Ð1S[\É\Ý\á¿\'”y',_binary 'J\Ýe~‘Þ™c§èœ§yBb\Úvƒ}04G™™I-cªW','',0,'?'),(_binary 'y\èh\àÀBi®y–/…@ª','wp-content/plugins/wordfence/css/jquery-ui.structure.min.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#õ/\Ì±h<ÀžU\Õõ¤',_binary 'Ÿn\ä\èøÁ\ài\Ùë—…µNµvX¥7«Y]´…¼°D','',0,'?'),(_binary 'y\è©w&\êÕ’X\Þ:ú{\Þô','wp-content/themes/flatsome/inc/admin/backend/menu/class-menu.php',0,_binary 'I\\–O…\ZeV€Ÿ° \ÐPŽ',_binary 'I\\–O…\ZeV€Ÿ° \ÐPŽ',_binary 'œ©d¡$…\äQ\à‘bWòJD\â\å©x\Ê_¾\êUmY\Ü','',0,'?'),(_binary 'y\êŽ\äG•\\`˜\áù¢MR”','wp-admin/network/site-new.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Wû—Y‡\Û\Ã4]Í¡’\ã<À',_binary 'KBÇ±w \'ýA\ì.i\0! Tš`P\Å\'òƒ†\ê','',0,'?'),(_binary 'yñ «\0LzÀã¶µÙˆ','wp-includes/blocks/group/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Iþ\Û\Ö\ßõW\Ó@\ÖGB!?',_binary '½YTl$fœµ\áu|µO\è°ýbÙ…¦ ù#ë†Š)¬«\ï','',0,'?'),(_binary 'z\ß|8•Vÿ½-ÓµUZú','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/filter-submit-button/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>{_´\Ò!5~kl6P%]4$',_binary '\Ð*2 ¸‹C5Í–A—Ÿ\È,ù)|C\ÒSUûy ¦ÿ‘}','',0,'?'),(_binary 'z¼óŸˆk”F\Í™©÷\nø','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/proceed-to-checkout-block/attributes.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯\ÖKÁ¾\ßzŽ¬4‡p\Ð',_binary 'övÇ´\å\Û\Ö7Yq°Þ£Q8\Äx`\ÙP\è€ö\È2kŸ«Ÿ®\ç','',0,'?'),(_binary 'z	ƒ‚6\ì†\È-oJ\å','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-dashboard.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\áÿ™T…3M:¯×¢o\"	E\ì',_binary 'ñróS+ƒ\È]\Æ\r·ižþ‡þ%\ZÁþ5iš¹±Ï´WBˆB','',0,'?'),(_binary 'zÉµ›‚@ö/\Î/@ ','wp-content/plugins/wordfence/views/waf/options-group-advanced-firewall.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\ä58OšO}ôös',_binary '«ž¢„$9ªdS>;ð:‚¡€\n\î\ïad_¨X\Ý¦[F','',0,'?'),(_binary 'z\Ë\Öø¨²õ“\Ägn5','wp-content/plugins/woocommerce/assets/client/admin/chunks/8851.style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':F\ã\í\æƒHò°\Ýp%',_binary '²5}õ\ÜõŸô^§x ¯=\Û\Âñ®w\'\Ã&\Ä|•\ë','',0,'?'),(_binary 'z£\Ê½\çr\ÜS˜','wp-content/themes/flatsome/inc/extensions/flatsome-wc-quick-view/flatsome-quick-view.php',0,_binary '\áò o»¹XµS0Ï…Ž\Ù',_binary '\áò o»¹XµS0Ï…Ž\Ù',_binary '¨O|¬Zc	•x\Ê‰õ†1Kl%žPVt·L\é´','',0,'?'),(_binary 'z p”\à–0\Þv9]¨‘½‡q','wp-content/plugins/woocommerce/src/Database/Migrations/CustomOrderTable/MetaToMetaTableMigrator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',¥YµFó.V\ä\r`Š4|[',_binary '\Å{~\\¦L?·®li<\âO\ÏCq»Y§n§0Š\Ë$yÆ¤õ','',0,'?'),(_binary 'z!ˆ€\r¬T!K\Ó\Ëz','wp-content/plugins/woocommerce/includes/cli/class-wc-cli-update-command.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Æ\ÑW—\È4(A$Oªc\ës»',_binary '†û‰	Vö\Äx!BÁ\ÕØŒ@rU™¬¸,\æn\n¬‘Y\Û&','',0,'?'),(_binary 'z$\ìr2XKO\î_:3õ_','wp-content/plugins/nextend-facebook-connect/admin/templates/pro.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\ë\Ê%€Š¶\\øJav­\åe\Ö',_binary 'K\ê\íS	abþ¥\Ì(áµ€K\Øÿ?ÕšgV²\Õ\ÖóB;¹\Ú\á','',0,'?'),(_binary 'z.[\ÇýD8R\Ô','wp-includes/js/codemirror/jsonlint.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I)fy\Þ\ãkTŒ+\Ê\í<ÕŸ',_binary '“$D;;¯€´ž0\Å\ÖÿFø~p’øGÒ“F¹Ë¦…','',0,'?'),(_binary 'z0HBG0”³—_.\Üô','wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-hook-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\ÞÕ–ªq[—ZÕÄ‰÷',_binary '\àtq\ãõu©:8*ø¦$A]ä¿‰‰\Ôlf°\Ã%¼—','',0,'?'),(_binary 'z;j2WDº6²Œ[¡V','wp-admin/js/accordion.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' -)‰\Æ@O(®\é¦òb˜',_binary 'ý„1\åiLOU™m\r[X\Åðð00\Úÿ\\ˆE²BŠµ\Þ-','',0,'?'),(_binary 'z;˜uÄ>¯¯\Ä\Ñ`xh','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/blocks-registry/inserter.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#ÁF\Û;-:l¦Jz´«',_binary 'È´4\Ówa®\Ôp\à$û“¿£ù1\È87ù\Ä\ä\Å\×Q4ñ','',0,'?'),(_binary 'z?¢z}\ÜbI\ïn\ài¡‰\r','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Nkf±u\0/t|\ÎF\Õ',_binary '‰Ú¹­¿?¤^\'(\á¬!\ÕV^)s´¹b7,:óŸþ\×\×q','',0,'?'),(_binary 'zA9ùööýÑªþ¿?ø\ç','wp-content/plugins/woocommerce/assets/client/admin/shipping-recommendations/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Jù}x¨N§*Ÿ\ëô¥C>',_binary '‹7\ßD’=<k\Ü/a¤Y5\Ç\0\åuö\Ð\ß*ó‰\Ö w)','',0,'?'),(_binary 'zD\Ïvv€\à\ÌX_%³\áž\Ð\Û','wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/core/fontruler.js',0,_binary '×ŒCqß”ja\È\Âø™u',_binary '×ŒCqß”ja\È\Âø™u',_binary 'À›§\ß7¼AÁ\r„¾ë‘‘x—\ß\ÕLs.°YÁA™\áÙ¸','',0,'?'),(_binary 'zK×§\åýŠv@ƒ“u-','wp-content/plugins/woocommerce-currency-switcher/classes/rate_alert.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}1*ø€E®q²T±>\Ò4O',_binary '\Íq¼`òlŸ\Äju\Ê\Æ\Ð3iôöD\ÄX	À-·;\å','',0,'?'),(_binary 'zM\êEù®,‘h½¡¯§HK','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-setup-wizard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ô¶Í\ëK›»¾ciÏ¬U',_binary '\ß\È%·¶2\É\nˆHŸ¡Áš+o¡lG\Ø\"W\çxŸ\Í\â','',0,'?'),(_binary 'zOk t\Ã\ìkkk‹\ê\æ','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/packager/icon-128x128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ï=ŒŽ`lˆu—kv¸i1t{',_binary '¶\ÕHî—¡\ãƒ~\Ø^ùx{Š¶\Å\r(K³Ê­\È\ä\×A\×oõ6','',0,'?'),(_binary 'zXžwºŒ^©Éº8÷PÑŠe','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/woo_gallery.svg',0,_binary '|±f9V—™F\É\Î`’\Ô6ô',_binary '|±f9V—™F\É\Î`’\Ô6ô',_binary 'Tl]\ëL\Ï.WL~ €*ÿ°¿³\é@’¨‡4øúyp','',0,'?'),(_binary 'zd8\ÅFóMðý$Sƒ[‡¿','wp-content/themes/twentytwentytwo/inc/patterns/footer-navigation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ï® ³\ß?nO[\Æ\×2y',_binary '¿¸(d.€Ÿ¯\"\\ªnˆ¬öqF€w {/©\Ù:a\"¨›','',0,'?'),(_binary 'zk4€})\'™O‚3ÀO','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-pl_PL.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ºÞ„¯\åü/;Q\Í}Ó–Ž',_binary 'X_1\Ìuý\ËÁµYFu/\Ö`xý™Ak¬rƒ \à6¥r!i','',0,'?'),(_binary 'zo¸†Ü²ˆ~¡\áˆb','wp-content/plugins/wordfence/lib/wfAdminNoticeQueue.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\ë’5”\éuNi\Í\Î!\Åz',_binary '€\Ô\é\Î#…\Ë\ÈÉ›!wƒcwØƒ}6¢\Ùó‚~A§’ó','',0,'?'),(_binary 'z|û­ª©\îL©\âF\ÄD\ßù','wp-includes/css/dist/edit-widgets/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ö\Ó\ßÏª<ø!\ÐGbœŽ',_binary '—\ZDKú\Åv¿\Î%\àŠ\Ô5\È\ê{7|<Kg*kC¤Rn','',0,'?'),(_binary 'z}§VŒ)‰!™\æ	>\Ó{','wp-content/plugins/woocommerce-multilingual/classes/Reports/Categories/Query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ö\Îw\Ë\àzig5c4ú77',_binary 'lþnaò³M[&¶­F…\Ôä•©¦q}Òƒû+&A','',0,'?'),(_binary 'z‡U¨¿\ËG¨w€KÖˆI','wp-content/plugins/ti-woocommerce-wishlist/views/section-field-html.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"û\É$Ú¦!FNER²',_binary '2Xøœ\ÊWº9¡µ–\ÇD3À½:\ÓI­š‰üÀ\Î\åxU','',0,'?'),(_binary 'zˆm•SAý}I¼þ´)','wp-includes/sodium_compat/namespaced/Compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Aòi\êk²/\Ê\å¿j\rnŽ3',_binary '1À\'§¶‡Õ».\ìO\Ð\à}5ºAfi¤~¢>\î:}s','',0,'?'),(_binary 'zˆ\Ç.’Y¬{f\Ç<m2}','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/debug/class-otgs-installer-logger-storage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\æ\éh\à\ÛóQÙ‰²ƒ\î´',_binary '¼ÀBiò\áú7>\ç&\Øý§P\'õ0ay[²$\Ñ\Õš‡\è\Ë','',0,'?'),(_binary 'zŠô+j\r\í\Êg\nA\ë','wp-content/plugins/yith-woocommerce-compare/assets/images/bg-pattern.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†kUºô¼wu\Ú\Þq(9[',_binary 'Oû¾]wJED0jCˆ0h9\àd½\Ã{\Ö9¤Œ\0þ¬xú','',0,'?'),(_binary 'z2]w\'´\á=\"\Ó-£4','wp-includes/blocks/query-pagination-previous/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×8\Ï\áß†\Åk§Só€\ê',_binary '­ü/¢þW°\ä ôU•\Ö\Ù]±4bµ\ï\äƒM¤¾d','',0,'?'),(_binary 'z²\ã¡Tpe¦¹\Ì!/:','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Tokenizer/TokenizerEscaping.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’…`¹`ôfl‚Œ!&',_binary '.\n¬£\Ëu‡ŽšÜ‚\ïóU\åc\ér\\?aE\èif-°–ø','',0,'?'),(_binary 'z\ëkð{¿\Ò\àa\Þ`+”¢','wp-content/themes/flatsome/inc/builder/shortcodes/values/image-hover.php',0,_binary '*p“\"Ñ¢\ÚE§û)Œ',_binary '*p“\"Ñ¢\ÚE§û)Œ',_binary '5\\\0Œ¥r\äyIsO\'\Üó„¾Á\Ì\nU(f','',0,'?'),(_binary 'z¢5·*\ZADZCk¬\áj®’','wp-content/plugins/wordfence/images/icons/magnifier.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨§uO®{:qcV\ã\î\'',_binary '™ at¿¿vºdQ\Ã\ë¨0(\ìIj®Æ–O§¢$e(*','',0,'?'),(_binary 'z¢š\å‘L©£5	g5µÄŽ¬','wp-includes/sodium_compat/src/Core/Curve25519/Ge/P1p1.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\×r\èI¦±¯bw\'-7\íš',_binary '³u©S\Õ{•ü<ø“ôn\rß…+-#²;»á·ƒQÐ®','',0,'?'),(_binary 'z¨‹\ß8 Lò{Ÿ\Óõq','wp-content/plugins/wordfence/lib/menu_scanner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\î/ØµtbŸa¬‚\ã0†\'2',_binary 'J”­*e*ƒº0¯\ØqCs\'GO.~r\î1±OmS\Ë4','',0,'?'),(_binary 'z¨¯Q<’˜\'š€U~\ÔR\\','wp-includes/css/wp-embed-template.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ù^<¤‘\ï_\äJ·œXw',_binary '\\!kj‹²‹i¥ß””û¡\"8…Z» \ÑPJ÷','',0,'?'),(_binary 'z©B¤\îŠB\0\î=Ct–+\Û','wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/styles/style-3/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ê.šWh‡]\ë?‹\Öý&\Ã',_binary '‘tL~¦‰µUðò\Z\Ãi\Å_½1.®À\ÔQU¹@…!\á','',0,'?'),(_binary 'z¬ö\Õ\ïJX\Ôw{!\rF«Àº','wp-admin/includes/class-wp-upgrader-skins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\"úƒ¼\ÈÒ‘\á-Ñ‰',_binary '.¡™7j3?Ì¶\Ê\ËÂ·?‹¡2U“EŽ.“G\ÌW','',0,'?'),(_binary 'z´œ“ŽõB¸2\áZ¶\Ø÷','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-new/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Í\ÕG²†YVŠ¯ùÿ\ê¬',_binary 'P8¿\é%”³@¨m*\\ñ•\â*•\á\ï˜-•Š','',0,'?'),(_binary 'z½¼Oc\é¬\Ë ~„i','wp-content/plugins/woocommerce/includes/customizer/class-wc-customizer-control-cropping.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F°Ä·³^\ì•<%\Ïz1š‘',_binary '?“{{óSqûð¥c‡©4µ˜-ð7«^_{\Ü	F\Þ','',0,'?'),(_binary 'zÀX¤ª^KtÎ—:\ÛG&\ä','wp-content/plugins/woocommerce/vendor/symfony/css-selector/XPath/Extension/NodeExtension.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mi>\Ì1¦h\\½©4x',_binary 'jþ§l\ìRõ©=’¤S e*4Yþ>\ÑüÊµ¶Ss6(J|','',0,'?'),(_binary 'zÄ·\Ú{º{\Øp½/ah,O','wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-zones.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':D$\Ñ\í!“»\í¼uT<I\ê',_binary 'e¸\ÏJ¥XQK{¡e—4Žª+«?Éª‹§g?­\Ùj','',0,'?'),(_binary 'zÎ‹Û—\Ú`\îç€ƒ\çô1\0','wp-includes/js/jquery/ui/effect.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡…ñªsO¹j¸\n¼µ',_binary 'ÙŒ¼,¬vPV¸\Ï\ÔnA™S¯j\î“\ßM\ïZ\ä‚ñ%;K','',0,'?'),(_binary 'zÏ¶¬IK§U\Ò\n±\'›d','wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/UI/Hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4]’­W\Ò\Ùõ\r=qB«œ',_binary '&ü¶/Xû/¿ÀÓ—¿\åD\0¾$\Ä\Úkd?¹”H','',0,'?'),(_binary 'z\ÓËŸRx\È\Ù<Eä´¤`/','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/upgrade/error.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨œ]/¹óuõi€‚[Ek',_binary '´1põœ3ˆ¶Ò®w¢û¤w¡YúÒŒ€±Ž´PQô\Ò','',0,'?'),(_binary 'z\Þ#\ìY}\àM£À1}\nwg','wp-content/plugins/woocommerce-multilingual/vendor/wpml-shared/wpml-lib-dependencies/src/dependencies/class-wpml-core-version-check.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bjŠ£\Ã]\Ñ#\0	•h\Ùu\Û\Ë',_binary '\Æ÷&\Æ\ÓS|\é°ùyð\èŠ§Hoƒÿ\Ôc\ßK','',0,'?'),(_binary 'z\ßW¬sW5Êˆ÷ )úž','wp-includes/css/dist/customize-widgets/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zh?\0A½\Ö_û[™³',_binary '›>ò§mö§\ØWÀµ.p€°p\"ª› ¢*­¯%œ','',0,'?'),(_binary 'z\á\Z\é›¶¿]ƒ3p¢|E','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/collections/use-collection.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÒS”<ž\'[?0Á	Rª\Ì',_binary '&jŽÐ‰\\f…§\É\Ñ\Ìö¦\âòø0\n’[w”\"\í\ßv','',0,'?'),(_binary 'z\äQR)¡ˆL4*®W&','wp-content/themes/flatsome/inc/admin/kirki/controls/views/textarea.php',0,_binary '0\"¬\èø?#\á£n;¾eA\ß',_binary '0\"¬\èø?#\á£n;¾eA\ß',_binary ')Œoa…5\ÌKR9f2\Ñcw÷X\éVv5\ß\È\ÈýY³‡öt','',0,'?'),(_binary 'züZUU¢\å\Å`¿\ÜØ•DD“','wp-content/themes/flatsome/page-featured-items-4col.php',0,_binary 'Ÿ_\Ê\àÁ:Li™Mº\'ð',_binary 'Ÿ_\Ê\àÁ:Li™Mº\'ð',_binary ',#¨\Z2\è\Ë~‚E\Ä\ïM\ÚE\r¢úC¨À¤™_ŠE\ÅI~','',0,'?'),(_binary '{\n„\Õ\åR o­\æR=\'gÀ','wp-admin/js/widgets/custom-html-widgets.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ö•§eF¹’Ö\ãEO÷^',_binary 'ˆùŽ”¥\ÝI«ù|Muµa6ûi\0¦¦J_\ænº\Ükñº{','',0,'?'),(_binary '{\n\Ñ\Â\áß»ŽT&e.t','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–S\ÅU{¥\éiª*©ò\0ªÚ¡',_binary 'b\ÙUE\ä+®t¦dØ‚.Ÿ°\Ä\×ÁC#·§uI\Ð¿†§–','',0,'?'),(_binary '{%§\áè”´\æXƒ\Z˜ô','wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-reports.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’5ø‹\ï½ñòõÙŽI\ÓH',_binary 'š	Ñ£¾\Ó0:ƒ.¡{\ë+IŒ´•bó_GX[–d‹¡¿\Z[','',0,'?'),(_binary '{¯ð¯ª¢\á\Ù\à‹˜Šƒ§','wp-includes/blocks/post-comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{ 1\Çñ0Ù•Er',_binary 'º6o&€‚Ø¡†[ŠöñtJY\Õ\Ò$‰M“ûAØƒ«µ¿q¿ú','',0,'?'),(_binary '{N¤ˆ\È2\íQ®u\Ô\Þ=	œ','wp-admin/network/theme-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¶˜( aýÔ¢[²U?\Ê',_binary 'Àƒ®\ÛÐˆe÷gT˜¶‰²¶±G.’ó—=ºa\0@›','',0,'?'),(_binary '{%\Ô	\"(i¼Ke\nþŸ\Ðô','wp-content/plugins/woocommerce-currency-switcher/classes/widgets/widget-currency-converter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ùg™sö©\ç†\îCqþUW',_binary 'B×‰a\ä<\Õñ:¼¹Ê\çrV:|ba‡*oõŠÖ³<zù','',0,'?'),(_binary '{&Rv9\È0\'@þ©@u	žo','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/products-list.svg',0,_binary 'Ùa\æ\Ð\Ñ ]¹$\ç¾gƒb',_binary 'Ùa\æ\Ð\Ñ ]¹$\ç¾gƒb',_binary 'h÷\Åø§aX\ë>N\ï¸öXy$´µE¥Ìš<üo\Ç\ßG©','',0,'?'),(_binary '{\'˜ûó\Ù]H•dú°Át\Ç','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-product-search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷†\"…˜½&ó\åù	öÏ“¾',_binary 'Ùƒ ¼üo^ªÒƒ;½mù(\ÒÁË±,‚«°\å\ÌfÙ·G','',0,'?'),(_binary '{/\çŸ\á\Ø6–Z³K½\"\Ç','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/edit-product-link/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>,·¯™\×$\æ­\"?%',_binary '—òö²z)\0S\æB\ÛÈ—N¨ud\Â*w\0\Ã`\æ\ì¡\à','',0,'?'),(_binary '{88\\m}R8I\'','wp-content/plugins/woocommerce/assets/client/admin/chunks/payment-recommendations.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5½ô„‰¡¼-?o\ç\0',_binary 'vý\Éì¾€ðÇ©«¢\\%\Ýò¦?M\r7/Šœ_IA’ü','',0,'?'),(_binary '{8MHEªW!\ÆõVz\Ù)','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/he.js',0,_binary '<\nz6\Êù®\ç\æj\ç\á&',_binary '<\nz6\Êù®\ç\æj\ç\á&',_binary '¯\Ùm*¥Md4\ÅQ\\È…dC8h\Ä°gý\Ô{_Ø–\Þô[Š','',0,'?'),(_binary '{E¯ñ0™b\×e¿\Ý-\êYT;','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader/class-latest-autoloader-guard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'em\Õ_7?˜.U½\í•q',_binary '6*Lÿln$¤©…†™>{›\æu\Å\Ò^\ÄÎ€ #aTi²\Ë','',0,'?'),(_binary '{F·\ÕS>/tã‹£kV\Ê','wp-content/plugins/ti-woocommerce-wishlist/assets/css/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾¾;–£n+…|ôµ(',_binary '’™Výš½œe¯\ä_,õdˆX\ÎøOYð;!Q','',0,'?'),(_binary '{T\Ð\Å,:‘O*aLüó2¡w','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-payment-method-cheque.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ho–\í\Öß©7\×í²‹3\Ì',_binary 'Š\ä6V\r~ñ\\\0¦D¢ -QÁI\ËöŠ7\Ì\Ø#\ê’\ç','',0,'?'),(_binary '{[\ã/Á°³†Ú‘\Îý„','wp-content/plugins/wordfence/views/dashboard/option-howgetips.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÜŽ¼húùµ\Ø\è(v1”',_binary 'ƒ\Zôle±knj\'=\á‹|C´¬ò,\0\Ü\ìMlDG\á\å\Ýô','',0,'?'),(_binary '{_YG\É\'g‰\ÑÆ˜;\Ôx','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-tax-classes-v1-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^Ž.¤\Õ\ëŸJG=y\0\æÀe',_binary '3‡\É\'y\æ]\Éd\á¼bÿ\Ý\à\ÌOÌ°ó¢\Ât[.Bÿ','',0,'?'),(_binary '{_rcWÿ\ÃU@·©8\à•b£','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/licence-error.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r_-KWB¶\\Úœ“†^ýþv',_binary 'e¥ªc‰Fõ[@\\ö\çH}d›\Ý\Ù\Îg\ÏÝ»|>)','',0,'?'),(_binary '{a\âÀ{4\Ó;ò\ÓMoØ²','wp-includes/block-template-utils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\Åf\Ì4f h\"k\É-',_binary 'E,jÁ/\é8ƒ;|Ô½±w>šø_>{‡\nJ\Î\ÒÚ’§°','',0,'?'),(_binary '{aý­p2¢cÿ~\Ö{/\0~','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader/class-hook-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\Z®^[\Î-ý|W\ë8\×',_binary '‰uQñII:\ê˜\å\Ã\ÏE@…V\ßV/|2)+\ÄoÎ¼W','',0,'?'),(_binary '{j;\×\áÌ†T4\Æ7²½','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EðWMi6\ê=<*@}m¢ð',_binary '€ù…¦DŽ¤RV\\Å­\à<7ty	³,8\áY\ämLÁ','',0,'?'),(_binary '{t\ÈE~ª\ÌP\ÛA´1ø ','wp-admin/js/tags.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>.Sc~\r\r½«!s\â\î(#Š',_binary 'Tº\ï*/°2\Äi3™j¬´p%¨\0Ÿ³n\Þx[5\'\Öª','',0,'?'),(_binary '{y\"¶Òµµ\ÐÝ©¶{­','wp-admin/includes/class-walker-category-checklist.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹™²Ë•5T\çô®>²c',_binary '3mØ·&7\ê8¹m‚\áÓ’òx+\Ã8©¬Ê½{dñk\Ìñ¾','',0,'?'),(_binary '{{ó^Y6¹\Ì9ÿ•‘˜','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/checkbox-array.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®¢e\Ðæ»¥\Ê\ÊÛ¬ós{ü',_binary 'žs­°n·d!¡Vq\Ý\ÛÀƒS‘\Ýñ(|4r¿;ûŸ?','',0,'?'),(_binary '{}±–Šˆ5c¿\æ,ô\Èò%c','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/debug/class-otgs-installer-log-factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',lð\Ò${9«\Ë%_+±4',_binary 'Õ\ã\å”\ÎÁ\ÜxŒÀ\é\Øãˆ£5)\Ð\Å\Â`p@Tü\ÉÀº','',0,'?'),(_binary '{†\Ï3µ®!9\å^\Ô\Ëð','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-media/icon-128x128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'üB\àQ\Óõ‚Q¦À\ÏSú',_binary 'õóD8µ \î\\tW\'À-)V{\ãfpzú±ºW¯B\É\0-','',0,'?'),(_binary '{ˆ{n,\çd§¬Ñ\Ã\'\Ð','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/empty-cart-block/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c°\Ù\Öq+šßŽµm\è£',_binary 'ñ\ÈGÿÂŽ=€})EX=[¾¯R¾œ—3\ZK\êp€iô{','',0,'?'),(_binary '{½i\Üg\Ñ3\àaýEÅž1','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/collections/test/reducers.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…°[¬uØˆP®Dnknh½',_binary '¦\r\ÃB­™‘+ß‡\Â)¶ßAb5¥\Ò	uh\0lÈ­\Ôq','',0,'?'),(_binary '{Pû6¾¸$\'\à','wp-content/plugins/woocommerce/templates/emails/plain/email-order-details.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡ mALŠ*—Óºwk„',_binary 'E\n+\0%Z\ç\Â·ó\nž\0^\Üòô>ˆ·\ê÷\Äx\ìV-tA','',0,'?'),(_binary '{VÕ„²˜ô.D·\Ã\Ö:','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/title.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž\r\éfYSwn¼nc',_binary '•¦¿%\\`-\é^D\æ¦\'fm£\êd¬—‚“\n?×©2#','',0,'?'),(_binary '{•ù\n&$IUœ¸‰ŒS9','wp-content/plugins/woocommerce/includes/tracks/class-wc-tracks-footer-pixel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\à\Ö ?Gv!­%‘Bzþ',_binary '#\ì ¥w\ár©—c\Ìz>\æ@U\Ûj‚¡‹Z˜\Z6hõ©œ','',0,'?'),(_binary '{–3€ªŽ+a¤zzW','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/collections/test/resolvers.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' x² h\Æ®\å•S–-¥9',_binary 'G\\9\ÄKÄ¸k\î\ÄKËŠ\ÝBcZS	ýJ‡¬Z¦¹™PF','',0,'?'),(_binary '{j\ÄÉ|n\ä	^<øWHž','wp-includes/css/dist/nux/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-hJ\ÙÃ \Ù\Òe]þŸýB8V',_binary '\êgôD‰\î\Üöcó[\Õ*\Ô\'}r5qš1\ÍuŽcL½‘4','',0,'?'),(_binary '{Ÿ)\×4e4p:±fW‡','wp-includes/js/jquery/jquery.query.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ø\rÄ¡\ä\áL´z;Ò¿™0\ê',_binary '…Õ²´\í¡\Ñ<\î†C=óñH:\ÆLWÎ¦9b\Ý\n','',0,'?'),(_binary '{©{¿\çu\à\êv$$“¤','wp-content/themes/flatsome/inc/admin/options/blog/options-blog-global.php',0,_binary 'K²ŒƒµGQ\Î- ¹ï¯”À',_binary 'K²ŒƒµGQ\Î- ¹ï¯”À',_binary '(Wu*qŸ×¨b	ŽÞ¨\Ðú\Ø\Ç\ìF@ƒ45b¯\Z\ã','',0,'?'),(_binary '{¬ø\Ü(>.•\æ=Ž\åh%iL','wp-content/plugins/woocommerce-currency-switcher/views/auto_switcher/round_select.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\ÈoÒ¢V\ê´U@B™’',_binary '\Õ\è5h¢ú\Ó\r±‘»÷\ÒkXò²\ÆýI~\Ä­#|ª','',0,'?'),(_binary '{³ø‰¹\ë \ë\Úlx\ÃÌ‚\ë','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/types/icon-128x128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\Õ\ä\Úÿ)™°u”\ÖL',_binary '\Æ\ì\Ý–\áw™øk}\Ù\Ã\êžzœ+}œùv²\ÕZ‘\É','',0,'?'),(_binary '{¸U¿üô¨¼\Ób]\0R©°','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/cs.js',0,_binary '\Í\Ò|\Ñ\çº\ÇÄ‰\â\é',_binary '\Í\Ò|\Ñ\çº\ÇÄ‰\â\é',_binary '\ß\ÑJJÈ†\Zž”8ÿƒ:…ÿ»\Ð\ß\Õé…ž!_M\×','',0,'?'),(_binary '{\Ë\×*ºCŒ÷\ÔôU‘','wp-content/plugins/woocommerce/templates/order/order-details.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œîº±§Uµ´†@Ì¼º(j',_binary 'nò\Ü6\ÈÈœ\â;y|šeÿ™Í5\ÓW[Æ\Ò 9`I','',0,'?'),(_binary '{\Ï4–O;{\'$2dÈ›\àO','wp-content/themes/twentytwenty/inc/starter-content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E÷K*EûQ97ù\Î\Ô>\Ä',_binary '5H?%\à»ÿ\ã)œJzI<Y\È6õWJ2\ãIü‰­dˆ','',0,'?'),(_binary '{\Ò‰´ODz\î\îP\èV\è','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/image_box.svg',0,_binary '©—®^%—\á\ë\æî‚©',_binary '©—®^%—\á\ë\æî‚©',_binary '‘\Â\Ì\Ì\Ã\\viL°jŸZJ«\Éó}Û¤°ä²ºu/.\07','',0,'?'),(_binary '{\Ó\ÌÁ\Ò\Ô\Ã÷\ë3‹•Ì’','wp-content/plugins/nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\Ì(\é6¾¹‚  E\ïÅ–',_binary 'lsŒž¼?`\Û\Ëöµ¼¾¦]’ð\Õ\ÍI\à\Ý\Û\'#nZ','',0,'?'),(_binary '{\àÁvÃ­Ä¶\r±\ÆþC&ý','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Îÿ®!~\Æ\'ÁN‘VD“',_binary '\ÎD\Óù‹¹‹n\Ý\â\Ôo6’\ÌYÇ‹‘J	\Å6ÖaSu2','',0,'?'),(_binary '{\å°\Ç\n\ÍrI«\Å','wp-admin/widgets-form.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w Cu²/ô÷\å«\Ôõ\ÍE',_binary '\ÖËŽ£ñ<!Ì‹	j¢\Ø]]ñÀ\é\ëi	\É6\ß','',0,'?'),(_binary '{\ïRC¼\Ú\Z.*\"¢Q','wp-includes/feed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4Y˜Gû~\"7W\r\Ë\ÑUz',_binary '*~(Y³n+s2¤¥ `\ïxó‘2TÈ¾)@\ë\íL™˜\Ö','',0,'?'),(_binary '{ð\à\à• –\áÏŸ&\Ô\×4G;','wp-content/plugins/ti-woocommerce-wishlist/assets/img/wizard_setup.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Zm{\n@°rI¶Y€VZµ',_binary ')\Éy9rxH\Ä5\ãNns\nÃ¼l¯\ÎC«‚^\è8!\Z\Ý\Æ','',0,'?'),(_binary '{ñ\r\Þ-\ä\Ü} ^\é\Æ','wp-includes/images/smilies/frownie.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q›ó\Ð„°\Äôƒ\í',_binary 'rô~\×Dzo\Ñ÷hß±—\Ò\Ó¾þØ»\">E„+”Ke…','',0,'?'),(_binary '{õ‡?\ì\Ñ\Õü\r’\Ú\n\'','wp-admin/images/imgedit-icons.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\Õ\\2Ÿ\Ù\Ø}©G‰i;O',_binary 'T\ÎN\Â~ˆ\å÷-\Ã@°\èNƒ\ÐÌžV\ç\\¦”(u$\Õ\é','',0,'?'),(_binary '{ü‚ú\Þ2},_iX_^\ã','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library/totals.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ož\ã‚£’©°\Ý8\Í\Ø',_binary 'P)\Æ\åšJ£Z\06™­\ìŽTb\è(Bž\\\0ö\Ñ_V¾Ð²','',0,'?'),(_binary '|jª•x7\Ç(Q}Ž0À\'ð','wp-admin/css/list-tables.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾J”xR¡v$\×H\\˜p\Â',_binary '\ï\Û\Ìm\áoEu›™•3•’š\ã\ÙÑ³r¢,(B\í','',0,'?'),(_binary '|×š´™\Ê1‚‚uý˜Ÿe','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\êf9\ÞñO\Þ\Ì6\Û{l«¶',_binary '…òXÁ>ˆ>2ò½¿‰=½IÌ±F”\Ç»ÒKÅl\Ù\"ž','',0,'?'),(_binary '|(Ÿ÷1;€N(1nx‘³\â','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/no-payment-methods/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ\é¦\æ$_“X¤	$—\Õ',_binary '	\Õ!_•öú\00mÇ‹Q~Ý†0%€ c¼g\ä=J\î','',0,'?'),(_binary '|KŠ\r\áŒ6ø~¨—¿ó(;','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-products-table-block/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iN$W±¬”°Ã­±',_binary 'm\å@…–\ÙÁ\äl\nžH\×Áóüý¨lô\"*£\ÃQŸf\Î\"­','',0,'?'),(_binary '|ƒ\ê\æ½L\ç\ïF8ƒ5<ZM','wp-includes/blocks/gallery/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%b\ëm·¸Ö¤ò\ê\Êi‹',_binary '­ô\"Ïˆ\ËPoŠ\Ê[\"n\Ì\Ð\îvþ¡°\Ù6t~\Ìbv<(	}','',0,'?'),(_binary '|\rl?D_ùm·dû Y\ßx','wp-content/themes/twentytwentyone/assets/js/dark-mode-toggler.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ë¶\é\ÌE\ÝE€dò(£|',_binary '\ÃR–\Ôg…½[>{\ìÁe\Ü\n\ËÚ˜x•1»\ìR','',0,'?'),(_binary '|\áF¬ÿ¢#\×|64¬&','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/colorbox/loading.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K‘\ï\×0\ÆF·\ÚDjôŒ\ÉÄ€',_binary 'p }\ä \Òó¹‹ð\"PX\â¾#d5\ïkÛ­ôtõ\ÒS','',0,'?'),(_binary '|#k\ÎWY2sl\Ù¶øGÀ','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-plugin-common.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\èÕ¥?j\î^v7y0)',_binary 'ùõ»\çó/\0ÿg`¶E»£ÿ”÷A‡¨.~•\rš','',0,'?'),(_binary '|-\Ùý\Ó\Ê“zþ\Ç-¿','wp-admin/export-personal-data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à\ÖÛ¤z›_l’\íü\È>/U\à',_binary 'ÚˆW!sL\ÊI\Å8WZ\ÆeC2\Û··³©¡Ì”\á©\É[º¦n','',0,'?'),(_binary '|.]\Óñ°ˆ0\Û´','wp-includes/blocks/pullquote/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´ªP§*¶aÃµ\ØÄ­·c\ÃF',_binary '6‹\Ì\æÊƒ\È\\-R=÷üpZ¼Íª™\\4ùŽŒJ','',0,'?'),(_binary '|/Ú’\ë\0[*4“ÿxü\ã','wp-includes/js/admin-bar.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥\r\ècó\íÿó ø£\åš@p\Í',_binary 't²˜›bIldö\nôLb³x+\ÅÏ”¶jä¶ª,\âJ\0\r$2','',0,'?'),(_binary '|7{ƒ\ìe®\ßs\Þ\ïQŽ\È\Ø','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/tag-list/constants.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Àú7{sƒuŠQù©\Æ',_binary 'eÀýdMlz…•4v¨p\Ý3FÁ,¡[ÿ[ýým\×','',0,'?'),(_binary '|@ä©ª\Ê,Ef„\nõ-j%v','wp-content/themes/flatsome/woocommerce/myaccount/dashboard-links.php',0,_binary '\â@¦+%r&)˜sÎªI\Ô',_binary '\â@¦+%r&)˜sÎªI\Ô',_binary 'E‡ CµL}>[\nKþ\ÄQQšþ²Á¸É \ë s8¿','',0,'?'),(_binary '|Få•­\ÄfŒ(\ë«fŠõT','wp-content/plugins/yith-woocommerce-wishlist/templates/add-to-wishlist-added.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z¸\ërU°üøMý\êR$\Í',_binary 'k¤Œ©²AJ\Í\âø/P8`•\0U0\"\n\æéŽ‚;\ßi','',0,'?'),(_binary '|N! ;x\ãN&®g\Ù\ïmù','wp-admin/js/widgets/media-image-widget.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ºG9ûFm£qQž',_binary 'Jµ6ð%Vµ\Ú\"\Ó\rK\ÎyÉ³›hª¤‘8†Nö\à\ß\Î\éF','',0,'?'),(_binary '|\\T,¦V\Ã9t)²¢;O[B','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\ßcsD‰h%\éŒ[p!˜4\"',_binary '£;Žø\Ã<¸ª·EU%”Hw¸\Ï\×Dû\áD†Ë‹–ƒ8T','',0,'?'),(_binary '|`+HlLnW7MDF^‰','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/attributes-query.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Æ®rNž›&\í•\n\ê¹',_binary '»·\ãHñ\Õ±\ê\ß>\Ú\ì‰±…Á\ë\0{Mu/X†˜','',0,'?'),(_binary '|a+\n\ØZ9EòpÈ…i¾0','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/php/support/installer-support.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ésÓ”þŠ\ÛT\Ðh…ºlOŽ',_binary '0&ðo”\Ï;ŽYA”Pr¡{9ˆ\ã\ÃO\è\"ÓœF}!XÙ’','',0,'?'),(_binary '|e}ô“E OJ&õ\Ì\Ê','wp-content/plugins/ti-woocommerce-wishlist/assets/css/webfont.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\ì+?‹±o ¦7j-ü',_binary '¾…ò•\Ã<Ÿ=C\â M’\Ó`\è\Ç\Ã\Ð_Ö±uJ\Ø','',0,'?'),(_binary '|hb\Ç\\¦†\í¢–Ø\Ø\Õ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/radio-control/option-layout.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„ ó¢!‰#¦o}\ê',_binary 'DÆ¡»”ù\nƒ.Ád7\Û,®\É&\Å\Â\Ðû\æ@U','',0,'?'),(_binary '|ló+Fûº#ÚŸ½¬\ë\Ãð','wp-includes/class-wp-user-request.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\Ù?˜v·¹\\\×Á¨“\Ð$',_binary 'z\Ù\Ã\è\ì·.t(˜½CŒo\ê\Ä\Ñ	Œ¡\ÆtV\Û','',0,'?'),(_binary '|mÁ1\0¿‘z˜^©m\ã{\Ú','wp-includes/css/dist/customize-widgets/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Oûb,¥/­\ãr\0Ÿ\Ð|‡û',_binary 'ô¶_\ÍCw¼7¶_ž°…Š\Ý\\ÿ\Å/Y°™\íL«r‹­','',0,'?'),(_binary '|r·-I‚2«hS€î²°','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹a>\é\ÒaÁ·\î øwùû',_binary '¶jY}ò›²F}\Ó\ßu¥x68’\ãOÑ’>\à@\è\rpÿ','',0,'?'),(_binary '|zç¿$R“\äð²\å»\×+','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/cart-express-payment-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+ÿ\ÃT\ã(\0\ï3Y\Êú\Ìy¨–',_binary '\ãœXIð\ç¬B\ÉñH#²yx\é /¼+NŸœzY\Õ7rˆ','',0,'?'),(_binary '|„ƒª\íX^>\ä\Ä©f\Ò','wp-content/themes/flatsome/inc/admin/kirki/modules/loading/class-kirki-modules-loading.php',0,_binary 'x[\r¡d\'¦”9»ÆžE6',_binary 'x[\r¡d\'¦”9»ÆžE6',_binary 'žÉ§\ÝW†è²®\ÌN*\ìúýœ\ÙZh¦)…\n§ü%\Æ\ÙH','',0,'?'),(_binary '|¡¡³{ND§s‘Wÿ\Ý','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-plugins-page-notice.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Yªña\'«@=¿”¯\Â',_binary ':w¢¢v\ÆB‰\ë7gRŽ\Ò\ÞFª)	|i®\é{<‡L\Ì','',0,'?'),(_binary '|ªËµ	¼\éø@·Àc·?','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/test/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÑvOì¤½/8ú\rðVœùQ',_binary '…AH\ÙI!Ð²\Ó&<\â` \Æ<—\ZÜ†ž\ê\' =\Üd2ª','',0,'?'),(_binary '|«÷ ¸4\ãx\å\\\Ð\ÏM÷n','wp-admin/js/code-editor.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '› D&fAÐ”¦E›·~',_binary '{þ¶ñh;[\ê5±\ë©0`	Vz\ë\ÑKdªŒ‡—ú^,h’','',0,'?'),(_binary '|¼¨“ý\î\ë0}Y·¸Uú\î\Ð','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/autoload_real.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ðŸIz\Ò)V\É	/Pyš\å',_binary 's Š˜u\ç|</Ã¥õ4„k\Þ\ïN©T(z\É\ÎÎ¾','',0,'?'),(_binary '|ÁRM\"\í\à¸\Ý1öP™&','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/order-summary-cart-items-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«h\ÆÖ»‡Q\Å(Â©œG³',_binary 'Þ³5KÇ¤ýu¯ô\nùµ\èZP\î\ØNY°ù29\rü\nX¦d','',0,'?'),(_binary '|\ÍF­\Åuy=\ìtä‚„v_','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-contact-information-block/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',¤ùøP5®\Î§LœW*',_binary '`\Û\ân\àr{›×”q•zO+e@¢¸w<h\ÄR\Ç\\¾SPU','',0,'?'),(_binary '|\Íø5\Ãf\ÄôyS©S\ï','wp-content/plugins/woocommerce-currency-switcher/classes/fixed/fixed_shipping_free.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ý°t3[ýýühÿ_h',_binary ' ´œ\ß\Øæš¡bð\ÙþznÀCü	„ˆ\ÇÝµ\Ùo¼!','',0,'?'),(_binary '|\Ï3&º\Ë\Ù\àT‘²¹H~K','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§*ž\Ë5X¦¤L¾“ˆ¤7‚',_binary '¿F \ßúK\ÄÏ¿]R\Ûx•€›!§‡5º\âGµ.','',0,'?'),(_binary '|\Ý.M\æ½hó\ë\0','wp-content/plugins/woocommerce/templates/emails/email-addresses.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|¹°+8\æio\Êùt˜%¥\0',_binary 'jk\ë2iH÷|\í³¤›9«¬h{ƒ„)Þ±ŒÌ©ž›','',0,'?'),(_binary '|\ï®þƒ§\Êf\àlG\Ê\ïP\Ð.','wp-content/themes/twentytwentyone/assets/sass/03-generic/reset.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f’¨;Ð®«’\Íi‘Z\Ý&K',_binary '¨&\ê?\æ›~\é¯»\Ãurœ4\ÎÐŽ‘[»¡š\Ûz^','',0,'?'),(_binary '|÷¸T]º‡:Y$=\'hº','wp-content/plugins/wordfence/views/scanner/issue-wfUpgrade.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œþ‚{\È\È4\í—o¹V‹\'',_binary 'D?#}$¸e\åÿw2\×6#\È\Û0M\åÃ‹±\îRS¸L\ã‚','',0,'?'),(_binary '|þ®\É\çö÷i$ßŽ­\Þ','wp-content/themes/flatsome/inc/admin/kirki/deprecated/classes.php',0,_binary 'þx\0V‚–…¨\no³\Ðlõ}',_binary 'þx\0V‚–…¨\no³\Ðlõ}',_binary 'Šl¦myU®Z·„býiõ–“šCX.¦Ÿ(7Ö¼Ò©','',0,'?'),(_binary '|þ»YŒ>\à€\Ð	ùÆ†\Ä','wp-admin/link-add.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ì\Õ\nPƒU\è\è\Î-\r`(™l',_binary '\Ý¡!º>eˆ‚\è:«â“ƒ\Ó\î\Ä÷?\r»}k?ms¸','',0,'?'),(_binary '|ÿ7J3ñCRµKù££ø','wp-content/plugins/woocommerce/src/Admin/API/Reports/SqlQuery.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Þ(I\È[\\÷™¬6ø\âI]',_binary 'Îˆ×\ÂVoTý:÷ˆn\ÔË›ž#d£\\x\ä4‹»’†M','',0,'?'),(_binary '}j„=R\Ê\àS\ÄÝ¡Ñµ\ï','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-dimension.php',0,_binary '\Ð\ì¶\ÛÐ‘­\"\Üö\ã€‚',_binary '\Ð\ì¶\ÛÐ‘­\"\Üö\ã€‚',_binary 'C\Òü¼L~N	OAmc5R³88S4,Ø¯¢±ûEd\×\rV	','',0,'?'),(_binary '}Ä‰=•t©­ò‘»¤¹','wp-includes/images/toggle-arrow-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\Ê\á\Ê\\øƒô\ÉCDr\ï',_binary '-\ï¼\×N‘¨°\Ý\Å\ê½7~@\Ë}‚_\É=ö¤‹V’_@A\Õ','',0,'?'),(_binary '}\ïaX–]¼\ã…¨D*I','wp-includes/blocks/file/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹œ\'\ádlÉ¶´\Ã\0\î˜| ',_binary 'f\åedùm4@\Þ@\ä\Ój©`\çVM\èfÆ†{Š\Ã\Ù','',0,'?'),(_binary '}—>ôT\ßùX‡~3ð?','wp-content/plugins/woocommerce-multilingual/classes/media/Wrapper/Factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ññM”iðÀÿQ?\n+C',_binary '‚\Ò%¥}(1“Á#-gÒ¤\Ä\å\æ:U©k¨\È_k‚¹\á','',0,'?'),(_binary '}˜Ãœ¥;£Kši’\Ðl','wp-content/plugins/woocommerce-multilingual/compatibility/res/js/wcml-bookings.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F5V\ÏE\ÃG\Ô[K¢^ö',_binary '­ü¨‚5ÿ_Fw\ã“\ëÜ›\ß\n¥™“°vìœ¬·‡µ{','',0,'?'),(_binary '}!\Ï_¹h\Ø\â»[\âe\Ód\ß','wp-content/plugins/yith-woocommerce-compare/assets/css/jquery.dataTables.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–“v´\çÎºWþ:\Ô\á°p',_binary 'Ã†(P-û®Ú¼\Öh\çú&(\ÒW¶–\éu\ÞU§S5\é','',0,'?'),(_binary '}(@}*´1ƒ©,\á\ìðg[\ç','wp-content/themes/twentytwentytwo/inc/patterns/header-image-background-overlay.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\åƒ\Æ7Ld^e:†!#@¹',_binary '\'‡ÿ\ÅDž‹þ%jQS!l\ßt!\í\Æ,\æŒ\ÑA–š*°','',0,'?'),(_binary '}:üV¦£\îÖ¶ûCYš*œ','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/wp-pages.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç Á¼Ë¾eL\ì{ª-À\Zk',_binary '[`¥\à‘\È\âS\ïz´üñópx|#‚›_\Òø¾rJ·Í³','',0,'?'),(_binary '}JJ†§]Go¹¬¼‹„Ü‹7','wp-content/plugins/yith-woocommerce-wishlist/plugin-options/lists-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\äÀ\r\Ä\ï\Ù\Þ\ÒC*v,',_binary 'ï€64¿˜\\\èa+\Æ\Z¾„–_%L½=R”7›¾4','',0,'?'),(_binary '}K‰òhxš9P6ô²Pû','wp-content/themes/flatsome/inc/builder/shortcodes/ux_banner_grid.php',0,_binary '‡…ðøOXªò¶`',_binary '‡…ðøOXªò¶`',_binary 'Bûn!t\×p>	 \n\è¾ó<R?÷\ìÂ•þÉ¦{RÆ±','',0,'?'),(_binary '}L;’»],\é\à±À\ÜïŒ‡\ë','wp-content/themes/twentytwentyone/assets/sass/05-blocks/search/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Þ~]3\ÊiŸß¢!aH%®N',_binary '¥)ŸY|\nA0aµº\Ö\r³%in©\ÐûßžkMjC\'ª¤','',0,'?'),(_binary '}NAt\Ô¼Ò¹»\ÖM\Å}','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/repository-register.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ž†¾º	\Ñö\ZAy\ÃÚž…',_binary '{sN˜Æ°\r+5¨) ^\âñ\Üd‘%„†$\ÑqŒ®a','',0,'?'),(_binary '}OŸ !Ù¶]öO\ÍO[Œ','wp-includes/block-supports/typography.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ùð£\é)-²qýM3‰',_binary '‹†\äŠÿ@ñøu<ÿ	†hk¿S?\Ùk\Ù*Wý®•dW','',0,'?'),(_binary '}\\¤5\æ\r’ð$\Ôl’Wª ÷','wp-admin/js/tags-suggest.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«p–™Dö¬B–aB“*',_binary '$YôXxð\Æ93%¨ftC0yñ‡¶,¡^\æ®\Ä\Ô\n','',0,'?'),(_binary '}`\Æ\Òg\"P\É2®\ÂV½‡','wp-includes/images/spinner-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1ý™\æ2†^#\æ8µô',_binary ' \ï¯#–Ë’\Ì=$c©§6À\Þ\ä\Ò\ß	B™46','',0,'?'),(_binary '}dv\Ç@\'.\n.\Æ\ã.\ï','wp-content/plugins/woocommerce/assets/css/activation.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0Áv‡ ¼\à\Ä\'ô¢tZð',_binary 'ý\èx¥öÇ‰Z\0(¼b\Ë\ë”|~J\ïTŸz“•<G‡»”','',0,'?'),(_binary '}hMŒ5˜Ms—^G`\ê\à','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductSummary.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[€r_ø˜eÝ²Šø“Xn\è',_binary 'i\â^\Õ.Q“\ÒK\è\Ó6\Ù\Ò\ZŒe\"L¹U¢cz—9‰\Èô?ò','',0,'?'),(_binary '}kÀü¿\0Ù‹l8+dgJI','wp-content/plugins/woocommerce-currency-switcher/views/fixed/product_coupon_restriction_data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KY_\ZŠÇ­®¯ûV\æ)',_binary 'rW6\Ú\ÚkQk[\ÕxS¦@j\ÔE\r!¾\Êñ\é»ù','',0,'?'),(_binary '}v}c°:Š¦¹Íºüm\Ú','wp-content/themes/flatsome/inc/builder/core/server/helpers/states.php',0,_binary 'I½¤%-¹¤‚\Å!\è]~‰i',_binary 'I½¤%-¹¤‚\Å!\è]~‰i',_binary 'š$\Ë\ã]\Ù\r8_\îl£‹²\Þ\ÂK3‰°¥õn{dHž\Ô\É','',0,'?'),(_binary '}vôÚ¤\ÛiZÝ-8Þ‡\r2','wp-content/themes/flatsome/inc/admin/options/header/options-header.php',0,_binary '€ÜžwäŽ«6ljW­$6$\Ð',_binary '€ÜžwäŽ«6ljW­$6$\Ð',_binary 'Ix½\íq¬Ü\î\Í\ìOÏ˜ª(O\Ì|j\è™\Íy\Ý6–4{jH','',0,'?'),(_binary '}|¸\î\0+…N±6]ª›R','wp-includes/blocks/audio/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒöòZï¬ j¯*œ-\Æ>',_binary '„	·F\à\ÈsN`«À±NE	ùSd\Ó\å\Ñ±€u','',0,'?'),(_binary '}„ù¦½¸Ò°\îR\ã÷,8','wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-resource.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\ëH/q\ë5›\â¿yš‘(\Æ\ä',_binary '\"\åJEH\Êq®\Z\r]\ïÁ®YrU°B>°xÂŠx%','',0,'?'),(_binary '}—t\'­¬¶y\Îñõ!ø|','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/MiaoxingInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ó*HœRA\Ñ&š’h?Àž',_binary 'w\é\n\á@´u€H~sTW†™…=\ëIw@”PnÖ·º','',0,'?'),(_binary '}š]ð†±q\ÆÊ˜\äX\è','wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/„L\åp0‰œ\Ë\èò[Ä¸n®',_binary '^…öt^\ãŸ-\Ñr§+@t€þ”Ã‹Y3‚sY\çW$…NX','',0,'?'),(_binary '}¢#>Ó¥Y”Ö­]ñP[!','wp-content/themes/flatsome/page-transparent-header-light.php',0,_binary 'ÉŠ€\rNñüoX^©]D\Ñ',_binary 'ÉŠ€\rNñüoX^©]D\Ñ',_binary 'd|•’o \éZ¿D\á@pþoª‹sé‰„\êU\ÞßŸ¬\Î\ÇH','',0,'?'),(_binary '}±h~¿\"“Ñ \Ûã¨¨p³L','wp-content/themes/flatsome/woocommerce/single-product/headers/header-product-featured-center.php',0,_binary '„\Û%\È\È\ã›\Ó\Þ0D\Õt=\ä',_binary '„\Û%\È\È\ã›\Ó\Þ0D\Õt=\ä',_binary ']@¥\êI\×x¤HÙ·²q\ÎÖ¯t÷\ÂQ=PX\rô\Ì','',0,'?'),(_binary '}²“l\Å8\å\\\í;\Ù\ÎÀ\æ~','wp-includes/blocks/social-links/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\Â_ró\ßX\Û\È\Â\Õ\É~c',_binary '´™T\æ„\Ë>0\"S±© þ«¬¾V:Ú‹¾²\Ùt2AExú','',0,'?'),(_binary '}´\Î-¥$˜L¢H_R”š™','wp-includes/blocks/paragraph/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3ª4.Á\ÝÈ¡\ÐSÁ¦ |b',_binary 'ñ#&«N–;\0Ô³jm§~\é¾=…¢ >ÿ\ç ‰\Î','',0,'?'),(_binary '}½¤\Ï\ã\ÔkºD\êø\Þ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-terms-block/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²\Ãkš¼Š!?\ÃÔŽv{\ç',_binary 'Šs¢ö,ÿÁS\'Qver‹úÿ\ä§\Zm\ß3g\ï\\_úÁ','',0,'?'),(_binary '}Á7 Þ˜\æDHD\ÚPl','wp-includes/SimplePie/Registry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì;M\ìŒúñ£\è{²ÙŸ\ËR',_binary 'Ô¦0-\ß/¨\\k…ýÿøW\Î\É%o–÷Þ\'E)Š\Ã\ÇD\×\Ì','',0,'?'),(_binary '}\Ã@Ã°2\\µ‘Ôž','wp-content/plugins/yith-woocommerce-compare/plugin-fw/dist/gutenberg/style-index.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'º\î.#\ä‰\0,c-È¥zn\ç',_binary 'ñ\ÅD±Ga:?\âÀºJò·§\î4?\Ï>¥\èMs\ï ','',0,'?'),(_binary '}Å®)µ\åý4²t¨Þ¸ q','wp-content/themes/flatsome/inc/builder/shortcodes/tab.php',0,_binary 'Z1lŒ<”\Æ\Î\Ý\ï¨w',_binary 'Z1lŒ<”\Æ\Î\Ý\ï¨w',_binary 'A%&±³®û¹\è\\ò¦\Òq_ ‡#X\ßX½aH6<','',0,'?'),(_binary '}\Ê\'‘\Ô,U\æ\Õt9l\íl{','wp-content/themes/twentytwentytwo/inc/patterns/header-text-only-with-tagline-black-background.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤CòiydŠŸ0\"R¢¥u',_binary '\ävÜª½\Z¯\ï@…©¾f¥\ßF\í\Ï6û¼†\ß6˜\Ç)\0\Éc','',0,'?'),(_binary '}\ÏHJò¡1½%ô`ñ\Â','wp-content/themes/twentytwenty/template-parts/modal-menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\0“ñ=­5\r\Í	2l',_binary '\ÕÖƒ/ðJ£\ä	\ë‚uâ¨´¢†\Î>;µ;OU\ã<Ã§Gü','',0,'?'),(_binary '}\Õt\î\Ó\0gj®x¶‰=33','wp-content/themes/flatsome/template-parts/portfolio/archive-portfolio-title-featured.php',0,_binary '¸wð+þ±ºð`§sÿŸ',_binary '¸wð+þ±ºð`§sÿŸ',_binary 'u‚\ÎFCõ7·RŸbB,\áþ\âû/·öô\ÇwJ\Ó;\0s','',0,'?'),(_binary '}\álÁÀ‰4N»ñwTú\Û','wp-content/plugins/ti-woocommerce-wishlist/assets/img/select_caret@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^rK¦—\Ü\ä¼7ƒ\Z\Ü\îù½',_binary 'Yˆ£°‡\Óÿ\ÂP!pU.JS-¬!½¾a\â\Òtf×–tP\í','',0,'?'),(_binary '}\âll\Ö\ç\0\éZ\ÞQÿýˆ«','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/simple-center.svg',0,_binary 'œH\Ã#_ÿð\nã¡µ‚\áó\ã',_binary 'œH\Ã#_ÿð\nã¡µ‚\áó\ã',_binary 'Y\nR~t5d\Ò5v8!9w¥\Ò)˜\é{ª\ä®\Ó\ÈW°§','',0,'?'),(_binary '}\ã\Õ”FE3Çˆôqeó\Ðs','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/resources/select2-wc-2.6.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­Q÷Ç¿Dø¯bô>¨¸',_binary '\ã\å•ÿ^\\\Ç±^})\îY>K\é~û²„,\å­\ï\Ä:\é4›§','',0,'?'),(_binary '}\ä\ÅwÄ¦¾\Énq¼+^¦-','wp-content/plugins/woocommerce-currency-switcher/css/jquery-ui.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\Ék†õÈ¼\ÃA¨M$9I',_binary '\r¡Õ°¬z÷‡’\"¸˜Á\Ð\à\îL—\Ë\×qTr\Ó4\ï\n','',0,'?'),(_binary '}\ç\êt°ŒÕ¾o°ôb¯“\Ü','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'»…ó\ëuy\'|\r\ê^ˆ',_binary '²\Õ\Ì!\î)‡b\çcK²wf´\03w}Ž\Ì\Öqÿ1KUœ','',0,'?'),(_binary '}\ï§­.0\Ññˆí»‰\Ú','wp-content/plugins/woocommerce/templates/myaccount/form-edit-address.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\ãt5\îù\Z ò¢òdþ',_binary 'ú°4\Îf\Ø/€\Ý\Ù*Pk¿gš\Ï\Z\Ë‰~“\Ñuù—\Ê{','',0,'?'),(_binary '}\ïÈ\æŠ\\Lü¯`Š§\äi)','wp-includes/ID3/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GØV%\æP_ú¨Õ·¯',_binary 'ŠI>\Ï\×a§*R8?ñ–)öp1‰UÍ”\Ç?2\Ã=o—\ç','',0,'?'),(_binary '}ôhB¼\ë22…ó\0<*ôc','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/utils/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\á]~–RO\rRžó\ÜO‹L¹L',_binary '¬r}=\\i¹\Ó;vM¼\\ÿXŸ©\r\r\É\Z3ó8°¢›','',0,'?'),(_binary '}ù¼\Ò\êS³˜Ù­9\á¦\Ò','wp-content/plugins/woocommerce/legacy/js/admin/api-keys.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\0;@\å¬Y\ã‚LšTW\ê',_binary 'ÁŸúD# }Ù¢?\äVoÿB\Ãâ¬†¼×z\Øh\Ú\ï•6','',0,'?'),(_binary '}ý\Ö\Ë{RÒ¢\Ô\à¢\"','wp-includes/default-constants.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NSÔ´\Ü˜\àÞ\å´.4	',_binary 'w†‰m\Å\Ú{Y…¿\r»ó\ÖÚ¬\â->\Ò\æVL½\Ì=t\ç7','',0,'?'),(_binary '}þ1º£¿.…™)l\é?#w<','wp-content/plugins/yith-woocommerce-compare/assets/images/10-bg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-ôññ›\'‘\çq\Ì\Í·@',_binary '\Öm\Ïx¹ð~\Ø:S+–™’lCD\ÒþE0\Úzq%\Ì','',0,'?'),(_binary '}þ†·\Ð\Í\Ï3ÀÚ–ô\á¥Gž','wp-content/plugins/woocommerce/src/Admin/API/Reports/Variations/Stats/DataStore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\án³\ç°`ô©Ã‹{°{Ñ½',_binary '\ÞÂ¾þxÕŸ\à\ÙAR\á¸ñ/*ý{™\ãÚ´\éW))û…#','',0,'?'),(_binary '~\0zVb²«¶õûmø3','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`ŽK¸\Î\Çl¿\Ø\ÅpWº\ê',_binary '/¾t»/(T5÷\Û,3\Íõ¢Ži¹wÿÚ——…‰\\ºl','',0,'?'),(_binary '~\'\á\'‡\ÑÂ¤Ž¹i¶\ë ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/shipping-rates-control-package/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´\ç\Ã=p;a¥ø*‘‰z\Ü',_binary 'HU&A¿£\0‚±Š»Ál\Ñl0\ÕÔ°\î\n¶f»,\ÆVp\ë','',0,'?'),(_binary '~È¾/úm\ÚÖ€\Í!ü\ì','wp-content/plugins/wordfence/views/dashboard/options-group-dashboard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Øs\ÉûX]û[sC>Q\Ô\Û',_binary '³>‹\Ê_c\ZJ+\É\Þ¡¬¶aœø§…³–¨\ÃUmv)œlg','',0,'?'),(_binary '~±ö\\\É\Ç_b„$\É-¥\ê!','wp-includes/js/jquery/ui/selectable.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Gl¿­\Û\"lÿ\Ú8v\ÇmÔš',_binary 'å‰£¶hB\n‘\éû\î’\Zba†Ú¢\è©[þK\ï§\î´\àa\Ó','',0,'?'),(_binary '~\Íq\ß²í€»pP ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-contents-block/title-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\èhób\Ù\ÎzF’žòH\é',_binary '·Ÿu˜gº˜f\ÖZ¯¿ÿ+ÿdH \Ò!€#xù™\ß~­v','',0,'?'),(_binary '~Y‚££†¥¯Hõ†#\0–','wp-content/plugins/woocommerce/includes/class-wc-query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\àZöFŒVñ®ƒ*:',_binary '¡8ÁªŸ¾2_¡ˆ4^\ÎD!5‡¬ñ\á\Í\é§« ¨ü¨/','',0,'?'),(_binary '~4\Æ9\è\×o’?Ž\ë€S\Û','wp-content/plugins/woocommerce/assets/js/admin/product-ordering.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú¶\Ì}“l¼¸k\ín9l',_binary '–—v3Ìµ•³TÌµrE0\"\á#3¥Eq!EW\ÞH!Q\Õ','',0,'?'),(_binary '~< \É\çûz•\á‹j\á=\Ñ','wp-content/plugins/woocommerce/assets/client/admin/csv-export/index.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ó¡\èRh\Û\â:eù',_binary '7D¢‰.\â[¬mm‡\Z\ìý?nó-!C\æ§m›¾ÏŸ9g\\','',0,'?'),(_binary '~?¡J¼I\Öb*×º\êe\èC','wp-admin/images/resize.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ë\ÖlN\íû‰«\Ä\Í',_binary '©6ó€¸\×óˆ&?\Ã5ú\Ñ?sýqGM`P;','',0,'?'),(_binary '~A‹H„g\ç™\éþ¦KT€\é','wp-includes/Requests/Utility/CaseInsensitiveDictionary.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¢gžjÀ½\íh\Ð^\0‚¢{ƒ',_binary 'oñü˜\r1d._¶¹f/\ç7q\ÔAŒE¼•¸’','',0,'?'),(_binary '~F£\Ìã«Ž>dy\ì\Ðj‹','wp-includes/css/jquery-ui-dialog-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u¨+x)\é\ä\á‡A\Ôv6@\â@',_binary '\â/\à\ÚN\Ï\çe$\Õ\ä\ÖþðŽ2:.«}b#²K}','',0,'?'),(_binary '~G·ÛŒø!\Óok`ó\éƒ$','wp-content/themes/flatsome/inc/builder/core/server/templates/tinymce.php',0,_binary 'Y\r÷ù	ý•E\ËÓ®ø÷P…',_binary 'Y\r÷ù	ý•E\ËÓ®ø÷P…',_binary '1\Ùq´{ iõ¬ñ´Ì¢\Ïª\ÓÝ„\Û\ê \Ë-Jª¦je','',0,'?'),(_binary '~R\ä\îò|¡œ;\é>\ÏÎv','wp-content/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db/Reader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iZE¿\\P\Ög2HE™ó',_binary 'µ,ÿGÿ\\Tpòò8õFG\ê±÷\è¨5ð`\r|—h~/ù•§a','',0,'?'),(_binary '~V©\ÜXa]‹7p“|R','wp-includes/class-wp-post-type.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\àó\'ºã¯‰U•‚\ä<‘wx\Ù',_binary '\Ò\\ðó\é™K{›ÁI¸\×ñ\ÉOÂš\Ç:3‡\Öcv§\Þ\í¦','',0,'?'),(_binary '~\\\ë\Õ\Ñ\ë\àaGy;ƒF¯','wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yith-system-status.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(q7F\ÑL¹jszND¼¦Q°',_binary 'E\r\ä6X\'=D\Ö1\ß1€S\ÛiñB–{#g\ZÀ9','',0,'?'),(_binary '~g\éúB\ÍõÁŒ®/Cˆz„z','wp-content/plugins/ti-woocommerce-wishlist/assets/img/money-back.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›«8¿YAQx\ïN',_binary 'õ\á°jS\Ò™ƒŒ*©ó·`rK=µe¯ž\Ñþoö}','',0,'?'),(_binary '~i°I\Ò;Ý­]œA»\ÈS','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '54\Ó\Õâ“¿\î`žŽ–«ž',_binary 'D¯©Oo;oO]+\îŸ\0\Ïð\É5\Ê]/\"\ÊÞ¸&\ëQ±','',0,'?'),(_binary '~lL¼¯²\Ü\Â\rzM\à\Ý','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/it.js',0,_binary '.I\ë€Ú´Ùµ	+{\ÕB\×ð',_binary '.I\ë€Ú´Ùµ	+{\ÕB\×ð',_binary 'xJHò”1\è\ß\Å\åŠ%¡3‘x\Øá¾‹\\‚\ÜÂ±0(Xò3=³','',0,'?'),(_binary '~l^†V	ÿòU1¥z3jz\ë','wp-content/themes/flatsome/assets/js/admin/customizer-frontend.asset.php',0,_binary '´ƒ<\Ú\Ù\æ3Ä£\àÈ°\0a\Ê\ä',_binary '´ƒ<\Ú\Ù\æ3Ä£\àÈ°\0a\Ê\ä',_binary '`šü²\íÁ9¤ç¼‡T4<5)\Ús\æ\nó€n&²Z','',0,'?'),(_binary '~n\0…njŽ‰~9º­\æ½û\â','wp-content/plugins/woocommerce/legacy/js/prettyPhoto/jquery.prettyPhoto.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ï\nfú\Ä>\ì\Ë\Â~w„U~|',_binary 'ÏªGE\âÓ¼ª3ÁHYh‘\\\Ù\âƒ.Ž_\â\èS\Ü<','',0,'?'),(_binary '~nòµS\Ëo6\Ò\rþfS‡','wp-content/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2l\íz\rH$?\É¾\×N',_binary 'Ù¬-^p£u8€\î)½,\È\Årbñùºƒ\é¯u°.\Ä\Ã,‡','',0,'?'),(_binary '~q\æIPžI™º\írñ\Äö','wp-includes/js/dist/vendor/wp-polyfill-node-contains.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÊeY§’¢\ïÛ¬x2¢’ƒY',_binary '´‹˜gªHnµ™½‘~<\Ö0^Ff88¶‘\Ý.%x8','',0,'?'),(_binary '~wé³£l{«\ÓHOÜ¥\\','wp-content/themes/flatsome/header.php',0,_binary '@¥[ð²2\"‡†­UTˆ-b',_binary '@¥[ð²2\"‡†­UTˆ-b',_binary 'oÿP„œŽ\Û`\Åð\Ãçš­b\ÃB2\×\ëc=¡K¾YÂ”Ðœ\ç¸','',0,'?'),(_binary '~|\ì¿<CÄr\Ç\ÎM\Ër\Â','wp-content/plugins/woocommerce/lib/packages/League/Container/Inflector/InflectorAggregateInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Î1¢µ²8Æ¢f\ì•%\ß',_binary '€Ua9\Å2cH>w\í$\"Ì¬š±°?ó\Ãý3©\å[\áÃš','',0,'?'),(_binary '~}\â{ \Ý\Ç>D\í}¦<','wp-admin/css/code-editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\Â3“; 7\Ð\Îv:ˆP\à\Ç\Î',_binary 'JlA¦€Zñº‰\Úq—\à‰F¬vö<3\à‘®I^†\Ñk\Ô','',0,'?'),(_binary '~‚¿•lL\éR¸L]dK!i\Í','wp-content/themes/flatsome/inc/builder/shortcodes/section.php',0,_binary '§”{AV¥´$*=rq#',_binary '§”{AV¥´$*=rq#',_binary 'U‚6Y\"6¾0¿tò»Öƒ`iK¢Zß®\ÕxR<\à¬\í\ï','',0,'?'),(_binary '~Œ‘\ç\Ùi\×\ß{¼\æ, {r ','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/sysinfo/system-information-panel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!]ý\"!Z;\rUJ³‹õ¦B',_binary 'ñùß¯¿c¯jª)\ÖNÁ\ËC>M}\nzª\ß\Èm~M\Ëóws','',0,'?'),(_binary '~‘¡ReOX‡f2”ñ`€','wp-includes/class-wp-post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ã;@A\âð[®ohˆÍF\ë',_binary 'Bms\Íò\ïù\É\Ôû\ÂAKE)(|-£c“ÿ\ÆòÏ¡¤|\×\èd','',0,'?'),(_binary '~š¤ýŠ\Åu’\Ô\á]úZ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/title/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\0C‰\å•ý*ƒ=ÿ¤\Ò”',_binary '];\Øº¬w-üm;Rô“F´¶	X¤8’dS‚a','',0,'?'),(_binary '~ŸC0¯\Ü2´3*¸ \×ûJ','wp-includes/blocks/more/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ô09I1=k„²Pû.ü¹',_binary 'ùš2\à \àq¡ý¥ó\Ã\Ë=²¼«¥ü4\Û+Ê«^ùŽœ','',0,'?'),(_binary '~ ûûþ	0\Â¯`y[','wp-content/themes/flatsome/inc/admin/customizer/img/badge-outline.svg',0,_binary 'Ø¬o+Ç¦mr	…§q\Ìñõ',_binary 'Ø¬o+Ç¦mr	…§q\Ìñõ',_binary ':Z/\ÓJ.‡\É\Ð\Åe¬zƒ\ï\å—\Ó\Ì|ò!þÉ¿\Ý\"','',0,'?'),(_binary '~¡£#\åœ#\Z¢Pw*:‚`','wp-content/plugins/woocommerce/includes/class-wc-product-download.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':“y\ì\"J¥\Ïj°qh²\ëŒ',_binary 'H\ã\îm‹8b®bnJÅ„Sƒ\Ù7V\nF4Þ¥\ÈB½F','',0,'?'),(_binary '~«¹¥*Þ¿S’Ì™e—','wp-admin/images/freedom-3.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hT‚zC¤Ž‘w5õ6\Ù `',_binary '®\à\ã\â|Ë‡3¯\Ìd¬û\ÒËª\Ç|µ`Ý¢7—\r8\Õ5¥','',0,'?'),(_binary '~±;X\'\Z;\í\ï’÷Ì»py','wp-content/themes/flatsome/inc/admin/customizer/img/account-icon-plain.svg',0,_binary 'g‹+U…\Ú\âô\ë%ö',_binary 'g‹+U…\Ú\âô\ë%ö',_binary '8¬0{ú©\r\çxuÁ\Ûe\ÉS\ÌJz~Ã“>CG\0Õ‘c\Õ','',0,'?'),(_binary '~»Pf½¦Ô©~1¹LYw\Ý','wp-includes/blocks/button/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³R\ÆDT\à5bLcGÞ„',_binary '–\Æ\re‚0:À\é„OÄŸ\Ò»‘gOŒ>ú\ÏúI+·','',0,'?'),(_binary '~Áxd MRŒ‰¡ô\Û:','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-linked-products.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\ïb´„^DT\á±',_binary 'u+*ñˆvavDŽøž\î*&Co¤\çfûZ™}x\Ò;M','',0,'?'),(_binary '~\Ã\Ô`\ÍWj\Ù\ì|iLI=‡Ÿ','wp-content/themes/twentynineteen/sass/site/primary/_archives.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BH\nø!OüðY£\èÿŸ',_binary '\Öhœ\á—\ç£o3Uü 	\Ë\Ü~ú¼”n6½\Û>i~¿M#','',0,'?'),(_binary '~Å¥\Ïs\0\Ì1y\ì$‘L}h','wp-config-sample.php',0,_binary 'R¯™f\ç{\áõªÆ‘\Õg',_binary 'R¯™f\ç{\áõªÆ‘\Õg',_binary 'xFªÁf^)=%rÃƒ¹ˆ³((8ž\É~x~¾','',0,'?'),(_binary '~\ÅÓ¸bcö\Ý\Z$@$©ò*','wp-content/plugins/wordfence/vendor/composer/autoload_real.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+>r*“±š÷ômI',_binary 'E\Íò\0\Û.®¢¬òÂ¿Â¯­1Fû(Df§u\Êv\Ü\ê²Ë”','',0,'?'),(_binary '~Î”´,z¤\áG\ïh‡\Þ','wp-content/uploads/woocommerce_uploads/index.html',0,_binary '\ÔŒÙ\0²\é€	˜\ìøB~',_binary '\ÔŒÙ\0²\é€	˜\ìøB~',_binary '\ã°\ÄB˜üšûôÈ™o¹$\'®A\äd›“L¤•™xR¸U','',0,'?'),(_binary '~\Ô\ZQG0av£ß±Ö²¨','wp-content/plugins/woocommerce/includes/shipping/local-pickup/class-wc-shipping-local-pickup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y+wy\ßy»š úk‡yž',_binary '©À¨\\\"V!\"·‘T™.2k|Í ¾ÁO\È_Oi“','',0,'?'),(_binary '~\Õû\ìž×¸i¶õ\\ò\ÊOQ','wp-content/plugins/nextend-facebook-connect/providers/facebook/facebook.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Š=M’\à‘)7½\Ð6+–ý +',_binary '¦\ÇÕ°\ÇZ¾ÁF•\à#+R(\î‘7\ä3¦\Ì	\Ä(€±B','',0,'?'),(_binary '~\Ø\0òPú0—^.[ú\ß1\Ç','wp-content/themes/flatsome/inc/admin/options/styles/options-colors.php',0,_binary '\Ð4y{\Øõ\Û9±‡\Ú',_binary '\Ð4y{\Øõ\Û9±‡\Ú',_binary 'Z\'<`[Z\nÜ¬ÁcQË™±V\Æ\ê|S•¹°t\ÞG†\æ3·','',0,'?'),(_binary '~\ØÀ¾B|!‰rù—¿\Äc','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-product-tags-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«\Z^ª]PxŠ\ÊZ·',_binary '\è+\Ø\0!\Ö\\—28C°RýƒŸ\0ŒBÑ©OM \Õ\Ú','',0,'?'),(_binary '~\Ý\ì¶\×9%\rúy\â\ë:ò´b','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/ui-icons_222222_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡³ˆz†\Ï‘ò<S´\ÓX_',_binary 'Ú¾‘Ž\è\í*6¬øƒ1Z(þœÿö\'\n#¬W£=6','',0,'?'),(_binary '~\ì\äöŸ^Œ™%¬¼‚A\Ì','wp-content/themes/twentytwentyone/assets/sass/06-components/search.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨\æ!^Pþµ­\Z°\ZY',_binary '¾w][\Õfv\\mS—\ÛôŸ\ë^÷F\rsdó˜¸~ó\'±ò','',0,'?'),(_binary '~\í\Åþ+~E);\é\Âñ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Registry/Container.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V1~ÀÉ§°o×¥\à%»U\Ë',_binary '½y\Ì\'ùÛ‡2\Ýl`{€Š\"`¡qµõ‘lR\ÈÚ­fƒX','',0,'?'),(_binary '~÷\ÞxúMŠ\Z•`\\Y‹£\ï','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/rating/constants.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Dñú\ê—+O]\åÁ¯‘n¨',_binary 'üQ\Úà¶»MCö›_.\ÓG¼’•L\ã7>ó¬\Û_%“\ëH\Æ','',0,'?'),(_binary '\ÃldKñŒÐ¼\É\ì\Ç\à','wp-includes/js/dist/components.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\è\ÓÎ¤*«‚>Yó\"',_binary '…	•)Kø\çk0˜>²nØ³˜>\ã½\î\ïŽ\ëa\Ìaø','',0,'?'),(_binary 'MyLöö)ó#D–-w³ù','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-kirki-generic.php',0,_binary ')\è5«B9bZa\éù†……±',_binary ')\è5«B9bZa\éù†……±',_binary 'öI€	œ;\àZ¸	Ï€S\É#º\ï\ß\Äò[11l[-\Ó','',0,'?'),(_binary '|\Ô?x±zšK\Þy´wm‰','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/class-manifest-reader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Cr˜I¦—v“wº£j±\Õ',_binary '…s­ºþ3\Æh •ªU$a[›IzÎ \Ê$Iø}N¤Â²®','',0,'?'),(_binary '6½\ïLë™ˆSü›ô\Èzô','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products-by-attribute/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LL\æ‡\ë?c¨!Õ£¿D',_binary 'Ô€Ãµ(CÏ³¢ŠG‘«²òG1\Ò\ÔG-Šø’ªC4i—\"','',0,'?'),(_binary '(\ßbö¸óc\'‰™½ž—','wp-content/themes/flatsome/inc/builder/shortcodes/price_table.php',0,_binary '¡›^R Žd±#¡9¢ž9',_binary '¡›^R Žd±#¡9¢ž9',_binary '\'\ÓópŽ9Ñ¹\n\åš]|#\Ã1[Ï©{¾\Ã\Æ\ZX¹P','',0,'?'),(_binary '6\0˜Oòª®kvzfTN','wp-includes/js/jquery/ui/effect-fold.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\îs“V\Ùb{³\Êù{f',_binary 'fp7¾— \ï<döŒ\0u+™n\ËqyG X3\æI¦sª‚t','',0,'?'),(_binary ':’\Ç&}Ž&,\\\ì–\í','wp-content/plugins/woocommerce/src/Admin/API/Notes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\é\Å\Ì{\Ç\Ñ\Ù?J\ì\å\æ\Ú',_binary '‡Œ ð¡tv\Ö(R\Í\n©vøÿ€Õ¨\ç\Æ\Ð@_\r\í\Â?','',0,'?'),(_binary '@ô={&À²\Û¤}\É_','wp-content/plugins/wordfence/modules/login-security/classes/controller/ajax.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=Æ \ã\å\çHøšxß—©5\ç',_binary '\\f)\ÞfŠ&BxŠ\Äj\ÄE#]u\Í-e\"y6°Š\ï','',0,'?'),(_binary 'b\Â7_\Æ±T<¢ÛE\Ë','wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-sk_SK.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\î\Ó&D\ÌòpIlKý1´',_binary 'F\Ó\ÈÁ\'o0\ßflªrv«Ý œ¹\ÑO?’#@V','',0,'?'),(_binary 'c¢\ÒJ\îw¡\ÍeIO¨Iq','wp-includes/blocks/cover/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l»skT\Èr*°cð•?µ@',_binary '\ÎGz!*a\Þmz\Ëgu´z§«‘“@¨w(§o\Ôy2˜','',0,'?'),(_binary 'd2\\t\í\Ó&’Š­Ì\Â','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/formatted-monetary-amount/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®“H>Z*‹lVÈ§Z',_binary '\ä#íŠ‹\é»\ÓN)…#Éª\Ò{»ö~@\Û_F¸\ZP\Ïy','',0,'?'),(_binary 'j&†\Â^û\ÌøŒb³ôŒ˜','wp-includes/ms-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Äˆ¬Lº@\Ér#ù}S•š·',_binary '4n-™™µJ£ô­\â2Ž ²®Túhß•Á!\Ù_H/Z\"­','',0,'?'),(_binary 'j^µ³SN­-Oó ý','wp-includes/css/dist/components/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘ñ&«\"¤u&\'\ær—±±',_binary '»µ\ì×žž!$\Ñ	ý\ßp\Íô\Ï\"„\å.:<}\Ù6ƒB\ä	.›','',0,'?'),(_binary 'jÿ÷ô‚)Vk½\î9˜¾¢','wp-content/themes/twentytwentyone/assets/js/customize-helpers.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ú__\àaŸ±žX\Æ.Š\\Ì¯',_binary 'ó;0µÏ¨l“ \èk\ÅP@Efø/Sy9þœN‚\ÔY \Å','',0,'?'),(_binary 'tSþ\"\Ù\álZ\í‹c\Ê\êQ','wp-admin/js/auth-app.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qi®¹‘\Æ~[Ÿ|\r§S',_binary 'A¶|f´\çKõ\Z ­’F|\éšü¢eÉ L\áeŠÜ¬ú49','',0,'?'),(_binary 'w´\'œPe¾úF\Ã+õV\0','wp-includes/Requests/Proxy/HTTP.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘\å\Ç)Ï•\\\å^û›$³ñ\Ä',_binary '7gy\Z¤ ]Oý®Y¤T€­óÁb®PÇšæ˜ˆú','',0,'?'),(_binary '…ð;64:>ž…I£ö ','wp-content/plugins/ti-woocommerce-wishlist/includes/view.helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\×g½ÿNÔˆCp\É\ãM!<7',_binary '\àlÌ‹\è<­\Ý|B°po”-2\Ó\ÃB“zS8i“¿ó','',0,'?'),(_binary '†.~ \Ïd@]ª¤™\î','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/php/support/support-link.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŒYŠN	¶\é5,”\â!aZ',_binary '#[Z\à28Wl:À~~s,&n>\Åw\ÃÆ¸.P¥Ëˆz0','',0,'?'),(_binary 'ˆn†öùuß°\Êo¾8Ã„y','wp-content/plugins/woocommerce-multilingual/classes/multi-currency/geolocation/Geolocation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`‹)\Ñ:€\ÛÀ½y¹\r¾öz',_binary '\Æ\\@`jG\îOG\ÚU\Ö}÷Ü´\È&‡Ž\é3°J\í¸\\„','',0,'?'),(_binary '‘C¶m–ˆÙ…Ú”k4\è!','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹š½\ï¥«\æ\ß\ÍjB8£º\ä',_binary '\âeû\Ã\Çr\Ô5²¯ûE\Ø\ídH\É\ä?\Î\Z®a\ØAƒRd\Ñ','',0,'?'),(_binary '–´\Z\Û\Ð\í„\ÕÁ\"“ö\êg\î','wp-content/plugins/yith-woocommerce-compare/assets/images/socials/email.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€ý\Ý\Ëþ†\0Œºc<ü¦b\Ê*',_binary 'f\Å]LÀUmlº\ì2\æ\ÔÁ\Ëu{”v·ƒ± \nB0\ÎY2ª','',0,'?'),(_binary '¢¹Á`7\ÇQcþ\ï\Ë*\ÐK','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products/utils.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦û¢°2pöoq\Å)&uŒ4',_binary '$i’[0›‚Ž	NApô3ie\ÔÔ‚‰Ã²wý\È®','',0,'?'),(_binary '©7N1úh_s\×\é‘	ý\à','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!{\ÖhÈ¡R2Ëªí€¨6',_binary '»(\í1qKC©¥ö˜\Ð\àD?\ç~Ô¨\ë~OT\Ä\Ú $&~#>\à','',0,'?'),(_binary 'ªD¼8-¬š‰Â¤r\Øl','wp-content/plugins/wordfence/images/logos/shield-care.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	þ s‘hß‰\0‘tvó',_binary '£f2\"(>µl\ÈH93 ö\É\Ì\è¦ª\é	\ÂC$„<','',0,'?'),(_binary 'Á\Ú%G]f\Ó@\Í%\ÊZ\Ü\Í','wp-content/plugins/wordfence/views/common/section-subtitle.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n^\rÁñ#f–šst„‚W\Z',_binary ':\ËtaQE´&Íœ˜³\î\ß\ÄsÙ¡\nGb\\Z S1{°','',0,'?'),(_binary '\Éy$yO[üNÀ\ÓLyÿ\Ð','wp-content/plugins/woocommerce/assets/js/admin/wc-enhanced-select.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'è”²¡”&\â/!ùdHr1ÿ\Ñ',_binary '€\É9‘‘¤6&õ\ã¥\è1+ª²–±1¾\r\ã&_\í','',0,'?'),(_binary '\ØÐ¡qDÖš?\ÓižX','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JgMN\ÝelwD\ê.v',_binary '\ÝU\Ã\';P^P–Á	\ã÷‹^0\ãd\0†˜Ñ®\âPã›‡†*\Þ','',0,'?'),(_binary '\ÛKûQð}U&;&˜\ï\ØQ','wp-includes/meta.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆßšY\î\0^HmœX€<\Ñ',_binary 'T–¨:\áSY¶õZ¸¨\Î,ªý9\Û\ÕÄ.ø§®y†\Â','',0,'?'),(_binary '\ætr³ÎµF_\î \Ã\Ç\×','wp-includes/js/wp-emoji-loader.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒÍ®kM\×\Ç}O&#\Í6',_binary '¤\ÜÌ¶\ZMå„`¤\ÑŒ+\0,ƒ\ß\Zº \Ç\ÂX¥F:','',0,'?'),(_binary 'ç½¼ý\"¡üNL\êÿA ±¥','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-image/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Óå”•=ƒNN],=+ôp ',_binary 'k96–\ÚI&¨5óy\Ù\ìFZ0A\Ã\ë)\í\ì²Ÿ\ê^Ž','',0,'?'),(_binary '\èýg‘£›€’Ny`','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/summary/save.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`?\èýÓ¥A~k\r÷¤',_binary 'û•P\ÝôRñ š3\Î\á\É=\ãr‘\ÂùSdù¨\ÛD\Õ\Ë','',0,'?'),(_binary 'ó±†Üº‹\ê§öF6A*S','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/price-filter/constants.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒdU¸\ìf\ÉyÿŸ\ä\î\"þr',_binary '¡NKy’\Þ\á”\Ï\ÍN`Ma`\Å=]\ï&\ÊÔ¨1!	õ˜›ò','',0,'?'),(_binary 'ù\è,„h\Â\\·w\Û`+J','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hooks/test/use-shallow-equal.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Rÿ§.Œ™!!dJó¼ƒ\n',_binary '\ÞÞ—_.\Ûô`¬L\n6Á©,†@ºòSª\Ó','',0,'?'),(_binary 'úÆz‚³=c2f5)‚)','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-notes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'HúvFM£B\í\Ë\ë_…\Þ',_binary '=IÊ·^AøT˜\ïYöAVD[—t \Í\ÆZºc“+\æ','',0,'?'),(_binary 'ûœ\ëÄ‹\ßS7\Ä\î\î\é‹	','wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/sepa.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}z;§AzC\ãV·\Þ\ßÝ±',_binary 'Ä‚m\â6/\Ä\â\ï\×;\ß{µÎª\Z+ÿ\é·#KrHMž','',0,'?'),(_binary 'ÿÍ\Ú\ÛŸ½Ïb…B','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ed25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|Ç±(¹˜rÀ\×qÖ§#',_binary '¥)0\ßü\Ö\ë\Ü\Ä\ë+\Ô\Ì\ë^h•v.(ö•>¬™\ß','',0,'?'),(_binary '€OV\\ô\ì+®Ÿ´\ç,G.','wp-content/themes/flatsome/assets/img/payment-icons/icon-afterpay-2.svg.php',0,_binary '\æŽ Ý¾@-Bœ?–x4cðS',_binary '\æŽ Ý¾@-Bœ?–x4cðS',_binary 'jZ}\Ò¸„~ú’\ÆôÀ»®?\Û%©aùR‹¡Ü²\à','',0,'?'),(_binary '€	ªÍ\ê\'\Ä!|\é','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-taxes-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘\Ýh\n´”À§qŠõ~Z¾',_binary '\ï\ç\éI÷ .tL÷¢\ç\æýj®†P4œ\Ìq\îK\æÿFv','',0,'?'),(_binary '€3-ð\à\ê\íÿû•f\Ðò¶\n','wp-includes/css/dist/list-reusable-blocks/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ùò+`7U\Ð]¹“\Ô.˜[',_binary 'ð\ãN$/^Ü©\î\Òc#T\Z£Ñ \Ö\Ãî›…<Ù \Â#\à\'&','',0,'?'),(_binary '€9z\ß\Ñ~Jª\Ô\èœ¢‹','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/selectWoo.full.js',0,_binary ' $°}4\êò\Ö$È€?1\Ðv',_binary ' $°}4\êò\Ö$È€?1\Ðv',_binary '\îƒü\ï 2\Ë.TX”P³¥~¦\"A\ß\ÔLS¤M/-','',0,'?'),(_binary '€;ñ\Î!1\á>üY\ÄxQü','wp-includes/js/dist/block-editor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v½ZúDN›¾\È\ÞôAŽ4“',_binary 'Á\äy¿œfWA½Œh¼B_7‚\ßþZ´cO•2!\è','',0,'?'),(_binary '€=I8,.9÷½‘ÿ%º\Ý','wp-content/plugins/woocommerce/assets/js/admin/wc-product-import.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ[>j¼‚7™yvLŠn\Î',_binary '¶ó…<ó4C\ëÀo\Ò3®š’	ó\Æ%\Ë<H‚Š¶»\Ë','',0,'?'),(_binary '€I†\Ú4	m)4Á³GKCV','wp-content/plugins/woocommerce/includes/walkers/class-wc-product-cat-list-walker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ø ¥\ë<R\ìV\ÔI:\ÚI\ï',_binary '.EXl\Zp[^¾Ö¶}°øNû\èµîœ³,£\âÅ¶Nš\Éû','',0,'?'),(_binary '€S­vEGzPž¤?Q\0','wp-content/themes/flatsome/inc/admin/kirki/kirki.php',0,_binary '\Å\Ô\Ó\ì†\Åü0¸)ýDm®\ÍÁ',_binary '\Å\Ô\Ó\ì†\Åü0¸)ýDm®\ÍÁ',_binary '7f\Ý¸±ôg&¹\ëd`•\ë\"¶\Õ\î]õ¿}]\élÀ','',0,'?'),(_binary '€T\ç\à=¦S…M™\í…ù','wp-content/themes/flatsome/assets/img/payment-icons/icon-mir.svg.php',0,_binary '¸²(Í¿^reHµ\ãÿCº÷',_binary '¸²(Í¿^reHµ\ãÿCº÷',_binary 'l\ã°\à10X\"\rŽüš4I¿¯[\çÛ¯¦4õ\n§Á–W','',0,'?'),(_binary '€aaßˆ\Û¬J}\Ï\rP³Z','wp-content/plugins/woocommerce/assets/js/jquery-cookie/jquery.cookie.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ObJ7\ÞØ‚¢é‚ ~\Î4',_binary '¦\'z\äYÿ§ùz\Û&É¶$ø‰YÇ³š\Ëc%%üð \í\Ê','',0,'?'),(_binary '€at®‚\í66“\ßqVy<','wp-content/themes/flatsome/assets/img/payment-icons/icon-afterpay.svg.php',0,_binary '8\ÕU&Áú¿€ò}Mq<NV=',_binary '8\ÕU&Áú¿€ò}Mq<NV=',_binary '\×\Û\Ü#n\è\è+‘®\Ë\Ñ\ànQh•A»–œüFÑ©R','',0,'?'),(_binary '€a\Ä\ÈnFh #Ûˆõñ¼','wp-content/plugins/contact-form-7/modules/acceptance.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿DôšáŸ¡Jœ\âø+µ`',_binary 'TVO“\ÐP€\nv{\Ðw\',z£ýv}»aK=J‚h','',0,'?'),(_binary '€wô¦?a=À¾7\ïw4','wp-content/themes/flatsome/assets/img/payment-icons/icon-verisign.svg.php',0,_binary '\ì­g\ën96¹X²\Íó',_binary '\ì­g\ën96¹X²\Íó',_binary 'V`Ð—¿”!g›§N\Äo\ÝÓ•6ý¸ž\àbƒ:²t\'*','',0,'?'),(_binary '€„³:\ë\'—·-&3®À©T','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-contents-block/empty-cart-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ã€›Ž÷ò€i ºú©Xfµr',_binary 'Y\ÔïŽ½\É ü-–VŸ\Ý\è÷ª¢G>°Z\Ô\á\Ä\ê#\ájUW\åm','',0,'?'),(_binary '€‹69Hÿ_A*‘@\'A8','wp-content/plugins/woocommerce/assets/js/admin/quick-edit.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\É@^]~n\çU\Å~Ø³\\',_binary '\ç(\Îˆ\Ê\ã\ÎHˆ\Ï\'û*\\ðqfÛ¥c†Ž\n\Ö$u<','',0,'?'),(_binary '€‘ah¤#\Ô\í8\ícñœ\Âƒ','wp-includes/js/tinymce/themes/inlite/theme.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4O\à\âDIc`\á•EJ',_binary 'p·v\ÓT5Z>j†jª\0\0œ\Èfø\Åxa/g=¶&µ','',0,'?'),(_binary '€–m¼À?DS¦\Ör€‡4','wp-content/themes/flatsome/woocommerce/single-product/layouts/product.php',0,_binary '\ê«<÷@©Ž\Ôþ\ïÎ„\ä\Þ',_binary '\ê«<÷@©Ž\Ôþ\ïÎ„\ä\Þ',_binary '÷.\à¼þ(\Ûô4xÚ§\ÝkŒ1\'Bû\éeg ¶W\ZˆkY','',0,'?'),(_binary '€ `¡\Ë€¾%^þ†d','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-new.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\æ{[¸{ûiÐ¸œ«=¥…',_binary 'Gá®‰´U\ï\Ï\r¦‹=\0¹\å°„\æ4\ãU¦\Òm\Ú0O','',0,'?'),(_binary '€¬}´³D|¼§·	=','wp-content/themes/twentytwentyone/assets/sass/05-blocks/image/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Iœ…‡^JŒR[ÀkS£¨¦',_binary 'x\"¿˜\ÑcBÓ´L•O–È…q\î6*A//|¡T\íT3		','',0,'?'),(_binary '€¬´\nŸ„´µ6æ“³Ù–\Ü','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/sysinfo/tabs/php-info.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ó\é³`\ëb\é\í®°´{\ÊÂ¾',_binary 'òV\æ*\ç/\æy9]l½ùŸ´¿\é^\×h4)õ:\0\r‡e–','',0,'?'),(_binary '€°‰<ö…¢œ\ã\å‘}\ÔMH','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-product-attributes-v1-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \\º]ò.\Þ\Í ß¤º',_binary 'Vvù6Ò¬±¸	h‚Q¡•Á·\Ím\rÌxys(l\Çó','',0,'?'),(_binary '€¶—r=Š\Ä\Ú\Ïc\Ä\Ð\ËMz','wp-includes/js/dist/is-shallow-equal.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\ÉÜ§\Ã\É\ãZøý„ó´\Ú',_binary '¢Oh¥úÒ¹—&ñj\È^>Eú]\'²\Ú\ÏT˜™C ú~j','',0,'?'),(_binary '€À\ÚË‰^PI\Ñfdk\Ô','wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-it_IT.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±vXP’ø¼&­b4[',_binary '8·ü­°aV\í¼\ÜÀ\\¢1\ág\ÖyoJòþ™|\ì9€Ì’','',0,'?'),(_binary '€\É:wp	;ûfSNµ','wp-content/themes/flatsome/inc/builder/shortcodes/templates/col.html',0,_binary '°2øZ\å\'ò1VYüµ_(',_binary '°2øZ\å\'ò1VYüµ_(',_binary 'þŸ\Æ\ç\Ü*5×«œŒ\å*»\ïRD²ñ+ÏŽ¿Ì•b\\\É','',0,'?'),(_binary '€\Ìü£!ˆõh\Z­É¨$\"R','wp-includes/css/dist/edit-site/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†Á\ÞF\ï\Ñ\ßGqH‹¶\î°',_binary '\Þ\ÜAŠÖ£H=0ý\Ïn…|…D—°™\ÇÓº:Õ»¨BÔˆ\ÕF','',0,'?'),(_binary '€ÐŸGk´½ÎŸ\\CV–:>','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yith-system-status.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(q7F\ÑL¹jszND¼¦Q°',_binary 'E\r\ä6X\'=D\Ö1\ß1€S\ÛiñB–{#g\ZÀ9','',0,'?'),(_binary '€\ÒO»m’üô±…•\ÃG\íö','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-fields-block/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ù.sŒ%)¤Š§…§]A“v',_binary ',”ª-X½\î—\èaøšŒLŽ=¢Ej¿nP`}‘l\â=u','',0,'?'),(_binary '€\ÓÚº\èu¶¿M—\É÷[\r','wp-admin/images/wpspin_light-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mS¬û¬ý\Ð\Ûy\"C‰\Ä\Ò',_binary '°½66S¯X¨£±¹þ±6O}\É4>ˆp¾\"\Ã ”\'1','',0,'?'),(_binary '€\ÖNx\ïõÚ‰\Z\ã8yH\\','wp-admin/js/theme-plugin-editor.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ™\nŠ\î§9Ÿß \Ì%ø´',_binary 'K¸\Ý™\ÐÃ€5:Yú>lÅœ\Ô‡‘\Þ}¯\àú€>','',0,'?'),(_binary '€\ÖsSk\Üi«<4\'c\ì-6','wp-includes/js/wp-embed.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”³~×’”\'\ÈJ\0­“¸ä¯¯',_binary 'V_O\'ˆ\Ë\Â\ßpkú¿;†\í\Ó`ðO\Ùú\rŸ8h~·‹3K','',0,'?'),(_binary '€\ï\Ãæ”¹\Õ%*À$\É#bi','wp-content/plugins/woocommerce/legacy/css/photoswipe/default-skin/default-skin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à@+L:\î„\íb™÷“\Í!',_binary '\nœøµ€ˆ\êrIž\Å%\ÖÔ°´Z´p+­ö\Í\ç\æ\Ëx®#\"q/','',0,'?'),(_binary '€ó•>Ú•ö\n;BÙ«{','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-colorpicker.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡\Ç¸h¥s€‰²\Å\å†9',_binary '+‘,«©Zqx‰Àb®\Ë6A\ÔdÕ»z\Ì\á“€\\/}~ÿ','',0,'?'),(_binary '€ô5\Ç$)…\îXf Õ´','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/summary/supports.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X”yY\Èú\ÅÀ°\ZM9Æ™\Í',_binary 'JÁ6kU\ØS¾		_3!­\n®t€\Ï\×ð\éTJŽ±õ[6;','',0,'?'),(_binary '€÷\êÿe\Ø\æ97\ãaJS','wp-includes/images/smilies/icon_smile.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ã\à3ó.)À2\ê\Ýp\ë\Îð',_binary 'Ë \ëŠ\",\ë¶RÊ¨¨Tr=¦o\Âùr\ÑÐ—:µÁ°€','',0,'?'),(_binary '€ü÷8Ï€8’s\Ü\Üs/\Ñv','wp-content/plugins/woocommerce-multilingual/classes/Tax/Strings/Hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜\nò¹¯Lùg{+M0››',_binary '\×ü%òNEûx\ÇM/`•Õ‘Wž8+-±¤©L\àt‚','',0,'?'),(_binary '\0CTø\ÚÙ’¯öÉƒö9','wp-content/plugins/woocommerce/includes/wc-update-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦–>!÷\ì=\n\Ù«\Êd«',_binary '\ïK—›\Ä{L…ù–\ÏL\èO_1ðÁT{¦6\Ä*°|H','',0,'?'),(_binary '3O\åù•H“©ÐŽ¢G§','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/datepicker.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rnkñ­ƒP;¦±/\r\Þ=',_binary '°\íp8gŸ\Âƒ=\ÖHÁ\n3Š¦‰,9\È>\r[œ÷\ì|','',0,'?'),(_binary '	\Ôô}\ß\Ìø9·[6ˆž','wp-content/plugins/yith-woocommerce-compare/includes/class.yith-woocompare.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*@¼½}o`\èœT5P^œ',_binary ':û¡•\êPw¬X7s—¥¼\Ôg”h„\n\áVP\Ñz–\ï\åo','',0,'?'),(_binary 'ùXQû\ád9r\×Ú¼–\Û','wp-includes/customize/class-wp-customize-themes-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘\àT¥\ívlŠþ3­Á',_binary '¡,V‡™¶3Rw¤\ã’\Ê.½ü¤\r×­+4Ý¦`=”`R','',0,'?'),(_binary 'cdcÆšq\Ì~·%‹\ë','wp-includes/blocks/navigation-link/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ž”_\Æ\âŒq·¡ðŽ{\"4',_binary '\n—\Ã * ô(“˜G:š4š›&\èF¬U¼\Ì\ËM`&\Óþ','',0,'?'),(_binary '­\Z;`6Gö5žó¼˜Ág','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/address-form/test/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±uÌ‹n\ØJoÏ‰±JDU',_binary '¥ƒR#+±[Xˆ¸#$M\ËÿxA¿\Ô\î›À\ë\é\ÏÈ³y©«','',0,'?'),(_binary 'pX)Tñ>\Ék‹ÿü','wp-content/plugins/woocommerce-multilingual/res/js/trnsl_interface_dialog_warning.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T_»’ú–l#\å‰|µ-)\Ñ',_binary 'N\ãgJYen]õ®¬oSh›ðm\Æ\èÏ‘\ìz`\çŒ:“','',0,'?'),(_binary '®yª¾z)ª©¯\\+B\Î','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’\Íö,œoF\ÝD:Nˆ¾4',_binary '²jKžb ¼Êy,`ª\Êÿy¾5o\ï\êfÚ®_¶e','',0,'?'),(_binary 'u\0¼$ªêŒŠ\Ò\ãnVò§','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/event-emit/types.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bg€B>žõš“ðtOX[',_binary 'U)ª2\ÔcŠj^<9@.Šø“\"}c…\Òò\Zƒ®\Î&','',0,'?'),(_binary '1T\ÒÕ¬7‰\Ú*¢¤«G‚™','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/ref-sites/icon-256x256.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\çð\É\ÞsR;\'a3',_binary '\ï=\ær,y¾\åj™DhbMðœ‚#%\Ã\è,(\ÜsH‚','',0,'?'),(_binary 'A{¶j‰….Ø¶ #ù\Ë\å','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/wp-pages.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç Á¼Ë¾eL\ì{ª-À\Zk',_binary '[`¥\à‘\È\âS\ïz´üñópx|#‚›_\Òø¾rJ·Í³','',0,'?'),(_binary 'U\é\ç¤!½.Ct3¼\rO','wp-content/plugins/woocommerce-multilingual/locale/woocommerce-multilingual-el.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+^\ËeWÿF>½VÃ€<\ãk',_binary 'Ø³z«X\ïglô\Ë#MõC °&[û\'Z¿U¸Jz6ù','',0,'?'),(_binary 'Z û\áúH7õ.):À\r\Î','wp-content/plugins/woocommerce-multilingual/compatibility/res/js/wcml-composite.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'cš3P®\Z§õ\'Kh\Ó',_binary '€xF0\Ò<¦:Á.3»‹\í\Ò\Ýúv¤V\ËL\Å+![\Õÿ¾','',0,'?'),(_binary 'Z‚bZ®:E‡r\Ù(\éu]·','wp-content/plugins/woocommerce/lib/packages/League/Container/ReflectionContainer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ðI\'Hü¬°­¾N™\ß\ß',_binary '–_ = ûúh§ô®‘\Þ,\éún_ýò\\óh‚R\Ú','',0,'?'),(_binary 'el÷5s˜˜E\ïÃºQ\â','wp-admin/js/media-upload.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9€5Ÿ.Á¡4óÔÁÎž',_binary '…‰ù\èÚ¦\'¿D˜\Zº\È v¡¬0¡ûE~ù\Çb\â','',0,'?'),(_binary 'e\Þ/¢Ÿ§;OžF¨fH','wp-content/plugins/woocommerce/src/Internal/Admin/Loader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¶7y\0\r¾ ˜c7 \ç',_binary 'O­\\@]<eœ@À²…û2\ì\ÛH.½jkRÿ-L\éA†¿&','',0,'?'),(_binary 'o‰X	ý ]e•¿qh\Ç','wp-content/plugins/woocommerce/vendor/psr/container/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's ®:©/Ke%õœ$«ö',_binary '\ÐöAZÿ- œÖ­§‡\Ì:\'\Í\Í<5‰¶£FóWq,õ•','',0,'?'),(_binary 'q\Ô8¿§ôpb\Î?Ý¯®','wp-content/themes/flatsome/inc/extensions/flatsome-cookie-notice/flatsome-cookie-notice.js',0,_binary '\à…·!<ˆT¸[V’?\ïbK',_binary '\à…·!<ˆT¸[V’?\ïbK',_binary '\É4½ŒŠb\ÞÁ5¶|aH\Ñ&£’Ð“Ö¶ÿ\Û\\S\ä;b','',0,'?'),(_binary 'vZò„\ë\Û5¾³9F»G','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§ª…\Í\Ð\èøQHð',_binary '\éVsûŸ7„5À8\í®z´\ÔUX¹\ÏM!=\Úq,%ù\Ï','',0,'?'),(_binary '~\ç‹NNTWi¥,«— ý','wp-content/themes/flatsome/inc/admin/kirki/modules/postmessage/class-kirki-modules-postmessage.php',0,_binary '%ÿŽ3yœk…Þ\nÎ‰\á»',_binary '%ÿŽ3yœk…Þ\nÎ‰\á»',_binary 'f•c‡$5 i.R\ç6?N\ç\æ65\Ò\Ñù–\Òô\Å\Ê1,M','',0,'?'),(_binary '‚(Š¬Cdý»v\Ö7^g','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/PriceFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ân»ð“L\Þ~~û[Oÿ\Æú',_binary '\Ñ\îlxÆ“€\ß\àöv\Û\ÙJ{yª¤ó\ÈØ˜2*`','',0,'?'),(_binary '‚1bRÐ–½eð”Jyö','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/form-step/test/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ§dhú\ï\ë\Ë\ÖŸ<',_binary '-C•~\îtOG\r\Ç5\Ñ{’KŒnr\È­1øÁþ<œ','',0,'?'),(_binary '…,CUU\î\èœú9i-','wp-includes/css/wp-auth-check.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Â%øLõ\ÅÔ¥|l\"Ž\Ø',_binary '¯]ÿž\"8y\É\×üýÿ;\íµ=X\r¶€¤ƒYƒ$©\ÅT;','',0,'?'),(_binary '†ödŽ^\ÐmBG\ê\r','wp-content/plugins/ti-woocommerce-wishlist/views/general.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±\r\Óf.N\ÍOò˜¹\á,',_binary '”\â’BwG¼üBc„\Ô£s3z²@ž%P–\éÂ˜\Ø7¶•','',0,'?'),(_binary '­„Þ³ \n;+1®e','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EðWMi6\ê=<*@}m¢ð',_binary '€ù…¦DŽ¤RV\\Å­\à<7ty	³,8\áY\ämLÁ','',0,'?'),(_binary '°i\ä \Z!\à[«8$\"ø','wp-content/plugins/wordfence/vendor/maxmind-db/reader/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';ƒ\ï–8e_\ÈT\Ý\ÃÆ½W',_binary 'Ý¬\ïISôP\"õa•» 7JŒ6\çQSv„“ô_³y’','',0,'?'),(_binary '³«>û\Ä\n\Ùøj•¶V‹v','wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-explore.php',0,_binary '–\íWV\Îu\æ\è\Úß»~b\é',_binary '–\íWV\Îu\æ\è\Úß»~b\é',_binary '€½o+\àw§=þ’1<\Ø{œV¯ŸaÈ‚:&uo','',0,'?'),(_binary '¸o>¿Vü\Ç_Àrð\Ý','wp-content/themes/twentytwentyone/assets/sass/05-blocks/list/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿¸\Öw„dhˆcI\íŽ',_binary '\å\Ê%B\0/\Çó\"k\0¨Hª´‘>\0\îT!s\Îü]\ÅÝ·','',0,'?'),(_binary '¹Ò]‰\Ñ\ÅL|7“#‡','wp-content/plugins/woocommerce/vendor/symfony/css-selector/XPath/XPathExpr.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Öy¾|CWP )4\"Q\ë\å\Ûõ',_binary '¨/ÿô\Ó!O‘ÿ¡S³Š»uø\æo..w\Ï\ÂQc\n²¬¬','',0,'?'),(_binary '¾Õ½ª©J„>J\àÔµ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-billing-address-block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\á~öžÖšŒÞ–— C',_binary '„Œ^¼\ï\ÞdŠ¿\ä=`q\â\èZFªx§A\Õo\Óûq²ø¤','',0,'?'),(_binary 'È‰V?	\Ý\Þ]\Æ)A','wp-includes/js/media-views.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þª.QŠ˜S7ýó2ã—«”',_binary '«ò’½\Ô.o\Â2a\çm\äy¿Iü\Þ\ë‚4tŒ\ßO','',0,'?'),(_binary '\Î`h\ÑNkO¡N8ž‚','wp-includes/blocks/file/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\ç\Ä\n½•Cq“twˆ\"r',_binary 'Oj\ì\ä#žòƒ#\é®\Ø\Ç\ß[„\ÙB\ÍõjT„Û—7','',0,'?'),(_binary '\Î\ÂW\Ú\è÷=¶Ô˜Hdûz','wp-includes/class-wp-site-query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Áy>e \Ó°þšð–\å“)',_binary '’–mŒ\"”š{=/!Û«Hÿt°,^´\à\Ç\Ös«\ä9G®','',0,'?'),(_binary '\ÕXù\â\Ï\à-Ÿ4¤Jü_ƒ3','wp-content/plugins/wordfence/lib/wordfenceHash.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\"‚§š‡MJ\á7Y(\nAj',_binary 'š+µ#>\áû÷9Ë–¤¦9’?,ox˜\ê²ÀQ–N:–£','',0,'?'),(_binary '\Öð„\Ë\'>\á[½žÎ‡÷','wp-admin/js/user-profile.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0[Y5u¢ŽG\ß©_²\Óg',_binary 'ˆ3q\ÅO“6;uƒšuˆogUE©\Û h:-§ó>\'ñ','',0,'?'),(_binary '\àÆ¶SŽ÷¼ú\Å|G','wp-content/themes/flatsome/inc/admin/options/global/options-js.php',0,_binary '\0©§`\äû>L—5;-',_binary '\0©§`\äû>L—5;-',_binary 'þ[\ËT\ÅnŸEjd\Ý(²$:!Áh\ÔÎ\0›s\è><','',0,'?'),(_binary '\ç\Æ\ê^\r\nû!—ûV“!','wp-content/plugins/woocommerce-multilingual/templates/products-list/pagination.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ã\à‚ø–‡Lb=Û’’za',_binary '”P\á1†§\æ¢p¨\Úýq‡Ix_t¥²\'X.,ZqN','',0,'?'),(_binary '\ê\Ú]®Žµ\Ì%H-\ÉÝ©','wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_QueueRunner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µÿ\Î\Ì!Öœ\Çø£de',_binary '.\ÇUrmü\0Ð¬Xu\ä\é;…R\ÞAö oüŠð6\í†t¿¸u­','',0,'?'),(_binary '\ë N*,³Lx©µ+','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/spinner/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'RÆ½rPÎ°©S*„ð\í\ÔP',_binary '¸G$\Þ\æTw•ºE\ã³ñ¦nÆ^‘ž\ÝQŒreGÆ‰','',0,'?'),(_binary '\ì¶Pdºµ“ý’\íc3','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ò\Å.<$Eÿ\0—þg½:T±',_binary 'ÆER%ùó–f\Æ\\ŸÉ¾\ä\rv”8Cÿ^\Âh','',0,'?'),(_binary '‚O\ÍX\ëÁg]<f@˜','wp-admin/css/farbtastic-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÕS@\ã\Î[“\\,ð3|’¶!',_binary '£Sm¾\'\ß;d`—\ãe M\Ø0i=óŽ?>\Î\Ð€\ä¼?{','',0,'?'),(_binary '‚2²ª&\è­v\Ð\ïb-¿º','wp-content/plugins/yith-woocommerce-compare/assets/images/12-bg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ç\Êkž/R/\ç;*Ob¢z',_binary '_#`>1\ÇC®L¹\íøl¡w\æ\ä€–\Õl\á4wyHCqw','',0,'?'),(_binary '‚»<j\Ã\Ä?šx\ã~z\ë','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/country-input/stories/countries-filler.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú<~¿”\Z…\Â\éX\Ã5¡G<',_binary 'ºcÛŒmKX¡4Ë‹B’5¾lµ–A\Z&oMÄ¡Í¿','',0,'?'),(_binary '‚)\n{±\Ã%ýg¾i\í\í\\','wp-content/themes/flatsome/inc/admin/customizer/img/account-icon-fill.svg',0,_binary 'µ˜œ-,\ï«M„„ˆû',_binary 'µ˜œ-,\ï«M„„ˆû',_binary 'ß‹„\èTŒ\áŸùaþF¹®ô3Š—¿\Ó/É\\‡HR\nž','',0,'?'),(_binary '‚3¤–Æ‡e\Ç(Ãº9ù','wp-includes/js/jquery/suggest.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\\+A)œ”\ãn.;«‰',_binary 'I<¿{\04¯`œ<!j’±Z8ë²\è»D”HWÿ•','',0,'?'),(_binary '‚—b¤”·»N8®hk\å','wp-includes/rest-api/search/class-wp-rest-term-search-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\è\åcW—U\î\ÚÔŸ\Ï`B	',_binary 'wþ\r¨\Ñj\â*‚m˜l]˜ ‰t\ë\éPUŠ\r¥Eû\Ü','',0,'?'),(_binary '‚mu&K©ðj5~º\Û\äW','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-payment-method-bacs.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W/\Ëð\í\êr\àÝd=sE\É',_binary '\ÖÌ£×¼ô.£\È7\ìKc¦\ç\çY\Û\ÒR·\îJ&0*²^','',0,'?'),(_binary '‚ý\\\Ï(\å\ÙwB\ê\ÄI\ã','wp-admin/network/update.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l\Çû	Î’RU;\âpp\Æb',_binary '­,º!ÿ½m4f¸ƒ\å\Æ\Ø\ÖNRþ\n\Êò\âBÀˆ^','',0,'?'),(_binary '‚!\ÆüSD\Ï\î<^\×L¿öž„','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/title/frontend.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é‡Ï¦¹^9xN\Ã7\ãl\Í',_binary '\Å\Í–yhB/¿~®¼†®\\«\ÖÇ‘‹ù\Ë\ètŽ\Ô:¦','',0,'?'),(_binary '‚(tTlDÎ¬7&‡³MP.À','wp-includes/js/tinymce/tiny_mce_popup.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B7¯I1º0Žµ¹ƒd\Ç',_binary 'ûº¤\'Ð—¯³/!\Z\Ûa!Ž~³)µÁ1D\ä¡','',0,'?'),(_binary '‚)hÄ«O‚\Í,\èT\ZÑˆ¥','wp-content/plugins/woocommerce-currency-switcher/img/woocs_banner-old.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ë˜s\n÷˜›—²ˆWñ9q',_binary 'Xýz6¢R©\è‡Â£\Ö>‘y\é:­€Yõ¦Ê¹e£:','',0,'?'),(_binary '‚/	ÁE:KòRå¯¥Àv','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/X25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—V\É\Ã[\×SPkCû',_binary 'úûÚºÙ…±Å´‹¼}C:\åÃ¸=€~\è†\ÞQÀ(8–\Ð$Q','',0,'?'),(_binary '‚/vA\ç<\Æ\Ì,W.·9\Ñ\â','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/preview.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñû\îœ­Œ\Ðz­Â’þ',_binary '\\Ÿ…`t|® Ÿ­Ò¾.>\0œó…QPõjB¿NKN','',0,'?'),(_binary '‚6iŠ\0C¨\Êg‘\\V¡\Âÿ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/reviews-by-category.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's£¯¢\ÙÍ 7l\Ýp]³ð',_binary 'A°v†ù!P6¬ŒôÃ€r™™T‰nt‚\Ö\íS––V','',0,'?'),(_binary '‚79]\Ûs2\'\Û=;\0XC','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-sv_SE.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w±ŽUH\Ù\Ü}|œß¨\ß\ê\Ï',_binary '/œ“a ©\â\Ðð¯ðm\×ÁcdODzˆÝš`\á›\å:,','',0,'?'),(_binary '‚7\Ý]\Ì•sG\à8¦\Ñö‘r','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/Transformers/DotNotation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rk\Ô<–%>%B\ZB£¨p‰\ê',_binary 'ŠÀµ\Ø]h\È/\Ùx†ˆºh˜\ì@\ì\n?‰S«~›?¯','',0,'?'),(_binary '‚9¡v°Vˆ²8º\nt;³5ÿ','wp-content/plugins/woocommerce-multilingual/inc/currencies/class-wcml-multi-currency-table-rate-shipping.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„$=×½	Ð„Z4ð[-–',_binary '\nìŽ£\ëqVÓ²ô_û‚\ã\×\"\ì÷¿¨’\éû&£€\Ä\Ì(','',0,'?'),(_binary '‚;‡wt\0kZdy\ÂÛ½\ÅV','wp-content/plugins/woocommerce-multilingual/res/css/wcml-files.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\éj|N\ïPo»¬\É4\\$',_binary '\á8„±T¤‡¦ƒH#ð}›d˜p¦:WÈ‰\Í\Å§I¹•','',0,'?'),(_binary '‚=¢…>\Þ\Ôù(>û\Ó\"¸ô','wp-content/themes/flatsome/inc/builder/shortcodes/values/slider-styles.php',0,_binary '_üi\Ç8VI\ÈË˜Ta\ÙD',_binary '_üi\Ç8VI\ÈË˜Ta\ÙD',_binary '¯Qð¹j…£~YÜ –û #7³´†:\á€í ‹n\"\×^','',0,'?'),(_binary '‚@\ßF \ÑÓ (©¤\Åe*[','wp-admin/js/theme-plugin-editor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•-J\Ö~¨ð\Ñ\Òö\ä\ä',_binary '• |ÀD\ÕO\Æ?{§\ÌúÙ¿ •%¿Š×–²Y}û\×Ðž','',0,'?'),(_binary '‚B\ÒóÙ‡\Èv<Svç¨³','wp-includes/SimplePie/Parse/Date.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\\ŽO2´ˆ‘‘¤C[\nÕ»',_binary 'ü=­£<\Ý\áþei|\ÎMûqZ]V[]&I-q9)g¹0','',0,'?'),(_binary '‚F‰ \åGJ\Î\ÖB\ìˆs7µ','wp-includes/js/media-models.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Õ\æ¾Á´)ˆ \á\írBŠ',_binary 'vK¼ƒUZ·3 7’ñY8z}À•‹NrŸ¢a\èÑ¸\åB\ï/','',0,'?'),(_binary '‚F\Ð\ç:“}-/\ÆÛ…Kù\Õ','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/DataSourcePoller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÂxGÁõ¶³ðv3Œñ)\Ó',_binary ')?H)\ä\é\0I¸\Èa+\ZtŽ\\˜\átó¯ò4·7ÚŽ8hˆ','',0,'?'),(_binary '‚MÈ®s\í\Ã\á\Ó%}›+=\í','wp-includes/blocks/latest-posts/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'úk\ä?ˆ„\ã!Ö¤\Ï\ã‚',_binary '”^x\è\Þ2\\f_ªôš(\ËAþo­Ö¦\ç\Êû&I\Æ\Äb','',0,'?'),(_binary '‚W= \\\'x\"ˆW\Ì}\î\îd','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Fe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§°÷Õ©\èK½­ƒ^ã¥¾¹',_binary '\ÏM‰8:ŸnaÆ‹GZ\ÝqQdÃ½!® ¼\Ú\'‡›&g1','',0,'?'),(_binary '‚Y‡Ø»úç”©\é\Ñú*ñ','wp-includes/css/dist/edit-post/classic-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹)½k8\å\âõð°\Îw’',_binary ')SMõa–\Ë\Ü\ÊW2#K4 _Jƒ²\Ø\êR\Òù\ë—','',0,'?'),(_binary '‚]Q%úLd§€Ä‹','wp-content/plugins/woocommerce/includes/class-wc-product-simple.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\íp®u\Þ\Æ\ï\áV±sTy1',_binary '1]ToO#¥\Ø-¬Ã…<\Ì_@÷ô¤s\æ$\Ú\í	\Ï\ï\Þ@','',0,'?'),(_binary '‚^\ï‹qª\éÎ™ž{O:\Í','wp-content/plugins/ti-woocommerce-wishlist/public/wishlist/buttons.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŒªL\Ð?Xn\\F‹ð\íL)<',_binary '\ê5\á\ë“¤l\È8¡:ôðrˆþ@&sd]·Cœœ\Çÿs','',0,'?'),(_binary '‚_&½ý«\ÙHÁ\â\Ïg\ì','wp-content/themes/twentytwentyone/assets/js/responsive-embeds.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ	 ýžBJlvU¬0‹\Ê',_binary 'Áû™BÁ\Ô]“»>LZo¯#Q\Æ^V\ìx\Ð\é¡÷µ#°','',0,'?'),(_binary '‚`ÿVZ¡G5„.\rºž\Íc','wp-content/themes/flatsome/inc/admin/options/header/img/header-default-dark.svg',0,_binary '\ÏEª3\Z<R–‹Ñž',_binary '\ÏEª3\Z<R–‹Ñž',_binary '˜d½Uø\åh\n«\×?\È\æXŠ{\ìùÉ·mä´€£öI','',0,'?'),(_binary '‚h`®•º\ßr|E˜tŸ½','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Authentication.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\Ø\ßh©^}›\ÙQ€:\Îz´',_binary '|f~¥—£?\ß+ñ/@x™‘\Üh&³\çoØ±Ý ŒÄµ›Oß‘','',0,'?'),(_binary '‚j\ä7\é’ü&E¸neH¨','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/title.svg',0,_binary 'cÿq„Jß¢\å•\Îúe“\0T',_binary 'cÿq„Jß¢\å•\Îúe“\0T',_binary '\ÚpIý_e\åBd/Ái\Éy3‘ó\×\ê¡Á½\Ý%©¾\â','',0,'?'),(_binary '‚l2\Ñ\ä\ë´Bvœ#¥ñ!','wp-content/plugins/woocommerce-multilingual/classes/product/class-wcml-product-data-store-cpt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ê\Ð\Ç[£5H]SôvŠ?™¶',_binary 'ù\ên“.ú:@–(\Ô,GY²\éf …°Pl	N\Þc','',0,'?'),(_binary '‚pªx¨\Ó\\?;\ÝhE/\Ø\æ','wp-content/themes/twentytwentyone/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\âgwVô!\ÝòW[Œ†ð\ï',_binary '\ÝÌ­hú-¯§P’yýýzú\ã\Ö\ß\Ë%›£ƒÁOª','',0,'?'),(_binary '‚rp÷™¡¢b\Ä\è\Í¯»\ê-','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yith-post-type-admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'óFñL¥˜1%¦EŽ',_binary 'P\Ðo\">I\\b2d\Z\æJ\â[“\ÔS6´šcõ´ò','',0,'?'),(_binary '‚w€·5»ÿ\ïÁ¡)ºûž','wp-includes/css/wp-embed-template-ie.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\î·)6žó	ØžÐ¼q ª\Ê\ß',_binary ' o•±+8]\ÅSu\çüH.\éCøgô\ÞR9\ê&¶+ý¢“\\W›','',0,'?'),(_binary '‚~&A1ž]¸S\Û¡\éZ´','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/OrRuleProcessor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ï½dŸ’\É±KSaP',_binary '\ãYb1 \Ò8N²\Í-r\íÃ¨ƒK\Â\nu\Ë8´®ùun\ã','',0,'?'),(_binary '‚€\áN\ç”]\è\rŒƒˆ‚§9:','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-price/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'üaKºõbm8\à„4!€õ',_binary '½\æhX+k\ÑÜ‹Ï¿:Mˆ\ë\Éu5Ž!E\Ñå®„Efa˜','',0,'?'),(_binary '‚ˆýOnOì¿¸\ë»~C#','wp-content/themes/flatsome/inc/builder/shortcodes/scroll_to.php',0,_binary '4»\ZH½;ð6•‹?;:nô',_binary '4»\ZH½;ð6•‹?;:nô',_binary '»À˜P\ë…Óš(´³Guoý¶Ó«\è;\'3Zõ[V|','',0,'?'),(_binary '‚Ž\0¸ó¼²+OW+','index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’m\Ðù]÷#ù\í“N°Xˆ,\È',_binary '³Dz²\n\èþ}_«ö7x,\Í9öt:\æ\'³\r¹ó‚\á','',0,'?'),(_binary '‚ž.ŸÞº\n-\Ò\"ŠðhòY','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/support/icon-128x128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\noÕ}m¸\Ï¼\Ð7\Ï\0',_binary '\Z&€Ks½ü|N*\ßø\é\íkÁ\äY€W£&Z:n¶','',0,'?'),(_binary '‚¦\å\Å\å\ï‡rÀm¨¡pc­','wp-content/plugins/woocommerce-multilingual/res/images/edit_translation.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j_[ü¶žh\Ãñ15\Ç^)',_binary 'løó•›‘D\"\Ò\Ñp\Ö>)$?ÚŠ+^öOc”I\ÅZ÷','',0,'?'),(_binary '‚§¬\ã\íA¼\ÎòŒ1\Z…;¤','wp-includes/rss.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å4|ž\Ùòò¹£e«\Ý(r',_binary ':™¤.,°0aHýAù\à\05:®f„s\nf\çµ\ÑžŸ\î','',0,'?'),(_binary '‚À¦\Ý;óŠ\Âk… ˜§8','wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/soccer.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÓpÓªª\î\Ë§$',_binary 'Í–\Ñ_¸q\Ü#ˆÁbñu\æ‰‡ž\ï–\Í.\ä]£mž„','',0,'?'),(_binary '‚É½\é\Z7‹\ån\â1ÿ','wp-content/plugins/woocommerce/includes/wc-product-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Û^ˆk›õÍ°µD^bÁÿÔ´',_binary '£®&\Íò«|>h\Â\n\ÌË\ã¹d<»\éøX6*½\í—K ','',0,'?'),(_binary '‚\ËB¸À—qDª5\ä\ïœÿ','wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-fa_IR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†8yò•\Í%9 £”z1T',_binary 'i\ç3\'½¢“õTÿ\Üa\Ã0Ø›\È÷\Þ\Ï\rŸÿ™Mžð\è²ù´','',0,'?'),(_binary '‚Í¦0d‹¢ýW\î*Q','wp-content/themes/flatsome/inc/admin/panel/panel.php',0,_binary 'Æ‡\äšÛ¶¬®‹e\æõ­¿N',_binary 'Æ‡\äšÛ¶¬®‹e\æõ­¿N',_binary 'Á@üTl	²\0t¬é¸º“\Ï&\"•‘—Jê¬Ž\î¯icY\â','',0,'?'),(_binary '‚\ÐðnM\02]\r^\âÿúr','wp-content/themes/twentytwentyone/assets/sass/05-blocks/table/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M,GŒiÝ–\ÝI„<Xc\Äj\Ý',_binary 'VYj8‚bÀ\è5\çf\Æc]·7WþiÆ˜2H\âN}ý2“^','',0,'?'),(_binary '‚\Ñ{Œõh§Ž\æB-o:Ih\Å','wp-includes/blocks/query-pagination-numbers/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÛBÙ¾úö]G‡húµEX',_binary 'º3D\äw²X,×—3o™$Ž\Õs\Ùo35—8]«Vµn','',0,'?'),(_binary '‚\å•ý 1~\rZÀˆ\Ù†\Ð','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products-by-attribute/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Î%¥^‚\Ì-*±;ûA\Þ',_binary '¢¸ò¾\â7äœ¯\ç©Z\Û\Üâ·”\éˆ¨µ\í\ÓRq¡','',0,'?'),(_binary '‚\ç0ÿ\ÜzI§žN¸;ª','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-settings-repeater-setting.php',0,_binary '“I¿W\Æ%\Ú2+ô,ö\Z&',_binary '“I¿W\Æ%\Ú2+ô,ö\Z&',_binary '¬Q¦\á£W«e—P¬‚ø\ì/\Éað\î\â†ÿÊ§\Ô5KÎªþ','',0,'?'),(_binary '‚\ìœý®v¿A\nGr\Ï3C9`','wp-admin/includes/class-wp-internal-pointers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Kø™Ÿu\Í\Öý4VŠ\ÌpöJ',_binary 'Ç·æ¢Ÿ\Ø7[~Û ²\rNLVP\í\îq«C^MÜ¯{','',0,'?'),(_binary '‚\í«b(WÈž~À¾#1Á\Ñ','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/sep.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G”>!¬0–›\Ñ\äTm”K¶',_binary '?„$»\n7£\È\ÝY€…\r—\Å\â\È@\ÞA\Ó*\ã(i}\í','',0,'?'),(_binary '‚ö&º\Õ€Ó…\åžJ\ìLJ','wp-content/themes/flatsome/inc/admin/kirki/controls/js/script.min.js',0,_binary '§i\ÍÊ³²U„\áj\å‘\ÓM',_binary '§i\ÍÊ³²U„\áj\å‘\ÓM',_binary '°\Út\È\Æ\\l+¦L_cühj¹?\×$pÔ¸bUü','',0,'?'),(_binary '‚übc}ŒAý¹\â<¢kƒX','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/StockFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\Êþ\ä\nU°Àey…‘',_binary 'ƒ\"¸›\ì¥øÚº¥\åñ\\ÀŠmºò)/\rc©Àr6','',0,'?'),(_binary 'ƒ—I\âòF\Å\ë¤L‡bXE','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/filled-cart-block/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q	z?¹rrH¨§ý\ïh\Û\Û',_binary '/D\Ü¿.‹”\ä\ãR†ŒÅˆ\Õð\Ô\ÙÊ H5cÌ•Qo','',0,'?'),(_binary 'ƒ\á\ÌK•F-\ß#¯šˆšE$','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-subtotal/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®‹\É!À€…¶_€ÿ ž…',_binary 'f^d\rõñc9¯´ùµ\Û+«br[\â.ùS50\ß\Ñ$\Í','',0,'?'),(_binary 'ƒ\ÓTf1©\"\á*Ã†C}','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';z¿²\ìÿ·HþÇ¬ü\ß',_binary 'x‡]ðs­vðv\×ýQK\ØgÁ„U\ÄÿkrŠ\"¶«','',0,'?'),(_binary 'ƒ3X®/\áýý‘žŒ\'\Ý\ÉP','wp-content/themes/twentytwentyone/inc/starter-content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ji7¢‡\ß\ÄÀŠ.®§',_binary 'E£\Â\Ú1&…km¦\Ô{œ³‘¿¬\0Ò’t³nÉ¿·HV','',0,'?'),(_binary 'ƒ9v’mƒÿ\ÉP“bMRB','wp-content/plugins/yith-woocommerce-wishlist/includes/class-yith-wcwl-wishlist-item.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\ï¿\ÅaS,i<’H°\Ð',_binary 'ý¿I\Å-’•wl\ÍÔ€µg˜×†¦)W\ØL¸K\è\æ\Ö','',0,'?'),(_binary 'ƒ@AF…iO”¤\ë\ì\Í','wp-content/plugins/woocommerce-multilingual/classes/Rest/Wrapper/Reports/TopSeller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\09\Ïokiy%‚\Å^E',_binary '™\ÍÁUð\ë\É-\â‚¨a¤o\\b—wŽ Ž\Õ\î/ò¡','',0,'?'),(_binary 'ƒEbl8yÀö\Ã}†¡—','wp-includes/js/tinymce/plugins/link/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ø*NÈ’mQ¹€®\Ì¹\Ã',_binary '\Ã`3ŸcYQøÁ\Ùþ9WÞ­#l»ö\Öp\ËS+G\í\Ø4','',0,'?'),(_binary 'ƒOùNÿ¤[ Q-uÀ‰/','wp-content/plugins/nextend-facebook-connect/admin/templates/global-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\Ù5U(\Ð À2P\æû\è\Òü(',_binary 'rýóy¥@Ÿ2\ÍA+µ\â\0–\ë—\ãR™kÿ@´8j\Î(','',0,'?'),(_binary 'ƒR”\ÎW\çøÌ˜qJ\ãÝ…U','wp-content/plugins/woocommerce/assets/client/admin/chunks/9792.style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡c£„¶\Îx´]*Œ5O\Ê\Û',_binary 'Tj³\åL\è¨32Ð‰†\Ï÷9¦õ»òP\êu\çcý®oð','',0,'?'),(_binary 'ƒT|:ó$\Ú;‰Á%›\Z\Ý}¹','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/products-control/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'?L\ç+(¸mnP\Ø',_binary ' 1¤šp¶b©\êó¤L•,6m4(\Þw\ÐoNJ\\.¾\0¯','',0,'?'),(_binary 'ƒV\Õ/F\Ïÿñ\Øï¼‡\Ä','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-payment-method-bacs.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ\à\Õ\è§öZ`öFjMX',_binary 'þ{GŠ\î\Ôwi¢“{˜“·\ç·\ãtü#ûJšEŒ\é\Å','',0,'?'),(_binary 'ƒV\ã3AºE·P\n\ÝM©','wp-content/themes/flatsome/inc/admin/options/header/img/header-wide-nav.svg',0,_binary '\ÝA„–MU¾˜½ª\Éò/õ',_binary '\ÝA„–MU¾˜½ª\Éò/õ',_binary 'Ÿ\È\ë.h¨lŠ\ã!â¥£lWR¾.·\Îé¶Œže','',0,'?'),(_binary 'ƒW\ÜnJ\Ö.\'/xû','wp-includes/blocks/embed/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&|\Â<ú\ÙQ,I\Æ4\î\0',_binary '{¶\éû\'¿dh†žE\äñz±®.\nA\Ø;©\ã8ª‹','',0,'?'),(_binary 'ƒZ\ç\ã ò„nL»\r¾n/‰','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-categories/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7öA\ÈHBR6²® ùšÝt',_binary 'œ®\Ê,žakÑ‡\Þ6\Íð	!8\Zªÿ\ÞŸ_\â_\î\Ô','',0,'?'),(_binary 'ƒ`”«ÙŸ\"~JLHš}\Þ','wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-xml-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ok”þW\ÉOÝ›‚¸7\'›',_binary '£r¸«\Ú[9¨”o\à:Ñ™ñ\Èú\\;žo‚—¾¦f{ô\ë','',0,'?'),(_binary 'ƒm>\ì»\0»°0X& ^™Q','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/CurlRequest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·\çpKz’\ä`\ß)9_@ ',_binary '»›aÒ“Ye\Úq\Ù7YTc³ÈŠi$˜W¿Øª\Ê/\Ä!‡,','',0,'?'),(_binary 'ƒ9OÐ‡ösµW/\ÔÇ•','wp-content/plugins/ti-woocommerce-wishlist/includes/export.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@i`«“p\Ú\åÒªZjo™',_binary 'pMbADƒsª`smN¾µ9!\Ñ—Œ©B†l\Ú\â\Ìÿ','',0,'?'),(_binary 'ƒ„-½¸òr\Ü\Ì(U6·','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-product/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ã\â\Â÷öa=&³Â¤¢—\å',_binary 'ª/Þ¿+\'õ\Ûž|C\Ï\Ïò‚Þ…)|q\ÚÑ \Z\×\'PI','',0,'?'),(_binary 'ƒ…³?À•(W£^šoò\é','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-data.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½Ls«»Ž¦t\Õ\'øI†ý',_binary '©,‘ówr˜xu=y^õD\'4|¬Yg\Ë=‹ …`Jþ','',0,'?'),(_binary 'ƒ‡Ô¶;˜\Å-,kÙ«c','wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yith-post-type-admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'óFñL¥˜1%¦EŽ',_binary 'P\Ðo\">I\\b2d\Z\æJ\â[“\ÔS6´šcõ´ò','',0,'?'),(_binary 'ƒ‘Ç“¯\Ðè‚´ ›¶§l','wp-content/themes/twentytwenty/assets/js/editor-script-block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a„R©\Ûðý7\î^\Z‡',_binary ':é¦ˆ¾À\Õx\Çt[cJ\â\ïõ= \Zº\Z\Ú\Ï÷\Ðh…\Ù0','',0,'?'),(_binary 'ƒœ=°	•ª\âR\n\'Co¥','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings/shared/default-address-fields.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Eyþ¸[L¬v-fð£_œ¾',_binary '\ç±@nùª\Z€\ß&s_w{ó©‰6\Üi¿\ãÂ…Zu','',0,'?'),(_binary 'ƒ¨?\ç¬\Úz6¤—\ÛaDz','wp-content/plugins/wordfence/images/loading.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K:û„²·õmð™—£P½',_binary 'j*\äeŽó©õdoX¤~§7\Â\ë&€²‚Nü9\É|L•\Ç','',0,'?'),(_binary 'ƒ®ÁŠŸs\ÇLtC§ô;U','wp-content/plugins/woocommerce/includes/admin/views/html-notice-secure-connection.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jC\ÜA\é[Aºkò‘;\í\Ò',_binary 'ªøÔ©²´V‹B\ÌOŽ\ã»{\ÈÖ¿À‚~Ÿ\à”','',0,'?'),(_binary 'ƒµ¯ºrm‘õ°$\ÏWó˜','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-radio-image.php',0,_binary '\âY\Ðõ¨øq\ÙÎ‹å½˜\Õ.',_binary '\âY\Ðõ¨øq\ÙÎ‹å½˜\Õ.',_binary '°\0\Üg\çú¬±ŒŠ/ [sJ\é†3¯-ˆ@©1\î‰ü','',0,'?'),(_binary 'ƒÈ”\ë9/\ÚØ™Wóo˜<¦','wp-content/plugins/woocommerce-multilingual/res/js/taxonomy_translation.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\î¼Ìƒd*4¿¬ž‘¿³;',_binary 'G\Í (\æ\ÈûiA¹ˆ+°\×“°¤þSBþÉkk­5{','',0,'?'),(_binary 'ƒÐ¸+:3\èXnNˆtexöX','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fChc-AMP6lbBP.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥\Ôõ\ì\Ø{Wü7h>—­¯',_binary '„	2m˜\èw‡ó3)zWg‘\Þv{AfŠ\àHu`Co','',0,'?'),(_binary 'ƒ\Ñ\åOrô\ZT¿xqN','wp-content/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®Ö’°=°Œw\é\ç^ü6\äo',_binary '¤6/.”¦ó¦‚;¿^\è\Õ\Ûú\Ùy™‰vg¤%¾­¥','',0,'?'),(_binary 'ƒ\â\èÊ†\×\én¥Dã®–\Ë(','wp-admin/css/install.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j¬\Ïö;A#è›´j“„',_binary '’·†“\'d\Z{-&\éE\×ò³\á•Ù°’[šúª5m','',0,'?'),(_binary 'ƒ\ãj¬º\Ó\Ã5²\Þf\Åj¡','wp-content/plugins/wordfence/views/tools/options-group-live-traffic.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!´\ØL|±y+5*\êM\0Qk',_binary '’‡«©\ÍO\ëq\è\åFriü\ìž”e\Ö+³K¥	¶/;C','',0,'?'),(_binary 'ƒ\æP­¬½}\\¾\îs]O1k\ë','wp-content/themes/flatsome/template-parts/portfolio/portfolio-title-featured.php',0,_binary '£˜»f‘5õ³\åU€„gò*',_binary '£˜»f‘5õ³\åU€„gò*',_binary 'ý\"v5*	÷\ãv®r\Ó\Ãj¼0¤¯£üh>Ä‘ß³½g;\ç¤','',0,'?'),(_binary 'ƒø•\É\Z‘#­—pQ‹ºr','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Utilities/OrderController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ\ÓÆ…\Ï;n\ã\î\è9\Þ?\ê(',_binary '!»]bˆ²¬·¹$\Â\ß\Æ9<¼ñP\ÏD‘r\n­ü=','',0,'?'),(_binary 'ƒý\'2\Ó!\î˜Lo§Î‘F','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/cart/test/use-store-cart-item-quantity.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd1·(Ö¬)Hª\í\0K’',_binary '„\ÙzØ®\ê,¦²\"!ð÷\Ø»\\Ì²\æ4—×›¥û(HK!	','',0,'?'),(_binary '„&¹\Ñx\0ƒfv\ãð2Ü¢\Ç','wp-content/plugins/woocommerce-multilingual/locale/woocommerce-multilingual-pl_PL.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a&\Æ\Æ!“pHf}\n\Å`\èG',_binary '\äžöIh›§\ìª±A\Ãl-˜\Ò<_$dv\àx!>\ç6™','',0,'?'),(_binary '„!A\çÉ¼\Ê\é:\Â\×ù*','wp-content/plugins/woocommerce-multilingual/classes/shortcodes/class-wcml-wc-shortcode-product-category.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>s\"ô\ì®\'¯K\ë\ÚðB',_binary 'o\ä b³á‡§› b@³\ëUû”Qùk1\ÔNüP\ËB','',0,'?'),(_binary '„¼WY\ç\Ù>\\T·aOE‹','wp-content/plugins/woocommerce-currency-switcher/js/world-currencies.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o>Ü”\ÌSE)•¹W6d2',_binary '€@’)\ã¿\ç’~\ÄÉ‡eÇšw=\éŸ\ç)\Ü\'…W…¯v÷','',0,'?'),(_binary '„¢X“Â·¥\ã\'•~põD','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-methods-block/attributes.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Þø94Á\Çq—ù\ä‚2\ï¶',_binary '½ˆ8\Íñ¿%·\Êõú»Ýƒ_ðcÅ›o9\Î²I#','',0,'?'),(_binary '„\"\Ä\\…Ný$\×*w-\Ðb','wp-content/themes/flatsome/inc/shortcodes/ux_image.php',0,_binary '\í\Â\ÂÀ&\Z\Ñ9\Þn4‹I;³/',_binary '\í\Â\ÂÀ&\Z\Ñ9\Þn4‹I;³/',_binary '\Ø9ž‘ ÷QŸ’:ø¤R2£còHûCÞ­I\ï» 7bƒ','',0,'?'),(_binary '„#m\Çz€ð¼\Ó\×5ÿ€','wp-content/plugins/woocommerce/i18n/locale-info.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\â\ì=i/Ò³\Ýdq„ø€',_binary 'œ\ÌX¨é¹”Reÿò}Ñ¦ýºŸßˆ–h\Ø\ïaŒ$\à\å$ù','',0,'?'),(_binary '„(Â®\Ã;Àô ©{N\Æe','wp-content/themes/flatsome/inc/shortcodes/lightbox.php',0,_binary '*\àLý¨V\Ç\ïL\ÔEzÀð',_binary '*\àLý¨V\Ç\ïL\ÔEzÀð',_binary 'ø&¹•üÓTŸ¶RÑ¶´œYû#µ\ãˆ.–C•v¯ògF','',0,'?'),(_binary '„)Å©¶\ê…2[¤	\Ó4¨_a','wp-includes/class-walker-category-dropdown.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ô6l\îñ‡\ÇM\'¡\0X]‡',_binary 'ÊŠ8v>¶b¼À\ÒCP ’Ô†\Ï%\'Ã»\è\Z\éiÎª‘','',0,'?'),(_binary '„*O¦\Ôå%ú$À:','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-promo.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸\å3¤N¾3¬C\ÐùI›Qw',_binary '	\ãf6·U\Ú\É\ê\ç\ç*.ˆ\çR#Ÿ\Zª\Ë\Ò\Z³\ë\ân\Ð/¸','',0,'?'),(_binary '„+oõ2ž\á8³EŒ+K%;û','wp-includes/PHPMailer/PHPMailer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k«ˆ\ç\ÑÈ«\Ø%¸%Ä¡Œ',_binary 'W¦¬‹ª\é:õ\ï’\Ë~X€¢\Ý\ëIÂ„\ì4¿»7^\à\ë','',0,'?'),(_binary '„:+[õ¹g¾¦CZ\Ý\Øó’','wp-includes/template-loader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þz\È	Ò¿ö\èÜŒ~\Î\è\Ê',_binary '¿„\'4\Äh ²ä±º˜¥[£‘\Ë\ÙE·ˆ%’¬J©Hú','',0,'?'),(_binary '„=k\ïI…s{Z\nœ@-#','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n³EOý\Æôœ\0	úY5n\Û',_binary 'nTH\Ó\é\ê%.€Õ¼SŠC\Ú\Ü#©?vQ¬\í\Ù\Ñÿ;','',0,'?'),(_binary '„B9\è\è‡G>\ëu G\ß\íkq','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Utilities/CartController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D¢a°x\Ê¹\Éü?Nh',_binary 'O…œ\Õ_\Ã®\Û\â?	\ÎD„¶;›i#½1‰º…^™\"Q','',0,'?'),(_binary '„V_\ÚÁ\Îq\n‚\Zû\í\0û\èÿ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'üñ\×:\Ø8¡²Ù·\ÄIø¢',_binary '\ê\0\Ä\î±x\Zaª‡\ë&*­U<Æ‹¦]\é\ÊyÜ»','',0,'?'),(_binary '„ZR¢B™\r\ÚpTS¶\'','wp-content/plugins/yith-woocommerce-compare/plugin-fw/yit-deactive-plugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜FŸœ±RU\0PžR@‰uz',_binary '	\0øg©\r^«\Çz\ä¥l®\ã.ž0\È^1]üX¬\Ç\áó','',0,'?'),(_binary '„i2O’×µ\Ú+¨s\ÌX.µ','wp-includes/js/jquery/ui/core.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'î‘‚¡9\Î7=œ\Å\ëH¹I˜¾',_binary '\í\ä’M<&úLUC\ÏwŽ€d}\áLL \ÒTgz;ˆ)GU\Ñ\Þ','',0,'?'),(_binary '„x£^;_L\"¾ò‹ xVE','wp-content/plugins/woocommerce/legacy/js/admin/wc-product-import.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o6kM¡\Ça\ÄVA',_binary '—xò«FüJ†P\ãF\Ìu\ÆJR\ÜØ³¸­ñžUóo‰%','',0,'?'),(_binary '„NJr«šAMÖƒ\æ7+(','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/handpicked-products.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uI%ôXsCTÅ”3;\rŒ',_binary 'Õ°4,ò\íýrZžµ¬H\î\Ê#x½HˆzSöJ','',0,'?'),(_binary '„Š:°b³a	\Ãn\Ûv‡|S','wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks/AdditionalPayments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ó–7[­”ûnM¢YzÉ˜',_binary '\ì¯r\Öv\ãCøý_\éú’\Ã+\é´‹o\Ã?^\âF\ï\Ê`9g','',0,'?'),(_binary '„ñ’Ž¥þŽ;–\Â)S¡ýw','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings/blocks/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'È™\Ê_?¬\n™c‰a\âC\0›',_binary '91Â­1*ñX½3\Zÿ€K˜¤©ò\Ê\î.?Ú¹‘=','',0,'?'),(_binary '„’a\É\Ù_<\Ì8JD\äa\ë','wp-content/plugins/ti-woocommerce-wishlist/assets/fonts/tinvwl-webfont.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kv)+•_h_\ÂK$*]¯X<',_binary '1™¿\Î\Ç\â\ÊQ?^HS\Ï\ì\Ñ9z$\Þ\Ð\à¬=KÔ–p','',0,'?'),(_binary '„›@<N¤8iy\ã—»‡›','wp-includes/blocks/separator/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J4\ë¥\ë\å\ï4\ßO<\ë9™þi',_binary ')møh™¯\Ç\Ä-\Ç|[¾\ã&¶c78•I¸T\Ì\\\Ê','',0,'?'),(_binary '„œ‚P»¼\ÝM…Ëˆ=U','wp-content/plugins/wordfence/views/dashboard/status-payment-expiring.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ê¿m€\\m10ø‘f*µ)',_binary '	mö\ÉY\Ü_\á\Ý\ç\Ë\\\'.º¥]¯»»WyW0÷‹0','',0,'?'),(_binary '„¨\Ø°K\ëM/&—Y½ð','wp-content/plugins/ti-woocommerce-wishlist/views/wizard/intro.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O¬—>?ó•üè´‰¥',_binary '\ÞR\Î\Î\È,‚IH2ú\Ça—·œu€ò\"Æž \'mN\Æ	OO\ä','',0,'?'),(_binary '„°Že\Ùž-\n¶yV','wp-includes/sodium_compat/src/Core32/ChaCha20/IetfCtx.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©‰|®Wwšb>E\ÏòyJ',_binary '‚\'À²Ž¯­~À6È\nBŠº\ÂagÂzùÁ\ëd\Ã\ëQ','',0,'?'),(_binary '„²?-ò¯\ìL“XƒbÕ¼’','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/RoutesController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ã8O—\Ìðb>\ÕV\è\Ò-|',_binary '¾và¦§f\í\è~]bu\àü\'Š{Ö‰úô>j—N®¤\ÑMg\Í','',0,'?'),(_binary '„À\Ê\Æ\Ä\ÕPU¡…ac—\Ó','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³YA’ÀG=b\Ñu¡”÷',_binary 'zñ,Í¥²\è\àt	<{@Y{úiyƒ¬s˜Š\Ýc¢(SýL','',0,'?'),(_binary '„\É€ö™´”\"ˆiµ$lÀ','wp-content/plugins/woocommerce/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GGpõ÷\Ý3=	¦«–©ÿ',_binary '\íº\Öeº®\á,¨ðó˜Z**»y\ç6\ÊÁY¼ðÉ†\ÅlÕª.\â','',0,'?'),(_binary '„\Ö9\Çh\äa¼1ws<;\no','wp-content/themes/flatsome/inc/admin/customizer/img/featured-posts-top.svg',0,_binary '\ÔK¶-Í³²\Í\è¾s‰{',_binary '\ÔK¶-Í³²\Í\è¾s‰{',_binary '£6„[™p³‘9*±^\Ó±\épc·\å\ÝT\ëH±À\'lr','',0,'?'),(_binary '„\ÖnvûŸZùYV\ßû\Éþ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'šµx9S—\Ù\Ç\r°u\ß>',_binary ')6°Hû$ð/\×õj2m§Œ\ÑOòŽo\×<4\Øv)ôgiAp','',0,'?'),(_binary '„\Û§©)jþ¤·\Î|[','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/yith-select2-no-wc.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\éÒš\'\Ü\\n<8>ö±Ò ',_binary '¾Æ¨/óúHW|n£ƒ™K\Z\\\ë_\åDóg	ˆ8XJ\Ì','',0,'?'),(_binary '„\çš\Þ\ÓY¨‚:õw°\ÐwŸ','wp-content/plugins/nextend-facebook-connect/admin/images/buttons/default.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬õ\èkÿ—fƒs‚p–ô',_binary 'dn¹\Ö\é\êÔ·>XŒ\"\nü;Mƒ´P{1j\0¨³Š','',0,'?'),(_binary '„ë¾¡,\n`L-0¯\Êùyb\Ê','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/checkout-state/actions.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\é\\\Ãw(·Z¤¥³k\0_q',_binary 'ò/‘–\ÅB\ÐCkO\îzò_\ã¸S=\Ëü‡Y¡‰','',0,'?'),(_binary '„øb\nƒd›ÖŸ\Èôô1\ã\å','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/price-filter/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡÷8—­\æT—ý”lLð$',_binary 'Y\Åv÷µ\ÍõF¿ûQ\èAF\×üM\ê­W²tñz\â€\Ð`','',0,'?'),(_binary '„ù\ç›øn°y.\\F¬\Ò,','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-da_DK.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!f¢36º•€›øQOAq',_binary 'm1\È4óI£Ráž·ˆƒ\Ü\È|~Ó³¾\Õ\è/ŽK;\Üg\ì','',0,'?'),(_binary '„þŠÀÀuU\"\äY`&º','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-table-rate-shipping.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ5\Ð}œ¯2Xù\Ç\Ã\Ìö\Ï',_binary 'þ³ù}s\î\nÀAG@@oÊ›ü<\Z´²bE–sÈ¡\É[\\u ','',0,'?'),(_binary '…Z\Ä\ÛDŸ›l³=¸ì»«','wp-content/plugins/wordfence/views/waf/waf-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°]oFo«O°\"IþR­\Õ',_binary '†L\ÛHµ?-Z(G	öIŸLù½L\×DÎ½\ZŽ’¿£\ïÛ²|','',0,'?'),(_binary '…Žh\nh\ïÛª.Ž~D~0¹','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ²ŸŒ\0fHpg!N¡O\Ý\'',_binary 'ß“¥£2nª÷s¾?­A\Ë\×úš£¨µN\nÿg;','',0,'?'),(_binary '…Œø{\è/è¶’\ÊùZ\Ë','wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ï\ï\Ôeut« :F6!',_binary '\Ç6\ï“\á‡Z•\é­€\Ü\Êç¬\â\È¬\ÆÉ˜U','',0,'?'),(_binary '…&¾~»E³\ß\0¬X¤K','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/ux_hotspot.svg',0,_binary 'i0¿f\å\ÕÀÉ’¨cne',_binary 'i0¿f\å\ÕÀÉ’¨cne',_binary '½å±Ÿó\\<Å¼\ß‘­\ÓJ±\é¢\"¢\Ü	‚ú\È\"¬/_F','',0,'?'),(_binary '…©5ƒŽþS¹ì¼†q','wp-content/themes/flatsome/inc/builder/shortcodes/values/show-hide.php',0,_binary 'Jù@ þL\ÏØ® „(j',_binary 'Jù@ þL\ÏØ® „(j',_binary '8ŠÚ»øšsœ¨ü,U\\>XpÑ»\nuP³!œ—mL5‡\Ë','',0,'?'),(_binary '…K?\Õò‹j£Ee\ZE¡','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/select-mailchimp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[‹ð\r&D\á\è$n5?',_binary ';\ÕOÀò”„VÓ˜òs\Ä5f©\Ìñ¸Ÿ+òûbû\×2\Ó','',0,'?'),(_binary '…\r\Ç;C<€\ê\Ä\Üx\Ô','wp-content/plugins/woocommerce/includes/class-wc-register-wp-admin-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1R!S•Y{ý\\\ï·%(ö.',_binary '‰\å\Ê\ÞIQÀ\"šþ\æjZ¯v@_v\Ý\ÍÐ™žŒ ›€/\â','',0,'?'),(_binary '…!\"ro\ÊÉ¿ø¼M\Ã8\Ø','wp-content/themes/twentynineteen/inc/icon-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ef\ÛYý±¿F]Œz\ä´ó?‘',_binary ')šD¦\Ó7‡\È^\ÕÞž¥§>«\Êµ?}\â\é\Æ4uˆ¶\Ü\ã','',0,'?'),(_binary '…#\âO¥Y®IòZ]_YüHü','wp-content/plugins/nextend-facebook-connect/providers/facebook/facebook-client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘_+3–\0®¬\Ïú\í',_binary 'S¦»¯3—F†T\Û\ÌþôÜ¸S\ßAHŒ`Š[]Àø;','',0,'?'),(_binary '…(ž:V\09¯y“\ÃŸÊ«','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/src/Recommendations/RecommendationsManager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0;­õ¥Z	\â:”0•Ÿ',_binary '\Æ‰‰·–RTA¤ó¤\Zðgn¼]+\íLoŒ—','',0,'?'),(_binary '….}~|Ÿ„Žº\ÖA{s','wp-content/themes/flatsome/inc/admin/customizer/img/product-gallery-vertical.svg',0,_binary '\Ü?²­\×\Í\Õr\àP½4\Æû',_binary '\Ü?²­\×\Í\Õr\àP½4\Æû',_binary '¼o¶óH\é´\Épv³Lü‡\Ýøš\Þ~\Ùwp\ÅqÁ3ô–','',0,'?'),(_binary '…B%v6\ÍI\"Jb½\Ç4Ó¡T','wp-admin/link-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ba[¿ü%\Ù\×q¾~zE\Z„',_binary '!´\àX%°°	’µ\áCñ\ÚQ\Ù+vzð.,4K\è\Õ°(','',0,'?'),(_binary '…BK\Èö@¨~&°^’®8','wp-content/themes/twentynineteen/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \Þf\ë·\×É]¼X c\ÇÔ´',_binary '\Çó{’µº$S:[\ê\ÔJ<g\Å+¢kð›\Ð&jQ¡^Þ¢\Z','',0,'?'),(_binary '…C\Ê|ˆ\ÒX·\æ±n¨N‡Œ','wp-content/plugins/nextend-facebook-connect/admin/images/padlock.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ\Ò\á‹[\Îðð\èò@t ',_binary 'G\0Z@\â7\"]Ã‚)¯6}\é%€\à^úòÒ¸À\ïÄ™','',0,'?'),(_binary '…I“šË *`QÁ<[¢','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-coupon-form/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§\î+\'‚\à‹}\ÆGe1c)',_binary '7Av=|X‡‹’\è˜C¤þCS—ž°[——H\Êƒ¤ü\à','',0,'?'),(_binary '…aBLºP“‹Ÿ\î0\ë\nA','wp-content/themes/flatsome/inc/builder/shortcodes/row.php',0,_binary 'š—˜F©@ð¡\Ì~¿{Ú™',_binary 'š—˜F©@ð¡\Ì~¿{Ú™',_binary 'Ó–û‚œu¼j°\ßK\æ,/Ìœ\"\Î-}k†K[AÁ\á','',0,'?'),(_binary '…b\Ì\áJ¤±ü^+!‚\Øý','wp-content/themes/flatsome/inc/admin/gutenberg/class-gutenberg.php',0,_binary '=9E \É\êœ6Þ»÷ˆ*NC',_binary '=9E \É\êœ6Þ»÷ˆ*NC',_binary 'D%qcö>“Zy\â}E–¤¡Ñ©\\¬f{†2î›•','',0,'?'),(_binary '…t\Û\È^\ÊŒ´\Øvw0i','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings/shared/test/compare-with-wp-version.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':	õ\Þ|f0\Öú\ãE%£',_binary 'R‚S³¯N¢…«Ò©½VnQ;´’Kq8:\Õ©Ð’eŒÀ','',0,'?'),(_binary '…}\áj\ã\Öq“:’_Hr\Ô','wp-content/plugins/woocommerce/includes/class-wc-cart-session.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ¿(\Û>:|q¹mG„>»\Ý',_binary '¢P«qºz›ekòš\É\ÎX¢³2ý€Ö¤A…Ô¶ôj','',0,'?'),(_binary '…~\î‡\Z|@A#M•™H','wp-content/plugins/yith-woocommerce-compare/assets/images/06-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nGö¼²ð\È\Å\å\Ì\îR\ä\0]£',_binary '‘+ù¢Ž¡HT.ôU’Î†XTˆó7l%H&Mr','',0,'?'),(_binary '…‡v”†w7\Zø\Ûp g¶\×','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/icon-wpml-info.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²\Ç\Ü>´Hò\ÕqOø‹g¤',_binary '´jeLùo\Z \ÔÈ©’$>s\Ô\ÈX‹º\Ò\Æ\Ã—','',0,'?'),(_binary '…•\\‡\ß*:\Ú\Ê\ÜE\ã/«','wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-de_DE.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±«·\ÃJ5\ÝN¡©Ù›\Æ$',_binary '=ö„»«7û[_\âø\Å,\äJ9\Ðu­\ä2\Ýwr}>’74ò','',0,'?'),(_binary '…–õ€w.(	µ=\çº\Ú\é','wp-includes/blocks/navigation-link/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':ö\Ó\Ð\Î\Í\ï\èCŽ‰”Y2',_binary '>úHoƒN^Œ<°\éiaG[Ñ›í‹še\â—`{žC','',0,'?'),(_binary '…¡ý\éÚ¬{\ì1p\Ói\×ò','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/reviews/review-list-item/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×Å 0¥n„\ç.Žl\Zk',_binary '„=W?õvi\'ñº£Á·\Õ\Ü¾šªCž\é\Ø\0\nm:3','',0,'?'),(_binary '…¦\í¼ýI6­«\ÔFñ','wp-includes/blocks/rss/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\Õ\íú½™\0!!i¥\ë¡',_binary 'žuùƒ\r\Î>u`ü37(\ÏF½^ø \à)L}\Èÿ(\ã\"l','',0,'?'),(_binary '…¹>ÁA\äB\Ç7\åSz!ˆe','wp-admin/includes/export.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž\Þ\åH?³½•iúŽVJ«Å°',_binary '€^\ÖšAGx˜öþˆ§™z\Ü¿<œI¸“K=¥\ËH','',0,'?'),(_binary '…¼sdg\åœ[\ã+','wp-content/plugins/woocommerce/templates/single-product/up-sells.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ºñ’Aò\rÎ‘!&²:',_binary '>«]»;[y%\ÙEñ\Z\"š«¸-¦44\Ý°vŒg/¹^4','',0,'?'),(_binary '…¿.IL$½1Z˜!','wp-content/plugins/woocommerce-multilingual/templates/settings-ui.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\Î\ê&H:!r(ñ¡~\Z',_binary 'G¦øþB\Èe´rÿ\ÒAc\Ãú\ÞõÃ-µü†_NC\Ê\0ÿ','',0,'?'),(_binary '…À\Ö.Â³ŠD\Í`Ê–ƒ<L','wp-content/themes/flatsome/assets/img/payment-icons/icon-paysafe.svg.php',0,_binary 'NM®}^Kˆ,/],*;',_binary 'NM®}^Kˆ,/],*;',_binary 'ûŽ›ô\Ó\Â3b\Õ\ßk§ZŠ‹XWþ\æ\Å\Ñ0\Í\ï\Ì\Ô×†\Ê','',0,'?'),(_binary '…\Â\í_\âûR`e`l²û.c','wp-content/themes/flatsome/inc/builder/filters.php',0,_binary '\Î@õq\\ƒ}±«§—[õ',_binary '\Î@õq\\ƒ}±«§—[õ',_binary 'þ[\ËT\ÅnŸEjd\Ý(²$:!Áh\ÔÎ\0›s\è><','',0,'?'),(_binary '…\Ï2P&ø“zZ¥.›\äÛ','wp-includes/blocks/term-description.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»\å™s0QšŠ\Ö!/—u',_binary 'h»\éƒyaG\çJqnU¬0\ë¤\ç$\Ô4v0´û0ö¤€','',0,'?'),(_binary '…\Û\0	9fr=.*\0\ïù','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/billing.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q—\ãzq¡\çš_°¨vˆ',_binary '”‡5©\ãGx\Ògœ€þi¶«)«ù\Ãrq¥\Ú\Ù\é¶Aº','',0,'?'),(_binary '…\â<”\Ü.Œžùu]©ý±9û','wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/webfontloader.js',0,_binary '~(“\ïT*¥\Ç }C‹ú‡\Ø',_binary '~(“\ïT*¥\Ç }C‹ú‡\Ø',_binary '9±Ž\ëx#¤­B\Õÿ‡!\ÈE\n\Z|²šj!ˆ¼?«û\É','',0,'?'),(_binary '…\ì|0¹¯\ÒO\ì+˜]lUõ','wp-includes/js/dist/a11y.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p*H\Üw«Ý¥ŽOjt~\ã	',_binary 'nFý€nþ+cZ^k,ùê² @›(\'\ß\ã}4~\í\Òî†‘','',0,'?'),(_binary '…í®¼G›w¬”0\Ä0û£','wp-content/plugins/woocommerce/src/Admin/API/OnboardingFreeExtensions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ž©:\ÄÆ„\é\ê\Ò\Õk Ú³dº',_binary '$—§£ïœ M¶G¨t÷¹½î¬°iGgû		s','',0,'?'),(_binary '…\íø-#Æ—ÂŽ\Òù\ÈJS','wp-content/plugins/woocommerce/assets/images/shippingillustration.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M #£pŽ=·´“',_binary 'fØ³€®w»øJt3\ëXC~ów¿\"Ða\×o\Ùc9\n','',0,'?'),(_binary '…òW\'\Ó\Ï\0­h[2°z\'G\r','wp-content/plugins/nextend-facebook-connect/admin/images/facebook/white.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X¢úm\ãª\ÄSG\Ê\ífe@úµ',_binary 'Bf\à\é4¨M—Y³~š¾š@¾„g¥„ò}×·Jò:†','',0,'?'),(_binary '…ý›T\×ì–‘µ:t[¦\ß','wp-includes/Requests/Exception/HTTP/410.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\ç$¶-4¶3RžÛ¢´U\â',_binary '—¥9†f/3MM;#GÚªWO&’tSûO\Z±­ÀÆ˜ò','',0,'?'),(_binary '…þY,\ÉÔ•§\ï\Å\Öf\Ð','wp-content/themes/flatsome/inc/builder/core/server/src/Application.php',0,_binary 'Ÿ\Ïø\ïÅ™¿;\ç¯À–}÷±',_binary 'Ÿ\Ïø\ïÅ™¿;\ç¯À–}÷±',_binary '\Ì9Ëª\ÓpžP¾°\á\ï\ÆY‚›\è\Z\n{Z\ÓB´jr\Ì	','',0,'?'),(_binary '†Ï•\"¨)r\áó”','wp-content/themes/flatsome/template-parts/posts/partials/entry-header.php',0,_binary ' 8h‘ƒ‘{uF‚5%Q\Õ',_binary ' 8h‘ƒ‘{uF‚5%Q\Õ',_binary '\ê7\ÆJNôUzÉ…\à\\ˆ|\ÅJ!0y\Â¼1v\æ/\Ö!µ','',0,'?'),(_binary '†K4\ÞR¨\ì÷¯\0¬>u)','wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-data-store.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Õ\ÐÀ˜pG ›pBF\Þ\Ì',_binary '›e\nR¾bYO\"0\ì¤\éÛ‘\Ù\'Š?Ÿ	^ÖŠ™ ','',0,'?'),(_binary '†Á\ãªÙ–™¤\íýˆ¹)º8','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-image/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'viMŸ/\É\×&,,¤ÖŸ\Ë4',_binary 'þ~ò4…jÊƒ—j^c[òYZï«\í9*þ¿E¹~¨‹ó','',0,'?'),(_binary '†k^@C\Ä*7¼\íô½','wp-content/plugins/yith-woocommerce-wishlist/includes/class-yith-wcwl-cron.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ûû‰u\ÏÓ“v)s·tr \Ô',_binary '5±º÷	\×9\n¢;\'$7L¨M/h­_Fi\Ý\Âf¸\Éù','',0,'?'),(_binary '†¿=\Ó\È\ïg{ª\å','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-discount/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(ŒÄ«[k\×m8\ç±J\Þ\à(',_binary 'lKŒÑŒV4A{©\Ý¾A^~‰2—XE\çý}–¤\å\Å','',0,'?'),(_binary '†)À\Ò\âYh¨.ò;¼\èÅ¡','wp-includes/Requests/Exception/HTTP/412.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ë©\Zcu\Î	L\Ññ\Üt\Öp',_binary 'S÷A•4c\\D\Ò56-Š\Í#¼¾d*³Ÿ\ÒÒ½Ó¾Rýþ†','',0,'?'),(_binary '†/\Ì\ãÂºm™\Õ3‹\Ê','wp-includes/blocks/post-comments/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\åŠ¶r(ðØŒ\èêž™\ï\ç\È',_binary 'o7\\¢j¢\ÂUB/\í÷O©¿\î\é\î…4ûD`0ñ\Ø`/E','',0,'?'),(_binary '†1\äˆeUüMVý¸^š™','wp-admin/includes/misc.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô­±~a£	\èh`¦Bh',_binary '\Ñ;ñt¨Ï©\"6\çöŠ@\ç7);í¼†#\îú$-k¹','',0,'?'),(_binary '†5üd…4\ÛN°ž\"¶ d†','wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-helper.php',0,_binary 'É¥KB>­\Û9\n\Ä0E‚¦A',_binary 'É¥KB>­\Û9\n\Ä0E‚¦A',_binary '{cg‘L¦(J\ÄRk”i4uª„\ìkC\ëú„¿\ÂÙš\n','',0,'?'),(_binary '†>v¶\røqTvLÀ{˜\äó','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-title-block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-ˆ%dÁ\Óf\Í(§7r\r \å',_binary '~\é¼üH@¸\ç÷	ü% tŸH#Î¢„\rN›\Ý\Õ.šü','',0,'?'),(_binary '†F_q¡\Ã\ÈCŠF!o4p·—','wp-content/plugins/wordfence/views/scanner/scan-starter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1õ\ìxø¦ýÀh3\\',_binary '¦\ÑU\Ø~–žAVkr\ìº%R’x$p¨«Z1°\"\ÒU¤','',0,'?'),(_binary '†PŽ4Õ“Q\Í)zSƒ¬\î','wp-content/themes/twentytwentyone/assets/sass/04-elements/forms.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']ô}ƒ¯¤ÁQ=;\Þ>\r',_binary '*+þ†\ÊÂ\0%Gð«;\í_dE}u\ã-œ\é4w³\"·','',0,'?'),(_binary '†Qzc`JÅ{úR¾`\\','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.stack.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ý\Þ\Ð–\äO\0°¸Á%',_binary '‹(a\â$¿0Û†Áy¿\Z\îrüA‰¨Ó­ô\Å\ávC\\\'','',0,'?'),(_binary '†UŠ²¡\Öùh¤5µš(õ\Z','wp-content/plugins/contact-form-7/modules/stripe/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\ê{\ì˜8<\Ï&±!xÿ#\Ë\'',_binary '¢\åÒ·;2\ë=\íkÓˆ=º?\0i8¾½1qE\ìØ¨z†9q€ü','',0,'?'),(_binary '†X`®\ÛS“mÃ‚\è=IË§!','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-sales-by-product.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W6š‰\\\ÑD\Ø5:›\"ƒ\íƒü',_binary 'ö\Ö\n\ãÎ¶WWö_ZõŒ‘³|b\ÎöÃ\ße“‚\å','',0,'?'),(_binary '†Yže•&$b½7«\"+A\Ù','wp-content/plugins/woocommerce-multilingual/inc/template-classes/setup/class-wcml-setup-multi-currency-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W£úÈ¥.sÎ %!O\'\\',_binary 'v\ä–`\ïm]òùù„d\Ôys„ |\0l€^_¡=ƒ^÷}+','',0,'?'),(_binary '†a@xd1a\'\äþ·t ','wp-content/plugins/woocommerce/assets/client/admin/components/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´Ž¶\r½f’)—\æØ£\Ô\Ø',_binary '{\ÎeMZ@±µ ùB\Ü\n¿¦R\ãÁY\Ð\å´>\n\îM¹½H','',0,'?'),(_binary '†wG®W¾Æš\îà«­z','wp-content/plugins/woocommerce/includes/admin/settings/views/html-admin-page-shipping-zone-methods.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿õrŠqœ5_(k†¥_+ý',_binary '=¯\ï\Òiš¦\ÎòD< ñI¼\Ý¸Y\ë¿\É\Ë\é','',0,'?'),(_binary '†~j\äð¡ƒÁ&Ÿ\Ê[Ap®','wp-content/plugins/woocommerce/includes/react-admin/connect-existing-pages.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r$!#\ã”f x\'.;:',_binary 'ö\Ï6ªjº®¿\Ñ\á\'¥°w\Ò>ñ”…ÿólöYc\Üü	p\Ï9','',0,'?'),(_binary '†+…\êIü\á\É\ï:\nb','wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/styles/style-1/styles.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'öÑ…]„B¸\Û5°T`“z',_binary '\ÂÀ}‰,¨V»€ðPa}<\ÂÂ³†½£ü®½.4\r\é\ä{®‡:','',0,'?'),(_binary '†^l.YºR‘w™/k\à¿\Ã','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h†\à!\ÓfÅªe%\ÒQ\ì\ë',_binary '²\æXT¨\ï\ãQ½¥±ýms™`œ®DPˆÃ§,|\ì—ì«ºd8','',0,'?'),(_binary '††emÀV¨ •U\Ì','wp-content/plugins/woocommerce/templates/auth/form-login.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<‚\Ã\å\è\Ä\Z¬_-öq¡',_binary '@v³“w’\î‚†ýY½“\Ò\Ò%6zt—EŒB\\þ¾U»\'','',0,'?'),(_binary '†‹œ÷)\ÆD@#î—š<Zˆ','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/discover.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…\Ã\ß\ÜQBÁXp¸£U?z',_binary 'ZúôK\è\Ìô\ÅN\Ä<_ˆ\Ë\rh3Ý§\áF\Ç¼ÕŠÅ•D','',0,'?'),(_binary '†‹\"›¥Š\ÑØ¿\Zle\'jŒy','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-sales-by-date.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\Êu“:\ë:Mn•\ã|',_binary '\n\à¹1Aýq‰\å\Ãtÿ†‡Šˆ\á‰(]N-³¥‚~6Q','',0,'?'),(_binary '†ŒˆWM\Ù‹A¥iK*','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yit-plugin-panel.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›T4—j\Ó\Z=\íþq\"\nw',_binary 'öº,)¹\Õz\ßAr\æL‹dÆ²¿©yý\Æ{ÆH ”','',0,'?'),(_binary '†“\æFÕ³\ÝD~Ö«\çCÊ½û','wp-includes/css/dist/edit-post/classic.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Á\âðKükÁL\át\Þ\à±',_binary 'º\ì–<¿„\Ø)L!†Ãj¸]¯¦R±!«)µ·K\å$','',0,'?'),(_binary '†œ\ëše®	5¤4|`dã¥­','wp-content/plugins/woocommerce/templates/emails/plain/customer-invoice.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨öD?uºù¤\È\ÚSˆØŠ»',_binary '\Ý\îBoõ.S\îî¨™ùòF\ëôh5\È= \Ö\Ê+3Lý­','',0,'?'),(_binary '†Ÿ\0¦>#Š\Ñ›\á­z(','wp-includes/bookmark.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';.h\Ãó‘œª;tA¸•”\ìk',_binary '@!9”Yc*\Ã\Õ<úŽ:ˆ³¾¹ï­•rw\Å×©D¦','',0,'?'),(_binary '†¡\ÄP\ß\â\é¢\ÊÝý9\Ò&','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/shipping-calculator/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ä‚µmã”€Ž»Ç¡öØ',_binary 'S\×v\íñ\ÛG(_r\\5ÙlÀY³÷\Ý\ç\ÆüßJ\áÃ\ê','',0,'?'),(_binary '†°Nl\ãKI\ÎÖ¨ \Ùr¾','wp-content/plugins/woocommerce/assets/images/wcpayments-icon-secure.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ëü\Ý\Ä\æ\É\ÊwðËœBf\ÎE',_binary 'i‰˜\ÂC3mx\Ö;B°T6\ì1‡&(˜¨¬­R\É','',0,'?'),(_binary '†°PÜ±«÷Ô„?³)qœ','wp-content/plugins/woocommerce/assets/js/admin/settings-views-html-settings-tax.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÐE\ÉúýQfœQ>«ãˆ¸',_binary '5\Û\ì\ïÁ¨!)‘\ËH±s‚\ÍKz\Ê\é\Í\Æ\×lì‡\í','',0,'?'),(_binary '†³¬º\Ã\ê‚\â\ë}•\Í','wp-admin/media-upload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ôq¤WÝˆ\\w&ŒcŠP¿',_binary '‡°j®+™ö]-\ÄHOû´žgÄ©>\"š\ÈOö,','',0,'?'),(_binary '†³‘\ÒeaW\Âü8ŽÁˆ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ProductSchema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rü\Ënq6fB\É\È<\ÔNI',_binary '\Ê@r£¹\rl-ƒªo‡\Ù\Èû\è)ló…\0µK|—','',0,'?'),(_binary '†·—º¼i0\"Ñ›;òBQ\n','wp-content/plugins/ti-woocommerce-wishlist/includes/api/frontend.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't›S\Ãhqõ£jö~\Âe1k',_binary '1*`\ÖY³»øpõ\ß\Ù×¢\ÒM7\ßð\çNJÁ—‘„ð','',0,'?'),(_binary '†\Ë\ÍõS‹I`¶\èŽ[`','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-block/slotfills.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼ÿŒ*£´µ\'_1& Á',_binary 'b\ÚK@¨}ž\Î<\ÂL[=\Ñ-\ÙUªû?â¨šN\n\Þ9?e','',0,'?'),(_binary '†\æý¢}«z²@qþ‰ITcù','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/site-key/class-otgs-installer-fetch-subscription.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '· \á(¨\ËWA¹@#^œU\Z',_binary 'Ùº\ãT2ÿ¾”3ó\Í\Ð|g*t†\â\â0¿#Œ-†Ÿ#w','',0,'?'),(_binary '†\ç\à‹+(¿\Û\ç\É\Â+¶Z=','wp-content/themes/flatsome/inc/admin/customizer/img/badge-circle.svg',0,_binary '\Âk\Ô\Ìq¹a¡øCt',_binary '\Âk\Ô\Ìq¹a¡øCt',_binary 'ô·¸JR€‡ð\Þó+L:…\n0—<T®1•:\Î\Þa‹','',0,'?'),(_binary '†\éoZBè•°Ôž;—\Ù','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/fonts/font-awesome/fontawesome-webfont.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯z\å©\î\Õø¸\æ˜ 6‡>',_binary '­\ß@â£‚©L\ëEQññ‰(ieº–q[N|&°\ãùÃ÷','',0,'?'),(_binary '†\ìƒ@ø¤\'½y¦¸\Þq\Ö','wp-includes/blocks/query-pagination/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z(\Ü\ÔN\"Ì¹W\î\ì¬\\\Ö',_binary '?0\à3\ì\ç V\í]†’Žm\Õ}\rvþ\Ó$šV™ˆF—','',0,'?'),(_binary '†ñ‚kVþ\Þ7­“£2\Ò+','wp-includes/blocks/heading/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž.:¢\ÇjK…=V\Â\"O^',_binary '6\ã\á*\Ðc\ç,l\ë\çm@ñ&\Ï.oa„Ä‹{\"n\0\Úø÷¦Åœ','',0,'?'),(_binary '†öÏ•Ð¹gG\ÚC>\á€\Ò','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/payment-method-icons/common-icons.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Bp¿sAª™\ï’&2M³‘¾',_binary '\×*¶\ï»œ¿Î¯ /#¨0G\Ò\rm:›¶\ÛFIÓ™9','',0,'?'),(_binary '†ù\ÕÌ•„\0Í¾ª™\Ï@y','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/TaoInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷PS\êõ5§gzgI\æ-²',_binary 'gè€þ\Ô\0Á©\×h<\Ä&”M0À\Æiu^ºÌ¸Lð_','',0,'?'),(_binary '‡~\ÂDû3\Z¹\0¥=\Î','wp-content/plugins/woocommerce/src/Admin/API/Taxes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡d=yš(\ÉU[½·qC',_binary 'û\n9\Û/Ÿ\Â\r®¥\È\Öò[T(¤üY¡g\ÔB\ê\Ç<Å–','',0,'?'),(_binary '‡¸„‰;\ÛÓ’\ä\0k','wp-content/themes/flatsome/inc/admin/customizer/img/layout-right-full.svg',0,_binary '>š2¢_•·Â¶š­ax)ˆ',_binary '>š2¢_•·Â¶š­ax)ˆ',_binary '§]qbT[¯\ÊZ¨±\äñp- \ÒN¦€`¹*L7I\Ó','',0,'?'),(_binary '‡\nk\áŽM¢\nòÉ†À )´\Ò','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/NavigationNudge.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£Qø\Ê\îV\ë6Ÿ\ÚN\Óqó',_binary '\Ë\\\ÓtžQ}ò\ïL+wm\ÏlLT\Ó\ÏG®M\Ý|!8ŸQ','',0,'?'),(_binary '‡™º¼ª›_¿©+\Ó\Î\È\ï\ï','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-address-block/attributes.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª§‰\ãôq&n>.;¸§œ',_binary '©{”ü9”I1*1½;k\Õ¦¯”\î\Îe}\Ô»b®\ÜQ§›\ß','',0,'?'),(_binary '‡²A@=Q6B7Oel1','wp-content/plugins/woocommerce/legacy/js/admin/wc-shipping-zones.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\ëûÚ«°ø+S««Î£\ç',_binary '\rBAŽ5Öœ\È5§‹­†\à1\'(\ã\Ê1v%h','',0,'?'),(_binary '‡\ÍJ”H6½KF‰\ìþp~³','wp-includes/blocks/social-link/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tö¬\Í\ì¼Á_½)~a­%',_binary 'Xª\Æ\ÓÃ§}u®\Æ%†3+ahxŽm[ pŠ†_H\ßÿ','',0,'?'),(_binary '‡òP“wª©0\âhÿ9','wp-includes/js/tinymce/plugins/fullscreen/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y›»®þ\Ã2Ä°\rm}%¡À',_binary '3\Ë\î].\ÐBCBeýôÊ¢\ÒS\áˆ( ?ÀZ{\ï“\Éðºò','',0,'?'),(_binary '‡/ø\Ä\â\Ç!¹d÷._ð\ê\Ñ','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/sidebars.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/žeJ<2É˜{\Ë\æh\Ü',_binary '§§TJ¥œÅ¥bNûözò¦2ˆ\Æ<JŠAl0u¥Ÿ\"e\Ú]ˆ','',0,'?'),(_binary '‡5½g~o•CfÓ†x\'+','wp-content/themes/flatsome/woocommerce/content-product-flipbook.php',0,_binary '\Ñ^ú•0°%Ä‚8\áfNF’',_binary '\Ñ^ú•0°%Ä‚8\áfNF’',_binary 'Ki¤\âµX\'¦¾n\ròg&E\Â\èkl=³-ufA{?y','',0,'?'),(_binary '‡;jŒ§|ý:1/\Ç\æ£','wp-admin/site-health-info.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§•\Å@®¶Kõói(z\é',_binary '\Ì}b•£\\]LÒ¢’=nƒšs\Ç\Ú\Z±²\åZ\ß\Ê;','',0,'?'),(_binary '‡>vÈ‰U\ÒB`°\ìò¤\Ï','wp-content/themes/flatsome/inc/builder/shortcodes/values/align-h.php',0,_binary '\Ò7Dù\ÓdVbc;—Q=\Ú',_binary '\Ò7Dù\ÓdVbc;—Q=\Ú',_binary 'oR\Ç3~sÛ‚Mô,ZbóE¸H²ro\Ês†€K@$¿\ä0\\','',0,'?'),(_binary '‡B y\Öw†+³\à\Ö|t«\Ë','wp-includes/class-wp-http-requests-response.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÚO»TP^•ó—rbb!d\Ü',_binary '€\Z\Þ\Î\Þ[Ð©Ç©©{S.Ws:Œœ\Üe\×®\"#z[N','',0,'?'),(_binary '‡J¼&_#¹ñ3S\Ôq ­','wp-admin/images/spinner-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1ý™\æ2†^#\æ8µô',_binary ' \ï¯#–Ë’\Ì=$c©§6À\Þ\ä\Ò\ß	B™46','',0,'?'),(_binary '‡V+@ÿ0ñüp¸Éhi','wp-includes/rest-api/class-wp-rest-response.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®fÀ0ð•­¶ñ©òSy?ª',_binary '\×fG]< *\Ç:m/K<-C\Ä~´5\Ù%ŽSw','',0,'?'),(_binary '‡Z\Ù)_„\Úw\ä\'$¥Xù','wp-includes/class-wp-block-parser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\ê}öC‹1gGr*\Þ \ç7',_binary '&t\ß]»Y`¤ì¿¨\å9}Š\Ä\ëÜ‡W¨•²-','',0,'?'),(_binary '‡\\,$¸\Ö\áJn\Î2»q \Ì','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/OutputFormat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\Çw»>ÿ§§\âk\á\ÅgA;',_binary '_B…\Âú\ÜùE¥«µ\ÌF\'ÿ\ÖÁd\Ò\â±;žµk\Ä','',0,'?'),(_binary '‡^SVt¤²ƒ‰\0#{ú-\ï','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/bootstrap/icon-256x256.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$±ˆ\Ä>WqÏ¢Ï–G\é ',_binary 'H™3Ig\'VA4\ÝB¾—t\Þ:\ï?ôb7\é\Å\\ üXË£','',0,'?'),(_binary '‡^Sx_?u‹G\ÊD©\ä\ë','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/H.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”\ÏH\Ùd9<CðË¤«š\Ñbl',_binary 'K\Ï.Bo¬°\ß\Øà£¸ƒvüˆb˜%…˜\à\ÕS~1ùK\à\Ã','',0,'?'),(_binary '‡`\È\ê\Ú\Ï\Û\çGG?\ä\Ørx','wp-content/plugins/woocommerce/includes/legacy/api/class-wc-rest-legacy-products-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A!§vÄ©)†WŸþUü',_binary 'g83˜]‘ª™Lœee_\á`>•\ál\áù\ÊúI`ù\âsU','',0,'?'),(_binary '‡b~5\Ãaùš I@)*ñ','wp-includes/class-wp-site.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²šeoù±C\ËIô7#Ÿ\nŒ‹',_binary '-µh¤…ÿÊ ^\ãF\Ã0?—0\n•%s\ÏibV\\ôXº','',0,'?'),(_binary '‡fG<®@áŸNû\çµ-','wp-admin/includes/class-wp-privacy-requests-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V?õ76™\É\ÑñÒ¿¯¾',_binary '~:88½S*¢.«\î\È\r©n—ŸhbDe\îý\Ä+K\0','',0,'?'),(_binary '‡f¥\×\Åùc\Ó\ì”\ß2Á™»','wp-content/plugins/woocommerce-multilingual/templates/setup/store-pages.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\álKj»\Ó~‚bX#%^\Ê\Þ',_binary '\'KM\Ù\ï’t®ldj‡¥²ZÔ¾\å \ìQ\Ø*\"\Å-Ôª;›','',0,'?'),(_binary '‡x9p\ã2¬\Åðw\ã¸\ÄB','wp-includes/ms-network.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷¿Ž\çxÿ¿¿ˆÁ3.\æš',_binary 'Ê¸]ST\Ý\ßý\ÑySo$µVgvü\"-j!QGK\Õ¾ù','',0,'?'),(_binary '‡}WØ¤&7%Œn7…','wp-content/themes/flatsome/inc/builder/core/server/src/Ajax/AjaxManager.php',0,_binary 'C¸Ð…½zÐ™$“\n\è\Ü\ÇË®',_binary 'C¸Ð…½zÐ™$“\n\è\Ü\ÇË®',_binary '\ãt\ZYòa¸9L<£hC‚m¾Sc)\Ö0kü.','',0,'?'),(_binary '‡‰\åyiö	ò…ü\Ó÷®Ã§»','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/sleep.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é6¼›¬!™qWª\âpƒ',_binary '\Ï\Ø“°\âS‰\ç\Í0ý¯¨±AQH‚ø…Q\ì\ÍDw¢\É\ß','',0,'?'),(_binary '‡Ž\\:\â\ÃÚˆ\Õ\ê)g,\\','wp-includes/images/smilies/icon_twisted.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L¾\×v[?\å\é+*8ž\×;\É÷',_binary 'V\åHhK…·\ÚÀ­°\n\Þ\Ç\êp©ú÷†\ß;.¢&/E…','',0,'?'),(_binary '‡’ê„¦e\Zj~Syrju','wp-content/plugins/woocommerce/includes/gateways/cheque/class-wc-gateway-cheque.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ð‚ßlŒ¥j¦M\'\àõb',_binary '\Þ`\Õ~\ÓnpUÜ¢\Ï\îIC¥0\Ø3\\£«\ã\"›^','',0,'?'),(_binary '‡—e\Ø\Þ-osÅ•;ó/','wp-content/themes/twentynineteen/style-editor-customizer.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V†{\âC\è›>4êº¾£',_binary '\íz7ºŒ4\Þ|X1ùû\Ñ\Î#·•{/\å²Yio•(','',0,'?'),(_binary '‡œG+ÞˆÉ‰\ïW´†\á{@','wp-content/themes/flatsome/assets/js/admin/customizer-admin.asset.php',0,_binary 'QK3\à\Å~\åu\Ô÷¥*SC7',_binary 'QK3\à\Å~\åu\Ô÷¥*SC7',_binary '\Ô$\ä#\íO $KzI£pˆVC`’VúeüPfjŠ-\Ç','',0,'?'),(_binary '‡ó\ß(C5Þ¥B¶\é¶-|','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library/mini-cart.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÛPF/\î\å\à³wÔ’??0ˆ',_binary '>\Êd\é–zT5\'=À¢#vÖ†\ÖZÀ{E+Å˜\Ç\\/\æ	','',0,'?'),(_binary '‡ž!¿\ÞEª©S7x–ƒ\È\æ','wp-content/wflogs/rules.php',0,_binary '3DñBý™E¿\áÿ<ô',_binary '3DñBý™E¿\áÿ<ô',_binary '\ï0…b¸\\\r\àüž3\á7u4Z=º„4b¾M‘\Ñ+ó.','',0,'?'),(_binary '‡Ÿ‰û¦¯>2\\o†)¬·\×','wp-includes/Requests/Exception/HTTP/Unknown.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"Å…\'\Ék?À:~¦\ä·\è',_binary '@¨\ëþ\â3\Ù#\ZÐ¶/*t\r\Î\Û6<X\ïû\rˆIF','',0,'?'),(_binary '‡¢¨3v´U€\Z3˜P\Å^O ','wp-admin/css/widgets-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Æò­±\êiY\Ã\rG\\',_binary '’e99K5\È÷bõYzŸ.D\ê\Íh.•)\Û\'93òOÁx','',0,'?'),(_binary '‡«L Uÿ\ÕÀ¹f¯\àu\â<','wp-admin/images/icons32-vs.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\ÖP*\ç\Óñ{>v¥±Uf',_binary '–°\Úø?Uü˜z¾\ÔP\\™\Â@†`¢8g;\r®³Á–E','',0,'?'),(_binary '‡¯Ÿy³\rô¬0zŽuÆ¼X','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ð\ÜðyŒn\ÙòxO\Þ.~°O',_binary '\r§\'\êS€\æT+«\Ç\Æôt=\È\éIœ°3ñµƒE\Î9\Û','',0,'?'),(_binary '‡²P\Ò÷\Å¾#\î\Îæ½§¡','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/src/js/domPurify/app.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\âÂˆTd{\à\ã\êM#',_binary 'MØ¼€\n\×Z³é½°µ¾·¼?\ßi]\ÝOx\nw‹\×\Ö','',0,'?'),(_binary '‡´A!{g\'rN•.ÀÁ™Ÿ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/frontend-block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒÅ¼	]\è\Æ|+=\æ\Ôò',_binary 'Œ“\æ»Th\æ\Ó\æM³t7|	:ºp^¯\éO™d-’iD','',0,'?'),(_binary '‡ºvˆŒ\"(“\ÊoGµ`\Ó','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h†\à!\ÓfÅªe%\ÒQ\ì\ë',_binary '²\æXT¨\ï\ãQ½¥±ýms™`œ®DPˆÃ§,|\ì—ì«ºd8','',0,'?'),(_binary '‡¼k{œIò\æz©µ\r\Æ\Î\Þn','wp-content/themes/flatsome/template-parts/pages/page-title-sub-nav.php',0,_binary 'R¨F[X¦\ï$\ç„\n4',_binary 'R¨F[X¦\ï$\ç„\n4',_binary '‹„^µ¦‘€­ª8\\ZD‚V\ÐJ–À[?–\Õ.\×H[m','',0,'?'),(_binary '‡\Â\Ùo\Ôw¬\Û\åÐŽ\×696I','wp-includes/random_compat/cast_to_int.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ý!²>†ž§=I™‘‚O',_binary 'p>2¶\é\Ãûx«ö”tn\è˜tq\Çš\ïº\ß\Æ\Þ©\àb','',0,'?'),(_binary '‡Ö­¨`{B\Û5½_»\È','wp-content/plugins/woocommerce/vendor/symfony/polyfill-php80/bootstrap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡‚ø\ÖXu¿\ë¨99±\Ô6',_binary 'ú\ë\Ü%\Ú)½\Ü[ðCJMk†¼NQki(\èˆúDHÚ©','',0,'?'),(_binary '‡\Ú\Ù\rƒxJz\ä\Íw;\r¢','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/payment-methods/constants.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„\Í1Cq^ \à“+=7úO',_binary '\ÈU~\ê\Ê\ry\á€tƒ™„\Ø1±O,{d4\\n›','',0,'?'),(_binary '‡\ë\"­+\ä2~6^k\Þ~\æµ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/all-products-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ü¯¿A÷˜…4wŽ\â\è–i',_binary 'È‰À“ûºgÁ*³V7÷­C§\í\ÅÎ¶ñŠ\\¢³@x9–\â','',0,'?'),(_binary '‡\íñ¢¤ªÚ»\Ô\Õd—Z¯H','wp-content/plugins/woocommerce/assets/js/zoom/jquery.zoom.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fV\0\r^@]ó	=\ìvbV\Â',_binary '0±PE¨“‹TiWßŸ\'\ä\\‰’²8\Æÿ©¥H\ny]Q','',0,'?'),(_binary '‡ûU·dö\ÔB¡#Æ€ƒ²¹@','wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_InvalidActionException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ\Ø((ž>ºpu—!*',_binary '\ß/5©aXñD0;=sM6i\ï\"pý·su½ýA*“#j','',0,'?'),(_binary 'ˆU°»5¦\ë\"«´Fh±\Ø','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/middleware/store-api-nonce.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{k´FI=B\nòZˆ2<¼',_binary '\Ô“\é\Ì^zó»\ÑR\ìi®\ä´H+ó·\ÙIq$','',0,'?'),(_binary 'ˆ¡0û¢{f\æHf(\ìV<','wp-content/plugins/woocommerce/templates/emails/plain/admin-cancelled-order.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷‡V<\Új Ae» ó\Çq\è¦',_binary '&\ë2d\n°&öSCÁO8\É¥—ba­.ö \åT´','',0,'?'),(_binary 'ˆ\Æ-6–,T¼\é—ö¹T\Ù','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/yit-upgrade-to-pro.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ‹m¦\ãÐ¤#…£Ÿ“„',_binary '\Ï\ß\í\ÕU®«\ã#—›|bxx›mf!h\æ;6W	«\".\åòš','',0,'?'),(_binary 'ˆZ\Î\ÔQ+x\Çÿr¶\ß0½\î','wp-includes/blocks/media-text/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Sþó°!@ÅÉµB’\×)',_binary '\×1…\ÞÓ²\"Vx\á\ÐA]R+.8‹võ‚U3|','',0,'?'),(_binary 'ˆ–[Bñ†^\Æ\Ó	Zª1£','wp-content/themes/twentynineteen/template-parts/content/content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\Õ?¤ø±Y*…r%‘¹u',_binary '¦?Zt-Á(D˜¼~ý¦‚$mÍ¼Œwj\îx$\nú^E÷','',0,'?'),(_binary 'ˆ¨!c®+\äú\Èý¿\Ã\ì\Õ','wp-content/themes/flatsome/inc/shortcodes/ux_sidebar.php',0,_binary ':÷F^M\r\Ò÷öÈ¨Ì„­\ã',_binary ':÷F^M\r\Ò÷öÈ¨Ì„­\ã',_binary '\ÏH~s7S·\n4SiðQÌ¾šo¯\ÂpùÿM\×}V6\Ã','',0,'?'),(_binary 'ˆž\ËÄ·\î\Þó\ÈÒ¹hÚ€','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/badge-bubble.svg',0,_binary 'T\Þ]…~´+IÈž~L8|1û',_binary 'T\Þ]…~´+IÈž~L8|1û',_binary 'žôŒ5@5\çu\ÐP\0’Ø‰c\í.\Õ\Ú+™Á¶|\ä+\Ðóx','',0,'?'),(_binary 'ˆ#@]µÕ¸<¬%þ\Æ%','wp-content/plugins/woocommerce/vendor/maxmind-db/reader/ext/tests/002-final.phpt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&N­®­dRV–i,~ð\êh',_binary ':ùªuI~\Ø\×û¶a.[Œ®\ëkPX\ÍKûµÀ°;Fru,','',0,'?'),(_binary 'ˆ¯Iy-‚\n·Å„‘','wp-includes/Requests/Exception/Transport/cURL.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ež—F\È9\êø”ŒQ¦ ',_binary '\Å]\Ðý\Ç\Â0Ö™8ü‘\Êp#ü~†õ\\o±Ó=1³\Õ','',0,'?'),(_binary 'ˆ\" 6A\éø7^\äH­','wp-includes/blocks/cover/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”D\à|\"õ±½e…l­\à',_binary '¢Dð£\Ì¤€núù\Èÿokhºpš\ã\'ç®ƒ\ß\Î','',0,'?'),(_binary 'ˆ\"ø\áÿ\È•\Êô¬†\Ì','wp-content/plugins/nextend-facebook-connect/admin/upgrader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ÉŸ¤|\ìVpœõ\Ë!óG',_binary '§	}Í„žD-SO$-\Ã\Ø^\ÅB m­\ïGK8$”(\\-?“','',0,'?'),(_binary 'ˆ$:SZÜ½©r2^ˆ','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-session.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E9\Üº‚\Øiä¼Ÿ\å\ß$ø',_binary '¤i¶ \0°J\ÏD¡‚\Ö¶5‡\è;Ô4=…`4©\Ìû','',0,'?'),(_binary 'ˆ&\æAa±\×{­¾\Å˜²Oj','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹ZMU{†\Ò\Î%®€´f',_binary '0¹Bµ\Âf’”*	ž3 ™ex«²Ý\0­ýÛ‡µ\æŠ','',0,'?'),(_binary 'ˆ,ûÜ·O°¿”|ü\ë¨Hù','wp-content/plugins/woocommerce/templates/single-product/product-thumbnails.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ã1·jF•_g~HNUo	',_binary '¦œD‘jü\ÏH‘%¹š‹\ïSŒ›K\ê‹5\Æ\Ï#','',0,'?'),(_binary 'ˆ.\êó_F¹žð\\Ÿ´=','wp-content/plugins/woocommerce/includes/tracks/class-wc-site-tracking.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's³ò\í>o˜-/˜¼\0—ô',_binary '­G÷ÈžŽ‘”½}\á¿bŸ\ÄÓ½L\ê1\éBl/;','',0,'?'),(_binary 'ˆ/?=\"781°ø5\ïÞ•[','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/image-top.svg',0,_binary ']%\Ä`\Ê\à¢ô-&p»Ÿi',_binary ']%\Ä`\Ê\à¢ô-&p»Ÿi',_binary '»\n\ïl™’©rÁ»\ÒGU\ÏZM£\ë\ÜlùûY|û]„ÐŽ\Ø','',0,'?'),(_binary 'ˆ0\ïl\íû6eÁn–Š','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/price-slider/test/constrain-range-slider-values.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\Ê0@Ìˆ;¬XCõEõÀ',_binary '£\\,^+û_\È¯ý#N`ƒ]}\0\Ú\Ê\Å\rd\Ëy]û\è','',0,'?'),(_binary 'ˆ5\è\Æ\ÑRËµ{	šCA®•','wp-content/plugins/woocommerce/assets/images/marketing/google.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú÷\r®z%­#tœm—\é`',_binary 'k ½­ñ)µƒeE·ŸZDY\"\r_XicD /³‰¾Iù','',0,'?'),(_binary 'ˆ:=%\Æ\Ì\â¾ù M\ÔÛµ','wp-includes/template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ö\Ë-^{”2\ï`\ÓD<oY',_binary 'í»ª²ji#7\Ï\ï\æRc.8š»ç‹¿ƒnežÆ§9','',0,'?'),(_binary 'ˆ:\Þòy©†3\èS¯x”C','wp-content/plugins/woocommerce/includes/class-wc-session-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J€¶¶ø\ÔtC‚W2”’k»i',_binary '!5©©c.\É\Þ$1ˆžLN\âp±\Ô\ãD´§\Ík‹¸\Þu','',0,'?'),(_binary 'ˆEY#>Œ#³L\â¼FŒØŠ','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-dimensions.php',0,_binary '§.`NN¥b÷ÀùIRŽ\Z',_binary '§.`NN¥b÷ÀùIRŽ\Z',_binary 'ƒ0ñZ6¨-ºo´\Ù´P…\æ\Æ\r\äð7¥4S','',0,'?'),(_binary 'ˆI\Ý{‹?»†rô]¯ 7','wp-admin/images/resize-rtl.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nC%Y\ØfœˆøvµF.z',_binary '@St-]ózº•\'+kŸ·2€\å{\Øj\Ü,\ÊQNš¯~)\Û	>','',0,'?'),(_binary 'ˆU¹º#Z(¤C“\Ôdó¾\é\0','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yit-cpt-unlimited.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ë_%n\å*qa¶+\è\"“',_binary 'AÔŒK\íôó.«Ô—~\"¹¿Š\Ê\Ú\Úz–\Åw>÷‚¢','',0,'?'),(_binary 'ˆ`\åŒ Æ¢«Xv ð{\ä;\Ù','wp-includes/js/dist/edit-post.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜m9Šu\×\Ñ%Œ\æWs',_binary '†3ôø£ø·Á\æ\r1š\Õ(ml›”\ß×­S’Jñ@\Çv','',0,'?'),(_binary 'ˆa‰kó-öªŽŠhŒ8 a','wp-content/plugins/woocommerce/includes/admin/wc-admin-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç\Óc’¢?T”&¶…©',_binary 'ö™\Ìy›\'H„¿ú™\r\"\Õf\Ç>|\ì\Ý4®\ÑB+$1','',0,'?'),(_binary 'ˆc‚77­¼*B™2ö’\Ø','wp-content/themes/twentytwentytwo/inc/patterns/page-about-links-dark.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž\0¿.+Œ`(^Q1Mc',_binary 'N8©,.\çÚ®l£¨o\ÉTD¬˜\îØ˜R|\è9°c\Ì{ž7w÷','',0,'?'),(_binary 'ˆi\Ò=\É?þvIz¢–0T','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/block-error-boundary/block-error.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ö_ûOŸ6£ù¹±ò\È<ÀV\Ã',_binary ' JRMƒk\\\ì\ÒP|B\Ô\Äü³ñ\Ó\èÙºKÿí±„\Ð','',0,'?'),(_binary 'ˆq3©ƒ<+g«U\Ç','wp-content/themes/flatsome/assets/libs/packery.pkgd.min.js',0,_binary 'DÓ¢=}%2ØŽ\Z~÷',_binary 'DÓ¢=}%2ØŽ\Z~÷',_binary 'd°öoN\ãw2ó…õŽrð¶\ÐhmU3\Z¨\è¹\àô\É@G','',0,'?'),(_binary 'ˆt#¥»Ô±¥\ãc½l®e\Ú','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/FeaturedProduct.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹’™V¤\0³À–9m\ç©ûS',_binary '*\Ü\æ\Ïv¿vó®\Z}§‚%·ŸCršSa5¼„+>','',0,'?'),(_binary 'ˆ{aoÔ“	Jl¿BS\ä[8','wp-content/plugins/nextend-facebook-connect/admin/templates/menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Åý®‘ùùEþÈ£c)\r`',_binary '|\ÍnUð\ÕÙƒ˜dQ»/\ç\ë$\è\ZW\Ýfƒ¢ACÀ','',0,'?'),(_binary 'ˆ~¨S7B”1c>^¢M«','wp-content/plugins/wordfence/js/admin.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\íøü%\Ó\Ô$\Í\\v',_binary '4y½<#z\É3x\'C+B¤\é/˜\à4Q[\×<Ôƒ¨¶H','',0,'?'),(_binary 'ˆ€\ë…óŽö•³\\\ÌS\Øn','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Exceptions/InvalidCartException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\ìÀÁ˜¼€&\Â\Ä(ù‹',_binary '¨<vŒ¶\0½\Í0±šnº‡\"1Áù\ã\r(Š¢\êz¹ô7','',0,'?'),(_binary 'ˆ…©Wx\×\Ðff[ž—Y','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value/CSSString.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡x»²5ôŽÒƒ',_binary 'ôñ:òÆ¥l­üY[\'Á\ÆKfŒC›\àrñÐº\"\Òa\è','',0,'?'),(_binary 'ˆŠ™eM˜y*Òž·\é\Ö\æ','wp-includes/js/backbone.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"$2hj32Uý›¤\Ô\ç',_binary '£cŸB\ÒCP\0ñœÿöF\Ë!·û‡vy6ªKu„*<c¬f','',0,'?'),(_binary 'ˆ‘@k&X\ÝItÇœ','wp-includes/class-wp-block-styles-registry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'óR\ãL¬E–ý‰}©^',_binary 'ö\Ù$\î.\ZeB—\ê(¬1ò÷3\Ãw\î|@X\àö62Oµ»','',0,'?'),(_binary 'ˆ›ú\ËB±+†y\0x•a¶$','wp-includes/blocks/table/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²µ¸´ij\ã\ë\Ë/tD‘Á=',_binary '6\rO?á…¡ÿIQ@†Lv«^ùð\ë\â7L6Æ¾º €','',0,'?'),(_binary 'ˆ›þ( –‹/lqz#}¸º\Î','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yith-system-status.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(AB/Ö¥Ï—™!\ït\Ö.\Ö\Å',_binary 'ZŽV\ì¤~òù©o\Å\Ü /É\å7\Â\ÙÀš”»Ù¾u','',0,'?'),(_binary 'ˆœ6˜”btzN°\ín\r‘3','wp-content/plugins/yith-woocommerce-compare/assets/images/colorbox/loading.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æa†}cuKz*—O° \ç\Ü',_binary 'N„\ÒO¶j\â~yÎ ½\ÅR›\Õuf\ÓÁz•O\åÊ¾Ô‡A','',0,'?'),(_binary 'ˆž˜‘\Ôp\àŽú›A¿z1w','wp-includes/blocks/navigation/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²õ$\"¿b“‘+\ÃsòË„',_binary 'WCï²‹£A4\'ÿó›)_¹\ànŠ¶x ˆå‘—\ï¨Z','',0,'?'),(_binary 'ˆ¡Kk©fõgÿ\çT¤#”V','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/UrlSafe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Šer›\Éx‡‡|2c½\Ó',_binary 'š÷\Ë\Ò.C¹¿@2ˆP\ÖcÖœ‚^n\n”\'-‡v[~','',0,'?'),(_binary 'ˆ©´÷n\ï\nõ\0Ü-i','wp-content/plugins/wordfence/images/blocking.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£\'-H•f—Œ˜<1',_binary 'A5„Y9Ž®\à\0¶óO\Ätq\äÐ–L\\º}\Ëa½\Ô&\â´','',0,'?'),(_binary 'ˆ¯JŒB<}c	ú8/õZ&','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®„£§=`ˆ‡w\Õ2‰6\îd',_binary '6óÅ·\ÙWh‹	Šú›·0¬W?\êžÞ\ÏYÇm\ç·','',0,'?'),(_binary 'ˆ²ƒFw¥–\Ò7ì¸d\ÝX\Â','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader/class-plugin-locator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'û›–¶LY`0Uv\Â\å¡©',_binary 'ùÿ\ÇH:‘\Ì7“ˆ,\à\Æe#\Ò%\Î÷ý¾‹‡Yt)ÿ','',0,'?'),(_binary 'ˆ²\Î\Ì)\ê^\0\à3œ\×+\Þ~\å','wp-content/themes/flatsome/inc/builder/shortcodes/templates/ux_stack.html',0,_binary 'T\Â0¾ŠN\Åcðø;\Ïp',_binary 'T\Â0¾ŠN\Åcðø;\Ïp',_binary '¦®7\0\Ó<ka¤:|\ÕýGžW\\D;ý\Ñ2gûj¥DÀy','',0,'?'),(_binary 'ˆ´Ôª¥;\×\ç¾Ò¶\Ê&¾&','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-variation-download.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÖÁ¹}/u\Æo\ã¤^02',_binary 'Oƒù\Õö`”ÿ\ÜÔƒ3\Û<lI\Å\ám\Ý¹¢ô\ìA\Í\\','',0,'?'),(_binary 'ˆ·8>õ#©ŽF¹0Nˆ','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/languages/yith-plugin-fw-el.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Õ;5wÄž ¦\'2ÅŠ',_binary 'x\Û]Ë›ý\"ý¥T?\Ødq•¾\á\"\"\Þ\ã*6M\ÙNh\Þ','',0,'?'),(_binary 'ˆ¸\à•}‹å«á¹m>','wp-content/themes/flatsome/inc/admin/options/styles/options-global.php',0,_binary 'W\ìñ\êqxL²\Ãg2N¶™',_binary 'W\ìñ\êqxL²\Ãg2N¶™',_binary 'u\Üyµ°}„™‚…\ÕQE\á[þA\ëeþ·|	£ºƒjÿ9ƒw','',0,'?'),(_binary 'ˆ»\Çg“•\Ý[z\ë´\0Î®›','wp-content/plugins/wordfence/modules/login-security/views/page/settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÝÕ¯\Â\Ú\ä#\ßz_\'÷\Ò+',_binary 'vT\ÍúðoC\ÅGö—Ng\èõ\Ûí¢…3ƒ?\ÑXm€\åK','',0,'?'),(_binary 'ˆ\Å\â=^±Y\Â©f\Ô!q\Þ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart/controls.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'š‰²6å¤»ý¨”\Æ\ÂYs\ä]',_binary 'T\ïô>úXñ\'\n29\ëHÑ®™h!£Œ\â\Å<,\ãNñ\r¤—','',0,'?'),(_binary 'ˆ\Æ\ïzŠ{E«\Øc2\Üg','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/button-outline-round.svg',0,_binary 'W\"L&õo½oEû„Dô',_binary 'W\"L&õo½oEû„Dô',_binary ')r´¤R‡ü{•¹6b*ß¤\ä“54z½:&\çÔž\Âó\É\Ù','',0,'?'),(_binary 'ˆ\Ð#’PµÃ–.žNKš\Ä^','wp-content/plugins/nextend-facebook-connect/admin/templates/provider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ø”oõb\áè¸§¶—\ë)Ÿ',_binary '+S\Òy\ËtN‰\åV<\':Bl4þ³‘g4MSÇñ˜¦r','',0,'?'),(_binary 'ˆ\Ü\Èt½V\æ\Ä< ûC\Þ\Ä','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Traits.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';HoÄ´`š\é×³m\Å%ö',_binary '\å(†\Úl]‚hö\ÅÐ®a	y\Èfhù±0v\'uµvm©','',0,'?'),(_binary 'ˆÞ¼TÁŸ­ÀeŸ§œDãŸŸ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Exceptions/StockAvailabilityException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X‚¿YÀ%\ëeòOiv¸~',_binary '\äržÜ€™?\é6®”,ÿ\Øq\ZOsª4Lb4{?Š\Úy;\Å','',0,'?'),(_binary 'ˆ\í\\-\\£ªf‚t\å´KDšs','wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª\n\Ü\ÉB\äh5ª«\r{ñnf',_binary 'IH$¹‘\Âø=C9‚\Óö\ÅbF´ô¨O‰8M}­xÅ','',0,'?'),(_binary 'ˆðw”Ái.¹w¾(M;0D','wp-content/plugins/akismet/.htaccess',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´€9Qý\ïûyÿôp\ë‡ö',_binary '‡ˆjZŒ\è÷\Õbµ\Ü|fd’Yh\Ñuûdk¸>—\áÇ½‹&]','',0,'?'),(_binary 'ˆð\Ì+‚\æQVŽ¥þ\å‚p','wp-content/plugins/woocommerce-currency-switcher/classes/fixed/fixed_user_role.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$NÅ:ž~š\ÚüqGv',_binary '3lt\n‡¯\ì§\ã\0K\åŒE®\Ý*m/\Î[„W¡?\äfhu','',0,'?'),(_binary 'ˆõE\à\nöÅ•\ÇaI\â4','wp-content/plugins/woocommerce/assets/images/onboarding/mailchimp-for-woocommerce.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ä­\ãaLâ­˜ˆ¡,ø©\Ä\Ø',_binary 'g+«H\ÈS§\ì\à\Ú\'Ã§\ã[’ñ\È5u\Û\ê™','',0,'?'),(_binary 'ˆø\Ïg2i?\éÝ¾jEI”\ì','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--cart-blocks/cart-line-items--checkout-blocks/order-summary-cart-items--mini-cart-contents---233ab542-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S–Q\âÝ¿Eª\ëb Å‡*þ\Ô',_binary 'ª´\ç 8œõù),¡›õ*m<zKô;$\Ê\èIûxŽ','',0,'?'),(_binary 'ˆý\ëÊ¼5}]j¤‰:a3o»','wp-content/plugins/woocommerce/src/Admin/API/OnboardingThemes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'À„&ŸO¿x\áUn(h¡©\Ô',_binary '†\ç\'\Û\îiº³\Ô\ïû\ï:\Û\ê•öË¶\Ýòªj‰y’»\Ã\Ã\ÃW','',0,'?'),(_binary '‰¥\ØwsÁ ¯\Â+\Ó\æ\áC\'','wp-content/themes/twentytwenty/inc/block-patterns.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nyò”\á+ó\æz\ÒX¹ñ	',_binary '\Òõõ\Çt!\ÆW\×\×*)ö½\Ý%ž\Ê=o#´O˜oþ\Óðüx\á','',0,'?'),(_binary '‰™²\ê”hrÀ>û2]›zý','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installed.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pT³iƒ‰^\Zxx«¹ƒ\Ë%$',_binary 'Y\êy—|N5t\Ý$\Ë„ªf\Ó5p:sieü+B\\ÑŸ','',0,'?'),(_binary '‰µö‡ó!y÷øG\Í\ç','wp-content/themes/flatsome/template-parts/footer/footer.php',0,_binary 'r\ÝymEðo\Ú÷Š\0\Ø6S',_binary 'r\ÝymEðo\Ú÷Š\0\Ø6S',_binary 'jQ„¡?HÁSe0Tú¸`(·O»@\Ît&eµy×š','',0,'?'),(_binary '‰\Z²ýù€ñ‚¸y¨\æÇ¬','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-discount/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oEðy7_ª\èxø[v¼„=',_binary '\ëQ%\0¤¬\Æ\ì”T3¨x\êû”š\ê\êðÒ»Kåˆ¦t','',0,'?'),(_binary '‰  \ê\êg¶²\×\Ü%\ç!ž','wp-includes/blocks/site-logo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'À© j»\Åd\ç\Ñ«\Í)ÃŒ',_binary 'P/Ù…;€\é\Zô;»ƒ”¹SnD=«#žkF$	%·7','',0,'?'),(_binary '‰\'o[\ç$D2¸€I\ë\è\Õ\Ù','wp-content/plugins/woocommerce-multilingual/classes/Email/Settings/Hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Û\ÞL\ëöþP \Õ\ßs\'¤”W',_binary '§¾©owG{\ïßn¿»\æ\ä\ZŒ—\ÚrtŒ·\Ä\ÙùG\n†\\‘','',0,'?'),(_binary '‰.¤”x\ÖöQ}\ét\npó','wp-includes/rest-api/endpoints/class-wp-rest-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é\Û\ÃW¾„T\á«_¨½t·\æJ',_binary 'Iûÿ·{¥7´\ã@z\áFaN›—(YW\'TœmŠô\É3','',0,'?'),(_binary '‰39|H…òVÿöþ<*\Ñ','wp-content/plugins/woocommerce/src/Admin/API/Reports/Orders/Stats/Segmenter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nÄ¥\Æ\Øp7lŒ´>›ËªŒ',_binary '9\Î\Úó$L]“¨/\èµc$\Èÿ\Ú*X¡\Ø\Û','',0,'?'),(_binary '‰3a.ýø¿N„}õ\Ò','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-shared-hocs.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LtÈ´±Ñ’\ì´d$EÌƒ',_binary '\ËN}>\ê\ÍHD¯e”“`œHo\nkA\ë\Ûü.tu‰','',0,'?'),(_binary '‰7*ûø\"{\ìóƒ\nK<','wp-admin/includes/ms-deprecated.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•žlŽ¿t{0o\ã¯Þ–',_binary '7<NoQF•‡\É\0\æ€$°j›aÏ¤ m€ñ\Ã\rµiû\È','',0,'?'),(_binary '‰? 8”÷˜\Ñ\ÉZ\Ï\ÐNÁ','wp-includes/ID3/module.tag.lyrics3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\â™\0k’EŸ.Ðšó a#',_binary ' ,ˆw>M–?%9,¦H’b\Ç\Å\Ú\Ï×¥*ðüº\'¥','',0,'?'),(_binary '‰F\ä%\ÜÁÑ¸©\ÉÀ\Ð)¼','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-summary.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm–_©ÿoKIP\Óýˆ\Þe',_binary 'Ý‹³©¾!@½òº9£€\â\Þ½|wM¬K?Ëª·\Ø','',0,'?'),(_binary '‰HgA\Ä!Éc[7’«C\á','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Utilities/DraftOrderTrait.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô§b\í\è“\ï±ø\ák­þ{)O',_binary '„\âqDÀ9aU\Ù[ˆÐ£x¥Ì…§VŒ‡E&ø5§±•','',0,'?'),(_binary '‰O‡Pg—\r´!q\'þ+\ä','wp-content/plugins/woocommerce/assets/client/admin/payment-method-promotions/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lÇ·Kd\Þh\ÑJy\ÎRô_',_binary '?¨&\Ãôû¸\'Á²•\ÄKôy\Ñ5O|« ô\Ì\áòŠ}','',0,'?'),(_binary '‰X*\ä\ãŽVL	ˆ_\ãƒ','wp-includes/css/dist/block-library/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H·›ö\Ôlsr\\\Ð\Þý	±gX',_binary '°>\Õ.\Æs*«Hó¡%TÁle’—X]\ÐB,œ¯\\u\Ð÷Á8','',0,'?'),(_binary '‰_ž ¥ˆ6T˜‘þNG?','wp-includes/blocks/search/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÖT™pŸ¶\Ýú~\Ë÷šPµ\Ý\à',_binary '\Õ\Ê\ZûW¢©\Ó\Õ/#$}(\ß\Z\èK¹8ˆ\Ïì˜•• ñž','',0,'?'),(_binary '‰`\ÛoÀ\í.QSŒ\ë`','wp-includes/blocks/image/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç\î«eD5P/BB\ï4,\Æ',_binary 'óA‡ø-„\âkÜ²…úBk\Â:÷SQšg\Ó)s“ž@c','',0,'?'),(_binary '‰a,þÛ¬OwÎŠ¹˜\n¥b','wp-content/plugins/woocommerce/src/Internal/DependencyManagement/ServiceProviders/RestockRefundedItemsAdjusterServiceProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',€—ñÀ¬\Ê\rþ\Ø_Á1¹',_binary 'ùµª4\í\\µ\'þf§°n\Ì	•²ºˆ\Ù\é?#ß—\0wD¹','',0,'?'),(_binary '‰g£†A\Ì\Ô„\Ô\ïÆœ\Ý%','wp-content/plugins/woocommerce/assets/client/admin/activity-panels-inbox/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚‚\ëŠ	­4\èo>ñQ\n\Çn£',_binary 'iSZ\Z\ÄL\Ø÷\Ó|\Þö>ƒ73ðÊ—¢„D$“ÙšNY\Ì>','',0,'?'),(_binary '‰j®\ÃI\î\Ô\Ó<êŸŸ³†iU','wp-includes/category-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Û»\ØQ\í¯#º2Žý\ì\ï[',_binary 'z; \ê,T\Ë3Š“¸cuv\ãiœÿed¦W2\ÇJ¬7§Ž1','',0,'?'),(_binary '‰w\çll\Õ\Ç\Ê\Ó\à‰L\ï#h‡','wp-content/plugins/woocommerce/assets/js/admin/system-status.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H›Œ0œ%oe’@‰ž*v',_binary '\è\ÊÈš%¤xKžK&aL„\íh½y‹\ÈÏŠ—w•¤Z','',0,'?'),(_binary '‰}Pæ’ªvd¨a<(œ\n@\Ò','wp-content/themes/flatsome/inc/admin/kirki/controls/views/color.php',0,_binary '\n5ós\Z¿¥¼K\Õ;-=j‹',_binary '\n5ós\Z¿¥¼K\Õ;-=j‹',_binary '©x	,JX·\ÒQ\Æ²eM9Ó€9°+·K÷0.{a:csò','',0,'?'),(_binary '‰ŠŒ&ö†\é}?\â\Zs`¾','wp-includes/js/wp-sanitize.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i“f05ºó}$\áô˜]®º\Ã',_binary '½Ea5/qJ\æXo+#xº\ã–[\ÜX86)3\ÍÙ†>\Ìÿ\Ð','',0,'?'),(_binary '‰‹” \Æ]\àŠ\Ôü\rb8','wp-content/themes/twentytwentytwo/assets/videos/birds.mp4',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÁPq4/ó­-•¿SU\Ùd',_binary 'r6‘»+,¿÷&6VÐ‰\ÔG3ü¸t€¾«:’9)TŽ','',0,'?'),(_binary '‰‘\ÞQ\ã£WsñA7d\n','wp-admin/css/site-icon-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Å`_?Þ„=\Û|ø‡§+”d¨',_binary '\ìò\ÙMµ´\ÈS»\Ãõ–>j/‹‹¶\"K%qÞ£ý\Ö~','',0,'?'),(_binary '‰•¡?Èœ¹‡\íG‰€-€J','wp-content/themes/flatsome/inc/builder/shortcodes/values/row-layouts.php',0,_binary 'i\à€Wªº»_¤\Æ#\Ë7?¯',_binary 'i\à€Wªº»_¤\Æ#\Ë7?¯',_binary 'qû\ä\çŽ\à©÷±\'g§œYþ½¶C\Ç;:p{yÿÄžµ%ó','',0,'?'),(_binary '‰—[™FN\Ú4%\è“Á³r\Ó','wp-content/themes/flatsome/inc/admin/kirki/deprecated/deprecated.php',0,_binary '˜\ÚH(\ëU|\Ý%¶+1C',_binary '˜\ÚH(\ëU|\Ý%¶+1C',_binary 'WLK<\njõƒA1a‡aA*ü\ã+x8M%!dQH)hž','',0,'?'),(_binary '‰˜»ƒõnJ-2 ªœ5W\Â','wp-includes/blocks/rss/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·@Pt\r2/’\à–p_iñ\É',_binary 'ý\ÞMJ‘\Æ\è\\¿7±ú\â*r;\é\Åÿ\æ\î±Pø\Ó6c','',0,'?'),(_binary '‰›ši\Û4–\é»ý÷\Zg\â','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/products-by-attribute.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ë6š¥6 ²‹¯·ÿP³0›)',_binary '{J¬\×\çÀÚ’\ÂÀ¸ƒ˜\Óþ\Þ,\Ê9–†“ó\ãI®','',0,'?'),(_binary '‰ž¤eHÁ\Ê0x™ik™m¾','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/ajax-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•\Ò[\Égu\ÍA\ËmfÂ·ý\Ö',_binary '¹…‘\é˜0;„.+1im‚½\×\È\àEU \ê¿Qpkôü	¡','',0,'?'),(_binary '‰ªe\Ä\\«\Ô1\átÆ‹\Ü<	„','wp-content/plugins/wordfence/lib/wfUpdateCheck.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&?C]š\\\Ì\Ùg~\ÝJ;<:',_binary '3®*4û\ÏúSxg“¦\rŠ\Z\n˜1?N#?‹a]\êðp','',0,'?'),(_binary '‰¬\íÝ¨1qg@ÿÿ-ª5','wp-content/plugins/woocommerce/templates/emails/customer-processing-order.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K…y4¥ŒYá”¡s·N',_binary '\Ö\à\ãr¿ñ¤UgÚ‡­R€wñx˜ù¼GyÚ›\0 Áa','',0,'?'),(_binary '‰®¿¼œ‘GˆGý “\ìa\"','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼ü*M]YnM$^Ã¹\"·',_binary '…À\áÏ\ÌN\×\Ëo…KtQ«V ««\r3¨-\Øóy\Ù-','',0,'?'),(_binary '‰¶ÞÍ£u3«\Õð\Ù&\â¬','wp-content/themes/flatsome/inc/admin/panel/sections/tab-guide.php',0,_binary 'u–©¶EŸª’„‰˜\Ô\å\×÷',_binary 'u–©¶EŸª’„‰˜\Ô\å\×÷',_binary 'Vˆ¡“^Nõ\Ô\Þs ¿‰‹\Ï\ãz+Í„\\\ËñA²Þ±ý','',0,'?'),(_binary '‰¸­\ÐZ|òò0²75ÿo\ë','wp-includes/sodium_compat/src/Core32/Int32.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»³3·¢NM[\Ü/\à\r~H',_binary '‹ñ\ê‘r\æWû†¿Q@x[1\Û \ì\Åò*o¿9\Ê$£','',0,'?'),(_binary '‰¹W—R\ršsb\Â\Ö','wp-content/plugins/woocommerce/templates/checkout/form-login.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BºM´ªjø\âYx-œ',_binary '\ÇT¤((\Êó:J£²{\Õ\ïô\Æû#{¹ÿý¼Ó¼”<\Ñ','',0,'?'),(_binary '‰¼B]nÈ„¨8\Ú7g˜ó','wp-includes/images/smilies/icon_rolleyes.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_5‡\Ë6I½\Ø˜Ä”E',_binary 'b;\ÎSGŒ`ƒJL\Ò4¡;Í®1;\\šö¦\Ç;xl©€','',0,'?'),(_binary '‰¿\"§õ~¬q¸)‰1}%o','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/fonts/font-awesome/fontawesome-webfont.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°hqòþ\æ²A\Ö‚®“i¹',_binary '’¢	q68…xÖ…\ã\\üªs\rN¾~ƒ.—ûZØ®[\"','',0,'?'),(_binary '‰Á]\nµ¥·\Ñ\r\Ý+\Ê1(','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-fields.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ>»llM\nþv\ë[‡MQ',_binary 'GE¯«¾;ð…Yòb\ÑcÕðË•R\Ë¢y™}\É\Ëg','',0,'?'),(_binary '‰Åœ×µ5\çyÿœ·k','wp-content/plugins/woocommerce/assets/client/admin/navigation/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ\Èj *[Ž&\ËþX',_binary 'Tú¯ñ^\Õ\'÷¸û#ƒ&K÷ŽŽÁ\Ô{-T&S)´ÿ@\é\Î','',0,'?'),(_binary '‰\È\rh©8\çù¬×…@XA\Ô','wp-content/plugins/woocommerce/includes/class-wc-payment-gateways.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“_\î^x)÷˜\Ë~\ßúø\Ó',_binary 'Z0‚*—¶FŸ/X«\àyt·*$ö\0«\Zuù\Îý¿¸\'i³','',0,'?'),(_binary '‰\È\Èý\ì\Ì\Ô:\î·\å˜\Æ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/active-filters/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2þ…v5q®\È\ÌÚ Arg0',_binary '¤­1kñž‚PÏ˜Oâ¢¯@üºó°«µ¿#P§„9\ç','',0,'?'),(_binary '‰\ÉG…ö	Üž\Ü0¼\áª','wp-content/plugins/woocommerce/legacy/js/admin/system-status.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H›Œ0œ%oe’@‰ž*v',_binary '\è\ÊÈš%¤xKžK&aL„\íh½y‹\ÈÏŠ—w•¤Z','',0,'?'),(_binary '‰\Ì/¬ÁHS…[_¼Gm','wp-content/plugins/woocommerce-multilingual/res/geolocation/country-currency.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–‘ýöL=†òb§L³I¶\ê',_binary '\ì\\\â6”º}G\ÇT\êKZ°-:_ù\î,•d£°éˆ½;B','',0,'?'),(_binary '‰\ÕfR/1\ä\é\Þ›< PCŠ','wp-includes/js/dist/shortcode.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…\'p±m®9/\ßÊ€šE¡I',_binary '\Ô+$O5\ë°E\Ç\\ž)~[\ë#¿”$WQ½É–ˆ³','',0,'?'),(_binary '‰\ÖP—½Ô‰g\\<ò','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-enhanced-select-wc-2.6.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸\â\×4½_m4\×\åF\à\rº',_binary '[RB¸žð\×Lf|\\²²!M«gñX×Œ(Jú•ýP˜$\'','',0,'?'),(_binary '‰\é¿Ah\0sŸb^\'O\Èó\Í!','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings/shared/default-constants.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B@Y‚½\ß%Ö˜t²\Ó\ì.',_binary 'ˆŽñn\ë=“½\Ö\Ï\ÛŽ%®?2’\å5„^‘”þm','',0,'?'),(_binary '‰ê«‡÷Y\×^g¹\Ï[&','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart/test/selectors.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ôN+E\r\É0Ž9¨ cH',_binary '{\0!l7©\ëÈˆº&£L]vÉ„¶¡©Úª\Íaª\Ì	Hœ²/','',0,'?'),(_binary '‰\î1\ß9žW\Ï\0\ÚÿT\êÄ‚L','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-note-block/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hƒö\ÎÁO\Ø H¾A\'oV',_binary '@\nj_ô>w´(i\ç\È-´\æY ‚\è\0d@‡(PBv\ÜA\ï','',0,'?'),(_binary '‰ñR„(5\é–:ZLx8^','wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-multilingual.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õ;•´üKK!0\á˜\ç-',_binary '×‰6Z6\ßs“/,\\eQóü-Œ¬\Õh­–[\nSH®c…','',0,'?'),(_binary '‰ñV‰Z¾8þ=\Év\à\Ä\âc','wp-includes/blocks/freeform/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gú\n‡\ÔðFûÍ›\Ì',_binary 'ð680\Þ2f~\Ë0§™\\!\Ï\Âh\×nBQf\'\Ú','',0,'?'),(_binary '‰ñÚ¸P¡\Ê\ÔÖºb²','wp-includes/blocks/social-link/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Â=O›!\ÐJ$ñðÏ“T;',_binary '%”‹g\Û7\ØB“£t\íø§\Ì!§ª[\×\Ùx\ÂBf\æx\ÓH','',0,'?'),(_binary '‰ö\Ò\èjµEy\áY$2\'<\Ö','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Payments/Api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Žªñ%»Z/ŽD\Ò³<',_binary '^\Ð$nÀ+<UO\ÅFQ	\0p¢¦¤c4=¯‘\í\ç','',0,'?'),(_binary '‰ùp &E- 5}³[\rdI','wp-content/plugins/woocommerce/includes/wc-rest-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ15)\Í\ÕH2IRˆOOh­',_binary 'XŠÿ§DQúü\Î=¨I}´×Œ«¦z-[P\Û|½\áqË‰M','',0,'?'),(_binary '‰ÿ.²K^…ðe¼\èõHý','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/nl.js',0,_binary 'd9n„«<C\ÊæŸ‰f\í‘\Ò',_binary 'd9n„«<C\ÊæŸ‰f\í‘\Ò',_binary '(½=›\éþ¬HJmrO\ØÙ…ù\áøL«4”U#2È„´','',0,'?'),(_binary 'ŠoA\èÁšH­œzù\0•›','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹š½\ï¥«\æ\ß\ÍjB8£º\ä',_binary '\âeû\Ã\Çr\Ô5²¯ûE\Ø\ídH\É\ä?\Î\Z®a\ØAƒRd\Ñ','',0,'?'),(_binary 'Š	¬\r8mœaaB§¤l\ã\Ö2','wp-content/plugins/yith-woocommerce-wishlist/assets/css/unminified/jquery.selectBox.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÐW\ÑsW\×.\Zd.õ\â\ÑDž',_binary '.÷\Ì\ë4°L™Ž¥c®¿ª3Ø–E\Øj_\è¿<	+§','',0,'?'),(_binary 'Š”–°ô;\Ø\0¨Ê”\Ù\Ò','wp-content/themes/flatsome/inc/admin/options/blog/options-blog-layout.php',0,_binary '\Ù\ç\èxQð;°x1·N·÷û',_binary '\Ù\ç\èxQð;°x1·N·÷û',_binary 'Ì½E‹xÀý\áôžòÀb!ªD«²ÈºÍ„ºq#\Äa\Ì0','',0,'?'),(_binary 'Š\r·b!E€\çjÚµX','wp-content/plugins/contact-form-7/includes/css/styles.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æú\èU\Zˆ \ÌXYO',_binary 'x]pÌ¨1Ã„Ñ™­d ‚i~¨\ìÍ–%–]e:\×','',0,'?'),(_binary 'Š\Z+Š	p] &œ*˜','wp-content/plugins/woocommerce/includes/traits/trait-wc-item-totals.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷‹\0\áŠz\Ð|q|3\Ø–°',_binary 'õ¨Á\â\â\æÖ -\ÝoVZ¥\ãy±?¡7 ¦”\É\è\åaµ','',0,'?'),(_binary 'Š”¢K\ì™È;$\Ò\Íz','wp-includes/js/dist/notices.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>0\Ç^ýÀ\Íp\é¹þ/',_binary '\\\íc>\á‰HÖ¢b¹20nœ¬.\á@­6”Yn\×6…ð','',0,'?'),(_binary 'Šþ*¥ljb% 5‹«º ','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-log-table-list.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' œ¥\'\Òh|\Ë\Ê\ÑGSa¶',_binary 'Œ²T>3ÿ¨Az3ûN§ó\ìA\É9gf\×À!¯[ôKy','',0,'?'),(_binary 'Š#p~=Àø\'\Ç,D=d','wp-content/themes/flatsome/inc/integrations/wc-yith-wishlist/yith-wishlist.php',0,_binary 'Á\ä5¦	\ì\æóÿH\Ø!',_binary 'Á\ä5¦	\ì\æóÿH\Ø!',_binary '‹i`h3I~m§U—€›=b\Ðñ‹C\ÚwÔ¿O*Y','',0,'?'),(_binary 'Š$1xõÛ‘;9}k\Ç','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-taxes/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñˆ\Ð\Ð\Î\Ó\äHòxI¼-§',_binary '­¦”²‡âˆŠp±ºvdµ\ËbD³5˜R}/•û…rõJ\Ì','',0,'?'),(_binary 'Š/\Äð6ƒõZ>¯©B÷','wp-content/themes/flatsome/inc/integrations/wc-yith-wishlist/wishlist.js',0,_binary 'yZ@«©­\\Ê»ñ\ä\È\Â.A',_binary 'yZ@«©­\\Ê»ñ\ä\È\Â.A',_binary 'ƒ\Â+A1oÿxÞ¨\n£;‘»C†¹ª\Þ]\×&,Tj;’1õ\r','',0,'?'),(_binary 'Š3Ÿ\ÓzHa\Ð0¹‘!”\è\r','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/bootstrap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Þ¨™Æ\n%\0\å\ï‘',_binary '\îõŠg&Agpª\çI\è84\Ý\Z\á\ç\Çœ\ÛB\Íùj ÷','',0,'?'),(_binary 'Š8Ž\Âðö\ì\ä\n\Ð\í:\îÆ','wp-content/plugins/nextend-facebook-connect/admin/images/facebook/black.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œ“ˆ{E‹¾\ÓÈ…S¢\êB\Ì\n',_binary '\Â\0MÄ¾Š‡¡\æ*zü\É}ßš\áurÁ¼\Ðùðz«\Ó^','',0,'?'),(_binary 'Š?\"A\âe°o%Í²\Ìn‡','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘F[|.\Ó1\×\Ðx\ë	&XfN',_binary 'ó›\éDmõ1%Œ©nÝ›´_dr° \Ô\rJ3Tr','',0,'?'),(_binary 'ŠHŸ­}h}œWv„„{…8\r','wp-content/plugins/woocommerce-multilingual/inc/template-classes/status/class-wcml-status-store-pages-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Eõ+\îq\á~A*i.65=',_binary '”€ŠìŠ€W-0Õ±_\ã9÷(ð½ ›°º’B—<¢{šó9','',0,'?'),(_binary 'ŠMj÷A\ÕM™ñO\Þ\"If','wp-includes/SimplePie/Net/IPv6.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r \ä\×ÀFºE»ú,‰h\é',_binary 'pùtŸ‚\Ñ[bm¶¥ýM§_IzŸ\"ûŠ[j/ò¨O\Ç','',0,'?'),(_binary 'ŠUZ»µ\ì¯\ÙP\Û>\Å','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/class-autoloader-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÒÀU—GþÊ¼Lhq¾I¢',_binary '&`\ÒÉ¡‹\ê©q\\—zC³Û©jHª	\Å6®	ò\rg<9¿','',0,'?'),(_binary 'Š`NSr\îa\Ô6+\\¹üò','wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-grid-style-2.php',0,_binary 'Á\Ò\0™)\Î÷rtº¯{k†',_binary 'Á\Ò\0™)\Î÷rtº¯{k†',_binary '’4=\ßk]\Ãñb\Ä®!”k\Ï÷óþô\í\Ü?b','',0,'?'),(_binary 'Šd\Ì\ÐRÄ†CžPþÿb&','wp-content/themes/twentytwentyone/assets/sass/07-utilities/ie.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'º\ÖôL4 Põ¹‹d\íP\Ç',_binary '%©þ?ü\Z‰vübq]µ°g\Ô5Z)u\äžÑ¶\Z\ÊoŸ\'ø0','',0,'?'),(_binary 'Šf6ß­—ˆ\Ð}3@R·x1','wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-autoloader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"Ž\çt\ÂMø¸|(UM',_binary '\ÇF§\Ã\ß{CV9\ålx5\rcD•\ÖZ\ß(%6´\â?rYv©','',0,'?'),(_binary 'ŠkIKÁ˜„\ÒV[„´	5©','wp-includes/sodium_compat/namespaced/Core/Ed25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\É¥v>\Î\Å#«‰!nÁ(',_binary '\ÝDFUu|\év©·/\â]\Ð2x_ERL2QlP93s	¶15©','',0,'?'),(_binary 'Šmû:´*\èE3D{4µs;','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/sidebar-left.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\áfø\ÂBc\Ðgf\åµœN¶',_binary '¡•T(Æƒù1RXÞ§ž®mŸ‰\ß)\×\n¦a[úv\ë\Ë','',0,'?'),(_binary 'Špz˜!\0n<Ä\Öï©¬|K','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/CSSList/AtRuleBlockList.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Yxb…“£E¹\ä\äpù„',_binary '&)@È˜(ö­JK€\Ü/q0’ø_FBDDªu5†$õ§','',0,'?'),(_binary 'Šr>¼f\Ù6®M{(\'¿\à\ì','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yit-cpt-unlimited.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2+d)cB\è\Ëd\Ç\Ä\ÍÀ',_binary '\"Uú\é\ÝÚ‘q\ÇÁn¨u6¡eø¢K\Ðl\è*½S³tRU@ú','',0,'?'),(_binary 'Šw\ì\Z\ÞdÏ¢óü\ruD\"','wp-includes/IXR/class-IXR-request.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%p.<SÇ¡\ê™\Ôz1Ï¢',_binary 'Q\ãµ*k\Ë_}’\á2ƒ¬\é>Tûq<\Ê_S\ß:\ïQh´','',0,'?'),(_binary 'Š~@ùô\"G$†\Èö\Û\"\Í\á','wp-content/themes/flatsome/inc/builder/shortcodes/follow.php',0,_binary 'P#\ê\Ê®@j\é H\Ë/\ÑU',_binary 'P#\ê\Ê®@j\é H\Ë/\ÑU',_binary '><%\ßs\\·›³AJX\Ô\ê\nlc&\å±nR1VIWõ','',0,'?'),(_binary 'Šƒ@\Õ%»­\'­%\ßÂ¡°\n','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/single-product.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<mv«D\n\Ñ^V¡\ÐM\Ø9',_binary 'Zn‘©I§£÷Œ{D1¨KPG\Ï9‰J0a‰,\Ö\Æ\"\æµ','',0,'?'),(_binary 'Š‡\\ˆ˜|\Ø\ãýÃ¾\'°³','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/stock-filter/test/__snapshots__/block.js.snap',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«ò\à\0­ðB¯‹f;\ÙpIf',_binary 'û¿®ñª´\à¼\ÙrY\ÌnŽ7L–\ÃU«fõUO¤Õ–·','',0,'?'),(_binary 'Š‹&¦H\Ô\ÖCöºBmž8','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/yit-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eEcÙ·‘\ç=¹KrX',_binary 'g;èŽ•ºn{ÿûÚ°w’¥‹\\¸×µjK\×X\Ä\Ó\ão\à','',0,'?'),(_binary 'Š‹…òv†r@¬{\âc{','wp-includes/blocks/social-link/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n·pªö\îÏ‡ü°}ó.r·',_binary '¬\Ì^ñ\ëÅŒ=\0\îÕ§·ÉŽÙƒ‘JRÛ†÷ø\Åü©©u','',0,'?'),(_binary 'Šž¾/ª\Ä\Z²ø)y\Ð\r','wp-includes/blocks/html/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Æ—VQ³%û$5\Þ3ú¹\à¬',_binary '\ÏTŸ-m\Ï#ü™^¼Î—\Ï$f‡²G4&ÿ\ìYs','',0,'?'),(_binary 'Š£q„7¶L¬Q>q\rg!','wp-content/plugins/woocommerce/includes/class-wc-form-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.(OkY\ÏC!»\é<',_binary 'x\Ã\çI\Â;[`°»H\\\ã\à\ÉÄºgy\Ë{\"„Ž )}','',0,'?'),(_binary 'Šº[\Éôy¼\06Zòöˆ\ì','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P-\î^˜0ó3ô\×Í™\Ã5',_binary '>\á-\âÀ…\ß\Þä¸”—T˜	‰1&€¯¦04\é7¬lT','',0,'?'),(_binary 'ŠÁ$¡\ÖxM1>\è²_8P\0','wp-includes/js/swfupload/swfupload.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ì\×#™˜‹ù9\Ü\á>&YRg',_binary '\Úò„Ý™ª¯\åR€YY-\ÃÒ•˜&qW1(…K\à¾ñª','',0,'?'),(_binary 'ŠÁy•\Ëg\r—lf(\ÑC\×','wp-content/plugins/woocommerce/includes/wccom-site/class-wc-wccom-site.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tšŒ:3ô²k±/Q~4¾¿',_binary '&É³›Â¢€\ä\n\ç®}§‡¯bØ€¥^\å:ò‚s’','',0,'?'),(_binary 'Š\ÎGŠO;°|\0\âJuV¸\ì\Ý','wp-content/themes/flatsome/inc/builder/shortcodes/contactform7.php',0,_binary 'O#¶t»\0Û“Ç²V\ÂI_',_binary 'O#¶t»\0Û“Ç²V\ÂI_',_binary '”‚‚%„\í\é®Ej°ºü÷e¡\ØnÍ˜\é¦Ü·>ƒ\ÂA“','',0,'?'),(_binary 'Š\Î\ÛÑ¯eZ\æu/²Æ‡9','wp-content/themes/flatsome/inc/shortcodes/text_box.php',0,_binary '\rO4\ÓSN~c\×\î\ãPÜ–ô',_binary '\rO4\ÓSN~c\×\î\ãPÜ–ô',_binary '\é{-l[~2ým#JH\à\áMuPJ3i`ä¸‘2ÛŽÐ­\ê\èy','',0,'?'),(_binary 'Š\ß35n­o¡~.·\Õº','wp-includes/blocks/archives/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\ï\íÇžs[¢²pÁªO\'¨',_binary '*¹¥÷„»ôzõÿñƒtRM‹R\Ã^/¾¦œcÎŸö','',0,'?'),(_binary 'Š\ãta¾\Ò\ÑV/>¢–P†','wp-content/themes/twentytwentytwo/templates/page-large-header.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Aü\Æ\ã,—\Ý\Éø{j\Ç\âD',_binary 'ô‹G#\'`&\Ë½\ÖfB\Æ\ä!„•\Û3`Ž°\Ã\é¯òû','',0,'?'),(_binary 'Š\í\í«ümB\Ø4Ç«õ¹y¥','wp-content/plugins/woocommerce/src/Admin/API/Reports/Stock/Stats/DataStore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÛÈ«“QjIrf\ä\"\ä}{ò',_binary 'u~’_\Ã«oJ¥P\\cZ¼B‡\à|YC˜T<ø,š¡s','',0,'?'),(_binary 'Šõ\Ôýý”ƒ}¶5p†\n','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/category-list/save.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£>65F?%?j)',_binary '`“\Ü<\È\éz5&££Úœ\çX\æywvÀ\n\×Y¨\",D','',0,'?'),(_binary 'ŠøQs|\âc·LØœVH³)','wp-admin/includes/class-walker-nav-menu-checklist.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ù¤Çœ¯R\ËÛ¬eao2)Z',_binary 'ŠH¢ý\r“h\ËM`/4\à5÷0V¡·ª>°·5\ÈUB\ì*','',0,'?'),(_binary '‹¼/8&ôD\ãg|¦\Ä#','wp-includes/js/dist/viewport.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\ÒüO°+\Óú,W%”|:',_binary '}QÈŒŠ\âò7Ã©xd™}\ëDL@\áú¹5,¯ß¿|Yy','',0,'?'),(_binary '‹\r·]Mô„xUºL:\Z5','wp-content/plugins/woocommerce/templates/checkout/terms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uµ²\Âw+m$\Ðõ$\ÊÁ§',_binary '\Ô\ÆÈ†¥\îóY`\Ö÷ž‘l†s-^mf›;\ÒUn_Ö','',0,'?'),(_binary '‹\"ùÿï‰‹\0V\Ú\Î w','wp-content/plugins/woocommerce/includes/class-wc-shipping-zones.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@]tfO\Ïgü—Ü¶=öf¿¼',_binary ']A6}œÁs‚ŽHŒ–øa0BmC´.;Pš‘:‘5','',0,'?'),(_binary '‹#µV<}K\Ä.\Äq€¡V','wp-content/plugins/woocommerce/legacy/js/admin/wc-product-export.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EuN´4„\rD¶K‰\'W\Ò',_binary '\Ø\Z\ÂZ\åU¼®Q6Ë¨\Ólsö\à	{!ÀS\Ñ\ì\Õd7’8','',0,'?'),(_binary '‹8ÓŒ\ã©\r\ÇºòŠ—\Èn','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-category/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜\æi“,8\îO\Ób',_binary '4¬•IB\Ëa\n·@\å£ù›G~gòŸ\Ûô\ãÒ¶š','',0,'?'),(_binary '‹<»Ín\áoz#\Ù?:','wp-includes/blocks/widget-group.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's~Sš#’Ô‹\\eB3¨\è_',_binary 'HlÀq|\ç0E54\Ä|{|\nõ\ç­#òòF»\è¿D|\r','',0,'?'),(_binary '‹N¾e.²?¬ò¢røþ­?p','wp-content/plugins/yith-woocommerce-wishlist/assets/css/unminified/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[’J\Úv0ì–¹$i·\Îr',_binary 'G ¡f/D“~1Ž¸dS¶€i\ÎA\\AŽ¬ Pv\éT+\ân','',0,'?'),(_binary '‹Ox˜ñØ±•ÿc5(','wp-includes/css/dist/block-library/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŽV¥f>S\Ûnœ_t\ê \Î\â',_binary 'u78¯»ÿoúqQ~\Z\å\ï¦ú\ëM\Ñ÷\07l2','',0,'?'),(_binary '‹U\Ü\Ðzƒó®cž\ép¬©','wp-includes/blocks/separator/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ò|\îD°\Ä÷JoAõ£ó',_binary '\"w\Ð	þu®¡{[\êH¤6W\ÖÎ¿\Éü','',0,'?'),(_binary '‹[fz/ÿy\í [ž\r?','wp-content/plugins/yith-woocommerce-compare/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÌÁµ\æ\åF0,ª\Ä\Êß¸r‚',_binary '{§I	÷uÕ’!û\Õ\á&À´TÒ÷QmZO\Ñ\ïÁ1','',0,'?'),(_binary '‹[\Ôò”ek7e\ÇÁ\r2','wp-content/themes/flatsome/inc/admin/kirki/modules/field-dependencies/class-kirki-modules-field-dependencies.php',0,_binary '9Á»Pš	\Ð \Z©#z\nf',_binary '9Á»Pš	\Ð \Z©#z\nf',_binary '\É\æ»\Õs\Ý3/ó9\Ã(q•\ÄQ¢P0\Ý\ÍØ‹\ÃYµ\Õ\é','',0,'?'),(_binary '‹aš§ú`’ýmª\Ëdšb','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Node/ElementNode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N¿†è‚ˆ^#\Z6¸\ÓuX\Ô',_binary '.Š\×ü.¶$Œj\ÜøÂ®¾2\ìÃªÁ€ ct\Ïo\r','',0,'?'),(_binary '‹n97I.OúÒÞ¿ð°','wp-includes/js/heartbeat.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“Ž›»f(\Þ5\Ö\r;^¬\'',_binary 'û\ä\0—cÞœL+\î8‹Bw•\"\ëUšw./0±\nF@J','',0,'?'),(_binary '‹og°´d\Ä\ã§\Ý	ý¹','wp-content/plugins/woocommerce/includes/admin/views/html-notice-custom.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%d\n±›6q\çó>r\ã',_binary '\î\Ó:Dûâ“³]E\Û\ÐjY¹º\ßuf\Ä\Õw«\ÎU','',0,'?'),(_binary '‹t´9\îÁ\Ê¾\×\Ñd\ÊD','wp-content/plugins/woocommerce/assets/client/admin/profile-wizard/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬…\Õûä¤Ž«“¦}Nqq¿',_binary '¢¨§‘°I^‚v74\Ã0\î\Ì  4xC{=OÞ‡v\Ü|','',0,'?'),(_binary '‹|BlôŠIHÒ¼\ÝOSÆ±','wp-includes/js/mediaelement/mediaelement-migrate.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<¶C’_hz\Ó3„\í<7',_binary ',b#0 !a­OVc,úØ•SÔI˜Ð»%®\Ûp)“ý','',0,'?'),(_binary '‹€\Ù&\Æ\Zr­4JB','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/shipping/event-emit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KI…&\0~\Ö2¹RÁ°c\é',_binary '+À¦5‡C\Z\áŽw8R\Íñ“\Ö£µC\0”£ü4','',0,'?'),(_binary '‹ŒO\ÙX~¯’\â^Rª$','wp-content/themes/flatsome/inc/woocommerce/structure-wc-helpers.php',0,_binary '-DH¢\îª\Zâ–’\ZnÉ‡\ê',_binary '-DH¢\îª\Zâ–’\ZnÉ‡\ê',_binary 'È¶NüTSlú\Þo@¹¦\Ôüú1ö*\ánN%@¡?†%Ô­','',0,'?'),(_binary '‹Œ\ÍØ¨&G\é¦)šk{\ì\è¨','wp-includes/sodium_compat/namespaced/Core/HChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬‚h\áüýP«\Ô\ì',_binary 'K\ç\Ø\Îˆdù%±.RAOôF¾\Þ\×\â\â\àÁ·joù-','',0,'?'),(_binary '‹ŽM¯Ó¼ÿñ7T”~«\Ù\Ï','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/AbstractRecord.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\àkA\Î`Àlw\Ü\Î\ì¸y„',_binary '7\r4	ì¶¥Q\nc\í\êü>c\n>\ÑPf8\í4øHk¤','',0,'?'),(_binary '‹™ò’œ\Úc\ãý7®&`','wp-content/themes/flatsome/template-parts/header/partials/element-menu-icon.php',0,_binary '}önIƒ–\ë¹^\èLŽy',_binary '}önIƒ–\ë¹^\èLŽy',_binary '\ìÁ†Š°C©/°<\Ù\Ìj\åA i\æº\æû¥\ì»~»k','',0,'?'),(_binary '‹œ¢EŠ_\nþ®õl¹;\Íù','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ProductCategorySchema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\ì˜|šS|‚_˜\Þ\Í\Ý',_binary 'Â±ƒL\É&‚¤½CDy_(ª\È{	\ã¸\Z½_Zoýpž˜›b','',0,'?'),(_binary '‹¦‰ugÀ¢Ž—~º\ât³U','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/filled-cart-block/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'û^$›\èP5šõ\Ý.\à&y\Õ',_binary 'œŠ…Ms\Ès\Õ\Ì_\Ý\Æp³Ýœ$`²\ì64\Ê_6—B\Õ','',0,'?'),(_binary '‹¨(\Â÷ú:u\æ#:4b\Ü','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/ajax-products.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®~\ÔLk’­øq–ˆ\Ë\å\Ì',_binary '9!¡ÑŽB²\r™!\Ò4Ú«ò·n\ÚÝµµ$²\êõC&|óÀ','',0,'?'),(_binary '‹¬[\äˆ6»¨dcHa ','wp-includes/blocks/latest-posts/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Î•\Ê^?¡¬Uºs|D\É~\Ö',_binary '“,jžju	ri˜‘<ƒZúp~¢\ÝVøÂ¦(\'ò\æ¤','',0,'?'),(_binary '‹±fé¤§xMªP]~B—\Ô','wp-content/plugins/akismet/class.akismet-cli.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z„« \ë\ã\èqE9g:I',_binary 'v26†}Ûž\è\â‡\Z\â\no‹¯g$\ä$¥@[¡C—\\V','',0,'?'),(_binary '‹º°\Åh+¹«B\Ì\Æò\Ð','wp-includes/js/tw-sack.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ú7\èXˆ\ÏwOœ…qa',_binary 'k•\r<—I»-\ÑöVsp—6gb4eb\éñ\ÝfsŽÒ¸§¥','',0,'?'),(_binary '‹ºF\è\"÷\èvh\â¡$LbŽ','wp-includes/js/imgareaselect/border-anim-v.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \Éz!™<ñ7\ê\Ùý¾\Ë\Ä*¨',_binary '‹\á>úª\Âöd\à•:\Ûý¹j1\í<\î!4\Û6“g\æ\ä','',0,'?'),(_binary '‹ºˆqO°Z\âOo\èõ”ù','wp-content/themes/flatsome/inc/builder/shortcodes/commons/slide.php',0,_binary '	qÒ€À\ãÝ‘‡n´>\Zt€',_binary '	qÒ€À\ãÝ‘‡n´>\Zt€',_binary 'K\0¨ºHIr;uP‚±\rQPØ‡q¶ûƒ\Ú\æ\æ\í\Åp+ó','',0,'?'),(_binary '‹»š\Ëûœ\Ä\Õ\Ë-ñö','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Gˆó}\ÚHB\ØôÀQ•¹',_binary 'kö¾:¸f©u\Î\ÃÁ\Èp”;|a!ô\ëk\à²%\rüø&','',0,'?'),(_binary '‹Ë¤|ÀòE\ÒN! B','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/order-shipping-packages/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T’5žü(´Šwx\Åb\ã',_binary 'a*¤\Ä(y£ú\ÍÈ³4#\Ýo \×ûQkš\ÓWy‹:','',0,'?'),(_binary '‹\Ï\Îx‚ú)\Û~fŒ','wp-content/plugins/nextend-facebook-connect/admin/images/layouts/default-separator.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\È\Ñ!$<\äR{K\ÚN\ç6',_binary 'Ÿ•@$5;M\Ç÷i¥ö|KŠXb½eP\âOšÞƒ¼G','',0,'?'),(_binary '‹\ÒË©6ýf/\Ú6YjI\0\îW','wp-content/plugins/wordfence/modules/login-security/views/settings/options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ºFó¡‚a\ÂRd\ßý…\\ÿT',_binary '3À\êµ\ì\×\é±$×ÊŒe¨™š\×}K¾+\"~y\î``€','',0,'?'),(_binary '‹\ë¼(;’ñCñUŒ&¦\ã','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/payment-methods/test/payment-method-config.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h¬\Û\ÆB¯n:€\Ù#7rP',_binary '‰g®´þùñ\Ó\Z—\0,rœ\à\Ê)¡¸­° \Ð\æ@kr•','',0,'?'),(_binary '‹\ïÆºøeW\rÆ‘W?œ˜','wp-content/plugins/ti-woocommerce-wishlist/integrations/show-single-variations.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\â¸\\QWe,L÷>CGÐ»)',_binary 'q…6p\Ép÷\ËPg³\Ñg2J·\ë\æúƒ•I \nSA°£','',0,'?'),(_binary '‹ðMAHö\Ìô\0\êœ[d_\×!','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_namespaces.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\á,}vÄ¨3¼õGÀ\â)©',_binary 'E½r4@\0¸Ô¡$¦\âz\æú3ð¸$l²\ê\Z\Ð`i\äex\Ãl\Ê','',0,'?'),(_binary '‹óyc\â0O°g)Ï­Mf¸','wp-admin/network/site-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\í3´E=¶¼³‚Sy?Ž',_binary 'È½-M9h\à\È\í‡ðz\Zl:\Ñ\Ã\åÛ®6Å¶\ï\rb','',0,'?'),(_binary '‹ó„Už]R²š\Û)Y¥\Ëm','wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu7GxMKTU1Kvnz.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nûj®À¹ô0ö£\âû\ã›9',_binary '¼†\ZðÒ¨2Á#°…s:\ÕÐ \n		vƒùÃ˜+l´','',0,'?'),(_binary 'ŒtÇ±%˜û£‘µ\ÚF','wp-content/plugins/wordfence/lib/wfNotification.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0Ç V2\â(\ÆÀþdhVD',_binary 'S\Øa\Ö\àY„\íµ‡ýgj+|­\ë‘ ò\áJ²ŒM8³ª','',0,'?'),(_binary 'ŒòFj]p\Û \Ò\í\ÜAc\rp','wp-includes/Requests/Exception/HTTP/406.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\è€&Â‡‘\ÛL\Ú\Ð]˜',_binary ',aY\Ó\à}PR6ƒ\ê\ã`½)K\íüfžism ¸¹\è','',0,'?'),(_binary 'Œ¹R¤k¡¯“¸¨(\ì\Öò<','wp-content/plugins/woocommerce/legacy/js/jquery-flot/jquery.flot.pie.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–þ-!\n* õ\ßm#ª\æ',_binary '\Æ<\Ö7ŸsÃGjC\à\îlÏ¢!Šf<KT,¾Tv¯\Ø','',0,'?'),(_binary 'Œ ý›]jŠ\ÏgHg?V\à','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/customtabs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'š\àD“”\ä´\Î0_Xû–r\Ñq',_binary 'a\ZØ˜“~£^#WQ7oR\àH`¨—\ÅK¥\ÅT¿¤qÀ«$','',0,'?'),(_binary 'Œ$§üŠ\Ù!\ì\Ë\Ø+&q\ë°ÿ','wp-content/themes/twentytwentyone/assets/sass/05-blocks/code/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UX¦ð\'\íU6K¶\é§t\ä',_binary '›ˆl„ýW\Î+\î\Èñ Œú5¬¤ ž¸\Å\rÕ¦I9Yk','',0,'?'),(_binary 'Œ1Á\êÏ£\×\é I¤','wp-content/plugins/wordfence/lib/wfImportExportController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ý´öû­««¶±ò+>±ÿ',_binary '½dlÑ‹Û¹`\á°\Ù…\Ì\ç÷¦ ¸Jû÷–#|i{£','',0,'?'),(_binary 'Œ8i\r‰\ìð´(\á>K)g','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Utilities/Pagination.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ts\ØZŒ„±»J+`…\"',_binary '~úñ\Í] \ÃA\Û7@m\ÈN\ÔõC¨__£÷K|©¥XT¼\Ö','',0,'?'),(_binary 'Œ<ð®-\ì!E¤£\é`','wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-setting-user-meta.php',0,_binary 'o\ì£|M#<Þ£,C?¦>$',_binary 'o\ì£|M#<Þ£,C?¦>$',_binary '³©7€„ò´\Ìû‡½}¹ú>V,\Ï\ï\Å :\Ò=¯m','',0,'?'),(_binary 'Œ<‘\à|~E.\ÑY^\Ô!\Ö]','wp-admin/js/widgets/media-audio-widget.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&tó\×K!ó“ \ß1\Ê\åvDb',_binary '9¬üƒ:\Ü\à%·BñÆ‰\\cÖ‚”WpX\Ô	“QŸý\å','',0,'?'),(_binary 'Œ>~v=8\Ü\Ôu¤¬•\î”','wp-content/plugins/products-compare-for-woocommerce/berocket/libraries/popup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+™±ò\ï\ä\ê‹,T\çºw',_binary '\0\r\0ú!§‘\ÚŒ±Ó¸¦\Ä.þ¦\Ð	%6\ØmC\Â\êI','',0,'?'),(_binary 'Œ?š\n5ü´H\ã?\â\àÁÀ\à\è','wp-admin/css/customize-controls.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z«BTP}¬gŒ\ç\Å}\×t\ä´',_binary '\Z˜¤z2c>€]cõ°%•»ô\rÔµ\Ø\Îó;7º‹Pù\n','',0,'?'),(_binary 'ŒJsf\Íû¯<©w\ê/]¡sö','wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-icons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N.…wÈƒÿ[“\Ðøþ%³',_binary 'I\é\ë…\Ò1\Ña^6a\'¹5®ûnù/O[m…\ç‹','',0,'?'),(_binary 'ŒKö\Íñ\Ú0/]ûr´€M¼','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/summary/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ•½G$\ÑÌ†8\áLŸ*M½',_binary '2÷aM<]ƒ6ýN1+pÀo@µûVq\ê‡\Ä€~M\Ïr','',0,'?'),(_binary 'ŒY*‡“ˆr\ç\ÜvE\Û4¡Ìº','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/shared/config.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B¦y9¦i\\^’+ÁUD',_binary '³\êp¹n\Èó\Ö&‘0\r†Maòþ\r¸†ó\íJ+Q1¡a','',0,'?'),(_binary 'ŒkÄ¸.ö!b$ˆÿ\Û\×s','wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±\å)BuØ­Y>˜ê¼†\Õ\Ö',_binary '$—\'	‰ \Þ+lþQ¨h\'XI4”\ÊP\ä)Ç…ó\â\ê\Ð','',0,'?'),(_binary 'Œ+Ý‚U\Ñ:5Ÿ\'\ï$šF','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œ¯\ä(J›\Ï_?+4h‡œ²',_binary 'ŠŸó°	\Ê‹<?~€C\ì²2B˜\Ö\É ®¿¢©Â’?','',0,'?'),(_binary 'Œ‡\ëAÿu¤´\\\é¦AU™','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/visa.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yƒ¶\ëWkðM»…6½\Ê\Þz',_binary 'W!\æQÿ>nÎ£x!\È_\r÷¶\ëû¶‰\Íø\Í\Ø;¸Fý\ì','',0,'?'),(_binary 'ŒŒÖ·8\è\á’\ßH´:\ï[)','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ûH‹\Û=ªu\Í]R9\Ù\Ù',_binary 'K±‰ˆm\Ø}D®\ÌS\î\ì7\ØÚš\ì\ÍÀL<ya„','',0,'?'),(_binary 'Œ½´†juGCtO\Æþ\Ø\â','wp-admin/css/colors/coffee/colors-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ñ’@6\ØkTy,· Ÿœ¶¹',_binary 'ª1u’:úò¬ŽIs€Æ—\î\Ò\ì®\ÒF‚¦?\Ä\Ç\è\rý','',0,'?'),(_binary 'Œ­l«.H|S„³\Ö{°†','wp-includes/js/jquery/ui/effect-transfer.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ý¯ðô0³\ây\\rd\ã',_binary '\ã\äšý	•3\Î\Ä!z­öSRo1\êv‚¥Ë¤\×\'…s','',0,'?'),(_binary 'Œ®ü\á_‹9„\Ã\ÇG\Ö\Ì\ë','wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-twenty-two.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ï\ÂE©o{*\Û]S¬\Î@\Ý7',_binary 'ÀjU\ê¹\Ñg±°ô¥<\Õ\Ò@2\Å\îTg\éNF„b\Ñ2({e','',0,'?'),(_binary 'Œ¶”µ´¢ò­ø~e/ƒ!','wp-content/themes/twentytwentytwo/theme.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÉAý\ß¤b£Ç°(\Ô\ê',_binary 'ž\Ù˜ó‚C\ë{³#t°tøh:\ãjl^ö®\Üð·£Ž','',0,'?'),(_binary 'Œ¸¦ISU`u€´úTòÀ\ÊF','wp-includes/sodium_compat/src/Core/ChaCha20/IetfCtx.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\élˆ{\ÃbOs\é“_aº\Þ>',_binary 'mõn5ñ\ËßÖžÎ²gJ\Ùü\\µý«¾\Ú3†ò\ãõ\È','',0,'?'),(_binary 'Œºc`6)\ì\0ó(·ª6ED','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/ui-icons_454545_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k)\ãbY\Z\âp³<O\Ãö|²',_binary 'vûYæ¯9{¬\á€\æ¢×„\ZXÁ_U	ÆŽüŽð$','',0,'?'),(_binary 'Œ¾\ê\ê2À\ÜtwÀH\â\à','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-system-info.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸Y\0dmL\èm`÷9¦{²',_binary 'B“\Ë\Ïô×«ñ\Ø\Û}gnÞ˜\Ñ@Ë­\è;ðKHn-¢þ¢','',0,'?'),(_binary 'ŒÁ2·ºÌ…žiˆ\nLùc','wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/paypal.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ[_\Ô’\à.3•‰[Ä¯#',_binary '5L¬\Ü\ßlSFu·‘@«jk†,Î’pÁ.—\áõ‚','',0,'?'),(_binary 'ŒÊš¼{€(ú‹\Ð\\iŸ7.','wp-includes/Requests/Exception/HTTP/431.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e“-\Ú\à.öÝ¼e±Ž\Ó>',_binary '\ëê…±¬/Y6_ \ì \Ñw\Êpk²wöÁ´0ÿÿ§','',0,'?'),(_binary 'Œ\ÜS%\ÜÑœ\"\â\ÏrŽ!\Ó','wp-includes/blocks/list/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Õ¢&EÓ®q—6•\Ô,×”^',_binary '¼øh\Ì\ÝÆ™õƒ4‚¹—\ÚÄ¡\ä\ê\Îo›‘/F','',0,'?'),(_binary 'Œ\ß}¥^72\Â‚„ˆ·®','wp-includes/Requests/Exception/HTTP/415.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜j\ËzZ\á,\í)˜\ã+Š¸',_binary 'v%\Ê_\Ä\0\Ðb$m‘&`\ëó–\Å(û=™m<\Ðb\Zo0p','',0,'?'),(_binary 'Œ\ê\ã\Ö\Ô\Êpü\Ü‹\âù','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/sidebarlist.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^©±\Â\"·¦è€€´Jñ\ïŒ÷',_binary 'p\éÚ«º\Ô\nsø]\ål¦B»\ÌT°À=9ô÷aR‰:','',0,'?'),(_binary 'Œ\í.™d—ÈŽ\ÓY\Þ\r¦\Ä\r','wp-content/plugins/woocommerce/legacy/css/select2.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þy\ã\n\ÃÏF\î›Dy',_binary 'u\ÓÞd\Ó\ÄP=Õ¸P\Å[\Ú\Í\Ä\Êž-]mMjú','',0,'?'),(_binary 'ŒþÀ3úqc;*®V\08¼\\','wp-content/themes/twentynineteen/sass/variables-site/_transitions.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿœ¨¶iH\Ä\àš\ÈY	y',_binary 'K°«s;ø‚˜o\Ü\Ú\âZÃ¡Y³S\Þ\æ\é!eŒ‚´\Ú\Ç\ßö','',0,'?'),(_binary '7u&-n<Å§ÁùÂŒ\ã','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/preload-script.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´>\çW\àbkcl4§G\ç~',_binary 'k\Ú°6\Ù=c’\ÉK\ÖlÆŒ•:\ëXdÅ…\ÂÈ…y\Ìõ','',0,'?'),(_binary '•\ÒanµöV=Ty X\ä','wp-includes/SimplePie/Copyright.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\Æ\á>¸¬ŸóÔªQ',_binary '\æi\â\î¼%ŒÜ´\Û\ìE\Î^gû\Ïò2¶z,\ã”@£QÁò³V','',0,'?'),(_binary 'c¼d©úÿ|YIüm','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„\Ø\ãl¶±õcc*~j=p*u',_binary '<&J#ð¶s\\.,GÀ®$¾lt<™©I•WŠ\Ì5\ï','',0,'?'),(_binary '¿S¨EƒG>½óVü\Øx','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hooks/style-attributes.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\ì§¬¢¡¦g\rDpñ½',_binary 'ŸL\ãV\ç\0·¦\ë\×C\Ïn­š°L¼ª\ß\Ør†\0ŠÑ¸\Ä','',0,'?'),(_binary '$·œb	¶Š\Âo\Í&ÿ¡8ó','wp-includes/blocks/button/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ž¸0£t\Â\ã=‹(\ílW”J\Â',_binary '®~²g#K©¡»[ôk\È\ä“G\ãe`É1\å*%@£Q¼V','',0,'?'),(_binary '+4ü~\ê\Ó\àq…N*\ÆU ','wp-content/plugins/nextend-facebook-connect/admin/images/layouts/default.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0d\Þ\ê\Æ\ëø¹\Þ&ZŠI\Ñù',_binary '¢¿<)+™TH\Ø\'Á÷š\ç¢\ë’T\\\r°vü\Ì}E','',0,'?'),(_binary '0. ¸, \ÕÏ»dpœ\Õ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-cart-items/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pvB‘O`9ŒO˜g\Ñ\ÞY',_binary 'y^E\ÄI \íÏ½.<6Œ¬˜¨\ìx\à\î2¾\Åy\ê-‰\ÌÏ‹','',0,'?'),(_binary '1\'}8!Ö¢a6vC\Zc','wp-content/plugins/woocommerce/assets/images/onboarding/eway.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!#\ÈztÈƒýÿ\á\rÀ_†4Œ',_binary '!¯¶ñ”\Ü9Q.{o.*&d\Í\Ñ\Ðzª„m¨DaP','',0,'?'),(_binary '5¶¬\Ì\Æ\èu•Bòs#\Ø\Õ\ï','wp-content/plugins/yith-woocommerce-compare/includes/class.yith-woocompare-frontend.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ó%¤7”\Æ\È\Âö!\Âe\Þ\ê_',_binary 'þñ2ÐŠD\á—OþÑ´L\rqq–õ\Ø\Çr\0¶ð¦[‘«','',0,'?'),(_binary '5ü\ËEéšš0½šIÁ','wp-content/plugins/woocommerce/vendor/symfony/css-selector/XPath/Extension/HtmlExtension.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`eT‰OyŽ´V\Ý-YF',_binary '/¶±\Ã\Ìiª\í\Ê\ÔüM\ßð\ÌEñ\ßtk\0N\ßQ^˜\Ä','',0,'?'),(_binary ':\ïhù\Ñ•\ëˆl\Ær-','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-shipping/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P™0\ÂÃ‚\"£ªú¼\Èjq®\à',_binary 'Ë§\Ù\Ó`\n*\ÕgždœöJ\Ò\äG\á\nX6\Ø\äªß–\â','',0,'?'),(_binary 'A-\Ì×ŸJHº5\ÈÆ¨','wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-cpt-unlimited.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Å°\Ò\Ùn¾\ë-(\Ñvñ™…',_binary '©DF\îs\Ð\Ãþå¢©gö—õ€z¡\Òój\ÆYo?4ó¸8','',0,'?'),(_binary 'CV’ž%ÿü˜\èœ\Ói','wp-includes/block-supports/border.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ì»PKˆŸM\è$\0”\ê',_binary '\r\ê¹ee²‹R·[xYû@V|:¾®¼\èƒ@­Œ\Öò','',0,'?'),(_binary 'EÚŸ\ÚRØžX mû‹\å=','wp-content/plugins/woocommerce/src/Internal/Admin/FeaturePlugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ð*º»E¸Á?¶i\Õ9x£H',_binary 'P\ÏPQ\ãòUÛ¶\"iù\ès\Ü\äu´e>r6º\Î\Ó#s\Ä\Å','',0,'?'),(_binary 'O\Ê\ÐYk;jˆ”i‹¼;v*','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-slider.php',0,_binary 'š1ÁQ)\×N\Ë\\eð!\é\Þ',_binary 'š1ÁQ)\×N\Ë\\eð!\é\Þ',_binary '´\Æ\Ïd~;\é@–\Ó4ôeJ3”š¿žnŠW\nd˜\'g%Tµ\r','',0,'?'),(_binary ']\ãSw˜ñ\Îp…b^e%','wp-content/plugins/woocommerce-multilingual/inc/currencies/class-wcml-custom-prices.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\Ûpd{z{\æ\Õ\éƒ\Ä\Ø',_binary 'šN¹\0kù§\êÍ¤/\ÍFþIfX>8\ç¯ù>ù\æÅ¾ù','',0,'?'),(_binary 'g\ãRv\0\Ï$bùa¯\Ôo®','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-locale.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zü]\n•†FD\Ãa\Ø\ìÅ¸\É',_binary '\'‚è›Š <¼4q\âq[\àS\nðó!Pp\Ð#;SN®A','',0,'?'),(_binary 'j.!\Z)\í\Û†\è\n=K','wp-content/plugins/woocommerce-multilingual/locale/woocommerce-multilingual-fr_FR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W|Ba\ì\'FŸ¯q·\ÉÖ',_binary '\ï@wD£¼£\Þmt#Î‡¡«0\Ã–\íÙ¡Z¬ö’','',0,'?'),(_binary 'kN«3\êw¦:kui','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value/CalcFunction.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\ê˜?›‘Å”\é\'ôŒˆ‰)',_binary '\âHnî¡µ\á;\Ü#$%1½bò`\ÐDô³óÿ7š','',0,'?'),(_binary 'nŽvnüž`\çJ0’…x','wp-content/themes/flatsome/inc/admin/customizer/img/blog-single-full.svg',0,_binary '¥\æR£™\ÈÿüYªü\é',_binary '¥\æR£™\ÈÿüYªü\é',_binary '\ÝAÆ¿:\ß*»ô\0z\Íbœ\Î\r±A\Ý\ÞQ’sy%\Ì','',0,'?'),(_binary 'n\î	Ÿ‰¯³W¢kö’','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}‰–=\æ%ü¿“7\\\Ñ8V',_binary '©wH’p\í\é[\Þw¼2ž@u\Z£‰\"LH«·a6˜Q¦','',0,'?'),(_binary 'p\ÈQ_§!Á·\"š¯M\ÑY^','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-upload.php',0,_binary '‡M2;ý¸\äYµ4(9\ß',_binary '‡M2;ý¸\äYµ4(9\ß',_binary '&‡&¼÷HO1=£\å\èþ \é\0!i­¤“0÷§mv–f','',0,'?'),(_binary 'týY‡$Bór\0\Û[=:\èp','wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Analytics/Factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸]CC‚OÿŠülRH\03ˆ',_binary '‚ŸóÂª\çÝ¾\Ì-\ÚxqŠ\ì\ÌÎ‡L0\'Õ¤?ÀSð>','',0,'?'),(_binary '} yTŽ\ìZ\ÝH„cDJ','wp-admin/js/custom-background.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ùû|+Tø\çGTtú\å…\0',_binary '\Ër¶B~‹<W5¾9‹ÿ©[;]\ÅÞ“5Sõ\à¹D¼\ï\à­','',0,'?'),(_binary 'ƒñw\Æ\0\Ü\Ñ>\ÓJ3\×	»','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/checkout-state/utils.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬\ìpŽ¥Õ„I:}¥R6',_binary '\ëNW„Ii=\â\í@Q)SXTqzüFz-xƒñvõXÅ›','',0,'?'),(_binary '‰\Äm?T\íƒ\à×Ÿ4ôs#','wp-content/plugins/woocommerce/templates/single-product.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oh3q\á 0`)Ï€…«—Q1',_binary '¥iò\ÏùŽ[:\ÄÁž`=\ï³4®\Ï#µ¤[ú(ZjCÿ','',0,'?'),(_binary 'Š_\Ð\ç\r¨\È*\Ï7tEq¿','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/variable/variation-attributes/utils.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…– \ç÷>Tjú\\!¿E',_binary 'Ü‘‚?÷ƒ1,\×?qP«6ÔKù\ãw\nY¾iÇ¬[Ã¹¦kù','',0,'?'),(_binary 'žSü\Û\Û{|õ\"uZz\î','wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-aside.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ;9\çbEõ\à)²\Ï`;',_binary 'w;*ñÒ˜°\rp\ç”<L$þ\r\Þ\ë±\r›\åH\Zò¢\â\î­','',0,'?'),(_binary '“~Dò5lµ¤\íJN¤Tœ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/cart-response.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿ€A-\ÎaóK³\Ã/Dot',_binary '„Æ\ÚóCÁµ `?OŠ\Î\êD™í¿¬\Õ#+m*GVü[','',0,'?'),(_binary '”ø\Í{\ÎcEÄŸõL	}','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/view-switcher/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³¿TD!k}v¼ d™xe',_binary 'ƒŸI‚Bù\Íß›\Z\Ëk—ònûò:Á\\<üön','',0,'?'),(_binary '§Š•{Šˆ\æÏ¿tmC\ë}','wp-content/themes/flatsome/template-parts/posts/archive-3-col.php',0,_binary 'ýl\Íhe\\ú÷n38)ûO',_binary 'ýl\Íhe\\ú÷n38)ûO',_binary 'wR¬• xb¢X\á¶Å±ó°0\Ô`Oi?¦Qz\êybÎ–\×','',0,'?'),(_binary '¬{\ß0l(Æ²u9,wS\Øu','wp-includes/js/media-audiovideo.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ž\ç²\n\â\Z€»\Õ:\Ù`',_binary 'O~ÿ>²[Dü*b\á\Û5v\âm›dyA\Zi_Ž\élB·û','',0,'?'),(_binary '¶ÿ\Ý\Æxvº€”Pº\ázC','wp-content/plugins/woocommerce/templates/global/wrapper-end.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½2b\ç4UrA—u',_binary '\Õ<y!\Ôsô\èšm@~ów¢C÷ç¾©üoÏ€\ï\å6|\ìòý','',0,'?'),(_binary '¹8µÓ…ýEù¼2\ï','wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-reset-password.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2ú™\Ñ)\Æa\ßT¾À‘3Ã¼',_binary 'Ï…\Ð*cö\ïN:\èg\íŸt_€†þ­`^ƒ\ÒÀ\Û	…/\é6s','',0,'?'),(_binary '½¤…	`g]ô\ákpÌ¥×²','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/select-images.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„†¿@˜µ2æ§²\ÜûC',_binary '\åšY‰»3\ä\ã÷\Í¦!úDQ‡D\í%P\Ê<|8Ð¶4c','',0,'?'),(_binary '\Ë¼…r`8`4§	\ÛH{˜','wp-content/themes/flatsome/inc/admin/options/global/options-general.php',0,_binary '|\Þ\Ö\ç·\á\ÊÃœ\\,6',_binary '|\Þ\Ö\ç·\á\ÊÃœ\\,6',_binary 'ô’’\ÈÅ®i\ÈC¼\Ñ®?4\ÂÁ\Õ\äx®€M¼Ž¿ðœñÊ¡O','',0,'?'),(_binary '\Öp€Eu•FBj\"c\ë','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/icon-refund-info.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ë\Î4&ò\Åm]5‰¤E‘2\Õ',_binary 'ýRöU\éc]X\Ñz	nJ¸ø\ëñ»\äJ\Ëú\ËJH²','',0,'?'),(_binary '\Ú;\0½\èðŠ\ã]\ÕoK\ÕS','wp-content/plugins/woocommerce/templates/emails/email-styles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'û¾¬\Ï1Aú±NSuo\ÍH',_binary 'ÿv`·¾Ò¯¹tÚ¿@h\ÊqttóõZq¶\Ò\èGPc','',0,'?'),(_binary '\á\ånZL\Ý2qiH½1]P','wp-content/plugins/nextend-facebook-connect/admin/images/buttons/fullwidth.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\Ú\ë¾>P\ÂÒ‹n‚°}',_binary '¢4»?øQ\ÉuÚ¾!f†²\ëyG\Z{uð\ï\0§Uœ’—¦Sƒ','',0,'?'),(_binary '\ä)!)\Ã6‘\å>}\É74','wp-includes/css/dist/block-library/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™‚\È\Ðý4¼rÂ›^\Ñ\Ã',_binary 'š\ãY\Î5Ã–\"Â¢Yµs\ÇY\êJ¥\ÕeèŸ’$%>\Ù\Ü\à','',0,'?'),(_binary 'ø\ÇñacúÓ…¾IP¶1','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/ParserInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(T^]\Ë+,¥ü¿O\Ñ',_binary '\ÉaY¥žƒRÜ¤6‡°W›dž\Ål\ÚfŸ“‰œió*}\ÎÃ¬','',0,'?'),(_binary 'ý©L…òVÿY’\àÿ*','wp-includes/js/plupload/moxie.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')ý\Ê\Ñ×šz\'Xj6yf62',_binary ' \'\Z\âMN\Ù\Åò\í]¼$P‡\'ˆ“½\01v‡a\nöÃ¿´I','',0,'?'),(_binary 'Ž£\Ó\ÓPb%FD¼ón','wp-content/plugins/wordfence/js/jquery.qrcode.min.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ð±\×Ô¹°´—Xp`me<',_binary 'wP\0\Øp\ÔzuYDS\Þz(W ß¥‰\ìP¾3$S‘öò‘','',0,'?'),(_binary 'Ž\î5M\Ü\Êh«y;‡ŒÁ*','wp-content/themes/flatsome/assets/css/icons/fl-icons.svg',0,_binary 'F\ë\Ý;\æ:\Âc\Ê\Ûð\ëù‰*',_binary 'F\ë\Ý;\æ:\Âc\Ê\Ûð\ëù‰*',_binary 'nöÔ–ýû©’Œ‚2ù7=\â¸qfc»\ìŠ\æ\Ë\nT¤ƒ','',0,'?'),(_binary 'Žñ8Z\Î3°0²$¨u','wp-content/plugins/wordfence/js/jquery.tools.min.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñ:-·\áEÕ x¡$\à¸B',_binary ',¹4\Ö~aT•lS fQO	fø\×\äTÓµ·\Ö;\Â\Ý)','',0,'?'),(_binary 'Žë·›Ô’x{˜hoÊ;','wp-content/plugins/woocommerce/assets/client/admin/components/index.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ‚”–e¶»\rÕ¿\Â\ã\Z¯b',_binary 'u³\à\Ö\Ê\á\Ê‰[¸¯.\rLEV~.\Ñzoö|','',0,'?'),(_binary 'Ž \éA$Û¤fCNö™37','wp-includes/query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ê‹³\Ë\Ø{4mø \Â',_binary '¥~2ð;ýS d£\Ìss9@:U=\Ý\Ðt\Þñ\Ù&$ˆn\0,¨','',0,'?'),(_binary 'Ž% s-›ª!´ó,Ñ°','wp-content/plugins/woocommerce/assets/client/admin/print-shipping-label-banner/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ýg8\Ý\Ë-KF\0e®{¼•Á',_binary 'ü\é=”{\ÜP@±SžB$ô[2™È†úØ¡4i\Ñ','',0,'?'),(_binary 'Ž(¢û×”\ïW\åh@=a','wp-includes/images/smilies/icon_mad.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Vž!\Ë@ýcû0\âS¸',_binary '\îÀ±½Šƒ§\Æd[O:Ç‡óžóµ\Ë³jl}òq\Ú','',0,'?'),(_binary 'Ž2\ÇÁ\\\×A{†<¼ž\ß`\á','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-wc-subscriptions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\è±g\\\Õ\ß\ZBÌ¶G™d?',_binary '“šÇª\ï¸ö\è3‡“a=HÛ²¶\ëº\Ðh\nôD[ÀGeRV\Ê','',0,'?'),(_binary 'Ž4/Ú +¸‹±x9(','wp-content/themes/flatsome/inc/woocommerce/structure-wc-category-page.php',0,_binary '\n2€_8]Ï¶˜É²|x',_binary '\n2€_8]Ï¶˜É²|x',_binary '™ú\Ô9\ÄM|0=\Þh¼\ÏI\îP—ø¢\03	³\nXmú\ÈVp','',0,'?'),(_binary 'Ž7ÿ0¥\ìÁÁ,š		M','wp-includes/sodium_compat/namespaced/Core/Poly1305.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Qy¾„£?¿;\é8žV\nø',_binary '\0\Ç-\Ø\Þ]ë®³‡•XEt)˜`\É\Å1\ØCý}Mr2\Ý/','',0,'?'),(_binary 'Ž8*†\Ó(m$IÕ¯y¯\rª','wp-content/plugins/woocommerce-multilingual/templates/multi-currency/currency-switcher-options.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ë~)\ã†LL_Ú›úÛ€œ8',_binary '4\ÆÔ†%ûI‚7\Ó,\å;rIa~x\Çb:Rõ„b=gŠ','',0,'?'),(_binary 'Ž9 •Š¬>Ý´o\Ô e8xy','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-emails.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '26¥ 7P˜6S—±}k)',_binary 'r?¬”bqú‡i\×³\í.VFô³‰%Uˆ[#…„\éj_›','',0,'?'),(_binary 'Ž?=ýÈ°\Ö\â\Õ2yQ¤','wp-content/plugins/woocommerce/src/Admin/API/Init.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±dp6£†\\	‡’>7[J',_binary '„‘\ä-6G\çÿ¯Xúv|.HO\0¯!gN©®f\ï\Ó	3\Ö\n\Ôy','',0,'?'),(_binary 'ŽCað.-Ž%b)Ì—+','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-report-top-sellers-v1-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\ÕÄ¦mS¢\Ã\Z¡\èQ',_binary '™ÁL­l8isnp\Z™\é~V\ä	ûYyQHZ(¹\Êq\Â\Ý','',0,'?'),(_binary 'ŽC ,Ú¦ˆR1A\Ä	X\Ú','wp-includes/blocks/latest-posts/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¢ò.\ì\ÂB¥Â¢DS\Å\Õ\È\æj',_binary '~\'uq\0ý9£yR¢b¨FÁ„a“ŠyýÖ¸;«F³c&','',0,'?'),(_binary 'ŽE‘H»¨ª!¨£Áh€<y','wp-includes/blocks/site-title/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\â\"X¼\"OK\Ç‰9\0š',_binary '}	®þ\Ð‡k_[3\è?_ðFx\âa\é–™ü‡þ','',0,'?'),(_binary 'ŽJj1>ûq¬a\ïKž\ß=','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/prices/utils/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hc$Žõ£µ1mú\Ù{«r',_binary 'n7¦\Ù\Üc4\'³\ì8¬Ì¾4Ñ¤h…¨^ÐÌ­—\ïý','',0,'?'),(_binary 'ŽW4øpv8òK¥óÞ–±','wp-content/themes/flatsome/inc/admin/customizer/img/logo-right.svg',0,_binary '\ÑGduÆž»2Xöiy­J˜Š',_binary '\ÑGduÆž»2Xöiy­J˜Š',_binary 'd\î\ã÷[\Ã-G&½\ì?\çk\ãQ)´ut®þmƒ=ô‰úC‰–','',0,'?'),(_binary 'Žf+µ@Uý\ÑjIŠòÀ\à[x','wp-content/plugins/woocommerce-multilingual/classes/product/Hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ„[C] 1”r\ì\íN?œ',_binary '¨¡h­Œ†Ë‹Os¬r0\Â^Zýñåƒ³‰-\Ý:X <Z','',0,'?'),(_binary 'Žg\Z»»\\\Û\rž`=ƒm­','wp-content/plugins/wordfence/modules/login-security/classes/model/tokenbucket.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\r¶L÷\ÃÁû\Ç{Ç€õ',_binary 'ü\ãôVZ+\â&ƒ\r\ÉÐ©\ÑU;ÿL)R\È!Óµ\Î','',0,'?'),(_binary 'ŽiŠ©µB\Èj\ß\Þö\Ö\ï]','wp-includes/sodium_compat/namespaced/Crypto.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—G8©J+œô³‹	¾ z',_binary '>8œ©¸\'X\ëi\ÔUbýGÐ½\Ø,<T`6\ä¹\È4Ðð','',0,'?'),(_binary 'Žs¿\ËÒµkB©¸xF Q„','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/media-left-large.svg',0,_binary 'N\Z‚Áf\ãp¬\ËFCoO`',_binary 'N\Z‚Áf\ãp¬\ËFCoO`',_binary '[¹!e\Ð^˜{ü›¡\à\Ø\Èa wxeöQ‡¦¹\ï®','',0,'?'),(_binary 'Žy\Ú_Z¶4\ÛFúª±’{]«','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/AddingAndManangingProducts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '››õK\Æ\ç\Z\Î\Úl˜û¤',_binary '„f\"y\×Zyóò\Â\â1´I0zSn\ÆZ½ˆr#¶x','',0,'?'),(_binary 'Ž{¨\Ôÿo\Õ\ß˜\à¥','wp-content/plugins/woocommerce/assets/js/admin/wc-orders.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h3\Î\'\ì¬\Âh«œ‹…ÔŸ\n{',_binary '\Ée]PQ)Ÿ†0†ó‡b¶*ßŒ›™ò¾ñ i','',0,'?'),(_binary 'Ž„ƒùvü´ŠÏŒ\éŒY9\Ó','wp-includes/ID3/getid3.lib.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ã]üYw\ÄAW\éfü¨™\Ì',_binary '\Þ\ÞÌ²\ï\\15´\Þ\Í$¡R\"rŸû\Ç3¼­ò\âœbé¯‚ý','',0,'?'),(_binary 'Ž‹1;§K¸5ôKc÷	\Óy¹','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-image-right-large.svg',0,_binary '»#-\rM	¥\É\á\\p$ˆB',_binary '»#-\rM	¥\É\á\\p$ˆB',_binary '®e+,\ÙÁº\Øv¶~\n“¬¡E\Ü#\Í\ÒZ(\Äõ\ZzÚŽ','',0,'?'),(_binary 'Ž\é~Œý«’/\0ù\Ë–','wp-content/plugins/woocommerce/includes/admin/settings/views/html-admin-page-shipping-zones.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²\ï¸K\â^Y\Í\ß\'¬S9o',_binary 'Œv¿lú\Ó! ·¼8¢c>\Å5¿öYø=L¯µ\Ø\Õ','',0,'?'),(_binary 'Ž“–Ÿðò\Ùù\0¹\ÖÁ[','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zone-methods-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Å\ÓK6  \Ä^\Z¦h\Ó[	',_binary '\ÝJlDS\ë­P\ÃùH°.\íñ‰\îÁ3•\ê?r–\ìñ«','',0,'?'),(_binary 'Ž™GµŸNJ~\ËÄ±•\"üa','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/empty-cart-block/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+]šôm\ïtš±¾,\ÐC\ØM',_binary '÷(ym0j%Ýª¬óò¿õQ›ø¢§ 0“\â¼\ê,M–ó','',0,'?'),(_binary 'ŽŸ…X’‚˜Höov\Ë','wp-admin/css/common-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\ÕÇ¨ªðáˆµÿ\'\Èÿ`',_binary 'ñp5\ÐÀ7\Ð:\Ýz²·\à\Óušz¦#\Ë&þb#\ÏH¬\Ï','',0,'?'),(_binary 'ŽŸ!N¨´D\çw®`¦ð¾[\Ê','wp-includes/js/jquery/ui/dialog.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©·pÁvFqÇ­\æò€',_binary '~¼Ò¬aX7,\éKø\Â\ÖC\Ær\Êe\Ò<+yÔ \Z\Ç!','',0,'?'),(_binary 'Ž¢:ƒ\âÈ \ÊÛ£—A[´\ï','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘U-07\ÜÀ\ì\n}m•\\^',_binary 'd¥Taš\ç\Îß°`+’>/!¶!ú\Û^bg$\Ý\n','',0,'?'),(_binary 'Ž¢\éXp¤\Ü\Ó\çŠ~0D','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HSalsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÐW¯oe±~°oB2ž_;',_binary '5ŸqõªSrL\ß]OX½¥˜‹sqˆ\Í\ìð+l<‘\ÈÉ’','',0,'?'),(_binary 'Ž°Ö—]NR¼\ïS{qv?…','wp-admin/css/wp-admin-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',*iµ“\Ðò†[p]ª¥<',_binary 'r5S­E\Ð?29/õ)\Êý_\íPJvþVhü\äú«\ÉR½','',0,'?'),(_binary 'Ž¿\Õ{(\ê\ÙË–\à\Ç\ßü=¨ö','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/register-components.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›Ì™œ–¨	ñý;óu\ï\\',_binary 'é¢° \Z“`\ßõ§F\æ>\èÀ«m8š\ÏÀ˜¨\ß\Ö@š\nZ','',0,'?'),(_binary 'ŽÁ\Z,zó\Õ§Ò”U’','wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª÷{x·üh\0C\"óª#',_binary 'g&\ÂP\îð2\rƒ¤I˜·ø+)\rkq·ŠƒAŸµýv+','',0,'?'),(_binary 'Ž\Ê6À˜]›GwøŽÛŒ\Ç','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/query-state/test/selectors.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™q\ìR†§$dóq\î\Û\â€',_binary '‚„\èwŸ{ù\Ý\ênÏ°ø\äž25B›‚,;‘$f–?','',0,'?'),(_binary 'Ž\çŽq5†$;sŸ\ËO','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/circle-right.svg',0,_binary 'µEžQH?­­ù\è‰\'\Î',_binary 'µEžQH?­­ù\è‰\'\Î',_binary 'ªýJ(†\ÒlÙ»\à,\Í\æ!+ðæ¹¹¢Lc‚õ÷\"‚¨','',0,'?'),(_binary 'Ž\çòÕ£3q\Ü\Ø¢¤§‹','wp-content/plugins/woocommerce-multilingual/locale/woocommerce-multilingual-es_ES.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŸG¢8G\\ {wy\ì\È\ÒL¶',_binary 'R\ÚvÁ6%2›JÐ²o¿o˜T§q\Ä:õ\ìô÷Iœ£Y3«','',0,'?'),(_binary 'Ž\êý[Šz \êC|i0;‘','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/FirstDownlaodableProduct.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pzg‹\ìñ¶ñ¢³n\ç’',_binary '¸X§\àñÀJ\Ã£\éfL7\ìÁ¼\rÑ«}ñ)\çœ[\ßL=','',0,'?'),(_binary 'Ž\ëDÒ€¸±!€Ñ¬»]À','wp-content/plugins/yith-woocommerce-compare/plugin-fw/yit-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eEcÙ·‘\ç=¹KrX',_binary 'g;èŽ•ºn{ÿûÚ°w’¥‹\\¸×µjK\×X\Ä\Ó\ão\à','',0,'?'),(_binary 'Ž\îOÜŽ$8ª‡J¦e»‚','wp-content/plugins/wordfence/models/scanner/wfScanner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ‡\ÅXŸ)\áf´\Ú.\×T\é',_binary '3ƒ/x\"¯úW—µ\æh@™œ fP\0]ùˆ½º\Ê\Ë','',0,'?'),(_binary 'Žù*v\Ñ<ýTCœU¿XJn','wp-includes/blocks/column/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\í:|\n¢Draû¡\Ç|¶=',_binary '\Ô€©ì™“\ÝÁ7t`Ð€¨8y\ÆÒŽ¦\ÚÜ³\ÕH¹\"','',0,'?'),(_binary '\0¬¤ß¯NIž\É\ë','wp-content/themes/twentynineteen/inc/back-compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô2Nª\Ô\Ø\ËR,¨C;b´',_binary '3!\Z\à=$d\Öx;$ª\r­\á\ÃE\Ïg¾\æ\Çü\íT\É{\r','',0,'?'),(_binary 'ÿVÝ¹\ÌZR\nW“q±¤','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/image/constants.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ë·^Š\î\Ô\è\í·jù@l‚',_binary '¨±†\Ï=Š\æ˜k\àÂ®”\Î4“2(ª.SZóõ\\PÀ]\n‹','',0,'?'),(_binary 'VñÜ‚0\0Uÿ`·5C>','wp-includes/css/dist/components/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œ\à¢\íF´œ\Ö=ò«\ØWN\Ûý',_binary '\\/˜Õ«þe§ù\æ‘\àz¦\íúm`\Ñò*µERŒ	7mO','',0,'?'),(_binary 'K­Mp-\ìhsŽy\Æd ','wp-content/themes/flatsome/woocommerce/layouts/headers/category-title.php',0,_binary 'oi4¡‡UF`7¬4¸D\ëb¢',_binary 'oi4¡‡UF`7¬4¸D\ëb¢',_binary 'wr«\èû\'J\âË¸_’\é‡úÁM\â£™ÀWi°¬e—\ß','',0,'?'),(_binary '\Ü	µ6­\Ü!\"\éP	','wp-content/themes/twentytwentyone/package.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž·\ÖôxBü«\ÈC­²Xñ]',_binary 'uj¹\Ù9B\Ðút\ë\rõL/\Ê\Âð\á.n‹]\Ø2\Æj1C]@ø','',0,'?'),(_binary '\ZŸ \ÜR³÷¹[\Ö\'\Ý>','wp-content/plugins/wordfence/css/images/ui-icons_777620_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ëJ—\\c7’yþx\ÆÐ³l',_binary '³~À\ÍqVš\Â¯¾*\'\Å1”¥¤š]3^‘öž\Í\Ém','',0,'?'),(_binary '$»Àªj¶Xž])D:','wp-load.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ýZZ—\Æ\áo\Õ¢\ïT',_binary '\×^Æ•¤/¡¼\Ã&·€\Õ){\'ªµ:&[[°B•Q5³N¾','',0,'?'),(_binary '%nT,üöÞŒPk\ß\Ù¯','wp-content/themes/flatsome/woocommerce/layouts/category-none.php',0,_binary 'E¡Fo®\Úf\Çÿi\0\ÉL\Ù',_binary 'E¡Fo®\Úf\Çÿi\0\ÉL\Ù',_binary 'ÛŽ—¢‚%•±n«K;n:8q\ÑðýJz4\î\Ãqñ\0	‡','',0,'?'),(_binary '&ƒ9%BHnú\Ë\í\Éð\ë','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.pie.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ðótJª£½$ *5\Ë\Îm}',_binary '¨\ÕA²ý(\ë$…+IsØ£U¨7/\ÚÐ—ùTöa\ìû½¬','',0,'?'),(_binary '*\ÄCR†1Ÿ\0®\å¥Gó0','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/test/with-category.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ùõ1\Í}ù§§\ÉbIoMŒ%\'',_binary '_\ìø³˜»£Ž„\"\ÚR‰2‡I·.1	ø\Ã\Í/\êŽo','',0,'?'),(_binary '0\È\'º\Óih_”0 ®.\Ù','wp-content/plugins/woocommerce/src/Admin/API/Reports/Customers/Controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\éø|…,®¶ýk#à§¨„',_binary '‡O\'”û¸¹\ÎX™û\Ý\ãÁ¤Ý²:ˆµ$›¡´øtp~sÿ','',0,'?'),(_binary '2\ß\\\é17Õ€\Ôwi„{','wp-includes/js/dist/vendor/wp-polyfill.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é³~žG\àÈ‘œ¶y+õ',_binary '‚€\Î=Ÿ£gM‰µK;E¬\Ë\ÐocÿÀþ	Ž\0','',0,'?'),(_binary '3:37\ì”\àJ÷Êƒ@W','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-posts-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\è*|\áú.PGA0\Z³« ',_binary 'nM%g&\ØuÉ¬‚U#_}=³ð\íi\ê\á\'Œ\à+¸-`~·','',0,'?'),(_binary 'G{?0®\Ý)\Å\Ë:µk\Ù','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/woo_products.svg',0,_binary '0>\r\r²\êðAWKRz17X',_binary '0>\r\r²\êðAWKRz17X',_binary '\0\Þ\è.6ô™ˆ^ûlc¿.ñS›\Ìl˜˜\ïþ›õs','',0,'?'),(_binary 'H¾)™\ë†’\×\ÇjH\Ñj','wp-content/plugins/wordfence/modules/login-security/classes/model/text/javascript.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\í\'B\Çl\ËIf\ãóž\Ö\"c',_binary '³¹O$ˆ\ÓU?\Ñ\nR¬”y–‘\ìV\à³=‡Tõ­ùZ','',0,'?'),(_binary 'KÎ¯\ßy6\ÅU¶	,…','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/state-input/state-input.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ù\áD\Ëg”B³.\"\"€\Ëô',_binary '“uiøÇŸå¥\ÙEB\Ýu$´\èX\r32,\09¤43Ë ','',0,'?'),(_binary 'Nsfº#†@Q;§;¾{Ì»','wp-includes/blocks/query-pagination-numbers/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O6\îÓ©‘\Å(\ÎP\ÞQ7°',_binary '^`\è§\éõwPz\Ø\Ôl»\ï¾¥\n\ËÌ“u\0k\Ç\Ô','',0,'?'),(_binary 'Sô\ía¤œÿ\ätrÿ¸‡\Ñý','wp-content/plugins/woocommerce-multilingual/screenshot-1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\ë\ËX]@>7€I>›8',_binary 'µ±ørûÕ ?\ß\Ç0\ØQ\Î\â¯v\Ó­FW*`n\ã™(„Ž\×','',0,'?'),(_binary 'Wyñ\î)[\Ó	FT­:}','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't	‡\ï\Ï\Ëm!¬\Ô~A^óS‘',_binary '®÷…#øŠL?ûOM6r\Í/W_ ~•¹¤¦þ','',0,'?'),(_binary ']	%–úÃ­Q\è¨t{iª‚','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/message_box.svg',0,_binary '®u4=kQŸ·B«\"°C',_binary '®u4=kQŸ·B«\"°C',_binary '{¼›uŸXû^]xJ÷\\~„<•­.µ9ýŸ\ã]¤f','',0,'?'),(_binary '_\à:Nãˆ\ÊmsO­òp0','wp-content/plugins/woocommerce/assets/images/onboarding/google-listings-and-ads.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'š8„Ø¦]Š\í\Ø|\Ø\àƒ\ë',_binary '¹j,\ÚÇ‹\ÄÛ–\Å\Çt=P#(·ó¬W¬Íš4\ËÞ´','',0,'?'),(_binary 'c\Ä\áO\è¤\ë-\äƒ+oe','wp-includes/blocks/block/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€,ŸZ¹q\Ø3)½ ·',_binary '0&#\Ô\êb”93LC\0‰Œú\á§vX¬ª<cÉ˜½TX','',0,'?'),(_binary 'd©%Ãƒÿ\ãyD\àR>nuk','wp-content/plugins/woocommerce/includes/admin/wc-meta-box-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hÿ^u£ˆ]¦U\nb\è\î¤Q',_binary 'ýíŽ³\ÃF\Ðõ¦\àQ>µ€=ÀMà£›9­ó\î¼Ñ‘3Z','',0,'?'),(_binary 'fmŠ_\rw<\ép\Û}ö˜','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/country-input/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õ	\ä`A‚™í¯¯‡\ã÷‹O',_binary 'ô˜ô‡\Ë0vÀõ<V+\Zn+*²ˆÑºMZÐ»\ØA(t“9','',0,'?'),(_binary 'j%M»Éò\Ñp)Z‰\Ä','wp-admin/images/generic.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'øŽ•ÿ\'Š[#98!\Ð',_binary '§{u\ë£\å\ÕK[gÍ†Ex\Ü{¥:ß¼‚úlÍ¨G\Ä«','',0,'?'),(_binary 'm†’N°‹6\\Á\Õiý\ß','wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks/Shipping.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'Á\ÏVOU×“‰¡F•t;ô‹',_binary 'Xó\Ðf\Ò\Ò>Õ™\é45\ì.\Þ@d›¦\rg$’ó-lu','',0,'?'),(_binary 'o@Í•\é¨@LÎ¢\0µ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartSchema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':Þa9ýV„JföJ\'',_binary '—H¬¨öe[Qñi)\Öi¯€\r®\Ï!¿o¼õù±;‚D\Þ','',0,'?'),(_binary 'u³\Ö9RrÁT?•Fó','wp-content/plugins/woocommerce/src/Admin/Features/PaymentGatewaySuggestions/PaymentGatewaySuggestionsDataSourcePoller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×\0N!ûd‰\íöƒ®',_binary 'ä˜‰\×x|\'N^b\é˜+i\nŒ•®\æ\È/f3•3\é_GÁû','',0,'?'),(_binary 'w˜9÷ým0ZŠ¶k‚%','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/blocks-registry/test/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ôk„¯”š\Ã\ëO\Ð\Þ\íf',_binary 'D\ì÷)\Ñ?gÔ’škz˜;E\n\Ó>;\É_–’©ü\Ò@!k›©','',0,'?'),(_binary '{G\Üþ@7\Ô«\àw¥\Õùr','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-wp-share-local-components-setting.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D(sýô˜HíŒ‡zY2',_binary 'u||¯\á}³Ø¹\ä\å®\Ë6ð¯@fTF\ØLQü*','',0,'?'),(_binary 'ƒÊ€ò©µ\×B HZ<ª','wp-content/plugins/nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ë«@0¨›¢\á‚<¹°œ',_binary '23|[«1\ZÁs\Ø\îEr£Yz\íº\áN@@\äþ@F\r¶š','',0,'?'),(_binary '‡`0oú§»*…«„jd','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/metabox.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\"\Ø\ÑG[\ËBø¼\áüÀS\å½',_binary ';§Gg(k\ÅN\ÕY\ì\Ü\0\ÉÀ†úw4|WyNl;žñZ\ZW','',0,'?'),(_binary '’y\ä0„8\â\ÌC\Ý\éÔ§Y','wp-content/themes/flatsome/inc/admin/customizer/img/portfolio-bottom-full.svg',0,_binary ' ™{\å7‘U˜4Ò£!`\ê',_binary ' ™{\å7‘U˜4Ò£!`\ê',_binary 'ð<EöøMÂ°\áXøJ\Ô\Î_vžwfhn¶}Ut©hñ†','',0,'?'),(_binary 'žBAiºÙ›*Àq\æ\Z- ','wp-content/plugins/woocommerce-currency-switcher/js/options-1.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬­nn¹B¢Yü\Ç\ÓEª¨\Î',_binary ']µµX.\'SŸ1=\ïœ]õ2k\È•\ØX·\Æ\nCi\ä','',0,'?'),(_binary '§ðv\é*~Žý\Óö\ãß','wp-content/themes/twentytwentyone/assets/images/playing-in-the-sand.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%¢\Ð8I/CM\Ä\àx\Ôø',_binary '\í˜\ÞW}u·}€\ævœˆm\Ôñ©»7=EðÀK\êY4','',0,'?'),(_binary 'ªÖšŠX\ï\Õ!Æ¼','wp-content/plugins/yith-woocommerce-compare/assets/images/08-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fJ¼h\Í\Ú]¯•\n/z',_binary 'ð?¾w§0ñ¼®†\Û1\Ì\Ð\\\Zvyqš\ïL\å\Û','',0,'?'),(_binary 'º\èEH\È\ê[•c¼=_Á»','wp-content/plugins/nextend-facebook-connect/includes/compat-wp-login.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1é„³¡dŽ\Zy\í·ÿ+\Ê',_binary '\çN“\ÔoŠð\Åa#$}(7RdònCº\É8<°¯X','',0,'?'),(_binary '¿RKQ\ë5v-¼ü	¹ò','wp-includes/css/dist/edit-post/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ýk@\Ø\Í\äDˆ\ä\Å\Ïl',_binary '(„\\/]\Ê!.~w§x÷ºM¸ò¢¯>J\å(·WÿˆUfò','',0,'?'),(_binary '\Çq—ôë»£D(„¶‚j‰­','wp-includes/blocks/list/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Õ¢&EÓ®q—6•\Ô,×”^',_binary '¼øh\Ì\ÝÆ™õƒ4‚¹—\ÚÄ¡\ä\ê\Îo›‘/F','',0,'?'),(_binary '\Ü;(Xp`Ò™\Ö\ì‘pÝ·','wp-includes/js/plupload/handlers.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iŒx\\\Â=;|ò@\Øn‚ò¡',_binary '\0x\0=¦^?\É\Ü¦:ª\ì\ÏzˆBx\é·@’Ó´ð','',0,'?'),(_binary '\ë\È%Xg<\r\ÅTô\ïiŸe','wp-content/themes/flatsome/inc/admin/kirki/modules/selective-refresh/class-kirki-modules-selective-refresh.php',0,_binary 'B±»2X‚‘A\ËjÄºŒ¢',_binary 'B±»2X‚‘A\ËjÄºŒ¢',_binary '³Š×‡™žz‰µ‚¹ƒ\Ü\ÊÀ0{H¬<žù¤©\ï=§Œ¨\Z','',0,'?'),(_binary 'ø‰^\Ï\ïZ0k;\Æ&ž','wp-content/plugins/ti-woocommerce-wishlist/assets/img/rate_us.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”¡±?—øóºñ¿ƒúA',_binary 'À?9\ß*G“¹)žS}‡q\ÃV±n‹L¨\à„\ï\ïõ¸\É','',0,'?'),(_binary 'ût÷0\Ãgñ»a†/\Åýž','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~ˆð-\Êò÷Œ´\Üx\'·	',_binary 'Š™{Ú‹þ\ÂN\ìo\Ü\×#XÁ+Xe\'¢£Œ†\Ï_…\Þ\å\Ç>\Z','',0,'?'),(_binary 'ýv}!pe,¶ƒ\Ë\Ó!','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Tokenizer/TokenizerPatterns.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':X˜å´º¿#\0s4&½',_binary '…¬p²˜‰< `ˆdEgÀûkÀ-h.\Ç\Ð\ZCx‹w¬«g','',0,'?'),(_binary '\n™qo\ãqZVyXœ¿9','wp-admin/includes/menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#&›\Û9®¡hE\Ãpú¥6­',_binary 'Çª\àˆs»¨E\'Áò\Ó\\l\ÊD)i¸$\ë´Ž«§q','',0,'?'),(_binary '/A	GO¸¤tp\\M','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-actions-block/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é‡Ï¦¹^9xN\Ã7\ãl\Í',_binary '\Å\Í–yhB/¿~®¼†®\\«\ÖÇ‘‹ù\Ë\ètŽ\Ô:¦','',0,'?'),(_binary '9	€	¦¬r­\ÙZ\Ä5','wp-content/plugins/yith-woocommerce-wishlist/assets/css/unminified/themes/oceanwp.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ò^¥;C\rŽ\æ\Ð\á\îõkˆ~',_binary '±_lM&bf¡òk\ÈÝ€,l\n>\Îû’„ «£º±º\Öi','',0,'?'),(_binary '÷?þRƒ’`=‹j\Î\Ð\à/','wp-content/plugins/woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Abstract_RecurringSchedule.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\ì•U\r\êu/½\Î\Ñm(Rd',_binary 'sy|)\Øú²\'CBØ›efO8m¶I\Çl\now¥a|­>‹','',0,'?'),(_binary 'õ\Ê!)Q‹,t2˜A`','wp-content/plugins/ti-woocommerce-wishlist/admin/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ3v±›\á\Ô\ÆLMýý\×,|',_binary 'õŸ\ÏÞ2£”\êüD’l“<ˆ©\Ôhõ¸MZVk ','',0,'?'),(_binary '!+ð\ÒUñ¯ÿšUœ„\n&','wp-content/themes/twentytwenty/classes/class-twentytwenty-walker-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Î1\×Uº}yÄŒÁ¿\Æ',_binary 's\à¦ô¬˜\"¾\Ê\á[\Ò\0\á@l\Æ\É\Ô\â\ÝkSž€¼&Vu','',0,'?'),(_binary '.\åòžûf1\ÔX-t','wp-content/plugins/ti-woocommerce-wishlist/public/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ð™ .ƒ‹J5n>k«w.',_binary 'õŸ\ÏÞ2£”\êüD’l“<ˆ©\Ôhõ¸MZVk ','',0,'?'),(_binary '.ý“y\ßZ­Gr·—4j¦\Ö','wp-content/plugins/woocommerce/includes/shipping/legacy-international-delivery/class-wc-shipping-legacy-international-delivery.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!c–J\×\Ó\0eô:È²6\n',_binary '-Uj\"Á\á\\V½¸®6ž”Ö”\æTZc\ß\Êñ™ø\ßz9','',0,'?'),(_binary ':¼Àga¶‰=BÁD\Ý#³','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-dropdown-pages.php',0,_binary '\ç\ÞM\Û;B\î,÷k\ë4\æ',_binary '\ç\ÞM\Û;B\î,÷k\ë4\æ',_binary '\ÆppoÞ¤–h*\ÔDO€8\\¡yq\Óa-{\íµJC\Þ','',0,'?'),(_binary '>S¦‹©ô!9+ŸI\Ýn¯\n','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-guards/number.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ûw‚­\Õ\æL\ìŸa˜‰',_binary 'õˆK-eœiŸª1Ó¸žA;\Å\r%·\Ì}9}\é0b¥¨)I','',0,'?'),(_binary '@\ÙËž‚lÍº$Àªª\â@\í','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/upload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿°Ÿ4ú[R,ˆÉ‚ƒ!+',_binary '@è›‰\0ý\ÔlL ,‹qˆ,Ut•®©\ã²\á		@¼0','',0,'?'),(_binary 'C¯·Ú²}~;¾nÜµ','wp-content/plugins/woocommerce/assets/client/admin/experimental/index.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e»+aß¨Ûƒ‘Ö¦\Ön\ì',_binary 'Æ£\ÔÙ¬0\Å\á*bË´¦YIl‘õ\É\'ýù#!\Z*P\á½','',0,'?'),(_binary '`\Ø@‡¯ðü\×\ÚYE\î!','wp-includes/Requests/Transport/cURL.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\çòw%Z*\ËõH †²',_binary '\Ö~°™›\â÷c¯yhG³K›®SŸ\îhuP¥¦¥ú\Êm¢(','',0,'?'),(_binary 'p\Ý_”\Ä0ƒI“J´3','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UR)¸³}ñg)vš¤\ËWs',_binary '€QT±\Ø\ß@\êkˆ´›\Éðš»«‰\"¬!–9Cˆ¢\Ü\èa','',0,'?'),(_binary '|_e¬d\n\íbG4¶','wp-content/plugins/woocommerce-multilingual/inc/translation-editor/class-wcml-page-builders.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©G·\éÁ\êšKœ…Af®',_binary 'z²cŠ±–ƒ\æ$’Ý¼Ñ\Èt\Þ9·Âˆ{[u\ì\äX>Xp','',0,'?'),(_binary '€Í‹u <]z\Ñgð>','wp-content/plugins/woocommerce/assets/client/admin/chunks/analytics-report-categories.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²›eÀÿ$k\0˜5\È/¡}',_binary 'mÓ‹hqS\Ã$\Ä4§ÿð\ÌI•lMýHò{+öµ©³‹Û‹','',0,'?'),(_binary '‚‰dž\á\è«\Z•(¦\ËO','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/attribute-filter/frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\èPWk‡Ö¥=Æ¤Ž\rsZk\È',_binary '\ÍCY£\Ý\ï1.jÿ\Ím\ÅøÙŽþyPÑŒ&¥C·Ãœ','',0,'?'),(_binary 'ˆoP•†Ž\"4Vc>Žo','wp-content/plugins/woocommerce/includes/interfaces/class-wc-webhooks-data-store-interface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\ëÁÀþn\ÌE+œ_\î6\æ',_binary ' Ì‘\n\Û\ÍOØ´´Š½.‹<;Z$Ue½-\Z\âSÁ\Ýyû¼','',0,'?'),(_binary 'Žþ[Pˆ\ê\Ð\Æ\ë\Z?r©K','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-accepted-payment-methods-block/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ó\î\èw\ß+\í\ÃF\Îÿ‹',_binary '\\”lÛœvF°\ÖR\í\ÍI8\â\\\ÜS`»!ù\î\ÕÞƒ\Í\Ü','',0,'?'),(_binary '•\\­A\Ì¥b¸\"“c¨3','wp-content/plugins/woocommerce/legacy/css/twenty-twenty-one.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹!\rŒ=¦¦2\ÒÇ´@¦jc',_binary 'ùV\Æ\Ø]\Í[št”’{\Þ;†	\ÃnÀô¨ym\Û$®u½\íœ','',0,'?'),(_binary 'X,ô,þ‚IŠ7Š','wp-content/plugins/woocommerce/templates/emails/admin-new-order.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A–5=©C\ß\É[s\0=	',_binary '\ÆSRª£\Ê&º\ç óö\á›ûümxœ¶ Mt\Ý\âˆg\á','',0,'?'),(_binary '¢}\×F´e´l\É@h','wp-content/plugins/ti-woocommerce-wishlist/integrations/advanced-product-fields-for-woocommerce.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T3-°A>ùýº\Ä1³Mnûy',_binary 'Y²I_\ÙwE‰Oot\èÊ²Œ\ÉkN3Ú‘‹ÿ¦ø–Î¶nª','',0,'?'),(_binary '§UÌ›	\'CÔ»ñº\ÏÚ«\Z','wp-includes/images/admin-bar-sprite.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\Ï¤—:€W\Ê\Å\Óþ^',_binary '®ôrN!ú`VO´c«\ãK”\ÄviÕ€{Fn\Z£Ále','',0,'?'),(_binary '©4†ø#Õ°¨}ï‹„¯£','wp-content/plugins/wordfence/modules/login-security/views/manage/code.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\éÁj-\ëþWš.\á{‰”@',_binary 'i%XðY`FmZž¬\ëE^ab}rž_Eÿ Š¤3\Ð','',0,'?'),(_binary '¯\Ð`ü>\Ün”b&','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/active-filters/utils.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{=~\Þ;”\ç50g\ì~mÁ3a',_binary '¨©†¦ZD¿7\ïnóyŸ²\ÎI.–}€[v\Ì&wN\Î7','',0,'?'),(_binary '°ž¹+¢N \Ú4•l\\/8','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/InstallJPAndWCSPlugins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Å0p\Õe~÷0ó:”|\0m4',_binary '\îª\0\n,\ÄRˆ\ïÒŠöRˆ\é8xUO\'aÁ&\é’Á+','',0,'?'),(_binary 'µü>¹\0‡ ¼\Í\Ñz²\Z','wp-includes/blocks/navigation/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Æ`’›¡½W4\ÖXÍ¸¿ñ',_binary '\é®øÛ˜\ÞC4ù\×#e)y\rÙ¹\Ü\Ø#Óµ_Uu\r\n','',0,'?'),(_binary 'Á\"\êZ0\0Ø¿e…Ô¦p\ß','wp-admin/css/admin-menu.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*­›_õÁ\r©Q†1¤',_binary '\Èc‚h\äõgas~yI\êY·=GÁ}€Í2Ÿkx…r','',0,'?'),(_binary '\Â¨ˆ\ÒüF!’\ì#[òª','wp-content/themes/flatsome/page-blank-featured.php',0,_binary 'ñž¿\">¬[\ägh­	 \ç',_binary 'ñž¿\">¬[\ägh­	 \ç',_binary '\Ôt‡S\ãÓ…Š`À\ï©µµˆ`¼ò¶\àrÐŒM€)p','',0,'?'),(_binary 'É§g=\àó!&?\Ô\ì™#','wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-cpt-unlimited.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€†‰537Ó·Q\'~\ïƒýy¤',_binary 'i2‹\år3¦!2ºø±\0Àˆ\nWUSsJö\Â..¿Ÿ\nµ','',0,'?'),(_binary '\Ì\Õ\ÄõmN¢«4w|hA','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-coupon-form/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l¿\åje$º/¤\æ%7˜)',_binary 'Ù·ô—¾WG\ÅX\n6*„oƒ‡\Õ>³­¡>\ìPñhli\ï\åH','',0,'?'),(_binary '\ÙUö\ÂU\Ìq–7¸‰','wp-content/plugins/woocommerce/packages/action-scheduler/classes/migration/BatchFetcher.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E“[~%4\È °³\ç\à\â',_binary 'ô’QF‚\Ï\ìµñj¢œd6K\ël(xöNg¾žXl\×tý','',0,'?'),(_binary '\Û\å{\çpdÿZ“ºô¡”','wp-content/themes/flatsome/assets/img/payment-icons/icon-paymill.svg.php',0,_binary 'zõ‡;7·\è°\Å\Å;WB‹\æ$',_binary 'zõ‡;7·\è°\Å\Å;WB‹\æ$',_binary 'Òœt­\nžG\ï¼J³\ï2\'™Ýº‡\áÎ€þ{f','',0,'?'),(_binary '\Üþ¼¬\"8YŽŽ74·O<','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Util.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'di²BDõJòˆ¯D¥5\ÃO',_binary 'N«a‡º–iB\Ïñ\Í\rø\ÆAO]¶¬©@\áPµ\å','',0,'?'),(_binary '\Ýò®–x8[!>ñX','wp-admin/includes/class-wp-users-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'šSzŸ†S‘§`4´u',_binary 'Zý\ì\ìù…\æMRI\É\î¡Vf)MP\rÚýZ•-Y˜\'','',0,'?'),(_binary '\ànÁf¯^V˜pÃ°\Z¬›º','wp-content/plugins/woocommerce-multilingual/res/js/wcml-attributes.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª&\ÇD€\ãBg›·úz',_binary '•0_(4÷[òÉ‚öˆo‘–ñ\rz\Ýbúd},¢D(+','',0,'?'),(_binary '\ç\á\ÉÒ­¨\ç^ò<N{Š0N','wp-content/plugins/woocommerce/includes/interfaces/class-wc-customer-download-log-data-store-interface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ì\Çü\ÙWœt\×kô@q»i{',_binary 'RKÃ±¯§ùVüC\nF!\È]òT£3 ûÍ›$\Ò','',0,'?'),(_binary 'ý\Ô$\í\Ùú>’Iÿc.$j¯','wp-content/themes/flatsome/inc/builder/shortcodes/values/menu-labels.php',0,_binary '\éE£\Åeõ\ÔF;öðC',_binary '\éE£\Åeõ\ÔF;öðC',_binary '\0Ñ M‹!£G½žò*›\ÏCúüT\ËZ~?´õ h£)','',0,'?'),(_binary '‘\í3“o¹\Ä:K=\Ð\ïQ`c','wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-server.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿{\Ë=ly›\ä\Ø\Øö-v`¬',_binary 'û<Z¦\î^;\á\Ø€i|\Öÿn\×(\éÇ®iÕª§¤ð','',0,'?'),(_binary '‘\ãue{X¡1\ì‚\Ñ\Ò','wp-includes/sodium_compat/src/Core32/Poly1305/State.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´¶Dú5\Û\È$Ã½\n	\à\'q0',_binary '\\†‰\"\ÈÔ¯-\r6\Þ\ëe\ÔN´ID\æºzB\æ\r\0ü÷','',0,'?'),(_binary '‘õ_\r¶bXÀ.DÇ¥&z','wp-content/themes/flatsome/inc/builder/core/server/src/Ajax/DoShortcode.php',0,_binary '|<E‚lˆÂ³ø~¿\à\è\Ä',_binary '|<E‚lˆÂ³ø~¿\à\è\Ä',_binary 'Â“\Îz;\Û8MyC{\Ë\ZÅ‡O2\éŽxŸv\nÛµ»M\Ñ\ØV','',0,'?'),(_binary '‘!KU\íVúf@—¢J\ï\Üô','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/products/OTGS_Products_Config_Db_Storage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—\Ø\è3™\×Fcy–\ß	I',_binary '\Ú\ä4ºeXú\ÑñR\Ï:\ãORþñF°\În¨SDUCˆ','',0,'?'),(_binary '‘/«\Ò0)­ºœ\Z\æ«','wp-content/plugins/wordfence/views/scanner/issue-database.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Š†S±\Ð>”ˆ«Z\à\à\Å\îG\ä',_binary '„’ñ\n«‡#Pw3Id\Î\È}Í‡%÷J\Õ\Ï\ì‡j™U¢\Ó+','',0,'?'),(_binary '‘0\Ïw\ëuª}dÞ‰›o.´2','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/use-store-events.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†\Ê\á\Ùký\Ö\Ü®-¡\ÈÜ¦H',_binary 'Rõ5ñ\Ü²\08bÁ\íˆË†±¦¿\Åj^\Î\Ïc\Ý2O†\È\Û','',0,'?'),(_binary '‘@‡q°\ÏG\Í-$¢©—\ê|\è','wp-content/plugins/wordfence/modules/login-security/classes/controller/db.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±\é\Ë\è\ÝgPÊ‹¾\Ùi\Õ\é[',_binary '¶DeJ°\Z\Âfxbœ	x\'Pó«·:™“¬ôÀ‚¦U','',0,'?'),(_binary '‘J³:¾Ÿ`A»q\ß\Ý\Å\Ï1','wp-content/themes/twentynineteen/images/pattern_04.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡µ*\î\Üû·\Ù$[û\Ä;ô\ÌR',_binary '#\ç\Ì(4ñ»2L{±\ê\å‚]ª¹¢¶{Ë–e~1\'øó˜0','',0,'?'),(_binary '‘S–\Æ÷ŠKK2iÉˆ','wp-includes/comment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’q‹Vÿ²2\î\Ýô…\ÂLÓ—ð',_binary 'ïœŽ\Ñ\â2¼9^Ub:õà§§\Ö\Ã{MU¦\É0ª\ÞaZ','',0,'?'),(_binary '‘V+¹’úœ\\Vñ\Ý9”¯;','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/empty-cart-block/icon-data-uri.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ay¥–Ü¶x?\Ç\Ö\í(’Þ¨',_binary '(dŒn®‡$\×\ÄóŠ8\"0S*gž€¬\ÞüŠ\Ìn','',0,'?'),(_binary '‘\\5ºÿe«%nR1•U‰\Ña','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-product-tag-cloud.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5Zÿ\ÞýU\áƒF,\Ï§',_binary 'ž\Ø/œ\Ä@ÿ­\äp†\ëWd’oýdø\ãO\Z³>s&öÉ','',0,'?'),(_binary '‘b³c#õcyÌ“\É','wp-content/plugins/woocommerce-currency-switcher/fonts/fontello.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YÔ•%–U›Sœ£e-u',_binary '\ç‘:Fc\ÑO8¾\Æ]\ÏDÍ±\Ñ\æ\Äigº\ÝÎ‹\'s.','',0,'?'),(_binary '‘tj»‘ÿ°\É\ê\á\ÏsŒ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/utils/update-state.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Vv¦—Jð(Ž¯·{³Š\ÄPp',_binary '§/R!¼hYõ-cbV°.+‹\ëÏŠzLJò\Ø\É\Ì«','',0,'?'),(_binary '‘x\Ã_,[˜\Ô5‰‰†ª','wp-content/plugins/wordfence/images/sort_asc_disabled.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×\ÜÇ#a]2…®¼\Ø\ë',_binary 'Ÿ‹²û[8l\ÛYô¢\ì\åcklþ\Û	™u#KV\Ù\Æ‰n','',0,'?'),(_binary '‘y\ßg‹\ízaU\"ƒ	XKG','wp-includes/js/hoverIntent.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ‰Ÿ‘‚\Ó$›øa¨½',_binary 'y\ìü\ßf`‡¶\îöDõ&\Å\Ü\ã•LI9\ì@q=¬º\ÄA‚L','',0,'?'),(_binary '‘„•‹Ÿ\×\"½zdyñ9\ßù','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-switch.php',0,_binary 'ut\æ¡×‘;9\06',_binary 'ut\æ¡×‘;9\06',_binary 'Ü„H¢’	\åXô;…ƒ:\æ •!Oy\Í\Ý)šnY¯Q','',0,'?'),(_binary '‘‡Gö(ª0`c£õg±D','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/TaoInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷PS\êõ5§gzgI\æ-²',_binary 'gè€þ\Ô\0Á©\×h<\Ä&”M0À\Æiu^ºÌ¸Lð_','',0,'?'),(_binary '‘·•Ý½b/Óª_h\ã™V+','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$­cš63>¿©n\ÛM\"',_binary '\Õ\Î\ßõ³üd\â®û\Ê1”Þ™Gp#·\\3\éføš\'\å.','',0,'?'),(_binary '‘˜Ñ¿ù¾›8þi3Ï','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/grids/grid-4.svg',0,_binary '4½|Wo–?\Ïnö\ì!¹\Õ',_binary '4½|Wo–?\Ïnö\ì!¹\Õ',_binary '_\ï\\:z.Õ²þ–]¬¡·cx0™•ôÿ^Á ¿@“Šª¸','',0,'?'),(_binary '‘›šò\Ð<GumkÀi#«','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/select2.min.js',0,_binary 'þjS»yùYQ2òÿMeró\Ñ',_binary 'þjS»yùYQ2òÿMeró\Ñ',_binary '.QH(*ö6\ÉX 1\ÌÓ·*gù\ÝÎ´6\ê\ÎC\ÝO\è#','',0,'?'),(_binary '‘¥ua\ê8—\Û\Z°S‘\à','wp-content/plugins/woocommerce/src/Admin/API/Reports/Customers/Stats/Query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÞM\Þý‚ÌˆtÜµ\ì|ð\Ø',_binary '^	ñ°¯\Ö Á\ÅR:N\ÓcxQK\ÆM?#ß–K','',0,'?'),(_binary '‘°þ•u¾¹÷\Ã\ê\Ñ4¿','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/class-hook-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñKˆ·\Îø\ÌUÒ—×‡º',_binary 'rým_u4\Ã\ÇgµA‡µ»z»]\ì&ƒ³A†-^i\Ì29','',0,'?'),(_binary '‘ºvRz\ì\Ú\èþ@7ò\ßg*T','wp-includes/blocks/navigation/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BÿY]øÐ˜\äaŠd·p5',_binary '³\"Qs1‹tØ”2w4zƒ~°8\r0P¬–‡·\Ð','',0,'?'),(_binary '‘º¯\'?h’ý›ôžô=U\×','wp-content/themes/flatsome/inc/shortcodes/ux_hotspot.php',0,_binary '´Z#ö\ÈgQ\Z¹\Ò~ð£h',_binary '´Z#ö\ÈgQ\Z¹\Ò~ð£h',_binary '9öõD^ökƒš€yn$\Ò\'ð¡–öWû“1þ¢uw¸','',0,'?'),(_binary '‘¼ñøªgFB˜ZÃš(v','wp-content/themes/twentytwenty/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹0\ã:¬µ9y]›\Ðndw£',_binary 'A\ï)€\å_ý“bK\ÃAzg&¹\Ék:·pÙ•¯\ëú’Œ`','',0,'?'),(_binary '‘¿<ü\Þý¦–j&F™','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/fonts/font-awesome/fontawesome-webfont.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gOPÒ‡¨ÄÁ›¤\Ò\ç',_binary 'ûú\å~8 ir®¿\Ý\nPp¯¦\n2òŠ5§DahBzP','',0,'?'),(_binary '‘À“·ú\Úõc¤\rŸò|›„','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/order-summary-taxes-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']À¼8R[£\r*š¦°š',_binary '\"p\Ï~™Yjsk.\Ù\ä\ì-Š<›^aÇ¥Z!\â%‹ÿÞ¢','',0,'?'),(_binary '‘Ä…)\\¨£´…`[×’\Ò9s','wp-content/plugins/woocommerce-multilingual/classes/wcml-setup/class-wcml-setup-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ž%	M\Z\ZuMjrkoS',_binary '(\n”haŒ…·\éž\éIŠ¥Ú¾n­¶x£Ñš–kÿ•','',0,'?'),(_binary '‘Ì¹\Å\Ç)m»u\ÆÁ+˜²\\','wp-content/plugins/woocommerce/legacy/js/admin/meta-boxes-product.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾ˆ\ãL\ÇJ)¾*\Ò\')\È',_binary '5\Äû(m	üÁÁ\ã\Çr—\ÜTF=-»A§0„¶[\ÓC\Ç','',0,'?'),(_binary '‘Ð‹“\ç@§\Ùw6ö¤˜—ž','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-category/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oS\É`Q«\'z¢Ê”±öAõ',_binary '¯\Ù&W¢¼‰¼± \ÖWßºó—½‘×€m²\Ùêº…\ì(','',0,'?'),(_binary '‘\ÜNTZt¿o\r–%²¯F','wp-content/plugins/wordfence/views/scanner/options-group-general.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tL\ëGa¸\0\ÝoÒ bY',_binary '2 6‰þl\ìn\rðñ\"¨ c¿:\ÓÆ…z\è¤vôJ1Ü¶\ßò','',0,'?'),(_binary '‘ð\Êq\'X\ÐD\Æd¼Æ©—¡','wp-content/plugins/woocommerce-multilingual/inc/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '388•h8Ò±XRY–m\Õ',_binary '\ÉbÅ‘\Ç\Ö5	÷‹8¤½Ñ“*2¡[ø«Œ\Zfû¼l“\ê','',0,'?'),(_binary '‘ñR„‰ûpB@LJ§ø','wp-includes/blocks/archives/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ø¾£Ê¡<”e$Š‹\n—\ã¼',_binary 'WxØ«˜7qC\nš\ÙùüŒ—ògñ®\Zºeü\Ê6-&','',0,'?'),(_binary '‘ö¤\í°\Ô\×­÷wT','wp-includes/blocks/button/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÛSV+\Ñ {\r½E¨ª\'^',_binary '-]=s\Ïfef–§\r\å»ù}\Ä+L\ÄòE\æ\ë;¿D{¦JnP','',0,'?'),(_binary '‘ýø½{ºi—†3\ì›o\Ê','wp-content/themes/flatsome/woocommerce/myaccount/account-user.php',0,_binary '³\ï&?ò)[\ã†ý\ßz$\Ôp',_binary '³\ï&?ò)[\ã†ý\ßz$\Ôp',_binary '¨\ÙkòK\Z\Z¼óû!\à£Tz‡€»´È¢3\ÃzåŽ´¤\Ä','',0,'?'),(_binary '’M~ŒõY¬&(	|ðL','wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-help-desk.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'óÆˆ‹;Nù,*=0\ã\n\Ô\n“',_binary '\â.´°A7ý\0\éY0\Ð\ÝÝ“c\ØMy(\Ñ6_[\î\"','',0,'?'),(_binary '’	Z¢\ÌØ†š4t±ŒdˆB','wp-content/plugins/woocommerce/includes/admin/notes/class-wc-notes-run-db-update.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Ã±ðþÂœ;\ÌN\Þ\Å\ãK›',_binary '8:\éb\í.-j‰Q\åMbPx¾§’¹2ˆ‹²Œ\à–\n','',0,'?'),(_binary '’o«/\Êdð4x`¤œ','wp-content/plugins/akismet/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\Þü»~SÏ¢y¹\Þk¿\n\È',_binary '\ì\æpqNZ‰õ¥L¸\ä\á\r›‹}¢\Ä|ÿ\ê\Í\ÛaMÂ•	','',0,'?'),(_binary '’\áht2òú\Ü;Wlš','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/js/plugins.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z’+¾—I\Ê(?	ÏPE',_binary 'Mm	ýùZ‘{2\n&Ÿ8\Ë|\ç\ïC6\Æ™Ž’u\è\Ö','',0,'?'),(_binary '’!~i‘Y™k”üD€p.','wp-content/plugins/woocommerce/includes/class-wc-product-attribute.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd­MT	ª<\"3”+¢È£s\ï',_binary '\ÏF\á²Kq±W˜>/C~‰Çˆ\Ù\Ïñ&\ã+\â\Â\ç{rŒ‡','',0,'?'),(_binary '’&¤\ç\ê\Ì1‹|.Vª©j\nR','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/previews/saved-payment-methods.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹¿N\â¹]«	\Æ?²:¦',_binary 'ž‹©ª\ÅK\ÙÇŠ€³ê¨¢\êÁdu\â,Ef8CÁµ\ì\Ð','',0,'?'),(_binary '’\'˜BEòsh:õpDx\ì','wp-content/plugins/woocommerce/src/Admin/API/Reports/Cache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\Z\Z5fYzqôVÓ‚p',_binary 'ª:\ÃD\ê•\è|\0óA!D	4·=EAï¼¼\ZDR\Ð\Ñl','',0,'?'),(_binary '’)STaó\îO±\Ä=†œ‰•','wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-taxes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜\È}\n$e7Àž=š\æ',_binary '!*Ê£²û\ÜuRð\Ó\Ö\íV\Â:z˜ä³¶ï‘³±gü\×k¯','',0,'?'),(_binary '’+Fc0m_¶ªùŒIi','wp-content/themes/twentytwentyone/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€;Nq\ìŠ\ÝºDo}qŠ‹',_binary '\ê‚0\Ü\Ö\\c…\åR\çhKÁ \Ûö!±¤Ž^\ÒW£\'ª','',0,'?'),(_binary '’/»É˜ü]ô^¤W\\ƒq','wp-includes/css/wp-embed-template.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦\ï¢@\è±\nOO3\Îhi',_binary 'ø“-|~\Å\Ý*T¨\ÍE\éN\Ó–.Ì´\àJ7\ëX\Ýf#6¼·','',0,'?'),(_binary '’>‰¹þ\í\È\ÎXi¯µ\ë	','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-fee/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(ŒÄ«[k\×m8\ç±J\Þ\à(',_binary 'lKŒÑŒV4A{©\Ý¾A^~‰2—XE\çý}–¤\å\Å','',0,'?'),(_binary '’@E Š\ào@\Õz˜|øs\É','wp-content/plugins/woocommerce/src/Admin/API/Reports/Orders/Stats/DataStore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '05#¡“\ÎÁ$†\Åc~gE.',_binary 'ø•\'/v}½»Š3üH4Z\ì\Ý\Î\Ê\Ê(¶\Ð4:°\"1','',0,'?'),(_binary '’C\Þ>±^\Ù\Ì~\'§›³X¥','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-products-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\àM÷D‚²\ÂGb‚\Ù\â\Òz',_binary '@]\ëœÿbÆ«\Í\Ç4)Zù\æ\ç–\Ø\ÝD˜õ\å%PªK\å\Â\â','',0,'?'),(_binary '’K0o‹XnÀ°©¼\ì©\à¨ø','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/payment-method-icons/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\àõ‚\Ñ\Ä¼ŒDr\Ô',_binary '·\ç\'lMc\ÏñLj\ï­4\ásøb]`\n\áš}\ì\Ê~','',0,'?'),(_binary '’LSg>Àµ\ÒÃ©&­‹o','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/class-plugins-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' a\æø~¡\Ñ:Ký­‡Hú',_binary 'q¸¹­ú”tµS\Ê6\ÍÚˆ\à#¡þžƒ5™›û…[\Ì','',0,'?'),(_binary '’R\Ì\ÊE».–‚F\'’žk¾4','wp-content/plugins/ti-woocommerce-wishlist/integrations/theme-kallyas.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j“þH>BO‘‰ú\Øs¯\Ä',_binary 'oK[ ¥ƒ¦B\\GApl®§ý¨}‰·CUö\n±\â?=5','',0,'?'),(_binary '’\\»©\rD¶c„®rÔ±','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/schema/selectors.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ž—&¯J;—®Ö!H\Z(',_binary 'Ú‚cS1`=B‰S\\-°S\Ô3k \é:ù‚±L„‘Î‹','',0,'?'),(_binary '’lA\'ÿM¦«š\ÛòLbÀ','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/fi.js',0,_binary 'µ€2¯ýž¼\ÚÇ¶\\¡7',_binary 'µ€2¯ýž¼\ÚÇ¶\\¡7',_binary 'Í°ñ\\Ê‰¾b&\Óæœ»,-µ\Öl•\Ý\Z™ÿ>\à8e','',0,'?'),(_binary '’q€ð™áš€ø\Øvl\Í÷H','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-ajax-setup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\Ìö¹Ú¤KTT\r\ïD­',_binary '±}\äÉ­Ÿ9C+vL´³Û„\Ýv\Ô§À\å%Fš\ÌW','',0,'?'),(_binary '’v{LöJlÅ€Yz\Õ`°(','wp-includes/js/thickbox/thickbox.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7ú\ëP\ïR\ÚnŒ,(žf\Ô',_binary 'MüßðŠV_—^¸¦ÿol\'\0š\ßqYLüÌ˜)›\Ý\ê','',0,'?'),(_binary '’wÝž6\Û\êMn×K^r','wp-content/plugins/ti-woocommerce-wishlist/admin/basestyle.helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñÁ\Õ\çjÔŠÿ’0¦”\î\åH3',_binary '\\eQš\íbžMÿ\ÊpV\Ëi—ò0¾Xñô’\Ç\ÄO','',0,'?'),(_binary '’z ð\r¬6f\Ù÷rPE\ì¯','wp-content/plugins/ti-woocommerce-wishlist/assets/js/bootstrap.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÈHR\é“{*\Ç<([‰[…',_binary '\ÚHøo,\á8\ÐJz²“§\î\Úþ8\Äfm\íºÐžVp%3','',0,'?'),(_binary '’y†7\í¼._‰\Å\É\àNe','wp-content/plugins/yith-woocommerce-compare/assets/images/02-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±&\ìh«b¿ŒS§\É+R1',_binary 'ºO?I\ÎùöFÁÃŠp¦J;N›o©ŒiZŒ\'^y}ªwˆ','',0,'?'),(_binary '’ƒ\Ï^^¦þW‚i÷©MFú','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/address-form/address-form.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å2\Éüˆ³¬H\Â9k;ª$',_binary '‘\ç7®×·\0®BÀb=`·±¨—U\íº>vhõf\îû','',0,'?'),(_binary '’‹\é‡ó8c‰x1¶r','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library/eye.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³Ol˜$«÷Ÿ\ÛMü]Š”',_binary '+6‚k\É:\â¸Ø³\ÕŽÁ2*\Þin\ßû\îM¿\à','',0,'?'),(_binary '’‘	ÿœJ\\“þv”\ëûó\ë','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart/resolvers.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹2¼6X?ñ\å+\ÎÞ´™\\»¬',_binary 'HÄ•f©uºC\×@\Ë\Þu¿Ô„þ\ÆD\à2˜®ó\ßu}','',0,'?'),(_binary '’ ¸­8ƒì„¨\r!‡·ô','wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-assets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KƒŠG—¥ž÷R)Õ…@#',_binary '«ó¬™Q\áÂ¢“†=ÀÞª!\Zº\ÂOº\ì¾\r\ÇÀ','',0,'?'),(_binary '’¤\"¾+T¸a>\à€øCƒ','wp-content/plugins/nextend-facebook-connect/admin/images/facebook/dark.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›\çï¾D.v Ÿ¨l\åÏ¤',_binary 'Ïª2\\­§¤-¯\ßR¥û‰œ<\r‡\îk”Y0‘','',0,'?'),(_binary '’¥‰\"ÁÞ½ž”\Úþ[F¥','wp-content/plugins/woocommerce/assets/client/admin/chunks/185.style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ìA,\Ðø6,uû\Ó7u \æ',_binary '©\è\çd4¨\"q|-þ+ò{±\Íh5‘\Ê\Ñ\í\Ã\ËÖ','',0,'?'),(_binary '’§\î\í\0¯¥h•‡À\ë\â\×','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹š½\ï¥«\æ\ß\ÍjB8£º\ä',_binary '\âeû\Ã\Çr\Ô5²¯ûE\Ø\ídH\É\ä?\Î\Z®a\ØAƒRd\Ñ','',0,'?'),(_binary '’±(³¼NL;	‚\ÎÀ','wp-includes/js/dist/api-fetch.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\Ê`ƒ\Z\çÿ\ì\Ã,\nn—‚Y',_binary '\æ~$\æP[\é0\à\á\\—	P\îl\Í÷\áB\Ðö\Å\íg)¬','',0,'?'),(_binary '’·¬Ý§-Šµš\Ìh\'´}','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ó…uÌŽ¢¯#!?5—',_binary '£˜\à©ÿpiž\Ë=’\Þ\Þz+#±8\Â„=\×\íný~±½§}‚','',0,'?'),(_binary '’\É?UBô‚w”N	i\é','wp-content/themes/twentynineteen/sass/navigation/_menu-footer-navigation.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Iœr,)\Äy}•™Û•O•<V',_binary '‹ú\Ã\×\Ôx8o1\é©\Ñ\Þ÷‰…»b\Èûpr›¼\íp•¨','',0,'?'),(_binary '’\ÙqÞ’+ \Ë\ÑÆ R|!','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yit-plugin-panel.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ño&\ÂtE/L\Ãð¨Án&Ž¤',_binary ']0»Ôº‹Sl\ï*¢\ÓÁ‰¨.þXP¯mI	Q=„ó!c','',0,'?'),(_binary '’\â\Åí‡´ÁÁ\Üu†ý4ƒ6','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/HttpException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Èl\Ëfk³\ê<ý÷\r\nÀ\Ë',_binary 'R!\ÖO]p’I\n\á\Ë\\…\ÅVP\Ì9‡=Áþ!ò?\Ñð','',0,'?'),(_binary '’\å\î\Ú4Bð¸OC0»W\Ñ','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-color-palette.php',0,_binary 't\×\åQ\Ý_}b/˜G[²\Ý#\Ä',_binary 't\×\åQ\Ý_}b/˜G[²\Ý#\Ä',_binary 'h\Ù\å\'òN\ãzWh÷°0üóG+Ô±ðô\â›Iý\Ãðp','',0,'?'),(_binary '’æº…l\í\0X¹C®}\è','wp-content/plugins/woocommerce/assets/client/admin/marketing-coupons/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§\âµDU\ë•\ãS¢<h\Íø',_binary '‹WJ\ZÝ¸)JN–0pWXršô†Ï¡\ÂuN4$¢\Z†R\Ê','',0,'?'),(_binary '’\æ·Ø”¶7¿\ÄC„m–½','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/store-notices/components/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%F¢n\â\Òq“\êD\Í4œz>\æ',_binary '‘\ßnc#\Ñ5\ÆM\Ê7KUš\ë¬Á¯ÿi÷\è³\ÄppVú','',0,'?'),(_binary '’é–­4DH¯]¾\à’ò%?7','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X¯\á_c\á\×\'\ØxM9þ¸\à´',_binary '`\íùö³°’S,wD9¹k“C\05Î²®\Ô19jBª[\Í\Ì','',0,'?'),(_binary '’\ëš\É]\Â	¥%žö1ñt','wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-reports.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Š¼ „ù9ubŒ\Ñ$ð°yk',_binary 'µ÷oO%Â–h’\áaüƒ^Rƒ8¢*/l%‘q|\\','',0,'?'),(_binary '’\ïQ%*\ÅPqþ’yC','wp-content/plugins/woocommerce/includes/class-wc-product-variation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ýjH\Ë\é\0\"\Æ>X3‘g\Å',_binary ' ‰\ßôd\Ò5\0©3.$ @q:¢\Ð@\Ç>U\ç7)HJ','',0,'?'),(_binary '’ó\r€m¹s\0@\Î=[\Æ','wp-includes/blocks/text-columns/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®4‘–N\'\Õ_\Ô\Åª|;\0',_binary 'l\'©\íV\Ì\×~#Rý¿vE\Û.%~‡A›\ÎÔ·û,	','',0,'?'),(_binary '’óºVû¤Q–°6Â·š\ç\Ò','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sidebar.svg',0,_binary '\ÝTÉ²je.<±\î?C\â',_binary '\ÝTÉ²je.<±\î?C\â',_binary '\Ê\\V„†\ÑL^\Ã\È/ÿ.¦l[ó^MXxŽ~­—>R·','',0,'?'),(_binary '’ýpŸûóRø\É\éhbg—¨','wp-content/themes/flatsome/inc/builder/shortcodes/ux_menu.php',0,_binary '@öZÌ¢\é”$K2\Ó}e/',_binary '@öZÌ¢\é”$K2\Ó}e/',_binary 'üÜ¯‰›ZB U\î\\Ù§û\ÍZ÷d¤5·÷\0%}¢','',0,'?'),(_binary '’þÖ¬+I•7\ÆŽ¬^ü¥','wp-includes/blocks/file/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÁI\ÌlÇ½\è6.—\Ó^\'',_binary '¬=T¢\ã\êX¥\Òm)µ :…BÉˆej“y/\ís€','',0,'?'),(_binary '“\ÆÈ¦:£P[s\'uÿ','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/yit-upgrader.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ph+H–$‚w\ÕZ§-',_binary '}\Î:q5$\é°\î\ë¶¤OyTý¦$)s4\Øì†¨','',0,'?'),(_binary '“X\èV×˜O|8}š€‚','wp-includes/theme.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£6qˆ\Î/p’/wW\Üx ',_binary '±•\É÷€\ï¾\Ú\nØŸý}\Î­B€‹KO¯‡¾I’uÁ','',0,'?'),(_binary '“+†%\\¯‚\ÆrYú\Ý?','wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/TaskLists.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°¸\â^›[\È|\è\Ì\âC¶™d',_binary 'øó\åÀ;\Z¿ûîš‹$–}\Ç¶Ž6#{Ÿ l\É–V\"','',0,'?'),(_binary '“0\"§\ËG£\Z=\ßhV4œ','wp-includes/blocks/separator/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­¼Š¾†–±\ízjo\ÙÍ¡',_binary '\ßÛ’”øC\äŽ4“xSU\"h1YÞ©o=«|[„8±³ú','',0,'?'),(_binary '“8·~%>\ÉQ]˜~Ë°o','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/filled-cart-block/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M{\È³”klÔ£»\"=\é\Ô',_binary '7†—\Ì¸\ÏA\â\â%\ç@£B‹ýôb\Æ<ºu\Ùû\åü\ÇL¤','',0,'?'),(_binary '“A™µ;´›~{\â\ØMVÌ•','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-he_IL.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',³]Xª\\­Bl);•×¦<',_binary '6õ\×%S¥ñ½(\n\ãX\ç\r®NU?\0ü\æÔ„\Í\Ñ\á\ÔÆ“\ä','',0,'?'),(_binary '“BÏ„~ww=/,\è\åE5~s','wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›ø\Ô\èÁ\'ÍŽ\Â\Z›PÐ¿',_binary '\àT›6¼è‹õM>Äˆ\ÑF\ZóÝ†“ñ3\Ûl´ßŠ{0','',0,'?'),(_binary '“B\ÝH*mz—\ÍN83ü\î','wp-admin/css/edit-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥Î­\êyŠ\é]0Šùxs\î',_binary 'H÷/³g¼vñ\Ö\éIU£]«ˆ`²‰þPrt•\éjØ¥','',0,'?'),(_binary '“U1Ô˜ž‘wg½OYpž«A','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-payment-gateway.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª‰ÆŠ»™ü60Á\Ö.',_binary '†\î£Ó‘@\"ø]“&•›¿\0¼0$è‰hff¾™’','',0,'?'),(_binary '“V}»P”œ±m•/¯|I*\Ù','wp-includes/js/customize-loader.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú`¾6ú\ï!\Ý\ÑÒƒz‘\È',_binary '«G?~\ÈD›,(\×F]\áI\ÉbNEö\ÎÀpc¼v:±–\Ëz','',0,'?'),(_binary '“XùºkÐƒ¾¿ò¦\Ê','wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-c.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V§\Þ-ºLkþV\"}¬\ê',_binary '†gq )¸	‘”@?\Ö\Z\Ìef”õ•Z3œa\Ü\Ý º+','',0,'?'),(_binary '“_KrŒ†c\Ó\ëñgB\Øo','wp-content/themes/flatsome/woocommerce/loop/breadcrumbs.php',0,_binary 'L‹#›Š\à\åî’¸w£jŠ',_binary 'L‹#›Š\à\åî’¸w£jŠ',_binary '÷˜úlÿXZº²\È@}§Äº!M\Î´\éˆX¦','',0,'?'),(_binary '“eÜ˜\åHy·„]«ºÿo\î','wp-content/themes/twentytwentytwo/templates/archive.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™ó\Ê\âƒež[ ¯n\à@š',_binary 'Òž´1ª“gù2\â‘	\×\ÔÊ»´B˜s\r¶\ÇVXLñ','',0,'?'),(_binary '“ff\Ú=æ¹§7S\'¬','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/cart-order-summary-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|øNž\ä\Ôd™€\ê\Ù$d\êq',_binary 'm>©\Ì]Hi/bPHˆ23\Óg¿iø GÁ\ß\Ø7Nò\ç','',0,'?'),(_binary '“lüt:{0+7\à9Cý','wp-includes/sodium_compat/src/Core/HSalsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñ\ÓHx+\Ú07¸™`®}ô',_binary '@qz´j\ØI¯™\á\æ \0D¼a¶W»¬6n\Í{Š£¶y\ß','',0,'?'),(_binary '“o4Lq¯ñŸbT\ßAž\æK','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/products/OTGS_Products_Manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”*	¢EüÄ E€92G\Ù',_binary '\æ”OI.G¸K9«\î–5$I?cv#¹ß„žt\n\Ð\Û\Ô\Z¥+','',0,'?'),(_binary '“rFM¯Çy6\Þ','wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-sections.php',0,_binary '\×]» œ³\Ä\Å>\é\ÞAá ¼',_binary '\×]» œ³\Ä\Å>\é\ÞAá ¼',_binary 'w\×XSC\Ð\ä	q\\\ï¸\êk‡mËŠý2=?c^\Ê\æI*','',0,'?'),(_binary '“ˆ.™v8-rJÅ•\íqQ','wp-includes/js/wp-auth-check.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘2©£\èYT\æx\Úw€',_binary 'E\éID(10iý|óV:\í\é^\Ós\ZXÇ‚\\¬9k\éO®G','',0,'?'),(_binary '“‰\È6¤\Ûn\ÂB‡X}d“','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/price-filter/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯\ïSFµ	¸XÎ³‚D¢rÁ',_binary '/œˆFµ÷o§ð\ØÀ\Û*œ\Æ\"K3H&\Þ$Ÿ\èí’¡`','',0,'?'),(_binary '“Ž\Z!o³«„\Ò[\Ä\Ñ\ä5]','wp-content/plugins/woocommerce/assets/client/admin/chunks/9966.style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\Û\Õ9\Z!\êxµ%ô\Âf\Èj',_binary 'Z2¸\ã	\ï\ÒKˆ².«­\Ù‹NÃ¯§£l^\ï\ÞA.\ã^','',0,'?'),(_binary '“Ÿ6­\ÐU\ÑÑ¦\Üu\ï','wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ì\0u?žˆr^§\Z)µ\Ä',_binary 'H\è\rÒ€„w¤Î°øG\ä`ƒX|$†œ(=vÇV¶Ÿ','',0,'?'),(_binary '“¦–&\Å!9–©;‘dU³','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/js/install_recommended_plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ýoœ\â\Ï-\'.\Õ?\æ§ã­£',_binary 'b\Ð_°\ã\Í7žÿû\á>¶~¿+\ï$Œx|-Mºýž	\Û','',0,'?'),(_binary '“«7‹\ÖE#¾wÅ§j¯²²','wp-admin/includes/image-edit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°`¨\åþŽúe	9Uð~z',_binary '	\Ë?#Ø³\Ú~;\Þw\ÍXsþ@ƒi+†?O±i$øˆ%','',0,'?'),(_binary '“º¼\ÒÁbqÀ/¤\Ù\ÛF¤k','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ßðª­7‡õÂ¤\r¬F\Ä\Ýg',_binary 'žn’V\'ŒV±û»¤V\î²)F|*á‘2ˆN\à\×z','',0,'?'),(_binary '“\Ñ@1¦3ZxuSöN_ƒ®','wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-icons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ë)Püi¼_‡¡)¦²GS\Ü',_binary '\nsm•Dªp\è•Äh\Ï\Ü5XQ¼™ô’õ…\ãe\Ñ8','',0,'?'),(_binary '“\ÒÓŒl	~x%®Cª£\î/n','wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/abstracts/forms.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¢7\×F(9+„4\áÓ¶di',_binary '›®¤Æž¬½\ä\Åy‰²uq\ÎÎ‰\Ú\ÓyCÿ\0ð±xx\ë\Ú','',0,'?'),(_binary '“Ô®ý\â´cx8yvK\Ò¬','wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-ajax.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\ÞJ\ã:²oÔš\ÎZ\Þ|x‹',_binary '’3Vz›‡IvVƒ+mO¼\ß|¨²Ô£þ\Ê@x¨7N\ì','',0,'?'),(_binary '“\Ø!U@\æ\äIõ‡ƒŽ2º','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-variation-admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Â>Ì ]dh\ïž]\ÊB\ä©',_binary 'ôO m\êõ0\íA\n´j\rð\ã@q\Z\äˆ{/„”cMw}S','',0,'?'),(_binary '“\Ü\é>\'QÃ›~Š5­!&ô','wp-content/plugins/yith-woocommerce-wishlist/templates/add-to-wishlist-button.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xó\"÷.}½H\äX\åS\ë«\æ±',_binary '°`®\ßH‰\Ùd§ŸÍµ“\éU¤´j“%½\Ê\á\á\Öð5ð\â\íð','',0,'?'),(_binary '“\â1/‰m#a\â]c8\Ã\Ò','wp-content/plugins/woocommerce/assets/js/admin/wc-enhanced-select.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?e‹£\0\ÜG=B’†\Â',_binary 'žðÿu¿F	²b²œ\ê~T,”˜’XÁ\Ú\Ôl\ÉN2Ùª\Þ','',0,'?'),(_binary '“ð«v\î­ù\Ã|\ß-ð\É','wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Â!óý<\à…»]\ê»\Ñrˆ',_binary '\É…p[¼\È\Ðö¯\ÙL7F…£|Ë–ZBœRŠ','',0,'?'),(_binary '“ò=8¤\ÙJQ®z\ß','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-orders-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ü‘˜ž£± ¬\"\ïb\åÿw`',_binary '\á\Z»£\\ y\áñÐ™\él)Î¼\ì\0¥MÁ8\nŽŠlIe8','',0,'?'),(_binary '“öi½a-º9Fõ\î¾i…','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\Âlj\èTƒmN.l\àýp',_binary '¶ÆŸD9©bô\0{ýMq{\Ü\Ç\"†ð\ÍÇŽIñ¢\æR\'¯','',0,'?'),(_binary '“ú\ã÷#óŠüº\î\é¹m\Õ{•','wp-content/plugins/woocommerce/assets/client/admin/chunks/analytics-report-stock.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\î«S\\6¦üÀ·',_binary 'Bø\\\Ì]¾½¯\âs\Ó\Ö/ŠµQì‹©òø–ùW\ã','',0,'?'),(_binary '“þº×—…\ßô\"¯¼C¦‹','wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Shipping/ShippingMode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚QZ(Œ\Î\â\ÍJM\Ç3',_binary '>\rnÝ½øƒ\ãf–†\\~)c\ìB(mV/\"\Ôü\\¥ºŒ','',0,'?'),(_binary '”„^\ç»L–6G9÷ùö:`','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/fonts/fontawesome-webfont.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ\ænq*Š\îõ€ZF‰)2­',_binary '\áü&4\"\rQjX\ãmN\"\ã\É?P¾o”\Í\\°\Æõ?¹ùŒ','',0,'?'),(_binary '”F [xYYt†>x2','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/diners.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ô½u\Üý¾uù‚4\Ù\ì\Î>`ˆ',_binary 'J\Û}\ê4¬¿5†\È\ä==Æ¬\ÈGÊ¢µÚ’85:¼¤ý‹','',0,'?'),(_binary '”Ž-cH\êm6ú\Ð{¬ù','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/blocks-registry/get-registered-blocks.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼\ÚK\Ç\Ã\î$“h\Èa_‰\ÚT',_binary 'y‚Ó¯Fø¤†`?\å´o”ÿ\à0\ßsP¢6(&\Ç\ë','',0,'?'),(_binary '”!HUN&\ï\"‹¨\ÓŒz÷ô','wp-admin/css/widgets.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\êQM°Q=9}5GM)&\Õ',_binary '1¿\Ö\rÏºL\Ä%-»‚\ï\Þ\Â\Äö\ä|gˆ 	\Åö\î','',0,'?'),(_binary '”7\Z“ˆIf\ë.ý2PŒ7','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/filter-submit-button/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Þÿ«£F|\ß\0\Ö\\W\Ëj3\Í',_binary '±\0žS&òÄµžf\Zµ\Ö\ØMe¥`œ¢†þ„\Ã^r','',0,'?'),(_binary '”7Oò\r¾ª‡\0¿w]\Ä\Ýc','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/number.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O3€W¢«G÷áª»\Ôq\Ø',_binary 'Ê¾N_ %\äjL¶\í8k*‚úÁ\í=—ˆ5Hz^A‘{ñ]\×','',0,'?'),(_binary '”:¦sY›e¡K±ƒ¦’','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/category-list/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ìlY\' §c\Ò[¢E¦‰L\'',_binary ',+zcõ\'‰\Ów}X\êNþu½_=¾ /¬Y‚‚«±Yõ','',0,'?'),(_binary '”<#2\ßy£\ÈQ—;˜wù1','wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-d.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÉUñ)j‡ð\Ä\"\çYÁ›',_binary '\Ðb„»qiHƒBgeb\ä\ët‰fœy–\nø@ÅŸ','',0,'?'),(_binary '”Fß‡¨‰\È#÷©ata\Ë','wp-includes/block-patterns/query-small-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\Ã:\á~üÿ¤kŠ<´ô',_binary '“)\Ó@ž´¯\'R¬N8\Ä¡\î}˜\×ÿb¤\Ù\\Àý½','',0,'?'),(_binary '”Kn%ÿ˜eX¸\Õ8°ŸôR','wp-content/plugins/woocommerce-multilingual/res/css/wcml-prices.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\ã¨1Ø›E\ÎSjAþ',_binary 'tJ\Ã\ÉUÀ\ë2e7N\æ.h\ä\Ó\Øn<\ê¾\Ø9ºdB\è¦P\Ã','',0,'?'),(_binary '”L\Í\Ð~iS?\Óv¶C>\È@y','wp-includes/blocks/latest-comments/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™¹\ØR}K˜Vø\Í=\Ñu ',_binary '±JaSG4\î\Ñ\ÈgL¶\Ój.\åµÎ«\ÕL#DX\Ú,s›','',0,'?'),(_binary '”S7À\äzÇ«—W\Ì~\Ó2ÿ','wp-includes/blocks/site-tagline/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',=Ÿ“SPE¨óŸÒ§£§',_binary 'Êˆ\Í	™Ø¿ß¥ÿÁ~üŠE¹\çk¯º,fŸŠ«\Ëf†R','',0,'?'),(_binary '”U4ù\î\ÖNb<#ö\ë_˜','wp-includes/blocks/video/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=9A?U‰sýøo‘û‚\å4',_binary 'õ´£\è1i‡kýÛ‰w{\×t+2oõ\êFŒ\Î\Þ[ý\Z','',0,'?'),(_binary '”a±tU\Úq¶^!\ä0Æ£l','wp-includes/post-formats.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³h·%\ÈJ|,%FÅ›@',_binary '\Ü\Õ6»x“\Þq\æ#…\n½ÿ[j\ê\ÄE²®9¹9eŠ^Q','',0,'?'),(_binary '”jB†\Ý>€\n,.0Á+','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-billing-address-block/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ^o\äV£©r_\Â\Ú9 ˆ',_binary '„j,¯%;:»)™\ï\Ãð\â1r­¿\"\ÞÝŸC´-ˆ','',0,'?'),(_binary '”k‹¥—zß£ó\Ô\ì\×bo\ÓR','wp-admin/post-new.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÌI\n(þ‚á¸‘¼\Óñ{z',_binary '„T•Ñ¶‰¨ÁLc\çô\ì4O\ê\ÏoFd\ì\Úñd','',0,'?'),(_binary '”n¾T^\0ê‡½AÄ†\Ðm_','wp-content/themes/flatsome/inc/builder/core/server/helpers/shortcodes.php',0,_binary '›†N”kL\Û~Ã’õ3\Êg',_binary '›†N”kL\Û~Ã’õ3\Êg',_binary 'Ê™9y&4\Å\Û\'hû²\"Às“{\Ö\"\ØÓ–[O´ùt™','',0,'?'),(_binary '”vO¯\Ö#\èJ¥N\ï\Ô+ì','wp-content/plugins/wordfence/css/images/ui-icons_ffffff_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Aa+JD$ø2Ÿ‚J”\Ú',_binary '¬/#?T\ï†iOLyv¦\íuš˜TK”°©É¤½·\\Ø»õ','',0,'?'),(_binary '”|v»P•\Ú0\áfh\îÁT²','wp-includes/js/dist/block-directory.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…‚÷”Àl„e[®Y\'zq',_binary '?\æá´ŒRƒ±E\Ì&‡±kJ8m‡\0\0˜c\Ü¦;>','',0,'?'),(_binary '”}­E	Øª\Ôkö','wp-content/plugins/woocommerce/src/Admin/API/Reports/DataStoreInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾v ù‹½™\×i®„’¥',_binary '\ØS\í\n¸@þL§\Ù>ƒ\Øu\Äÿz=hR\'\ê&\æ\é-’ô','',0,'?'),(_binary '”€»$ Y©eCŠÛ‰R','wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/navigation-opt-out.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P^\æ\ÛFˆ¬³ld|:¢\r',_binary '=Caª3™û`œð\×éS*,Ÿ“¾5\ê†Söµö\ëlc\í','',0,'?'),(_binary '”‰s\î\ß8\ß	\à@\Ó7þ','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/simple-light.svg',0,_binary 'ÿ·\Èæ².`0\08UN\Ìg\ç',_binary 'ÿ·\Èæ².`0\08UN\Ìg\ç',_binary 'f›\âk±¨R«…N2<Æ´C#2]\Ð\Ó\Ã5Šc?ÇÙ£þ','',0,'?'),(_binary '”‰\Ê~ž‚\Ê\Ñ\\\ë\ÕH\å\Ö','wp-content/themes/flatsome/inc/builder/shortcodes/block.php',0,_binary '7P\Ç\æ¤q`Có¡˜zG\Ð\0',_binary '7P\Ç\æ¤q`Có¡˜zG\Ð\0',_binary 'ŠQ„´®<\ÅXa6\Ó\ÚJ|€^:˜ò¥¥\Ó8•–Â¾”Ç—','',0,'?'),(_binary '”˜@†»{÷J¤\á«5ä·´X','wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U,û:)¬ Ø‹\"\ÅQqY',_binary '\"\äOoûÛˆ‰\á\Å<ö€oES-MOÃ·\å—YN€!‰¼','',0,'?'),(_binary '”œ\å!Bp7\Èó4›E|','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-es_MX.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\åþaKmû\í-\ÃD•H(',_binary 'k…UÀ3^\ì@\Ó\\Ÿ9Y\åS\å¦rnk\ï\Ä\é\Ñ)’b\ÐB','',0,'?'),(_binary '”£‡+P\íó%š8”\è\ÎB\0','wp-content/themes/twentytwentytwo/inc/patterns/page-about-media-right.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#$\'\í¦ö\Ú\Èô±\àK~¶',_binary '¡\Äû(r‡’Œ!\Ù#•òu8b|O6,÷”Jf­¢','',0,'?'),(_binary '”±¦®L\Ø\â6	\ØÀ\è×³','wp-includes/ID3/module.audio.ac3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ú>Y¿¿\Ó\æ\Zk0\ãaM',_binary '¥b°´^#šýÂ¨(tñ^·rß˜z¸\å9òF\Ó\ï\í­','',0,'?'),(_binary '”· ‚ð`0“U`\äN\Þ','wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/styles/style-2/actions.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Þp6\Âò.\Ë\íX4»\na',_binary '÷\ÐUµ\Ül\É	6\Ü=»T2îŠ™œ<X\â\Ø+','',0,'?'),(_binary '”\Ã*ºZ\ß\èý\\Pr\Æ|\Æ','wp-content/plugins/woocommerce/src/Admin/Features/Navigation/Favorites.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’p™˜\ÛVG#·\Û;k>@\Z',_binary '£/„R0p¿‚†Ç_¾|\Ð>{<\ÏÅ¯\Ñ\áq<','',0,'?'),(_binary '”\ÉT²¢V¨\íôª“\\˜—','wp-admin/import.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ØU¦\â0apX£¼ÆºŸ\ÌF',_binary 'E÷¬”Y8¦rÏž¾b‚´BŠ–$ˆÁ\Â\Åy#¬¾¹‡','',0,'?'),(_binary '”\Ê\åÂ¯\Û(\Î\ê\Ò×£kñ|!','wp-content/themes/flatsome/inc/admin/customizer/img/nav-outline.svg',0,_binary '–´o\Ä\æëž˜N5ý\\ðšÿ',_binary '–´o\Ä\æëž˜N5ý\\ðšÿ',_binary '‡ˆ.\Ö\Æ\rQ²L8–6n4Ò©VB\àT+—\ÝRª/E•\æ ','',0,'?'),(_binary '”Ëœlv\å‡T\n…Æ•\ÕMC','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\nz\í\Ä\ÇÒ ­…lE',_binary 'š\ïûo¥tª´6ªºm ¥¬6tŠ\îiö(¤´)ö;','',0,'?'),(_binary '”\Ï\ÈWIö&§?<]²<','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/compatibility-notices/cart-checkout-compatibility-notice.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D/¦\èÊ§Ky\ì¼Ú•',_binary '†§d!SMWU’&\ÍX\Õ%A»&…|S¨]\ÜÞ‚Ä 3Xm','',0,'?'),(_binary '”\Ð\ã•ý©W6V\ÏÊ³.ªÌƒ','wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-updater.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\Ó\ì™Vö\ì_|–]ºD',_binary 'I­yÊ‹‚–c\Å÷\Î\Ýðd›²—A\Å\'”4·¾X\Ç	œ€K','',0,'?'),(_binary '”\×_ÉŠšù5lUAo_i','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/tag-list/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ\ß\Å\Ù8ùƒ¼\Äô:¶lüÀ',_binary '¥Ÿ0Vhø¡À\åµu±jz{o‘í½¶k\Ûo¼\ï\0–;Ÿ','',0,'?'),(_binary '”\×\å$²<\â„LL-;½\Êm\á','wp-content/plugins/woocommerce/assets/client/admin/beta-features-tracking-modal/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n#L«\åvE\ç½u¬Aÿ[\×',_binary '\ZM5ÅŠ=–3§±?…!1ð\ë¨\ÇC“/\Âd¨\rxŠ\Þ','',0,'?'),(_binary '”\×\èÿNt»Kô£Uò…\ï','wp-includes/Requests/Exception/HTTP/407.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Qx+©D.42\0ö­\à\Æ',_binary '>\Z\Ô\×\Û]Æš–BÌXv’Ø°c¯šñ¹\Ó.N2\ÂNÒ¹Ð¯','',0,'?'),(_binary '”Ûž\ä\É3·™2÷Ž@-§þ\Ù','wp-content/plugins/woocommerce/templates/cart/cart-empty.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…[[\Îõ›òj\å\Ã†ÿ™',_binary '¢›®½˜F\ìb=üË²8„›S«¸dQ2j:£^¥EÇ„\Þ\â','',0,'?'),(_binary '”Ü“‡jôË¸V±7Š','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/languages/yith-plugin-fw-it_IT.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ä&GN%\ÞÕ‹½c\áÍ­&',_binary '÷N¿\è\ïÁoÒ„JU²H »\Än\Îq‰\àIJ\'¡','',0,'?'),(_binary '”Üµ[Ò²m%‰6òS8:D','wp-includes/images/toggle-arrow.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ü\ßÎ‡—aý\æ;\ëd\Î\Ï*ò',_binary '[b\Z©Ž\Å;\ë]¬f\É0 ²\æs|:¿¬†\Ôó%','',0,'?'),(_binary '”\ç\çT\í‚fvÁ\ê[3À','wp-content/plugins/woocommerce/packages/action-scheduler/classes/migration/DryRun_LogMigrator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÆDž\â\ÊõYöp\'\ã9\ß',_binary '\ÕØ¼N:‘=\Ýûûñ\Í\áþ‡5%wŽ*ñl½]vHn–l','',0,'?'),(_binary '”\ïo%ä¯ŠEj¹s*°MK','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/km.js',0,_binary ':Pý›µe>#åž’a',_binary ':Pý›µe>#åž’a',_binary '¬Á,À)=VÜ¯¤<€5µòïŒj*bNv„…^’Ÿ]','',0,'?'),(_binary '”ó‡\ä‚\Â$ùOq\ÕyÜ¹™','wp-includes/blocks/audio/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n=m.«b¦.l-lko',_binary 'Õ¼³C00\r\à\Ù=º«ñª\åTf‹tc_\Ä5Ÿæ º£','',0,'?'),(_binary '”ô¨–!Þ¬©\Äß³\ÂÁ«p','wp-includes/images/crystal/default.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Aò>)*/¾\Ü!\ì®-ò›º',_binary '€ˆˆn$‹¨ƒ_­u	†$Q3\Í–E»×r¡|Jm—','',0,'?'),(_binary '”ù*\Î[¦c\ä…\'Ýœœ','wp-content/plugins/yith-woocommerce-wishlist/templates/share.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Dy¥ C#66\n+¿',_binary 'Ÿ†\Äd#ƒ„Rvtõ)œÁ\ïn\Z6\è\Ôj4³V\Õ7','',0,'?'),(_binary '”ù #\îV(k]$\å\ç\è\Å(','wp-content/themes/twentynineteen/sass/elements/_tables.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿i‚š°—\ÕJ\Ø&4r€S',_binary '‰lGùõ\é\çwù\ß}V˜À¢>§±%{n¡®\\\×z„þ;\É','',0,'?'),(_binary '•…¸I	2ŸRýNjYÿ\ã','wp-includes/sodium_compat/src/Core32/Curve25519/Fe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_Eª uˆ*\Ê`¢Q³¬Ÿ',_binary '²$c½XÑ„Žñ“ÌœðNò§•bö\ï\Éô/²‰–öñô','',0,'?'),(_binary '•&\ÚMûX—ÿW\ç\ÄO²','wp-includes/error-protection.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?5ŸpŒ\Í.9\Ù;FüÜ§’',_binary 'Ö¦ \Ç7S\á\Zñ»\\‹“cdLb|o\à1\É\ÓY\ÜÃ£«’:','',0,'?'),(_binary '•Xý¤z•\êóÔ‰</\ìm','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products/all-products/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'üb=›}øÅR°\æ‹\Æ\ì’',_binary '°¹ja<–)£d¼¦zŠI‹À}\n‚D\\\Ú\Ú\ÛNf-tI','',0,'?'),(_binary '•#qu\ÐöùDF¶\ÇCš','wp-content/plugins/woocommerce/src/Admin/API/NavigationFavorites.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©·1.ºsr\0?j¬=+\Ø',_binary '¶Y\íb€~¨Ö¥\ÍÁ\Âö\ãD°qí¤•\Øòt…¸§Š¾\Ðý','',0,'?'),(_binary '•/\ä8\ÏóùJ8™³f\êŽL','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/button-outline.svg',0,_binary 'øv6‹öO’·\Ù›¥',_binary 'øv6‹öO’·\Ù›¥',_binary 'žÐŽyc\Ü\0K«j¤ý7|,V~g}“\î¾}oh:mü$\"u','',0,'?'),(_binary '•2º\0|ˆ_¹z\ís€³„©','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/ui-icons_888888_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0*ç§®\Õskg{68',_binary '¢,,b\ã\nqðHŒ\ã‡yn=E0.\éAz\á\î@E¸>l|\î','',0,'?'),(_binary '•3õy “a¸\ã©~b–','wp-content/plugins/ti-woocommerce-wishlist/assets/css/webfont.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å†^\Ô\Í üªR@³He\Å',_binary '°.˜CÔ°“\ZpZ³\Þû<=©\çH\ÃEþ]ÿÁ®+8Q','',0,'?'),(_binary '•:ƒ\Ñ-=(\ÌF,øõ\é','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/google-analytics/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÐüFwBº Ï H;“²',_binary '(½	^š¢¨^€?&:\í\æ£.\×=\ÉÖº\Ì\è\'@!ƒ','',0,'?'),(_binary '•<ÿ¿NS‡„H\ØÉ®û#\ä','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U0·cÀ¶ˆ:#pKJƒ',_binary '9ßŽ€\Ìûxÿ”YB\\\àÀR\È˜ÚŠ•ÿ&/\Ó29ªN=','',0,'?'),(_binary '•=œD‹p\Þ\Åz¨|','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-payment-gateways-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'cq(‘jXˆ…pˆ¶µ',_binary 'ú‰Ž¼·À\ÜÀ\Û\\vkEó\Å.†¢\0d\È?\07Š','',0,'?'),(_binary '•?ô\\\é…¢maþ•o\Ä_','wp-content/plugins/ti-woocommerce-wishlist/assets/js/editor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤\æh¤ƒö¶\Çw\ß\Ã\0I\Ú7',_binary 'ôŽ¢\"»\ÌdKe\ÈF\î!‡\ãø4‡11$\ä)<’\è','',0,'?'),(_binary '•TYR#ù²B\ß,7R\'Ü°','wp-content/plugins/woocommerce-multilingual/inc/template-classes/status/class-wcml-status-status-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(^—O\rE\Ã\ë·	V\Ä',_binary '0\ç\ÜS w’s7¼<µD|!\Ê‰\ï”4‹õ\Þ2/\Ñ>-\Â\ç','',0,'?'),(_binary '•T\â) \à$ŸK8‘Ãš–[','wp-content/plugins/woocommerce/templates/single-product/tabs/additional-information.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\Ý=G¯–Ø,ª5þ[zô%',_binary '´\ëz\î¨¸pI{ôe\Ñu\Ê8î‚™\î1M\å#\ÌbÉ—ƒu','',0,'?'),(_binary '•\\Ð”ƒ\Þh\Ýƒc˜','wp-includes/blocks/page-list/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ý·1\rJb¶\å”Þ­\â\ÏÖ³',_binary 'õyxQ{\ç0ùI¥Tcf»%³ˆ\à¦%„+÷NœG\Ì','',0,'?'),(_binary '•]\ÛSP\äsö\0]²?|¨\êU','wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-latest-autoloader-guard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª\Ðû\Ï^ˆ’XYy>\Ãj',_binary '¿#)c„8Tú\Þ\ÃÝšðrD\Æ&GEAr­‡*\Äñ?','',0,'?'),(_binary '•^#2þ¤\Ï\rñuŠA\è','wp-content/plugins/woocommerce/includes/wc-term-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\Öô¢ü\æÿn\ï%Çþ',_binary '\ï­ØŸR.D³CBLÇ·\Ã5s÷`»Y\Å)xŒi\ï','',0,'?'),(_binary '•^%€}‘öE–\Ï5—ˆ0¹','wp-content/plugins/products-compare-for-woocommerce/templates/selected_products.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h˜\r«½M\â\Ð>}iPR™C',_binary 'ðkYt;ñ3)\ê–+>m\Ýß©T	õ\ÙþT\Ø\îE¶Y','',0,'?'),(_binary '•bZ+?g«Á\ä:<ý§\Z»','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/select-buttons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Në¯Œ\åm¯¦’kþ\Ë`;$',_binary 'i\Ç\é\ï–\çˆz$$\0p3iÒ§·	\ìa¨(ôK\Ñ\å\Ç','',0,'?'),(_binary '•h—‰§‘FuQeñª \î','wp-includes/images/wlw/wp-comments.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\Â6]P\Þ\Þ\Ã\ì.s¨¡\Ô',_binary '®zl\Zµ\ÓC¹\ÚD\à¨\Ã#‚aöNµ\ç3\'XZ“','',0,'?'),(_binary '•k\'£`¸T\ÑXpH>^Œ','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/slider.svg',0,_binary 'š8T†bÛ—5&–\Ë/ ',_binary 'š8T†bÛ—5&–\Ë/ ',_binary 'Š\Ä Y@!\ÂýqºùpE¤‹Ž\Òg=Ö–E\í\ÂG_\Ü~¬\Ò','',0,'?'),(_binary '•nñ°µ\ë3\é6*œ\ïÿc¥','wp-content/plugins/woocommerce/includes/react-admin/wc-admin-update-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'cªF\æDþ¶0û)­^À\Îs',_binary 'ÆŠ4–\ÕLS\Ë\Z\Ø?Jx\âB:VDLCðÅ¾\ï\Ë5–±€t','',0,'?'),(_binary '•}µ!…H‚¹aP/w\Ñd','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/utils/extension-cart-update.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾=K0H0V´\ì¥þ§\ÖX7',_binary 'XŽC\Ê\å¨\È2‡\Ù\ë\nÖ«?X\éAP|Œð8°qƒñ','',0,'?'),(_binary '•u1HM:E7/š{ú','wp-admin/includes/class-wp-site-health.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ýi\ãß®m9E ¨3:d',_binary 'D`\Ê:aÓ³\Ìxt\\œ8~´AÝ£…\Ä„\ä\Ò%=Ž(\É','',0,'?'),(_binary '•ˆZÔ¬=!Ri=\æ7ùhµ','wp-includes/js/dist/vendor/wp-polyfill-object-fit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ðw$²1)x5)L’\Ü{p',_binary '\êÀÇˆv\áã¡´y\"0\éMpš@ò\íRšTà¶’\ÉK¹','',0,'?'),(_binary '•‰Ï‚¦–S¼)xþ\ÎüQ','wp-content/themes/flatsome/inc/admin/customizer/img/nav-bottom-center.svg',0,_binary '?¥\×Zò!Z±C—\ÐA¹{É¯',_binary '?¥\×Zò!Z±C—\ÐA¹{É¯',_binary '°3Ä¸\æ’l\Ï\Ä\â‘+’A\ÝP9n\Ìôa2P(Qc7','',0,'?'),(_binary '•’µ…kÏŠTy³`f–,t','wp-content/themes/flatsome/woocommerce/share.php',0,_binary '\ÆEù\r;=\í\Þ:<2gš+',_binary '\ÆEù\r;=\í\Þ:<2gš+',_binary 'óZWF(ø\îÀ6\åß€®P]&\ïÓ½=•”','',0,'?'),(_binary '•˜(.ù/òL\æ\ÏPö÷È‘','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-dimension.php',0,_binary '\\n\Õ{xakfüS´i)\Ä',_binary '\\n\Õ{xakfüS´i)\Ä',_binary 'Z\ÜmdaŒ˜!\ëb$@K:*§Db1q\Ë\ï\ÄK€+7','',0,'?'),(_binary '•¥\ïð>µ\'#\æ<\ÓG\è\r','wp-content/plugins/woocommerce/includes/wc-stock-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\n|Ÿ?Í´	bµ\âKò¾³\ï',_binary '•S+\Ú	f*¬>”\ÉLò1®Uö\ìk¬Q:z\ìù™\É=','',0,'?'),(_binary '•½U\ÇK2Y‹8‹ô[O','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/multi-select.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\åƒ\Û?©; :\'J³A\ã',_binary 'hp\Ú>\Ì\'I\×ß‹övC¾,-Bm`Y¶%löfY','',0,'?'),(_binary '•Ç€3\å‹<¬²&³ªYÄ†','wp-includes/class-wp-roles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c”\Þ\å¹6¢* ¦U\Ù=9',_binary '¹õ~—f¡2\'ûºl9´«ÁŸL·uV2\Ä	y\Ø:…9','',0,'?'),(_binary '•Ë³’X—	eM_\ÞzLŒˆ','wp-content/plugins/woocommerce-multilingual/classes/AdminNotices/CachePlugins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œu²ª¬Õ…„—K…ù†“€',_binary '¬òò\ÛÕ²Q\æØ¢\é.4	fJ\\1<Q~­…\r‚Z\'','',0,'?'),(_binary '•\Ìf0\Ù\ËÍ­¡\Ú~·)','wp-includes/fonts/dashicons.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\Ô_rY+Ê‚;\ì',_binary '§yU½]fô\î8\È\Æðt\âð§½’\Ùÿ\Ãl\ÕL.','',0,'?'),(_binary '•\Ò.\ÉIOI¢P²³%)','wp-includes/Requests/Transport.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡M¥‰¼¥\Â\Ú/\Ê\Ð\ãŽ\ä',_binary 'É¯O3e–\ÍF»\Ôã›†·\Öv+¨\ãÀð.r/\Ü>Ÿ,','',0,'?'),(_binary '•\Úi\ç\ä’\×ýÁ¨	j','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/toggle-element-fixed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>x”(\Þ\Z*‚ñY•‡',_binary '*W\êò´5½\î˜}\ÏX\ÂCð\Ñ\Â~8\×¡\"\í—iø9','',0,'?'),(_binary '•\èMO,\Ì\ãs\æ\Ò\Ô\r\ç\â','wp-includes/class-wp-http-encoding.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',ê€­—¦Ç—‰ƒÂ…-y',_binary '¾	=SŸk…l##\Ç<@\Ìü_5Ó™M–C4G¶7','',0,'?'),(_binary '•\îT\â)gÑ…6&°\å]','wp-content/themes/flatsome/template-parts/pages/page-title-sub-nav-centered.php',0,_binary '&(j\\\ÞD\åJ\î\è\ãºÌ¦',_binary '&(j\\\ÞD\åJ\î\è\ãºÌ¦',_binary '‹„^µ¦‘€­ª8\\ZD‚V\ÐJ–À[?–\Õ.\×H[m','',0,'?'),(_binary '•\îº\ã\'½\Ì\ÖM\ç4tL\ã\Ç','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ï\ÛJ{~I\ëþÛµÁ@…\å',_binary '—G2P\Z-\â\Ô, ]1eÕ» ˜g>q¼Fvi\á7\è\Æ','',0,'?'),(_binary '–|\êaV\áò~»[f°¿.','wp-content/themes/twentynineteen/package-lock.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|Z\'A/U-¹$	þ\Ø\ÆH$',_binary '\ÌC!¦¾§Ë¶¡SJª÷\é\Ì?°?—uJ%#\ïVJ','',0,'?'),(_binary '–p©;jºû“‰f\\','wp-content/plugins/yith-woocommerce-compare/assets/css/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\çF\Ø)\\\Ís¬\ÅÆ©\Ã\ë',_binary 'd:\ì…ZN†\à9ŠŽ\Ö3Tø|p¿­òµšûÅœ\Ô','',0,'?'),(_binary '–\ác;[„KòÀ\áfý*','wp-content/plugins/woocommerce/legacy/css/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1|2\Ù \Ý\å^\ry“\ï&\Âa4',_binary '\ç^±õ=dig¦`ø\ßbš\å\Ì\Öúù2\ï¤+nkO]ý','',0,'?'),(_binary '–²aÿ¦ø\0!¦Â¾WW','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/orig/installer.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\í\äb¾œl\ÓprI§m\È8',_binary 'ˆ\Ù5H¨\Ë]¯5r”!\Ô\êð\Ã\Ã\âñH ‰8i‹‹ (','',0,'?'),(_binary '–ôz¸\ÜJ/\ÄB&C™%','wp-includes/blocks/post-featured-image/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\éN¿¿“1³–\íh™fXI',_binary '¤Z¢\\‘#F\àš†ª\äÄ§’\ÅûÓ¤0›J×¹S','',0,'?'),(_binary '–x?Ø§*ZT~\Þòh¯\Ó','wp-content/plugins/woocommerce/includes/admin/views/html-bulk-edit-product.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñMwù\ìZ‡…\"Šé—‘\Ú\Êñ',_binary 'ˆÄ¡<ž\é\×\áL¢Ú\Ê\ÊÑ·ú”\È$\Ñ´(2w','',0,'?'),(_binary '–!Û….\Ý4§§qdtP‰–','wp-content/plugins/akismet/views/activate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à{ETJ›_qŸ¾·n–¼\Ä',_binary 'Î‡^\n\Äb—‚q<v`x¶\ä£K¤£ÁZ—WŽ\Ï>°Gw\Ö\Õ','',0,'?'),(_binary '–#ynÛå½[hr\\\ØU','wp-content/plugins/wordfence/modules/login-security/views/manage/activate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª´@ûù‘œ{®Ô¹6',_binary '÷Ø¯h\Z\ÙoÁ>°¶ñ:ì¦±©lü 5D_‰\'-Àw','',0,'?'),(_binary '–\'9¼±~ÀKo\Ð}7_','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/external.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'º{,p=‘\ë’çŸ€°}öÕˆ',_binary '~\à\Âe¹\Ï¡@ –ù\éSBFk,÷¡ñöY¾','',0,'?'),(_binary '–5ý\Ã;Tÿõ]¸\ß\0\ÃÂ”','wp-includes/blocks/post-content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(ÀM ZÞ¯‹wi\rýoþ¤',_binary 'œÅ„\Z¨S<U\Üa\r8«g83\ìAA:zI\Âg_m','',0,'?'),(_binary '–6¶|;¾;8\ÅQ¹4™k…ö','wp-admin/install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o«^|1\ÇÞ­õa°œ9 ',_binary '@˜³,›¶¿†o›G­ARÔŠe\n\î´\Z\Ô\Ý½1«=','',0,'?'),(_binary '–9µe\ÝEø€bÝ¾l´3¢','wp-includes/js/wp-lists.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µpŒZ–\ZF·\\\ä~Â¥',_binary 'd¿‹vWVª‘<rÚN§3z*Þ¶Œñõ\É\á½7\Í\Ð','',0,'?'),(_binary '–=M¸k›J~—¶¾‹i\Ù','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/html.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v€Œô\ÅÀD\'Žª>ø5/ñ',_binary 'øÞ¼OFýr\0¥ö\É~š¸\ï©œR$\Ò\×·™(','',0,'?'),(_binary '–Aü\ZW¿ O.Afªœÿ-b','wp-content/themes/flatsome/inc/admin/panel/sections/tab-activate.php',0,_binary '\çJ\ÝooôŒ\ç;e\ç›\æ',_binary '\çJ\ÝooôŒ\ç;e\ç›\æ',_binary '\×9\Óy0Ÿ„Z%Û²\ÐøIe} ùr¾}h],À0¥1	','',0,'?'),(_binary '–Ckà«™^iž[o3\ÎD\\','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/payment-methods/payment-method-config.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3„\Ò?ð÷\Å\ä\r®ýjZ',_binary '\×v”W\à5w¹þR\í#XxG\"ZYžûñüdY‡©5','',0,'?'),(_binary '–E26þ¤ùlÁ 4\Ä	§K','wp-content/plugins/yith-woocommerce-wishlist/assets/images/ajax-loader-alt.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',Y\Zv‹ƒ¿2Ç’&–S',_binary 'ó¹eôº|\Ôlú\×28€ú3\â\ÌR¾¹’\\\è\Ø¿\à>—‚','',0,'?'),(_binary '–G~Ÿ\Û\ßÀ?\Í\ë8dÜmº','wp-content/themes/flatsome/inc/admin/options/header/img/header-simple-signup.svg',0,_binary '¼P\Ã1Fˆ·LD‰3\ï',_binary '¼P\Ã1Fˆ·LD‰3\ï',_binary '\à¬Dõ\Ñ\áDsH”zKv„ab@y&¼C{3÷i«','',0,'?'),(_binary '–M?¾‚ ‡—u´$Id¾','wp-content/plugins/woocommerce/packages/action-scheduler/lib/cron-expression/CronExpression_MonthField.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Åbü$½\ß \é}°[„\Ñ\è\Î÷',_binary 'S‚]Ksñ¤DªüÃ€vi·–I¾ºt%µj¸=ž\â\'','',0,'?'),(_binary '–W›\Þ  Ž\Å\íƒˆº|¾','wp-content/plugins/woocommerce/templates/myaccount/my-address.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v*^\å5Ž›dx™\Ú\Ð\"_',_binary 'ôN¶…d4ôC‘\Ógú¼´¬+‘\×\Úõže\é\Åp;\Äg\n','',0,'?'),(_binary '–ZDý¦†W\ÐvÝ¯ScP\ë‘','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-search/edit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼•F[R%¶T\ë?2š‹',_binary 'u{VÓ¯_\rTD¯ûGþÙ³\ËÁ™\è\Å\Èx´¯¡o\Ê2	»','',0,'?'),(_binary '–`\ÞF¢ñ–\Z\ÛTt\à/\Ð','wp-content/plugins/woocommerce/assets/images/admin_notes/filter-by-product-variations-note.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	NÖ›¡6°\nUW½£[=t',_binary '\Ô\ÔR\'žuúc‰aÀPF–Gù‚°ºšùr¤Œ\í†Ž€\Ø','',0,'?'),(_binary '–j•ª:p8¯¿c‰§ú+œ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/block-components/get-registered-block-components.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡¡M÷ºõyÌ¯«ó\ämÒ”',_binary '_\í8j¯\ëò<‚òŽu7±‘`‡YU¦ž±B\Ç\è¬\\N”','',0,'?'),(_binary '–s\Ì6Zø$Ó¾y\áD(','wp-includes/blocks/group/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=>½\å\Ä* ¡f´±[µ³ž',_binary 'Ï©‘—þz—„J&–O{|K^–Ö¤«0.\Õ1t','',0,'?'),(_binary '–x&\Ö\É=\Â >†\r£m\Ã','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-dashicons.php',0,_binary '4Â‚ü—y‹”ì¦žF\ïx',_binary '4Â‚ü—y‹”ì¦žF\ïx',_binary '5t»\åZþÚ¸À87û®V›\ÅGR\ì=ÆŠZ®\ï\â\î]\ã','',0,'?'),(_binary '–z9»	\Å`üd3\Ý\0\ÈIay','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç Á@\Û\Ê^¢µ¬8J',_binary '¥\çØ½ƒ@¤¼B-Kõ¹\Èm\ã\á\Ã-È»•\ß\Z\Â2p','',0,'?'),(_binary '–€öœ*\Óé°¦\×R\Ï\ç\Ü','wp-content/plugins/woocommerce-currency-switcher/classes/fixed/fixed_price.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4]±\Õ&¶‚<õ/2“2\ã',_binary '›‡\ÄYü7Œ\êõÅ•¶r“&$\à\Ê|½W&\"À«\\6','',0,'?'),(_binary '–ƒ;7\"%“|©	&\rlš\Ø','wp-content/themes/flatsome/inc/shortcodes/elements.php',0,_binary '\Î@õq\\ƒ}±«§—[õ',_binary '\Î@õq\\ƒ}±«§—[õ',_binary 'þ[\ËT\ÅnŸEjd\Ý(²$:!Áh\ÔÎ\0›s\è><','',0,'?'),(_binary '–†oEdz¤$[W„\Ø)\\÷','wp-content/plugins/woocommerce-multilingual/screenshot-5.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S† ¾»¶\Ô¿@ö4/',_binary ',\×q™’5§¼ôQˆeK¤£\Ç	ÌXúû!Ñ€ó \×q\è','',0,'?'),(_binary '–‰®½)\ÒýðqûOg','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/button-call-to-action-large.svg',0,_binary '\ÒSLŠ‰<zÓ¶\ÅgVŠ9^\å',_binary '\ÒSLŠ‰<zÓ¶\ÅgVŠ9^\å',_binary 'ˆ6£}¢H\Þÿr•úª3žõ$\Öf\Ý\"> G%ƒ¡”','',0,'?'),(_binary '–Ž\Z5o\Ö\Ý#R\'/¤¬l','wp-includes/fonts/dashicons.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÓN\Z>wð\Ë@\é‘R-/Yö',_binary 'B\nZ\Z¯®_pnÍ‚\ÌµQ?/\Å\r3sþ}½\×)','',0,'?'),(_binary '–—w\×#\ÌQ‡\Ã\Æú˜­','wp-content/plugins/akismet/views/predefined.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ò#>ajÏ¬a”¥½\Ï\Ø4\ï',_binary 'ÿwðšs°\ÐbN}¼qY…\Çý7zo•U\æªuô\'¡¥\Ö1','',0,'?'),(_binary '–¤g°}\Û\ÃðHþ€A&\á','wp-content/plugins/products-compare-for-woocommerce/berocket/includes/plugin-variation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z:„€\ê$\ê$ñÆ‰B\Ð2',_binary 'Ÿ³¬g	FMn2\ïŒÃ’u£Ž3i\ßŒÁP\Ü\Zd\Ì\á|%÷\É','',0,'?'),(_binary '–®v\èY\0ýÕ‘A™','wp-content/plugins/woocommerce/assets/css/twenty-twenty-one.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q›B÷‰\Ä\'ÓŽ`[H‰@',_binary 'RöðDv\\µhr=\"y7Õ„G“\ÙÞ¨“\Ôg!Ö‘P\Ù','',0,'?'),(_binary '–¯÷·\ãAoc‰4ª¹¶\r]','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!{\ÖhÈ¡R2Ëªí€¨6',_binary '»(\í1qKC©¥ö˜\Ð\àD?\ç~Ô¨\ë~OT\Ä\Ú $&~#>\à','',0,'?'),(_binary '–´yGsKCq²\Ö9\Êøzø','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-tm/icon-256x256.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|Z\Æyr‚”\Üñ­',_binary '\×@š\Ñ9Adò\\»È¦ß’\Èòq£6‘1%ßŸ¸ý','',0,'?'),(_binary '–½-²§¼CU³\Ú.#Ca@¬','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hooks/use-previous.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\äñ½Y\çK\ìi&5<ý',_binary '-6Zi\à\èr;*¶a\Í\Ã(§?2#ƒ™M>Š\ê9\íc*','',0,'?'),(_binary '–¾^ô_ù‚<Q·\ÒòlŒ¶','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/jquery-tiptip/jquery.tipTip.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gbròM}\ï]˜0¹pI©H*',_binary '…§\È\"\Â&9\ÂÍ‰\Ì|Ðžß„ýÁ¶”C\ÍÕˆXq‰\ì£b','',0,'?'),(_binary '–Á¼™E˜?\ÆŒÐ®á¾ ','wp-includes/js/media-views.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\çhn\æ=|ñ@j Í’\É\Ï',_binary 'Ö–—u\ï\Îñ\Ö\Ï5	W\r\Å\ÈL\È5[\à~Æ¥\ÄX\rö\æû;','',0,'?'),(_binary '–Â \Ïv…‘\Æšbu)','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÔG\Érõ†¾\åœ]\Ä\é/»',_binary 'yus\Ü\çôÔ¿\í\Ð\Ì\Â\æ:\î\0)\Þy\ä¯zs‹Ý¿SkH\ä','',0,'?'),(_binary '–Ë¥`8\ë‚ó—õ(\Üõ	','wp-content/plugins/woocommerce/templates/checkout/form-checkout.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\nZe\ê¥\ëÀ\Æ~.9\ài',_binary '1>˜­yPb\\\æ\Ývq(n\ä¾Ïž\Ò\Í \Ät\ÏOa','',0,'?'),(_binary '–\Í•@\éò$\Ã?Qq\Ï','wp-content/plugins/woocommerce-multilingual/classes/wcml-setup/class-wcml-setup-handlers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Šñ”ç¿„15Ö†	¹Nô…j',_binary 'ü·´—\èþµ\'&W³\ë¿Zb‹Šf</\à*w\ßGˆ','',0,'?'),(_binary '–\Î\ÄR:^\æe+x2—\Ùc','wp-includes/PHPMailer/SMTP.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÃšVgM\ÂV¥}Æ³Œ0½',_binary '}<Át\ÚN\Óø³4†a¨þkûs&˜3J× \ê\â_/½\éÚ¶','',0,'?'),(_binary '–\Ð#Wœ\Ä\Í\0v¥¼—°³','wp-content/plugins/yith-woocommerce-compare/assets/js/jquery.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÑÀ÷\é\n™¬¯\îÚ“¼vGV',_binary '¹È›T%J•Ç©MaùF2Z3¿­/:C4›|zG\'¹','',0,'?'),(_binary '–\à\ÊWƒÀu\×\×üYó0s\æ','wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/components/lightbox.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ë(E¶g[q°<`\Æ\rQ¦\Ù',_binary '=\Z\0^ù\È\Ð3„›ÿ`‰\\–•uõ\Ås\ã\Äl\Ã6\ÔÁ\ÙU§u','',0,'?'),(_binary '–\âCg¿¸ñ‹}|\ÇE÷ý','wp-admin/js/word-count.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I)ù\r­]\ÐX0Áh5©\n¸',_binary '\Ó\\DE\àÿ¦¶ƒlV¡½ü¨ôHk›®\\N†A3“³”','',0,'?'),(_binary '–\êK\\s6YN0¹9`W@','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-express-payment-block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zš-\ãr¹_N—\Í\Í\áœ',_binary '>òÀ =…—P†õB\çc\ÉÅª/y\\*|§‘x\ä¯M','',0,'?'),(_binary '–ôY~ÿ.M\Õ\à÷œº\Ð\ë','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/Transformers/ArrayKeys.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ¹qB)y±QŽ¿ð\ëjt',_binary '¦·\â÷\î1\Í\Ì_/RØ¹\ÝZ(‰v\î\Ø\Òýe6«Q\Ê','',0,'?'),(_binary '–÷èª„­ ü_Fj\ëI\×F','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/stock-filter/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"j¾†#y{/\r\Zayœ|\Ç\Ã',_binary 'uñu2\Ï:W\ì1\Ã\Ñd$|õ\Z#\Ä&\ÕWFúi\Ã\ÒALÊ´','',0,'?'),(_binary '–ûÿ³8²\å\Â\à™¿','wp-content/plugins/products-compare-for-woocommerce/style_templates/simple-and-nice/simple-and-nice.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w¶Ì¼bð;f\é\Ílq\Ü',_binary '\Ìÿª€÷Ÿwp+•De\é¨PûPú%/€¾	g3','',0,'?'),(_binary '—	v¾O.„|ß¤Òµ‚','wp-includes/js/tinymce/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o•‰\à\È\ßx:\Í`\Òºÿú',_binary 'Y\á\â§#wO\Þg^\'\åbº\ì‘:…^\ë	=è·¨|ô¼\È','',0,'?'),(_binary '—×š\ÕGVŒËºIg\ÇHs','wp-content/plugins/woocommerce/includes/class-wc-post-data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\Ê\è~ö¤®¹pR%|\Øøþ',_binary '&Ã§\Åöþ5¢\ÇX—Y>Äˆ5Å¡j(!F\áµö\'7','',0,'?'),(_binary '— 	3uDzÔ«dˆ\È]','wp-content/themes/flatsome/inc/admin/kirki/modules/preset/preset.js',0,_binary '‘\Êo\\š\0¸\\ù\Ð\Û>WrÚ',_binary '‘\Êo\\š\0¸\\ù\Ð\Û>WrÚ',_binary ';\Õ\é{[\'¤\àC[ë±³¤f7¡+!§þÁE¢@t*L•\Ï','',0,'?'),(_binary '—*\0\æU\'-,ŸM\Û','wp-content/themes/twentynineteen/inc/template-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=4UB\é:},>ŒyzŸ\Ð',_binary 'EŸ;\ÙL&\ÆÍ¿\àWa\Þ6\î^\áì«QP/þ\ç','',0,'?'),(_binary '—>û\Óð[³÷\\\ä?Z','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/event-emit/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\Õ}\Ñu\\•!#3Z–j}VŸ',_binary ' F)Ì«8&q³|,oM\Â Eâµ¯¦©­Á}x€Ž\Å¾','',0,'?'),(_binary '—CóQ%ŽŽ@	\ÄJa ¹','wp-includes/blocks/archives/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬ÕœVHÁ³¢¬Zf\ãº\Í',_binary '4!\0ú}!Œ;9o\ãl„_¼l\â4¦\ßf’\ÊL¾\ÙV¬l','',0,'?'),(_binary '—Hœ€\äHn\èâ†3~¨','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/price-slider/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡¡þ“#ôz´d•(F­E',_binary '\"n{<ZüQJ+:ò¾\Ø\ï\Þ>W)ð\éùÆŽ\ë—@Š','',0,'?'),(_binary '—Lß¨õÏ¤Œ(º¹R­','wp-admin/css/code-editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'û\Çgq•\Ù\Ïi¤sí”‹-',_binary '¥~:\"”`\Ôöhe&@øú*œÀ\ì\êûA¿¯\î\ê€«','',0,'?'),(_binary '—`³ùq\ÓÈ‹\ÍJ\Ë*','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-terms-block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-|_\ÑEÜ°)š\Ü/ƒ',_binary 'ù¦T[x€üN=ÓƒòM…\ë³º¬5…¨\Ñe©l2\ß','',0,'?'),(_binary '—cÌº”\Ëv®#¼$ü\Ú','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\Ù\ïW7\æPA,ºÿIx\'',_binary 'ý>:\ç\ê\íiIš\Ôsk\à~­\á\È\ä+\Ý\ã¡Klœ)\Èsi\ê','',0,'?'),(_binary '—k³|DD£•*@4\ë','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Database/Reader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦\Å\nAgvú˜1PƒØµ',_binary 'º¿½§0o*\r‘\ÄvAöo\Â3²›\ß:\Í\Þøjõu½§y','',0,'?'),(_binary '—lP¯\×û†_\Äk\ÎqŸ#','wp-content/themes/flatsome/assets/img/payment-icons/icon-postepay.svg.php',0,_binary '—\Ð4\Óø–0\êùx\ã6iL\È',_binary '—\Ð4\Óø–0\êùx\ã6iL\È',_binary 'AP4}\ã\ç)\×Rnjz”°ì–½ž\0°-G¡~\ãÿºF }','',0,'?'),(_binary '—l^5«™\ÎCgÌ…üó\Þ5','wp-content/themes/flatsome/inc/builder/shortcodes/ux_sidebar.php',0,_binary '¾\æ\é\Ï2\ã·~“\n©ªû',_binary '¾\æ\é\Ï2\ã·~“\n©ªû',_binary 'T\"b/’7\Z\Íz`d\å†\Î\'W¢p\'.8X\\‹{ŠMô\0','',0,'?'),(_binary '—w8?1«@Ò¤b ±vJ*','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/totals-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&Ó´h„eõ\ÞddÚ‡t,',_binary 'ð÷Z.jŒWg¸<F,®d7ôe\Ã\å?€\éõÕŸ\äG\ã¨','',0,'?'),(_binary '—~~\ßm\ï®|\'^\Ï\Ü','wp-content/plugins/yith-woocommerce-compare/assets/images/06-bg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ö«c©U½Eh½\äyŒ\èG',_binary 'À\è\áÜ¡\Òf³ó\æ`]l\ây|2y^4´õ…\È3%þHŠ','',0,'?'),(_binary '—Œ6¥‡:™$4›-Tg5','wp-content/themes/twentynineteen/sass/elements/_lists.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡|¹R\"NB\ÇU NX\éj',_binary 'œ\í€\ãùV\"Á»\ZkY½cnUkYY$-,Ÿy\êš\r®','',0,'?'),(_binary '—Œ\Å\è>C8\Æ(„|š5p´','wp-content/plugins/woocommerce/vendor/composer/autoload_static.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿À»3C!]#ñ#>^\Ú\Ñ',_binary 'Æ’&le§ö¶ðŸ.<ñN\Ño\ê§iC!aƒø\'5”M','',0,'?'),(_binary '—’\Ò@M„Ž\ZVx\íBK\è.”','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-it_IT.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gyE\\\é\×b.\ÅtM•\Ñ',_binary 'ì‹¸ž#\Z\Þ9ø \Öq-µ«FH7\ÝM“,¦¹‡\é¦','',0,'?'),(_binary '—™pŠ©K\Öb™ø\0!—(¢õ','wp-includes/css/dist/block-directory/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•Ó§Zc`¬ñ¢ß¡U¨\É1',_binary '²´°ôó-t¦S\Û\Ú\ÒbC\Âušõ+<\íƒ¨ª\Ùd','',0,'?'),(_binary '—ŸXf09¼\à\ê%\é?0','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/WooCommercePayments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DhžI€!y\Û,\Z&l\ä¥',_binary 'Uü¹Úµ\Âxv\Í._I…A\'øÀ\ày¾œÁe8\á\Ô?#\Ô','',0,'?'),(_binary '—¦„¡»\Òõ´™½òŽµm','wp-content/plugins/woocommerce/templates/notices/notice.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°•H\Ég|M\íp“fV_\ï',_binary '\Ýû«ŸšG\ï\Ç<½­ž­¯‡\áo\ë©\Öôý[\"¢tÅ\Ü\ì','',0,'?'),(_binary '—­€g} y7›Q`iÿˆHu','wp-content/plugins/woocommerce/includes/admin/marketplace-suggestions/views/container.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ê\'xú«*3g\ÃÂ‘+;',_binary 'V¯³\èOd²u\ÕûÖ¤‚®´¼³*K®$G\"SE¬°•','',0,'?'),(_binary '—±÷\ZñZºAb\ÉV«ü\Ö','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/grids/grid-7.svg',0,_binary '\Ù\ë3\çA;FÌQ©\Í\Ô?y',_binary '\Ù\ë3\çA;FÌQ©\Í\Ô?y',_binary '3\ÚK8\Z*ö\ØT…f¢’ë›¬8N¦ƒL˜)\r˜q\Ü(','',0,'?'),(_binary '—¼Á-™›„Q\'—h','wp-content/plugins/woocommerce/src/Admin/Features/Features.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³4\r˜\ÌÏ±,¡/…PA‰–',_binary 'û\'‘™ü\É\Ð\àY$ÿöÛ²»÷°4Z“úC\Ñ±5 \è]G','',0,'?'),(_binary '—Ào1\Ú\á]ªY\Æöœ^†','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-shipping/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é‡Ï¦¹^9xN\Ã7\ãl\Í',_binary '\Å\Í–yhB/¿~®¼†®\\«\ÖÇ‘‹ù\Ë\ètŽ\Ô:¦','',0,'?'),(_binary '—Á/\åµž\ÕÐ­gCˆX5/','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\Â\í²_ÿM!]¦z*ó',_binary '½.ˆHü¤J/ûin9v\Ôzz3~\ï¿V\å`ƒ¥¬.ó[;','',0,'?'),(_binary '—\Äù²—3Q—4','wp-content/themes/flatsome/template-parts/overlays/overlay-menu.php',0,_binary '‘\ÙJƒ]\Ô\È\Ön«—š}C”',_binary '‘\ÙJƒ]\Ô\È\Ön«—š}C”',_binary '3)¯ô.\Â\Ç;‰N=uPƒÀ`\ÅV¡`9€\ÉÖˆ','',0,'?'),(_binary '—×„$\Ä%»Û˜¯ºj\Ã5','wp-content/plugins/ti-woocommerce-wishlist/templates/ti-wishlist-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\ÂS©\í|íŒ²U]Ë±',_binary 'º\Æ\ë‘j\nXÐ”\Ær:\ÉÁ°\ì\Ëxd²g>–Ñ‹»\ÑoJ','',0,'?'),(_binary '—\áNµP\×§\Û‚ô¨6r','wp-content/themes/flatsome/template-parts/posts/partials/entry-title.php',0,_binary '\É\é(Àø1K84¬rDx¯»',_binary '\É\é(Àø1K84¬rDx¯»',_binary 'mh0*‡—8µ)%\å#\ìXŽÃ­ÑƒX6Ðˆ\åþ›‘','',0,'?'),(_binary '—\æ\Êüý¤\Öq,h¹¯¡†´A','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/chip/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}czkS¦2á¤(I9e‹',_binary '[\ä\Øt§II\\\âu~‘\'r!µˆ)u\r`Ô«*†k1xw','',0,'?'),(_binary '—\í|œ~”‰÷\Éð‡\åô','wp-includes/sodium_compat/src/Core32/Salsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')6´¥):ö\Û\Íð¸Žý®\â',_binary 'H0¢“L³Ñ—?¸ãž¹.1\ÇMòIe\Ó\ÉÙ£’','',0,'?'),(_binary '—ñ?\Ïø»c\î\ærF\n´H¡','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/gap.svg',0,_binary 'Ëž»6\Éi8ƒ^$B\0¿ˆ©.',_binary 'Ëž»6\Éi8ƒ^$B\0¿ˆ©.',_binary '½Qœ\é½2h?\'ƒ\Ôûw+`\Ï\\\ì\Ô\ÄWBó\å\Úòó;\È$','',0,'?'),(_binary '—ñb¦ü’Áÿ£º|e~\ë','wp-admin/css/customize-widgets.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'HÍº/\áME\Ðß¾_Ø€C2',_binary '?”Îµ^d¼’\Ö{)iÒ²ß¼U…;“,=5\í\ÃA\è\ëT','',0,'?'),(_binary '—üŒDý>k2š) xª','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/media-top.svg',0,_binary 'ƒªO^^Ùƒ,\á\Ñ\Ï\äô',_binary 'ƒªO^^Ùƒ,\á\Ñ\Ï\äô',_binary ';¢©ž))$@žß—!£¡õ/¿ñÚ™Ø“mw\Ð\Ðr[\'','',0,'?'),(_binary '—ý\ß_¶‘ýYW®ÿI`\ë','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ReviewsByProduct.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é¶\×t£½\ç¼¦3j\Ækik',_binary ']	H\ÕOWwõu¡\É?Ä‰•¥Š\Ã+U_q\ïnºÜ˜¦','',0,'?'),(_binary '—ÿµalòVš?Žfý\ZÑ‘Œ','wp-includes/IXR/class-IXR-server.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½\Èdß¹\à—\Õ$c¨9\í«',_binary '\0\ä{M\Î\áU¡\rN.€)”-¤õƒ\Ä`wHò\î\Õ','',0,'?'),(_binary '˜\0h\î”Kf•\0ðø','wp-content/plugins/wordfence/images/forward_enabled.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\0/3e4e™\Ï\×ƒ\Þö',_binary '0¼´Q7018—Þª9-–z9Ø½qð\ÓSrÄ’\ÓPõ\Ó','',0,'?'),(_binary '˜y9^\r.Ä¿f\Ë_+F<','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/button/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Çx«O\Ç\×ü1¸@y\ã',_binary '\"+«¼&^%\Ñü¿\"„Œˆ…n¡+\Ï$–y–­—','',0,'?'),(_binary '˜\r¯o\È1L»$3¶Q','wp-content/themes/flatsome/404.php',0,_binary 'z­6³\×Ï—j¾wõlÚ',_binary 'z­6³\×Ï—j¾wõlÚ',_binary '}ö\Úõ\Ûm\ì \'S%$w…r€Õ±G[­\ß\Ö+]Jõ','',0,'?'),(_binary '˜›¯\ÐÂŽ\Ù\êH\Ë06²','wp-admin/images/browser.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Á²ùÂžµK\\„b•$þF',_binary '&$ñ†Ä‰9›¡\àˆ\×~_SH\Ò_\ÙÌ“\ï%L¼¶þ\'&Á','',0,'?'),(_binary '˜ò\áýt½\Û/ut2CY','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-jck-wssv.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ü}ð\ïHUAJ8\éXr>o\Ô{',_binary ',<tŒ7\íz\ÊP?\ÝXN¥ª{\ÈÉ–\ÉO`µ\Í\×A','',0,'?'),(_binary '˜üT±½dN\ëQyRe“\ï','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader/class-version-loader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©ó\äBÃ‚´þü\Ü9c\ßaŒ',_binary 'W\ï]\æu²¤h!ˆ\ÉC\Ö\n”\Äg…\ä	GR·\á\Z`±','',0,'?'),(_binary '˜‹µ\ï†8(\Z¹j\èZ]}','wp-includes/js/jquery/ui/effect-pulsate.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G`)|­Vúž\ï§v¢š',_binary '\Ü4•]ud\Îi‚Ó£x‚ò¥®À¢\âp%¤–E·¬','',0,'?'),(_binary '˜\"L:­ô\Ü‰M \ÖMx','wp-content/themes/flatsome/inc/admin/kirki/modules/css/class-kirki-modules-css.php',0,_binary '\ÖCƒøò	Õ”U™Æ‘pˆ',_binary '\ÖCƒøò	Õ”U™Æ‘pˆ',_binary '¶\\o\Ík•Gj\Ú2\nû\Ædfz\Û`9s°m„Ë…Ø»Š','',0,'?'),(_binary '˜-\Ø(ÒŸ\âoF‹L¸º\Ô','wp-content/themes/twentynineteen/classes/class-twentynineteen-svg-icons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&ò\ã\ÇE\ÃÁ@­)_qOr\Ø',_binary '\é[T·‘Ž°4GzÝ¹o•É“HL4§` Á(¼\í ;ÀGc','',0,'?'),(_binary '˜5Ï••®V`\ë)é´„»','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/discount/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©U¦M\Èb|,M*1\ÓZd',_binary 'ûå²µ-\Í>›57}[\Ä|€\0Âˆ9Î(«\Ì@\âˆÑ›','',0,'?'),(_binary '˜?nžB®…Ö½-²ŠQ@<\Ü','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',÷Jª¤´\ÃD§Å©\æˆ',_binary '8\à³¢¦ô}+º‹{3{9\n²ŒBxž¶ñ=\'0¼\Ï','',0,'?'),(_binary '˜B…$¬¾ž4®ºÖ¦‰†•','wp-content/plugins/woocommerce/vendor/maxmind-db/reader/ext/maxminddb.c',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±¤\Âx\ãt4W\Ê$\èg±\n',_binary 'e¶ \Ô\å\ç\Ø\Ó	\ËøŸ1ˆE…ò\Ë0†\ËmP5Q%g_©\Î&','',0,'?'),(_binary '˜I:sa\Ö·\ÊtU])W','wp-content/plugins/woocommerce/src/Internal/Admin/Onboarding/OnboardingThemes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V5KÀÔ¨hv=Á€½\Ê~p-',_binary '—\ßlÁ–\0gÞˆ“¯²[Y\Ç\åy-*\ÕRóÍ°öÒ‹','',0,'?'),(_binary '˜Tñak§\r‰÷80o,\Â','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ä2yE\0ú¡\Û\ç½uô\Ù',_binary '8f\êXµ¹\Äl¬6\Ä(\ëA†\n-’©\êO?8—–˜','',0,'?'),(_binary '˜U\ÄSˆ\rB\ç \Ìc>\r\Ý','wp-includes/blocks/latest-comments/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xî­ŠV©e\ÉYù2yÉ‘#Š',_binary '˜	L\Õl\Âý¹…\0¤Å«Š–\Æl\àªSƒ^65jz\Âu','',0,'?'),(_binary '˜W\ÆP\çAW/\ì%”µ™z\ê','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/uk.js',0,_binary '\îç›Œx„\àvL\rŒ“',_binary '\îç›Œx„\àvL\rŒ“',_binary 'R˜}§I\îI	B	rE\ÑA>?´nºv»²\ïc\ëò\r','',0,'?'),(_binary '˜XöRÿevø• O¶ôU','wp-includes/blocks/quote/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`…§˜Ç›\n\ZÎˆ³þF\ä',_binary 'd©qSmŠ)].Ä§D\ÖÁxXH7cùh71§J','',0,'?'),(_binary '˜X¸\Ô\Í\ìg5ûôŸ¼(=c','wp-includes/js/tinymce/skins/lightgray/img/trans.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿ž7I \Þ1F¦Guôj^',_binary 'œð \×Ã»§õ«Í¥J«\ï“OmOš:Ï™\é\ç\Ül˜W–5','',0,'?'),(_binary '˜`ÿ\Ñ_f\Â3G\Z\í‡\Ö0…','wp-content/themes/flatsome/inc/admin/advanced/assets/js/iris.min.js',0,_binary '™”‚\È\0÷õ\Í½\Ú{1.',_binary '™”‚\È\0÷õ\Í½\Ú{1.',_binary 'n›MzRP¢\0>ñj$ª\nKW¹`A,?h\Úkþ“µ','',0,'?'),(_binary '˜h\Úõw^\ä(þnõ¼\È','wp-content/themes/twentytwenty/classes/class-twentytwenty-customize.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J¤\ÃÔ€kˆ\\nq8\ê†&',_binary '‚e!ö˜ñ¿\ØZ+r-ô¤W,…R:f\æ|ø³\n}\Z','',0,'?'),(_binary '˜l\æØ‡À‡Ö•OGˆW|\×','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/phpstan.neon.dist',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ\îrùÎ¤¿\ãvc\â\Ð2',_binary 'œ\Ó\ÐC·?rô0R¹ú\êEª!\åtc\ä1«Œ=oª¦','',0,'?'),(_binary '˜pt_ Y‡ÁŒ\Ê7L\ãKt','wp-admin/css/deprecated-media-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÙH›¿Œñ\r\ÊW¹\èC\Ö',_binary 'ªU=E„\"=ø—a¿w´f\ZÍ¬9š8m‚FËŽ¦V¦\Å','',0,'?'),(_binary '˜y\Ü!Þ“\ß\\šT+','wp-content/plugins/wordfence/css/wordfenceBox.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C¿\ÚWYœ~\äHœ#\ì]',_binary 'šrºŽµ¨{µ\Û\ZI‰5™O1”‡¤Q\Ü\ÝÓ‡¨£\Ò÷C\ß\ï','',0,'?'),(_binary '˜|{•pU\Íÿx$ ?w·–','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/CSSList/Document.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Þª0R4_±{ýZ5\Ð\íü\í',_binary 'ü!,\"y\\ºº\í€K’0Q6|ecE\r\ÔÀ°`žY\ê','',0,'?'),(_binary '˜®—\ß\Í\ìX«\0T\ÊO \ê•','wp-content/themes/twentynineteen/sass/navigation/_links.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ýu‡#\é…¨~\×m¥»',_binary '\0ª4ÝŒ‘ú°^\ZY\Ä÷iÿ_¾O\âü_¯#','',0,'?'),(_binary '˜ƒ©\'(jli¸“\Äô™\Ý','wp-content/themes/twentytwenty/template-parts/entry-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Þ=4¤ùu\î&dJ5LA(',_binary 'g(GE\0¹+fòz«.?M°E¥\Ê\Ô?q«ûÌÁ½@','',0,'?'),(_binary '˜‰\ãó\ß\ä®÷2¶¾\ÞG','wp-content/plugins/woocommerce/includes/class-wc-rest-authentication.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\Ô)¹ôce7ˆ/¨\Ä',_binary '˜nñT¾\Ò\ÛL\ç@ß\Ó4\Ó\ÖQ\ßß‡\åÅª¸køD','',0,'?'),(_binary '˜£ýT¹D‰ÀF\ÒK1\Ç','wp-admin/css/media.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ä\Ï.Ë£c=<ê‘ž£n',_binary '5+\"\ÓÝ§\ïi;ä«©Ü³ûþ\Ú	\Ô{\ÃLR','',0,'?'),(_binary '˜‘\r\ì\ËO\Ø\Î\Î†k‡\â|','wp-content/themes/flatsome/inc/builder/shortcodes/ux_products_list.php',0,_binary '\Ó}\"U\n\á\É¸\Æo\n\É&“\î',_binary '\Ó}\"U\n\á\É¸\Æo\n\É&“\î',_binary 'v?.€œ±\Z“c4÷\"öN«lL`¬Zj1','',0,'?'),(_binary '˜™\Å,l\å\Ç\à`^c\â\r´','wp-content/themes/flatsome/inc/admin/options/shop/options-shop-catalog-mode.php',0,_binary 'L¹œm:…²ó’£¡©;\0.F',_binary 'L¹œm:…²ó’£¡©;\0.F',_binary '\Ä|DRùv\Ü„o«\ÓTÿ³ò \åÍ›8gª±q‹©vø','',0,'?'),(_binary '˜±ƒñ_RfV—ºÔš\âª\âO','wp-content/themes/flatsome/woocommerce/myaccount/header.php',0,_binary '\Ö\ÎmMlFŸqË­ò¾´Z',_binary '\Ö\ÎmMlFŸqË­ò¾´Z',_binary '\à®G\\ÿmš\ã\Âý[€À™\ì]—j2£\ÈqIE™b^N™','',0,'?'),(_binary '˜²„(SU»c¿lK[Þ‚','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/css/fontawesome5.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':&ma„[ðó†ZI<\Ê]',_binary '‡qŒ¯Qb™\Î;M£\\`@H»…?ÿ›S\\†\Û`?\æ\í','',0,'?'),(_binary '˜\Ä/GÎžÓ¶[­Çœ\î\ÙC','wp-admin/js/gallery.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C*½³ô?4–k³\É&-s',_binary 'ôv2ùUW\ènö4V’[an•*š?¾ò‚­ÿX»À','',0,'?'),(_binary '˜\Í\É[²/9} `:w\ÙP','license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UT{C\ÅÉ·°!²-‘Q9\å',_binary '5Ÿ\Ú\äWJyªó\"\ÄE\ß><£GE½;€\Ä=¯«Xµš\n\n\Ïf','',0,'?'),(_binary '˜\Ó.MH\â0£l}QÍ„','wp-content/plugins/woocommerce/src/Admin/API/Reports/Customers/Stats/DataStore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™m]\Ø`>‹zF¤«hð˜',_binary '‘\\l}\Z¤G\r³UˆƒaÀ¨¹-·|	u\â\É÷B\á”','',0,'?'),(_binary '˜\ÙÀv¨Ž\ÒK:\àøZF','wp-includes/blocks/site-tagline/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\ÂF¶•Ù‡s\×[’mH”',_binary '¡½B\nÃ—\ÃÈ¹F)|6=9G€†¿>ƒ»n\Ì`žu\Z','',0,'?'),(_binary '˜Ú©“\ÒÔ?œXÅ†¬²b','wp-content/themes/flatsome/inc/builder/shortcodes/video_button.php',0,_binary 'µ~=DK¯?Õ…ÿÌ²;$>',_binary 'µ~=DK¯?Õ…ÿÌ²;$>',_binary '–ÀKõ0Š+tuû¬\ÍN˜™¡W¹ûF·s¸/¥','',0,'?'),(_binary '˜\áYM‚\Ë~\ãBÿ\'','wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Efc¢†¢8g5ýwUB¥ž',_binary 'E,©i:98\Æ[[xÕ†“Eu\Ø¯!\êõ\Í6‘~M+G0³','',0,'?'),(_binary '˜\â\ï7·%\ìÌ¬Š\Å\è&','wp-includes/css/dist/block-library/common.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•\Ñ~X\'<õN\\ª¼T°',_binary '\Ú\0°\')\Õ\0b\é\0L¹e\íú	qZÓ»1gWe\ác\Ù','',0,'?'),(_binary '˜\ä³?\åH“ña\íú»\Ü0Ej','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-top-rated.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÑñÇŒ^@\"\á9¬Œô\é',_binary 'Kë­Œ†ZöóøQ©)\ç’\à\\\ï³‚\í·;ÚšN<˜\Ò.E','',0,'?'),(_binary '˜\é«\Ï¨\Z¥~;3w\Î\ã ','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/config/WPMLConfig.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñ8ý;¿Ï–bœð%Œoªx',_binary '˜\è}ña\ÞPÓ¤i\ß4¸ûH$o\é\á\î1À\"Ü‰S!;','',0,'?'),(_binary '˜\í*AÉ™¦x[ƒ‘¾\Ó','wp-content/plugins/woocommerce/includes/customizer/class-wc-shop-customizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú\Ë;­U.‹©\Ñ^ŸþUü',_binary '†@b\Õw9w‹\å“ÁY\rõŽL³\ä¸1Šã³³ðJG','',0,'?'),(_binary '˜ø\æG¾‘›hVC','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\ä\à>i–	ZŒ· W',_binary '\é×Ÿ\Þ*•\Ä6j\ízù G\ån€?\æŽE{ð\Þ\\ h','',0,'?'),(_binary '™\0£ùµ\è \Ò.}¥fwA','wp-includes/date.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n[*(Ò¾“w.m\Ûy´z\í',_binary 'ù.£\0\ÓqB_]£þš\Ï\ä«\ä\0\ë\â–aþ}­‹\0Œ','',0,'?'),(_binary '™G\å\æ‹\Ì&¾¢zr©8N','wp-content/themes/flatsome/inc/admin/advanced/functions/functions.facebook.php',0,_binary '«x”\íx«\Ë=‰ ýCYr',_binary '«x”\íx«\Ë=‰ ýCYr',_binary '\Ï\Ë<¨\ÃÞªc8‡#l@zñ–\Å&_/$\Ì','',0,'?'),(_binary '™É¶µ\ÅcZnv‘\Åñ\ë\Ì','wp-content/plugins/woocommerce-multilingual/screenshot-7.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O,”loWìº›–ˆN{\0\ít',_binary 'Ä¤ˆ7\r,ïŒ‚¸\â_¦‰\ßýY­Ù¼\\nš/(ƒ(','',0,'?'),(_binary '™i¥hB+`hh\è\"ò','wp-content/themes/flatsome/inc/shortcodes/ux_stack.php',0,_binary '\çXvýNp·C1\é{+µ‰À',_binary '\çXvýNp·C1\é{+µ‰À',_binary '\n\îB™k5aSKn‰pñ\0Õ‹\ržž<\Ï-Ÿ§Jˆ\"8½•','',0,'?'),(_binary '™!\å$©Ma-a*^Š”C=','wp-content/plugins/woocommerce/legacy/js/prettyPhoto/jquery.prettyPhoto.init.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÏQý#†\ä\ÕN\êŸ\ìs\áþ',_binary 'Md	7‰\Äu\Ò\È\Z\Ú+i\æÓ\Ãd\Ø\åŠ\Ï\Â*#','',0,'?'),(_binary '™3¼8…K\Ò\Ð\çû‚.CÀ','wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-ipn-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\âWù\ã(6É»E¢L­',_binary '/\ä¨k\Øõó}™ MT&’¹ñªb=«8*–A\ÓLyOf','',0,'?'),(_binary '™7úrcŒ¨ù$hž\Ü\á\Ô','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/icons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*ò]N\n&ŸÃ‡ø\\dT',_binary 'ÿ+fô\ÓÁýŽÌ^n0$\â|˜õ8üÁ\Õjˆ\ã\å÷GE','',0,'?'),(_binary '™Qy]U+	UÊ›¹ó\Ù_','wp-content/plugins/woocommerce/packages/action-scheduler/classes/schema/ActionScheduler_LoggerSchema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ã“\éUô\ÒaòlA»t²\ã´',_binary '\"n\'•!ª\ZDšEÃ¥}\Õ_†Á|‡š…#\çý¤K`4ve','',0,'?'),(_binary '™[‚Ÿ®QH\"pS1Èª\ëc','wp-admin/images/arrows-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '— Qð†}\Îñydb#6„',_binary 'ø,cË¿\Z¯i(~\æ\Ö\×)•Œ©\Î\'€\Ä8[A\é/¨I\Ñ\åx','',0,'?'),(_binary '™\\Žl/§S¬½	ú\ÇÊ¨ƒz','wp-includes/blocks/template-part/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U{\Þ9¸‘eMz+dùz&e2',_binary '\Ïip°°=] \é¬,Çž8aÿkt¿¾¥r\Ý__h\Ù>','',0,'?'),(_binary '™c\ëXÌ°\Ý~M\Åu¥d\È','wp-content/themes/flatsome/inc/admin/customizer/img/category-title-featured.svg',0,_binary 'gu¦è“¥\Ïd´\Í$G\Ú<',_binary 'gu¦è“¥\Ïd´\Í$G\Ú<',_binary '`˜›}Ô¬.$?~–O\Ì³¦÷˜\'\ÍõøŒ \ÑVŒ‚Ë¡','',0,'?'),(_binary '™hÒ¬\ç¡d\á‚#ÿ\Zõ\\','wp-content/plugins/ti-woocommerce-wishlist/templates/ti-wishlist-item-data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ïEÊ§}Ò¨TKÒ¯Ë„	',_binary '\Ë\Æ\ÏQf\nk\Ô\ç}`ðÔ‘v$-§‘U¾1C€À”\ìO>	','',0,'?'),(_binary '™j¹\Þ6žJ‘\Â4œ\ï\Û\â','wp-content/plugins/woocommerce/includes/wc-cart-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\Ù\Ócl\í¤\åóU÷ÀlN',_binary '\åfš\ÎR¹¥\\“œv¢\Ër:„\Ùn!LVBfù\Ç Q¿˜','',0,'?'),(_binary '™m\á^¬Aÿ\è\Óô\Øcn','wp-content/plugins/woocommerce-currency-switcher/css/images/ui-bg_glass_75_dadada_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Á,e\Ú\Ó\ëúdÈ£•š$i',_binary '÷—›\í$sŸ\ã\Õ<&\ÈV~“\Ò}QýW3’\æZh(0\á¬','',0,'?'),(_binary '™xsÔ¶õÇ—…¾Œ^ˆ—`ü','wp-content/uploads/wc-logs/index.html',0,_binary '\ÔŒÙ\0²\é€	˜\ìøB~',_binary '\ÔŒÙ\0²\é€	˜\ìøB~',_binary '\ã°\ÄB˜üšûôÈ™o¹$\'®A\äd›“L¤•™xR¸U','',0,'?'),(_binary '™Ð³&¢\Ý\ÇÆ¶<»b®)\\','wp-content/plugins/woocommerce/includes/rest-api/Server.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\âV}k¸ehË“=;/',_binary 'Ùœ—\ZQB\Ñ\ÄF\è\îÕ¾‚ª\×0°lý	ð\ìÒ§q','',0,'?'),(_binary '™‚¯	<¤“v´\Ê1³','wp-content/plugins/nextend-facebook-connect/admin/images/stars-big.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€6@h°S\ëpŒÝ±Í¥ô',_binary 'n;¶P\ên\ëª*\É\Ï\Ü-©M{J£³¹:LðªŒ\Óf%ˆ÷+','',0,'?'),(_binary '™‚\Ìý\È \á\æ0|','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/attribute-filter/edit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ê?\Å\àÓ£¡\à9¹H~y’',_binary 'R£­\ï@Þ„\Ì\'j6d·WOp\Ê\Ã\Üñ\å\ç\Ëxz\07','',0,'?'),(_binary '™H@¿\å…T&œI\îÄ¤g','wp-content/plugins/woocommerce/templates/cart/cart-shipping.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ä;,búógÉ¾\Û\ë¶ýo^',_binary 'Yþ@\\® [\îš\í¬sE\×\ÌÚ§f;¬T\'¼{\ÐË°~\Ì','',0,'?'),(_binary '™˜[ixTºq\Ô\Ã~Wv¡e','wp-admin/network/plugin-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8@_vaÑ”Í“N\ß|\Åjµ',_binary '<‚	—gK\×K\ÛÔ†\ä{\ËÈ‘nV»\âU´Ì‰\n\æ2ö','',0,'?'),(_binary '™žF~…‘Ÿyµc7v-','wp-includes/js/customize-preview-nav-menus.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–\â²À»Ž447\"-•n¼¡',_binary 'v\\½y’¤pw\â\áwõ.©VDCi\ë©Äœ“÷‹ž×¢','',0,'?'),(_binary '™¨&\'Œ²„Q\âbª]öˆ[','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/media-right-large.svg',0,_binary '\ê>\ß>´Óˆ\rÁâ­†',_binary '\ê>\ß>´Óˆ\rÁâ­†',_binary '±(\n63h\ë\â©\ÄÍ†\ïD„vzŒ\r~r‹ñ^5SPl\×#','',0,'?'),(_binary '™¬øv¿k`ÿ{D\ë\Üþ','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-customer-downloads-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·O\ìF\ÎÿÞ–Iy\ßL\ßt\È',_binary 'ð\Î\Ê#%¥\í\êB\Ò\È‹luxô.”½x\ÃO2\n´ƒ','',0,'?'),(_binary '™±÷”Èº>ù\í6k\Øç¬¤','wp-content/plugins/woocommerce/templates/single-product/short-description.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|§\ë–\Ü\é>Rö\áVøØ½\Ø',_binary 'Ô$¤Cÿ¬´j%DÅ¹v\Æ\ì/ûuÂ§-\È\Óùu4&','',0,'?'),(_binary '™·B\é>›Šñ¾!´¥Vr ‚','wp-content/themes/flatsome/inc/builder/shortcodes/ux_banner.php',0,_binary ':\á—1Â \ÕX\ï\êT²-z',_binary ':\á—1Â \ÕX\ï\êT²-z',_binary '\ÉûŒá§”$Û«\åR‡ª«Æ…,\ëM\n\Æ`\ß4u\Ý','',0,'?'),(_binary '™¼Ö‹ n(E\èplî£º¿','wp-content/plugins/woocommerce/assets/js/admin/settings-views-html-settings-tax.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿d‚^‚ˆ(\ào…gN87\í',_binary 'v\âƒµ\éUš„²R\àƒn”wq\Ó/7:ÚŠD¤š†–','',0,'?'),(_binary '™\Î#–\Üv¯zŒ° ð7OÂ›','wp-content/plugins/woocommerce/src/Admin/API/Reports/Categories/Controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\é\Ô\ë2w•¶v\ì[Q±',_binary 'B‡µ\Éqõxgß–\â°C¥%¡¾\Ø¥t&PBPÿP','',0,'?'),(_binary '™\ÙH\Ôüˆ_X\ÔÐ…²gU','wp-content/themes/twentytwentyone/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†l½5\'¢$Ù¬\ë9 {¦',_binary 'ª\Ä\0ÿ<wž‡©³3=S\Â\ÂwT-|\"\Ú\îõuV\Éc ó w','',0,'?'),(_binary '™ä‘–\ëwƒ7:\'\Âh*','wp-includes/js/dist/vendor/lodash.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»µˆ\ÌC`\ß]1~¿õõÁ¬œ',_binary '×³[£p:\â­	Œz\ê±\Õ\ÌK\ÛQWwŠt}H¤\ÓI­(	€','',0,'?'),(_binary '™\æiœ%›ù\Ão‹)\Ü#…»\\','wp-includes/blocks/image/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ûû®©s\Û\Ð”`5Ï}',_binary '\ßk\Û¼ù˜$´\ï‹-¶m\á¾Lk¼üƒ\ä\ÞM!','',0,'?'),(_binary 'šµ\Â2¼\Ýôø:ý¬”¡·','wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…b4\Ç\'¡—&\ëŸð',_binary 'Û¼ó›Š4P\'ô¢\Ñ\áhN\êa\ë>·¨\ÛEþ5à°›','',0,'?'),(_binary 'šM\Ì}Àn¢\"4jdüR§ð','wp-includes/blocks/post-template/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª\ìN\æ¿¥˜¾¢M˜}\\Œ',_binary 'K™.\Üc­~õ®\áü\Î\à[&\'\Ì\Ì1\íSñSÿ\Ì\Û','',0,'?'),(_binary 'š\Z-®”x7\Ãù(A\Ä4ù»\ç','wp-includes/js/swfupload/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ë\à[°`\È^ˆ-Ào÷QWz',_binary '©\Ñ:)²›6Ÿa\"3r…\Ü\rP\rN™4‘yJ‹Ö·“U\éq','',0,'?'),(_binary 'š«e/O\É\"{ÿU÷ô\å\Ó','wp-content/themes/flatsome/image.php',0,_binary '\â\ê\Çd\ÑÀ;Tð” \ïú`>',_binary '\â\ê\Çd\ÑÀ;Tð” \ïú`>',_binary '#\n\"€­²/}½\ÒP\ê›4A5“X·/ùÆŒµ[CQ¨','',0,'?'),(_binary 'š \ng.&‹…—±¸”.û¦ý','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yit-cpt-unlimited.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2+d)cB\è\Ëd\Ç\Ä\ÍÀ',_binary '\"Uú\é\ÝÚ‘q\ÇÁn¨u6¡eø¢K\Ðl\è*½S³tRU@ú','',0,'?'),(_binary 'š(\ç¨ý¨\"ÿ‡\Ë?4U','wp-content/themes/twentytwenty/assets/css/editor-style-classic.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ó\êi¬\ÞK£wþøc\Í<',_binary 'CQAüFFCÀzôR[ZM`­Gbf±2©AŽpÐ‹®û\Å','',0,'?'),(_binary 'š,:¿\êô3ÀÕ¹üC@\É~œ','wp-content/plugins/wordfence/modules/login-security/classes/.htaccess',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…¼\ÕA¾a¸bvrñ¤',_binary 'C‡¾ö½\'r…9½\ì@\âK¡Þ†t¡ª™ö\â§w#@kº','',0,'?'),(_binary 'š1W;cŸ¶š¸°NñÀ\"\ïu','wp-includes/pomo/streams.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7³\ä×¥}\ìú¶S— Ÿ\Þ\Ð_',_binary '·\'†)\Ë\Ó\Z3EóTºËœfI#Jœ;:_\\\ÛL j±!','',0,'?'),(_binary 'š2\Ò\à“.\êo}\'2YW','wp-content/plugins/woocommerce-multilingual/classes/currencies/class-wcml-admin-currency-selector.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\Ð\ê2”­\Ët\Î,n\×{v\Ö',_binary 'À#‘ó\ÜP,\í»sþ¿UÉ§\î\"{¼\Ú\Ê?W\êns\è\îC','',0,'?'),(_binary 'š8—A•\ß0I F3 \ç H','wp-content/plugins/woocommerce/includes/interfaces/class-wc-log-handler-interface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·\äY%&–ý\"\Ýo x`±(',_binary '}\ßÀ\ÚÝ‚Á6@X?\Ãbr\"(!¾†*´{¹±š°\Ò','',0,'?'),(_binary 'šBÄ¶b’šºN›ý¡','wp-content/plugins/woocommerce/assets/fonts/WooCommerce.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦uy=iô\îÅ£‚[ü-¦r‡',_binary '\Æyö«=ÀI\ÎÓƒð\Ôlrch\Ål² Lñ\Ûk	‰‹‘M»','',0,'?'),(_binary 'šCŽ\Ù!ËŠŒJ\Z{\Í~!t','wp-content/plugins/woocommerce/assets/client/admin/chunks/activity-panels-help.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.Í†™\ÏC!7\Ï\èG\ê™h<',_binary '6–Ê)ªG\ÔP7aM’I\âAŠ½\Êb\ì\0\ä!\Â,','',0,'?'),(_binary 'šID$RªB\Í@	{H—hd<','wp-content/plugins/woocommerce/assets/client/admin/csv-export/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ùzŽ\Ýó!m\ë\'ŽO÷P',_binary 'šŠ\Ú7œ\âÈ±’ªh\Ý\";\Õ\Ø:Pº\ÓK£eª–„\Ý<z52','',0,'?'),(_binary 'šJž‹B¾GT²;,l£ÀT','wp-includes/images/smilies/icon_exclaim.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\\­³>5\0r\Æ\Îôsg\Ø',_binary 'µL¸Éµ\èH²\ÏA(œxÊ“2‘EP%ð	‘\×#½ü¯#\Â5','',0,'?'),(_binary 'šVŸ^\æ‚3±\çm6‡._P','wp-includes/customize/class-wp-customize-background-image-setting.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(¥g«½Áƒ0š\Ôb¼|\×',_binary 'fY@}-\ë«ao\ãºÁº‚ò@\ÚŽ\ÃÂ¤Æ‹Xo‡X´›','',0,'?'),(_binary 'šmx[J¶€Î \ïró%ð°','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ý\Þj7\ÃH\'¹òðuÁ\Ãk',_binary 'Ï†\Õ\ë„(.™™²\âf|\Æò\ì\ï|\íˆ\ãO\àÛ¶ð9”¨ý','',0,'?'),(_binary 'šp\ä\Ë0\n-\èy¾\r–HU','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/deprecated.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9§~%\Ö{¶_œž8\Ðüµ³',_binary 'ýD¿\àÁ»x\ØGKLñ’\n\â«qH\ÞÀk„™:8','',0,'?'),(_binary 'šq2t’rÛ—,]s*rº','wp-includes/blocks/audio/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5¢ó\ë‘3žyb\çA¬',_binary '­\Ãù@,BW/\æR-¤M\äŒw\ÌÂ›þ¬ÿõ\î]Ù»','',0,'?'),(_binary 'šw\nZ6øVi\é\ÄÍµ\Z','wp-content/plugins/woocommerce-currency-switcher/js/chosen/chosen-sprite-dark.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\ãôT]>˜\è\àN˜Ó›',_binary '\Ésž\Å;÷\Â^$Ò€\0«cPË‘ª¶\ØÎ“ž\ï|²h®\Þ','',0,'?'),(_binary 'šw?l_\"wƒa\Ù\ÇY','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/woo_next_prev.svg',0,_binary 'Ù«&\ÔX\Ìdž|º\ré•„',_binary 'Ù«&\ÔX\Ìdž|º\ré•„',_binary '\rIS;&úSóý*\Å&\Ö\ÌÑŒS3­ÀA\ÜA¥\ÛÌ¤„','',0,'?'),(_binary 'šzØ¯=³P5‹\ç \Õô¤H€','wp-content/plugins/woocommerce/assets/css/jquery-ui/images/ui-icons_222222_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's£Nµ5‹J¤šA\ßZe6',_binary '´Êª”»Z6\ì‚\Å\å?c7<”J\Ú&–˜\Ø\\`jF\×','',0,'?'),(_binary 'š€P¢(\ØBv\é=> \Íj','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-details/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”ÆƒÜ¨6½\à\ÉK¯*ù\nX',_binary '°¿·ŽHÁ ña·\Å{\æC<›\"@)º¾\ä\àÿ\Ø:ôB','',0,'?'),(_binary 'š‚)t{\ëb\Ú\0¹d\ár¬','wp-content/plugins/woocommerce/legacy/css/reports-print.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡ˆ={Œõ\Ôyv&PPÀm\é',_binary '`]Ù³ö–ô„\ëN.d\ÈEÐ´Ž\âÒ¿ºÁª\rW™”','',0,'?'),(_binary 'š‚%¹‚¼h\Ë6+›>š3-','wp-content/plugins/woocommerce/includes/class-wc-api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\így™¥wÕ³º†ŠðM\à`\â',_binary 'á—–A>¾ò\ê\Çv\Ó_¼±–¸V¬\á\Æ´\èv\å\"V]','',0,'?'),(_binary 'ši]6Z+\\²Nu^–¢\Õ','wp-content/themes/twentytwentytwo/inc/patterns/header-centered-logo-black-background.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½™u(„cü\ÎH\Ô\å7¨\î',_binary 'h`©f¦72 L‘\íí¸§\ìÀ(Ca\\¤c0--?{þœ','',0,'?'),(_binary 'š”,ao\Î:Y\ç\r\à	h\ìu','wp-content/themes/flatsome/inc/builder/core/server/actions/editor.php',0,_binary 'ƒ\à\Üq\'Z MX\â“¤',_binary 'ƒ\à\Üq\'Z MX\â“¤',_binary 'i@QDx-¥	©ƒuõ(wWÖ—X\Ü<Á…j>\ëSž','',0,'?'),(_binary 'šž”ó\ß[‰ôD?_…[Ÿ','wp-includes/random_compat/random_bytes_libsodium.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4‘\î\å\í»\ßÕ³\åd\ß',_binary '\ì§I\×nÿ¹6\Ø\ä¢_\å³‰”£ga8\Ì\Øy\Í\Æ].\Ý\ë','',0,'?'),(_binary 'š †…-ù¸!?†ÿ\Ö\\\ìb','wp-content/themes/flatsome/template-parts/header/partials/element-cart-mobile.php',0,_binary 'Wæ¹Œý\Â}3œ\ç0®eNŠ',_binary 'Wæ¹Œý\Â}3œ\ç0®eNŠ',_binary '\ãE,“Ù³¯¨lµ\ÐÞ¨ó7\æZ•\æV}`Ÿ1ˆ¹','',0,'?'),(_binary 'š¢ _l\ås³I¾\r¿\ä','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Õ\ÞUò«3\áÒ¾\ÉP¨m',_binary 'o\Úa\Ë\å/jnuø\Ý\ÚFõX]¾òS{\Ìu¥\á','',0,'?'),(_binary 'š¥7¸M3Âš\ã$\ËôŒ','wp-includes/images/smilies/icon_question.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³\ß[-\0\Ò\'¾‘W³¢F',_binary '\Æ7b \Ø|6#\Å\Ðö\íýƒ©9/?x»†~»\ã[³µ%t','',0,'?'),(_binary 'šª™‘2@\ïk\ä¬w>K”2','wp-includes/feed-atom.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›¾K\Ö:0µž™w–Ê',_binary '\æýˆ>¿g\çH…‰‘þ‘¢\ãÀ­:œ\Ô×Ž¼\ÊL3?w=¬','',0,'?'),(_binary 'šªô¢\ìH\0Û™À®h™CÁú','wp-admin/css/colors/ectoplasm/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.Z¾\ÞÔ‘õ½5dii?)\Ú',_binary '“\é23ø\éJ‡s“‰T~úg ñ¤7\Ë÷‰l<\Ç','',0,'?'),(_binary 'š®Hó‹vŸwdT\á\ÎVM	','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/icon-info.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡®Œ7Œ\0¸E-j\ælO–/',_binary 'ŒVW€7ø~†%–ˆôü\ìb¨#®gŸ\Å	Ú‰P\ÈF¬\Ï','',0,'?'),(_binary 'š°wtòH©\ë\á-s“\0\Ân','wp-includes/js/wplink.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“ÿ!{ŒTîž¸W°Vú°ÿ³',_binary '\èª@eº{F’ oø‰Á`+5pùQ\'+eC\ê‡\î','',0,'?'),(_binary 'š²¹8mÉ­e”3o©','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-fee/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PD´eøô5\Ç/exµU',_binary 'zY»¬x\Úóò&:5®.jE¦S7\Ìiœµ)Úº³\ÄûO','',0,'?'),(_binary 'š\Äþ\Ú=Ö¬H–@-i˜\ï','wp-includes/css/admin-bar-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ê©Ž\Z\n\ï\ï	½\Æ~`ñb½\×',_binary '<\'ö1½\âZ3Å¶’ÿm\ãÜ»ö°?¦\ÛVGEy8«','',0,'?'),(_binary 'š\Åpšš\Ù\ï6‹É¨±ˆZL','wp-includes/blocks/widget-group/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`#\Ï\ã#ý	ø\É9\ä',_binary '²\Çì°À+7!¨\Ô^\Úa(NlqŠEÃŠ\ÃOsž!Î¦·','',0,'?'),(_binary 'š\Æ\ê\ÉÁš¬1\×ž:','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/huge-sale.svg',0,_binary '\Ù0#5	¶´\ÂÏžr,\ï',_binary '\Ù0#5	¶´\ÂÏžr,\ï',_binary '°\æ\ÃE\Í\Òk–\Ðc.q¬\Å)¯eWzB\Ù\î k4,','',0,'?'),(_binary 'šÍ’pó–¸?X:u*\æS£','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-cart-items/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'üm«‘\ãñ\r+;5e>\äpg',_binary 'º®\ßöVs³Š´(9\Î\èu\Ïu¾03sü?>)\î[F’','',0,'?'),(_binary 'šÖ”•\Åßšy(qD«w\Â','wp-content/plugins/wordfence/models/common/wfGeoIP2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÕYJs@jŒª¦r´jtm',_binary '\É3Ã‘Ñ²s\Æð\r&±z=”ðþ‹\Ödsó¹\ËpJx\É3“w','',0,'?'),(_binary 'š\Øôðû«\ßý”U¼:þ‘','wp-content/plugins/woocommerce-multilingual/classes/wcml-setup/BeforeHooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ó\Ûk\çt[KûÑ„‰>\Ã\Z',_binary '˜\Ö\ÍùiƒuY \nDd£¦3\îTSK*‹Jªì’šð','',0,'?'),(_binary 'š\Û\Ö~­ gØ€j\×8œŒ','wp-content/themes/twentytwentytwo/inc/patterns/page-layout-image-text-and-video.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ýövõ“\Ö\ÌmÅƒ~w\é',_binary 'º<2¨²\Øc4…ò\"pý\0To!£\ÌR’wCKx¶D\Î','',0,'?'),(_binary 'šÞ½uŸ A\æô¶+¸E±ò','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-add-to-cart-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñd`õ/”j°^\Ýn¥\ZR\Ö',_binary 'ÿh§\Îs‹„òø´€\Ç\ã\ÝÒŠ¨\Z5›\åDkü6‰','',0,'?'),(_binary 'š\ß(B«A!¬ªž\×\Û\Ü\Ýöñ','wp-includes/theme-templates.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{^–÷A3\Ü\Zl3Ç€¼',_binary ',\Êÿ;x*¹‹ƒ\ÝI*°ysõ>þg\ÙS×—\ç¸\ìd','',0,'?'),(_binary 'š\ã³´|?Ì±³ÿZJC\ç','wp-content/plugins/woocommerce/src/Admin/WCAdminHelper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥L\Æœ¿\Ç\È E˜²\å',_binary '\Úòšÿ\Û¤Iœ`\Ö\Ç·˜ð\Î\Ô\'\Ù\Ö*;ÜŸ\Ô ','',0,'?'),(_binary 'š\ãüõ+6—°øµSW¢\çi#','wp-content/themes/flatsome/inc/functions/function-setup.php',0,_binary 'e¶]À\ØòoŒ\àÆŒ‰2',_binary 'e¶]À\ØòoŒ\àÆŒ‰2',_binary 'Qû¬eˆ5\Ë\Þ\ÈiaÜš\Ñvƒñz\0!}}_›|˜©Á‘','',0,'?'),(_binary 'š\ê-\'f¨ß•?X:4\r!','wp-includes/blocks/table/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬g>± ]\ÃM:h·ð\É0ÿ',_binary '¾·\Ã\ç\Ú0®6\ÞÿŒ;\ÊIþi¿©3` 6\Ò4µ=bƒ','',0,'?'),(_binary 'š\êŠh‹L¼²JHÿX#0','wp-content/plugins/wordfence/lib/wfUnlockMsg.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Jõc)û¾Re\àY\ßl\ä7ü\á',_binary '.\Ö`ŸiõWþ	t1\ä}\ëstyôÉª\Ü\ã³!K','',0,'?'),(_binary 'š\ì)K\×W&\'E ¶F%”','wp-content/plugins/contact-form-7/includes/l10n.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ï}Y\Ã*~±!F\0\Ç\æG',_binary 'bº8N!;2¨\Æ4œFSÃ1L\áJ³\éø\ãJFò·Z ','',0,'?'),(_binary 'šð»Gùœ\ì«\ÐM(ž','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-category/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž\×oNµ›\Ý\ÌVT«	û',_binary 'Jê‡®“^BýM<Oñ¢£–\ÌÂ¬À5\ßR¢³IhÏ‚','',0,'?'),(_binary 'šõˆªKÇ¥Ý³˜|uŠ\Ï','wp-content/themes/twentytwentyone/inc/block-patterns.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\ÇõøºT$–83\Òz•¾',_binary 'v|ô^”Ñ†\ã\ïEŸO®xŸ‡ Ì R\Ò\ÒÆŒ$¨šG','',0,'?'),(_binary 'šö~õð\É\Ñ\ëG97…;(','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/BaseLocationStateRuleProcessor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LA²¨c\Ø\Ð8\Ü\Ñ\Z³7/a:',_binary '\É\"ÿClž>³j\ícÙ´Œ¶±¥WYO=¶$®‰5§Žmñ\"','',0,'?'),(_binary 'šÿ™^\'½qˆ\Â\î0…\ê','wp-links-opml.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Á\×\çln•\Þj\\w¥X=7I',_binary '7ƒ\å\Û\"1jú\ßL?9Y´\"©ô&ŸõºkÅŒVD©|\åñ','',0,'?'),(_binary 'šÿÂ‘wzû(1P}X/<','wp-content/plugins/woocommerce-multilingual/locale/woocommerce-multilingual-sv_SE.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à€q³[„Œ™\Ëûh',_binary '›\'‹\Ýw<›ð8€Å­¯Œ.-\ÅyÀÞ£œr†\ë\ê\Ö','',0,'?'),(_binary '›fyV}hlWžƒ\ÂEF¢·','wp-content/plugins/woocommerce/src/Admin/Notes/DataStore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬46ñb3iú³-R³¡@',_binary '\Þs5Î‘b\Z‰\0±Tp¬T6­\Î™n\ßL?/Y\Ñ[\Û','',0,'?'),(_binary '›˜ºv­]Â‰\Æ@V\"%0ò','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products/all-products/edit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²ŠK+ðð¸;@¬Cn9=b',_binary 'j\r^v\ïcl_ôBñK;¢½”\æ³\Ô\Ê º—¬ÿ­\Ä\Z\èm','',0,'?'),(_binary '›8\Éacö=#’´a\ÄJ„','wp-content/themes/flatsome/woocommerce/layouts/headers/category-title-featured.php',0,_binary '\Æ/¼šÉŽ F¡\æ9u\ÂO',_binary '\Æ/¼šÉŽ F¡\æ9u\ÂO',_binary 'ä©ƒ:ª\Ï	ôP6½ žocóR–~†$\×U\Ùf&\Ýl¡\Þ6','',0,'?'),(_binary '› zÎŸ¨y\×\â\ÝkÞ,\Å\à','wp-content/themes/flatsome/inc/helpers/helpers-woocommerce.php',0,_binary '\'‰‹¬\Ç>‹•vÍ™t',_binary '\'‰‹¬\Ç>‹•vÍ™t',_binary 'e®\æ\Û\êCÀ%ü½@ &\r,ý¶Ó´\Za\É+I\ßr','',0,'?'),(_binary '›%n©\ÍTß’	^\ÇgXÎ°','wp-admin/js/inline-edit-post.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ï\ê	›„¿\Å\àþ¡L',_binary '\ê\ëLuŸD\Ýþt\\ShM\Äj-±€\ÛXûv–·\ê4#\çQ','',0,'?'),(_binary '›/Y-\Äl?peC§µ¡cQS','wp-content/plugins/ti-woocommerce-wishlist/templates/ti-addtowishlist.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M²fYR\Î\Î`\Ü\ÜP›ý\Ó\Û',_binary '˜òˆ©·ù?l–±:ò_k·+\Î\ßóúA\Õyq ¿‰\Ô','',0,'?'),(_binary '›0\'A\"6,\Êj\íB\ãTš\Þ','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/nav.svg',0,_binary '±Q›S¿BKQ›\ãKRa‚ý',_binary '±Q›S¿BKQ›\ãKRa‚ý',_binary 'ò\æš\'7ªVe¬ü\Ò<¶8?R.W¯z[XM\àÙ’\ZeŸ','',0,'?'),(_binary '›2mÂ¥’i\ÇNec^·i\\','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-custom.php',0,_binary '\Z9 ½3\"\\X{uvb ',_binary '\Z9 ½3\"\\X{uvb ',_binary '7=§%\ìû\r«3\àgw‡\ÍlvN\ÊcŸíŒ½wô¹³--N','',0,'?'),(_binary '›3\âôaD•w·P¶œŠ\Æq','wp-admin/includes/class-theme-upgrader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lVCŒd£‰¶_\Çø,|\ÓW/',_binary 'û\ã\çÍ±\Ø\ï`•:~\ìÀò¸\ÂO ˆ£Ç…\Æä¢¸±w¦','',0,'?'),(_binary '›G\è\ê\×M\Êÿ.·ð¹','wp-content/themes/twentynineteen/sass/variables-site/_fonts.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VRor`ƒ£G¬‰=¿6Ü¾',_binary 'Z{¨¾«L­\ì\Ö ›GNJú\Ç\n\×	õñ\ä\îâª‹\Âþ','',0,'?'),(_binary '›Ný!ÿ]\"mÀ÷\ì³V1','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/AllReviews.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G²û5Ö‚]·@DII\ZÐ',_binary 'ð%°\Å\Þ@¸£N&Ÿ˜…\í\Äè›˜e>õ0UvÀ\'¦\Â\Z','',0,'?'),(_binary '›f\â)\r°!\ËôÎ¤\à™¹','wp-content/themes/flatsome/inc/admin/advanced/assets/js/color-picker.min.js',0,_binary 'ûš\á\Ëe\ë\0\Z¡YenRYF¯',_binary 'ûš\á\Ëe\ë\0\Z¡YenRYF¯',_binary 'Š\è\Ð/ì„´\çÖ¾\áa*\Êò\Ý\Ð\'½\Ì\Â=±„ºg±™','',0,'?'),(_binary '›kr84)z›nË°†›\å‰','wp-content/plugins/woocommerce/assets/js/jquery-ui-touch-punch/jquery-ui-touch-punch.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\í\0º7\Ð\ç^9tØu',_binary '¬a­µ-\ËñÎ®oNe\r„e³p~¯~\æ]‚FÉŠ¤³ƒŠ±','',0,'?'),(_binary '›m`«\Ä5\n+\Ö\ã‘7\Òñ','wp-includes/blocks/search/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hC¶\Þ\Æ|V”ö\ÆÝ‹',_binary 'I®«\Òe%\Íöµ\nŽ¾Šÿœ\é‰‰¹\Îy\ã|½bU','',0,'?'),(_binary '›y-q=ˆø\Î\ï\à\ì8Iº²','wp-content/plugins/products-compare-for-woocommerce/css/products_compare.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\Ç\ïR3\ï\ßý=“1·¦\ß\Î',_binary '\æ-’\æc²y¸Û¼º/\ï?þO=£¸ns†\Z’^','',0,'?'),(_binary '›„ûÖ¬¼{¢_ý´Ž\Ç*;','wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-field.php',0,_binary '(®­ð†\ÛÈ¥‘úlð',_binary '(®­ð†\ÛÈ¥‘úlð',_binary '®‡\Óò\'\0Õ·¹\Ôiö›\íø®\ß67¢6,ŸÄ§]‹v[','',0,'?'),(_binary '›¼ÿ\0\Ì\çüd\îž+\Ìõ','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/price_table.svg',0,_binary '\ÖIù\è¡\éú]‘1jø}',_binary '\ÖIù\è¡\éú]‘1jø}',_binary 'nì‡­ó„fy\êzÛ²$X!`7ö†Œ·­‹{@X\Ó','',0,'?'),(_binary '›—¾K\áÄ‘R€üE(½ T','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/codemirror/codemirror.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ó– p= :výwRO',_binary '¸ô’ï—‹\Õ\Ë=±¾ºSwÙ¡\Õ\ÊpZöÀ\È\nbaÀ','',0,'?'),(_binary '›šn&¢\âðn¼!å´¬\î','wp-admin/css/site-icon.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l•Ëx\ÚJ‘\ÅTGˆ˜',_binary 'ð+\Ê\Å\ÎWµÿöV\Ûð3¯(qF\è\í\æÀr;·|^ö@¤\Õ','',0,'?'),(_binary '›¢þ\Ë\ã\ìty¨…U±ž','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/yit-plugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ý\Å[\È\Å,\n	\Êý¡Fµ\Ã;þ',_binary '‡»X…&;=²1<\Ùp\Ù	vÄˆw\ß5ƒñGó­\Õ\ï','',0,'?'),(_binary '›±Zô¶\ÃV\ã\Ç\èWI.\Ì','wp-content/themes/flatsome/inc/admin/customizer/img/nav-pills.svg',0,_binary '\Ðü‹•ÿ*\nw\ÃÂ“*´o',_binary '\Ðü‹•ÿ*\nw\ÃÂ“*´o',_binary '\r^‰\r®aòkhŸ¹oV\èŒL§E²§Z\'\ß\ä‡]Õ°\Z','',0,'?'),(_binary '›²ScüC„’=ý\Ò\Ç8»\Ù','wp-content/plugins/woocommerce-currency-switcher/js/chosen/chosen-dark.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*ø \ëŽ\é\n5Ó¯{©|\ï³',_binary 'Ã³\éœ\àüú‘ýEó!Œa‚¿\n_ù*«ž\Ö\Èi*>ó«E','',0,'?'),(_binary '›¶Vy¦a…\"x(P–5\ÑP','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-contents.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Óñ!\Ï*#A\åÚŠò\Æ/',_binary 'ÿD#0¶YiÎœ\Ô:§Q|!@\ÓXB]%xýf¿òÙ¾‚‹†','',0,'?'),(_binary '›\Ã{ü›{8B%@\0ˆx\Ð','wp-includes/blocks/post-featured-image/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†32\Ñü,Que‹\Æ/:gg',_binary '¹²3@ŸªÌ…Á¼‘¯\\\ï\îÅ¸\Úð“{«A¬\É\Ð','',0,'?'),(_binary '›\Å‰óEX\ï\ï\Õ|T§\Ä','wp-includes/blocks/media-text/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†—©¯\é\ÓD\ÜBj\Ä\Ú>',_binary '–\Þ\Ø\ËF\ã°uõ~”^\ë½_2\n¸TE\Ï\ÐG^1-Gae','',0,'?'),(_binary '›Ç–\Òóµ´&\é¥ö0','wp-content/plugins/woocommerce/assets/client/admin/data/index.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹n\ç$k6\Ôrøƒº:Ú™i',_binary '=S€\Å\Î\éS?úB¯\Åf\Øü¬I÷¦\r\ã\Öñj£€¨','',0,'?'),(_binary '›\Ï/@ŠíŒ¢U\Ç\Â]¢ü@','wp-content/plugins/woocommerce/assets/client/admin/chunks/two-column-tasks.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.¯žH|\äB\Î*‚¯’B;',_binary '$`%/\ëƒ\Ð-p\ÞÓ†J-&ð,¤U‡G™ËŽoñ	À','',0,'?'),(_binary '›\ÏJ…•]7ƒ-\ÄGf\è}o','wp-content/plugins/nextend-facebook-connect/NSL/Persistent/Persistent.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F½(5{‡ar­“:¢>',_binary '\Ò`pv­MŒ9\rušl°§ðH÷fÔ³\×\Zl¢\É \Ò','',0,'?'),(_binary '›\Ñô¿Ž–47F¶þH¤','wp-content/themes/flatsome/inc/builder/shortcodes/values/line-height.php',0,_binary '¬3E¡%\î40¬pcÕ©`u',_binary '¬3E¡%\î40¬pcÕ©`u',_binary 'a>\\F\ã.¼·û\r¦8\0]\Ôý©FF”9Mª&\ßT\ê\âô`¼ª','',0,'?'),(_binary '›\Òaf›—·…nNŽa,gPˆ','wp-content/plugins/products-compare-for-woocommerce/style_templates/simple-shadow/simple-shadow.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j3ŸO9ùÞ² \ÏÝ `',_binary 'ºG%º	w‡÷ñL¬¨G\Ý8Ù°“L\ÄF°±Ï‰LW','',0,'?'),(_binary '›Òÿ€f‡M·\Ð','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/radio-control/option.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿ¤ñ\â¶YjùÅ‰cŸ$',_binary '­øugl\Ü\âË¾r#/\Ì~r\'`À\Ã\×¹6\ZÁþ6','',0,'?'),(_binary '›ÒŸÃ·ýµðò\Õ\Ý','wp-content/plugins/woocommerce/includes/shipping/free-shipping/class-wc-shipping-free-shipping.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')zXV³i\ël†\í\Ñ-\Ë',_binary 'J€\ÌýLhK4Ÿ÷gc\ÞoMhf‘˜¼Ÿ\Ð&šÁÔ®|','',0,'?'),(_binary '›\ÞVr^T2–÷™X\ÞO¾±¸','wp-content/themes/twentytwentyone/assets/sass/05-blocks/utilities/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|ü‰ñiz/Æ¸\ØME¨T',_binary 't•££¬Ÿp1¼\ZQU\Ý|O®¨ò\Z(0\Ý\"tV[','',0,'?'),(_binary '›â¡¦\Õ9G\ÂÃ˜c\É*^ô','wp-content/themes/flatsome/inc/builder/core/server/src/Collections/Elements.php',0,_binary 'Wgÿ.K’‡[ŠEœ”ŒD',_binary 'Wgÿ.K’‡[ŠEœ”ŒD',_binary '‚§Pg@ú¸\è\Ãˆ`£65¡º¦\Ì\ëµ‘Ë\Ú<\Ü\Û[','',0,'?'),(_binary '›\æ¥MŽEyùŒ´qq~','wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-mapping.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½DþG\Úó\Òô¡Â¨\ã[_',_binary '\Ïeñb\ï\ÅÇˆM\àùügR°úð•+±\ãøM \ß\Îý,K\Z','',0,'?'),(_binary '›\íh\Ã~\Ø›\âÖ“(™9','wp-content/themes/flatsome/inc/builder/core/server/helpers/options.php',0,_binary '¸®á­ ¯`ô§&\r¡cúT',_binary '¸®á­ ¯`ô§&\r¡cúT',_binary '\"M¨™{©\ÐFŽ\È\ì$\Ï_\æ\ëyfŸšJKµK?&¬','',0,'?'),(_binary '›\íª]j¼l±\'²ô–»/x5','wp-includes/js/wp-sanitize.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾\È:k™\êóE‹t6Q\Ð™',_binary 'yÎ¦V­\å }É›qþŠ·‘K>ÛˆP6\Ó\Ä*÷\ÞC\ns}','',0,'?'),(_binary '›\ï:î£¸q$\Ç/,e4?;','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/sv.js',0,_binary '¿=·1\ÍÿŽ2f†J\0}ª',_binary '¿=·1\ÍÿŽ2f†J\0}ª',_binary 'qxž„‚s%l¶j\n\ÊÎª;zÄš!öc$ˆÐ‡@)ž#','',0,'?'),(_binary '›ð\ÔW´\Õ{\Ú\\,ƒYu','wp-includes/js/jquery/ui/effect-explode.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ý\ZY·±mv\Ïg¼™\æ\Â',_binary 'H¬MŽ2\ë¸$¨¥—#¨WœA\ì;¿\ä\é+ó™a3','',0,'?'),(_binary '›ó!RBn´?qÐ³ñ‹\ã#','wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/CA.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ã§\ëƒ[Ó™E¸DÆ…š',_binary '°œ1\å:\ïB2\ÙPq±„ÿÿ\ê\ì´?\ÎH—­U\Ó®½=','',0,'?'),(_binary '›ó71\Ð¬\È}\nû\È','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1’2+;F\Ä\î\ÅÐ½NMƒ’',_binary '¾w†\Å\"³*”Á5¢U T@™\åœnyÈ³\Æ^a¥u½°\'','',0,'?'),(_binary '›ú\Ëð>Ù˜±\ÜS1\Ñº5','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»	m_d&Ôºô—‚0w',_binary '0”ìŠ¿úksÏ†z\Ê@þâ±‡)\Í·T÷+…ôœ\Ú\Ï','',0,'?'),(_binary 'œ‰\Ä\î<¡\ÑxQ{}$*','wp-content/plugins/woocommerce/includes/cli/class-wc-cli-tool-command.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼ø@·•Ô›£–DœW‡',_binary '\\‘z\í	I;c!ü¹2”Î¿Ÿ)#þ¿¿$dˆž™|P','',0,'?'),(_binary 'œ2ˆ¥€\×\Ín´\Ñmþp','wp-content/plugins/woocommerce/packages/action-scheduler/lib/WP_Async_Request.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à\Ó\Í4ü`‹|D$WEü',_binary '}±v\å¹>\ãûµy•d\àÆ—Uù÷s\Íù\×\ï\Ú;þ­h','',0,'?'),(_binary 'œ&\n”dÂ›©’YPK','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/GravInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\âÞ‘®»—U\ì@^LŸ]',_binary ')šƒ\ÌLB|@£š©£\"\ßU™eJE»Wz ƒƒ','',0,'?'),(_binary 'œ!!O³/¾\\„u\Û*b³®','wp-content/plugins/woocommerce/assets/js/round/round.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'býLðÅ¨ZH\Ùþ+·j\Þ^',_binary '³1÷ùWû\'\nK\Ø]vY²\ØÏ§Xü~\ì\r»´`hWô@','',0,'?'),(_binary 'œ$þž\"€0œ\ësyu','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-tax.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.ú\ÔÀ+\n\ÇÆ‘\â¦(p\\k',_binary '¸¯Wñ\Êÿ^J(Kc.óõ\ËÁžJ¦„ \Íö\"Q–f','',0,'?'),(_binary 'œ%œ\ë¶©\Çù \Ô\éJ|','wp-content/themes/flatsome/woocommerce/global/breadcrumb.php',0,_binary '\è”\Îòó5\ß\ët\Òú',_binary '\è”\Îòó5\ß\ët\Òú',_binary '€\Ø\Æ\â\á2U\ÃqQŸf‚¤³\àz{¦|\àOa²[ô','',0,'?'),(_binary 'œ-\î,z\î\Ä\í\áÔ¹¶h\n','wp-content/themes/flatsome/inc/shortcodes/buttons.php',0,_binary 'V{½<mºû}÷\çe¬™;À',_binary 'V{½<mºû}÷\çe¬™;À',_binary 'ñ,í”™0³\ç=\è\Ó4D:`›ÿw„5\íX\Ìi\ì}\Å#Y\á','',0,'?'),(_binary 'œ2X69G3\ß\Z\Ï+}Aü6','wp-content/plugins/wordfence/views/waf/option-whitelist.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©.²‡…’\â #\Év¾}',_binary '…i¨º©$‘¸h°}\Äws¦óö\ç\Ö©ºÁX¹¥2‡c','',0,'?'),(_binary 'œ4µ\Úþ\æ7g\Ã,%\æh','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\ÔÜ¼\'Z”y£{\ï\Ï',_binary '\ã¡÷\\y¾ÀÞŸ#´Þÿ\Z¼NV\ç´\ÝüwøC`¤u^\Í','',0,'?'),(_binary 'œ5ô‡¬ƒ\Ü\r¿\Ëk\Ô\Ä','wp-admin/js/color-picker.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_°™ŸŸ;\Zñ©£\Ã½5\Ñ',_binary '\n—œmö\Üm^¸G&%Á\0\ÆSKmŒÿY2p„\Ú\åÿ¹ó#','',0,'?'),(_binary 'œ8ƒ©Ž…¦¬\ãP5aÄ¨	','wp-includes/images/smilies/icon_wink.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e?2®\á‰i¡\à\ã¥',_binary 'š(¤š\ÔVÀ•{ñýV\ÕBk\É\è\Ê£o(`Z¼ªV	6','',0,'?'),(_binary 'œ:\Ýªš\Å\ÌþúJ©³\'\Ò','wp-content/plugins/woocommerce/vendor/symfony/css-selector/CssSelectorConverter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’d\ámT\é^q\ZùtP\ÙQ',_binary '¬\È\ã\à\Íi¦¢ /:&Z\Ü\ÆöO¡sUHC¸\Ô÷„#','',0,'?'),(_binary 'œ<1\Ï$Ÿ\îˆæ¿€','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-fee/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®‹\É!À€…¶_€ÿ ž…',_binary 'f^d\rõñc9¯´ùµ\Û+«br[\â.ùS50\ß\Ñ$\Í','',0,'?'),(_binary 'œ?‘\ÏD¤Aƒc<qsNr','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-3-col-dashed.svg',0,_binary ']‡¦^fu%)«\×©µ',_binary ']‡¦^fu%)«\×©µ',_binary '„\ì\é‚U“&wñ.•.üý6\\ƒSÿ\Îvja~,\ï	)²v','',0,'?'),(_binary 'œAº¸4€;P¦\í†>+µ¾','wp-content/themes/flatsome/inc/admin/customizer/img/text-top.svg',0,_binary 'Ž‹‚Â§I\ÛWzm\"J',_binary 'Ž‹‚Â§I\ÛWzm\"J',_binary 'P ;\ê&õŠF\ÜÏŒiø34\è\ç€\á}45¿Œ','',0,'?'),(_binary 'œJü`\'¾Á÷þgÀ6\ï','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/loader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\Ôz…\Äcù‘ž\Øôv\ç',_binary ')©\\\ì\áÿU¼9pœ²;¾\ã{\ÛÂµqŽu','',0,'?'),(_binary 'œNýÿ\à£;R¢”³\Ð','wp-content/plugins/yith-woocommerce-compare/assets/images/upgrade.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æ\ì\Ò\Zº“˜±ÿ=R\ÂV',_binary '·6«‹t·³kOŠ\âÍ˜u}\Ã\Â[‹À6—ný\r\Ü3Ed/w','',0,'?'),(_binary 'œRŸ0ü·›t¾‰\ê]“\Ø','wp-content/plugins/contact-form-7/includes/contact-form-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ@¸:#ù¶£\ÙZ*&Šdó',_binary '=[‡ý\×\Ð7…\ï}:,\ÎT+$sw#«ƒS\Å3¶6d','',0,'?'),(_binary 'œ[9)\é>¤\ë\ç\àŸ\É\Ò\Ýv','wp-content/themes/flatsome/assets/js/builder/core/editor.js',0,_binary '‰÷¢1“Ã¶v6«\"',_binary '‰÷¢1“Ã¶v6«\"',_binary ';LÀ\æˆ…\ÝBp~3«e\Ô\ïóKƒí¸«Þ²ŒOšs\Þó','',0,'?'),(_binary 'œq½\îT_½š²\å\Ä\Ç‘‡','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-wp-components-setting-ajax.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¢3:«PefŠ3m\Zs–',_binary 'd\"Uð™2ˆ¼5F¬x4›^Z»H£óÁ:»-¬«\nhH\\H','',0,'?'),(_binary 'œu»Ikz\å\î{:h!¿','wp-content/plugins/woocommerce/src/Admin/API/Reports/Downloads/DataStore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';‡\r	˜wxö\Ë{s`V9¼¢',_binary 'õ\×}ƒ\à©e\Ô\Ê)û‹\Âùø\ÌGî¥´»\ÃœŽð\×Ì­\Ý','',0,'?'),(_binary 'œ…‰Šþy85õ\ÜÃ¦b\Ö','wp-admin/css/colors/sunrise/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÆB›_\éq\Þ0L\Ü\ã',_binary '\Ö]‹H\àU•¦(ð–Ÿ³\ïÁ\ÚnY\'(!\Ñfž,TX“ø','',0,'?'),(_binary 'œ‡˜\Èþ­Ÿö\Õ.‰bW\Ôk/','wp-content/plugins/woocommerce/includes/class-wc-privacy-erasers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ã^|\Î\ëœ\'¥[(ù\ï_#',_binary '-Ÿ÷L•ª\ëŽO\×÷F\Ã?E‚FX\ÓtJ¸\â‚$(a\îœn','',0,'?'),(_binary 'œŠ\Öñ^ò¤š\ZB\á\Æ¾','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/mapped-types.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÔXX\Þ\"N5h\ÝJ\ßüö',_binary 'zžÏ¸\éò(ñ\âµg—i\Ùs\É\ÃT/ªJ\Åøx54«\Ç&¨','',0,'?'),(_binary 'œŒWuÚ§“ö2-K¬ß´','wp-content/themes/flatsome/inc/admin/options/header/options-header-bottom.php',0,_binary 'u«º\Å•\Î­.Wo?',_binary 'u«º\Å•\Î­.Wo?',_binary '\Ü\Ø&wI\×\Ó<µÕƒ¤ðhñ¡ú>ûŒ\ß\å._\ÇË¶@ž“','',0,'?'),(_binary 'œ•þ˜\ßwtz\ï\å\ë\Ñ	','wp-includes/blocks/term-description/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ì\íF]\ßü\æûÖý—‘\Ó=',_binary '÷²œ\ÛhQ=\åY›O^\Æ\àG¡\Þ­»ú\ëhŽ¥\Âzh š','',0,'?'),(_binary 'œœÛƒ¸*fû\Õt·Èžù','wp-content/plugins/woocommerce/includes/admin/list-tables/class-wc-admin-list-table-products.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Öuù\Ç\éI\ÉÁ¬ZE\è£A',_binary 'ÿ\âÀ%;)vÈ„ˆZŸ\Ü{>`R]\î=uò˜À­¶!','',0,'?'),(_binary 'œŸl\ÛÀ3.	XN‚','wp-includes/Requests/Exception/HTTP/403.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'öv\Þ\Ä\èÚ®\×V§3‘¢’',_binary '‡I\ìö©l\éE†K\à°Ñ¦ø¦?Z£0JT¬\Úò‡\â\áU™','',0,'?'),(_binary 'œ¡&ððRü”õñ™e\ë\ÇH§','wp-content/themes/flatsome/inc/admin/options/styles/options-type.php',0,_binary 'EºŸS\æ¥#:ôFM®tþ',_binary 'EºŸS\æ¥#:ôFM®tþ',_binary 'šò\á*¯Ko1mM—ò\Óõú°sÿ|¨\Ï\ã\0S\nnB','',0,'?'),(_binary 'œª\ÓQ¾Vò‘¨°\ÕQ€ð‚','wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-new-account.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\É\Ê®HWw²…\æñ)',_binary ')$\ÝQ‰wñˆ6±©ž‰«m¨\â?Œs\ÞX…\"\ÛÌš\ê','',0,'?'),(_binary 'œ®ö¤~¡°W\ê.\ß„\r’','wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\Ð;\í¦\r—he®HºŸfô',_binary 'Š\ÝFy µF1I¡«¸\év%\ê\Òhñd…™\Ìå¼¸\Ñ\Í\Ý','',0,'?'),(_binary 'œ´iô\Ê=\æq:•¯¾B¡','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/payment-methods/registry.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œù¡a\ÐüjUr9©\Õ¬’',_binary 'Jˆ\ë_:º@+gA\ìgqôw?ý\í\è\ç\åB\rA£ô­™','',0,'?'),(_binary 'œ\Ç!\ã¹Xtˆ\'ð$¯ø\à','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-google-analytics.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\Ò35¤ƒ¦‚t—\ÍIPµ',_binary ',T#/\Zü\ß5cô\á–ö\\Ó«\îÃ™Ž+hø\Ý\n\ÉD\Z\Í\ë','',0,'?'),(_binary 'œ\Ò<\ã\Û)»\" \Í¢vY4','wp-includes/blocks/verse/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AXß\é\á\í`j²„\Ä\â\ã',_binary '%_¹°Ò·74ÁŽ‘\Âw\'ò\è\çGŠ\ä&dr#÷\éx‹','',0,'?'),(_binary 'œ\Õ‹€PQ‹E|E}7+','wp-admin/includes/class-wp-filesystem-ftpsockets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç\É\']z˜½z4©B:™ô\ã\Ú',_binary 'ºbV…÷=\"\æ\â\Æ\ë%Ä—¤uSÁ\Ñô`+’˜Geƒ(A','',0,'?'),(_binary 'œ\Ù^°?m`,¡q\èF','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-shipping/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†<a\ïõ\È\äþñ+Ù’¡\ÖÎƒ',_binary '!>\Ë\ÏÃ¹o0~`<¯\Ï\é\\ÿ–|˜N~˜P\Ò\ÖEº','',0,'?'),(_binary 'œßº\Ç2ß¼K¹e¯\í…','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/image/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WB‘\Ïmº+GX;ÿ\Û\áÌ¿',_binary 'xñ¹ù€$4oG.$²È€ª\å\×\ë\æE—hE°„(q¡+‡','',0,'?'),(_binary 'œ\åU‰±ó$\ì\\*\Ý1^œSý','wp-includes/js/jquery/ui/effect-clip.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$ W¢j#:Z	tW1',_binary ';%X©²o`XY\ÎY\ãg˜dõÚ·\Ú!\ä¼Aþ\ÏÒ£*N\æ','',0,'?'),(_binary 'œ\íg½Š®\Ó\Z\rD\ìu','wp-content/plugins/nextend-facebook-connect/admin/images/google/dark.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÌrCªŒC\è10\æ\ãùU\çu§',_binary '¿BgRMl™Î•¨Öªj\Ü}t\ã¿-a”\Ø@iß¸¡qñ','',0,'?'),(_binary 'œñû\ÄúžP‹J\ætûú1z','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ†wU \á\æÛ6M†\\½8',_binary '<¿ø‹¦\0\ß\rIB=\"„P8D\Ç\"÷¶\àôÀL~\è€I[','',0,'?'),(_binary 'œó¹\Ü_\ç\È \ìŠ\0*ÁO','wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\âu\Ñ\àu\Ô÷tu¾+]\Þa',_binary '\Ù\nƒ1˜Ä²•ŠA›ƒP3õ’\ÙôC\0{K7QO£\Õf\Û','',0,'?'),(_binary 'œù\Ø~<\êRûEfu\Õr;8','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hocs/with-scroll-to-top/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q»†\Ës&øp\ÎzQúÛ€',_binary ' Ž\É\ë…\Ç\n\Ý\Û\0hù\n\0(“¾Áµ–Q©´~Œ¤Ci','',0,'?'),(_binary 'œû¹Y¯\Úým\Ãù\Ì\ê7O\ìŠ','wp-content/plugins/woocommerce/packages/action-scheduler/classes/schedules/ActionScheduler_NullSchedule.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÕwÎª!m‡_\Âñ\ËA›',_binary '¨K26\Ù\Öþü\èÐ•¯Ê¬\'Qp\ÐQ^nþø\rý¦º\Ð$|±','',0,'?'),(_binary 'œþP\Z\Å/\é¢¯l%¡','wp-includes/js/jquery/jquery.hotkeys.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jƒûhI„QLZA$UnöH¢',_binary '·ÿT¢§“„f\ßRMS\Ï9Âº„MDRšóR¡\ã’N\é','',0,'?'),(_binary '\0\É ‰Ÿk~‚£U5T','wp-includes/widgets/class-wp-widget-text.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿ •q©?Jù¦—ŸfQ</\Ë',_binary '©®ø]È§K«a6	ˆ±“ ¬W}tµ\èHlÅ²ü0T','',0,'?'),(_binary '\n%f[!aE«r\Òtg€i','wp-includes/images/media/video.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à\éñu\êh›\Ý\Ûq ÷',_binary 'DBU‹†¥\ÑMiO\Êb‰,‹\Ã\ãe•ô=\Ë\ÒWÀ{¿ð\æ','',0,'?'),(_binary 'rW]s[ƒX\'>m\É\n\È','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/ja.js',0,_binary 'Q›aM;5w\æœn9ú}',_binary 'Q›aM;5w\æœn9ú}',_binary '\ê\Ür¢\çò\á©=	n ƒ5o³+\ÄóVI„\ë–$7_','',0,'?'),(_binary '•\Êc\Öp¯Tµ\êŒ\Zz\Æ','wp-content/plugins/yith-woocommerce-wishlist/assets/images/ajax-loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ð\Ð°§\ÔùxbJ1B\á\íw',_binary '³ƒŒý5¡¯º¼û\Î\'MSò²Å¦­\Å×–aÑŠaÜ','',0,'?'),(_binary '\å‡Ó _žQ?øÁ«¤#','wp-content/plugins/wordfence/images/logos/shield-response.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_ª\nÙˆ1:/(d%Ü…ÿ',_binary '\Ò\ZºjtY\ãœaW=x!›•[ð²4H!|¤Áñ·–\î\í','',0,'?'),(_binary ' ƒ\Î}Ã€\è3\Ä(¦<c','wp-content/plugins/yith-woocommerce-wishlist/assets/css/themes/twentytwenty.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ËWJÙ«X&*@\ZÝ¹ú›',_binary '\Ê[·¥r\àoTË\í¶h.)†i’]@™\æ\ë\Î\ÊH‹\Ý','',0,'?'),(_binary '&‡Sì§¿o¸$\æ÷0øn','wp-includes/author-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';:,)5µõ²§`&\0\å',_binary 'UI¥\ËÀLi\áp§p\\·ÚT\Ò[o±¿\Ì/K#(®Š®\Ò÷','',0,'?'),(_binary '\'Pó\ä™T]\Ù	ÿ6ÿ~‚','wp-content/plugins/akismet/_inc/img/logo-full-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ã®^K­\ä-^øˆ>A·s{\ï',_binary 'ö%>œ:1¸W™µR¿\Ú\ØŠÍ©°\ÂQ\Ôi‚ñ~\Õ^G','',0,'?'),(_binary '\'\Î>\ï\â¨xt…ƒ¡\î6','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/customer/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i0Œ‚©\Ü$%‹\Ú	',_binary 'n\ì¥\\µ–\Ó\Å\ÑÕ›YIøB£q;ü…µ\'±;Qöl‘W–','',0,'?'),(_binary '.f^¦z\î-c\ÜS˜','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'sy\Ùø°üo\\xL\ëF',_binary '\åñS\Ü·*\é;—üQzcg\êò\àˆ·¤X\î4\é¡\èŠ','',0,'?'),(_binary ':\êü¦Qþ™5_Q!b','wp-content/plugins/woocommerce/templates/single-product/rating.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\Ó|\éH¯VS*¯¼z@',_binary 'ûD)’\æ7\å(j‡\n£\ã¢”œb§`\ãTðÁ\â\îï·¾\ë','',0,'?'),(_binary '?8Rm¼Ð¢E7hÀ€<†','wp-includes/blocks/buttons/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&!Y6O	ÆŒ– V\ÊÏŸL',_binary '¨ò i¤s\È\á`bS,RMÓ¾CZ4bb9\ØÕ„ý9\é','',0,'?'),(_binary 'G¨|$pÖ +(ª','wp-admin/js/tags-box.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'šg4i’e–\ÒÚ ‹Y,×ƒ',_binary 'u,°tsn¬‹`žb\Þ$\âD\ÉrõFRS©\ïr\ÕÒ‘¬^\"','',0,'?'),(_binary 'NÎ«\'ûÀZüµ`\Ý\Ñ','wp-content/plugins/yith-woocommerce-compare/assets/js/woocompare-admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ü^ô\ÈW©\åb\Ý\â,™',_binary '¶\ídþ\Æù¿\ÐN¤’›[r~yó\å[\âz¿Í™qÀD\Ä\Ï','',0,'?'),(_binary 'Q ²Á\ÌÔ\ï2Š7u\í L','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ð1ô¬ô3y¶ùû¬1‡\ï',_binary '	}¬\ÅN¬	<\Év\ã­·B±S%\á˜s\\üþ÷S„','',0,'?'),(_binary 'R\Û\ÙB¡pÀ•m\ØZª;','wp-includes/css/dist/block-editor/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ù±óÑºõ£¨¸eƒx\rø',_binary 'f8F\é_¥Ç¾RVT“º´QM;v,‘7m7\å_ñe\ã','',0,'?'),(_binary 'UA\ØQµ,U¬–q\×\Þ\Ä','wp-includes/blocks/pullquote/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'RW)²\Zˆø\"®\à\"\Õjüƒ',_binary '\ä,Rr`Brº)*s\Õ\Ü\Í/<\îš\áFAnÓ­‡3å­™','',0,'?'),(_binary 'V\ÎdIÍÓ“‰û‹…\ÃF','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductImage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²þ\0•œIúaX6\èw\'Üˆ',_binary '$¢\r¾‡™M²um]Iÿ/~d!ûx\Ä·YJ!:','',0,'?'),(_binary 'b¾À„>†6?\r\Ø@…','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/button/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œPq%Š”ö¯†\'\ë´\\/',_binary '5n\ã\ì€0.q\Ñ@\í¸t‰!M¬H·¨¦*sÁ6/†\Z8%','',0,'?'),(_binary 'p–V§l\Îi\"ý\"Iöp•','wp-content/plugins/woocommerce/templates/single-product/sale-flash.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Òh`\ß2\Ã_¤©…›\Úu\Ê^n',_binary '	\Ö\â%ñ$`\Ñn)•ÀLo|8\Ð\ß\Zl\Ñð\ÈUÕžˆ\\K','',0,'?'),(_binary 'o÷jù‹\É»y\æ©V','wp-content/plugins/wordfence/lib/menu_tools.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ë\Ô9“÷’\ÃV\Ç˜”>\é1',_binary '\Þ\Ü\è\ë%½\Õ\Ú6”iŸ¡\Ø;K2P±Ÿš¥>»}\Ò','',0,'?'),(_binary '†Ca\ÞsÁ]ž²n/\å\ì','wp-includes/css/dist/block-library/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fƒÓ¹s„PÖ®\ÙOÚ§p',_binary '€zøz\ëH‘=üV.\Ö\Ï\Õñ…=Õ–f¼öO\êM£\ÒT','',0,'?'),(_binary 'ŒF¸xÃ¶P\àwþ×€>G','wp-content/plugins/woocommerce/includes/admin/plugin-updates/views/html-notice-untested-extensions-inline.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿMadðAÛ¶¢G‹xõª\Ø',_binary '\î:~ª¶í¾®\Õ\\†€¦k\Â_…\ã0¥$X\"{u\Î\ÞDâš','',0,'?'),(_binary '’ÑºŸ\"\ÌP5\ì\Ó^U\Zi','wp-admin/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|FÙ‹¯\é“M\ÍY#uÍ³',_binary '[‡š±\å;2;\Î2â»–úd­q~ôz\Z\ç\æ7Ö‡H\ÜWý','',0,'?'),(_binary '˜WŒ\ÅDŸ‡yô\ãrò','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sale-badge/save.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`?\èýÓ¥A~k\r÷¤',_binary 'û•P\ÝôRñ š3\Î\á\É=\ãr‘\ÂùSdù¨\ÛD\Õ\Ë','',0,'?'),(_binary '¢¼6^¾\ç4\âË¾\Åy.','wp-content/plugins/nextend-facebook-connect/providers/linkedin/linkedin.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\Úï¿ cx\æ\0T\Õ`Khm',_binary '¿\ÝÉ«a\'mjúKEô³¿ü9’z,DaTSz®\î\Í','',0,'?'),(_binary '§m\Ìœýz4\èL\ä¯úK','wp-admin/images/xit.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”\ì«	3X—Ä«9+\ï–6n~',_binary 'ü\Öü s²¯¹”\É\ÛÛ¨“ S,md\ïŸ\\Yb’Æ‡\ï\Âo','',0,'?'),(_binary '°wF¤òÈ¶Œ\Û\ì‡# š','wp-content/plugins/wordfence/modules/login-security/views/manage/grace-period.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿi\éoœ}\è$\Z\ÖX\×',_binary 'œŸEÊ•G¤\é!¦Ü·\éˆ[\Ç~rŽ\ë”Á:§\Æ\'Oˆ','',0,'?'),(_binary '´\ÇAóG,‡\Ã<Œ¸¸','wp-includes/js/jquery/ui/effect-fade.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z¹	\ÕJ\áb1/“?',_binary 'ÿ†G]ùEœ\Õ4ô5_\Öþ\ÅeCÇ¼?ø\Þv\ëôx€¼','',0,'?'),(_binary 'ÀŽ™\Ú(g~\Ï\ã·p‹','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/read-more/utils.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆqg€\ëfU\Ï\ØRþJ\Ö\\',_binary '\åg§6œv\ï­Å›\ì’\Z\ê\Ü]I$‚¾®ÛˆnÄ¶zP','',0,'?'),(_binary '\Ãøn\ÈòK”\Ót$úJn\ß','wp-content/plugins/woocommerce/includes/class-wc-meta-data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜\ì¡\È\ÒÿK^\Ól\Ä\Ý2\Ý',_binary 'c9syHYR„\êýQ¶<õöt09Z_	¯4hGø\ï”f','',0,'?'),(_binary 'Ò»Póž\Ü1¢T¥w%\î','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/title/attributes.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qQÊ¸\Û~€‡rÛºt«5',_binary '\ê\Ñ5°Å®\Î‹QG	te\Ïp…²+\"RžR\ížFˆž<\è.','',0,'?'),(_binary '\èsñM¬gs\Äy§m~\"2','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-system-info.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿ¼¾\Í\ï\å0Ÿ	œo\Ë¶',_binary '¸0\Ëj¡™\Z‰“¥&\Ö\Îð´Ž+V6ûm¾\Z%Hô yª¥','',0,'?'),(_binary '\ê8Ã¸…n\å\Ônó”„þ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²b‹Uþy\êÍ…«\ß\æ\08',_binary 'bSx\\h¤µ\ìT/·[\àÄ­ux+)\è€D\×+n<\à','',0,'?'),(_binary '\êú¬EY.i\ãž~­L_*™','wp-content/plugins/woocommerce-currency-switcher/views/widgets/selector.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•%\çx&žVŽ\\‰FÁŒ_',_binary '$\Ï!MF\Ì8\ØžD+¿\Å)–\à:/&Äš¼\Z','',0,'?'),(_binary 'ñ\çZ\Ü\èP\ÃD¹*\Å#\Ä','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-nl_NL.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!W‚¢™Á,\ÜP‰\Ç\Å}[',_binary 'n¼±¯\ÆWv\é\àû*cR¹0ýó\í‚\Ñ6“®¬,\Ö','',0,'?'),(_binary 'žµ‚´„Õ°	Ì‹\ÓÈ²\ÃS','wp-content/plugins/wordfence/views/scanner/scan-progress-detailed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚Q*ZZ\Ésq\È\Ð§A}p‘',_binary '?L\0e}\æ\Ã\àz4ùt,\ÍN)^öQ¾\Ë\æ\íÃ€Û²','',0,'?'),(_binary 'žÛ–2\Õ|:¹¸\Ô\í¸2','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/all-reviews.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LM—{\ÎÃ±<Wj€¸ò>\Óø',_binary 'P$YÂ›q¯¹\Õ\è÷ò­Î 1­t\'’‡|c¯…ó¤–4','',0,'?'),(_binary 'žŸ©¯\Óð•\ëg!û\âm','wp-content/plugins/woocommerce/src/Admin/API/Reports/Export/Controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r¸v„#E—-R\n\Ý?«‡r',_binary 'N´E¨×‡¨F¾Œ¯’\âž\nk¡\Â\Ü\Æ÷{	ˆ\Ì5=yk˜','',0,'?'),(_binary 'žp™…fkN©~\Ó\Ë','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/discover.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ïß¾CLFÃ©¼\ã$[ø©',_binary '\æ~“\Ñ8.\\øiñM¦\è9¦ý\í\ìÀ\ïÛ°\ÈôºhŽî”³','',0,'?'),(_binary 'ž Án€$›‡qˆ\ï^qf´§','wp-includes/images/smilies/icon_lol.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nÁ™õ\ãÿ:Ñ·&Šƒù\Ö(¼',_binary '\Þló1–Hqú.\íµ2x\Ò¨ó¢¾‰$\ËY‚\Z8ó‚','',0,'?'),(_binary 'ž\'^“Dý\×IG\Þ1…\Ù!','wp-includes/ms-site.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ö®ŒHQ$œ\Â>fmÔ¹¤ù',_binary 'µ\Èöô\å\ÖSHü	¯`kz3ò˜aŠCš\åÁWz\Ê','',0,'?'),(_binary 'ž(Œó\ãÏ¹¦\éØ²ó°óˆ\Ô','wp-includes/blocks/video/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ï,V\ÝÀ%\á™Î¾´\ã]',_binary 'S*˜\Îq$\ç2x\Æeõß¹\Ù<³e…{Ž =#­4\Ö','',0,'?'),(_binary 'ž)a–ªªµñ\Õƒ\í¿G','wp-content/themes/flatsome/woocommerce/checkout/layouts/checkout.php',0,_binary '‹þuˆC—ô\ì•z\0þRŽ',_binary '‹þuˆC—ô\ì•z\0þRŽ',_binary '»\í\\šŒi…\È\â‚Á»\ä³ï…€]%?\Æ¼˜_¿Œð\Ý•','',0,'?'),(_binary 'ž*Tñu\r¢\í\Ó\Ö ~ªm','wp-admin/css/colors/ocean/colors.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|@ º\Êq¤Êœù2\ÇKÂ²',_binary '5_Ò¨\åX\Ö&„óM\áq|š7p\ã\Ð,9\è\æ\âg\áøý!','',0,'?'),(_binary 'ž1l<œ t~LŸUwó','wp-includes/class-wp-locale.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›SƒP\ä„<\È#\ë\Æ\0\Æ\':',_binary 'D¤\àn]‰º©…AW­EH­OÀH£@°hAD}','',0,'?'),(_binary 'ž@ÿ\ä–\ØIV\âu‡\n\Z€\Â\Ù','wp-content/plugins/woocommerce/includes/class-wc-order-item-shipping.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ô4q“E’\×„šõ\Ý|\é”\é',_binary '9\rû7ZÃ«¨3¿“Bz\ìe‘\âU#†²\éµü,Ž>T','',0,'?'),(_binary 'žE-j\à\Ê1j\ì£\Ê\r\ÏE“','wp-includes/registration-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'úQ<Û¾\Z7¦M¢v«ö',_binary 'Kd\ï\Ûˆ_ºMF¥ X¿òXþ.,\'T\\\Ù\Ù6ö÷ò6','',0,'?'),(_binary 'žH›ŽŠW›,`QqÐ›\Ækƒ','wp-content/plugins/woocommerce-multilingual/inc/template-classes/store-urls/class-wcml-store-urls-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\Úe\áñ\ÍùP:hžy:	¶',_binary '5\Øý\n¬ïžŠø(º#Ã†l\Z\é±V \ZM5-o:','',0,'?'),(_binary 'žK\ÈðOðz¶”Ol(\äU“','wp-content/themes/flatsome/inc/admin/kirki/modules/css/field/class-kirki-output-field-dimensions.php',0,_binary '|\Z?GŸK\çœ_8¡7\\',_binary '|\Z?GŸK\çœ_8¡7\\',_binary '\Ñ\n\Ïü2Fzh¥<º \Æ6:*\é\n\"Z\ÇV±\ÚkpR¥\í¡O','',0,'?'),(_binary 'ž\\¨\ç™sNö\ß=’;_TŒ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-coupon-form/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pvB‘O`9ŒO˜g\Ñ\ÞY',_binary 'y^E\ÄI \íÏ½.<6Œ¬˜¨\ìx\à\î2¾\Åy\ê-‰\ÌÏ‹','',0,'?'),(_binary 'ž]oMð¢seªªJ4\È','wp-content/plugins/wordfence/views/dashboard/options-group-view-customization.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿo†þh5ƒˆ\rxÜ–N',_binary '6y\ZuðÏ…;\ç	­0¤~\êrs1Jÿ9Ž\ÖX²‘òJžˆ\Å','',0,'?'),(_binary 'žf ¬§r\Åp\Î(—‹p $©','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_555555_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p¢\ÔbD\î@pýG+\×±',_binary '*DZ\Í>ùBgñ&Y‰Yˆ›þ„Ž\â¨4(<¨/','',0,'?'),(_binary 'žg”K\ë;ûqF»VI}þQ\í','wp-includes/Requests/Exception/HTTP/416.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'HLt&×œk$*A®i“Å·',_binary '\Ú(\à\ÝmybVõaI\ÅjWp™Œ¯(!A\éð\ë\Þ<(±X','',0,'?'),(_binary 'žir\Øu\Ê5’Žš‹¬','wp-content/themes/twentytwenty/assets/js/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Fù ·DGTßœ|^­YÆš',_binary 'M³\Ó\Ú`\íA¤(q–É»\"\Þz¬\Z0(yO\ÂÍ·’\ç','',0,'?'),(_binary 'žj©†¶vÈ‹=Q“b\ÐÌ‹','wp-content/plugins/wordfence/js/jquery.dataTables.min.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\\\Âô ƒÍ•·h¨',_binary 'v\æAo;üïŒ¤uD\Ì3$›WB95\ë£_\"´ô± ³','',0,'?'),(_binary 'žk?ƒ¨¶B3qk\Ï:|µ° ','wp-content/themes/flatsome/inc/builder/shortcodes/ux_video.php',0,_binary '\×\Ã\Ïxþ\íHPú§Sf\Ç',_binary '\×\Ã\Ïxþ\íHPú§Sf\Ç',_binary 'c\ça¨\Î Î›¢/Rµ­ª¶ˆ_~£NSh¼\Ñ','',0,'?'),(_binary 'žq§\å\Ü\0/x{o\"\Ä\Ìùƒÿ','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/text.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iAiEh×\ã(ô#\Ô\ç¦',_binary 'ËŽxQ\çZÓ”­D©þ\ÚvJ/Ñšö\ådŒþ(\Ô>á„»','',0,'?'),(_binary 'žzH0´œÀ`Á\ãª$¸9','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/stock-filter/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Dw¶>À‚c\Õ\Òó‚.¢',_binary 'J¥JU¿\Ô8Ij\å\ÑK\ç4Ú¥~[ï±–i^ü\"4ù•;','',0,'?'),(_binary 'ž~Ç†…\ÝC\År,=ƒö…','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/sort-select/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '×¥ü\à w÷w¶z©k¼/1',_binary '\æ\äœy}‹§¼_ñnþ½}\Úsq\r6¼e~·s–!\Ú','',0,'?'),(_binary 'ž~µ)“‚\ØM\ÜM\0\ÑØš','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/zh-TW.js',0,_binary '²\Ý\Z\Â\ì\äÔµ„\ïqB÷°',_binary '²\Ý\Z\Â\ì\äÔµ„\ïqB÷°',_binary '$\'\Ñ_¦\å\îjùiUu\Ø\Ä\ÝM\êðc\Î\îUtILf ','',0,'?'),(_binary 'ž€:\Ë‹òœ&Òµq‘\Ç','wp-content/plugins/woocommerce/src/Admin/API/Reports/Coupons/Stats/Segmenter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é\Ì\Ê•§Õ¨©6E\ã•',_binary '\í4\ïÈ­s-vìŽ…02\ë\åË½¾\ÑXp›\Î\')\è','',0,'?'),(_binary 'ž…¶»½\î¢\è†<\ïx\ÍBŒ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›%€–†\r‰»\Ü|½UZvª',_binary '\Ë\ÚZ^L\ä\È\Èa¼§\Î\Ñ~z\ë0;3e\Â,Ë’œ\Óò-=','',0,'?'),(_binary 'žú4Gqh\"Ý¡\ä\Ñj‡O','wp-content/plugins/wordfence/css/iptraf.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ðeºbf.„\Â\n\ÝV[\ÝxPh',_binary 'JŠ‹-@ ]\á-\Ðò‡	\Ôcq\Ûú\åWQ$8«','',0,'?'),(_binary 'žž\ÃK‡\Ü:ÍŒ\ÖV\Ùk­','wp-content/plugins/woocommerce/src/Internal/DependencyManagement/ServiceProviders/UtilsClassesServiceProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k_®›½\å)©ô	ðp¬\Ø',_binary '¸²\ï¢\ã\çüÇ¼\è\ç,ed?žb»\é›©\06\ÌX\éx!\æ','',0,'?'),(_binary 'ž ù\ãh;×“\å,¼\Ø÷#\ÇW','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/de.js',0,_binary 'Ž\Ü\Ì\ÞB\Þ+@&ÁH¹<\Ë',_binary 'Ž\Ü\Ì\ÞB\Þ+@&ÁH¹<\Ë',_binary '4{´\rŒ\nŠý¦4V\Úúõ=]e\æryI…Q¤¢[g#','',0,'?'),(_binary 'ž£e-¨\ÒRÈ‰”®ùL:\Ñ','wp-content/plugins/wordfence/lib/rest-api/wfRESTConfigController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¢\"\ÖZ\ÔóºöO„;m\Ì#µ',_binary '\×v»Í€Á\ìO\Ý\Õ=€\ínð\ßu#\ëš}»¿Õ¦`²4\ÜW\Ê','',0,'?'),(_binary 'ž§´¶Ô®†ô0VcKHv','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/yith-plugin-ui.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2˜”\ï\ì‡óþ$ƒ[¬C¿',_binary 'kD\ÜY8<œ€H8ÿ\âG+{2I–ñùbjN¥ú×‚\Ûð\Ê\è','',0,'?'),(_binary 'ž¨ nŒ\ê‡uú³ù„¥¤i','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-tag/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\î=W:¹\ëü#z\Öb J\â',_binary '\ë^¸òù—”†\ÃÌ˜¹d-\"Šhl®*\Ú\å\Ö58Áe\\3','',0,'?'),(_binary 'ž©”8¢üŒÕ ¶)j,z','wp-content/themes/twentynineteen/sass/site/primary/_posts-and-pages.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\ã$Ç½ûyõŒ¢o@•',_binary 'vÉ˜(ˆf]Añ‡\Ò?pÀAR\Za\Ü\ÌÆ& A9\r[Šƒ2','',0,'?'),(_binary 'ž­”[«k‚\ï­S3Ê¼\\','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/WinterInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':@\áGxŸª\Ñs£V\é=',_binary '­\Í|¼¹û°\Ø\ÍÔ’?L¶e¢„ŸœGU»\rp˜\âs','',0,'?'),(_binary 'ž¯ë¶°D<\îc,óm\Ë2','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.time.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WDùó«í¨—–5øz‰)I',_binary '$ÀÄ„\Å@¼Š¡yUN£R^1g\Êy÷´?Q\Ò\ìL™-\Ów','',0,'?'),(_binary 'ž²¹\çC›K\Î\äw\Ñ\ç™','wp-content/plugins/products-compare-for-woocommerce/style_templates/nice-green/nice-green.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VF\ç\"	j=;þ†\ÓxŒ/',_binary 'L)[/X‹\Û-\Ã\è¢K(V\æA°€~¶°‹Ì»¹r|¯³W','',0,'?'),(_binary 'ž³[\çfÒ‚Eþª-“\Úe.','wp-content/themes/flatsome/inc/builder/shortcodes/featured_box.php',0,_binary 'H·0ª0@˜$\Zü',_binary 'H·0ª0@˜$\Zü',_binary ' \Ø\áT«\â$1NYº\ÎxH\Ë1=—\é\ßK»ó,&','',0,'?'),(_binary 'ž¸²\â\Ì/nƒV¾NCz?','wp-content/plugins/woocommerce/src/Admin/API/PaymentGatewaySuggestions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Zú3¯Tf\Ê~\éû*7šõ\ï',_binary '\æ~:`¡^®\Ú\ìI\ÎC\ê]ÿùM’\äq­&ðVO','',0,'?'),(_binary 'ž»––\à\î˜ñ=\ïd0·5e','wp-content/plugins/nextend-facebook-connect/admin/images/layouts/above-separator.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñ,\Ýÿd\×dtš_\Ô§o\Þ',_binary '~«\íÐ—G®&°Î‡u÷x„M‡3s[û<³‡ô\ê¤O\Í\Ñ\Î','',0,'?'),(_binary 'ž¾ž\n\í¤\Ý7u˜Qj¸','wp-content/themes/flatsome/inc/builder/shortcodes/values/slider-nav-styles.php',0,_binary '©\î°D,¯\Ñ-Á\Ë«¦',_binary '©\î°D,¯\Ñ-Á\Ë«¦',_binary '\Ë\Å\Ö\Ô\Ã,¸›€)¾AP\ßnÔ«Xxò\ä8=úxzš','',0,'?'),(_binary 'žÀð,hP¼8¾(¥\Î\ã','wp-content/plugins/woocommerce-currency-switcher/img/woof_banner.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>þ€È»þj# ”Î¿\à!	',_binary 'V¸\Æ¶}ò/\'&K¥w\'¿\\3\Ä\å‰H^”{\"‘\å@´l','',0,'?'),(_binary 'ž\ÎgEÉóG€G\à‹\\]Áþ','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/sysinfo/tabs/main.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\Äñ&°rõ\èx\Í2‚\íOq',_binary 'ùYùx±À-XK‚1qÀŒvšmÚ\r-„ ú}8Kw\ì','',0,'?'),(_binary 'žÓ¼\ã‡/r\ÜcV\ZšL','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\íD\ç¡\È5BJi†M••³^ò',_binary 'ª§ŸB\é\ß\ÉZý\Ýøf¼\ê6;\Ä#…™XªV\ém‡Š','',0,'?'),(_binary 'žÖ¶\\Ÿ•\Ý,°\Z]}\Ñs\Ø','wp-content/themes/flatsome/footer.php',0,_binary 'x#ˆCñµôy\ìtÀn\ÆypE',_binary 'x#ˆCñµôy\ìtÀn\ÆypE',_binary '„\êhw«ÿc3^©6liy³b\"EfbÖ€!\ïV¾¹R\0','',0,'?'),(_binary 'ž\à¾X­*^ŒÏºR˜´\Ü8\Ì','wp-includes/css/dist/block-editor/default-editor-styles-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô<Á¶ÿL«v©.Š',_binary 'Rgu`\Ó\Ùö\îºÂ„g¶‹15Š?PLRû\Â\è\Ô*f0','',0,'?'),(_binary 'ž\å²\Ê\Ð##Õ‘n\ndA\\­e','wp-includes/blocks/latest-comments/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\'úú\Åq4ŠPSñ\È\ê',_binary 'µÁ@ÜŽ¥iStñ\r´-\ëö Œ\íöu,w¾“*©n\Ú3','',0,'?'),(_binary 'ž\ìx³%ñ\ß%gÀ-®\Ç:K£','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/single-product/edit/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©t‰®>C)³wE¼Œ®\ÞAl',_binary ',U\ê—t6©\èj£{¢ƒiº\r[—WW8kþ\Ú\åxù’y','',0,'?'),(_binary 'ž\îp?E^¢@·\'Œ\ãPE\Å','wp-admin/edit-comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚Ü¯+0;\Þ\Õ\ãª>›qŠ¨',_binary '\ãCÅ†\çmš¢€ù§Qª_E|k !€®|\ÃW1!ˆ','',0,'?'),(_binary 'žð@\ïð(¿Mk…S_+','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/subtotal/stories/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H¢>=\Ó,1XøM\é',_binary '‘üY\æœ11@_&ñ;ôî¼ƒñP¦\Ó\Ù«÷,a\×','',0,'?'),(_binary 'žóŒ>ió>C.\Æ|#\Ãq','wp-content/themes/twentytwenty/classes/class-twentytwenty-walker-comment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿNt,\nh7\Ã\"^«÷',_binary '4\íõ¡õGn<?\æ¼Zp\Ò\Ù\ëg\Þcr\ä*“†M','',0,'?'),(_binary 'ž÷Š\ï©Á\ÈU\Ñ\\™aE','wp-includes/sodium_compat/src/Core/Curve25519/Ge/P3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–w¸•Í±Àör0 \êØ…=\æ',_binary '?E\Ü%÷\ë+Ž›„±\Èw\r\ä^\ßÖ—.$\â‘i‘$[W','',0,'?'),(_binary 'ž÷\ÎÔ‰S„Ö·3*\0hòŒa','wp-content/plugins/contact-form-7/modules/stripe/service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘‚£2†R©\ê\ê\Ñ{CYP\Ë',_binary '~˜\'t\r‰2C\\A\n`ü?c‚XUª\"D\ÓÖ¦QeŽ','',0,'?'),(_binary 'žøsTDÎ¨s©i¯û)_\à‡','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/how-to.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\Ôòÿz\Ú\ïA\ë\'\Ú+µ',_binary '\"yÙŠÍ€¬ \n\ÄJ\Zr\é’1‚xª¥®_J˜\é','',0,'?'),(_binary 'ŸH™\ÝJõ`]ú-õ','wp-content/plugins/woocommerce/src/Internal/Admin/Schedulers/ImportInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´¯¨ú¤’ÿ\Ém\ì\Ño',_binary '2™r\Øv˜\Â\á$>–Ÿ\îlý3$E0j\Ù \Ý\\\'ñŒ\n','',0,'?'),(_binary 'Ÿ\Ö©r\0\×.¬¨¥Ï“\Ö','wp-content/themes/flatsome/inc/admin/kirki/modules/icons/icons.js',0,_binary '¡©ü†`X”7Ÿ¢Mi\Ü',_binary '¡©ü†`X”7Ÿ¢Mi\Ü',_binary '©A\ëþ¤‹B}\ï\æ_@¦\Ôd\áTœ&´ÀF¶Ë¥','',0,'?'),(_binary 'ŸB\â\Ô\è™ô!³¹vÝ¡É¶','wp-content/plugins/wordfence/views/onboarding/banner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'øzz©#uv\å™\0›¿¬',_binary 'ù±}\Ü“À|IRÂ€£v¿J©%-\î¸/\n\îV\ç‚ú†\Ü','',0,'?'),(_binary 'Ÿ\'ù2¼)÷\Ñxù€Ç¼¾','wp-content/plugins/woocommerce/i18n/languages/woocommerce.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'isV²\Û\",$?£Àñt,¸',_binary 'EPSq…d\Ê#<«¥Fw».¼HB|T\Ç\ïY*1\Ê‘\ê÷','',0,'?'),(_binary 'Ÿ+ôûi\Üp‰ZÓ¶tB','wp-content/themes/twentytwentyone/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\ì/Sò«\ÈY[»ˆŸIÁ',_binary '\É\î‹¾]5ü}Ôƒiÿ¤\ìjÂ“MP\ã\rÕ½Ï¢','',0,'?'),(_binary 'Ÿ4\ã”Zs™\é.]\åñ*','wp-includes/blocks/table/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²µ¸´ij\ã\ë\Ë/tD‘Á=',_binary '6\rO?á…¡ÿIQ@†Lv«^ùð\ë\â7L6Æ¾º €','',0,'?'),(_binary 'Ÿ9V#}ýXˆ<\å\Ò\n[R','wp-includes/blocks/template-part/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U{\Þ9¸‘eMz+dùz&e2',_binary '\Ïip°°=] \é¬,Çž8aÿkt¿¾¥r\Ý__h\Ù>','',0,'?'),(_binary 'Ÿ<„ (\È\êÀ‰*A]ŽO\í ','wp-admin/css/colors/ocean/colors-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~“­_\r\Ì¼±/wø',_binary '\'\Ît7˜0	\ÓYX\Öa›\\\ì^Œ=\0\r\Ñh¼½\ïMv’S','',0,'?'),(_binary 'ŸD²¸d.PË´{-yo\Óg','wp-content/plugins/wordfence/views/common/status-warning.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥µkR¹f,\ïJªÁ\Þk«',_binary '¹¼f‘!§\Ù\rWeŒ¥=?õ\ÛK¤›jP&\é*y\Ö|','',0,'?'),(_binary 'ŸH™C”\ËÙ«ªa\Z\Þ>[','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/proceed-to-checkout-block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»_÷†ød¬G6°\Ìñ',_binary 'P¥hEr\Û\áT\çvX6Eû\Ñ-\ïË™\à$\â·\Ð','',0,'?'),(_binary 'ŸI|›K9\Õ(\Ô{sõX','wp-content/plugins/wordfence/lib/menu_scanner_credentials.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}Ÿ\Ì—\0”º±\Z\ÌÌ¿\Ô',_binary '|\é¬?b~©ª ¼Ú¬•\í(Ê¹×º;l\ÇG9°ú','',0,'?'),(_binary 'ŸQ\Ø÷¬<\í-\ná­Š-\Ð}','wp-content/plugins/woocommerce/assets/client/admin/analytics-report-customers/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=n¤—¸û·!*Y\'ö“',_binary '=€£”\ë°	L”>\Ø}\ï0\Â\ÈË•ðÁXb‹ª‚8','',0,'?'),(_binary 'ŸS¶\ê¡]~™Êµaä€³t','wp-content/themes/flatsome/woocommerce/checkout/form-checkout.php',0,_binary '`›h¨±\ë\ä|\åŽnùy\ï\êM',_binary '`›h¨±\ë\ä|\åŽnùy\ï\êM',_binary 'XN¡.©]\"*Ë¿^=\ê«\ë#\äö¢(ô\Ê$¡ñ\Z®¬‡³','',0,'?'),(_binary 'Ÿbv¾\ÉE’\ì´H\Õ\Ç\ãÎ„','wp-includes/js/wp-lists.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\ã]Sò1‘–LY%\Êô\Ã',_binary '†\\w\Ê :«~\ÃéŸ†\ÑXƒ\éWj€\Ú@g³½\Ô_\Z©-','',0,'?'),(_binary 'ŸhS\ÑÀ:°ö\Ó`','wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N²+C#+|ófZ¦™]\å',_binary 'kn\Zy\é&\æ†_©\Ø[ƒ¯Iglƒ(\ãg\'\î^¹G','',0,'?'),(_binary 'Ÿi–}PWv\0÷Ÿ=>§','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/category-list/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×\n\égxô½v!\é€Ò°‹',_binary '$ðn\Ò\"’G]ZðÜ¦)b§°…\n¯6?*Oÿ®E‹','',0,'?'),(_binary 'Ÿx5Óž÷¤6/Zþ6Ú©Ó›','wp-content/plugins/woocommerce/templates/single-product/add-to-cart/variation-add-to-cart-button.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'â³¸\Â*\ß\n\ÚÁ‘9ú¸ùNŠ',_binary 'y\Ódm¼FŒ\Ó\Ó\ÉH mñ8\è»ö\Å#­S^½ú[\ã-+','',0,'?'),(_binary 'Ÿ‚œµ–F7‚m‹NŽZ«','wp-content/plugins/woocommerce/templates/myaccount/my-downloads.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\éP\Ñ\Ó\Óz\Ü \ë\ç¬\Ù',_binary '\Ì	=Z nf\r\Öõz”Ÿ‹¤\Æ\ÓX†+y_›½\ÐS\rîª¡','',0,'?'),(_binary 'Ÿƒ«3ˆ\âOŒA¨|ø/¨','wp-content/plugins/woocommerce/packages/woocommerce-blocks/templates/templates/taxonomy-product_tag.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú)\Í9a//…\É\Ñ~ŠÖ¤',_binary '\æþø«\Ë;Z‰œ\Õû$\îÜ K\nûlr‚š5|Í \Ù\ç','',0,'?'),(_binary 'Ÿ‡x÷\é¿LùöY›”²\à›','wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status-logs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©L,¥\Ô\Z²[«Gù,,·\ï',_binary '³h\\\Å\ßCºx	AhË™VÞ·ô#|’J\Ò2\Ë','',0,'?'),(_binary 'ŸŽ\nýl¯\Ê*a®=qs^','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-categories.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž¥]*,\ë¿/>\Ì\îS\í',_binary 'ðü\ÚC\áGd‰¿fªºžÜ‘Óžr3\ëpg\r +\î;’','',0,'?'),(_binary 'Ÿ–\é­\Ì—k\ë±','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/checkbox.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ð¡û˜E<V®+\ÓiŠ',_binary 'Lü\ï~_‘ü5©A[£\á+r\Ø³³ýF \Ê8¸`ž\à\Ãt¿','',0,'?'),(_binary 'Ÿ¯B\ÚñX\éS\ßq\Øó','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-es_AR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\è\Ç\Ôòj\Ë\ÃS\ÇòB:=e\Æ',_binary '²\ÞÉ«µ–ð³i*3 ˜‡5\æ*ô.ù™F¸Y~','',0,'?'),(_binary 'Ÿ²NiQg\ëzÇ¢…ƒ\ßßš4','wp-content/plugins/contact-form-7/modules/doi-helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÒqŸ\r\Äq{Áœ\â©\åZp°',_binary '¹¯\Ú!\ä‹W¼«\èþ2\ßðOJV\Ðò\Í\"5Šú\Ì.ðû','',0,'?'),(_binary 'Ÿ¶\Ý]³\Øc§¼uq©|¦z','wp-content/themes/twentytwentytwo/inc/patterns/footer-query-images-title-citation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W³Zª0[\Ï\Å\á\Þ2`M',_binary '”\é–Â‰d\Â}™ž\Z©b/€ƒ}´¾[<3\Ïh—J—‰','',0,'?'),(_binary 'Ÿ»B»]P§D|5“=ô˜D¬','wp-content/plugins/woocommerce-currency-switcher/classes/fixed/fixed_shipping.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|¡óz•¤kÆ¿»-\Î?_O',_binary 'BVŠ‰bšc\'¶]|s`2?³÷*@\'zÄ”¦µywp^','',0,'?'),(_binary 'Ÿ\Ã\Ò\Öt‡M<Û¿\Ñ\áGƒ','wp-content/plugins/woocommerce/includes/class-wc-privacy-background-process.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†ð\Ç\Ó#\0¦W\ÛQ\"\Æmÿ',_binary 'O¥ûº\Ü^\"C·Á\Í\á\Ó\ä\r‡e?:zJ«`5- ','',0,'?'),(_binary 'ŸÉ®z\ÙPk¹§Ÿ4&ªUÁ\Å','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-actions-block/attributes.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ß\Æ\"™*eNüø2²ˆ$,',_binary '³+\Ç(\Ø\Þa+öF*`rË¡Ø°Ù¨¡ô‰²\éU;|\Ô','',0,'?'),(_binary 'ŸÌ¤°g6\é;\'ü¢-\Ïq','wp-content/plugins/woocommerce/src/Internal/Utilities/URLException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ#£\ÎÁ_”i!\ç|',_binary '›¥ÁŸ\ãv~\Ë\è½•to¥\ì†ŒDl\íª4£{µY¢','',0,'?'),(_binary 'Ÿ\Í\êøŽ¬\\¯c:\Ý)»','wp-content/plugins/woocommerce/legacy/js/admin/wc-status-widget.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F§ºXB\é¢Xü-ø\î\Û',_binary ')²[®Kõ_ƒ†R;]\æ\Û\èÝ¤Nsu›dÿ«ö\×/£u','',0,'?'),(_binary 'Ÿ\Î–&¿¢N\Â,õ¥\ïŒ6P','wp-admin/images/icons32-vs-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡*04ÿG4F—	&Zƒi}\"',_binary '\ë.aú}…‹hw\Ó6œWEÊ­–(3\ïJÓ­µ9\ÓE\å','',0,'?'),(_binary 'Ÿ\Ïw\è}5¡r‡]\\Å½9Ÿ','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\Ì\ß\ÕÐ¼†ðÀzÖµ_',_binary 'üV²-2Þ¸<n{s?IõÝ¸W½\ì>f½\És\å(§','',0,'?'),(_binary 'Ÿ\ÐþQ&Cj>´q\n´¥\Èü','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/fonts/yith-icon.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0h\èô\Ö+j`~3/\àa',_binary 'Œ]\Þ¿(:™\Û\ß¿€M“P÷–\î+YF)¬~\Î_W[¬S\â','',0,'?'),(_binary 'Ÿ\Úv½\á#q¸ò´Èƒ\Ù','wp-includes/sodium_compat/src/Core32/ChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—EOxÙ•X\Ú2ë–­Øƒ',_binary 'x¨\×aJNù!e±¬\×\"\"Nq\ê}\ç«AMCû1)®º{€j','',0,'?'),(_binary 'ŸÚ¢\nf\çi‡NýL÷€˜\ä','wp-content/themes/flatsome/template-parts/portfolio/archive-portfolio.php',0,_binary '³F~¡]\ç®\Û8QgMv',_binary '³F~¡]\ç®\Û8QgMv',_binary '«Y€+3þ)Á\Ûyt\â\Ú\Ðòv-)ø<«u(þSÓ¸½ò','',0,'?'),(_binary 'Ÿß¥uq£‚üS\Æ\Ü¡˜8›','wp-content/plugins/woocommerce/includes/admin/views/html-notice-uploads-directory-is-unprotected.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õA=³&°»vñ\ÈY&†',_binary '\Èo9 s\ä\ÑX`þ\'ó½ƒÿ\r š¼g\Â\ÚÍµ‘Ôý3','',0,'?'),(_binary 'Ÿ\àW31¦©N«¸\Äg×¤\Ê\Î','wp-includes/js/dist/vendor/react.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r¢O®ñ²u’\È6\Ñ\æ\Î',_binary 'µ]\Äx\Ó\â¨;G óv\ê\Òö­ž²\åA’z>vF[ Q\êÁ','',0,'?'),(_binary 'Ÿ\ãd\"H\ÃÖ½¤ƒ\è³Úƒ','wp-content/plugins/woocommerce/src/Admin/API/Reports/Downloads/Files/Controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R¦	bt\ËXw\Ð\ÇbÓˆ¥R',_binary '@S$Ñ®ek…P‡\é£ºgW{Øƒƒ\nŸ—­L\ß\ã\Ô-','',0,'?'),(_binary 'Ÿôi¼úx\ï„9p\ëwç–§','wp-content/plugins/woocommerce/templates/loop/pagination.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñ\Ø UD]ª\í’\à¶\àø\'',_binary 'ª¹6€õHm$nz©\\\ã(òB‰5[=tµø:L‹YúO@','',0,'?'),(_binary 'Ÿôx[\Çe„ò¶¾>M','wp-admin/includes/edit-tag-messages.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡.j\êA8\àr÷Uq',_binary '—?ùuZv¾*\Ö32;hú$,\r€ME\Û~\ß\à','',0,'?'),(_binary 'Ÿùò˜¥.ûkJ1´\×ü¬7','wp-content/themes/flatsome/inc/builder/shortcodes/helpers/heights.php',0,_binary '\Ú%¸euÞ¬[Hc­>Õm',_binary '\Ú%¸euÞ¬[Hc­>Õm',_binary 'E.fC}¾\ÅHÓŸª’ ÎŒñi%9¹oŸ\éZK«\×	Fù','',0,'?'),(_binary 'Ÿú\ÎX*.!\ÐƒMVA°','wp-content/plugins/woocommerce/includes/admin/settings/views/class-wc-settings-rest-api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“F\ÜEí“’o AW‰Õ·',_binary '°\Ë\rf¬3\'#z\ëe\0Z\Ãû¤^\ïC¦ÏŽñwÙ…‡','',0,'?'),(_binary ' \n\×\ç.Ž–\ËD¸\Ä\n<','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ò\é°\×L°ˆ\ÏýŠ—JM',_binary 'V\n»¸\Ë#\nõA†@,c]:ú¤a# ™†a­Œ\n&¹7','',0,'?'),(_binary ' I«.+Ázz¬¤)˜µ','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/sysinfo/tabs/php-info.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ó\é³`\ëb\é\í®°´{\ÊÂ¾',_binary 'òV\æ*\ç/\æy9]l½ùŸ´¿\é^\×h4)õ:\0\r‡e–','',0,'?'),(_binary ' ¬®a5x\æ\Ù0•E\ê','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-es_MX.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')¾\Ëmúý\íAt†G¹`\í',_binary 'Vôa¤\â4!5‰°¶p»™ JjE/\Ç\Üû\Ä^«\ÎU','',0,'?'),(_binary ' 3i4¾\â9“Bw²\æ5','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.resize.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"¢Zª\Ì\àÊ²+P’\Ím§¤¬',_binary '\Ì\Ä\"·EdúD´ø\è2>§\×3L\×N\0hqö\í,•u²1','',0,'?'),(_binary ' ùK\0Î­ñ\Ñs\Ò:~¹\Þ\à','wp-content/themes/flatsome/assets/img/payment-icons/icon-cartasi.svg.php',0,_binary '\ÂIk¢	·ƒ^3û,AGx',_binary '\ÂIk¢	·ƒ^3û,AGx',_binary '’\Ò®ˆ?5±\Ê¯É…\ê;#\Ø\àµ0\ØUó\Ý','',0,'?'),(_binary ' \"œü\×\Çj0=8k^–“<Š','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/use-checkout-submit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6©°\n\Ó>Eâµ›¶\Ø\å',_binary 'VSRô; #pfÌ¹\Â9r!R•jÍ·\r¼ƒ°\ÆÈ­\Ó\Z','',0,'?'),(_binary ' *–¥Š¨º(wª³L§ƒ[','wp-content/themes/flatsome/inc/builder/shortcodes/values/icons.php',0,_binary '·\\—géŠ«\Ë\Ý>\ÉÅ¸zó',_binary '·\\—géŠ«\Ë\Ý>\ÉÅ¸zó',_binary '?£þn±üDmr]º\ÞB=Ò›\ßô©ž\å\ï\Ú`\Ã\Úñ§†','',0,'?'),(_binary ' >³0¸®/tO\Ëõ­*','wp-content/plugins/woocommerce/assets/client/admin/onboarding/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ý\í Xs‘“LoLk\à™',_binary '^Ðž\ä$–ù- ô}h\Ñ…Íˆ\Ì2=Okº1\×{dÚ†','',0,'?'),(_binary ' ?†h¯–	svÉ£:l','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductRating.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì«\ÅóSöŠW›/¤ü˜\â',_binary '€Vµ£Ýh\rú•\ÂÌ¡¿«¨ô-L”ü\ãsV\Ù<xS€','',0,'?'),(_binary ' ?\Ø?º4¥x´\Z.*Ddú¤','wp-content/plugins/woocommerce/includes/admin/views/html-admin-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÏJ†þ\Ù+*\Ø;\Ø5e\ì',_binary 'X\Ê}XSG^ó`²ƒGMh\0ÿ±\êñþ\Ý\Å7\ä?','',0,'?'),(_binary ' @C‡­6\íœ\ã\Ã[±u\Ö\Â','wp-content/themes/flatsome/inc/shortcodes/ux_products_list.php',0,_binary 'üs\ä$ÿ;§8£/›ùK|-o',_binary 'üs\ä$ÿ;§8£/›ùK|-o',_binary '\ëNy\Ê\ÌR\è\Ùahµ\ë¸h\Â\é½sô°K»\è\Äù\ë\ä','',0,'?'),(_binary ' H§\ç:\r¯¿‡Ã›\Z\ì\æ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-summary/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€À2~\ìù©Wþ\r¦m',_binary '\ÐÆ·6zNjSµ\×ñPL\ß6³eh%’(.kaí¬¡\'\ß\æ','',0,'?'),(_binary ' Ty›ó\Ä2~\rà¼µ\Ó*','wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-nl_NL.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ó-À;W*b\É÷\0¾€',_binary '˜\Ï=ñÍ„Ú‚Õ—”;B(\í¶g3Ü¦K‚Áðuk\Óû','',0,'?'),(_binary ' Xh™ˆˆÀ3ò\Ò$H','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/exceptions/OTGS_Installer_Products_Parsing_Exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<köøšˆ\É\r\í\ë\Ù@0qb',_binary '>Žž[cþýÛ´pÅ\Ìg6i·ž\ßG.J\ît†¾(Q™','',0,'?'),(_binary ' aªœ&7¶ùW…\Û\×\'¼','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„\Ø\ãl¶±õcc*~j=p*u',_binary '<&J#ð¶s\\.,GÀ®$¾lt<™©I•WŠ\Ì5\ï','',0,'?'),(_binary ' c_T”¹c\ÆSº\Ù_’\æ$','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-tag-list-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÞM¨I—\ï5\É	ƒi…S<7ª',_binary '\ÅÀô”P,z=\ä\Ð7h*ÀÁ³l‚\Ä\Ô\Ç\Øó\Ãpø\ã','',0,'?'),(_binary ' i÷$\ã<~É™\Ê^\0­','wp-content/plugins/woocommerce/assets/client/admin/chunks/shipping-recommendations.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÈŒœ/ÿ´>™/\Æ1<(y4',_binary '¼›S\ÛZiO9,\åñ¸”–²\ÖU	Ó†Ú´F³BM\åL','',0,'?'),(_binary ' qò¬h¢ö¾Bcø92’\î','wp-admin/network/site-themes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1-\"n\ÈFt-C¯¡jvd',_binary 'A¨ \à/Šmê§†[”\'\"TaU,[\æ@‡¢¥ûe½I','',0,'?'),(_binary ' ~·j\Ùh2\'V{™\É,‘','wp-content/plugins/ti-woocommerce-wishlist/views/wizard/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ßÍ„J¢b„,„È¾\Óñr\\',_binary 'B)•¿@\Û7CžÁN¥V˜Qo\ÛÀ\ÑP±\ÆQ*>\ÙjNÀ¢','',0,'?'),(_binary ' ˜\ê‚\\F˜Z\áú7i\ÐÁ','wp-content/themes/twentynineteen/sass/site/primary/_comments.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ¸¹`\â7`\ÈsÆ—³$',_binary '\În\æBEqOŸÈˆÀŠ‹©}]ª”\Ú \Ú\ÜULryi\Ã÷','',0,'?'),(_binary ' šš“>2p²Ôƒ](+º','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/OrderCouponSchema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥„\'X4Þ©‚…\Û\Ä\r¶',_binary 'j™gG;HQ–¤‹¹\âý1ža=opö`J¨Ÿ\Õ)\Ã\å.','',0,'?'),(_binary ' «\ÝI:€.»X±<€!\Ú','wp-content/themes/twentytwenty/assets/images/2020-square-2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H‹ 4(«\ã|\Ï¿\ß&\è',_binary '\çö`­z’z\åY`]¿û¯3ˆñ”)\Õ]:a>\Ú?oezõ\ç','',0,'?'),(_binary ' ±n1.Ã“u\étŸ\ÈlX','wp-admin/css/colors/modern/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½ÿU}`b%sdI•l\Ø‰',_binary 'ž!™·‘l:]«ú”j\ß,‡_¡\à¾F)\Ã\0s#slH','',0,'?'),(_binary ' ±q“ø@ÿ™w\ÊÅš®','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/category-list/types.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŠŒ\Ü\ì\ÅTaÿ\Ê]­ù¦}',_binary '\éž\ØRˆ\n¼;O[úû€¾H\ë0\ïzT\Z«þÿ»ñ±','',0,'?'),(_binary ' ¶\Ô÷¨7±M(¥\Õ','wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/class-plugins-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' a\æø~¡\Ñ:Ký­‡Hú',_binary 'q¸¹­ú”tµS\Ê6\ÍÚˆ\à#¡þžƒ5™›û…[\Ì','',0,'?'),(_binary ' ¸‹‡`%ú’{\Íü\Ò+›ó','wp-content/plugins/wordfence/images/icons/error128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\É:\Þ%7÷!Á´.\Ñ',_binary '{h\0,Ž]ózñk“V\î{Ò—¢6nG\nÀxš©s9\ê','',0,'?'),(_binary ' »ûT\È&¥\0V÷­µQ\ï','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oG£\áûü¾\ÑE ü\Ë\r',_binary '\åÿ}\ÐDl˜qÁ\×X»\"a›G\å\ÙGuª¶VX}¿Œ=','',0,'?'),(_binary ' ¾Žv†’\\Qœ¥À-¼\Ê','wp-includes/js/tinymce/plugins/hr/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	%>‚)šú…Â•;¶',_binary 'ØƒF\ä\íS\å[kõ\Ëø&ýfý 6+ b°>¨','',0,'?'),(_binary ' À\ãQ„™!o&ðÜž;','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductStockIndicator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’q,u\\‚\Ó*\Â:\ä\Ú\'4e',_binary '¦EæŒˆ˜ýú‚3=o–çŒ‹†úý—\Ð}ð-\ï','',0,'?'),(_binary ' Á\ÓÏ˜+\ê—H>€X©ª\í','wp-content/plugins/woocommerce-currency-switcher/views/woocs_order_metabox.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³\ï„V?@\ß\ìö´õf÷¿',_binary 'nzEL¸Ó¬€\æ\Ói\á™Kþ¼\Ò\Æ\ÕAd.\n\ÉV@‹','',0,'?'),(_binary ' \Ät’\Êh¼	,Gx¢\"M','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\äˆR\ëN\Zb8Mògž|',_binary '{ÿµ…\Ê«R‡tH}¬ŠÜ§YQœ\à—{òùF\Z±H\Ý','',0,'?'),(_binary ' \Í¨H#—˜•ô\ä®\Ç\n','wp-content/themes/flatsome/inc/admin/customizer/img/nav-line-grow.svg',0,_binary '\à\Ôù\í\n\Í0Í§¥~ÿˆB­',_binary '\à\Ôù\í\n\Í0Í§¥~ÿˆB­',_binary 'fr\Þ\Ø3h†Oƒ´@€\Êò·Ô–8ô¢.)^wZ\Ð8\êºüû\Ù','',0,'?'),(_binary ' Ô¸¶ÈŒ	¼<\"¼3j','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„Ž“PÌ†©¿¨‘x¥Ç‹',_binary '´D•\ìmMõY|\Ûx\"<ALfp³x3³)®H\"–','',0,'?'),(_binary ' Ø©`‘\Ülq×ª»‡ 9','wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/onboarding-product-notice.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h…c\Îz‰\0|­¨S\Ù\ÄÇ½',_binary '’\ÍûI’\ZpmhR˜9jû³U \è™v\Êõœ‚s¬\Ó','',0,'?'),(_binary ' \Þ\Ã9˜X’¾¸¢U¨7¥z','wp-content/plugins/wordfence/models/page/wfPage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tŠbo i›%HºXw\ÏXv',_binary 'Æ…1h\ì/jw\Õ<UÀ”\\™kÀq%s|W¬6\é\æ','',0,'?'),(_binary ' \àÑ–\Ýq\Ý\äSGKy(þ','wp-includes/kses.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gøX}\ëlŒ²¼\ÒB]Q­Sð',_binary 'Ä ¾kp¶\Ã;0ð¡²\à^?[\ÙjE\ÄÊœ\ïTròÛ¤','',0,'?'),(_binary ' \á‡\Þ\è\çaMCk?nRvy','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/add-to-cart-form.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\+9¡Pú³ƒW:Ž‰\ï\Ì',_binary '=¿WG\È\ÑQ\â¸f6•\çŠ:J˜i{™…–3ÁT\Ë\Ü','',0,'?'),(_binary ' \âò\åCZ…juž5_†y…','wp-content/themes/flatsome/inc/admin/panel/Logo.svg',0,_binary 'L/\ÍK·ü¨ÀthÔˆnŒ',_binary 'L/\ÍK·ü¨ÀthÔˆnŒ',_binary 'œ>¢Ì†„Hø\ëõô¦b‘\äœ\ßB\Øs¢û\0Œ£M\æ¶','',0,'?'),(_binary ' \äÁT\\“Ž©\Ò:A\à¢\Ç\â','wp-content/plugins/ti-woocommerce-wishlist/integrations/check-pincodezipcode-for-shipping-woocommerce.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rZ\èœ_¬ÿz\à\ëSC Sž',_binary 'I\ïX\ÏøqžS\â‰õ}\\\É6B\Ëô‚„ •y\ÕU','',0,'?'),(_binary ' \î1\Î\nDzk\Ìp³šš¾±','wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-products.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ïž/A\'¥\Ë}•\Â&}\ï\ë\\',_binary '0)\ê\0ˆhÇw\în´+/z‚\î\\\í\Î;J\ê>[µ','',0,'?'),(_binary ' \ï7“½\Î	;–ƒ','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/no-sidebar.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž»]ƒ\Å`P—\n?E\à{²¼',_binary 'f\Ü#3À…\ruñÍ„­°Ë“•X&òy\ÔÐ¾°„\Ãz\ÜZ$','',0,'?'),(_binary ' ñeÄ¡3Šš§2ŒW\ì‘\Ñ','wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Italic.ttf.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú@\ÙZ¼É³ù|3–',_binary '_\É\å˜i\Ñ\ìÿŽc²ŽB¸¬„7H\âü%K ®¿','',0,'?'),(_binary ' ÷“‡Ý•\Â/súdSK[ÿ','wp-content/themes/flatsome/woocommerce/global/wrapper-start.php',0,_binary '\ê²8\Ø[v¢J¿\æ\í#¾J',_binary '\ê²8\Ø[v¢J¿\æ\í#¾J',_binary '•\Ój\è\×b\Û÷?òN\Ó\ÐSSù¨^=¯—\å\Ü\íP<PˆVº','',0,'?'),(_binary ' ÷\ZõQj\íÿÁ_¼ÿ','wp-content/plugins/woocommerce-multilingual/templates/custom-taxonomy-translation.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜Ž_K\íD\àœ–[Jy',_binary 'f_”‘\Ø¦-\Úc±­\n[ò\"=Ú}yz{Àgš³v\ÈX','',0,'?'),(_binary ' ÷’ƒjv‰$Ü¾Eø†>sR','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/images/ui-icons_888888_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0Øƒ\í#_£û•5E%{ø',_binary '\Ýz07Xñ–I“\Ó0\Î%g\n6VaqDP‡<òÀÚ¤W\"ö','',0,'?'),(_binary ' ûË‚ô¦ý“‰\âù@il]','wp-content/plugins/ti-woocommerce-wishlist/views/wizard/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bü\Ñ\éB\"Û—g~Is˜\æöd',_binary '#\ÍK5}²Â¸U™jÀ:W¡Î±\ÏÁ÷y£k¾\Û\î\Å','',0,'?'),(_binary '¡$¸\Î=QˆZ“ˆ\×','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ìs@õ4	\Z—\àºðDw«',_binary 'ü+Yv2\Zƒª\ÂB§P\Ê@bH\ïI\íeñ4\ÝM®','',0,'?'),(_binary '¡|.u‡®¾û@\Ö8÷\Ï\r','wp-content/plugins/woocommerce-multilingual/classes/Rest/Wrapper/ProductTerms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯\Ø\ÉbJ´‰\Íu/\ÕÙµ\Ó',_binary ']ÀÃŽ­­š¤\à\nc<L#ä‡Iý‘¾/. }…#*\'','',0,'?'),(_binary '¡E›+T´~5ú«|l','wp-content/plugins/products-compare-for-woocommerce/js/jquery.mousewheel.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†T>8÷Ec?dÿ]',_binary '$#\È~D‰ˆ\Ë?1A\ä¼«šZÐ›ü¡t\ÜŸ_','',0,'?'),(_binary '¡9\Ôl\Â×Ÿ? r\í\èqÀ','wp-includes/class-wp-user-query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Õ\Â\Ü(\'eD{ô\rF)ý¸',_binary '¸÷¡Ä§Ã¸‚¬^„|AÈkö˜½¥h…Š£\å¹&B¬','',0,'?'),(_binary '¡#\ËL‡g_õó\àA?£¶ö$','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/repositories.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C‰vV·¿W‹Wš‚ñu¢œ',_binary 'D°G=\Ä=G{U-Gžq­…<O©ª\ÙT\Äk#*\ËU\ë','',0,'?'),(_binary '¡$„\à»‘¼z\Ì#pŠy“i','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/currency.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\î6°zôlŸiP7¿\ÂhˆÂ”',_binary 'JÁ(F÷lCIk~+(”Hon‹twªYø\Ûl(','',0,'?'),(_binary '¡%¥°?’\ê•õ¨)\Ò','wp-content/plugins/wordfence/views/common/section-title.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\è²ø!z˜\à‘\ÏÀ¶˜ðÌ¥',_binary '+£ÿ\ä«A\ÍS—¯ÑŸbH´\Âæ¿³Á$V¯+¿\ÜNÎ‚\Ã','',0,'?'),(_binary '¡%\ä„|½³\Ê\éLNG\ÇZz','wp-content/plugins/woocommerce-multilingual/res/js/files.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?½ù³\ã\ÐU»\Ô\ë´‹¡\ÏH',_binary '½\ß\î{±!\åho\âdTV\à\âõ\ê-Áþ¼b)ºjDª','',0,'?'),(_binary '¡)Cu3®¿˜O\íH\í;0\Ë','wp-content/themes/flatsome/template-parts/posts/partials/entry-video.php',0,_binary '`6Y¬¦±1\ÍO*\r§\Ç\á',_binary '`6Y¬¦±1\ÍO*\r§\Ç\á',_binary 'õD\ÍW:ÚªÁ2\Ñö‚s;X€\ëoD;‡þK\Ü®r','',0,'?'),(_binary '¡*iž\á\ç2|Q&\Û\ZfW\'','wp-content/plugins/woocommerce/assets/client/admin/chunks/9456.style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡c£„¶\Îx´]*Œ5O\Ê\Û',_binary 'Tj³\åL\è¨32Ð‰†\Ï÷9¦õ»òP\êu\çcý®oð','',0,'?'),(_binary '¡8±PøÂµlÈ‰¾\æ\\ø','wp-content/themes/flatsome/inc/helpers/helpers-shortcode.php',0,_binary 'µ4™«l(7³·\Õ',_binary 'µ4™«l(7³·\Õ',_binary ']\\õI\nCM\0\Ñ>ª ²\É\n%•\ØGÖ¶\ßYþ˜D\r©','',0,'?'),(_binary '¡C¢	=µ2/Ý­‘','wp-content/plugins/woocommerce/vendor/symfony/css-selector/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'cµT\à\Ö,ô…Íˆ}WL',_binary '$\n{§P•]‚e\Ð0œ\0t—ŒW\Ût<\ÌC1\â­\î1‡E‚','',0,'?'),(_binary '¡DS\æ\â\á3.Ä¯y}ó;','wp-admin/images/browser-rtl.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\"‘\ÙÓ A\ä\Z®þ¿¿%Ì',_binary '+å•§\î\Û\è0\Ö\çp\ÎÆœõ˜JMk ÿq\çwœXØ¨£','',0,'?'),(_binary '¡G\ãÿk\Ø.4~»2\ç9\Ì','wp-content/themes/flatsome/inc/admin/customizer/img/category-title-center.svg',0,_binary 'SüD\éž\"±Œj\àPiI|',_binary 'SüD\éž\"±Œj\àPiI|',_binary '®“@¦\ælY¡þSH·õõ¦‚(¦®qù\ì\Ä×±gÐ¡¸¹','',0,'?'),(_binary '¡Ko\\Vø\àzNVò/','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Formatters/MoneyFormatter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÞI®@R\íO—5?\à_',_binary '”N{õc1;Ÿ\Öi\ë\Ý\âe\Æ\ÅÙ¤O8A?,\í†ý\Û\älK','',0,'?'),(_binary '¡[J\Ø:|\è¶ÃŒ³','wp-content/plugins/woocommerce/packages/action-scheduler/classes/migration/LogMigrator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ù»ýxd¯\ìä¬–i\ãûñ;',_binary ' \Úé££û¸À\Îô†C´0\è5wŽ\r\ÍXÁ“`¤\Ä%\"QP','',0,'?'),(_binary '¡[öHn[P\Ö.~½ð\ßFU|','wp-includes/nav-menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z°\Ç#¿Ì\à3i(\Ú¤',_binary '\Ép·Ÿó%F\Þ8€\å\\²„,a>ñ27ûx\Ù{,x','',0,'?'),(_binary '¡f%*|õ\n[·¸Õ¬…»÷U','wp-content/plugins/woocommerce/packages/action-scheduler/lib/cron-expression/CronExpression_DayOfWeekField.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tl\0\Ïe°\ï&.d\nfð\Äg',_binary 'ÿ“¦Zf\åò²eº“L‚†\r0K\ÚLÈŠò&´‡','',0,'?'),(_binary '¡jðò—\\\ï\ÉÄ¦<y\ãpƒ','wp-includes/widgets/class-wp-widget-custom-html.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Û¼ýŸñP‘L20¹ý&‹',_binary 'l)•V\Õ\'B\0¾:»£¶´\èhÖµf¤;\0<Åƒ\Â\ïÂ½','',0,'?'),(_binary '¡p$Ž<³y®$^÷!o','wp-content/plugins/woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Abstract_QueueRunner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\Ùm\næ‘‹‡#”³V—¹',_binary 'Ps\Ç\ãs\Å\ÌŠ\Ð\ã¬cK#f¾\Î8¾ Šq6`;\Ô','',0,'?'),(_binary '¡t\ä\Þ.!h\ît¸%h¬\á','wp-includes/blocks/video/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>Žh\'Ç°7/÷i¹ò ÷',_binary '9Qð\ìH\ä¾j\âjHþbºy™~hª)c´Ð·»\ÌB4	','',0,'?'),(_binary '¡~3ÿ‚OKxh\àû|	','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/maestro.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½\Z}\æÔ†˜,\äY?k<ù¯',_binary '	\àµû\Üt£ù38¶31¤>Y\é–\ß\Ç#»˜ŠvB•=™\Ð','',0,'?'),(_binary '¡€AŒ©h\r£!»C{yJ','wp-content/plugins/woocommerce/includes/rest-api/Utilities/SingletonTrait.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ù.bþ\rû€A:\ØI\Æ\äg',_binary '»¬?”\à™\ÜAGœ±’U{`6~:£=O}\ç]-¤µ\Ð','',0,'?'),(_binary '¡ƒ\ÖôŽ0>½ô@\n','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ûH‹\Û=ªu\Í]R9\Ù\Ù',_binary 'K±‰ˆm\Ø}D®\ÌS\î\ì7\ØÚš\ì\ÍÀL<ya„','',0,'?'),(_binary '¡»«Z€\Zxcy•dó\'','wp-admin/js/language-chooser.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Û\ÅU>½p4J\æl®“5À=',_binary '9ô\Â\É\rX¤L\ÙdC5@U\Þ\Ì¯K&>ÍƒlÀ”#\Ë','',0,'?'),(_binary '¡–\í€0*”\0\ëþîŒ›','wp-content/plugins/woocommerce/src/Internal/DependencyManagement/ServiceProviders/COTMigrationServiceProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'šs\Å^Pˆa~ˆÿ™T³?8',_binary 'ú>&\Ó\Ó\'\áŸ\ïô\Ý\äÿ6cGpeg·)\ÙQ-D‹Až\'','',0,'?'),(_binary '¡—[s::´q¤•+œ','wp-content/themes/twentytwentyone/archive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ.2·:?a&³Kÿú',_binary 'ø\î©~Ô²\àŸ\á+@\ÐwþGÕ‘.4C\ÒO\Ù\æiC°¦Œ','',0,'?'),(_binary '¡œz3‰‚¯±Cg_H0\ãlT','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products/all-products/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú\Üe_uÒ˜\êG\á\Ö\ê)¦',_binary 'p²x\îuÿ“\î›?\ä\ß\å\ÃG/1a~		+I‘ª“7¥','',0,'?'),(_binary '¡žö\ÌY\ï\Æ\Æ\ä9KI\áh','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-discount/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\åòu\Òe-·ì‰©¹¦U6',_binary 'ÁdÍ­}øXš¶\éªTöAy&¬)x%ý`É®¹8','',0,'?'),(_binary '¡ ¾%\ÈI3-\È7\ãÁ¤','wp-content/themes/twentynineteen/style-editor-customizer.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¶ù„\Ñ\\ \ã¦ ‡¢•‹Y',_binary '\íz7ºŒ4\Þ|X1ùû\Ñ\Î#·•{/\å²Yio•(','',0,'?'),(_binary '¡£2\éú\Ä\çs\Ú\âœk\Ó\å€','wp-includes/blocks/categories/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Þ‰úÁ\Ç\0ô\ï\â((«{',_binary '\Å\\_zZj\Ð9…9rY\ÇÁ}…¦­=pó·\Üú\0¦r\Ùw','',0,'?'),(_binary '¡¬‡%­­¨\\(w’½·\ß&','wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ý®I\0\×ò$Kø¦  ó	',_binary 'V\æ˜p\Zž1ÍŒÑ\Ï\'=~ñ›‘Ù²ûF_u\\Á\ÐP\å','',0,'?'),(_binary '¡¯	\ì\\!:A=¸&\\«:\Ò\È','wp-content/plugins/woocommerce-multilingual/classes/AdminNotices/MultiCurrencyMissing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\Ž€\ß4KW>ê‚¬¼S\æw7',_binary 'Lýb€Ô¯CZ\âCbA¢§8\Ï\äÖ›].ö|\ÐcÇ“','',0,'?'),(_binary '¡²¨\æ€\Ë:x\Ùý=\á}ˆ','wp-includes/js/jquery/ui/mouse.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ð¦!VEÀÀŽ\ë4¶-uü',_binary '”ŠP6”ÑŠ\"û\n‹(²ô;e;3W}\Þ`\éŒ','',0,'?'),(_binary '¡»\Øøû´¹Pme|@$C','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ç ¾ùÐŒ~þ…^´F',_binary '‡\Û\î\ê\Þ\È(o8@\Ì.z¦Û¹	\n!qœ66bp}\Ê','',0,'?'),(_binary '¡½ˆö\Ø:³röu','wp-content/plugins/woocommerce/assets/client/admin/dashboard-charts/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0÷ò\Îqhq](A€È‘¸',_binary 'sp\\\ÆS°À\r¯\Ø\ËQa»}¸”\ÏV\"\Ê\Ã^†#-L¤\Æ','',0,'?'),(_binary '¡\ÔŽK‚4\á»^Û¿Œ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/address-form/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mòÇ¦¢-+ŠŠ±ÔŒ\àS',_binary '´_¼6g\Î}\0\"\Ü\Ü$]6	\ØÇ“¸Wg¾\"0\Õ\Û','',0,'?'),(_binary '¡\Ô`\Ïxƒ¡“:†G“Â³','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XU+4]\é\n‘j‹¥2`¯ ',_binary 's)Wg\ë>‹\ß\0¨»«¾vw”@“\Þ¦C‚±e¨Ñ†','',0,'?'),(_binary '¡Õv°\ážR+\ÕH¥™z','wp-content/themes/flatsome/page-cart.php',0,_binary '=\â¯ùüA¨„f>\â',_binary '=\â¯ùüA¨„f>\â',_binary '3 \Ù\Å\Øû\æ\rµ¯\äc¡¶d’Y5c•Ž\â\0R\Ü\Ôü“R\è§\Þ','',0,'?'),(_binary '¡\ØH\éaŒ+õ§­­Ì°I±','wp-content/plugins/wordfence/waf/bootstrap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\rñª‡Ø¦¯‡À8„W—\Ð',_binary 'ƒgÊŒñ©pqn üv<]ˆ\æó¨\ÐòIˆAH€³¸Èˆ','',0,'?'),(_binary '¡\ÛzP\îv½\0‡^u\Ó2','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/woocommerce/woocommerce-option-row.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\éÊ”\àÕA \ìg†j9f',_binary 'B\Ð_£4`›ø1\Ë\Ö÷\ÝM¿š5\Ó\Ø¥3\ë/‰£`lC','',0,'?'),(_binary '¡\Þ;\ã;/J\ÃKmRÿ—0','wp-content/plugins/akismet/views/start.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q°z\Ì\"\'µ\0À\0Y7^kTj',_binary '=P¨šò=Áy\Îp°\èy‚Pôÿ\æ\å*u]ÿõ«ž*','',0,'?'),(_binary '¡\ÞO\íI\áóYŸ\\ˆ{=«H','wp-includes/robots-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ\\\ä‡ªlÃ­Ü“Mü',_binary '^ñh¤\ÖRß»u\ÈÉ†CZ11\ì\ÓS‘ý\å&ÌŠp0','',0,'?'),(_binary '¡\ß\'	ŽaT±vnóû‹','wp-content/plugins/woocommerce/src/Admin/API/ProductCategories.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷\îL\0Ý§¥Ÿ8\â\ÒôDé†±',_binary '‡w9^\\£¥=–baå…†%®÷©[QH³7!l\Ý','',0,'?'),(_binary '¡\àTn\×3<[”¤ ð¥\æ5','wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\ë\ã\ÎC>\"Z$d\Þnd+\é\Û',_binary '®z\êˆ-`¤ü”\èý\Î\æn\Ï\çŠ1úYô¡%5\\/$\nÈ¶?','',0,'?'),(_binary '¡\à[Û›2Û•P+}w<b\å','wp-content/plugins/yith-woocommerce-compare/assets/images/07.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ßU÷¹-Q(6Q|mvh´±',_binary '¶s\Ð ppfˆ}RyxX12\0¸õ eÿ²¡ŽZÊ ','',0,'?'),(_binary '¡\çCô\ÍByIw\ÝX»É¾B^','wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status-report.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'HW\Äùc\ØoG\ß8M{„z\Å',_binary 'ø3šA¯Áh-Sµ3O®<‡ÿ¥Wrý\"\îüK˜\Ð/¥','',0,'?'),(_binary '¡\êy\î&a’A 7\Â]Dm','wp-content/plugins/wordfence/images/icons/ajaxRed16.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´\Ï\à%º»©B\ng 2…‰;',_binary 'D,…A£JÀ\íÀƒ»lOS‚p¢eØ‡£&ª\Ú\Æ','',0,'?'),(_binary '¡ÿ¼\ÈE\ïŒ2\å\Â\í\"J\0\Ì','wp-content/plugins/ti-woocommerce-wishlist/assets/css/public-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“\Æ\âS4\ï¼z0öó\é?\Ú',_binary '–\Éz˜B¾¸2\Ý\Ê\Ý\ì\Z\äÝ›5“É¼Œr=°™Æi','',0,'?'),(_binary '¢½\âm‚\Òx„\âŠ\"','wp-content/plugins/woocommerce-multilingual/templates/currency-switchers/legacy-list-vertical/template.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[4\ì†ÁÁ63—\É è“³',_binary '\Ç\ß=P$Ló†i¸°>]køA\äøD½\èU	‹›*\Æ\Ä','',0,'?'),(_binary '¢Æž×…\ZXªX]ÁY\ÉF','wp-includes/js/codemirror/htmlhint.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ2\ì|ÑŸ¯GŒMtP5§\ê',_binary '\0U[\0÷M\'mCÕ¼5þ\Ð5k`ùªñ\é5ñÑ‘','',0,'?'),(_binary '¢)S\'Rj¯,U¡Q','wp-content/themes/flatsome/assets/js/flatsome.asset.php',0,_binary '=l\rTkF‚MEd‘\Ù\r',_binary '=l\rTkF‚MEd‘\Ù\r',_binary '6$÷O5\æþC€D\çÃŠ.²‹‡‚õ÷O3bQ¾ÿ²','',0,'?'),(_binary '¢µ.xó.\Í+ø\'\è\ä-À','wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-es_LA.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤ªý\Þ\Ù\ÛÝ©H¸£X{\åA',_binary '¼¡\Í/FNý\ß\ÓYú4Vª¿4n\É\Ã\â­Pjn','',0,'?'),(_binary '¢õ‹™a-\çQp»)ô','wp-content/plugins/woocommerce/includes/class-wc-product-query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Jw,˜2\ØQºqžª‰\Ïýk',_binary 'g›öz¥Œ‡x)`¨I)B˜\ÒzhQË¯3¡\\¶žY\Î}\æ','',0,'?'),(_binary '¢\n˜u<\Ë7š:Š\Ñ^8¡','wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/ManifestGenerator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O&o’=ŸEðñº,\î*µ\Í',_binary 'XIž¿\Ó\áb(°L$×&†ðIÑ³A\ë‚w\à~‡ÿ(','',0,'?'),(_binary '¢\r­¨ [p»ˆ¯t«‡','wp-content/plugins/woocommerce/includes/admin/helper/views/html-section-nav.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹;Oð¸cò0G¨£JY/',_binary 'ŽÆ»ƒ:|\Ìþ(\Î(³oñ~”•ˆñz]\Ùðhb3‚}','',0,'?'),(_binary '¢PB\è\n¤üZ\ÏY ™Pü','wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-customize-notice-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',2\ã÷k”\Æ*ar\Z)œõ‰',_binary 'ý\à\Ù6•¤K\ê&nol&F€ø\íax\ï3s&ŽE\'\n','',0,'?'),(_binary '¢a¸}	ðÆ’\Ú\ï«d\Âõ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductReviews.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ôfV\ÞgZ,\ã†\Ãý_',_binary '_ªR\Ï\åòµÀ\Õ\å(\n]5de	·Ð’´‚¡])ø™\Ô','',0,'?'),(_binary '¢ a\"KwT\Õbc1S','wp-admin/css/revisions.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@t$ˆ`œ\çj&©ô¥…s',_binary '€Ÿ$bfŒ\ÐÀºo•‡\ìQð¯t²R+\çAzz','',0,'?'),(_binary '¢%\ë\Ë]6/\Ì`“Cz(\Ò','wp-content/themes/flatsome/woocommerce/checkout/social-login.php',0,_binary '\Í\\¿HO´oÀ¾w',_binary '\Í\\¿HO´oÀ¾w',_binary '\ÊÄ rÉƒýT¿lX¯cY	øoð}¿UŽ4zxy¤','',0,'?'),(_binary '¢&Œõ§\ÖV\Åg ›\è\çDJ','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/yith-plugin-ui.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2˜”\ï\ì‡óþ$ƒ[¬C¿',_binary 'kD\ÜY8<œ€H8ÿ\âG+{2I–ñùbjN¥ú×‚\Ûð\Ê\è','',0,'?'),(_binary '¢*ü‡+%«\Õ\î\à‚ôAcy','wp-content/plugins/woocommerce/legacy/js/admin/product-ordering.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú¶\Ì}“l¼¸k\ín9l',_binary '–—v3Ìµ•³TÌµrE0\"\á#3¥Eq!EW\ÞH!Q\Õ','',0,'?'),(_binary '¢-‰[ipùœ\\^˜\ØóÁ]','wp-includes/widgets/class-wp-widget-tag-cloud.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iôl”Â¹\Ü+\ÐXÀ—ZÜš',_binary 'p­^B­’ó&¸ƒü\Õ\Ñó¬RO­\ÖÞŽýD\0','',0,'?'),(_binary '¢0\áÁ&¥Y©\î\Õ \ÕÁ¡','wp-content/plugins/wordfence/vendor/composer/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•]_\åŒ#Dö´\0óƒµ\â',_binary '\Z ŸøÛ’ö%§4~N\Ù~Gh!b\Ø­:w‚˜ÉŒ¿™\'','',0,'?'),(_binary '¢4gŒe\Ê\Ø\é>©ó\Óß','wp-admin/images/list-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hÕ»IS\Â2ý\Ói‚gš',_binary 'ù\îJüp\áS_ò¯\ÔX\Ø\Ø#Ž‰UB\Ù-z\Ô\Ô\Ä,\ç','',0,'?'),(_binary '¢8\â\Ê\×-¸\ÇE¹\Í2ù…`O','wp-content/plugins/woocommerce/assets/css/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1|2\Ù \Ý\å^\ry“\ï&\Âa4',_binary '\ç^±õ=dig¦`ø\ßbš\å\Ì\Öúù2\ï¤+nkO]ý','',0,'?'),(_binary '¢;¹f J1øúË˜·€+C','wp-content/plugins/wordfence/views/scanner/issue-geoipSupport.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘n\n\í\Ú+Õ®.jqAZ¨',_binary '„\0ýöIˆ›ùƒˆ’36˜ø³Ä›nüj7jk£:\ã\á','',0,'?'),(_binary '¢>Ðº\Êþòý`;q\Ù\ÊEð','wp-content/plugins/nextend-facebook-connect/providers/linkedin/linkedin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹\Ð\rSD\'\\4\ÞZ\Å\Û',_binary 'O\î/\ÉÔž¢þ\Ê\'áŸˆ€¬ð:*?Ü´ª§³\ãž?m','',0,'?'),(_binary '¢C-8_š<8ðšj','wp-content/plugins/woocommerce/templates/emails/customer-reset-password.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©]”c‚\ÄBA\äË‡›jÁ',_binary 'ªy,>5V¡\0\ÔôŽ“\Ø6c%l\åü“¸{;w\É\ÐFQ','',0,'?'),(_binary '¢OOwT\àM\r\ÒÁY˜!d','wp-includes/js/mediaelement/mediaelement.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-6\Øÿ¨œ\Ö\Ä\Öm½ö\Ì\Ö',_binary '\Ö\Íœ%»]\ÑcØ·\ÍZœÿ\Ê7\ë\nÀÔ‹°Š2À‚\ì','',0,'?'),(_binary '¢]Ç¿| ´\áö¾¦ICô','wp-includes/js/dist/keycodes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ý\'\Ù‚?D•R³.ýy[¯}',_binary 'Øÿh©,A/js\r§šS\ë\èÈ¦k\Ó=ý¿Z´Tÿ\Ðü','',0,'?'),(_binary '¢fkj’\ÂN‰Uei4=%\Ã','wp-admin/js/tags.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×«\âD\ÚXÝ²õ2Ug\Ìõ',_binary '¤\Ä\Î9€k7qJš3þ˜B\àl?W™\àª\Þ\ÞØŽò\×','',0,'?'),(_binary '¢i+\Ña\ÊVQ\ÅFct^','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-pointers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñ\ãö#Õš‰v \Ç]Ð†¦\Ç',_binary 'D\ÖWw·ñÛ©\rIØº\Å›hzQ\éðò‰;¥bu\Ó','',0,'?'),(_binary '¢jiqÍ‚½˜&#_\Í\Ø\Ç','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/store-notices/context.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3+ë…°\Ù0•‚”Š{§',_binary '\Ø[‰l¡\ç)×?ó,·µ+\Òý\æwÿ*{»','',0,'?'),(_binary '¢u6cc%ú\à\Ç6©ð+0','wp-content/plugins/woocommerce/packages/woocommerce-blocks/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»\Ó\ãB7¯&\Ú]ÀŠNDd',_binary '\Û@H\Î\ßÁ\å\åM;ïº¾‰5 i\Ð\Ý\'™\åo\í¤5Vö','',0,'?'),(_binary '¢x\ÜJ¥-\Å3lNOj$¾','wp-content/plugins/woocommerce/legacy/js/frontend/add-to-cart-variation.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\Îr<rr:¤	E\çi',_binary '¶!1·\Í\Ù\íd\Û`ò“‰½ˆñ’p\Ø53ü§~þ:NS:','',0,'?'),(_binary '¢y%…\Ë\ÆÇº~¹ne\"V','wp-admin/css/list-tables-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þî¤ˆ½¥\Ô\ç@3¯-C',_binary 'c22FøzÀ›ðP.Û§¸†D9©}e	TŸ„gÁl.%','',0,'?'),(_binary '¢zïši\á¹ð«g—1{','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-enhanced-select-wc-2.6.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N}´ðtÏ·\Ô\Ý\Ä<¿Ðš¤5',_binary 'W\ì\Ö\èòp–\"\Ó\Ó\Êô\Ð5Dº]jSq”\ÜH\Z)t?©\â‚\Ì','',0,'?'),(_binary '¢{Nb$egbdx\ÙV','wp-content/themes/padmini/functions.php',0,_binary ' Í¥ÿmyTO«jaDƒ\Ìe',_binary ' Í¥ÿmyTO«jaDƒ\Ìe',_binary '>(tP|–—ý\Æüa\rŒÁ\ìc\Ë_tù/’Q–zkk','',0,'?'),(_binary '¢‹Chq9`\0œ°SOMýŽ','wp-content/plugins/woocommerce/assets/client/admin/customer-effort-score/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b†\Õÿ›»ÁZx«¯ eg',_binary '±CuŽT9\0À\'«w5*\0šÀþ\ä\é¹ \'‘¬Qfÿ•Hö\Â','',0,'?'),(_binary '¢Ž¶Ö‘b+¸\æ\å\ÚB}','wp-content/plugins/ti-woocommerce-wishlist/integrations/automatewoo/trigger-wishlist-item-added.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ@™6Ô½ü¸=M\ØÓ½^',_binary '€—th´€9Bµ\Ñ|›…E\é\ípf˜úv¥9l‹¾','',0,'?'),(_binary '¢“£D{d^QL\ç\Ñv7œý','wp-content/themes/flatsome/inc/builder/core/server/actions/actions.php',0,_binary '\Ì\Ð\Ú\r>>_xÁ]³$',_binary '\Ì\Ð\Ú\r>>_xÁ]³$',_binary '#ªxá¤·›T˜¨û…mYðF\é_\\>H\ä\È\Ült.ù\ç','',0,'?'),(_binary '¢˜^ñ+¬¿0”\Ë\ìm','wp-content/themes/flatsome/inc/shortcodes/page_header.php',0,_binary '¯Ÿ`¼ºž¶:3\Òþª‹\Ðkš',_binary '¯Ÿ`¼ºž¶:3\Òþª‹\Ðkš',_binary 'Å Zo„0-p\'³wT!‰j\\\"f‡w:¡(-M','',0,'?'),(_binary '¢¯°+È·0!\n\È8S\å','wp-content/plugins/woocommerce/src/Admin/API/Reports/ExportableInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ú{©\Ú\í£\Æ²¸—2T–',_binary 'EÀ÷Ðv¾ P!n»`&E\Ñ\Ìò.\Ó\ÍjØ¬\Å&','',0,'?'),(_binary '¢³\åR%\î¥hB­0£˜\â‘','wp-content/plugins/woocommerce/includes/admin/views/html-notice-base-table-missing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%~h¤\ÛkØ°8¼-Pn\Æ\ä',_binary '«C}\Ñ\É%¯\Ê\Ò~\ían\"”ú«Js°,¡\åS_\É\Î','',0,'?'),(_binary '¢´¸/\Ï-•TÇ»úT<—S','wp-content/plugins/wordfence/modules/login-security/classes/controller/captcha.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ýNkyIk¥\Âw×”©=i',_binary 'LS=ˆ¡Ž­Wf&·d\\=]_fŸvesW\Þ¾ñ‹','',0,'?'),(_binary '¢µX5\ÉKS¿ò\Ä@WÏ›ô','wp-content/plugins/woocommerce/legacy/js/frontend/add-payment-method.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'üûÇ©\Ùc	^e‹Šùc.´\Ü',_binary '\Þ\ßîš„]p\ÈsBÉ§º\Ç\"þIWTnŸR?\ä‡W','',0,'?'),(_binary '¢»·\\·\é\á \Z´\ç\Ò(','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-endpoints.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n:Zòq¦Y+{%¤ ŒQ',_binary '“ö\ìÉ˜‚\Z`\ZQ4ž\Õ8qE\Ñ*ÿ›“\Ìñ¸\éqy','',0,'?'),(_binary '¢¼ \ËW\Æ8¬³\æáˆ¸','wp-content/plugins/contact-form-7/includes/block-editor/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pj\"Rö1øaO\é0«sq',_binary ' „\âð\È5\Ä\\¶µPMyð‰¡»P\æ¶\æc\×j¯','',0,'?'),(_binary '¢\É\0ô›»\Ås]\ç,Š=u','wp-content/plugins/woocommerce/i18n/continents.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\r\Ý\èÍ­þ?\Ð\äW\Ï\Z',_binary '\ËW\Ð\íHvqÞ¢õ\ëˆù7´£?¿s\ÙÓ„\Ã\Ì\Ü\Étÿ1‹\á','',0,'?'),(_binary '¢\Ìh/·8Ï•/¥7N³IF','wp-content/plugins/woocommerce/templates/content-product.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\ÎQvl\Þ\Æ\ì¾\î³¯ó\Õ\Û',_binary 'Pr5\Õ\äû\ÅU‚`ù\îy/UŽQ…Zý\Ô\Ö|³7`ÿ\ìi','',0,'?'),(_binary '¢\ÚRo|9ë“£|Ž9H\á@','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/select-mailchimp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[‹ð\r&D\á\è$n5?',_binary ';\ÕOÀò”„VÓ˜òs\Ä5f©\Ìñ¸Ÿ+òûbû\×2\Ó','',0,'?'),(_binary '¢\Ü\Ó\Ü@W‚a~\ËA\Ü69','wp-content/themes/flatsome/inc/admin/customizer/img/cart-icon-basket.svg',0,_binary 'œ%\Òl£TM\0`¬¨Ts¤t',_binary 'œ%\Òl£TM\0`¬¨Ts¤t',_binary 'þŸŠ\íKœ$Þ¡\Í’Vcxbrvú	Ä¬ \æX˜Ì¤\íj','',0,'?'),(_binary '¢\ê\Õr£\Ý¨N(€´M\í\\','wp-includes/blocks/post-title/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†˜4‚Ìˆ~\á3\ÊvtSQ\'',_binary '\Ûg¯e«\à–Tø½»\Ô\'i\\š’i¤\Õ=>;€QBH\'D¼…','',0,'?'),(_binary '¢ú\î<zs”‡I\ËGL¹J[','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Exception/InternalErrorException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•\é\ç]ŽJ\ì\ÝÊ‘*¬\à',_binary '`\Ò-\ÛW]´ÿyn-%ôl\Ò\ç+V‡\èqZ1/_ \æm9pý','',0,'?'),(_binary '¢þï«“\ç\ë\Ý2m<¶T\É','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-on-sale/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ï\ê\Ú\í\Ì\á\Ã> ¾ü\Ê',_binary 'ª{:¤h”o\è\Ç>\r°w?¸œ\ÉjjgWM\'ªT•y\×O','',0,'?'),(_binary '£{QE¦[Ó‹\Ñ\\\ß\È','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/views/icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C¬\Þ.¢DI-[s‰I',_binary '¼h¦\r÷bm$l)™p°.\"\ã\'(\ÉÇ ¡\0¼\Çî¦','',0,'?'),(_binary '£V\ïvK€ë¾±¯\Þ','wp-content/plugins/woocommerce/assets/client/admin/analytics-report-stock/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=n¤—¸û·!*Y\'ö“',_binary '=€£”\ë°	L”>\Ø}\ï0\Â\ÈË•ðÁXb‹ª‚8','',0,'?'),(_binary '£-ž×®X*…w\Ó!\ØF¥','wp-content/plugins/woocommerce/includes/class-wc-coupon.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`ö\ß\Z¬e7žÇ“þ·”1',_binary '<°›Y›\ì¼:\æ1R˜¨º\×\Ä5 2e}\Ú\Å w\ï!™','',0,'?'),(_binary '£1\ào%¨Àq\ÅAµ€','wp-admin/js/inline-edit-post.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’¿\Ñ\Ô1ò/V`\Üön’BRˆ',_binary 'ºNüXLµ\Ý1»YDr/šuXn¶¶o€µ‘gd›š','',0,'?'),(_binary '£3a\n®\ì\è¶G¤ï’‰¥','wp-content/themes/flatsome/inc/admin/customizer/img/account-icon-outline-round.svg',0,_binary '\r¹½\ÄF\Ì5pX\ß\äû¶Eº\Ú',_binary '\r¹½\ÄF\Ì5pX\ß\äû¶Eº\Ú',_binary '­ðYe\Òóú¡\çU\Ò\Ü^ÇšZ¥¿/x³gP\ÖhANÀ\Ã','',0,'?'),(_binary '£<\Ê_\Û\Âu§”c5õ|\ÞIf','wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-it_IT.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ò§õSõ\É\ÐmM\âŒH^_',_binary '¦˜_XO§b\æQ1¬\Îx>\ÏW€¼\')‘|]t÷uP\ÕF','',0,'?'),(_binary '£A¹–“`s…A\â;«1','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/country-select.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰²ü=<\Ñ\Ä=©‡‘c†\Ð\Å\Ð',_binary 'Oo\çaaÅ¼M%@rÈ”hQt7‰#§C\ÆÝ¸’úf','',0,'?'),(_binary '£G™V\ÜlW\ÊJ…p\Â\ÐY','wp-content/plugins/woocommerce-multilingual/templates/st-taxonomy-ui.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰–zþú@ÜºF\Ì…',_binary '\Äý6­\ÔþFÉ¥*}\Ãb_õ\nõUžv\'\ÄQ%¬\Ô\ß/f','',0,'?'),(_binary '£NóZ\0ñ \Õ\äLT‰{¨','wp-content/plugins/woocommerce/legacy/css/jquery-ui/jquery-ui.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ga±zD¾jM™	l¸ý\Ü\ç',_binary '‘\ïöZ]GMœ\í1yH†QP<Ýº˜(×˜\"õ\ß\Ï\Ò\×hÅ¡»','',0,'?'),(_binary '£TL \êßˆ,]½¬Õ¦†m','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/SodiumException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8‘	¤¢½»:{€\äWó\êe',_binary '6{w÷»µ^Gk®Î«\Ã25\Ýúb“ó„\r\ä\Ýñ“«„\æˆ','',0,'?'),(_binary '£^P¤0R&¸4È–<\é\ì','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L‘øò©Q\09§mšM˜',_binary '|3¥\Ù,ÿUx›ö®`ió\Ë@?\åf.@F/xŠ}h#…','',0,'?'),(_binary '£`%k‘[Š0$•·r\ØE^','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/payment-methods/test/use-payment-method-interface.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡ŽX;õ\é\"~¯:Õ¯',_binary 'L\Í\â$[“@:…þ‹°ü¯„\ÜI\\\Z-\é‰ð\ÕL','',0,'?'),(_binary '£c\ë“ †Ol·‹ý$M','wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-coupons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\îv«‘N\ËöIA\r­ºŸ',_binary '\ÐW\Øx\Ø)\Â)DU\ÞIø\Ï\Ûý›*1ö«\Ð\Õo·J­\ên','',0,'?'),(_binary '£z²h9\æ\Çêˆ¦\Ä\ÊXpˆ+','wp-content/plugins/wordfence/views/scanner/no-issues.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xt-|øF\ÞýŽ¨\Ð\Ñ\é…eª',_binary '\É\×_?7\Ëñ\ÜcõŒ¯:_˜\Ò@¨‹\ÃE\ÛJ‰Ÿs©°[','',0,'?'),(_binary '£mµ±ü©UŸ_*œ±\ê','wp-content/plugins/ti-woocommerce-wishlist/templates/ti-wishlist-social.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õõM\Å E\à±o\0[\ã\å\çT',_binary '>.VÁXšÍ¶˜!ž\nLJ• &ÿŠA‚Iž om','',0,'?'),(_binary '£„×¼\çóÛ‘T\à–¤\Ëøœ','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-dashboard.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'žŠ›Ò–\0n\æ‹WK~ó',_binary 'œ¨Œ\Þÿ4\Ì=¼Ò¬\0d\è–üo¾˜Cü\Ïö!\Ì','',0,'?'),(_binary '£‰\00K«lJ<@öÔ²','wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/core/nativefontwatchrunner.js',0,_binary '†G\Ål\æ)\çD±\ß\ÄM\é',_binary '†G\Ål\æ)\çD±\ß\ÄM\é',_binary '\Ød¾8ÿZ|Á`¤\Þ\Ê:ÿO÷{\ÅZ8¼\r›,\\','',0,'?'),(_binary '£ž¤v½ˆ…V5Çƒ\ÞD\Åu','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Asn.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œÚ„\nº1·hÍ¾!\Ü',_binary '³MÏ¡\ç	\Þþ¥¨p«kò\Ä)¯«\â\Ç!\rˆ½','',0,'?'),(_binary '£™ø¸|«\Ü\ëxYñøiF','wp-content/themes/twentytwentyone/assets/sass/06-components/footer-navigation.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c­p\Éa·£G\ê¡\Ö*d',_binary '›ü\ËK\ns·DÐ¨\ÕD}—\0b\Ôx:‚XJ¬HlN~ÿ\âk','',0,'?'),(_binary '£šEöS\Ôc+\ßñ#º)','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\ÒNm…S\á\í”\ÔC\Û\Ò{\ç',_binary 'ü\Ø\ÔP~{p\Õ\Ô}x{\Ô82hXöx\ÅÁ»ˆ','',0,'?'),(_binary '£œ¼¯\äÇ–¾òˆWY¼%\'Z','wp-content/plugins/ti-woocommerce-wishlist/views/admin/upgrade.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9ô2‘6¡÷Œðz\×n',_binary '§r\Ñü<«õÒ–Ma\Ï7}%\"#-+£?¢V¦ß›·T)','',0,'?'),(_binary '£³rô	U•E\ç¿PU(R\Ö','wp-content/themes/flatsome/inc/widgets/widget-blocks.php',0,_binary 'R\çC\Öÿõ	LÓšÀ',_binary 'R\çC\Öÿõ	LÓšÀ',_binary '\ê\"\ìð\ç\á\ß\n%Y\Ý@\á’\æ[Ê‘9«š\ØgÕ¥ŒÁýP','',0,'?'),(_binary '£¶«\Z¡o\ÂúÕ›¦²¬V','wp-content/plugins/woocommerce-currency-switcher/classes/cron.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\ä\ãZž\0ž€\Ñ\Öf8ü',_binary 'þ\Úø\áR\\OV1‹\"\Ëd\ë(D\0€ý©\×ôCHõÀ^\Ý\í','',0,'?'),(_binary '£¶ô\Ù!œKü©$y\áò`J','wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yith-system-status.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(AB/Ö¥Ï—™!\ït\Ö.\Ö\Å',_binary 'ZŽV\ì¤~òù©o\Å\Ü /É\å7\Â\ÙÀš”»Ù¾u','',0,'?'),(_binary '£º\ÓxI\îtLB®·\Ñ+†Ž,','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/empty-cart/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿ@-\×\å‘\'L^I*¶ú\è°',_binary '¿\ÕÄš3g\èuBd­Q.2\Ä%V \éf©,\\<’>é‰ª','',0,'?'),(_binary '£»ÞŸ§\nmõ\'bTYHNb','wp-content/plugins/woocommerce-currency-switcher/css/options-style-1/options.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›dmš±Ã˜\Òò\ï\è\ë…\ë)',_binary '\Ì\Ç4m\Ê\çG\í9K¹¬W„²P\Ù/Gô“³49¦LÒ¢¼­\Å','',0,'?'),(_binary '£Áj;•Ð´n½\å´bP\î\æ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/shipping/use-shipping-data.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\Æ\Ø÷’ò6fÖ¶®o‹G_¸',_binary '¹X#Š\ç(aÿS{Ó·Q#™\é·S£<\ïpX®ø','',0,'?'),(_binary '£\Ê\ÞM»E\ÚÀc¼\0\Ý\Zm','wp-content/themes/flatsome/inc/admin/kirki/deprecated/filters.php',0,_binary 'H„c·E±\ÆC\Ä%|¦÷Ïµ',_binary 'H„c·E±\ÆC\Ä%|¦÷Ïµ',_binary 'À¾Ç€\Åžw$ûŽ\ì\Ûg1<\Þyö\í#&\î\ÄD\Å8%¼’','',0,'?'),(_binary '£Ë‹\ÖA\èF¿wD4B\0­','wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'óIûœ«\ÎX²%˜\Ã\ç\"',_binary 'õm\Ø.¬\ëF;Ž|\Å(l¦Gû\ß\ÌVW\Ì6\re\"p\Ï/','',0,'?'),(_binary '£Ø’J†U¡\Õh\Ø3\è?','wp-content/themes/flatsome/inc/admin/customizer/img/dropdown-style-3.svg',0,_binary 'n\Åd=:|©ùdÇ­?T\n§',_binary 'n\Åd=:|©ùdÇ­?T\n§',_binary 'l7i‚bõX}—Ž†R6©–¯\â>‹u8,pr?','',0,'?'),(_binary '£Ø«c¢¤9£‡­„‹öd','wp-content/themes/flatsome/assets/img/payment-icons/icon-truste.svg.php',0,_binary 's€2´%BzŽ{\Z˜œ•',_binary 's€2´%BzŽ{\Z˜œ•',_binary '\ÄF^¦p÷”™yv•°(\âˆö•xq.™»\â\'','',0,'?'),(_binary '£\Ø\å®õY\ä\0b±i\î@V\â','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/reviews-by-product/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bZ<\Ö cO}\ëRG¥9',_binary '‰÷3m7‡¦œ#5\à>\Ü\È÷¼\è-t{A\ãw','',0,'?'),(_binary '£\ÜF¦²™˜{\ì´ýA','wp-content/plugins/wordfence/lib/sysinfo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Îü{XŽ6÷92\Õ\í\Ì\Â',_binary 'G,™½=\Ù\É\Û\ÑC\Z3¼úŒ~f(8‚\ìÎ¨‹\Ï@ˆ,Ñ—','',0,'?'),(_binary '£\í‘E\â\â\í•ÀQ?\è\Þ	(\Ä','wp-includes/class-oembed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j,;³\Z3ùx\Ùôƒ¯\Ã',_binary '\ïˆ\à0«v\ë!¶vv7\ïH\ÞlV‘d‡Á\Îi\'Kƒ†\í¶­','',0,'?'),(_binary '£ôa»zw<s÷§ò\å\Û\Þ','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/toolset-core/icon-128x128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\íc]J¯0ô˜.nò',_binary 'ý]9[^08szF%\ËÓ¾Àjm¿\ZTJi\ãW\é','',0,'?'),(_binary '£þQ#\\Ç±xžwÿ»b','wp-content/themes/flatsome/inc/admin/options/header/options-header-logo.php',0,_binary 'tÏ®ooL\Öoù‡)’_Zi',_binary 'tÏ®ooL\Öoù‡)’_Zi',_binary ' Ž².\Ê\ë§Vÿ…Ã¿\Ý\ÄDq«\ä\â¼8&&\"W–\ËŸ”','',0,'?'),(_binary '¤\îc9%ÿ>ú\0Fœ§UV','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Node/AttributeNode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Þr\äZN–†!Š„…\ÆŒ¦',_binary 'szG)c!Ÿ[z/vCN¦/Ò­DAt&L\ß	\Éò\è‹y','',0,'?'),(_binary '¤.ÝB¾ÀxK‘YŒ','wp-includes/ms-default-filters.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ZÈ„.!ðY21\Ó9ô>',_binary '(ø\î;®JÑœ©ð<ñô^þ\çbkÒµxˆg\'*Û•U|\å','',0,'?'),(_binary '¤\'0Oõ|t\ã·$<Ú','wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-bg_BG.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1ùû$6\â, g„ócû$K®',_binary 'j pq\Ã,Y¨ðr\ÙO·\çDSkyAE:È©u€t²j','',0,'?'),(_binary '¤\Ì6†\èó~eª{\Ð\".w','wp-includes/widgets/class-wp-widget-recent-comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<°F\È\Åö`–ý\Â\Î\ãŠ÷',_binary '—\Ë\é\ÝÔƒ‹O\Ëh‡	®Ÿ8q\Ä‚p£€÷¨=F[r','',0,'?'),(_binary '¤t‚\Û%°KŸ€(]P','wp-content/themes/flatsome/inc/builder/shortcodes/helpers/image-heights.php',0,_binary '\"\"U7m\ì]\\[1D\Ã/‚',_binary '\"\"U7m\ì]\\[1D\Ã/‚',_binary '¤­n™}Z//Ò¿\Èu™\È\Îf¿%õµþiŽ\ïI‚q·','',0,'?'),(_binary '¤(~õ\â}Rf\Ù/ÿW\ã€','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-plugin-licence.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥O>±”p\Å9\Ã\Ñ\êš\ïŸô',_binary '®d#\Ø\ØF&¤Vd\0«È¿°!V.\Ó~`q±zbo\Ò','',0,'?'),(_binary '¤*O-¡LÏ„ª\Â\â\r[\Ûu','wp-admin/css/about-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Šso\é€A[`\r¦dg?\Ê',_binary '.\Ôý´jýAn³¬§„\'l2(v\Û{f&„NG0µd','',0,'?'),(_binary '¤:I¯|H¯\Õ\Û÷\Õ<…f','wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-customers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥Iu\ØÁMu …÷¼ö',_binary 'pF\Z¶n¤J—¨‡\ãToœO¿q\Ö`\éY‡_³','',0,'?'),(_binary '¤??n¿\ë\æ\åý\å_2g·j','wp-includes/js/wp-util.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5¨Zl½¸.}Lƒ{!aN)$',_binary '\à‚	k\Äý\Éd‰¦±Yn*®—IÓ’—_,À¥2\0ò³\è','',0,'?'),(_binary '¤J\ç\Ù\ØP| Qo±F','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/textarea-codemirror.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±ËšX\'Ë–\Êg¯†P\Ø',_binary '…\ë\Ó@K1ôÀÍ¹¥|S^¯\Ä\æFñTœo-É”ö²\Ô','',0,'?'),(_binary '¤PýL\Å/ns8>À!\ã\\','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/multisite-updater.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\n¨À\îy¤	\é}\"LT\á',_binary 'Q\ãŒ\Ô»Á\ëý,Ë¬¶\îÂ¨\ÝPÆ®ºƒ¡ÿƒ’\ã','',0,'?'),(_binary '¤Yg\áù$z\ÉH\á.Y\é\á','wp-content/plugins/wordfence/modules/login-security/views/settings/user-stats.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ï\Ö(Ÿ\ê`WŠ6\ä$·',_binary 'fDYr‰\Ãtt\Ò\î}}}1ªq/u|±÷\Ð;°B','',0,'?'),(_binary '¤dï¢ªÌ˜](«È€X\'V','wp-content/plugins/woocommerce/includes/react-admin/emails/html-admin-report-export-download.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\Ø6­¨SN\é‰@Lf€v®',_binary 'ªˆõ<\è\êi\\H»Q^ýbø†\ê>¹	\Æ\â5•;','',0,'?'),(_binary '¤y?¯õnë²ƒ‡½»‚€','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products-by-attribute/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸w1s¿“\Ô\ì*a—Íº',_binary '\Øc\å\ë×«\Ñ*K¾«ô$\0ZCý3:#ýûQùa@_¨','',0,'?'),(_binary '¤‚5\Í\Î7\Úô7\Êƒ•\É','wp-content/plugins/woocommerce-multilingual/inc/template-classes/setup/class-wcml-setup-footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±W™Xµo…~­q«‰0',_binary 'l‰\Õ\çŸO¯¼\ÓB%Öœ½ƒð W¢~u\ÎQ¯Xpð','',0,'?'),(_binary '¤”Ð±Õ­Î¥ô\ØF@‚·','wp-content/plugins/ti-woocommerce-wishlist/assets/img/admin-update.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'üD?\áXÂ´)²dH¥‚',_binary '7­I\ÕI\ZþÝ®$£\Ò0:¿€¼l-±|b´û§\î','',0,'?'),(_binary '¤•§…‡ÀXo\í€\í~ª_k','wp-content/plugins/contact-form-7/includes/mail.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[›ðb|N.¤\×\ç“3QYŽª',_binary 'ò“ñ…¸ªŽ‘\0({„‹tÁ©clY†wxÝ¯¢€nÜ¾	','',0,'?'),(_binary '¤¡ƒ6o8Š†¥NoL;','wp-content/plugins/contact-form-7/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'HõMñ\Â8\èñ\Ü9\ÕWW\á\é',_binary '\Ø\Ó`ñKkŒEq ƒÝý\à^CS\é\Ò=)\Ä#\0‹i‹ð','',0,'?'),(_binary '¤¤D(2·\Åò\Òü£NA','wp-content/plugins/woocommerce/templates/order/order-downloads.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„š¬Â¯‹¾SR!Ö‚zN',_binary 'Cr\æ#‚![ñ\í\ãu¥œ\Ð\ÆÛ•û\Ã>\îûÁ\"3Ÿò\'û\ï','',0,'?'),(_binary '¤¤\í;¯dAo+¿\á›d(ž','wp-includes/blocks/quote/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ô:s\ÍVRü…p”Ô¾· 4>',_binary '½.\Ôg¿ª}$b·XQÿ\"j\×ýJ}\ÝGjc÷Ýº©\Ð','',0,'?'),(_binary '¤¥{?\nŠy\î\ïh\Ì~\ï','wp-content/plugins/ti-woocommerce-wishlist/includes/api/yoasti18n/i18n-module.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Iû0%¹(þÈ™VÖ•\ÔÓŽ\Ú',_binary '9\Ù\éi\'²\ÜÇ¸@ž\Ëc^h\Éõ)÷Ž[¦\Õ#tQ\ê²','',0,'?'),(_binary '¤§\ë*\ç>Pm­/¡LES','wp-content/plugins/yith-woocommerce-wishlist/assets/images/jquery.selectBox-arrow.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*\Él\Ôž=\0þSö\Ìñ¸}m',_binary '1\Çþ~A\ïGu¼2Q,1L\çCù‡»ñ´û\çL','',0,'?'),(_binary '¤ª¯E\Ì4.ÀV¾w Ï‡)','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-category/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\á³H45Ø—§i±h/P—',_binary 'wŸ›,t<P\Çô¯û\nªß¤lD‰›Ö\ËVó@)\ã~‘','',0,'?'),(_binary '¤«“\Ãm\ë\ìÓŸa\Ö\Ä\Ô\Í','wp-includes/blocks/post-featured-image/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\çVW~MAÊ¾Þ–S\É\ÌÓ±÷',_binary '\Å ž¶\é3\nÝ…™£w0Šñ\"+v@eõ®bu~ÙŽ\ë','',0,'?'),(_binary '¤¬V:Ä–Hc¦\ë kvö\áG','wp-content/plugins/woocommerce-multilingual/res/js/troubleshooting.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(—JRL¬*\rG\ëmï©·\à',_binary 'Bø§[\n;Ï®ÿ»0:…`1@pß [Hw´ñz=óƒ¨ü·','',0,'?'),(_binary '¤¬™Z\ïSŠ%µ(vS°\Ö\\','wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-not-translatable-attributes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª™Qx±e\ÙÔ½#\Ôÿ\Ø\ã',_binary '‚\Ãù\Ò`\Û¯õM\èzB|\Ñ\çf\\ý\Ò%~Y)\Ï[\Õ','',0,'?'),(_binary '¤¬\ÊF+‡\ïÿš l9p\ë©','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/terms-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷2V:\âF=\Ò÷b¾®G´\ã',_binary 'n|ÿùd·‚\Ù\Ò?Árƒ(i-Â°öøƒ-Ý¡\r<R¸','',0,'?'),(_binary '¤°‚‚\ç\ÄQhªôÆ†\ä=','wp-content/themes/flatsome/woocommerce/single-product/rating.php',0,_binary '\àh\Î4ô‰ù‚\Êó\Ñ\ê\"',_binary '\àh\Î4ô‰ù‚\Êó\Ñ\ê\"',_binary 'Þ¯\ß\Ò{X\ÃX„P|\"£Þ ­¢JZŸ\ÚS\×ùGa¦Á²','',0,'?'),(_binary '¤¶`$Ï®\ë\ÎóªOò\0i','wp-content/themes/twentytwentyone/assets/sass/05-blocks/quote/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}Z«s§a*a²y›”\Ò\Ã',_binary 'l	@>	Š8[wt™¦À?Xæ‰Š\ÕÁ>\Â\×V}½Â€','',0,'?'),(_binary '¤\Çz< P€\îm\í\çH5ž','wp-content/themes/flatsome/woocommerce/content-widget-product.php',0,_binary '(à²žŸ¡\Õ\î1\ÃG\nDQv',_binary '(à²žŸ¡\Õ\î1\ÃG\nDQv',_binary 'n\'óò–:9FŸô\Ä¢\å\Ä:\ÙF¸w\n¢¥tH\Z\ËV','',0,'?'),(_binary '¤\Ì\"I\Ófztöœ\àôL','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/panel/woocommerce/woocommerce-option-row.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\éÊ”\àÕA \ìg†j9f',_binary 'B\Ð_£4`›ø1\Ë\Ö÷\ÝM¿š5\Ó\Ø¥3\ë/‰£`lC','',0,'?'),(_binary '¤Ï©ÝƒÙ£±ü\ÞV¬Á&õ\"','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×\Ðö\çÕ\âVo5€\ìÚ\\',_binary '\Ü\×\Ô>‘9\ÚùY\rYO´­C4h²‹\í\Ù\î™\ä\ÐužG\Û[','',0,'?'),(_binary '¤\Ñ\Z³OH,Ö¹d{0£B','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/featured-product.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>­$\é¹e£$™g@\ÔWx\Ë',_binary '\àQ%G§A\êk‰\ã=\Ò^}€;ÿ\È7&Ç¡»&£\æ','',0,'?'),(_binary '¤\Önx\ÊKh¬\É\nn½\ÇA','wp-content/plugins/ti-woocommerce-wishlist/assets/fonts/tinvwl-webfont.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J¦fˆ\ÛûQ0\ÂRa\ØVv<',_binary '\Ýq:´|\ã\æt\ÝrVóV¡\Z[\èK\×\\¼-½ï’','',0,'?'),(_binary '¤\á\èt	<Õœ¢‡\ä\ç','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-customers-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸;NUf€uÕ¤Q©iõ',_binary '‰3Qt&(}XxÏ‡-\Æ$qÜ±:O&mH(ð\ëˆ*\Ê','',0,'?'),(_binary '¤\ç\nÿÁR²bð†\Òxýú¡g','wp-includes/css/dist/block-library/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ir’(\\\ßxGð¤WjHR$',_binary 'Ð¶\'Só1Ô²ÚMvEŒ©1a\ã\'\ãfY\r¥>‰IRO','',0,'?'),(_binary '¤óv+ö$\Ã=28õ’','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/media-rleft.svg',0,_binary '%Òƒ³f%O\Ä\î\É\rg=\Ð',_binary '%Òƒ³f%O\Ä\î\É\rg=\Ð',_binary '@•ˆ Ú¦xŒY­Ÿ\r1‘˜¹Wuœ)½\Ý\ïW1ö\îÔ¡´','',0,'?'),(_binary '¤öJˆF\Ì\Ñ\ÅVRƒû','wp-content/themes/flatsome/inc/admin/customizer/img/product-box-add-to-cart-icon.svg',0,_binary '¿^ƒ;\é–¬ò\ì`=i\ÌxN',_binary '¿^ƒ;\é–¬ò\ì`=i\ÌxN',_binary '9\ïbd \Ò%ól,\Õ\î2\Ün)\ë>\È;µ\Ù)\0L±)…','',0,'?'),(_binary '¤öó\Ò\Ê\Â{ô	anV8','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/functions-core.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K¨]*\Ç\ë+›‰QQ+',_binary 'cõ\Ê\Ô\r\ç~Z€ŸlÇ¯vnz \Ü,0v:}L‰?67Y¥','',0,'?'),(_binary '¤ù\ÕKú£À\'\Î\Zxrx‹ñ','wp-content/themes/twentytwentyone/assets/sass/06-components/footer.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd@»ý9\ÌbøVˆ0\Ûh\Ë',_binary 'ƒ\Å&3—»p8-\rl\êt3\Èhy\ÏeÁfQ\ÎrñÀ¹JJ','',0,'?'),(_binary '¤üY¤\0)\r/jñ©)ôAr','wp-includes/customize/class-wp-customize-filter-setting.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\Ý\Ú`f¯\ì\0\ì©iuû',_binary '´\0<\nôj:§\ÜY£F¼\Â¿d\Éûw\Ê±	\ÉýÀ¬','',0,'?'),(_binary '¥µ\È<\ÊD:0‘ŒÉ¼[\Ù','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/order-meta/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§$–n=@\á­ÀÊ©\ã_÷h',_binary '(\Ò\ÆRû6\Ìj\Ñ\Ív[c-\ÊÔ¶W\ØL’\Z¯\æ‘ó\éŒ','',0,'?'),(_binary '¥	\Ý\Ò žõ:¾r0úu','wp-content/plugins/woocommerce-currency-switcher/fonts/fontello.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™:µ¥1)\Í\Ûb½\êù',_binary '˜t\Ïu\Å\ËŸA»\íMüE›`\å­Ì¸¨…8Á‹©ÿ9','',0,'?'),(_binary '¥\n\ìu»‹™m;¨l\Õ~','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/attribute-filter/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '& \ïo_ý;yûD\àü',_binary '_Õ‘üûN•œXúwü4I®µÿ\ë¦Äžÿ','',0,'?'),(_binary '¥\rûü•\ÂzÆ´´F{û','wp-content/plugins/yith-woocommerce-compare/widgets/class.yith-woocompare-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆpVÌ–4P—@…p1F\"',_binary 'ýD\Ï+\\Û¦\è\æû¯:\í\ï¶\ÖGÑ–ŒÙ‚•\"Aù—LeP','',0,'?'),(_binary '¥P¶h`|/¸ª\ã:Wƒ\0','wp-includes/blocks/columns/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸o\ß	\ÚÔµ-\ÈŠ³”\"¶',_binary '@\ÈÃ¡À\n_‰\íœ\ÞO>‰~&@4\ìÀ\'½<†ý\ÅMH','',0,'?'),(_binary '¥`Kæ˜‘iB\Ä	\è&¾¤','wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Shipping/ShippingModeBase.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½>\ê\ï\Õ#‹ö»ƒ§T/€\Ú',_binary '½\ê…O\ížý\ís\í—)\Ìú žŒ¬œ·ñšj&w‘¢ó','',0,'?'),(_binary '¥$n1\ä¡\ÙU\\\íx(\ì–','wp-includes/blocks/missing/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'óø½GN]Ü«x|\Í7•',_binary '<ktŠ³†”b·\Î\ÏÄ¸W\Ëõ©#ô\ÉX¹ùn\Õñ–BL¯','',0,'?'),(_binary '¥ß¥¥„ªS«ºýa·Á','wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-response.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€TdØ²ž`\èCpÕº`x',_binary '10C¤­q\'\×	9”P\"\éu\Äñ:sc[2™9-­S[=&Ó­','',0,'?'),(_binary '¥$_\î\à\ÃX\×Šla\Ò','wp-includes/js/jquery/ui/sortable.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Åƒ2‡¶½¹|Ÿ\Æ*µ—G™',_binary 'œ§¹\æE!1±\Ñ&]úÄŒ\ÇL¬¥\Î^þ½õqJ§D','',0,'?'),(_binary '¥+I6\ÏÀÐ·2\â\Ø\Â–','wp-content/themes/twentytwentytwo/parts/footer.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\àLþ ^0\Ûó…üó:\Æ',_binary '\ã1Jgöø¦\Ñn\Òk_\ÙdÁÿN[%Qº`ö\â|\Ä!Š(c2','',0,'?'),(_binary '¥:ª¤\î¾\"\'Y»DÚ„\å','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/heading-toolbar/heading-level-icon.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'š\ÖA\Ý\ä=f| TG\Â',_binary 'lB\ÖdŽ(‚9˜zzÀ\Ï¬ó¬¢‹´\Í\àqÙ©H•òQ','',0,'?'),(_binary '¥;d\num.œRÜ‰•~¡','wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0dš\ìeS\às\ÝT\åË¾Ú©«',_binary 'º¡~+/_./Ó–vòÀ^rû÷«t€\ÇT‡[‰–=•\ZôÀ','',0,'?'),(_binary '¥?‰cKl}§ög5á´°\Ì','wp-content/plugins/contact-form-7/includes/submission.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰¯*‡¶\à#\æ«=ù\Ô*u¡',_binary ';Fu:U-¾$½‡›]ò@\Î(½|­U.ž\ÑS™[\" ÷','',0,'?'),(_binary '¥J/\\«;L¶¸›2\Èó./','wp-content/themes/flatsome/inc/admin/customizer/img/blog-list.svg',0,_binary '°?\î\ZÿµÜ©ÿƒîŒ¸ ',_binary '°?\î\ZÿµÜ©ÿƒîŒ¸ ',_binary '\0…†c?G~\ÂP\É\â/ˆÈ”Cª4ÿ_ø›²E{€\Ó','',0,'?'),(_binary '¥R;lzO\é8m<3”Nie','wp-admin/user/freedoms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`™¾øUºø }\Îð­\n\áŒ',_binary '\ÑÎ¿zB+q¼¹\Â5Vl\ÎK¤l¡°kòZ/³ô|','',0,'?'),(_binary '¥ZŠH\ÐYfö<ðS\è0','wp-content/themes/flatsome/inc/admin/customizer/img/nav-icon-right.svg',0,_binary '¦ˆ\0~A®\ËoL­«)ðù',_binary '¦ˆ\0~A®\ËoL­«)ðù',_binary '\Ê\Îi`˜È¾\èKVJKpümŠ{,1÷L#\çM\ÏZn','',0,'?'),(_binary '¥`Á\æ>\ßX¾0–¤\äm/×²','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-customer-downloads-v1-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xš÷&ðdŒ\ç\\Z¸G±®',_binary '\á)\\\Ö\êþ|\é(E–ZµtU@\"¨\Þó\å\Ñcg“1\å­#Q\Z','',0,'?'),(_binary '¥`\é\æø/XÁB,øŽ½','wp-content/plugins/woocommerce/src/Internal/AssignDefaultCategory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³T\ê\Ö\É=\ÖVBý\ç\Èò',_binary 'Ç†œ‘\áæ»\Ì:,­\ÚYc\Æ\ëzœóX\ç9ne','',0,'?'),(_binary '¥afh=F¯\Õ\ÞT\Ò:þ“6¶','wp-admin/includes/class-ftp-sockets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\Õ\"Pž¼¦“e<úù3i',_binary '.\ZðŒDƒ\Ó-\Ý\Ë\ì†òûÃ y!÷¼\Æ\ÈÌ•l¼\Ú','',0,'?'),(_binary '¥ea•¬^Eô…:ù‘N\Ô','wp-content/themes/flatsome/inc/admin/customizer/img/category-style-masonry.svg',0,_binary 'Ñ°\ß\Å|;??‰	eO\0',_binary 'Ñ°\ß\Å|;??‰	eO\0',_binary '\ïF(\ÏR\Ï)\ï\ÝFô W\Ú/+\Z\Ñ\äT9sa\Ú\Ù\Þ\Æ\Ý','',0,'?'),(_binary '¥ik[!gWú}žv¸Èµ','wp-includes/blocks/image/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\í\Ê#nl­B¡ˆ´\ì Ì£\Z',_binary '« ³6š¹X\ÒM%\Îv\ë[‚6˜ ö§\0÷j³p\éWcN','',0,'?'),(_binary '¥jƒ7—\ê€:ÛŠ¼ud\"f','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b½K\"Å¤\íi[F14\Ó',_binary '\0j“}\âùÀ8Á²p\Ê£\î\Ðô™ ‰´óˆ\åW\åý\ëŠ','',0,'?'),(_binary '¥nÞ£Gq¤Ô¹I\ç8û\\','wp-content/plugins/ti-woocommerce-wishlist/integrations/wp-fastest-cache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DüL]R\Î!oñ©®”\0°',_binary '^Ã’R^<U\Õ?@{\0\ÒAË‹•J`­\Ä/µø¶(','',0,'?'),(_binary '¥uª\æ\rŒhL¦Q\å:\ÜºW','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-order-notes-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K9S\Ñ‚¶}\ÓF\Ë\ÇW',_binary '.ò³QC³¨\'Þ±{\"Cuk\â\åv\Ë\Å=šF\íw’° ß…a','',0,'?'),(_binary '¥\Ù\ëñ§;~Ó·R·>ž£','wp-includes/class.wp-scripts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/]\ç™\åXný¿w’Š\Æ',_binary 'b±\îI\Å0=º—²\ØP\ë	LóU[!‚PN\Ú ','',0,'?'),(_binary '¥ünvp¬e„\í\Æ\Ð\î\Ê}\è','wp-admin/js/customize-controls.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-¸b*A \Ç@-C\á\í}',_binary '1›Z:g€¿]oLK2°V.\ÉUF½·—;ª*\è˜k¦u','',0,'?'),(_binary '¥î©\ÞÈ¶C£ðO¶s¼4','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/fonts/font-awesome/fontawesome-webfont.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ\ænq*Š\îõ€ZF‰)2­',_binary '\áü&4\"\rQjX\ãmN\"\ã\É?P¾o”\Í\\°\Æõ?¹ùŒ','',0,'?'),(_binary '¥‘\×\ÝL*\0¹Šzh•O\Ò\nò','wp-content/plugins/yith-woocommerce-wishlist/assets/js/unminified/admin/yith-wcwl.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ïmÌƒ\Èžš?¼b\Ò=$¹',_binary '†+2§\á¦\Ôú=\r\ï·%{\ìý0?\Ò\ÍJÿ\ç‹9\Úb\Ä\å#','',0,'?'),(_binary '¥ž )¸Û¡\"%\Ãbi¸W©','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value/RuleValueList.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U7h°z\Ó;Á(Ë_',_binary '\Ä\Ø|Öš7p´b\Ã\ßk\Î!~‡¸¾K\Ô~ƒU\Í x)\Û','',0,'?'),(_binary '¥£¦Á®UB4\ê)Zj$ø@','wp-content/plugins/woocommerce/src/Admin/API/Reports/Stock/Controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u?:bIR!»\î\'†šº9@',_binary '82ûþ¼9\È\ã×¼HDF_³­K\æÇ†/,‹–…pr','',0,'?'),(_binary '¥®SzÒ–þm”(MùŒ','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/wp-color-picker-alpha/wp-color-picker-alpha.js',0,_binary '.\ÜX\æ\à2òg,Ìµ±ø',_binary '.\ÜX\æ\à2òg,Ìµ±ø',_binary '1ü%˜HÌ“\Å¼·\Çn›ó¶\ëœod[Š\ç','',0,'?'),(_binary '¥±\áD­TÇ¡“#\"\Ú1?\Ü','wp-includes/blocks/cover/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\é\ç,b\æ/a&šø3H',_binary '9Xô\È% \Û\åw\É-ÿBc™\nw\âv\Ç2¡\éõ:\n','',0,'?'),(_binary '¥´P‘\â”Z2™7\ÇMn¯','wp-includes/blocks/rss/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{]Ó©\Ü\ÝZ>Žï­’³\ë',_binary 'dóZ\ß3\Â\Üa€HÙ‘§2\Ï\'t—\É\ï\0Lþ\\[¬¾i!Q','',0,'?'),(_binary '¥¸¦P[jµ[÷\Éo/\ÛG£','wp-content/plugins/woocommerce/packages/action-scheduler/classes/migration/Controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÆZK¯fy²v¢=¯ñÒ£',_binary 'j¿‚\ìmôT€\rZ\Ô\à£\Õt1GH\ÜÏ–€=\nô\r¨','',0,'?'),(_binary '¥¾‡‡^\æ<\áa´6\ÌÀª','wp-content/themes/flatsome/inc/integrations/wc-composite-products/composite-products.js',0,_binary '¤\Ãó\ÅdDjþ‡\Ø\Z-\ÎL',_binary '¤\Ãó\ÅdDjþ‡\Ø\Z-\ÎL',_binary 'Å¸J&\ÔgŠ/\èSV\ÑB~—¸øƒ¾\áŠz\0½\Ã:ô','',0,'?'),(_binary '¥À#ap6=dh\\@q¢Á','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Exceptions/PartialOutOfStockException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%q[*’\â÷²¸§úõ',_binary 'ðq¦8\ÑZ\Z*\Ò\Êò§š\äQy%2*{\â2R«Àeq~','',0,'?'),(_binary '¥\Ã{F\ï7Ÿû\'²ŠnÚ†\Æ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/dropdown-selector/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rö>\æ‡}ñ¹B±#\\}u\ï',_binary '~ð+7ÿyÅ…±â¨…£\Ï\"¶c=\â\Õ\É;d\Ì\×(','',0,'?'),(_binary '¥\Ê\ä*«¥h^\í\Ü\Û¯\ï\ì','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat_const.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n<Tfw…\çYÀ_I¨ò\à',_binary 'eÁ¹\'#ù\\Š?ª»\ÚšO-±UòL]5\Ò6ˆð$','',0,'?'),(_binary '¥\ÑjM™õ\éû¸\æ¾Ú¶','wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-tm-extra-product-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\áI \ã\æ_<\Ê335\ä\Ü',_binary '\ÊÀž]{yX%O4(\ÑO\ÓH÷\Ú#8\Íð\Ü&¹Oøivo','',0,'?'),(_binary '¥\Ô \í\\¹\ÞÂ…”Tn€‘]','wp-includes/Requests/IDNAEncoder.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ùy\éG\Ã\ß\Ü}n(¥Y\Ï\ë',_binary '/À¿<±EÿŸ=C\Ëû\ì$’xÿ“BHxšƒJ\Ò`Jw','',0,'?'),(_binary '¥\×~\'GGv\Ï\Ûd×Œ¼+:e','wp-content/plugins/woocommerce-currency-switcher/css/options.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\ÂHTªÙ˜¸©v\á\rt‘\r',_binary '.ðv£Àg.–\ï¬\í7AÿýœS=òM4\Ûc4m‘.','',0,'?'),(_binary '¥ò˜B\\u}ŽLô,‚…ÿ','wp-includes/css/dist/block-directory/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹üûiL·–\Í\'eÀ¡¾$‘',_binary '\Úu®@úšüÒ¤~¡_\ÉöƒÇ‰•.\å\"hŸ\à\ãb“\ê\æ	','',0,'?'),(_binary '¥ô^ŸdKø£˜A\á»øô','wp-content/plugins/woocommerce/src/Admin/API/CustomAttributeTraits.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\"£‘\Ú\Ëfuÿ\ç\0',_binary 'sš:?õ”\'\ä-TRGÕ¢Ø»Ý „\èB\Ã“|3','',0,'?'),(_binary '¥ö“:»[ùfóö\ÒKZ?ø','wp-content/themes/twentytwentyone/assets/sass/06-components/comments.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(1¡¡ŒP\n&\á\â_m',_binary 'r\ÑÅƒM\n®.±HÀ˜\ìD³3wm›yb†\Ð\Ä','',0,'?'),(_binary '¥÷\à(_\ÙJóˆD~\Í\Õ\Õ','wp-content/themes/twentynineteen/inc/block-patterns.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'sšú~µòmË’…ÁE\Ì\Õ',_binary '.\Þ(l)„p8\ÖR·\Ðcš\ß6p¼˜,­ù\ÈL¬X','',0,'?'),(_binary '¥ùº«†Æ¥,=\Ôë£º\â”','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/RealTimeOrderAlerts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ò\0;šn©WMO=~QØ¦',_binary '\Ýs/9…™\Ü\Ò³|·|\Ò%­A„\\öwWW°‡\ål	','',0,'?'),(_binary '¦ˆºŸ´ø¥R}|\î/','wp-content/themes/flatsome/inc/classes/class-flatsome-registration.php',0,_binary '¯c>%Ý»\Ø\ÑK\Äô¢Ip\Å',_binary '¯c>%Ý»\Ø\ÑK\Äô¢Ip\Å',_binary '¹Å¶”‰\în<\Z\ØTsú\Ø£ô¥1¶?¤LÀ\0)\Ä\Ã|','',0,'?'),(_binary '¦\í×µ¤‰œ*\äô\ÄN','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ç ¾ùÐŒ~þ…^´F',_binary '‡\Û\î\ê\Þ\È(o8@\Ì.z¦Û¹	\n!qœ66bp}\Ê','',0,'?'),(_binary '¦?\Û&€[·Û†u¤,\èe','wp-content/plugins/woocommerce/templates/order/form-tracking.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K ,\Ý$\'td+\Ö5¨¦G',_binary '3\Õ\'µ%Î›8YMžÐ›ï’“;°\Û‘>{:J\à\ì9\È(','',0,'?'),(_binary '¦HUñzG\åc$	0[›½','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘U-07\ÜÀ\ì\n}m•\\^',_binary 'd¥Taš\ç\Îß°`+’>/!¶!ú\Û^bg$\Ý\n','',0,'?'),(_binary '¦\Û\ZŒ3\ÕHš{\ïÇ²‚','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InvalidInputException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\Ü ž´¥Ï¬\Êþn+£n',_binary '^Áq\ÜN¤\×\è\×Ð¢\Þƒ&yN¢~\'S//>}ò—p','',0,'?'),(_binary '¦\ÆiÒ»·þ\ì\ÈõV','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/empty-mini-cart-contents-block/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£\Ä,\n-<rcqmöÀ\Þ',_binary '†SQnQbJh\Ê+¦\r¢kñŠz\âþ\ä±\\Œ$mñ','',0,'?'),(_binary '¦tÙx\Õ8\Âû3)§\Ô','wp-content/plugins/ti-woocommerce-wishlist/assets/img/icon_menu@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ùW/Ïš>£[2\È(†6¥i`',_binary 'b¢\×ót´Ÿž\éø4\Þ>?~¨¿þ•«J0ª\ìhIa-','',0,'?'),(_binary '¦t.9\Ôca\Ô\É\àû}Í€y','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-block/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡`¦ºu\ï2»ºsò\Åö]\ß',_binary ']5¤4™’e¢÷º\'Oj4¨óþŠÕ€h¥(^ly…\×G(','',0,'?'),(_binary '¦\"­QƒOO±ÀP¤\ã b','wp-includes/blocks/group/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>)…eþü[\Úh:;*>',_binary '6‰!I{™û\çÔ¡†™~\ÑcH€,¦/ÀJHd','',0,'?'),(_binary '¦#:Áö\ÌSk«U¹‚\â{À','wp-content/plugins/wordfence/modules/login-security/classes/model/view.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*Á:\è?‘\îl]¼¶ñ\çu',_binary '2P\æ\Öíƒš§\Ð=w=‰7Ar§\nýfQú\Â~,·¯B','',0,'?'),(_binary '¦$zq%¶š„¤l3Ž²1','wp-content/themes/flatsome/inc/admin/customizer/img/category-featured-title.svg',0,_binary '*V8“¢-H	%?×¶M\n˜',_binary '*V8“¢-H	%?×¶M\n˜',_binary ':Ÿ\ÈÒ“w)K\ÕQ—.y J2\'\Úrô+¨O–@J%þ]\ä','',0,'?'),(_binary '¦(¼|n\ä•Á´sARF\ä+','wp-includes/js/crop/marqueeHoriz.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŒÌ®œºý¸;\æ\ä\ÔLo\n',_binary '|\Þ\Û\ÍS\âùe©“|.\Ù‘/\éQ¹Yˆ\àWª}(','',0,'?'),(_binary '¦/3Š‹§®R<\0,È¹µ\Ï','wp-content/themes/flatsome/inc/admin/customizer/img/category-style-grid.svg',0,_binary 'Y\é¹g@\È#ró\Ñ-©ul5‘',_binary 'Y\é¹g@\È#ró\Ñ-©ul5‘',_binary '( ¶™g\r¼›	.O„‡\Õ#*k\Õ\Û[\Öo\ÎFõ_?ø','',0,'?'),(_binary '¦6\éÏª\Òk¥\×Š˜2\0','wp-content/themes/flatsome/inc/builder/shortcodes/search.php',0,_binary '<5ù}Jþ¹Ó—ÿÛ¬\é',_binary '<5ù}Jþ¹Ó—ÿÛ¬\é',_binary 'J‹\ãø„)kc\Úµ\î‡[#\ÑRkúr›a°+aIH','',0,'?'),(_binary '¦8}š\Æ*oã‚ˆ·\ÄJ6ž','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/summary/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p8Ü—š/§¦\Öð\åµ\î&;',_binary ']\èö{tO\ày\ÍZ?\Ñ\ß\àaý\ÕWÑˆ\Û*‡v\à','',0,'?'),(_binary '¦C¯(‹);?bƒB4Ûš','wp-content/plugins/woocommerce-multilingual/res/js/prices.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸öShò%\Õ-bóMî«Ÿ\0',_binary 'uX6Q.j˜y\ç©U‚Í£É„A^¹òð$¬`ôp$ö³','',0,'?'),(_binary '¦Eö:\äoN\ìÍƒý6l\n','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/form-step/attributes.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾I—5\é.„†=ex¯ ¡‹',_binary 'J+Jü™ûL·ô	*Oü6TSŽ9\Ä&=¦Kñª\ÑQ;','',0,'?'),(_binary '¦FK/3e;±Õ«´´;Î“','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å­KK—yñÞ«pr\Ä]',_binary '\Z\Îñ\n„‡¹=I#Zˆ\\‘¥4„lÖ™\Äµ¤\ïuó°®\å`','',0,'?'),(_binary '¦NF¨m\É\Øt\â`$\à…','wp-content/plugins/woocommerce/assets/js/frontend/checkout.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SªZl }¹\Õ\áxý*¯¨õ°',_binary '+)z¾¨…O\ë©À\ÉÊƒW\ìx©`d,\Üùû‚÷ºi\ì','',0,'?'),(_binary '¦Q\ÒaþŠ©3¯ˆ\'Ÿ','wp-content/plugins/woocommerce-multilingual/compatibility/res/css/wcml-product-addons.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥)`a°’\í\Æz0ÁY&õò®',_binary 'vue\Ú\å[cPC\"ùTº¦°%ôu•NeM;Xöš¥}¢#','',0,'?'),(_binary '¦[\'\é/£\Óþ¢; †”','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305/State.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'š®yP58\Ï\ÜÆ¢•µ–\Û',_binary '¤\Ñz3qS…\ÕòT=\åäžŒHL<Y5A¡\ä€#H','',0,'?'),(_binary '¦c:Qk2\Ä	 óŒ6¼\ç','wp-includes/blocks/columns/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ó¨¥¡ßµùO×™­þL±\Ì',_binary '¨,¿\Í>mQÁòIX’›F?û\ï1ò\è\Ï8€C¨—\Ø\Ø','',0,'?'),(_binary '¦m3_§ñ‹•\Çq\ÄHA\É','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/country-input/shipping-country-input.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸ŒvBxž\â_¦y¥ó@ ',_binary '¦\n®C	\ï\Ú\\ Ak\rA_r\"“¹4.3\ÂgC3¢','',0,'?'),(_binary '¦yPø¿,\ÜüXHiÀ¾Ü¥','wp-content/themes/flatsome/inc/builder/shortcodes/templates/row.html',0,_binary 'h¥–ò\Ï{\à\Z»¦¹¾',_binary 'h¥–ò\Ï{\à\Z»¦¹¾',_binary 'Ô\Îùx8†X0´O\Ûp\rì½¢®\Ñ\á«Ù”\ê²ö©úr\Û','',0,'?'),(_binary '¦†\ï-:)\í\àN6øª','wp-content/plugins/woocommerce/includes/admin/importers/class-wc-tax-rate-importer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#ºp(™¹!£™¢ü5\á',_binary '#\Ö$Á)†4”\ï‰mvid\Ç\Â\Í÷WÀ¦z\×¯HY','',0,'?'),(_binary '¦-Oq\àÎ¥2Ý²*ø\Õ\Ú','wp-content/plugins/woocommerce/includes/admin/plugin-updates/class-wc-updates-screen-updates.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ç†þµ«d[\á»ñBz^×ˆ',_binary 'Ë²Ž\ÌWó©ný_IaB@%BbSpÿ\Æè¨‚AsN\Ô\ZgX','',0,'?'),(_binary '¦’¯üž:[&bú[®hY©¸','wp-includes/images/smilies/icon_razz.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9[\Þw³šD³AM­A\Ú',_binary ';§§òP\Ü1]f\èUE»;`QÚ®þ\neôZ\0@4¿aA\ç','',0,'?'),(_binary '¦—‰Ä´I¸—k@e¹gQ','wp-content/plugins/woocommerce-multilingual/res/css/otgs-ico.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…oòË¡)rNr?\Ï\î¬\é}‘',_binary 'fVa\Ê\èú©EFirB™\0ž¤#\×&\ÓR£I!+0tZÏ†?','',0,'?'),(_binary '¦¢	øô	Rd–ü\Å\àúTw','wp-content/themes/flatsome/assets/img/payment-icons/icon-visaelectron.svg.php',0,_binary 'úþ8§!\Îþb¢\Â',_binary 'úþ8§!\Îþb¢\Â',_binary '	\ÔËµ¢—5aº#y¯œúý¤*eˆ=µœg¬[*Œ?‚','',0,'?'),(_binary '¦­\æ\é	ûb\Ã;w<F½‡ž','wp-content/themes/flatsome/inc/builder/shortcodes/templates/tabgroup.html',0,_binary '>|AV0\årÊ‹\Z*\nÿe3\í',_binary '>|AV0\årÊ‹\Z*\nÿe3\í',_binary 'V\0 üŒ+\nÝ£Z\Üo\\&\ï4£C´Ú°q^ð¤i«Œ','',0,'?'),(_binary '¦¹O`\Þõ±\0|ÚŽ\ß3ˆ','wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-ru_RU.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1´c¯¤%#\É\Þ/‹‘\â¼\Ê',_binary '¿Y%#h­\ÓN÷¬\Ó6\î’}\Î=«õ\Z$(\ÈTtm\Ç\Ê4','',0,'?'),(_binary '¦¹ñˆx2ÿ_.\ë~$\â)','wp-includes/js/dist/core-data.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~(\á‹\ëa´ºšnØ’Žn\ä',_binary '4c´®)\å4Nd½\Ë\Ä+°ü-\Ù\0ºÿG\Ê\"´d±¤\Ã','',0,'?'),(_binary '¦¼¡	\Ç\0FÎ›Å‡€iýx','wp-content/plugins/ti-woocommerce-wishlist/views/message.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r#\ØZ¢óV¶È†iF¶D',_binary '%f.’±\êñx\Õ\áò`@\ÈÁ# [-¿I™0Ÿ\é\ä¼]ÿ','',0,'?'),(_binary '¦Á\0a”õ>d$p°\æ\Ï\Þ\Ô','wp-content/plugins/woocommerce/includes/class-wc-download-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0k–)nT5vÿÏ¬±$„…',_binary '‡°”\ÐV\àHË¤\ÝTƒ\È\ÚY¿\ß\Ä_¹Ó¤`}\rŽÎ©ø','',0,'?'),(_binary '¦\Ãø\ä?)\\Á\ÖS\Z”~ƒ','wp-content/plugins/woocommerce-multilingual/inc/installer-loader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qðþ—f\ç\ç\ê5°˜ô5W',_binary 'žCŸ`Xz3m·•S…fÖ\èEº\ØjK\Ë2¸†É&õ\"9','',0,'?'),(_binary '¦Ê£Frf÷ˆ%\àLI\Z','wp-content/themes/flatsome/woocommerce/single-product/photoswipe.php',0,_binary 'Žk £øÁ’|î‘\Ø\Äy',_binary 'Žk £øÁ’|î‘\Ø\Äy',_binary '\Í\íX›m¬DYtv¶Ü°-„\Ý\áV®À\Âú','',0,'?'),(_binary '¦\à$\ÅtÕ¦}—	\ÂT','wp-includes/blocks/code/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Í\éû”¢¯\Ö(†ê¶²zhÉ¶',_binary ' ¬©\Å6¸r3–ˆ\èô§C9a\áÙ’\Ð~È¾«:¯','',0,'?'),(_binary '¦\à¼/Š\íh!_^\\p\Úa`Œ','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-adventure-tours.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b«›cÿž\àž²KŠ`³X',_binary '5jF¡<+Àòró‘Mš\Â\Ô;æ¿šõT§p2¼–g†M','',0,'?'),(_binary '¦á½ˆ\Ë\ÛŽ\Ø5f?žhk','wp-includes/widgets/class-wp-widget-media-audio.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\ÐPŽŠ/:\ç£Á†­#’A',_binary 'ˆ\ÎP’•\ê†!ð´´¨jzôF#õŒ\ß”\ìdŒÄšMP','',0,'?'),(_binary '¦\ä˜-\\Ü°rœ qKC#b','wp-content/themes/flatsome/template-parts/header/header-top.php',0,_binary 'EûN‰\æò€I*¿—#“',_binary 'EûN‰\æò€I*¿—#“',_binary ':\Å\ßØŽ!–…nvõ;¹-30¼¹\à¿\Äö±‰53 ’','',0,'?'),(_binary '¦ô\Ý.‚{zé¹®Y5\à\í\î','wp-content/plugins/woocommerce/assets/js/frontend/geolocation.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'æ˜˜ºHp\í\ã\\l\àOh\Ç\ì',_binary '³¶«ò¦ŽgÀ€DT([H·–òs÷LÒ\rV§.¦cz','',0,'?'),(_binary '¦ü­ó8`9ù\×?Bb“Ð‘','wp-includes/js/jquery/ui/effect-puff.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œ‘M“}®¯O\n\ÓòŠ—«¶',_binary '›i–3\É\Z^r¢ Æ¢\ï$/Á\ê’ûö|¾tšƒ¯¯2\Ï','',0,'?'),(_binary '¦ÿ¤\ìS Mº2}‹s®[\ä','wp-content/plugins/ti-woocommerce-wishlist/includes/deprecated/actions.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Û\î\Ó\ç\ßÆº®û`{|>|>',_binary 'ûDP\Ðz95ü•‹µ*[$v7\îY«\ÄÅ ¢_€ˆ\âH','',0,'?'),(_binary '§¥)u£ˆ^\ëd\Ø(','wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Én±‡‘\×’\Æf\àUú´\Û',_binary 'Š6°YMuxAq;¤ô‚oG{Å¦­ï‡®zÃ–˜2z','',0,'?'),(_binary '§Xr0ór\ËlDªP&s','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/colorbox.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þIo8\ï\ïšóR[1Ë¡-',_binary '\\AÁò\Ö\Ü\Z\Òþ\ç\ÉH5„õŸ\è(·\å®Yð]””7ˆÃ¾','',0,'?'),(_binary '§\n\È\à”\à \ä\é”/Y','wp-includes/js/dist/data-controls.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1)®6^\êI4Q¥yÌ˜¡•',_binary 'j\éŒh²¾½7\Çrl\îF‹¨ÿ_yYZu\ìY´\Ãm»¥”','',0,'?'),(_binary '§c¡Kµ\ßÔ€Ž[®¼m¦\È','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/order-summary-shipping--checkout-blocks/order-summary-shipping-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–_D·pÇ­œ=#&\êÙ‰V',_binary 'B\r„&q Uš\ïar)¥›ùr‘û´^ \ÂüF;y','',0,'?'),(_binary '§v\ß\é\Ã4_¢Ì˜–LÏ˜¸','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/instances/class-otgs-installer-instances.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ù`°Õ§\ÙC¼±}–Ä‹T',_binary '\\a\ÙiÃ°\Ñ\\ \Í\Û\ê*Aþ³ûy\ÕA;{]\Å,w\ÜþYN','',0,'?'),(_binary '§+F—4\Þ\núõq¹±¤\"]','wp-includes/blocks/table/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ï|\ã>÷\áÂ¾7št¼U',_binary 'U\ÓPS!½¥	\\\ê\Öz\Zª\ÄLruw\ÃU‘‰ÿ¢µ \á†','',0,'?'),(_binary '§.eþŠv:’\Óû¿w','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/cart/test/use-store-cart.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'öQF\Æô³±º’$ \Õ\Æœ',_binary 'p+—…\Ùt STÛ°´c\îÖŒNõøe\'vÏ°B\Ö)¥W','',0,'?'),(_binary '§/‡„D´+\ËC\ßjŠŠ‘','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-price/test/__snapshots__/index.js.snap',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸–¨Í¯,À€‚¯l`l6',_binary '=\Ãø\r\Ó\ßl%\ë¾\Ò\ê0fµ\ZY\n\ÐóµuÌ»†±2','',0,'?'),(_binary '§35RA&(M™\â\é»ò…ý','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/payment-methods/use-payment-method-registration.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'À.KóX\Ú\n5@\ÖmW$\Þ/',_binary 'ó.\Ù|…4wBÏŸ¸ù½²œø–St‘\Ä,<\×~r·','',0,'?'),(_binary '§8št¶ø?§¿Uz³','wp-content/themes/flatsome/inc/builder/core/shortcodes/_root.php',0,_binary '-\Z±kõû`¸\ÎFVO\ä*',_binary '-\Z±kõû`¸\ÎFVO\ä*',_binary '²Áe\ël_±¯üF¬x\ZXsX\æF·üý\ä\ÔpÌö”','',0,'?'),(_binary '§a\Ó.\Üj@\å\î^«±','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/psalm-above-3.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|<Qq\Ã\Ö)@òMŸ‰J\é¹',_binary '/ôjo\ßz\ïy\îÁóù@“Šz%9·&F%ñªýª[','',0,'?'),(_binary '§c\ã†ÌŽ´ˆ$\n\'@›\rò\è','wp-admin/setup-config.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÊRö\ØW\ZÜ¢$÷ü*\Ñ',_binary '‚œ›\ÛðCG»\ê9Ov\×\ÂÞ¹\äJóðü‚\"7MDSŠ','',0,'?'),(_binary '§k|\â\Í\ãø\är˜Ÿš61$M','wp-content/plugins/ti-woocommerce-wishlist/assets/img/wizard_setup@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„þŒ‚ú²·u¥ºŒ\ß',_binary 'L\ß!	W\\<\ä#M¤úM5& \èð<e=Àøº\Ö]<','',0,'?'),(_binary '§mÖ™7š,\Ð}¶ñov','wp-includes/css/dist/block-library/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆP0™^òÜ€\ÉhôÁ\Æ',_binary '¬|R²_fP+¯j.´ñ\n>(³HJ|_%{ŒP«\n®‹ž','',0,'?'),(_binary '§y‡ZZn‹µQ¥x”Æ‚¢','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/payment-method-interface.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hV\Ãñ	“#û\ÞJD\ãù',_binary 'œw=û€Á3À¨\',~sMª\Í\Ç^!@\Ððž%:­û¹–','',0,'?'),(_binary '§{\ìù	¼o«XµVR\Û?‹','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-list/container.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼³x=œS:\Ç¸lñ!',_binary '\Ã\Ó\ÂH7E¦ƒŸ±»\Û\ÊÈ \È\0\Âò`‚û°WkL','',0,'?'),(_binary '§~™\êÉ„1y„ü(vY\à\Ê\ä','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-webhooks-v1-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ýi.Eõ\ãTö>&Y\ÙR',_binary '£ø\êi\r\àr‚JðFÒ’&_øU]Ð­(8§v~gp\ä§\Æ','',0,'?'),(_binary '§\×@f	¸¸iz3}\Ã-\Èy','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/maestro.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':ò\ÐýJ^\×{:ð*pPR\"',_binary 'k¸RTP€	B™?\ÏTÅ£ d=\ç\ì\'5\Ýõ¶Zi','',0,'?'),(_binary '§\ßV€³t¿Sù-\Þº','wp-content/plugins/wordfence/views/scanner/issue-file.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KW?~´ \æ\rc\æ\ëH',_binary 'iº%>\Ë\\6‘L¾\Âÿ\Ã{8—¤‡‰÷‡y\ÖZ¼AH\Ý','',0,'?'),(_binary '§‘°H\03\ÊÛ¡®E‘p€$$','wp-content/themes/twentytwenty/template-parts/navigation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',¦h;$\ëwq‡¶«í«ø',_binary '\Þ\ÖL»ú‘q‘ù\Ñ!–w”¢\ê\ÔK‰H>]x\Z\Å\ê\Ð\0','',0,'?'),(_binary '§”¬ƒ\Î\ë·üº\Ýoù$\â)','wp-content/themes/flatsome/inc/admin/kirki/class-kirki-autoload.php',0,_binary '\Â]b¿\å›~U\â\Ð.\Öó\×l',_binary '\Â]b¿\å›~U\â\Ð.\Öó\×l',_binary '\n\n†ªf.¤½×±;\ÍÔ¿\×Å\ëó\èS4|—\Þ\ï Š','',0,'?'),(_binary '§•¬Œ¹\è‹OiuD}j^','wp-content/plugins/woocommerce/assets/images/select2x2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zÚŒ\ê\ÒI”E\Îl@deX4z',_binary '§ (»iÎœÁ`\Ò-ÇºÑ©a„\ê\'\ß$\ß]Ý‘\r/qrz ','',0,'?'),(_binary '§—\ÅS\Ò€8:9¢\Zf\ï','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-product-categories-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°\0Ê¹óº8\àZð\á\Ò\ë',_binary '\Ëc“\Z£º†‘\×i%ªeµþb\Õ+/]¼“•q','',0,'?'),(_binary '§œŸJ1€«M\ßF°†<þ','wp-admin/js/tags-box.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JAíœª‹¤M®Y\è~= \âu',_binary 'ø\"	0º‡¢\ntòM\Ð\"\Ö\ÛBµa\íXü-J','',0,'?'),(_binary '§¡q<‹|ö·›\ÜW\Í-','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-payment-block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ\ÏñÖ¨ù\ZP\Ó.€™ª(\ë',_binary '\Ä\à\Ê9\Þ\'\Ú¯v¥ý@ŽNŸ\Ë\'{U‚Ÿ1!w¾\×+h“Ÿ','',0,'?'),(_binary '§¢H¹;¢#¬¶­-­ÀÆ·','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-products.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OBJ\Æ¨€«BÅœµø',_binary 'lApf5K4r\Â=Ö–‡>\04ŒõA·‚È\Ê2ND‹ \é','',0,'?'),(_binary '§¥‡ˆvòG\é\éù\ÂöiJ‘','wp-content/themes/flatsome/assets/js/builder/core/content.asset.php',0,_binary '‡6¬¾\Ð\n©w&Ø›=^z',_binary '‡6¬¾\Ð\n©w&Ø›=^z',_binary 'FŽ\ê\\L\Ð\Ì\ç8[§º›þi.n)ým¼.¦«\"®7õ','',0,'?'),(_binary '§¨°\Û÷ŽÆ„º²±NB×­','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-pedantic.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ê@8\Çµ¼s¿·A\ç\å',_binary 'bó#Œx\ì\íh¥F4û_ öDeŽ¹\ÝqeD\å\É','',0,'?'),(_binary '§±v˜=bÍ¯*e­_™òö','wp-content/plugins/woocommerce/src/Internal/Admin/SettingsNavigationFeature.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú\á®B\È„a,¬sý4',_binary 'V¨h)\ÝfC~¥ø,S+£+Á©ñl\Ñ}úFOö¿Š5’\ï','',0,'?'),(_binary '§½­ñ¡½6\\FdUýµ\Éx¡','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-installer-theme.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æzL\Ü\rqø [ò‹,ð`œ',_binary ':¿A”´¹Pm­]ñ”/¼M&\èú€Di”!\è±;‹\ïV','',0,'?'),(_binary '§\Æ‘< S†Y¬-—hTF','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-nl_NL.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡%\Z\Ít!\èa@lkµÀ‡\ß',_binary '•e»¾º>\È€Kj\ÖT\Ø^g7¢yJ\êƒ\á‚D¼òxmn','',0,'?'),(_binary '§ÆŠœù!¨\î\Ã\Åü¼1ûM','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/class-container.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xBñ\é\ÊÃƒQ\"}\Í5úü€',_binary '\'®\é\'\à\re¨\Òö˜½8\"µŽrMªqwa^¬ô¡','',0,'?'),(_binary '§\Ìc\á-,RŽqee\\\Þ','wp-includes/blocks/group/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S}økžú,\'Š½ô%övM',_binary '‡<\Öôj-€±÷_4³\ë\äöe&µˆ\Ò˜µ-Ú±\Ò','',0,'?'),(_binary '§\Ó’?ÚŸ£E¿\Î¶$PF','wp-includes/pomo/translations.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’ÿ¦÷\ç\Â\Åf˜e\Ú8O+',_binary '\êrg½ÞšÂ®S 9/2=˜a¥]O\ïEÇŠ\Å[<','',0,'?'),(_binary '§\è\áú°6‘bg·>_ª','wp-includes/images/wlw/wp-watermark.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';š‡uMmÜ­D|‰wŽ“\ÅD',_binary '½Sý\ËnRÀ\'÷¢X§^¤ÿ\äkhûº·\ÕÉ‘\Ði\æ7´','',0,'?'),(_binary '§ñ—\ÉØ¥ûy\ÙUJ[\à','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/previews/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô?#mÁ¶5ƒ;•6Ïš\â',_binary '\â™8\çmðóD,±EÁÙ¥*»3\êbLW\ßÇ½o‡','',0,'?'),(_binary '§ø\\;,ÓªRpk,*üTh','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-settings.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à‘ ]ÀX2	Á\é\Ç\ÎVI\ÅP',_binary ':®9\Ì\í%„YAÁUÎ˜™\Þs¯Xì¶±Ï£$y\Ä>','',0,'?'),(_binary '§ü­…Ž\Î8«j‡þc}‹','wp-includes/blocks/rss/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\Ô\íý8^/Š¾4\Ú?{À',_binary '#¶t\Ñ#\åÏ½gß†>l8þ‡þžZ,hTš4~¹E|','',0,'?'),(_binary '§þz5	BEô>š¶h\\S^','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-fr_FR.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n¯§·[0¿ŠB0ðÈœÁ',_binary 'RœPX \í\'Fµ\æFŽ\ÚVp\"“žŸ¬n=\åqpõ','',0,'?'),(_binary '¨h¹x\×*(½&¾\ë\ÃkO’','wp-content/plugins/wordfence/views/blocking/country-block-map.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡uœÁyGF¡,{–ŒXÁz',_binary '%Ôœ5–;º”û§öx“ˆ^)Ÿ‹¨G(…\ào','',0,'?'),(_binary '¨°\ÌœÀ\'K…zŽfŒ\å','wp-includes/customize/class-wp-customize-header-image-setting.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '71†gI¯ÏH«\0®	5',_binary 'Œ>´\ê‘%J\Ö3°2$e ¤D\è&]:,•9-°','',0,'?'),(_binary '¨\í5#Á\"8­%`}','wp-content/wflogs/template.php',0,_binary 'lC¤db\ï.§Ë´\ëƒv',_binary 'lC¤db\ï.§Ë´\ëƒv',_binary 'Z][W‹Pš}\Ã,ûþ¿–žƒ7*öq\ä\á\n\ã\æÆ‘¡\á','',0,'?'),(_binary '¨	Þ³Jw\É\ëˆÊ½\ZP','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\îw8þ\Ê\Ù`\çw•)˜{',_binary '²e\ãjw?´\Ú\ÎH\rnÓ‹”Š^³8vû+KÛŽ¦¤þ','',0,'?'),(_binary '¨	ß±\Å\Ê\ìA\Â^>Œ¨W','wp-content/themes/flatsome/inc/builder/shortcodes/blog_posts.php',0,_binary 'óIQŸóÃµ,k<ƒ\æµ!',_binary 'óIQŸóÃµ,k<ƒ\æµ!',_binary 'Y~H\n,,\Äqªõ.9óô`\Íþb\â#kÁzŽÁ*~€','',0,'?'),(_binary '¨\r²f \æh\Ï8°!','wp-includes/Requests/Exception/HTTP/500.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I(vrMm\Ðû(\Þc\0{  \n',_binary 'FO—¡ÿV3\"øªõœ\ï\Ô¼£ª!k\ÐPò','',0,'?'),(_binary '¨‘¢v9…b\Ô$‘L','wp-includes/random_compat/error_polyfill.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X:,”t]7¯=ÁüQ¢\áE',_binary '\ç,ž»t\0_g’X%4.\à¦tPš]\È>ŽJT4','',0,'?'),(_binary '¨rˆHøn÷”l„\Ã','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/yith-icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ô›´–K\Ím>¸\"½Á–„',_binary '\à-·\é3Lµ\ÑM\È\n\å\è\ïœrÏŽ	öò÷lõý2™}','',0,'?'),(_binary '¨\ZfŽ)ü)¦š…kI\Z²u—','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/image/supports.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \r€\0EÀE>%TupÖ‚',_binary '\ìÛ‘/(LRyúž_ Ëœ\á|\É\nÁ?4a•ún2õ÷µ','',0,'?'),(_binary '¨L‘¨À+ý‘ÿ6;û','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sku/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ú&(\Â#\ßik7ÿ%Uq',_binary 'k\è\îv¬AQ¬Y òt]]˜öoo)|\"ú)üUw\ÂŸó','',0,'?'),(_binary '¨uˆ>‰‹Â—IX¤','wp-content/plugins/woocommerce/legacy/js/frontend/credit-card-form.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç\Ú~w†«h›%\\§',_binary 'Dõôð—~´	mL9l<þ;~ýbp9µFŠM\ç\å£tVl‘','',0,'?'),(_binary '¨!Y;°«I-©­«u','wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Hú\Õ\ïe\áùÐ­ª¥õÛ­F',_binary ' µý^™\Þ67\Ý+\Ík®`\ÎÛ”ˆ]Bó\Å\ÉG¼¿p','',0,'?'),(_binary '¨#8ñ`übSm˜:4\r…\Í\à','wp-content/plugins/woocommerce/includes/admin/settings/views/settings-tax.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%j8G”˜V‡.ŒQxA·\Ñ',_binary 'Õ¼ú½T\ãú\Þ\Î\ÐMŒÁ¼\ë³\Æ0D«xx\æÚ•R','',0,'?'),(_binary '¨#\×?€™\ïGc	Â¯l1e','wp-includes/class-wp-theme.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é\ì€	)§\ç\ÚBš„¡h',_binary '²\Äs&†Ÿ\ßjñ\ì»ÀB1úB\Æ\å½ýU¼´AŠ\ÔÌ¹','',0,'?'),(_binary '¨&\Åšº›Ë†~KÄ¼U','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/instagram_feed.svg',0,_binary '\ì*v‘¦\Ú<9\ï¤\Ûrð',_binary '\ì*v‘¦\Ú<9\ï¤\Ûrð',_binary 'Äº±aN\à¾\í7òœú_.y©b¿3NŸm‡\ë,–º§ö','',0,'?'),(_binary '¨7¾ò_üOI;±M–g\Í','wp-content/plugins/woocommerce/templates/checkout/form-shipping.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¶VÒ…\\\íUmý\'FA',_binary 'pÁ¤…‡Ž.¡ž©#šyHtjr\ëMIT\åw¸\Ó\ß-VŸ','',0,'?'),(_binary '¨F£ÿ\ì=×—ñ‘e\Û\'†³','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Utilities/QuantityLimits.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®ËŒS\ÒY/=Y¨<<\Z˜',_binary '}¯9\Ì \ÙfpÀœ\ßL„B`y\ás*£F±,J$','',0,'?'),(_binary '¨HŠ£õÁœPw\àð%8–À','wp-includes/images/smilies/icon_sad.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÞIx\áo\Ô\ÓTMz\æ\íD-',_binary '\Ùb5Àyh¬9€\ä\ã} ©\ëo\ÞôW\íIƒò°n§n‘','',0,'?'),(_binary '¨J0\ÆÀ8\âRš\è&\Úû\'T','wp-content/plugins/woocommerce/assets/css/jquery-ui/jquery-ui.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ga±zD¾jM™	l¸ý\Ü\ç',_binary '‘\ïöZ]GMœ\í1yH†QP<Ýº˜(×˜\"õ\ß\Ï\Ò\×hÅ¡»','',0,'?'),(_binary '¨Q49\ãóLz\ÓJµ','wp-content/plugins/wordfence/lib/wfUtils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ï_6ˆ\à,¿üýø)´´Á~',_binary ' Gd…¹[˜’e¶†`\ëV(i=Rd\éAG;\Ø\0@­','',0,'?'),(_binary '¨R\ÉØ·¼V_%#«¬©LL\í','wp-content/plugins/woocommerce/includes/class-wc-order-query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.`\æ%\ÏõÊ´»û\äÁ£',_binary '\èˆÀ—sLðôu(¾z\Ó]\ë\"¨&B”\Û\Ó\r\á\Ã\n‡¿	','',0,'?'),(_binary '¨S~ö\á=}%® –^\ã','wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-b.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9È¹s´£ÄƒñòÅ¨X‘',_binary '\'huÍ¹µD€\à\Z\0üõ\Å\Ë\Å\æT\Úø‘Ù¹?Q','',0,'?'),(_binary '¨XXïŽ“*\Î\á!2\Ö~\Å','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/File.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ªeb:lx-\Ô<¿\Ýs99`',_binary '\ÃÀ,¬\Ã{ m˜™Z…‰BV\ë«TL±;*´\î\Î<','',0,'?'),(_binary '¨[\Ân\ÅG{\Ãù\'¾¢q:›','wp-includes/ms-deprecated.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ê‡‡•\Ó\ßK«£MÃ½',_binary '™\Ð{´\"€z®GW1É“DÄŸ\ÈU\àÍô[\å\á\ì·','',0,'?'),(_binary '¨\\\Çýhû RŸX\Õ<ºC®','wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›\ëß…—w@L‹\åO\êÁR',_binary '\àð«´EF‘j©„\×r¸Ä;s³\ìÎ€.f:\Ö\áÏ¤ F','',0,'?'),(_binary '¨c–®‹\É6¶ñ~\æ6Ì','wp-includes/blocks/button/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c€C`\ï\0¶gK\Úô,&g',_binary 'qu]™M¸™o\Ý;ñ\és´x\ÅhÍ™ŠŒ\rz´A','',0,'?'),(_binary '¨dü;`‘\Âÿœ\Ü7G','wp-content/plugins/woocommerce/assets/images/icons/star-gray.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_?Ó˜‡Ÿ»ò ñ\È\çó',_binary '¥šÀŒ\èGn`\â\n­syžÔ“\ç\Ü\ìSõ\Å\ÛüL¢’','',0,'?'),(_binary '¨zO\Ñ&%O%\ïpˆ¤ô ƒ','wp-content/themes/flatsome/template-parts/posts/partials/entry-post-date.php',0,_binary 'òõû\Í91ü“\ë²\Ên˜\Ò',_binary 'òõû\Í91ü“\ë²\Ên˜\Ò',_binary '[B\ÌPR\\-Ç•\â\"¦\0])\ÕW\ìoË\è\ÎeR\è\á\êüý','',0,'?'),(_binary '¨ƒ\Æ\Ù\Z7‚8ñ-\\\×~–','wp-includes/css/dist/edit-post/classic-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹\ëK\ÃÀ\Z\æ/sÝ”ž+\Ë\Ç',_binary '\ÑgŠL\"\Òþœ)¾ñ~i²¦N*~U?‰†C\Ù\ÂB½‡P','',0,'?'),(_binary '¨‹¬Àx\ÐnC]Xó\è%ò','wp-content/plugins/woocommerce-multilingual/res/js/tooltip_init.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WS¬QE¦Eðq·ó¨Gy|A',_binary '—&rN^‚¨M9¤ŽA\na¦9>D‘x•©\Ø]Áö÷”','',0,'?'),(_binary '¨‘\Â;\ïsZ$\0ŸxP;”c','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/save.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\íª2MS»\âk \Zß–!?',_binary '8\Ò\"!?ô£.\ì\ÇM%ŒXª$RQ›ô÷¨Ÿ§\î\èuXp’','',0,'?'),(_binary '¨—3_Á‹\ß[#¤g`À','wp-includes/css/dist/block-library/reset-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Õ¢µ\Ø\ß\áB¥\ßx÷<EF',_binary '¦*u€?4\Ä¼Yz\\\Íc\ë¹ZGBicTi±\Ñ8p','',0,'?'),(_binary '¨™\\ñÀ=\à\ÓÅ¶Ã¡‚\"»ÿ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/title/save.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`?\èýÓ¥A~k\r÷¤',_binary 'û•P\ÝôRñ š3\Î\á\É=\ãr‘\ÂùSdù¨\ÛD\Õ\Ë','',0,'?'),(_binary '¨DX\È\\lü\Ç\rS$œFš','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/register-components.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v´mZð9Ð²[úÀGß¸',_binary 'sOóe¹¦À\rr\ÒW“\áMòsd2\n¯[Ž’Ág','',0,'?'),(_binary '¨£J\Ò×—¸_yzx\È÷6O','wp-admin/network/privacy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0®\È>¡H\rð\æ5:ó6¨',_binary '*]X8®˜\Í%\ØKÒ›R	ü\å\ÖQøfž;\neÀ\rƒ6\\','',0,'?'),(_binary '¨¬\ÌÈ€\ç~_q\ÚI¶\ÄS¡','wp-admin/js/password-strength-meter.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²\äZ\Â\×3\År\î;]\Õ<|À',_binary '®¡\Ú\É1ô\äyå¥!‰}}\Ç3É»}}\Ñte\nt‚','',0,'?'),(_binary '¨¯\ß\\\àD ü>üF,µ‡\ç','wp-admin/menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§_×’\Å^Fþúcr l{`7',_binary '\ÂJ\Ï:“\ëùz``´¨»zÕ¡\î}…¿\äÀ¤\é¬ò¶','',0,'?'),(_binary '¨°l aÞ‰®\ãˆ\îL\Ö€','wp-includes/css/dist/edit-site/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬ó‘O\ã­ùT22\Ò\å]œ	',_binary 'bFýaŠMƒd\Ä\Ë)X\êøªù=€iq7^·\áü','',0,'?'),(_binary '¨°›ŒK\ÙþÎ©«GK¤»1£','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/spinner.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Öºmu—”e>þ£Æ—G(o',_binary '3“\Èþ–\Õ4Žøñå£•\Î]B\ÇvÌ­ó—¦©6\Â-€','',0,'?'),(_binary '¨´qû‡„&\ã·\Ù\ÞG\Ä\Ï._','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/StoredStateSetupForProducts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡¯För†ãŽ€\'™o¿>',_binary 'R¨-˜ÁP\Ê\n\ã\âÁ$2Q`\àj\nh','',0,'?'),(_binary '¨½\Ø?T	\Í5=$š\è—','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/ScreenConfig.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Td«/öôNŸb}g\Î\×S',_binary '´×¦\Ð\æ7^­\è!\âS\Å8TKŒŽ\ÕÏ£o »\Ëñ›','',0,'?'),(_binary '¨\È\0\Ãn\É^\Î\ÃÔ”\ãÚ¨¸','wp-content/plugins/yith-woocommerce-compare/plugin-fw/yit-woocommerce-compatibility.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ\Â-o œ¯ÿ\ä°q3Vž',_binary 'ÁOb™!{g/\Ñô3#\r×¦þr¾›)ò‘Á(\ÓpË’S{','',0,'?'),(_binary '¨\Èu]“\×&\ÚÜ½™0¿p','wp-content/themes/flatsome/inc/admin/customizer/img/portfolio-title-featured.svg',0,_binary '8ø‚C\à\àˆ“óÿ“ú‰†\ÊY',_binary '8ø‚C\à\àˆ“óÿ“ú‰†\ÊY',_binary '?rqºW\Ý!\áÈ¡ð<\ë[²;»©\æÛ€yÀ(\îò\ÒO\Ù','',0,'?'),(_binary '¨\Òß·?\Æn+\éyŒ •¯','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/SyliusInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zúQÆ2Ï¦\ÚD\ã\Ç',_binary 'b“o?|Lˆ\Ü\Ýc¢3fò}š‰® QÕ“ª»G]X','',0,'?'),(_binary '¨\Û	\Ì\")¥\"µ\è0I£o¨\Ç','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/XChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­z„¿q\Zs˜¾q776ó',_binary 'C®D­a–$\ê¹=›f[Q§4\ÂJW\Ñ7l)®.\Þ=%¯ÿ','',0,'?'),(_binary '¨\ä\áê”•Ts™\r%¨LJ\åM','wp-includes/blocks/spacer/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†)vwA®rˆ\Ü4Ö¥\\',_binary 'aÊ´\ë-%M¸\'Sm\Î]¹s\Ö\â\ÆZ\å–\0Cü-','',0,'?'),(_binary '¨\åŸöŽ‚•—‰&Å»Ÿ(','wp-admin/js/widgets/custom-html-widgets.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»K\é	k»\Îðc²\Ú\'±',_binary '‰r=,k€M:ªDy\êKª\ËFŠý~¡sSÿ|ÄŸÀZ\è','',0,'?'),(_binary '¨ðD®-~\Ä\î\Ü:$&ø','wp-content/plugins/woocommerce-currency-switcher/classes/widgets/widget-currency-rates.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z‘1dÄ—ÿ¶9\Äô§–´',_binary '\Ïx_Y\Ïf\×+Î¢øô\á/Àlv¬–¬7M\r\æ“t:\n=','',0,'?'),(_binary '¨õ	´B•	e?­\åO«+\ãk','wp-content/plugins/woocommerce/templates/taxonomy-product-cat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹Dgwds\È\ÑrŽý\r]',_binary 'M|RœÁzTw\Ý\ÕN\Þ\é\Õ\Ðþ\ï\Å-\ÄDÞŒ\él—\ä','',0,'?'),(_binary '¨ùP\ÓM—ºbÁgÁ­Å½Wô','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/Makefile',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#ŸW´\Æ\åø2\ç=Lzø;v\Ù',_binary 'ø>K·\Ö7\Í\à™”Á<…½V0|\r\Ì=¹uo:¿«ð','',0,'?'),(_binary '¨úU¡¡²c˜ºe€S\Ê','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-sales-by-category.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Pò	œg\nŠ\\/A]lZK>',_binary '¸IkN)ÿLŠ©’\Óóÿ\á;\\M\"xÿ\ÜÂ‹ñ`u\ârs´','',0,'?'),(_binary '¨þøzþ\Ã/Aleòq','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/OrdersProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–—J\\¶®›\è¡J7oØ´\ç',_binary 'º|8\Z¤?¾\è|¥À1%¶«£\Û\r$Ì‚£„‘ ó\ì8N”\Ö','',0,'?'),(_binary '¨ÿ„ˆ’!¿K\çŽN¥','wp-content/plugins/yith-woocommerce-compare/assets/js/FixedColumns.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[@Ž”, Ÿ\ÏD\éŠzii',_binary 'Û²d\ÎÍ‹\ë\åš8\n\ÄZo4¹¼VV,h\åúV\ë\Â','',0,'?'),(_binary '©\ïú~+\Øq\êX¾\Û\"`','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÁoaQ¡¤\ì|g\â4&\Ï\Ù',_binary '¶c\ÂU©X„ý\Ôñ+‰]Wvd\Þ=ø,\ã½’„Z0)\\³','',0,'?'),(_binary '©*kŒÇ¼$ä ¢Y£¼\×\Â','wp-content/plugins/woocommerce/assets/css/marketplace-suggestions-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³;°.>~3›Ñ¤À\Í\"\È',_binary '\ÝEµpxÈ¹ªV$v‚X¾Lz…ÿEc\Ò6*ó¾ß€\Ý\ê','',0,'?'),(_binary '©2d?~‡\ÑÃ´n¬9†\Ù2’','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/attributes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ppý\îÝ·®i\Õl\ìÞ©ª',_binary '‡\'fLFGhAh×;\å±®5ð8H\ÊT«š±\'\'§\ßE','',0,'?'),(_binary '©7%£öŠ\å\ÇZƒ6|5\ã1','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-wc-shipping.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`N\0)NU:ceÏˆµðn\r',_binary '\Éø\0‘-°ˆ	™\ß\r\á†’@€®p4Y#°»ö¼O»\íôb','',0,'?'),(_binary '©=\å\Æqë¼¶\"j[bO','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤°\á\ÄY6ýoz\ÞÀ/›C',_binary 'e×º‹k+±oC \è\È\Ç@Æ¹\éOK<\æh¹S_','',0,'?'),(_binary '©IŒ­D$~^#´±\0\ë\Ô','wp-content/plugins/woocommerce/assets/css/auth.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—Š 0Y‡{\à\Ï\ÛB·r,ö',_binary '‰®”gÝº\á*™±;«õsz1~‰X\æÚŠ½Î®’\Òc#','',0,'?'),(_binary '©W¯[\î\ÆlF*Q‰M','wp-content/plugins/contact-form-7/admin/includes/welcome-panel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n^eË¬[Ë«\é|Q³Bq',_binary 'LY\å´$S4\â\Z\Ê\Øª( €\ÃLÂ§7\ÞÑ +›m‹!','',0,'?'),(_binary '©\\¹\ì\Ô\"ò½rsòú]F','wp-content/plugins/woocommerce/src/Admin/API/Reports/Stock/Stats/Controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ž¢1p>\Ã\ÕMnmeˆ\Ã;',_binary '‚t9™\Þ7c°‹u*\Í3Ô¶úò\å¼\é\à‰*‚N\Ä8','',0,'?'),(_binary '©]4qÄ–©\Ç\"î‡­W&','wp-content/themes/flatsome/inc/admin/options/header/img/header-default-icons.svg',0,_binary '5\Ý\Ô\ï)µkZy\æaI\Ä\Ù',_binary '5\Ý\Ô\ï)µkZy\æaI\Ä\Ù',_binary '’…\nQ«T‹³û#+\Ï8ü•”Ám\Î?Bq\"7¦”','',0,'?'),(_binary '©_€J\å‰i[²¾\ìqÚˆ','wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_ActionFactory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&B\ÍR¹¿¦Oq\'\nRö',_binary 'ÿ˜Æ©E\ï¥tþ H° \ÐW\ç7hlZŒ\é\Ó._;','',0,'?'),(_binary '©`‚$}d\ÉæŠŽÔ•NKŸy','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-search/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' 	#ý±2\î¡kJ',_binary 'ù”\Ï\æþ\Ü{\Êx†&µoR\Ùö—þ¾[q&…h\ÆL','',0,'?'),(_binary '©d†nih\ÆÀ\Å','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L‘øò©Q\09§mšM˜',_binary '|3¥\Ù,ÿUx›ö®`ió\Ë@?\åf.@F/xŠ}h#…','',0,'?'),(_binary '©d>°Hp£žHAVtTqh\è','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-autoloader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ð’\í\Õñ‘\0w?Mõ\î\Ú',_binary '©CW\ï¹\\”Q\Ñ[5\ÓW—z\rRA†:\åœ¤O>½\\','',0,'?'),(_binary '©e\å>¡¢—C	™\Û;<¤;','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-rating-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§t\Ö¤Û\ç\å\èÐ¿†\Û',_binary 'W\Ïx!¸p|]\Z0ð„\ç¨Ê¼\Üq\Ê\ã\Î`XnK\r\É','',0,'?'),(_binary '©j\Z¡;\éµŸ\r\Þeþ³þ','wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l5Ûµy\09÷\Ôs’,Îºd',_binary 'D\Ã	\è˜\ÍK¯t–\×L;3ˆQz™Á” ¤¹\î\Ë\ë\Æý\Øûµ','',0,'?'),(_binary '©{p	\Éf¢z\Ê\ÝÅ‘','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/middleware/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ò\Òdª°N\×þm–ô‡mª',_binary 'ßˆ½«œô…vˆ\ï&9x\Ýó¤U+W\ÅûÀœœ«IÁ','',0,'?'),(_binary '©}\Ø?M»\ÈWŠ(õ§óo','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/stock-filter-frontend.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æm?˜Ÿ\ïˆ2ûtˆaf]\È',_binary '-\\OöU\ÐüA\ï\í\ÜjB\àX\ÕS\Öø\Û\ÃtWß‘\Ñ','',0,'?'),(_binary '©}\ßu5ƒjg]\Ä†u9','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X¯\á_c\á\×\'\ØxM9þ¸\à´',_binary '`\íùö³°’S,wD9¹k“C\05Î²®\Ô19jBª[\Í\Ì','',0,'?'),(_binary '©„\Ðeü|Kðª\'†]½ù','wp-content/plugins/woocommerce-currency-switcher/css/images/ui-bg_glass_75_e6e6e6_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô%CVÂ¨É£ƒ ^ò\Ä\Þ\"\Ä',_binary '/‘\ë8qm(ª´=hJ\Ój)\Î\rU-\Zw0«n06','',0,'?'),(_binary '©…\è3»v0ªbB9¬\0','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/payment-method-extensions/payment-methods/paypal/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`mô&\0I­üd\å\0yG\Z',_binary '\nO1\ÙTDI’\Âa¾%Xñœ\Û\ë\ìa`¾\ì_{øaŒl\×','',0,'?'),(_binary '©‹ü_\ËMôû\Ñ9p¿½›p+','wp-content/plugins/ti-woocommerce-wishlist/assets/img/chevron_down@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±X4=\n­øgø$N2Ÿm¢',_binary '0=Ró<£\0g>\ÃqµZl\ß\è\Ãf¾¿*Žw“[f^þ\ä','',0,'?'),(_binary '©¡\n\àpjŸ³_~5CšJ\'','wp-content/plugins/woocommerce/includes/wccom-site/rest-api/endpoints/class-wc-rest-wccom-site-installer-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Zòa\í£ö\nÛ–•u\Ì\Zi8\\',_binary '!+j	\Ú|›ôWšœ_ \Ê@\Èfž\å‡Œ\\\É\Ü]Â§','',0,'?'),(_binary '©¢=CÑ \Ô\æ*TXô¹´4','wp-admin/css/colors/_variables.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰/š\È1\Ç}tD\ï^›ÿ',_binary 'g\Ï2\Ó\í\ÑId®OdÖœ\é\ì\ç\Í\Â\çIp)ˆ4\ì©f¿','',0,'?'),(_binary '©¸±+z1“Àô\ßkü¥¸','wp-content/plugins/nextend-facebook-connect/admin/templates/debug.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ò}¿\Ë\æDJ\ØhôÚ©A‰2',_binary 'ª7Ø¹›$gŠ\ä\'Á´¬jTU½VZ!¢-D\ày\ïžó€','',0,'?'),(_binary '©\È-D\Ü`¹O\0\Ö\'T#±Œ','wp-content/themes/flatsome/inc/admin/options/header/options-header-account.php',0,_binary '1\Üù-WL»z\Ñ\"\æš',_binary '1\Üù-WL»z\Ñ\"\æš',_binary 'R¢š!Ê±Ç‹É”ƒ¬ J¢u½\Æ\Ü5\ÏPd+\Çz¹Í·','',0,'?'),(_binary '©\ÊÚ·t\ìg—Z·gEò','wp-includes/class-wp-http-response.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ\Ý4¾ƒy\ÛKý„øß•',_binary '\çÎ™	\á\åù[ó†{\0If\â\0„t\âv\n9d¹•øxŠ\ç','',0,'?'),(_binary '©\Õ57\Õ\ÏJøù\rÅ§xø-','wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/class-autoloader-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÒÀU—GþÊ¼Lhq¾I¢',_binary '&`\ÒÉ¡‹\ê©q\\—zC³Û©jHª	\Å6®	ò\rg<9¿','',0,'?'),(_binary '©\ÖjTýctò Q‘\Ì#','wp-includes/blocks/navigation/view.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾K‡˜`¯>LZ\ÛÍµ©12',_binary '¹¦ú´‡\Ëø\ç)\rôóiO…?MqVOQ¸g>ðþrø\è\Ý','',0,'?'),(_binary '©Ù„¥\Ó0PKy\ÛNòB|','wp-content/plugins/woocommerce-multilingual/res/js/languages_notice.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ“d]žh/™¨™+¿\Ä\è',_binary 'Ì¤\Ë\à/}¢M‘h¼P‚}–hS-\"Ã±~ôG¹®21¿\Ù','',0,'?'),(_binary '©\Ü \Í\çIt13&','wp-admin/js/nav-menu.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ñª[´Ÿ\á-	UNTð',_binary 'c·ðqö¨ÿñ$$¢…Ïž[}+†¨õqc\Ï[@…','',0,'?'),(_binary '©ðssõ\Û\æmñ©¯Ký\Û_','wp-content/themes/flatsome/inc/builder/shortcodes/ux_payment_icons.php',0,_binary '9‘\Í\Ò<–´/\êƒG\ê\È',_binary '9‘\Í\Ò<–´/\êƒG\ê\È',_binary '÷O\r\èOCh\ï\ÔÉ¹¶\íAP\Ê\ë\Ó ZW\Óˆ+s','',0,'?'),(_binary '©öÏœ\ï»y\"÷lrÜ”','wp-content/plugins/yith-woocommerce-compare/assets/images/box-bottom.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\â’ú&›\ï	\Ôˆ\á\Z',_binary '\×\èx³ œ%€\ë\\Wj®‰÷JXD \â¦/ý°#\ÊÀ›','',0,'?'),(_binary '©ÿ>N\í™\Ô5aˆr¥,\ä','wp-content/plugins/woocommerce/assets/js/admin/term-ordering.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0`\nw5·™\0\Z\Å\Z+W}',_binary '\ê2R\í\ÒgW \Ô\ÕNz\Ú00b\"	I\ÔX!—+|²¬\Ã','',0,'?'),(_binary 'ªC\ÜÞ¢\Ú\ß#ˆ\Õk \Ç','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\ÃvE…‰\"¹Â™M\\\ÙñM\Ã',_binary '4(eõ“ýô\ÊI892¡\×ö-…ë±ŽóÄ¼®~™]','',0,'?'),(_binary 'ª¹\ÏG™lö\Ü\ÊÝ _\Ö','wp-includes/js/dist/date.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Šw\ìs3¤&…„©š»þ',_binary 'GX]RS\Ì\æ\\À÷u\Ú\Åvkó‹u\ï\Ê.ihxí…µH÷\Û','',0,'?'),(_binary 'ª«³û]ñÃ˜~ß€','wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-plugin-common.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\èÕ¥?j\î^v7y0)',_binary 'ùõ»\çó/\0ÿg`¶E»£ÿ”÷A‡¨.~•\rš','',0,'?'),(_binary 'ª„~\Å€\×\Z\\¦€Y\ß\ê','wp-content/plugins/woocommerce/src/Admin/API/Data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\áY8oY\Z#HJ[	 \í\ä',_binary 'L,Aªd\n]\'Hðh\í\ÄQ,W‹@]&‹3•¯6´\Ã','',0,'?'),(_binary 'ªJ-ç‹º\Ô\\\"ý×¥&ð','wp-includes/sodium_compat/src/Core/Util.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½=øÁ“DÏ¢Ú¡¬`_^WG',_binary '\×O\Z¢ £²ß€\çfÄ²C%OH=\ã\à\Í2`—H%ö','',0,'?'),(_binary 'ª+\æ‰E°ƒ©C\\#3\ï\Ë*','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/chip/stories/removable-chip.stories.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'öŒ1,{$Ï¶ ¾\Ñ\Úû\í',_binary '\rY\Êcü™\nH«\É\é¶FŸ†õZ$CÕ¾. d\Â+\Å\Æv','',0,'?'),(_binary 'ª/s_\Ý}\Óh\ê8Ulnö\Þ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/form-step/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ðaA»RÀBž\Ø\Ê:\ÇcH',_binary 'œ`ÿ\ÊO¶\ÜZk>\Îk_\'ˆÁÕžö\Ö\n.h\Ëq[','',0,'?'),(_binary 'ª/ƒ†ý\0™˜\Ë:ò/ª³V','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/fr.js',0,_binary '¦—}A¶b¶br\Öð¥\å+U',_binary '¦—}A¶b¶br\Öð¥\å+U',_binary '£6²Á€b÷å½¶ø¤5\Û2˜J•ª\Ð\ß)¸\ß<\Ó\Ì','',0,'?'),(_binary 'ª;?2\è\áˆSý\ã§\0ûšp','wp-admin/customize.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\â®Øž³“/bT\êcK	W…¢',_binary '=\ÒM°\"ÛŸ‘‚\É\Ø8S§\í-Ü”÷\ïK<\é@\ß\ç~óo','',0,'?'),(_binary 'ªNE­ }ý®´Þ˜óª','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ð\Î÷€!\Ä\ÈHÿ¥hœŸ',_binary '\Î9.YlS®‰ö\Ë\Ì\ÈA\ÙXN‹\Ôo*b€º¾l','',0,'?'),(_binary 'ªS¦\Ð\í…÷¼V\0¥­½^7','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'žDúœMµR{iŠ®Pc',_binary '&w\"\á©<…˜\É?H\çŠf÷\Ø>\î\î\ZRø1%B–\Ó\Å','',0,'?'),(_binary 'ªTô,”LB²“\Æ\×\íKÁa\ï','wp-content/themes/flatsome/template-parts/portfolio/portfolio-content.php',0,_binary '\×Éž½uƒ{1PÙkª˜',_binary '\×Éž½uƒ{1PÙkª˜',_binary '¨o§õ\Ë.ù¹zrcô²÷³)qB\ÏoB\ï.G¼òÁ','',0,'?'),(_binary 'ªU\ë ð\Ðz‹Gx\ê‘\"ž‡','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/ajax-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•\Ò[\Égu\ÍA\ËmfÂ·ý\Ö',_binary '¹…‘\é˜0;„.+1im‚½\×\È\àEU \ê¿Qpkôü	¡','',0,'?'),(_binary 'ªX\à\á@Á\Ô%½1C„Ái','wp-content/plugins/wordfence/images/lightbox-controls.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm]¼a’¬•\\$\É',_binary 'Ç—’h?\à\ï\ïS\é\î\Í)¸:›Á\Öi@h. X\×g”†','',0,'?'),(_binary 'ª]\Ú.\Ç1\rPXL©','wp-admin/includes/update.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ²!Z2ª\r\ÌfBý~',_binary 'w\Ø}\Ö\Ôu:‘)Áú™È†\Åeº¸xõ¢`g\Ç\Ïub','',0,'?'),(_binary 'ª`:£•\ÝÐ™z\àxzOIò4','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/is.js',0,_binary 'È„LŒ	rVV\ÜmÊ¸V!',_binary 'È„LŒ	rVV\ÜmÊ¸V!',_binary '‰L’ \Ç÷\Ä\ÂŽö0&\Ä>Œú|Å¸ñN_\Ú|hEõq','',0,'?'),(_binary 'ªd“Í’\Ô\×\Þw–I\éÀøoe','wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ö%Ã™\Z@LÿÜˆ\âü‚',_binary '\Ï\ÜC\îWƒEÚ¨y\Ý%\æ*x·\ä\Öò½Y;­\Û;?\Ô(ƒ','',0,'?'),(_binary 'ªf(¼9\ì\Ò6›yaN|2','wp-content/plugins/wordfence/waf/pomo/translations.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z^:@¨´JKL‰¤©\æS',_binary '¬\rHñ\Ç•šn`¥>©--\\Tr\×ôð7,\×Ž','',0,'?'),(_binary 'ªrYýÿ\0­S²—\Ä(z|«','wp-content/plugins/wordfence/modules/login-security/classes/model/notice.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-Gb“yf€\Ô|õ½S¼’',_binary '\ÙoŒ¤G5}[\ï`\Æn†úxµ¤\ÂÜ¡^‹@B#\Ì\×õžlb','',0,'?'),(_binary 'ªs8\æ\'\í\ÆÉ€\á\Z%Cx','wp-includes/blocks/archives/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­\rlðA\ÜH×˜ë€×„j',_binary ' +†h©%23¸^¶K»³#l]r\ÍaBc\r…\ï4¬b','',0,'?'),(_binary 'ªu$Š{\Â\ã\ÛÜ¨“§v\å','wp-includes/blocks/latest-comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ¶1a°¶œš×¿¬\ÃyÕ§',_binary '\Z	QÛŒü\"¨¬AÃ¶_¨pX3).W%‘r{¶5…','',0,'?'),(_binary 'ªyú_úuK+Î»E<Ž‚','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-advanced.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wlCe“§6t•BË‡þL',_binary 'ƒ\Ýs#8\à„\Í\ËC%‰eùYû\Å#üƒƒ \\töre\'k\Ø','',0,'?'),(_binary 'ª~K•É·wwfÀC\ì','wp-admin/js/widgets/media-gallery-widget.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{üc/ú‚©‰I\Õ\Âõ\ê<›',_binary 'y\Æ\\\ÜR£T\ÞÜ öU‹tmY\Ç(†ã»±Ì¿','',0,'?'),(_binary 'ªð1£0\0xq\æ\Þ\Ôrsc','wp-content/plugins/ti-woocommerce-wishlist/views/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ð™ .ƒ‹J5n>k«w.',_binary 'õŸ\ÏÞ2£”\êüD’l“<ˆ©\Ôhõ¸MZVk ','',0,'?'),(_binary 'ª†m‚jú±ùjvi\ás\Þ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/wechat.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zœ\Ôt˜À>O\âCö\æ!¯',_binary '|Ò°‰“U76\è”gøN«!wTeh\ÆAÚ®Uu°\î\Ól','',0,'?'),(_binary 'ªˆ}z²šî¤#¸€™‚\Z','wp-includes/Requests/IRI.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é¢e›¦ò(a\Ùd\Òù\ZòC',_binary 'Žð\"\Üú‰¶\ï÷G\Â\ï-¨„OŠŒ\'²\æB\ç© \ã^','',0,'?'),(_binary 'ªŒ„ÆŒ\Z\ç\Ã,µH¸¥','wp-content/themes/twentynineteen/postcss.config.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k\Ò®Øªri\ÉE\ÂK]',_binary '\ÐUYX’}Žm‹\",W\ê–9:Û¸\Ö.\áà·¦HoŠ\"ñ','',0,'?'),(_binary 'ª“K²±\îK³1¬l\Õ!õD','wp-content/themes/twentytwenty/comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=(\×,Àü\Ô4¹ªb\ÌHó\ì',_binary 'Ì¸Œ»’ø§ ¼º´\Ú\n\ÅX®\Ë÷šGzõy\Ý\\KqòWQ','',0,'?'),(_binary 'ª™\rŸžµ[¯\ã\0\êEuJ','wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':Œ‡\Â\Ût@ý®”r¿“',_binary 'œÊ¡\ÔGn¸ŠÒ„ôü\Õ\'P˜¹h\æ‡Ö®V\ì	¢\î\r¢^','',0,'?'),(_binary 'ªž4‘y‡3%k³ ‘³˜\Ñ','wp-admin/js/widgets/media-image-widget.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ž\È;k“#?”\çcQ7\ß(e',_binary 'òo\ÝŸ{\Ì\rrŠh5\Ü\ÅF°w¯w\Ï	LeðFz\Ó]\è','',0,'?'),(_binary 'ª£{\í»\çHŽºWn«½Œ,\n','wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-webhooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«ù½_„‹Z4C\Ô\Ë\âe',_binary 'ˆ²‰=dSI,w;œª­l\á[\á¤\Ý‰\Z\0¥¦\Ð','',0,'?'),(_binary 'ª¤Ž\í_«XTœ¤Ï†ž','wp-content/plugins/ti-woocommerce-wishlist/assets/css/webfont-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å†^\Ô\Í üªR@³He\Å',_binary '°.˜CÔ°“\ZpZ³\Þû<=©\çH\ÃEþ]ÿÁ®+8Q','',0,'?'),(_binary 'ªªõ\Ù†˜|† ²½','wp-includes/js/masonry.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';?\È&\å\ÅTŽJeœxH',_binary '$¬!\É|=#f…c\êjcùÁ\Ç:¥ªT¹Q0b\æ¸,Ê‰‘','',0,'?'),(_binary 'ª¯‡bC\áž\ÕÇš\Ò\"½8o','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/order-summary-coupon-form-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qxSy=›&x£t|E˜U«',_binary '\ì­:ÿ¡ k3\à\É\Çe\È\êkJ|«oZòö†\â','',0,'?'),(_binary 'ª±Ø½a\Î\Ô\rù(\ã\èŽ$“','wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.min.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ôš¾\ËlÀWe\ÔU{\Ò9ü',_binary '\Ü\Ø\é\Ì\è\äGû \ß\Ù8—=\0¨> ø3 wg3.¢4','',0,'?'),(_binary 'ª¸T\Ì>ÿ¥¤\Ì\Í\ánek','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/page_title.svg',0,_binary '„SüT®q@\çMYw\Õ\Ó',_binary '„SüT®q@\çMYw\Õ\Ó',_binary 'YÊ´µYÅª¨¸\æ__—\Ú(\Ó>úþë£±õmoŽ ezbº','',0,'?'),(_binary 'ª¿Î˜\Ä•r(„Å\ã\Ä ','wp-admin/js/auth-app.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#ý\Ð\ÙLP\Ð\Ê\âS[fô',_binary 'F@H…ü8\åÝ‡ý\ç7an¢ÿƒ#{\â¡\Ó\ÛŠ§jü','',0,'?'),(_binary 'ªÇ•\ìµ\"\ç¾\'\Å|\Ù,}\Ê','wp-content/themes/flatsome/inc/admin/customizer/img/nav-bottom-left.svg',0,_binary '\Ët\â#\ÔsŸx\äŒ',_binary '\Ët\â#\ÔsŸx\äŒ',_binary '¯	÷	m“úTÀŠ¹fO³\î+)$õM‡>\na¤‰Q,','',0,'?'),(_binary 'ª\Ë\Ùv{C«Àº\ÎÒ§€Ž4I','wp-content/plugins/wordfence/lib/wfViewResult.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z•¯¿ñ\"J3Z\Í\Õw',_binary '\Êm\Ô¶e\å=žH‰ŽoDº©¿OT\Ý\0\ìv±\è¯\í','',0,'?'),(_binary 'ªÍ¥£\Ö½\ì¸žXjV','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Îÿ®!~\Æ\'ÁN‘VD“',_binary '\ÎD\Óù‹¹‹n\Ý\â\Ôo6’\ÌYÇ‹‘J	\Å6ÖaSu2','',0,'?'),(_binary 'ª\Ï\Õ\0ë€„	;t‘/¥‘-','wp-includes/blocks/file/view.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\ÊL¸\ç›úò{¨\ãqŸ',_binary '•-\å\Äm\í	V!`\Ò{ˆ\"5L’w,S¬uIþ¾j','',0,'?'),(_binary 'ª\Úpº$^†ôµdZ','wp-admin/network/plugin-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡%(F±²v\0ƒ~»\ëF',_binary 'Ú™s-s™\å\Ç~²uYeö¦’À’\ÄT‹\ÃûF¶4¿!\á *','',0,'?'),(_binary 'ªÚ«¡c\r2þ8.„\'\â\"','wp-content/themes/twentytwentyone/assets/js/customize-preview.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YÏ¡Ø€^\Ð\ç)q~®0',_binary '\ã\n=/…\î?I\Ôlb¬i\Û\È8“A•HxVù5A?vi','',0,'?'),(_binary 'ª\Û5\\|\Ë\ï¬\é:~«\Ùn!W','wp-content/themes/flatsome/inc/admin/customizer/img/icon-right.svg',0,_binary '\éø¹Á‘\ÒlT-+®Œõ\Ù',_binary '\éø¹Á‘\ÒlT-+®Œõ\Ù',_binary '±¡\Z‰Àkl­§üû\â\ÓøÀ©Kac<\ë\ï¥@\áÿ','',0,'?'),(_binary 'ª\Û\Ó\Î#\ÜGy\É\Z-¼€y','wp-content/plugins/ti-woocommerce-wishlist/includes/wizard.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†\Ì\Ñ\Ø}\ß\ä \ì=ª\ë¬\Æ',_binary 'ó!«\ìUƒ½6ø›‰ð‡}\Çù®™G´}–Tú\â\0ò¨6\Æ','',0,'?'),(_binary 'ª\æ[Kº\î\æbŽ\Ä\Ú28·','wp-includes/pomo/po.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ûz—&\ÔTýŒXL€;c‹',_binary '¥7\Þ\ÃGZ\æX­YÿOz£\ë•D_þ{ýJ\ïüÀWö/','',0,'?'),(_binary 'ª\êýqR³´òa\Ê\ä•=B3','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/text-input/validated-text-input.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñ*I\0\ÕQ³³d\ß:sƒû¢',_binary '\ì\á\Ö5›bˆ\'g“yõdi·óBg¶’œ\Õ\ÕÀ¨N','',0,'?'),(_binary 'ªñ®e\ß<Ñžl\ÂPb.j','wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-panel.php',0,_binary '¶&q\n®môiýUý&\Zô†',_binary '¶&q\n®môiýUý&\Zô†',_binary 'ø\rr¿ötðü\Ø3«Àž‘c~8¡>\Î9y\íB(q','',0,'?'),(_binary '«@\à$\"¿v ™›b”Cy','wp-content/themes/flatsome/assets/img/payment-icons/icon-visa1.svg.php',0,_binary '¢V³‡}¥	»¯ži9¯…ý',_binary '¢V³‡}¥	»¯ži9¯…ý',_binary 'G»\ÅÂ­„\î\à%@ôg•\'\ÑvKUq\Îñ›‡œ©ªô—1³','',0,'?'),(_binary '«’\Úñ\æJH‡l\"G¤Lù','wp-includes/css/dist/block-library/reset-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i¬fµõ\×³\Å\ê9Konb',_binary '/£=D—W.Eù´ôŒD¼	­9&·Q‡ L\Ëñ','',0,'?'),(_binary '«\rGm\'\Ô\ÇU¢‘3»„š','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-terms-block/test/edit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ä¤\r\Æ;\Õ4qhÀú©z*',_binary '+\å\Ö\äˆ35½Z\rô\Ï\é©`\ãW\ëwB\áNbÂ“','',0,'?'),(_binary '«‚¬U\îosˆlùTÌª','wp-content/plugins/woocommerce-multilingual/vendor/composer/autoload_files.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñ?«gh<:[K\à¡\\†>\Ö1',_binary 'tF²\Ê)SFGzðòq´\Õ\ÏWr\ÙR^Y\Â\"dPAóý„\n\Â','',0,'?'),(_binary '«\ÔNP½²£<U’ˆ÷†\Ø','wp-content/plugins/contact-form-7/admin/css/styles-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"®;•ðð&H\ä\ÄwpXX',_binary 'uK%2r0\ÏPŒM—\É\Ê>\Ù:\Ü<\r\è•\éû’Uš£\ä &','',0,'?'),(_binary '«\Ð\èX’°\ØJ üp','wp-content/plugins/wordfence/lib/wfBrowscapCache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TÁ\ë\ÏQ\×x‡j‚',_binary '\Ðƒ®ž\ë1Y„„õTšŠÐˆ\Õqó¤W6Ý‹™\Õh	','',0,'?'),(_binary '«9”[ŠE:Ñ¶q	²A','wp-includes/blocks/calendar/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '14-9FŽ&5f4¦\Í(',_binary '\Ég¿õ¸µjv \Ê\Ú\àAU©ù$jl¼?¶¿Â…‰\Øö\ï','',0,'?'),(_binary '« ³rûƒ› \é¹8\Ç{.','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/proceed-to-checkout-block/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Rö–ù\"\Ä~D‰‚o\ä&\nX',_binary '„\ìNŠ\Öy–ý=V\ÉDI\ÄúŠª³P\'\Õ!ˆ\Ê>','',0,'?'),(_binary '«&Â½1YxFu¿“ ·mpC','wp-content/themes/twentytwentyone/template-parts/content/content-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^ *†o\ÔŽ~RC~µ\Üh÷',_binary 'r|1™“¬	P.\Ð;FvrF–\Õ\â0^˜Ø»³	\ÒR^“´','',0,'?'),(_binary '«*\ÙK*µ_\ßòA\"9-p\'','wp-content/plugins/woocommerce/includes/wc-account-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…\×pYú¢À¶û\Æ}ù\"\Ä',_binary '3\Ù~aør\Øú\ç:\ê Ð‘=\çQñ­˜ §ý\Ëm¦W¡™V»','',0,'?'),(_binary '«1s„X\ÍqVO‰¹…£`ü\æ','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value/ValueList.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'CÀÀ$\é,¶l \ã',_binary '­ö\Éd¨šHÁ\ä™\Í\ä9š§~j\å€=\çcT\Þ\êÿŸ†','',0,'?'),(_binary '«8ÿD:‹\î¸n-Éœ\n','wp-content/plugins/woocommerce/src/Admin/API/Reports/Taxes/Query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\ÔUJ¸ß—A´\Ó?\èF£',_binary '™s\Z\Ïã“¤ƒ\á›Qað}\ÅbØ½I£1€­È¡ \î\Þ','',0,'?'),(_binary '«9\Ó\åI‚Ÿ\È\Þ\'r','wp-content/plugins/ti-woocommerce-wishlist/includes/wishlist.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qš\'/Ÿ\rŸ‘x/þñ',_binary 'ÿn\Z~S¸½½_u€¹\é\à1S™ñß±ˆ[f\ëF','',0,'?'),(_binary '«<D\ë£ki[Î¶îˆ¤a','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/shipping-address-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰“Ï–÷‘\Îj”ñkjC>|',_binary ']Í„Ë\Ã\Ô+`\é|\ëg7\Ò)\Ôó¶:öœ‡[J\í\Í8','',0,'?'),(_binary '«B§x\ê[$	ª¿f\Ýbˆ\Ñ','wp-content/themes/flatsome/inc/admin/panel/sections/top.php',0,_binary 'dku}¢y[\î=ôu\Ð^1',_binary 'dku}¢y[\î=ôu\Ð^1',_binary 'Û“~]¼\Å\ã\"÷ø“g!\áß’\Ë>\Ù{vƒiÈ‚\äN,\Ä','',0,'?'),(_binary '«CjE\Øl³X÷?nŽ.\ç','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/label/test/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£x&©Jø\æŠ^ †Q',_binary 'wY´N\Ð\Ãò\ÅŽ\ë\Ð¢M\ä—Å®³\Ö\Âß‘s2G','',0,'?'),(_binary '«D\Øû\rŽñy\åLü^}6]','wp-content/plugins/woocommerce-multilingual/screenshot-8.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ä\çJn	fwjT²Ž‘Hd',_binary '\ît\í\ÛðýZ”¤q\èG˜Û‰ô(Ï§œ\èj3”öŠF\é','',0,'?'),(_binary '«S\Ä\ëú³q\ê`ŽƒM\Ü','wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ú¡q’1‚b»¿4ô	G*',_binary '{U%\ÐHv³\Ê3\Û) |w ½-L¿½&ÿ\Öñ.äŒ©','',0,'?'),(_binary '«V\Ø\Ó1\Ï>Àú¬\é$d÷\ïC','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/TrackingOptIn.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0ž¥¿¢¶‹\îh6¨8Æ˜¯',_binary '•×’\Úv)\\Î°\ÍÇ¯\ÕÖ“ºDD‰¶:Hy\n9”','',0,'?'),(_binary '«nÖ¢¡ù\r’V5‘‹,\Ù','wp-includes/widgets/class-wp-widget-meta.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÊŠjô+(,¸^Šb·ÿ(',_binary '¿\ÆPL+wÁit¥Š½Z¶¢dþˆ\ÃkZ{XŒV`\Åt”','',0,'?'),(_binary '«o¢ù ´l>¼\âx~I° \Â','wp-admin/network/about.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~„€ž(™†ø4\áG\ìõ£',_binary 'öŠj/}Ó…¹”Á\0ESþúÌ¤\\Hg\ë#Z©¡._','',0,'?'),(_binary '«}\Ñe‹‚ðý¿Á›$¢³F','wp-content/plugins/woocommerce/assets/js/admin/product-ordering.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡ëº¤ $w¤ac­\é5\ÂC',_binary '\n\Ú\"\"ùüŽ z8i\ãQ²¯\Ë:}œFcµm¤€€EI-ó','',0,'?'),(_binary '«\"\Ó(õ\ç\Þþ\ï]†¡õz#','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oG´Y>\íy\ç*^Yòú',_binary 'M«ðŒr’¹%kÂ™!ó‚¥²½¸Ó²ŽzÝ	)úð\ÆCþ','',0,'?'),(_binary '«ˆ°0jˆlµS\ÓýKò','wp-includes/post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S*\ÑÆ„r$÷C(\ä­q',_binary 'ýLý\ã\Ï\ÕfEÆ¸û}Õ™Ií¨¡\ÔVH#sõñ@-e<','',0,'?'),(_binary '«”\àQn\Ò\Ú>ŸŽÓŒÚº\ã\Õ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-button-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\îð7úEaB‡f9K\íb',_binary 'ß© ñ\áK‰\Þp—pdòˆ\'\Ð3+½¥b>\Ø÷J¸{ÿ','',0,'?'),(_binary '«˜¸÷Þ¸q\ãic¼=’','wp-includes/class-wp-simplepie-file.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ªb\Èk‚Ï–Ñ…\ÝX\Ñ',_binary '‰\ï/™\'C•¾?C\Zfbˆ%\Û$ú=V6 ´\\Ÿ','',0,'?'),(_binary '«›¯…J\Þ\Ëyu\é˜Vjˆlf','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/php/components-setting/plugins-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'À¸Å®\ÎW‹\Èn\Ød&Û¶¯Q',_binary 'Æ«?h9÷¶Pv63,WQ(>B:%Á\âHþ\å#ñd˜','',0,'?'),(_binary '«¡2<õ3\êùu!ø]','wp-content/plugins/wordfence/js/wfselect2.min.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Jž¾öü¥!.¡\ç\×i',_binary 'lžk}[\ÙùZjA\Þ.!Áø=+5¨+´~q\ç 1','',0,'?'),(_binary '«±ž9\ç/\í•Ò¦¯\à\ç°','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`ŽK¸\Î\Çl¿\Ø\ÅpWº\ê',_binary '/¾t»/(T5÷\Û,3\Íõ¢Ži¹wÿÚ——…‰\\ºl','',0,'?'),(_binary '«³sùÕŒQ±¶7o\é\Ãô','wp-content/plugins/wordfence/views/common/status-detail.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`Ufxy9\â9”ùg4Á½',_binary '¸\å\ïE\èF\ËjÕ—&\n¶ôE¶¢&JÕŸgWk.Ž‹ºT/','',0,'?'),(_binary '«´a\ïo ž&\çÕ¿0ºø‡','wp-content/plugins/woocommerce/lib/packages/League/Container/Definition/Definition.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ\áùH\Z\ÇqZ\åýµqÅ¤',_binary '{rš\ç\r8³¯\ÂósA›‘r\Ö:ƒ\ë\ê\ç\îË·i\æ\ç\é?=','',0,'?'),(_binary '«·\Ð\ä\Ö\Ý\ÛWûl+xp—P4','wp-content/plugins/woocommerce-multilingual/inc/template-classes/multi-currency/class-wcml-custom-prices-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fõ=H¾ÁG°\æm`\È¼_',_binary '¯0?®­°¨·\Ë;&€lýfq\Z\â\n»o\Z3\Z£·','',0,'?'),(_binary '«»_±Qó|\Ý]ž\Å\ç\æ`\Z¨','wp-includes/blocks/table/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°„(\ÍV\ëDq$a¤ ',_binary '\ØVQ8#\á3m.6\Ý\Ø-ðÁ!¨“Pp:1Kj±‹\Ö','',0,'?'),(_binary '«\Ân\'{cA—*\í:\ëQ©','wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-plugin-common.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@(Ÿ\Ö\Î÷\à›R±|µô',_binary 'C8\á¤L\Í\ã\è\'\Þ$©\ëš\Æ\Ö0\ÊXT…¿[Ai','',0,'?'),(_binary '«Â«¬\ä—-j=´u¶N\\q\'','wp-admin/css/farbtastic.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ù\ã8)¸ú\í}{¾øCûh2U',_binary '|A¹\åL\äº\ÉMb\Çx¦d8X\ï‚jX.\ÐûŒ\Ö^\n\ZŽ','',0,'?'),(_binary '«\Ã÷¡Np¤%ObEŽ)r£','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-heading/attributes.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(u\×†N 6Xƒ;¡rŒ',_binary 'È°J3x˜¶KÐ©2´„¶\ÃGo\åÅ‹u\ÆMyü\nw‘','',0,'?'),(_binary '«\ÓrŸ’Y\Þò7\îG\Ð','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-plugin-panel-woocommerce.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\æ\Êñsd&•»XOµ—b',_binary '\Ú5“yc[¯EgU\Ý0æ‡mƒM*\ÏeG\á×­\ÜOË¯X\×','',0,'?'),(_binary '«\éuôgk²DÁ—E‡‰K','wp-includes/blocks/query-pagination-numbers/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{Õ˜;-\Ò0­¼ø\Ô<—¾',_binary 'Œ\Z—}InœMÀPq\ÛDôYpœ–‰›d/À\"n\"\â‹','',0,'?'),(_binary '«ò\æ(©\Ð(;„ß½\'ú{/\ê','wp-content/plugins/woocommerce/lib/packages/League/Container/Argument/RawArgument.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸§<\Z‚Ô¨¯U¦,Ú­R',_binary '¿[i\åi$Ð¿S\\c\ÓÂœL\í\äó\ïoÁ5¬-¯£’','',0,'?'),(_binary '«ô÷á—\Ø3…-ƒ«4°','wp-admin/css/colors/midnight/colors-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œa©\âQ±‹ùSH©‚9C',_binary '$\Úu%_\ÜS\Z\Ðc›\Òpkc4«M_¢Œ@d)¼\á®A','',0,'?'),(_binary '«ù\â\0‚¾66\0\Óø„d¬','wp-content/plugins/yith-woocommerce-compare/assets/images/01-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':œ%\Öñ™®nk½ñ\ë)\Æ÷',_binary '…6\ÍK§\ëPŠdº·\ÓDóž Í„)53Q\äð31m','',0,'?'),(_binary '¬\rµnq±\Å\×t0ƒ\×Å‡','wp-content/plugins/yith-woocommerce-compare/assets/css/admin.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\îˆû¦5qR)Wiü\ß',_binary '®ý;À\ëñT²)wq¤fy=\æ^mF#š·“W;S~\Ó\ê','',0,'?'),(_binary '¬-\Ï.÷\àŽ÷»‘ZK\Ä{;','wp-content/themes/flatsome/inc/builder/core/server/src/Post/PostOptions.php',0,_binary 'SYd£&Ž\ÊqH˜€^ñ\é',_binary 'SYd£&Ž\ÊqH˜€^ñ\é',_binary 'ô\Æ	qh}ŸÊ’º&\'´bæ§­\"‘¿»0f\ìN[Š[\Å','',0,'?'),(_binary '¬!»š2;T‰Ž“;\Ò\Ê)','wp-content/themes/flatsome/inc/admin/customizer/img/product-page-title.svg',0,_binary 'Š\çeò@œsG^fb\Ô\Æ4Ì¾',_binary 'Š\çeò@œsG^fb\Ô\Æ4Ì¾',_binary '€ty#\r\\’dmyC©\éd\×À7Kp£ÍŠ0\Ò\ï\ä\0\Ë\äõ','',0,'?'),(_binary '¬+Š>q\Í\Ïôl ;&D\Ð','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/styles/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')`UPµ\Ý\ÃB\ì·c¸ª=	9',_binary '”\ÕIa»\Æ\Ú\Èôû3¿\ÂiUBð°GX‡b­È•^¶%•','',0,'?'),(_binary '¬‚Ã¢´[mw_–yü','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/shared/product-unavailable.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ðWpÑ¥¿\"\ÐH®½\ç',_binary '¹\ÊTq\ÙûþL*d¶ý;\ÖsPc\ê•;w*','',0,'?'),(_binary '¬…\ì­\ì\É\É$ùAû','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OEeôZ\ÃY‡ÀûE\Ìù&',_binary 'ö³\ÊWs\ê¾Gr(ÀQ9Aª_Â©>+„‡‚\Ã\Ç\'·¬','',0,'?'),(_binary '¬\"Ú•K[@‰G\Çû\á\á9‘','wp-admin/includes/class-wp-theme-install-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ë\ÛÑžX=‘’ˆy\Ý\Ò2\Ä;',_binary '\"j¡79L‰\Í¾pr(\ÂL¤—jüE{~¿Œ§','',0,'?'),(_binary '¬#\î\äu0¬c¡Œ‚}²€‡','wp-includes/js/dist/i18n.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q·}Qª‹\ÃV\ì§gö¼\Â†',_binary 'X‘õ…z\Ê8u÷:¨u÷Ð¨ÞžP¾mq·‡\ÞI*b~’6','',0,'?'),(_binary '¬$´Q²sP¸¬\êR3}/','wp-content/plugins/wordfence/modules/login-security/views/options/option-token.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ü@¤‰9o;&\ãtö€Œ',_binary 'CÛž„`\Õ)\æt­¶‰\êfŸˆK|j–¡©“d\Å~','',0,'?'),(_binary '¬\'y\Ì\Ã\rŽkLwg=€+ƒ','wp-content/plugins/nextend-facebook-connect/providers/twitter/admin/getting-started.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\å\Ñv\Øc´t\Ð\ÔCZM',_binary '¢©JS\Z\á†Û´\Z\'t˜^²\ê9£5–b\Ð¯¥«','',0,'?'),(_binary '¬3!9\ä=\è6Ý¡','wp-admin/images/resize-rtl-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÏM\Õ\ï“ù¨MñHõ!þYA',_binary '£2ù\ìm\Ño\ß\æ{«|…ny‰üËƒŸ4(\åøûÏ†\î=ª','',0,'?'),(_binary '¬4Y\Ø«3\ÍüõzÉ«','wp-content/plugins/woocommerce/src/Admin/DataSourcePoller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Fð{\É{‹\åÑ²\Å­',_binary '–\ï&jam¡„•\Úó½\Îð\Ûþ[hüØDòŠ\0 \Ý','',0,'?'),(_binary '¬72\è#É¯UV¼ò¼\Å','wp-content/themes/flatsome/inc/admin/options/header/options-header-layout.php',0,_binary '[=%j\\°~@nH\à\á',_binary '[=%j\\°~@nH\à\á',_binary '“ˆ4)op\â¼J\æ\å”\Ìð WqF‰\Ý6>ò*\n(5ô','',0,'?'),(_binary '¬:\Ã\rÉ¨–E\Ü\ÝF¿«','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/validation/context.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'üK÷µ¦¢xÝŽ\éke~',_binary 'T÷c<\Ó\î5E·;û®2\Ðka±\Ò³ý4ÿA„,ó','',0,'?'),(_binary '¬?\î ?,x·°ƒòx\äl','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-list/product-list-item/utils.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ôØ¸\ÂEz9?O÷n4Š\çú',_binary ';ð]¤WC\âd«ZE%s\ÌfQ|—®µŒí˜‡Ì§ª','',0,'?'),(_binary '¬A,;\r@,?Ÿb¢\Þ','wp-content/plugins/ti-woocommerce-wishlist/includes/pluginextend.helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O÷*hc\Õb©ôpI~',_binary '…2Jóù°Ý®j\èó™€øE\'d\ÌÑŸ\ÄøL\Ý\\hˆ]','',0,'?'),(_binary '¬A{†¿½É¾{y\Ý7','wp-content/plugins/woocommerce-multilingual/templates/setup/translation-options.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™¸+ŠÒƒV}ö¬\'÷\Å1w',_binary '»Y_¢¨TDK&Ä¡b;\áGRê˜²%l.1:¢\'‹Ze','',0,'?'),(_binary '¬Ioo¨Ô†5nu¤Ñ­¶ˆH','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õx\ä»6Fƒ\0f‘\á ù–',_binary 'Nƒþ^qó\ïyqÜ¯\r]¹Sü\ë\\\ãð[\ÎC{V§šy\Ðw\è','',0,'?'),(_binary '¬Nv\'‹\ÈJ¨i\Û\Ò,>‡\Î','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-base.php',0,_binary '¨#Œ\èÐ¤¨\\0“	\Ýd',_binary '¨#Œ\èÐ¤¨\\0“	\Ýd',_binary 'UETW2?a]û-†8A	Ë©\"áº¦a¨Y(ˆW','',0,'?'),(_binary '¬N\Þ™¬\Ú%\è\Ç\Éz\åª','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/ca.js',0,_binary '`Þ¼lOTY‘\Ýa‚>’%',_binary '`Þ¼lOTY‘\Ýa‚>’%',_binary '\á\Ô\ÉGÔ¨¤\Zù\Ã.\×ÔˆF¦£»;›5Ÿ¯\ÆTÔ\Ï','',0,'?'),(_binary '¬P_cˆò\"B\\\ÚX,g','wp-content/plugins/woocommerce-multilingual/classes/Rest/Exceptions/MissingLanguage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/¾‹ü\ÝÚªeÌ²*$Wa',_binary 'i\Z™\Z3©Z\n!{M¹²É¸bP¸\'\n±#\Ð=_>n?}','',0,'?'),(_binary '¬Zg\ÓUi1i\çÆ¾\äx\È=õ','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/AuthenticationException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦d\ïW\è,‚úXEE\æoñû',_binary 'l?õ™\à©)&&©¤\â\â\æ\ÓP\È\ÓP$@\Ú\\¹/ ','',0,'?'),(_binary '¬^2^£Tš:\ÈmJ‡ø:­','wp-content/plugins/wordfence/lib/IPTrafList.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UI\Ë&’” §ŸI',_binary '›a…k*a\r£‡ô\ÙtÒ·\Ì ½\ØÂ¾Ž^\ÔJ³O','',0,'?'),(_binary '¬bó0Ý€>j\ã¤\"«þG','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_ffffff_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Aa+JD$ø2Ÿ‚J”\Ú',_binary '¬/#?T\ï†iOLyv¦\íuš˜TK”°©É¤½·\\Ø»õ','',0,'?'),(_binary '¬jù%+«¦4\\„¤==?','wp-content/plugins/woocommerce-currency-switcher/js/orders.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Õ%\é¯\Í{\ß\ÑE\Æ\Ézwª',_binary 'Q,\ì\ÆûNù!‹¶\rRøÝ­F¤ZF¯üükr€ù','',0,'?'),(_binary '¬pN|ÇŸŒ€¯3\\@V©Ã£','wp-content/themes/flatsome/inc/admin/customizer/img/nav-icon-plain.svg',0,_binary 'žª\×\Í5Fm\Ï|ô\Å<3\áHP',_binary 'žª\×\Í5Fm\Ï|ô\Å<3\áHP',_binary 'm=\ê\rsD—\\\×d&©>z\ÙV4ï«´vIgP\âô¹H\ß','',0,'?'),(_binary '¬vlG«)¤w\Äz\ÒúÆµÍª','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-block/attributes.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\Å\î ³À÷\Æ\Ö\ïi€\Òf]',_binary 'ˆ\Ýb}€˜µK\Ì\Ä\ÓS0\ä_z+tmÂ—|\\gÿö\Ö','',0,'?'),(_binary '¬œ\è\ÛÚ¥õ	ª\Â\Û\È\Ï_šo','wp-content/plugins/woocommerce/src/Admin/ReportsSync.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç&ŒL®P¾z³ÿba«Hµ',_binary '›\Ð¤+ª{\ê¸SŸJY%\æ\"Á\0:Eù†\ÎUµB÷‹þN­','',0,'?'),(_binary '¬¥†{\Ù)#\Úr\ã\áot','wp-content/plugins/woocommerce/sample-data/sample_products.csv',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|ˆ*¹\Û\0õ³“,Á\áž\É\æ',_binary ';\0•™)¶\Âyv&\'\ïÿX÷ŒÔŽµ\Ù(¹À\Æh½h','',0,'?'),(_binary '¬­¸/\ã\Ù\Ç±Å…\Ça…”','wp-content/themes/flatsome/inc/structure/structure-pages.php',0,_binary 'òoHd›\Æ[¸\Ì\ZÁ‘ù¨ö',_binary 'òoHd›\Æ[¸\Ì\ZÁ‘ù¨ö',_binary ']\Úð-”‘Ÿg\×\ÕIY–Ó„n­þ`\ÎÉªª™~T\0f','',0,'?'),(_binary '¬®ˆz	š`\Ù\æi^®tÿ','wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/beta-features-tracking-modal.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\n\'\Îz\Øú¥\è/¾w$M9º',_binary '·•Sõ=9K<w\ßÐ¹\íò\ë3†\×3·$\ï\Â\ÊXø','',0,'?'),(_binary '¬¯,ˆ)µnfh\Ìô8\ÑE|','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/et.js',0,_binary 'ÿ\Ö\\ô\ÝAmøA~\áÀ¢\ï.',_binary 'ÿ\Ö\\ô\ÝAmøA~\áÀ¢\ï.',_binary '\è¸ku€P;\ä³	ö\Üñ»üŽýz­£b/\Z6jSy\Ü','',0,'?'),(_binary '¬´e—^«¦ÁZ\àÑ‚{µTB','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/shipping-location/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\ã<–\É\Ýð–¶c¼‚³\"ü)',_binary '·i§-±kÂ½\ÒlAºpP\ã¼rž|‚\ìY\ågÿ','',0,'?'),(_binary '¬\Ä\æ¶.h\×}.¥y\ê','wp-content/themes/flatsome/inc/shortcodes/ux_video.php',0,_binary 'MYü\ìg\ÆjA·K\É0^b/¦',_binary 'MYü\ìg\ÆjA·K\É0^b/¦',_binary '¯¦\Û.°è©‰‰¨zŠm=B\×:\"­K½qj]\Ä5Ò²','',0,'?'),(_binary '¬\Ä)DÓ£‰L°ž}“°¨','wp-content/themes/flatsome/inc/shortcodes/ux_countdown/ux-countdown.php',0,_binary 'ng1¼\Íh£\ëDgö\í\ã\Ó',_binary 'ng1¼\Íh£\ëDgö\í\ã\Ó',_binary 'õú9WsË\ê&È­†²\Û6xž÷\å\Û!„ˆ[\Ó\ê\ÛX-Á','',0,'?'),(_binary '¬\Þ{p\Õw[w_KW\Çmt','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-slider.php',0,_binary '1\è—L±üŠ-\0Ž˜Ð±',_binary '1\è—L±üŠ-\0Ž˜Ð±',_binary '\Î\Âv[F›,\íl\î_\×\é»\Z1\Ì÷Ù‡\èU\Æ5Ô¬]õ','',0,'?'),(_binary '¬\æ\ÖD)L½þ†««\ã\n(’','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductTitle.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=F’A.\æ”Q\Ôed\îY',_binary '\Þ$‡Ñ„rG\å¥[z²eL:ˆ±#¨\\»ak','',0,'?'),(_binary '¬\í“_üÂ£þŒ\Ô|\ÓK\ëû»','wp-content/themes/flatsome/template-parts/posts/layout-right-sidebar.php',0,_binary 'šHJ\ë„>§þq	0ª',_binary 'šHJ\ë„>§þq	0ª',_binary '{M\Æ‘z!\Òß»:0_{ò«u\ïò\0\ä*EkdZcòf','',0,'?'),(_binary '¬\îÑ°Az{]Wj\Ú®…‰','wp-content/plugins/woocommerce/assets/css/jquery-ui/images/ui-icons_888888_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0Øƒ\í#_£û•5E%{ø',_binary '\Ýz07Xñ–I“\Ó0\Î%g\n6VaqDP‡<òÀÚ¤W\"ö','',0,'?'),(_binary '¬ñO™†4\Ê\æ\á…ôù±%m\Ê','wp-content/themes/twentytwentyone/assets/sass/05-blocks/navigation/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ló. \à\0\ëoX°)\'\ì\r',_binary 'e\É\ã2M¥B\Ã\íü\â\n\0¢­7Á0öZz½F%\Ës','',0,'?'),(_binary '¬ósC<‰:ƒ†\æ<\ÎA\Ð','wp-includes/sodium_compat/src/Core/SecretStream/State.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é\ëõ\é:\ÇZ{\ãð\ë5²o',_binary 'Áú\Ç<\å€s\å6´÷\0,	Raô­uhXð\åcð\Ø\×','',0,'?'),(_binary '¬ú\ÉQ07è™¯ÿ?§k§O½','wp-content/plugins/woocommerce-multilingual/inc/translation-editor/class-wcml-synchronize-product-data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hýì©¥\Üb´nK[³oµ\î',_binary '\Ý/¬µ3S\ç7´n¨a\Â\â–RŽÐŠd\ée\æ¸ñ6\Òe¿','',0,'?'),(_binary '­\ß|P\Øð1\ç÷P¶öÞ¦0','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/active-filters/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\ã\Â:\Âi7l±\Ö\ì‰Bo',_binary 'Y?^*øX\Û\ÔtpŒñ,Ñ‰\íË‘ß­\Ã\Ý!~%ª\rs','',0,'?'),(_binary '­\ÓGŒ\àžO|}‹\é4œ2]','wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-menus-wrap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒæ©§\Î\Þ\âbœ\×`Wi,\É',_binary '\Ã\Å=—¼•—õ\Ü%Kø¾µ‘\ZÓ‹1²^‹(CZh•%','',0,'?'),(_binary '­\Ñ@\Ó\àà´ƒ’\Ún•‰H','wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/template-placeholders/single-product.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n.L%‚º\Ñ`½ö\"„u',_binary '0‚d¥ƒ\èi\ÛaX\r\ÎOýpæ«½A™’	ødÉ¸','',0,'?'),(_binary '­gO¡»\Ë……DØ´e/','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/attribute-filter-frontend.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P@\nuJ<\Ñ÷ \r3\æ\×',_binary 'AI\Æd’&tóœ\Ò>·»hx[Î¹b¹–°°c§Çªi','',0,'?'),(_binary '­¶š.\íü‡X\Û*\'\Ö','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/pl.js',0,_binary '¥\Õt=urþû\æ\Úbdp',_binary '¥\Õt=urþû\æ\Úbdp',_binary '•¯Qw\nM’#µÔ˜¡ók{t\ãÝ˜Þ‘z\nÿ\ã@r¿³','',0,'?'),(_binary '­ \ÈJ­\Ê¬›Š+Ñ•ƒ\é','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/components/resources/action-button-menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\êð\á»fr­$\Úø´ˆp)',_binary '}F“\rX\"$…\ÐwY—u	ƒó\rH\í7NXRDE\ê\î~','',0,'?'),(_binary '­)[\"J¹H”\î|\çjkŠû$','wp-admin/js/customize-widgets.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®±ÿ’0Ø›\É;q¨\É',_binary '‰°¤[\'0y\Öý\Û\ÝW\Ý¿xû\ß\Íp™*-t-Idû','',0,'?'),(_binary '­-:Á…ösŸŽ?7ŒVa','wp-content/themes/flatsome/inc/extensions/extensions.php',0,_binary ' |*\ÔaýÎœwô-[‚4\Æ',_binary ' |*\ÔaýÎœwô-[‚4\Æ',_binary 'œYz\ÓC$MÐ›Žpœ€uOC•y¾\ãR(¨)rY\î‰','',0,'?'),(_binary '­0l¦\Zï—³4ƒ¤\ä\í','wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-product-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚\îJz\á–ô\ÛA°6»@ø',_binary '@™-G÷Pò\Þ*®K:HIr†G>³\â)nõ­Uy´','',0,'?'),(_binary '­1j“¡k\ä†Q“ “÷\ÔW ','wp-content/plugins/woocommerce/packages/action-scheduler/lib/cron-expression/CronExpression.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§Ú\'¢÷h\Õ/ª;¿\rÀ\É',_binary '¶\Ü\ÜY\ÑU-\ÝyE8ŽdUnH4®H3Š7Dn‘ó±%\è','',0,'?'),(_binary '­;(¹@ú<™\ì«7À','wp-content/plugins/woocommerce/includes/interfaces/class-wc-importer-interface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'à¯³…\Â\ä”P\Ù\éQ#õ&',_binary 'yr¸@V:Jªª}¥!(Rô¯Æ­j\ì“\Â\È=)“\ã—)N','',0,'?'),(_binary '­?FÏ¸½\ë¼¥A†€R1\Ê','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Util.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™p‹˜Ô¦d0\Ä\àlN&7+',_binary '^s\nù@G,¤Ú–\n;|3P	nÔ”/\rzA\Ý\"\nd','',0,'?'),(_binary '­F\æ\ÒN€¦^Nˆ&=‹Ý”','wp-content/themes/flatsome/inc/admin/customizer/img/layout-left-small.svg',0,_binary '/\äµtgŽ|Á¥rŒ½¦‡\é',_binary '/\äµtgŽ|Á¥rŒ½¦‡\é',_binary '·ÁQ\Ñó\à¬Inº¥^\ß\ïA\ß7¯:„\Ó{\\\è§¥{w','',0,'?'),(_binary '­G/½¶\Â(\Î5pp&Ž\\\Ï','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\".\çOù„œ	•Á\"\ìO-B',_binary '\Ã`Åšç¤ôƒy\Îb´¶¢k\ít¼\Ê\äŒB±\èI©\Ô','',0,'?'),(_binary '­H\î\å)¶\Ä-T\ÌuZr |','wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status-tools.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'DzöÅ¯\ÇU‚G-m\àÀ\\¬Ž',_binary '¨\Õ\r»~ŠxU\æˆN½z	{€öU\Ø\Ú1	\Zº[{^…zõ','',0,'?'),(_binary '­JTV0D·\îoTAï¼»@¡','wp-admin/options-discussion.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\è°ø\ê{ðc\×ø(“ƒP',_binary '–õ\Ô\äK\ÄcørEIfR¨Nt‘@o%	£œÛ·Ê»x\êE','',0,'?'),(_binary '­R†\Æ\í£N³+)]_\èDµf','wp-content/plugins/yith-woocommerce-wishlist/assets/css/unminified/themes/storefront.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®j¸X5\Æcòo432­[÷¡',_binary 'ü@-QMŠ\Ä\çþ­\nYm`JöZE-\ÒMW$\Þ\ì','',0,'?'),(_binary '­V:òò€š¤€¦’Ù\Í','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-select2-multiple.php',0,_binary ';\Þ0Z@1—\Ñþ9öR\È',_binary ';\Þ0Z@1—\Ñþ9öR\È',_binary '¶À@8¼´FgI\íõ^\æT%\r	\ç\ê8%rÿz','',0,'?'),(_binary '­]o&Ô£\0g;gO¦ß½','wp-content/themes/flatsome/inc/builder/templates/blank.php',0,_binary '¤•\Ùw{®K«\Z\Ù\Óh´',_binary '¤•\Ùw{®K«\Z\Ù\Óh´',_binary 'T¶&|”U†Z5:²™\å\Ðâ…·›pv7½Í„*(Z2eº','',0,'?'),(_binary '­dß¬fBpùaBÿ\Éf\n','wp-content/themes/flatsome/assets/img/payment-icons/icon-paypal-2.svg.php',0,_binary 'D\í\Í%\Ä$·¥Þ»0h¥x',_binary 'D\í\Í%\Ä$·¥Þ»0h¥x',_binary 'ú™c\á\ãþö\É\ï9„i\Þzp³I\ß\é²3Q©e¼g\Í','',0,'?'),(_binary '­fjlü%ö\Ä\Æÿ\r”pcp\ë','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-subscription-factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÍS¬§v\ã©ÿ\ëÙ£ü®\Ó	',_binary '¹øYX\nþH€£\Î5õ¢k5ü\ä\Ö\Ä\î\"\ËJ\×Óº;g€','',0,'?'),(_binary '­y \ÓÁ‚ø}\Æ.~öÿB','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/loading-mask/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷\ÔSõÀ£»nÍ§\ïuF¹',_binary '\å‡¸gŽ\Äÿø\Ù#\Äh;•\ëýö\Ë¾ý´]\Ë5ñ]¯J','',0,'?'),(_binary '­ƒý¢Àü\áeôC,‰{mµ','wp-content/plugins/woocommerce/assets/client/admin/chunks/4854.style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡c£„¶\Îx´]*Œ5O\Ê\Û',_binary 'Tj³\åL\è¨32Ð‰†\Ï÷9¦õ»òP\êu\çcý®oð','',0,'?'),(_binary '­…,©u¡†òs‚­CLú\Ë','wp-content/plugins/woocommerce/includes/react-admin/feature-config.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z[\n\ÖXo†«‡Ö­HŠ&',_binary 'ƒ(>l\ß%®;Jœƒ³Å¥‹ü8\ä¦Ö“Öª»Žo\Â','',0,'?'),(_binary '­‡‹‚S\à8M\ßC‰¤>\ë\Ç','wp-includes/js/dist/block-serialization-default-parser.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ëñø£:\Î\å	½\æ¬Á',_binary ')24¸Na²K\Ì-°\éóùdµEò\ÎýÊ‚	¢\é€','',0,'?'),(_binary '­Š¬›ˆdD’´»ª+P‰','wp-content/themes/twentytwenty/template-parts/modal-search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÚF:U“£k+ûô4?',_binary 'x\Þ2•Õ¡ª_\0\å?\Îqó§q•u)—T|/\\\Ð(','',0,'?'),(_binary '­›D2\Ýo\ìaw\âDE\ÌE\Z','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/checkbox-control/stories/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹\âZ±˜f8\Ê\"o6ô',_binary '\Õ\ÏoÆ•\Z¬{G\æ\';hô\ã\éþ\Õ6\0D&¨u²','',0,'?'),(_binary '­š•S\Çh\Þ\ë\áS\Ð%Tzø','wp-includes/js/mediaelement/wp-mediaelement.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ô%/NqOR\ågûÀ+\\\í',_binary 'F}\Z\n\åõ\êv†nò²`¥\çZ!¶T‡®WŒ°™\Ïs','',0,'?'),(_binary '­¥\Zsj\Éú\Äv‡\ä rQ¨š','wp-content/themes/flatsome/inc/admin/options/header/options-header-buttons.php',0,_binary '+o\Îj”¾¿\é\ßVÂœ°Gd',_binary '+o\Îj”¾¿\é\ßVÂœ°Gd',_binary 'x8  3n”û’~\×S	Œ¸\Øü\ïs\Ï\ÖZ!\ê;\Zl÷','',0,'?'),(_binary '­²VÏºz#º\Ú\Ùm)ÿ¶','wp-content/themes/twentytwenty/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	m¤\æG§Ž“üE:P',_binary 'k)¤}¾WRŸ%#&)\ãù§±f§z\è;ñÁ\ÛU\Ø?:','',0,'?'),(_binary '­¿þp[_-n¯‰ðS\Òj','wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/curling.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\çŒ!…?bNü\Õ2:+²,',_binary 'm2òUË²·¸Œ\Ö\ÍH¤u”Ã±%\ÕÇ—²óõ','',0,'?'),(_binary '­\Ã+\ã‚\â|,¿Å‡W2-¼','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“\ì\Z…\Åx©<¿4è€‹\Ë',_binary '¹j\Ì<«\ßK[\Ä\Ç|hr‚ùW\r\\\Ñ\Î±D¡³nq','',0,'?'),(_binary '­\Êbe\ïe…¹\Ên\Îð\Ùt\Í','wp-content/themes/twentytwentytwo/inc/patterns/page-layout-image-and-text.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ç:‡ƒ¼[Íh(\Æ(}ÿ',_binary 'ò“~¹;ƒM3H\Än\áš\0\Ú{²z_\è¾;¤—’R(\Ý\Ó','',0,'?'),(_binary '­\Ì\Ý\"Ü’³÷\Ó\ÃnzD','wp-includes/SimplePie/Caption.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÜŠ\×\Ñy’uŒD\rÂ£¬',_binary '\'\ËW1Q½5[Û‹\ë)¿\Â\r´8Û5:ò\ê?*)K','',0,'?'),(_binary '­\Ñ\ÑWdú;C\r¾\Ä\ÜO®','wp-content/plugins/akismet/views/notice.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ús‡˜“CÓ—~ô',_binary '\rsGÀ}<\Ä\Õ}-´²œ‰=Õ‘µ¦ñSkI|ô,ž','',0,'?'),(_binary '­\ÜË‹\Ý_o!\'\Úuœ\áør','wp-content/plugins/wordfence/views/common/page-tabbar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\è\Ø\ÂVdÐŒX@q›È™\Í\Ä',_binary 'Sþü\ÐØªA\ä\é\àÓ¤\Ë@5°ú\Çò|ˆ~ú?KBK9U','',0,'?'),(_binary '­\âZ\nu\ÕoK° ¯¶T;e','wp-admin/images/list.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>–½*\âÀÓ³\ÑSñ\Ã',_binary '\\w«»T[…=°b­aCk©…ª;c£¶À','',0,'?'),(_binary '­\åD\êv‹ZSðõ\Ç$b¦','wp-content/plugins/woocommerce/assets/images/stripe.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é^Ù‚\Ïs8¬Bô,\Æò?i',_binary '½i2<óMh—\ëJFûO7Vÿ°óÙŒ\à””\Ò™\îP=','',0,'?'),(_binary '­\ë\Û\Ô.W\Öt_D´½\Ñò3‡','wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-poster.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~B,œD\Çq6€±”$7‚2…',_binary 'Z_ö0­_Z‡Ã£\ÛÓ’\ài’xEüÞ‡5õõ¸|Q\×','',0,'?'),(_binary '­ð\Ó ÿÛµ‘3!xm€','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-orderby-control/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w4nü«òŒyh\È\à{[Z\í',_binary '†gv®J ˜ó´±¡O¾œ\ã\Û\ìÞ…eHd³E˜ø\Î','',0,'?'),(_binary '­÷\×*@+\Ô…\Ë*Lð\ç«','wp-content/themes/flatsome/assets/img/payment-icons/icon-twint.svg.php',0,_binary '´‹(S\0r\âsè™—}F',_binary '´‹(S\0r\âsè™—}F',_binary '\Ä&\ïVô“°Œ\Ò\åŽÜ¯\ÞrÁ\áx¿\à\ã\Åú“øýv#','',0,'?'),(_binary '­ùll¸„ƒx\èL,7W\ÊN\Û','wp-content/plugins/wordfence/views/common/modal-prompt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0J\Ù.H[|\á—E3$d”',_binary 'ˆ\ZÀz%\ìª\Ã\ê;\ç\å¯ú—o©n\Ð\Þm&±\Õ\Ê÷µ¯\Â','',0,'?'),(_binary '­ü‡p\Ò\à›m\Ë*E°ŒòÛ±','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/proceed-to-checkout-block/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÓD\Û\Ì9Ø‹|D)‹VÀ',_binary 'j‘v\îÜ±y¸J–I\Ô1x²«wÌ ¯–\Õcc€„ÿ\í\"\Ör','',0,'?'),(_binary '®4)tk‘l#†<\ï\ÝU\á','wp-includes/block-patterns/query-grid-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\æÀ\Éõ‡\ãJ\ÕB\á<«˜',_binary '¹sAµ>\ß{‡k\Þ/PxYp*ù´„L×»è†ºÏ²½†','',0,'?'),(_binary '®Î¬t{³N`m¯S\Ó','wp-content/plugins/nextend-facebook-connect/admin/templates/fix-redirect-uri.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”Rj\Ø\\¿\Ý\ÊŠ\Øa”',_binary 'Gq]\'lG\Õ.«\ê\ìõHN^\Ên\ÉðÛˆ¥\É\Â3\ë„','',0,'?'),(_binary '®\àV¬ez\é\ß^‡\â\Æ,lM','wp-content/plugins/woocommerce/assets/client/admin/payment-method-promotions/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"1ó	Š\æ\"\Êo™ó;óp¢',_binary '\Ö_\Æd\Ï\í/DnJ\åH\Ú\×d×±\Ó4±\\”f«P–	‘\Å','',0,'?'),(_binary '®	J\ç8\ç\ØÇªœnV	p','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Îÿ®!~\Æ\'ÁN‘VD“',_binary '\ÎD\Óù‹¹‹n\Ý\â\Ôo6’\ÌYÇ‹‘J	\Å6ÖaSu2','',0,'?'),(_binary '®\Ì\äUy/ÿ*%þ\åý;','wp-admin/includes/update-core.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñ\n\ÅX]Žš\ÈÜ‰3L',_binary '\Â^J\ÕÑŒ½-1–Q³i‚“þB£\Ëd[‚>•ƒ«','',0,'?'),(_binary '®\rEö\ÈU\ÏœøÍ„\Þ\Ù','wp-includes/images/wpspin-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mS¬û¬ý\Ð\Ûy\"C‰\Ä\Ò',_binary '°½66S¯X¨£±¹þ±6O}\É4>ˆp¾\"\Ã ”\'1','',0,'?'),(_binary '®®<	ð\Ð1v:·\Æ\Ñ$','wp-content/plugins/yith-woocommerce-compare/assets/images/colorbox/loading_background.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|–¥KŸyÔµÂœ:S‹ƒ',_binary '\ë2Ú¹o‘}\ÖX’ih4D´v©³&Žˆµ÷\ÜN','',0,'?'),(_binary '®W«‡µPæ—ƒ^qðy€','wp-content/plugins/wordfence/lib/menu_firewall.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©œ\ã5X¡ðP•úºK›¥',_binary '\èS\é\ÏPŠ…AŽ_\ÇlñWý±2„•?#_\rQ\âx—','',0,'?'),(_binary '®!A\æo°®“œä»ƒp','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'š%R\âž|@Û†±®¬«\ÚH',_binary '\î©8qF\rmþ\ì¢<\â£˜…Z_:V§ök{Î','',0,'?'),(_binary '®$ |doß”‘\×\Í\è\í\ì','wp-content/themes/flatsome/template-parts/header/partials/element-button-2.php',0,_binary '\Â\ÌlV\Úó`~S®¬\âiù',_binary '\Â\ÌlV\Úó`~S®¬\âiù',_binary '=;Õ¤|ˆa^pt¹ f™0\Ý­O\rP±A£…ˆ\ÂM','',0,'?'),(_binary '®._¼\"^\'¸òk±¸\Ð=','wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/payment-method-promotions.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ð	OSóø5´\ïÂ¼g»\éU',_binary '\Z’c™a€Ÿ|-\ÏH\Û\Z\ä‰\åñ\Ú\Ö\rR+÷æ– ¬zø<','',0,'?'),(_binary '®.ú©\Ý\Üþ\ÇvFcu\ìzA','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Payments/Integrations/CashOnDelivery.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼ü\Ý{\'*\Æc®Tq°ñ{',_binary '9Ö™\ÅqB‡?\å&zrŒ\ÚÐ„¨ú9„…\ßdtMÇ¢','',0,'?'),(_binary '®:®\\¿\ê\â\Î?€3÷·$','wp-content/plugins/woocommerce/src/Admin/API/Reports/Variations/Stats/Controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\è\ã|fYH,d†\å%\è',_binary 'pµs‹6(£78Ý›Pø—,™kLöJ‡\0l£ž½¦E\é\Ð:','',0,'?'),(_binary '®R\"\Ò\í:t/¾\Î\ÙSX\é','wp-content/themes/flatsome/woocommerce/single-product/product-thumbnails.php',0,_binary 'øû¯¦\Õõe&yŒ¯²R\ê',_binary 'øû¯¦\Õõe&yŒ¯²R\ê',_binary '+\Ó~˜ü\ïn~rKþ3\rˆ\ÔK%«þ=-–W\åe\ê\\5\Ô','',0,'?'),(_binary '®W9Eö\åµ\È ,i÷\Ä!%\ï','wp-content/plugins/nextend-facebook-connect/providers/facebook/admin/buttons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\î5\ì¦HB\Ëq\0\Ä\Ó\ëð&',_binary 'ž2Ù–r÷q\×s±òtt\rq\r\Í?¯\ÇÏ¸‹¹d‡&†Ž[','',0,'?'),(_binary '®h/Í”žj—C\ê¶\0\æn','wp-admin/includes/class-plugin-upgrader-skin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[”pT\á0$ž˜¨±\Þ.…',_binary '?ˆt\ßüD~#Í˜¢–/X˜#G/¡\í\æNf\\¥›ÍœgN','',0,'?'),(_binary '®uu‡f[žúaPÖ§¼$','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/css/colpick.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\åu‡W[Y\Ã\â×³Á˜*',_binary '\Õo”·—˜+ñENÑ‘G\à\Ór\ÂN\'u@ŒE\è›\Ðr\Ù8','',0,'?'),(_binary '®xˆWº‰2eöuv\ÔL','wp-includes/customize/class-wp-customize-background-image-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ê{f\Ò&›™E\\$òsX\Ô',_binary 'R\Úv3úŸ¼¾~\Ä\Ð\×\ÞðÀ\Ý|.OôLŸt\ÐN`Ñ®\Æ','',0,'?'),(_binary '®6« œ?\á›^o\ï»#ý','wp-includes/sodium_compat/namespaced/Core/SipHash.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r-\äe\Åúör^©!ƒ~',_binary '…\î`”ƒR\élÔ¥Lz\ã?i\ÂÄACH\Óóž®£Py\én','',0,'?'),(_binary '®ˆz}ª»6žy¬Ž¤\Ë\r½','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/access/icon-256x256.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\ãÄ¬|þl44Q\ÆÀ\\',_binary 'n\â\ØDŒð¶Òˆžrð\ÓÁ\æ-zR\éH&L\Òi/e\Þ½\Í','',0,'?'),(_binary '®‹ž/÷\à’ô\Ç\ÝMÒ¡h¼','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader/class-autoloader-locator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô\Éó\áC\Ô{Î–™þ“s',_binary '\Ü\ä	€ýS\ä~¸\Ë\n˜–\'µ/w+\n6þæ¿Œi@1©õ','',0,'?'),(_binary '®‚R	¿(¼,	!)\ÎZ','wp-content/plugins/wordfence/waf/pomo/mo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D‰œ6û\æ~.’\Å\çS\ì[',_binary '°\Æ\\\'÷_F\î u\æC)CR\"(C¹O\ÛYW\Ï!ž\È)','',0,'?'),(_binary '®œ™þÿ=\ÚF™©°v$k','wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-done.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²\n¯Z®\Ë~Z„',_binary '\ï{«9’D†l¾Ii\Ñ\Ì2g”<AQu+\r:\Ì\Ù\Ì','',0,'?'),(_binary '®§¯“U\à€\æ„SS<\Ë','wp-content/plugins/woocommerce-multilingual/inc/template-classes/multi-currency/class-wcml-exchange-rates-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õß‡v_õ¦\Î\\TZÃª¯ó',_binary ')°I—N»ê¸‚3t\r{\Þ3}\ÜoNq%G\Óm\æ\Ø<','',0,'?'),(_binary '®¨K}{X©\éUG9<p\ß','wp-content/themes/twentytwentyone/assets/sass/05-blocks/media-text/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qûUL\Î4zš˜]\ãÿZ&',_binary '²›oyJ(B–\êf2H\'h\ã!³\'* É¹*÷‚','',0,'?'),(_binary '®¨šƒÀôøóÝˆ3³+P\r','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Country.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'û”¸—,0Á§Z%\É­\æùš',_binary '\íg^ô¹Mµ\É©9=&*­M{°\ÙXb»0*\Óu“¹\Ù','',0,'?'),(_binary '®­´øý&@pˆ\Ó\Î\ÆÉ—','wp-includes/js/dist/wordcount.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L6\'¸\ê{G\íp(\Ù\"(\Û\ís',_binary '‚Q\ì«\Ì@\æ¬GCŽ^#»‹^Š…o„¸PM,EÔ…^C\Z7','',0,'?'),(_binary '®¹?G:¢¢d„½ÿfÚ‡','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/Batch.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥‰j\ÞQ@\n›sDNM',_binary 'HxZ€@dgI¦tW1\Ç÷©Z\Ë\Ónq\âS«	}FM\Ø','',0,'?'),(_binary '®»Î¦Hcñ^ž\âû°)','wp-content/plugins/wordfence/views/scanner/issue-control-edit-user.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®†­\Ø\Ý\â\'\á{=Íº',_binary '†–\ïR¡¹³“÷\Ç_fW{*3•\Å\ê±\ÅÝ”	±\"\Ë/','',0,'?'),(_binary '®¿æƒºn\ßJ\r—¶Vò\ï“-','wp-content/themes/flatsome/inc/admin/options/footer/options-footer.php',0,_binary '8™b9KÜ\ïTm’ò°',_binary '8™b9KÜ\ïTm’ò°',_binary 'Œó_r¸,‡•\nsŽŸ‘\"¤\Âø¢\íó)&-6†\îS^o\×B','',0,'?'),(_binary '®Æ°/“”»±õOžO™ž','wp-content/plugins/ti-woocommerce-wishlist/assets/fonts/tinvwl-webfont.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@Ž_0}\Ê	Ì¹Æk\Ù',_binary '\ç.²`fùm`\\ëž©3«^]\êHh5¸J\Â\Ñ_öŽD{8','',0,'?'),(_binary '®\Æ\ÚC—9Ë›T2FM‘j\Ú','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-taxes/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡`¦ºu\ï2»ºsò\Åö]\ß',_binary ']5¤4™’e¢÷º\'Oj4¨óþŠÕ€h¥(^ly…\×G(','',0,'?'),(_binary '®\ÕR\Ç8^ž¤œ‰û\nÉ½\él','wp-content/plugins/woocommerce/assets/fonts/star.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Zºogõ¨\çºù¼ZV˜$\âº',_binary '\êoj?ñ§³\æ<¼¹\ß\Æt+Q\Ì\×/Ø¿\Î\Çi\nN§w½','',0,'?'),(_binary '®\ëþ§ª\ê\âsp›\Ð\äeü','wp-admin/includes/class-wp-ms-sites-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ì²¬›\ÏÃµ_%9ƒ\Ë\Ð0',_binary '„°ÿI»*\éz û;Ï„\0mÿrº@ˆDh\"\èU','',0,'?'),(_binary '®öº@Pw\Óy\è\Å\Ù3‚Ks','wp-includes/blocks/site-tagline/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\ÂF¶•Ù‡s\×[’mH”',_binary '¡½B\nÃ—\ÃÈ¹F)|6=9G€†¿>ƒ»n\Ì`žu\Z','',0,'?'),(_binary '®û	ýÓ­gÈ±!n‘P‡','wp-includes/IXR/class-IXR-client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Çaœ\È\ÃJ€}‘ž!\ÅW\Ì\Ê',_binary 'Yw½\à1\æôv.£G3eñd\å†¸Ã„¸­y`LR	]','',0,'?'),(_binary '®ý¬Êœ\\\"±\â\èz@*>\Ô\Z','wp-includes/blocks/site-tagline.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ2oH\"Ïµ8Œ¡ù\î­zw ',_binary '‡†µÁüh\Â\Úð¬9\ßDï¾P\"\Ú\ÝÏ‘\ÂhfŸ¬f%¼','',0,'?'),(_binary '®þzœ··Î›óAÞ»ð','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/dark-box-left.svg',0,_binary ':o\ä\è×Š”SÀ‰c–\ÝC',_binary ':o\ä\è×Š”SÀ‰c–\ÝC',_binary '\ÐÒ”w81\á°x¶S–C¿\êä©©p`,ÿ‚‚­>tk7i','',0,'?'),(_binary '¯e•\Ü$\'ü·LQÓª\ä:','wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/mixins/_breakpoints.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Å]t45\Â\Ç÷a\ÆÁ\Ë\ìwm',_binary '›[}²8©/½ÜŸùn¯\ä\Ìr\Ì¡\íjªŽ\Ú]\Ó\áZ','',0,'?'),(_binary '¯)iJ4‚¹O\\w>r6','wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/options.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡0p\Ì\á\rkX\" \æ«',_binary 'uñô\'Dó5_½ùE\ÍD\é¯dXž\ã\Z\Þ=±”\ÞÛ±³','',0,'?'),(_binary '¯\ni_¿a*„‰>½dnP','wp-includes/blocks/post-excerpt/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›vÀ1\Ú,Í¯eÜ’ð\Ó\Ê',_binary '”WÞ»i˜¨¶7ô5^gDn~Q\Â\"5Q WÉŸ„','',0,'?'),(_binary '¯\r\î`’«­kæŽ‚!=\ë','wp-content/themes/flatsome/inc/admin/customizer/img/nav-tabs.svg',0,_binary '\Û0²N6;ˆ´ýy\ÎP\í™',_binary '\Û0²N6;ˆ´ýy\ÎP\í™',_binary 'efõTžg‚4DÊƒ(Hª¾_9(\ÕwqFI\É\Ó\ä‹','',0,'?'),(_binary '¯\rT©¸±X\Ë\î ü³\á[','wp-includes/php-compat/readonly.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f›7£\éŒG9¥Ð“Ue',_binary '\ÙÝ¢\Þ70‚½ƒ{\äº\Ü\ÐõQa¥}ŽØ—»4l„\Òrµ','',0,'?'),(_binary '¯-1ð8ü;§Tö/X\â©]','wp-admin/ms-sites.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f3¹¥¿ˆ&S²©7F76\çÁ',_binary 'øˆ\Ý,ü$˜y¾n)R¶€Hg¥®„h{\Ñ$\×™U\Ð','',0,'?'),(_binary '¯-pú,\ÞË•µ-®üø','wp-content/themes/flatsome/inc/builder/shortcodes/ux_product_categories.php',0,_binary 'Â­\Í\Ú\ÒÜ…t½—\ïžx¶',_binary 'Â­\Í\Ú\ÒÜ…t½—\ïžx¶',_binary '\r\ç\Ü\n‰uw…À¢¼I.(HóòXV\'4}%Îº\ZÈ\î\Ú','',0,'?'),(_binary '¯2È§Qƒ-¤8® ¬ûM	','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/error-placeholder/stories/error-placeholder.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õ“Ÿô¿…Nù®9B—\Êz',_binary 'O\ÇÁ\ÕUŸBk#pŽZ*¥~L[Ÿˆ“„ôÃ\å','',0,'?'),(_binary '¯B.\ïu©§\Þ tº	hPw','wp-content/themes/flatsome/inc/admin/customizer/img/cart-icon-bag.svg',0,_binary '>0†Áý¢Xª…šl–cE',_binary '>0†Áý¢Xª…šl–cE',_binary '‹~ø€t§~¥\Òkª¼¢±žœZ\èg§\Î\Íï‚¡\Ø£\ÐÁ','',0,'?'),(_binary '¯D«D\çCE§0&´{\Ó\Ð\îª','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-multicheck.php',0,_binary '6f\éøq³±p[¶C\ï}\Î',_binary '6f\éøq³±p[¶C\ï}\Î',_binary 'vlæŽ‘\î‚~\Î\Ã$—µ¿+UÃŠs[¨d\Ñ\Èp\n\Ï	','',0,'?'),(_binary '¯H4\\µ\ç\á\Ü\Ó>{\ÐrV','wp-content/plugins/ti-woocommerce-wishlist/integrations/wpc-variations-radio-buttons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`±\í(\éé ³`6,Bòx',_binary '’\Íòû\Â»ŒP‡4\êK.g¿ý»G_\Æ` ô÷¡\Ë)k\äG','',0,'?'),(_binary '¯H[>ó\åEÁ¦u\ß\ïuC\È\Ñ','wp-content/plugins/woocommerce-currency-switcher/css/images/ui-icons_cd0a0a_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']ˆ\Ô<\ï\Êog¥1mf2',_binary 'K7¥z\r\Ó\ë\ÆhÿcSÕ‘\Ö-¼ a¢b\ê|ö•Cª\r','',0,'?'),(_binary '¯J\ã\Æ[\íŽ(N¹·X\Ñ\Û','wp-content/plugins/yith-woocommerce-wishlist/assets/js/admin/yith-wcwl-icons.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾\ì\àòy	`†s„\Ø·R–\â',_binary 'i6\ê¨ÕŠ\ìo8ã“ \ßC¤e(X\í\Ë\'£¬\ÇSñ}Iu\î','',0,'?'),(_binary '¯Kž¥\ì4\Þ7\'\éRh?¢','wp-content/themes/twentytwenty/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\çŽ\ß%I	\ßÔ¡˜\Ê X\Ýj',_binary '\ÏØ½®c\\\ZZÿ7mü\î¢{k\\\ãÚ€€\ÍEY\î','',0,'?'),(_binary '¯[¯Di™@\Ê^­U§§','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-guards/function.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°G¥ðN\Â*N\Öt ýeÉŸ',_binary '4Œ\îA\Ìde^ò\â¤-e}| ›!c‰8ðz','',0,'?'),(_binary '¯g·4\ëÉþ…;Š6]°\Û','wp-content/plugins/woocommerce/templates/auth/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\n¢U°Zmù^\ç9',_binary 'Çµ‰Kxt=©ö¹\ä\ÑOT\Ûð•\ÏT$V£\n‚\Þ\Ä','',0,'?'),(_binary '¯j\Ð<M½Dd±—þ\î4m³','wp-admin/includes/ms-admin-filters.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²\Ã\á;\æÆ¼z\Íg¶L’Ž¬',_binary 'Œ\Út\ãMp²\Ø\èQ\Ý8=\Õ\â~bw\ê¯\á\Ä\ÇÁ/úø¥','',0,'?'),(_binary '¯p„-#\ÆmÂŒ—ð¹7\ÞK','wp-content/plugins/woocommerce-multilingual/classes/media/class-wml-append-gallery-to-post-media-ids-factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\É~\ç¯\í\ë3 ¢-²À’*',_binary 'òSrŽSW=n\Ñ\ßn$>§š¹<\Ùô‚^PŸ€»','',0,'?'),(_binary '¯rÂƒ{xˆ—)‰*k=o','wp-content/plugins/ti-woocommerce-wishlist/views/wizard/step-processing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B>‡{\é¤\Ê\ËEk¥k\ìz(',_binary '-=°KV¾7>\"·Ž_Mõ­ƒ`>\àÉšƒÁ1kQ\Û','',0,'?'),(_binary '¯x—@`7ao‚\æØ—ºÆ²','wp-content/plugins/woocommerce/includes/class-wc-order-item-coupon.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\Ý*¬Ýº\äœB4›¸‡‡',_binary 'µ\è ô¾‚ò¨g2‰%G¶\áL–e¼!”J~V\Ø_\Ú=\Ï','',0,'?'),(_binary '¯xú‰cƒ`º›°½Ceò\ê','wp-content/themes/flatsome/template-parts/header/partials/element-languages.php',0,_binary '2¢ 9ýÓ£gû3»ýÞŽU',_binary '2¢ 9ýÓ£gû3»ýÞŽU',_binary '³FŠ®`c\æŒ\Ä \r\È\â7YC÷ouA·¶E±M0OqU','',0,'?'),(_binary '¯€¡÷(s£eG”e.¼ð','wp-content/themes/flatsome/page-single-page-nav.php',0,_binary 'ü‘«`\émE÷\â‹\ê#\ìW',_binary 'ü‘«`\émE÷\â‹\ê#\ìW',_binary '¡\ÅC\02\á\Þvõh/\ì±t\å5\ä@\Ê\Ú5Kª+\ëf‰\"','',0,'?'),(_binary '¯ˆ\å¯mÐ’ì“±\Ã}\Ø-','wp-content/plugins/woocommerce-multilingual/inc/translation-editor/class-wcml-synchronize-variations-data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡Ž´\Òv‚¸=’m\"L¿',_binary '\â9~\0õI½L¾•Vªž\è¤\îõ¸0\Ê\éª.p>ñ','',0,'?'),(_binary '¯¾›\Å+L\Î^¬','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„\Ø\ãl¶±õcc*~j=p*u',_binary '<&J#ð¶s\\.,GÀ®$¾lt<™©I•WŠ\Ì5\ï','',0,'?'),(_binary '¯‘8t¹\\–\Å¦fÎ®ý¿','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/fonts/font-awesome/fontawesome-webfont.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘.\Æmurÿ‚I1“–G\Þ',_binary 'Lr7D@yŒ¿\ÂÉ‚]NK‡(–\Ñti\ØG9\ÎÀù \ÈTm=','',0,'?'),(_binary '¯¢\ç‹?—ˆYkÃ…5y+','wp-content/plugins/woocommerce/includes/abstracts/class-wc-background-process.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\ÒÀÑ¨{\"\è	\à®yV#’',_binary 'a„S\Êv”‘ÁgÔ‡1±ò?ÿ§U4`[>•òx','',0,'?'),(_binary '¯¤\\Ï¥ÈˆS\\y\Ã%','wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '89\"\ë\îzzø\ÂVv*\Î\Ø]',_binary '«Û†%%l\í:J\Äf<\Èbq\ã\ÅP–\ÂPtË¯}ß\"\Õf','',0,'?'),(_binary '¯¼¿ù\ç¢Ôöš\æfW\"N','wp-content/themes/twentytwentytwo/inc/patterns/query-image-grid.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ç£\ç/9/I²›w\Ð$¢h2',_binary 's¾/…1±žKûô-°\æË‘\çŠYžx™’‹yñeß½','',0,'?'),(_binary '¯\Ã@%˜Šfw£°ð?y','wp-content/plugins/woocommerce/src/Admin/API/Reports/Segmenter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\Ä8zTšÜš\ìb\\B#l',_binary 'µ¼f‡pO\ë4Vv\âZ§ðœsw`\Åû†ƒ\É^E‹)G','',0,'?'),(_binary '¯\Çe\èC»³%\ëøX—Áª','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/media-right.svg',0,_binary '={ö	C\äñ\ÝýU‚\Ý\ÅÙ·',_binary '={ö	C\äñ\ÝýU‚\Ý\ÅÙ·',_binary '”Á+\Ã\Ôzù\íš|û/«û ˆºx\Ô?\"k\n£¤^¾Á','',0,'?'),(_binary '¯Ë˜h\ÐKó›üÊºž¬®','wp-content/plugins/nextend-facebook-connect/admin/templates/pro-addon.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­\Øvû\ÕÀBô\ÉvÌ°–uª',_binary 'm¸—©\Þƒx.t¶k\n\ßp+•£\ÜdH¬L_+\èq\í\ÇW','',0,'?'),(_binary '¯Ë½lNVb4X—e\Å\Ò÷\"','wp-content/plugins/woocommerce/templates/emails/plain/customer-note.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–¡+p\íó‹U\Ï\è|o,•',_binary '\ØZ5R-\Ð-\àœzS\éñ‡\àg\èC€³y¢4V\0hM®\Î','',0,'?'),(_binary '¯Î¡~\×ß“þ:ý\è\à\Âøeo','wp-content/plugins/wordfence/images/icons/tick128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\åÄŸ‹øc·h4\"\è\Ý«',_binary '\Ö\Òû²\çV“ø}X e~G[C©å³†¶\ã5›²¥Š±\ï','',0,'?'),(_binary '¯\Õ*‹»‹„\Þ*\Ò\ÓÂ¹&','wp-content/themes/flatsome/inc/admin/customizer/img/nav-divided.svg',0,_binary 'Ko`—ƒ¿Æˆjÿ\n\r\Õ',_binary 'Ko`—ƒ¿Æˆjÿ\n\r\Õ',_binary 'r<\0÷pÒ»\â\Æ8\Íe\áÐ¤\ì\Z0Š¯žA\ß\È\æ\ækR\Ù','',0,'?'),(_binary '¯\×h v¬&œ\î¦?\î\ìp','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-contents.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÉˆTÍ¤J2¤ý¸y©5¢',_binary 'R4Uu”G»OB£\Ìm\ßkóC”ôN=\í\ÝWë«±ÖŠ\Ã\"Ú®','',0,'?'),(_binary '¯\Ü\Ï\æ\å(è§¨:pR\ß/','wp-includes/class-walker-nav-menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ä{ºJ\Ìü •\ï~\Æl&',_binary '£\ë]t[OcQf›]@lÓ \n”,\Õÿ´ff¹5«\0–','',0,'?'),(_binary '¯\â›$\"\\\ÝkKKu”…\Å','wp-content/themes/flatsome/inc/builder/shortcodes/accordion_item.php',0,_binary '¹6ûr±¦ª­Ã… \r',_binary '¹6ûr±¦ª­Ã… \r',_binary 'Œ\'/\Ø}\ä9¦\×v;øµ±Š¼‡˜P8¤1\ÒBn\ZW','',0,'?'),(_binary '¯å‘!\"¾\èšrhÿ“f','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/EditProductsOnTheMove.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\è\0i\Æ1\â\ç-m¥­x\é\Ä',_binary '\äÚ­›\Ã\ËzŸXä©§õY;–.eý4$T\Þéºˆ—Å¡','',0,'?'),(_binary '¯ë™¥\Ù\Ó{ \Ú*Y\ßVG*','wp-content/themes/flatsome/inc/admin/advanced/assets/js/jquery.tipsy.js',0,_binary 'w\é\Í$÷sb\Ý%\ç\ì\×\çª\Ð}',_binary 'w\é\Í$÷sb\Ý%\ç\ì\×\çª\Ð}',_binary 'ht\àS\ÅùˆPYyLE³¿¦v\Ðh\Èþ™Tü@Y\Óx','',0,'?'),(_binary '¯\î™)vN7†p‚¥….S+','wp-content/themes/twentytwentytwo/inc/patterns/page-layout-two-columns.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Gô\n;~<F\à\Ý\å…4t%?',_binary '0Vðoj\ì~E`Lñ±\Ãù\'\n°8–~R·kbZ¸{s(„','',0,'?'),(_binary '¯ð‹(5\ìaH­yo,Xþ','wp-includes/js/jquery/ui/tabs.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\ÃS\ëµm”0}\Âõp\Ù',_binary 'w†w.\Ð|Iñw‰´FfóNz>3u_N˜”±¨`Q”M','',0,'?'),(_binary '¯ýDVE´%\Ðy\Òf™d\Ôq','wp-content/themes/flatsome/inc/builder/shortcodes/templates/map.html',0,_binary '…c55\îF~\îy\çO—\ÓPö\ã',_binary '…c55\îF~\îy\çO—\ÓPö\ã',_binary '¬ýýûØ“\'WnGƒŒ\ï%y±3Vª-D\á|l?','',0,'?'),(_binary '°s¬„ý	û±ŸØ¤\ÌŽ','wp-includes/class-wp-http.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½,|ý\É~¿ý	t\åW¢',_binary '\îg/š\ÉH°\"äƒ›°\ã\Û\çŒ¢X\ÒÈEZÅ¯ôG¢','',0,'?'),(_binary '°‘-N`B—È¦\ìÿt<\ÞC','wp-content/themes/flatsome/inc/admin/customizer/img/layout-left.svg',0,_binary ',Ý‹\Ý\Ð¤|I.\"',_binary ',Ý‹\Ý\Ð¤|I.\"',_binary '+\È,˜\é	2÷>Z\êÖº\Â¼I\Þ1=UsY3W\ÜÚ€†—.','',0,'?'),(_binary '°/7›Ã±\ãcx\î\ÙpŸ–g','wp-content/plugins/wordfence/views/onboarding/fresh-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oÙ«+™¬ô‹\íJ\ÕÙ½vE',_binary 'bIn\æ\'\nS*­\Ó/¦\r‚?\î\'\ÔÁ\r7Ž+‹•·h \æ','',0,'?'),(_binary '°¶Ú¥±^i\ç$\âý\å&','wp-content/plugins/wordfence/lib/wfCredentialsController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\îZ \Ë\0ˆ°”®Õ«w6Ž',_binary '7¯6¥ay¨5”?}%.]\Ú\Çû\ë\ÂØžu\Ï«S¼','',0,'?'),(_binary '°$\åÍ“™bHn®€,\0-','wp-includes/images/smilies/icon_confused.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/#	\ÆÓ¢ww$xê¾“Y',_binary 'U0\Ö\\LóX¨\ïfXÆ¦\íG\0\ÈTº÷$a\Ò5U\ÌB\Ò','',0,'?'),(_binary '°*¿Y£¶¶\åžÜ¨[fu','wp-content/themes/flatsome/template-parts/pages/page-title-breadcrumbs-simple.php',0,_binary '\í»g\å\ëÙ‚ðòºÁHŽT®',_binary '\í»g\å\ëÙ‚ðòºÁHŽT®',_binary 'w·\äxžûw<!k2\Û\Æ\Ö\å\0w¢ýK·D©UE','',0,'?'),(_binary '°-¨ì·“ö·9ñExZ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/constants.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xw÷¾•Tg¨\ËA}\Í\n',_binary '®k¡cQxúeôË³`=n6\ÏX5y‚\Þdz5u]WB\'','',0,'?'),(_binary '°/\Øo`ØŒ\Ìv\ítº£a','wp-content/plugins/woocommerce-multilingual/res/css/wcml-wc-integration.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!z\á\0eL\îo/+l2\èÇ',_binary 'µ8I\ÂúzO¥qÀv\ï—j•L÷rö\Z/³\'ŽÜ¬I\ÈN','',0,'?'),(_binary '°2-ÃŽ­ke\ì\×b','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•<T‚•ñŒW<l0Óµ',_binary 'Û¡¦-öON~*úþ_\å£³Ž>´\îg\Þ<¡†\Óð¾','',0,'?'),(_binary '°<¶²À\r\è\Ã¼9Á','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/drawer/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jÜ¤1E£]qò‡*@‰/p\ë',_binary 'ò÷)N\Çi÷¼c¤ Ž\Z˜g\'@\ÆM\ïLngJ.','',0,'?'),(_binary '°B˜œ\ë¬f÷Itr`Ö—º','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-fee/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ	C\\ø-D_Ø˜q(\Åa',_binary 'ˆ\æ¢Kz\Îr‚=\Æ@9™‰¢\ÕúMK¢\Ìj\ä+ÿ\×\á÷\ç','',0,'?'),(_binary '°C@m.„m¤u¬ø>Á˜\å','wp-content/themes/flatsome/assets/img/payment-icons/icon-creditcard2.svg.php',0,_binary '(%h\é\Â\ÜñWü ‹„wp\Ã',_binary '(%h\é\Â\ÜñWü ‹„wp\Ã',_binary 'v\nSFZ^\Æ\r\Ë\áK<(n”ŸA4¡\Ê\Û\Øp?¦\'Ì­£','',0,'?'),(_binary '°GŠ\ÖÀ>˜™gg÷j!','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/button/constants.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_¼£ýO¦\nœpgôT»\Õ8E',_binary '\ÙùvN«‚‹\r\Òh\Ø\ê¾¤\ÔÄ•\×ç †Tr‰›','',0,'?'),(_binary '°K!\Ü·w-j‹Oþö\ã','wp-content/plugins/woocommerce-multilingual/classes/Rest/Wrapper/Orders/Languages.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0ô~î‡“ ¿W€÷cE',_binary '\È\ÆP*lmNP\ãBqZÍ´cT*h\Û.Y\0õ„P','',0,'?'),(_binary '°N‡ýZND”\ÍN´>Y	','wp-includes/js/dist/components.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ó\Z«\Ð\îh¬¡!š@¦¡\î',_binary '…\Ü40ºù€e[ª\ëU»‡ügŸ\í˜Oó!\é-„PK','',0,'?'),(_binary '°T7˜;—iy\Í\È4‹})ŽJ','wp-content/plugins/yith-woocommerce-wishlist/templates/wishlist.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\â ®.¯¯kO@hš“yr¡N',_binary '²,\æle\á\ZWð@\êEš}\nÌ¥%©¬\Õ˜\é\è!¨\é','',0,'?'),(_binary '°XÀ¹\Èd5?r\ÚFôÈ™A','wp-content/plugins/woocommerce/src/Admin/API/OnboardingProfile.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\n\æ\î¯DØš{L²a!\á\Ü',_binary '\"˜F\Ùì¡™7V\æ&°®\Ò¢AV*™¤9¢“ª˜\î\Í','',0,'?'),(_binary '°e\â¿vû\ÊyPM7·','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-system-status-tools-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÅVü\âœÁz›Yª³õª',_binary '§»Èš“6>——[ñ-,ŒŠúÆ½­\Ð\é\ØdJ\åš','',0,'?'),(_binary '°i\n¤£Ò¸\à´d‚\Ó\ÒPtð','wp-content/plugins/woocommerce/templates/myaccount/form-reset-password.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ü8s\ØÚ‹‚¸Ei\ÔYˆ6r',_binary 'Ì§BL†› k$)¾\Ð.s{…‘\Ø›s¯€/>³)P','',0,'?'),(_binary '°r‹E7\\\æœ_›³‘Cð','wp-content/plugins/woocommerce/assets/client/admin/navigation-opt-out/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ú\Ôd‰6tÀ\áù%}AVpò',_binary 'rNˆ]`e›\Ô\Æ\'€c{y\Å§‚WbaO\Ì1Ÿ­Lc›','',0,'?'),(_binary '°sü$Ÿ\ÐlAóF-Á¹^€\Û','wp-includes/blocks/group/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S}økžú,\'Š½ô%övM',_binary '‡<\Öôj-€±÷_4³\ë\äöe&µˆ\Ò˜µ-Ú±\Ò','',0,'?'),(_binary '°{4´.„´’”£µ#˜#','wp-content/plugins/wordfence/modules/login-security/classes/controller/support.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' B<Á<ŠúLU\ç:uUn',_binary '“ZÐ†ƒó\\ñ@@“G›ýP¥\è‰#=|‡\'k4®ö','',0,'?'),(_binary '°|w©µ§»?	!\ìh','wp-content/plugins/ti-woocommerce-wishlist/assets/img/heart-tinv.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\é±Î­Xƒþ/)w\è—',_binary 'ûn;\Ç\ê#]JSp\è»YNTõ\Ý\'\Ê;\æ¶Õš\'','',0,'?'),(_binary '°Ü°Á\Ûø¾ò_~·h	sc','wp-includes/blocks/spacer/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú½\àSU¹œ«<N†õ–BM',_binary 'JDª$Œ\ÙÖŽ¤]VŸNuÆ’Î´oB¢i\Ï\ÍW“Žñ_','',0,'?'),(_binary '°…©‰¦ñ\ÑÁònM¾*','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/edit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õöIw\Þ]þXEº†ol',_binary '\Þ\Þte?¢0Á‹Pƒ!a[¶©:\ÙË»E²\n,\Ó','',0,'?'),(_binary '°ŒŽ—d¶\ÓP*¸„','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/load-more-button/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\Ãs§©»\Í+öBM\éuR’',_binary 'Ú·þ~m\Øi\×ó\Z¥Œ¿Vä¹¦\ä3™N\ÙpG¥yF|6','',0,'?'),(_binary '°cƒ1ˆ;†\È!Šoe','wp-includes/blocks/post-author/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÉC÷<“–¶„]–{´‹_',_binary '\ÒKS\ÅX”/ùX\Þ¢BD`—FT\Õ\Õ\Ñ\î\ìqx^\Ä','',0,'?'),(_binary '°.\íy#\î±\ëj¤\Ôi]P3','wp-content/plugins/woocommerce/templates/single-product/tabs/description.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜\×=®\ï{¯>f½7“¤',_binary '\ßtE\Ç\è\é¶b9¾ºa\Åø?¥\ß\æý\å¤\'T\äˆ÷Y\Í\æ–7','',0,'?'),(_binary '°’´ag\î÷@E‘’:ˆq„','wp-content/plugins/woocommerce/includes/class-wc-integrations.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<ò\ÃÌ¿Ì»\Z:\Î	Ø­',_binary '\Ç6N\rC\ä\Ú^ýš£¦/Ç­ª\ØYý\Ç\î4E\Í\Ë+\Ù3\É','',0,'?'),(_binary '°•\ÒN\ç,ý\Ê \Ñ\Ò	5¨J','wp-content/plugins/woocommerce/includes/tracks/events/class-wc-order-tracking.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd)F­µ (x\n^¸Xó',_binary '\Ý$\Ë\ÒGmW÷¾•$\Þý\Ò_\Ë\Ï×’ù\È+&RA\Û\é@','',0,'?'),(_binary '°–{}ˆ\é›0-Ý¯¿j','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/utils/render-parent-block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ß¿ÖŽŠ8‚ú¼¢Î³7\ÓP',_binary 'ú«\ÂlsÈ¶¬½y	 9½8)¸¤*8€‘—À\n','',0,'?'),(_binary '°›¦þ\0Ÿvþ#ø¿\ä«','wp-content/plugins/yith-woocommerce-compare/assets/images/12.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å\Ô\0A\ïx\æ§<k\ÏÉŒþ\Ò,',_binary '?\îq\Ön!òB«\ZQË®°®b‘ZýJ\Û	¡T„\äü`','',0,'?'),(_binary '°¢X\ÄH¥e\Ö8†\à„\ém','wp-content/themes/flatsome/inc/structure/structure-posts.php',0,_binary '\Æ\à/\Ö=®\Ë \è5}*7Ÿ',_binary '\Æ\à/\Ö=®\Ë \è5}*7Ÿ',_binary '\ã¼NõHq\áú\Ó{:x!1þ\Ò\Ã=\Üú’\ì/œŸ»¡÷h','',0,'?'),(_binary '°­ ki\áøþTX\ç\Íj','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²b‹Uþy\êÍ…«\ß\æ\08',_binary 'bSx\\h¤µ\ìT/·[\àÄ­ux+)\è€D\×+n<\à','',0,'?'),(_binary '°¶\Ób™ç„ªŠs²}Ca','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-accounts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\Ì]¡Dt>–‡J—Oz\Å1',_binary 'A4QÈ©‰À6d£\âü\Õ8\ì­þSss¬\Üj·d+0t~»°','',0,'?'),(_binary '°¸¶j¾isªþll©','wp-content/themes/flatsome/inc/admin/advanced/assets/js/min/smof-min.js',0,_binary 'ô\æD\'q~QóD…Œ´—§·',_binary 'ô\æD\'q~QóD…Œ´—§·',_binary 'b\ì¹frŸ\ÎM\Ã\ÍA½RMÑ«]xä¢ŸX¯\Ñõ*\í7Ö½','',0,'?'),(_binary '°Á,\Ë4\Î´–\áe\àð','wp-content/themes/flatsome/inc/shortcodes/ux_banner_grid.php',0,_binary 'f\0üº­¹GpôZv4»',_binary 'f\0üº­¹GpôZv4»',_binary 'Le \Þ\Õùê–³VÝžP\Étb(D•»\é\í˜Jý\Ñ}','',0,'?'),(_binary '°\Ç\Û\å\æ§rlYÀ\ï¡™h','wp-content/plugins/woocommerce/includes/admin/importers/mappings/default.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•P•’¹\ÜU¨ŠWJóˆ\å÷',_binary '\Õ\ë\ïF™\ÄK†bºó…\nÚ©ù\nb‡°¤¤\Üvª','',0,'?'),(_binary '°\Ìë»›Ib©,6úY+¢8:','wp-content/themes/twentynineteen/sass/typography/_copy.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oH\Û\Ø`F„\ÓU\ÂTP¯',_binary '+\â÷\\£\Ó`F¦\Þ\Õ~‰òºþñ)?«9G§}B1’\Ê','',0,'?'),(_binary '°Í¸P\â•])€Œ£\n ø¥¥','wp-content/plugins/woocommerce/packages/action-scheduler/classes/schedules/ActionScheduler_SimpleSchedule.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^y	15d“~UhFR',_binary '‚®\Æ;]D5øþ©£Vo`—/‚ñ_–qg§¨y\Ïy.!','',0,'?'),(_binary '°\ÎÑ€½\â\Âd<\"`\æ¢','wp-content/plugins/products-compare-for-woocommerce/berocket/includes/widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\ÂAƒ-þ>Áo¨A×¨ˆð',_binary '\ÄOª³I1\Èc`Y5È•c¾\ë\ÏG¯\ÐÒ°O?æ¨','',0,'?'),(_binary '°\×SÁ2¥C\ÎT¢','wp-content/plugins/woocommerce/includes/payment-tokens/class-wc-payment-token-echeck.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—À\Z\ìžKrŠòù0¯ÁgU',_binary 'y€ˆ÷•	ùe¦\ã^\Ä`ô—\Å\à\Ø\Û\Ó\ì(eh«\ä0¬\Ì','',0,'?'),(_binary '°\Ùv\'j@\Ô-\Ìÿ²*','wp-includes/widgets/class-wp-widget-media-gallery.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7_^\\fSÉ‰ý]6n#\Z',_binary '>\×@Î¡D§„\æ&\ÛüŽ\ã{õ(ºýDÎ³\Ï\äð\ßi¬O#','',0,'?'),(_binary '°\Ü5/\"mo\ß\ÔÏµ‡36l\Ý','wp-content/themes/flatsome/inc/builder/shortcodes/templates/tab.html',0,_binary 'LóMt\èhZh)]ÿ¢',_binary 'LóMt\èhZh)]ÿ¢',_binary 'ì¡\åI\ä\ë-&%¿¹À»ùCAüñ\Åqð¦ ð¨\á¹t','',0,'?'),(_binary '°\Ýn\Èf\Â\åFõ/¶Î™\í','wp-content/plugins/woocommerce/src/Internal/Admin/RemoteInboxNotifications.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ê	üù.üz5lq»*|',_binary '—‰žš”…³pôá«¢\ë~°\Ú4<¶\ç¥j\Å5	®\âˆý','',0,'?'),(_binary '°\äsW=g„œyˆ\àxŠA\'ž','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/frontend.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vû»\ì±&¯/\Û\n€@M',_binary '¦)ºû´}­°š\Í~Ez-\ío*S”†6¡?]\ì1Þ§x\æ½','',0,'?'),(_binary '°\æË™¼&²Û¸&\×ôp','wp-content/plugins/woocommerce/vendor/autoload_packages.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à}¡I¿\Ã\ê?+G\èôhDþ',_binary '½*º¼\rWU\ÓS\âsÿüPb\×4\ÉMeorX¢l\Z™\à…¡Ÿ','',0,'?'),(_binary '°\ë¹ñ‘Xµø\Æ-ŒOf','wp-includes/blocks/nextpage/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ\Ò;(\nw1\è\ß\Ü6\nO¼',_binary '´}{³ñpe¤0‰9\röŽn\îL]tJÁ±:°R¨±~','',0,'?'),(_binary '°\ë\×>7Å§\è\è\Í\ì«u\Ë	','wp-content/plugins/woocommerce/src/Packages.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ¡f×¸ ÿ¾J\ÄR\ÄnƒŸ',_binary 'K«\ìºÁ^œ‹\å-\èYl73¤\ç\r)ñ¾	]\î!*\Ö\\¹}','',0,'?'),(_binary '±lFSI\è\ZiðZCK','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/validation/components/validation-input-error/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ;CbÚ˜o\Ü\Ñ\"Wx{u',_binary '\èž\Ðþ\Ã[`ŸùÒž\\®6}\"Ã &Òže{µ/X','',0,'?'),(_binary '±\n]Egƒ·\Ë7Oq¹b\è\ä','wp-includes/sitemaps/class-wp-sitemaps-registry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯·„˜\ÂG\å\äóoƒ\n³>',_binary '>Ž\0©B\î‡[ñ\çZ’´>\Çp\ØÞòa0~5k\à[\ÛGž','',0,'?'),(_binary '±ý÷ªn¬›j\çøPú+…©','wp-admin/includes/class-custom-image-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J¯\'‚=WQùu\ß\×\Ó\Ì',_binary '\à(1Î§\Ðds2\rôs²r®Œ74\Ü2n³VÿS»}ð±','',0,'?'),(_binary '±\Z\Ö\è†˜ˆ¹Bi/6ø','wp-includes/js/jquery/ui/effect-clip.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i.HFuF—#g4Þt(Õ‘',_binary '“\æ)ÿ>fz²ôÈ¤¨ù\Îs®\æ\êIš\Ü\"•p\Å','',0,'?'),(_binary '±{€Sg\Æp\Ô\Òf³k','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/custom.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Noi]\ì;±l’fKð\ï‘{',_binary '’o’mc\ë62 %C}\ÐgÐ—	¯”õ\ëó\Ï]˜\Ùb','',0,'?'),(_binary '±!\àJ\Þ,Ã»\Æ\àâ¼±','wp-content/plugins/woocommerce/includes/wc-core-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	ƒ±Y=¤k=\Çû¼™jÕ’¯',_binary 'øþ)¾»ˆc«oc\Ãô`l ™4{Ÿ\Éxb\î.\î\É','',0,'?'),(_binary '±\"¯²’¦\Ç;D\Í\æÀ#™','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/wp-pages.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥R^®Y¾\åNúÎ¯¾µ',_binary '¿¶\îe9O#\Í\r´cwœƒ\'¦g#\Z\"L\ÔU}jw\Ö\î\Ë','',0,'?'),(_binary '±8u7\Éh@jx\å\"€5','wp-includes/class-wp-block-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ô‚Ì¼o\ä\Ôv\èt~üÒ¸\Øa',_binary '‘Dº£\ÔMœ/,Ù§Þ¤®+\Õ\Åòˆ	?N¢p\Ûöþ','',0,'?'),(_binary '±FM¨\ßp¹³\ï0.¥-I','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ClassicTemplate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú1´p\ëd\È<\ã}?Ô½8»',_binary '\Óa	<xW§h\è\í\"•rª÷oJ0 \È)mœ\rD“%\à\ç','',0,'?'),(_binary '±Lƒ’…yEõ{¦øf“','wp-includes/css/dashicons.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ökõ†\áUºÐ¾\Ø3ø',_binary '|¼38·9&ÎšGñ\"#\Ì\0Ì \Æ\Ë;·ù¿e˜R©','',0,'?'),(_binary '±O^Ä$²Á\ä“/#\ÎB÷','wp-content/plugins/ti-woocommerce-wishlist/integrations/gift-cards-for-woocommerce.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ë-°8D’\ï\çð^\æ\Ü	',_binary 'w(\Ø\ÙÙ•\Ó\n¦¢L˜\Þ\à ‡WŸ\ÙÉ”™W: \ìBùP','',0,'?'),(_binary '±a÷±\ä/Èª»Õ®6Ÿ\Ô','wp-content/plugins/ti-woocommerce-wishlist/integrations/advanced-product-fields-for-woocommerce-pro.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÜfF~c¿\ïC\Ùib4ý\Ð}\ß',_binary '>Õ‡¬˜\ÞY\ætg4C•°˜¢\Ïd“jk&\àG\Ü+S\ç','',0,'?'),(_binary '±c˜‚\Ï\Î\"QŒ\îl±fZyñ','wp-content/plugins/ti-woocommerce-wishlist/integrations/theme-divi.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÒŸßŠ+R\'DnW1o˜\"‡',_binary 'P»\ès\È9‹\Ø\ßMÙ™p\n \ßU\n€\ïN\éEŸ®\Ën\Ëa','',0,'?'),(_binary '±g\Úbf\r\Zÿ\îÑŠ\æÿ','wp-includes/blocks/rss/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ß3:&[¯­ó¿µº\Í=#™',_binary 'AZag\Û\ì‰‡ðŸK\"Ž]&“\0þ+²¾\Í','',0,'?'),(_binary '±hò\Þ\ê\n\ÇfÏ–&\ä‘#\Ú','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/blocks-checkout.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\u\×8\â³4M¶zt‚Ÿÿ¬#',_binary 'B¨[\âzSúº0n\ßwôñ{ÿ\ØoAÖ†¤šz|\æ','',0,'?'),(_binary '±j\Ö\Ërx>\éFÂ¬Ø–\ÍT','wp-content/plugins/products-compare-for-woocommerce/berocket/includes/error_notices.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²²K­\Ó(\Í`€\rx	©',_binary '›5ý²|¡bðƒg\Û\'\ì«ý)ˆU\á6\è!E(‰0','',0,'?'),(_binary '±k\ÊULŸ\íÇ¡¹$Á˜ú','wp-admin/ms-users.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Â³u~]*C\Ìu«\0ü',_binary 'e\ës}k\Ò_¾¾q}¹þ§~G•¸§[§5\ßQŸu\í!™','',0,'?'),(_binary '±l(f>¤¢l (µ<\íN\Â','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products/all-products/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\èú´\Ðî…¯šyh\Ï\Ò:«÷',_binary 'ó¢²ÿtƒ)™@8=¥´\à<™‰\ÍgšŸÀP\ï \×Ì«','',0,'?'),(_binary '±o/N\Ûø\Í\ßt$\Û$ú®½|','wp-content/themes/twentytwentyone/assets/sass/05-blocks/code/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ùt6&˜c²‡’û&',_binary '÷\ÖøOþV¡PŒK°\çLÑ¶\Ð(Ð•®#uu.\ê','',0,'?'),(_binary '±rn™`	mª¡$\0‘\ÏV','wp-includes/blocks/media-text/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Øl\ä¥\ÏÁ\"Œ\ÕÀû\\\Çú',_binary '8I\à\Þ#õ\n\é\ëþ=mMðWþöüá¸‘\Ú\Ò\åJ†´s\0','',0,'?'),(_binary '±s}û5gž]=»[f…8','wp-content/plugins/woocommerce-multilingual/res/js/product-custom-taxonomies.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\í=6-ó~\Õõ\n\ÙÀUž',_binary '·\Öúðž#N£7_†&Kfü\ÇÊ¨*:0™•Á	í£Šks','',0,'?'),(_binary '±{Ç‘U¨\Æ5\Ø\Ísn=[','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/AbstractProductGrid.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'…’Ci¿q•^¨\ê\é)',_binary '\ä\"¯\çgŸa\í\Ù%ó.õ\Ò]w®ô,Ni\\\Ã>wWù','',0,'?'),(_binary '±‹=·-XÔn{]·pf','wp-includes/js/wp-embed-template.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Öf%W\ïû^mñy\Ï\Õ\Ð4$',_binary '\ã€)\ê•\ç\Óš\ä\äA\âr”\rt½\á@Š‡j\Æ\ïYÀ¾ø\Ç','',0,'?'),(_binary '±‹we\Ööi!<º¡súy\n','wp-content/plugins/wordfence/views/scanner/issue-optionBadURL.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'øh8¥FK¥3EqŸsù \å',_binary '\Ñ0T›û—E÷Va~\'55h4‘ÁoÕžˆ{MÉ±\Ëð\'','',0,'?'),(_binary '±—«\Âû‚Ûw6Uu%¦À','wp-includes/js/dist/vendor/wp-polyfill-element-closest.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<j\Ìð™ ¿<YtŒ#ô&',_binary 'yNOBÓ»\×]&6‚M\Ü-½„J’\ä.ŠŽ·ó¹:.µ{','',0,'?'),(_binary '±˜$·AO+‹\n4ý\Ü\êžY','wp-content/plugins/woocommerce-currency-switcher/js/admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v>\àAV´\×?C0)r\Í\ß',_binary 'F¡’l7±\'\Ô33oöt\ï\r\å:9`V\Ø\á\ÌOôõw\Å','',0,'?'),(_binary '±™\\öþ§JRÙŽ€nx','wp-includes/blocks/navigation/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\n´¸h“:ÀfÀ|9=',_binary '¶ª\\w\Ä{\äõ )ú2Xÿzd§J¦KL]šh<\Æ\0‘²','',0,'?'),(_binary '±š\ÄfSu¹B\ìÍ¥?^yO','wp-admin/css/themes.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÃX:7\Úó¬ºšvÁ\Õ\Ì',_binary '#4\Øn\'\ãy\Ói`£‘9t¶^Ò m¦†¿S\Ê`9;4‡\Ç','',0,'?'),(_binary '±c¸~ù’î­½þ\èÁûó','wp-content/plugins/wordfence/css/license/response-variables.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÔŒÙ\0²\é€	˜\ìøB~',_binary '\ã°\ÄB˜üšûôÈ™o¹$\'®A\äd›“L¤•™xR¸U','',0,'?'),(_binary '±ŸFxdy“—–‰\r~d6c','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/fonts/font-awesome/fontawesome-webfont.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gOPÒ‡¨ÄÁ›¤\Ò\ç',_binary 'ûú\å~8 ir®¿\Ý\nPp¯¦\n2òŠ5§DahBzP','',0,'?'),(_binary '±£»=r\ëpjÕ£†ž/','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MantisBTInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×\ã‚{”„\ÖXTc¢\Í<Ÿž†',_binary '\ëvŒ¼‡/¨±\ãUþc’\äbd\æIŒ4$c™\Ñ\áwS‰','',0,'?'),(_binary '±¥–\Âd­\ÚAŠG†b1','wp-content/themes/flatsome/inc/extensions/flatsome-swatches/includes/class-swatches.php',0,_binary 'ô­Vð„\Í\àÜ§\Üý0ü',_binary 'ô­Vð„\Í\àÜ§\Üý0ü',_binary '…o\è±bxo<Röó}‹y»\Ô`PQ*$ ­ò','',0,'?'),(_binary '±§©\Ù{^Ž†W\È\í\èóC±','wp-admin/css/colors/ocean/colors-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r%Xk\ßC[ŠÇ¾¿±¦\Ù%',_binary '²¿Ÿ|S5s\Ê\èv^o\Zöÿñ\ÉI¹\á“\è´\Å÷½D','',0,'?'),(_binary '±¯\Èô«œ	\Î\Ë*Q¿µ^','wp-content/themes/twentytwentyone/assets/sass/05-blocks/html/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BW//X [”\']ùõ',_binary 'ñ{Kõ\Ì.(ž¢\Z“\0Ÿ¹·¸<÷š!rv‡+=8ø±«','',0,'?'),(_binary '±¶›¶â»·\Ê÷É¡\ãur€;','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\ß“)®†Èƒ“I­\r',_binary 'YP:O#†w„\ÈôŽ{^§5\ãA¸\ê\Ñ[³ö~\íP§±','',0,'?'),(_binary '±»U\\`…þ\Òý °\è\æ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/all-reviews.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K˜zÞŒ\Ê\Öÿ—9Ah—\ÝMP',_binary 'yªO\Å¥\ã y\Å\áf>&ÿ\äZ¡\0`|·ˆM','',0,'?'),(_binary '±¼3T,\ØM¯	nÃ€\é4÷','wp-content/themes/twentytwentyone/assets/sass/05-blocks/video/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—Ÿ\æx\Öû)kHž‹\ÇD\ÚL',_binary '‹ÚŠ€j\Í9®y\Üò¤\æ÷v\n oC/\Ñ`…¨ny','',0,'?'),(_binary '±\Æb\ß\íÖ»\Ü ð $;©h','wp-content/themes/twentytwentyone/assets/sass/05-blocks/heading/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”\ËoÎ‡\ÏùûX§®C',_binary 'Ÿ\ã\ÊÒ´?5\Çòn‚\îô’P6Ö†ž>ˆ{\0-xþ\Çe','',0,'?'),(_binary '±\ÆÃ‡ú‰JV´W]I¢','wp-includes/blocks/table/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ex\äQ]rY‘TO;©72',_binary 'c+Añ~×ƒ\És\ÝÓˆ™­©\Ë{S‚R\ÊWVN‰\ï^{%l','',0,'?'),(_binary '±\Í\î%V¦=¿úh)@V«','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-search/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹ý°˜s½P7\æ¯û\Òv',_binary '{S¡l¯O\Õ|\Ç\É	j³\äö‚©˜:´\ì\Ãm]\Ý$X','',0,'?'),(_binary '±\á›ôp \Ó´;ª T€\è]','wp-content/plugins/ti-woocommerce-wishlist/admin/settings/upgrade.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\Î#-pŽ…›Ž£\"X\\R',_binary 'W\án‹7Ù«\ÙÀõdA$:0•“Œ\ß8Y\\†','',0,'?'),(_binary '±\íøq‚\ZX:X‰3\Ñ\\','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-yikes-custom-product-tabs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\Ö	pZv\ÔYsJ¿jª',_binary '—žwHŽ\rbp…ª–?Lß‘‘\èüO‹\×\n\Î\"]¿­I2÷Âž','',0,'?'),(_binary '±\î=9\ä±>È…®Šò\ä','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals-wrapper/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$Ó‰v¨¸§\r—·Î‘™†€/',_binary '#ñ04\0ûbEÝÀ)&\ßö7q^ºnY\ï0=\Ù?+O£I','',0,'?'),(_binary '±ð$[\ßû\ÜtCÅ¤Iw','wp-includes/sodium_compat/src/Core/Curve25519/Fe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þQtúªz¯\×Q¾\Âó\Ý\"',_binary '}\äØŸZl’(y´“0\áÅ¨z“7{šd6Ynrh\Å\Ï\\','',0,'?'),(_binary '±óœ\Â\ï–\ãŽžÂŠ.\á\ìf','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/logo.svg',0,_binary 'E¼A Ê›GƒC&˜0£\Þ',_binary 'E¼A Ê›GƒC&˜0£\Þ',_binary 'ù3“kGÞ™d\ÊG\î\Ý\ÓÁ«×²\ï=K>¬Ž¹¼¢','',0,'?'),(_binary '²m5¼\âu\Î\Í1}\Ø','wp-includes/css/dist/block-library/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ns	6\Â‡ŸÙ¿\ÙÀy',_binary 'É\ç\æ>=ŸJ\Úq\Ôf>³I\â\Ï\Êt¿4/\ÕK}F­\å<€\Õ','',0,'?'),(_binary '²	{$L¦\Å\ãp\Ô\\e\n','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/loading-mask/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'ð¹\n3-“lö’V­',_binary 'ƒynÉ„0k¨€\Ï*†\ì_(dŒ£›,¢I4\Å\nÀ¸¢m9','',0,'?'),(_binary '²U»örQyýè€‰¨cK','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/wp-pages.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥R^®Y¾\åNúÎ¯¾µ',_binary '¿¶\îe9O#\Í\r´cwœƒ\'¦g#\Z\"L\ÔU}jw\Ö\î\Ë','',0,'?'),(_binary '²UO\Þ ûi\ÉÔ¾Ï€\Ç','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/popup/br_popup.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'É¦á·¸ª\ç¤\ï›œi#',_binary 'A.ndõšô³Gb[Uœ*óMNO3º83\âœc³\Ç#÷Š','',0,'?'),(_binary '²!Á\Ø\â^¹ýŠ±@!°','wp-content/plugins/products-compare-for-woocommerce/berocket/templates/conditions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_Š§¢cú\"¯ók\rð°Ã¦\Ù',_binary '\è\á¬ÒXD\Õ\ZÑ–ÁssX\Ëü•[ð\Æ}?ú\êŽ†','',0,'?'),(_binary '²”1T\Ô\Ý/¾\çë’»','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-search/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\nœ–M\ê>\íð\Ì\ÊÁ 8¨',_binary '\Ù\Æ9]ö\Ò\ÛQ_i´}ž\'E°Zhfk¢¶\Îö+f`','',0,'?'),(_binary '²\Õø‹)\×T^>‚s~P\ß','wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src/HtmlProcessor/HtmlPruner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\ÏN¿u‚rN—Á!—Œ•',_binary '·¶y¬_²\Ô\Û\ËðO\Ö\Ãp@#\æL\í4:.(þšªƒ„%','',0,'?'),(_binary '²ü&B°5V\ëAUU,“\ì','wp-includes/class-wp-http-cookie.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'Ï¦\Ý#qŠr\ßL?°\Äñ',_binary '=›ž\ÕY\Í\Õl87Z\Ü\Â/€–:.·s\í’\ÎlApw\0','',0,'?'),(_binary '²*Y¬x_ˆvj±¬×§&ö<','wp-content/plugins/woocommerce/includes/class-wc-privacy-exporters.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”Ù»~oh\â Ë¶\Î!‰U',_binary '$ž?Œ!¿^r!T)\íó•T¤—$žª\É]­ª…ˆ3\Ñs–\á','',0,'?'),(_binary '²1A\ë\âbÈ±‰\â8£”EN','wp-includes/blocks/group/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'äŽ®™f,’\ÔDóg©F×·¡',_binary 'C\È\rS@ª«†\Ï\èZxT	\êx\\\È?ý\ÑN=Ut\ì\Í','',0,'?'),(_binary '²2¶—c/ÁyXüT\Ö\Zó\ã','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/classic-template/constants.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\é\ÉIcµª…\n¬\Ë,4[\ç',_binary '\Z\ÆN°T<\Øþ\ìx\Ø.•·’ñcA°\×{*4p¥Ï¹\ZZ¢\Í','',0,'?'),(_binary '²3@bI\áð¹Z²K\Æ\Ò‘œ','wp-content/plugins/woocommerce/templates/emails/plain/customer-reset-password.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\È÷¥\åQXfq\ÓXÛõ \Â\å',_binary '‰I\Î\ÐS\0Ä¹e«ºM\nXTE˜jóœ\ÞC\ë‡lR3\r','',0,'?'),(_binary '²<\èJŸb\"¾®!­\æ8','wp-content/themes/flatsome/inc/shortcodes/ux_image_box.php',0,_binary 'n\ÍÂ‚\á\ä[Ž¼\ÃW.µ\ã',_binary 'n\ÍÂ‚\á\ä[Ž¼\ÃW.µ\ã',_binary ':ÿ*3€\'¸Ò«ÀV\ëz6€Bl°\Ù+,ù§WWƒ','',0,'?'),(_binary '²=‚\Ö5^L\à§ð\n-[','wp-content/plugins/contact-form-7/includes/form-tags-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ê\Øc\ÌM™X\ÞËµ\Ïð:½òz',_binary '\ÈsÀ\\‘ùß·Y^6\'\nSW	A’ó3“ô\Ð6ó¸R','',0,'?'),(_binary '²Dº\ïL\ÃdŽ\ÒôŽ{¶•u','wp-content/plugins/woocommerce/assets/client/admin/analytics-report-products/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\áö²•\Òuòv–<w3ž',_binary 'w“ñ×•\ãB\ÔÁi)­Å€¨!?C)«l|\Ëu\Ó\Ñ\È\r','',0,'?'),(_binary '²V_\"×…\ã]yBùo*©','wp-content/plugins/yith-woocommerce-compare/plugin-fw/dist/gutenberg/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jõ\Ø\Ê+\æc†›K’\íf\é',_binary '8ûsn³?/\ç^±\êOG\å\×&%º\Ï\Ö‚Q x¥','',0,'?'),(_binary '²Y Œ\ÑJÁd\ÂÀÁJY\ê','wp-content/themes/flatsome/assets/img/payment-icons/icon-rechung.svg.php',0,_binary 'Ú¦90Fô ø¯lWÑ–\Æ',_binary 'Ú¦90Fô ø¯lWÑ–\Æ',_binary '÷þfúJ]FYðú-\Ã5ü[põ1?\åe=7Ê¢y~','',0,'?'),(_binary '²\\NôXõh”¼z\Óñ\ï•\Ô','wp-content/themes/flatsome/woocommerce/myaccount/form-login.php',0,_binary '(–\Òþt<(6^ˆ/P¾°',_binary '(–\Òþt<(6^ˆ/P¾°',_binary '4Õ·\ëEVTº³;\Ïø9Õ¯\'”C\ë¸ë¦W\0§#“/','',0,'?'),(_binary '²_fô\ç²;w\Ða\Ë\ÙÚ±','wp-includes/js/tinymce/skins/wordpress/images/gallery.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡_±ŸŒPwù´PU\Û4',_binary '<W~…\î\áØ¶¡\Ç+\ÑhNŒ\é„9\ç\×ú1\Ì_°3\Õw‹s','',0,'?'),(_binary '²clc¦\Ðgœ>c\Ûz\Ñ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5Šø;\Þ?É—ýò\Ï+',_binary '\Ù|\ÌN¥\Ðß†¸0\Ôz†ŸõM†\å; (¡Vy(£','',0,'?'),(_binary '²gˆÓ¨H7\ng­ú3L','wp-content/themes/twentytwenty/assets/js/customize-controls.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ï„A7ÿC!‚o\Þ>.{š\Ú',_binary '!\Å7U§`\Æ\ï\à^\à\èú:ŒÀ8\Ø\Òo÷_: ¢ ','',0,'?'),(_binary '²ghX\Çs\Ô=³\Ú|ÀY','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-subtotal/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pvB‘O`9ŒO˜g\Ñ\ÞY',_binary 'y^E\ÄI \íÏ½.<6Œ¬˜¨\ìx\à\î2¾\Åy\ê-‰\ÌÏ‹','',0,'?'),(_binary '²n§›1O\éF\ÚK\ÐGBb','wp-content/plugins/woocommerce/assets/js/admin/wc-product-import.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o6kM¡\Ça\ÄVA',_binary '—xò«FüJ†P\ãF\Ìu\ÆJR\ÜØ³¸­ñžUóo‰%','',0,'?'),(_binary '²qºÆ˜lLüûN\"£­','wp-content/plugins/woocommerce/vendor/maxmind-db/reader/autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\àT5ø\ïzsWq¾2ö\È\'\Ç',_binary 'ÿ õu%²P¨Ï\Ýe·\äQ9º_†ò0 HÍ–>\"·','',0,'?'),(_binary '²u\æ\Ø<e\çx›®@ÖˆÂˆ>','wp-includes/js/underscore.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\à}\à\ã#8\í.-?F\ÊÁ',_binary ')žÀu	IÖ…\Âq“p«Ó˜*dNž\ÜÅ¸9\Z\Ä','',0,'?'),(_binary '²€§ÁR«¬€€\ìÜ¸6L','wp-content/themes/flatsome/inc/admin/kirki/modules/tooltips/tooltip.js',0,_binary 'm†\êð”š4\Ðy\Ó§“wL\Ú',_binary 'm†\êð”š4\Ðy\Ó§“wL\Ú',_binary 'q^.Iñ-w.¤°“+ºž8f>À1†.H\È\r\r‹\ë5‹','',0,'?'),(_binary '²‰¹])T“œ‚—ÀN25F\Õ','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InvalidRequestException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GRË—c…\í¤?qt\ç',_binary 'ÖRz5B\Ä,³´nÉ²¿ þ·Œ\nHoÚ¨\Ðò½|','',0,'?'),(_binary '²‹q?%\Íõrpþø0÷7\ïq','wp-admin/css/colors/coffee/colors-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w„`T\Ð[¥\\å®“,››',_binary '	¯‚a÷K%š¼`¬ƒsÁ´Ø•kU[<\îkr,‘Ñ¿','',0,'?'),(_binary '²•Ž²\âCŸ	#a¿“S\Î[','wp-includes/sodium_compat/lib/stream-xchacha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©û™\à\ZX»x¨3)\Ù',_binary 'm\Ðio¨j\Ì6XP\ÝúJ÷þy•\Ìvx\ã£\ì‡Ü§','',0,'?'),(_binary '²–\ÈyK(j÷bT\ßÁ+','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/test/use-query-state.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'QÒ¶}K­%\0‰\ÖV©S',_binary '\Ä\0\Ï|¶[sK_H\æyð\í1ø\ÓbÁ=\Öe\"&Hš7ž\ØùÃ£','',0,'?'),(_binary '²©\ãY²\"{½jW\Ûô‘ù','wp-content/themes/flatsome/template-parts/header/partials/element-cart.php',0,_binary '\'ñž¬:\Â`$£\Z»\çz\ä',_binary '\'ñž¬:\Â`$£\Z»\çz\ä',_binary 'Å¨/`ô\Ñ\ZkIÖ½¸„\Û\ÌyN6¯\ZØ¡/\Ø6\ÜÉ°•\à{','',0,'?'),(_binary '²¬ž\Þð¢ŸE¬*ebÊŽ³','wp-content/plugins/yith-woocommerce-wishlist/assets/images/video-thumb.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½„{û\\ù¨bôhi=4ŽS',_binary '*½\ì\ÐÙª\è\ìyrˆø |ÿ#{Q~\Ó\Ð\Æ\\Á*³½¦','',0,'?'),(_binary '²¶?¯\Ô\ä)\Ó3s“{\í','wp-content/themes/flatsome/assets/img/payment-icons/icon-americanexpress.svg.php',0,_binary '\Ð\×\È+f\ÈO£\È3\'ù .|',_binary '\Ð\×\È+f\ÈO£\È3\'ù .|',_binary 'G¨ƒ“T«\Ò\Î-Ã¤Eú\à:m…D©ú³ºˆg=”­2','',0,'?'),(_binary '²º-[õŽˆŒS\Ñ_Ø¹Qðø','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/IpAddressNotFoundException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1:°\Ø!•G~ q\çic',_binary '^\ëDCguPT!>»þ›ôW¸\Å\Z»\Ç¯k\Ý~_5\n8','',0,'?'),(_binary '²\É\'Ü¶?`\âØ¤ %)ò','wp-content/plugins/woocommerce/includes/class-wc-webhook.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nÇ˜bL/·.\r\Ç?',_binary 'B\Ö(\ël1j8D.*¹\é‹õu\ëZ,\Þ®¦-\ã\Z','',0,'?'),(_binary '²\Ë\à]…³;(-–9Ï–','wp-content/plugins/woocommerce-multilingual/vendor/wpml-shared/wpml-lib-dependencies/src/dependencies/class-wpml-dependencies.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h×¯“?–“Q¹@¥w‹Ð¾\Ç',_binary '9ý\Ìý+þÐ¾\Ï	“H²/Prºx{\êB\ÒQô¼÷ù8.','',0,'?'),(_binary '²Ì®@²ø·\áJ\Äøp/t','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\×\ì,¼S=–\Ð\Í\ØT³8¨',_binary '»–ÑŠcY2\Ü5%Œ\É\Ï=dt}¯µ¨~^ÿ\Ä\Ë?','',0,'?'),(_binary '²\ì;ÿK\ÉP[ÿÕ¬…\Î\æ','wp-content/themes/twentytwenty/assets/images/2020-three-quarters-2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u$‘ªüN²²‘\é\rÂ6',_binary '¬\ÛY0ŸÂ‚•hb_ñ%\Ï\ß/Àô¯_1¡$Z£~xÏˆ','',0,'?'),(_binary '²ñ¡¾(Ã—\Æ\Ç#…0','wp-content/themes/flatsome/page-right-sidebar.php',0,_binary '=€º\Ã8\ßS¢}‰\ìp²þ¥',_binary '=€º\Ã8\ßS¢}‰\ìp²þ¥',_binary '\Ó\Õ\å>—6­Ñ°¾]\ê\æ‘Bdb”¥\áp­O‚ôòw','',0,'?'),(_binary '²ùzvo:ø·\ÜB%šºðõ','wp-content/plugins/wordfence/lib/dashboard/widget_content_ips.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I\Ãh…ƒ®%u-C\0\Ä',_binary '\"YÂ¤&6HU¾^\é·\'ý$±ž\å=_;>þ°§\æ','',0,'?'),(_binary '²ÿþ­x\ÄÐ™\Ò)DC‡\Ì<','wp-includes/js/customize-models.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô\'ôÿ·‹~G~öÔžœ',_binary '¼hð3XVx\Úp\Æ\ìT¼\èOSÂ‘Sfb\æ\Ñ\r„Eæµ\Û','',0,'?'),(_binary '³\n1—~È¿\É\ãˆ¢‚(\Éd','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-category-list-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/%¯<¶˜%AŸI\Ý+',_binary '\ãµÄšEüŒP\Çõv¿\ç qh¦ý(¹@*24ÁÀW1’','',0,'?'),(_binary '³~£š¹­U÷\"\Ð&\Ð','wp-includes/images/wpicons-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ã\çn\×V\Äo©$š”Of~7',_binary '\Ý]Ú©A=µÑ’¿%\Îq¢%aMÁÀ‰ù\àB­U\æp','',0,'?'),(_binary '³3|\ãG·ncMza7o‚N','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/frontend-container-block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þí²žƒ\Ô\ÜX©O\ìŒ/@¾',_binary '^­	4,9F%\ÙX\Õr˜\íÿR{\ÕN\ë\Ù@\ÊLQ','',0,'?'),(_binary '³tõ~¼µ½\Ê\Þ\È*\ìÖ†','wp-includes/blocks/page-list/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡7\Î\ÍòV\0\Â6q\×E\Ìõ',_binary ':¡ð1\â?¿VJ“À¹\èÛ‹ty\"\ïW]i§\Åt’|','',0,'?'),(_binary '³\ÌW2\Ý\ØDñG‡7‡V','wp-admin/css/common-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\åb’z\Ì¾C¬\Â<xc',_binary '*\0o@w|{WT¿\ç\ë\ÓG\Ê~\Å=”Ÿ¶=§YQ','',0,'?'),(_binary '³\èMŸ\é~\n\ÏT|·','wp-includes/js/mediaelement/wp-mediaelement.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ê•‚v·\ÞEK\ÓÂ‡?\r\Ä~_',_binary '!?ÿ[ö\Ü_ü\Å\çrô€\á=&\È\nö-%!y¸£\r\Ú','',0,'?'),(_binary '³1¾f?¼ðq¿ûŠ\ëF;\í','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-radio.php',0,_binary '®\0\ÑrtaÆ’\ÑA\æ#wõþ^',_binary '®\0\ÑrtaÆ’\ÑA\æ#wõþ^',_binary '•‘W2µüv¥eú\È;·\Ä2,ù+\Ü\Ú\r¢>NuT³Ji','',0,'?'),(_binary '³Cè‚-\Èwx}=F9j','wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/bancontact.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\è§ŒSžX¹.%nð ñh',_binary 'khe\Øk¤Q¹Z²]McŠV	K¸ÿ\ÒIL<¢Ö¦N','',0,'?'),(_binary '³D¼X±A\É)\ç\Ç/øA­','wp-content/plugins/woocommerce/assets/client/admin/chunks/5396.style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿“\ÔA^\Õ*–(÷i{(\Í',_binary 'úõ¶w¿w²\Z¢\ä›\Ò-§Cž™¹¸\ç»m¨‰¶','',0,'?'),(_binary '³HD$©3e0L\Z2}m\Ð	ð','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/variable/variation-attributes/test/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xôH~\ÈU\Ýý\ÄU\Ùr™z	V',_binary '˜Cš\Ýi‚£úX˜lC\Þøh-4Š˜K\âq@ “\Ñ\ão,‰','',0,'?'),(_binary '³IiBf\Z¯]\Ð\Ê\Ø§ðr','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/legacy-events.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ð\Õ(\Í7V¢‚e<ˆø2b‹w',_binary '‚;ú›(Å˜ž\à‚hz™€R\é(Ó›¡¦g…\Ú/¥˜•\Å','',0,'?'),(_binary '³U\Âl€’3³òjÊŽ\Õz','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/external-link-card/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª\ç…zsº\ÕO.\ËDŽF|‘',_binary 'hÁ¹Ø¬®hÂ¥\0M<}½\ä%úúõj±‡u¢Ši\Ê','',0,'?'),(_binary '³Vb(ktˆW\"\í6(;Æ´ ','wp-admin/includes/class-wp-media-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\ÉØŒ˜w´\ç \ë«\r>',_binary '$\Z€X\Ü/B\ìüyšEQlfaˆ“\ÕRPldoe@ ','',0,'?'),(_binary '³Zc9$jœ§û¸ñ\æA•','wp-content/plugins/woocommerce-multilingual/templates/products-list/filter.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÙvAF™\â\Éu>«Ü»\Åüý',_binary 'õœ~\é\Ä%qo±Œ\ÔS«­‰vË™\\t\ÃX#\æš|˜','',0,'?'),(_binary '³Z\Ü\Ô\'²}“k#¢¬O ñT','wp-content/plugins/woocommerce-multilingual/wpml-config.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç0´*‚žm.ld)·E6',_binary '\án…³Ð•½˜\â~€zA\Ñ9&\Ö$°v)œxW¶ntØ´96','',0,'?'),(_binary '³b’­\\\Â5\ÔÕ·E.™¯:','wp-content/plugins/woocommerce/assets/images/payfast.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y²ˆ¸Œ\ÂLù\Ûs3K\ç6	',_binary 'Š\r^3\Ç\ß	Š&{zy J–k+Vz¾	T\æl\"','',0,'?'),(_binary '³c¬‚|\Ø&÷¨\ß= Ü ','wp-content/plugins/yith-woocommerce-compare/assets/images/08.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'žô°¢\nð,\ãw¼´|S¿£',_binary '¶˜um¸–\æNQl\Ógu\çe+\ÓÿI„¡¾­[~','',0,'?'),(_binary '³iÈœ\Ì1Š\é\0¦\Î\èÁ8','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-php7.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ó¶S;h8\î^\Ñ\Üg\ÔR',_binary '\ã\Ðm\ëfÊ¬º \×S¢XTª¥\Å\Ã8\Ì\àA¥-¾g','',0,'?'),(_binary '³n\Ë\Ð\Ó5L½z†à¬©\í','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-repeater.php',0,_binary '\åP…\àÄ\áLœ¥Ÿp‡úÿ',_binary '\åP…\àÄ\áLœ¥Ÿp‡úÿ',_binary 'G<¼üUŠ\å\0\ïœ\æyO˜‡ð¤\ï/M\í|JPV>','',0,'?'),(_binary '³tfF	\Ör{™Ü‡ _I²x','wp-includes/SimplePie/Parser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©Ø¬\Ã8\rÊ\î\íöY Œ',_binary '¾\çÑžŠ\îKñ\àˆf\Ã\'\Ì\ï?\Å=\ÑO®\ÓnÆ°\Ü^ÿ','',0,'?'),(_binary '³|]§D\Åó\Z.’Eî±®','wp-content/plugins/wordfence/views/scanner/scan-progress-element.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D¶ê«¯üy\ï•5\æpc',_binary '0(ú¦5D²=UŸ\ïÔ”~\é\ØÚˆI\")\á¥7h','',0,'?'),(_binary '³}£îŸŸ\'^G\0\0ô¹¦Qœ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/cart-line-items-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é¹÷;^(\Ø=Á£!NZ¯òA',_binary 'Ü½¦\ï`q—µ13\r±OlòV\\Œ[‰K¬·#\ß%ŒT','',0,'?'),(_binary '³¶g\Ë\Èüqš›ŸŽ$B','wp-content/themes/flatsome/inc/classes/class-flatsome-default.php',0,_binary 'Ú»Rm\áv> ÖŒ­\Ï',_binary 'Ú»Rm\áv> ÖŒ­\Ï',_binary '-\á‚‚^NAk´µn»c\Õþ\àU,\Ï\Îù%F\ÓØ”','',0,'?'),(_binary '³‹S†’•;/cD=°_û','wp-content/plugins/ti-woocommerce-wishlist/assets/img/logo_heart.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÏµR\Õ\Zþ´\ÎC\ß\Õ[ý@\Æ',_binary '8º±\ÃJ‘²ñ–Lûsbº6\Í[/÷Üš\ÉR‹\Å\æW@B£T','',0,'?'),(_binary '³™)Ø’\×D`!\â¥UY/','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-coupon-form/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pvB‘O`9ŒO˜g\Ñ\ÞY',_binary 'y^E\ÄI \íÏ½.<6Œ¬˜¨\ìx\à\î2¾\Åy\ê-‰\ÌÏ‹','',0,'?'),(_binary '³›±A\áBw)•0:\é;ô‰','wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-classes.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\Z\íZ\à¨N\Ä\ÓKn²]H',_binary '<ô9œ§#n¼W‡±â£Œ¢g\È!S‰\Ó¼Ëˆ\Ü\×\Ã\Äa','',0,'?'),(_binary '³°\Ùým\ç¢¹\\\ê¹Bs²¥','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-pt_PT.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•Nƒa`q™“4Á¦.z',_binary '¾@™¶\"*BMa&‹Ô ~øJOHASý]s2e¹¢û\ã%F','',0,'?'),(_binary '³»[ýlHHƒS\ë\ì6Í“+','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/sidebar-layout/main.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñ¼²W®Ò®ª2N’\Å\í\n\ê',_binary '¤B\Óøp\âHñ\Ù@¡ƒlAûE¢\åŸð£1¥v¸””<u','',0,'?'),(_binary '³¼ú-S2‡s›·»†\Þ','wp-content/plugins/woocommerce/vendor/composer/platform_check.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Hù\Þ#À\ë–;±c˜L)õ',_binary '€hi Nç´½>u\ÂZ!l\'º\ÂdðþK7q¼R\Ëo\Ã|\Ï\î','',0,'?'),(_binary '³½\ç†hPZ/\Ë˜—JŽd','wp-content/themes/flatsome/inc/functions/function-defaults.php',0,_binary '\Ú÷›¡ö¾”ÿW§ ))\Ä!',_binary '\Ú÷›¡ö¾”ÿW§ ))\Ä!',_binary '¤\ë|>†‰\ëD‚h|\ïsJ#ªQði„-$3´8|?\\!\n¦','',0,'?'),(_binary '³Æ»L\æòÁ\n£q&&û\È','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œg\ã\0ð÷p\Ä	f\æ/ˆl:',_binary '\à\ç)„œ\Ê_¹T´\ïù\éM\"«4\Ö\Öó¶\0ƒÙœ(\æ','',0,'?'),(_binary '³Ö±§\Ò\â°F!4H(ð\Ó=','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-order-status-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v€½\0úŽ;u¡Kô',_binary '·Ò‘˜©ŠŒ 5a73þ\æDË¢\ÏûWMƒò4	þú¤-','',0,'?'),(_binary '³\Ø\í£  27“‹…zi\Ü','wp-content/themes/flatsome/inc/widgets/widget-recent-posts.php',0,_binary 'ßº\Ò£Ù zñKJ\Õð\ç5\Ó',_binary 'ßº\Ò£Ù zñKJ\Õð\ç5\Ó',_binary 'Ð„Jš÷|?\èÿÄ¤0IFjRwñëƒ™¯W†MH´uN','',0,'?'),(_binary '³Ý€\Ñ|\ÚY\Ð+R8´\ä…‹','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/validation/components/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SI\ß\äõ;M¸\àøM|z\Éz',_binary '\Í_§wqTN	^Ÿ“\Î\ZcI*“{LkQ‚Gþ\æ\ÝO÷','',0,'?'),(_binary '³õr`\ê`\Ø\Â\ÕYZŸ\Ñ','wp-content/themes/flatsome/inc/admin/options/header/img/header-super-simple.svg',0,_binary 'Gf»ˆŸ\Ë\0\Ñú¿+Múz',_binary 'Gf»ˆŸ\Ë\0\Ñú¿+Múz',_binary 'q™\Õiò»…¹J8\ß¯&\",¢-3\æØ \Ò\ÅL9’\ÕI','',0,'?'),(_binary '³þÁ ’\Ü\ÄF£%º','wp-content/plugins/woocommerce/vendor/symfony/css-selector/XPath/Translator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ôR~–«HL1\é!\Ø\Ú6¦ñt',_binary 'Yd1…v\Æ\Ìp•£¨\Úx@GQDøW=ñwZ@|§Šo\ïB','',0,'?'),(_binary '´\0:¢zler~—+\nNywú','wp-content/plugins/woocommerce/assets/fonts/star.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kx£L\ê2\å\îŠD´\Z^',_binary '¸?\Õ\Éò|®Šœ.\"¶~Z\Õ\çðÑ†>ø£I\Ù\Å\Óy#‰','',0,'?'),(_binary '´\n‘ot}lò·!E¼`I','wp-content/themes/twentytwentyone/assets/sass/04-elements/misc.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Éÿ\'UY\Õ\rgi_\ÒñŽ',_binary 'ÆŒ\Ã%{«cUkwž\r›ý^p%š‰ö$L÷`\Ñ\â','',0,'?'),(_binary '´\nš\ËUŒ÷¸X\"aÓ·µ','wp-content/plugins/nextend-facebook-connect/admin/templates/settings/custom-actions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r!AˆxC	%Œ(“øÄˆ\Ö)',_binary '\Ø!ƒ¸\Ån}ƒ\æ=>Zµ¯h€\ä¯\Â0h\á3¼¹e“ø\Ô','',0,'?'),(_binary '´µß²;ø›0ÿ‚\Ù\Ë','wp-includes/feed-rss2-comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L¸°6<\Õvz\ÇÁL',_binary '\è3Û¸\ÐkH\Äý\Ð? 1B\àg#~<XÁògbe\â¶','',0,'?'),(_binary '´!5f/°d|^\É\ÜCB¼','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-billing-address-block/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Õi\\\ÖEOT\Îõ\î¶C\'\'`',_binary 'O°\'—ÁÝ±2z(y\Ç\Ë/\"­^+/:ŒA{¥¦\ÄO¸W€^','',0,'?'),(_binary '´!˜-LHvø)¬\ïn¨#','wp-includes/https-detection.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¶Qß€•d¡\ê¾¢M¯½',_binary 'ómÿ;p)ˆ+~®vm$\íº\íy÷¶¸\Ç\nˆQòV1\ÊL&','',0,'?'),(_binary '´#´¡­%„W„”¿4Š\ç\Ó\ê','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/MobileApp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñ(¢\áw¶\Åÿ?	D\é®Bf',_binary 'w§\ÒG„\Í8\É\ÏK.pg\Ð(\\Œ¯\ß\r¨·?-e','',0,'?'),(_binary '´<\Ø\ì€g\ã=±C£×´qD','wp-includes/customize/class-wp-customize-themes-panel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\îûuZ©””7Ñ³’œ‹¨U',_binary 'aMk\á¼\ÛM.\éÝš„fJ>½ö”\Ì{¥Vö’Á>v2U','',0,'?'),(_binary '´Cq\ÇTH\×8‡\\\Ô6Ž\Z','wp-content/plugins/woocommerce-multilingual/classes/User/Store/Noop.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷\é\Å*$l\Z\ìX/\Ù-Ÿ[„º',_binary 'Ü–c\ÃQH¼<‘yr‘\íÀ>X››r›É”\Û%©\Ý\Ô','',0,'?'),(_binary '´I…6›7W¶\îfiû¡0','wp-content/plugins/woocommerce/includes/emails/class-wc-email-failed-order.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^›Á\ál”\Âa¼\Ê³',_binary '$\æÇ½y^ª\Ûu0lvƒ\Ùpby¹ ¨“Á\äÜþ\r','',0,'?'),(_binary '´MÝ§ny\Z\Ô\Ü\ä¾Ô²','wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-section.php',0,_binary '(X+†¿a9o/1>\ä\É24',_binary '(X+†¿a9o/1>\ä\É24',_binary '\á_ž¯º\ä\ß\"”òm\é¶\ÖFŠ*l\È\r3ÄŒ0\ê','',0,'?'),(_binary '´PC<\Â\Â	º\Î\Ûvn\àR8','wp-content/plugins/wordfence/images/tools.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡ò@cI\Ü\Û\Ë\á\Å',_binary '\Ü\êY„\æ=\Ü\é\á¾\î\îRB)	~ò\ë\×\ï‚Ü–ÝŸr','',0,'?'),(_binary '´böQ+@l\ä~k£ž˜\è\Ü','wp-content/themes/flatsome/woocommerce/single-product/related.php',0,_binary '\Ã)¢SþRJ5C)ªó¥S',_binary '\Ã)¢SþRJ5C)ªó¥S',_binary '\ã\Õø;‡tÉŽòAe^òÄ©ò5K ¦\ZH\ãq|\é\Ü7$A','',0,'?'),(_binary '´dh±Cž\ZgÀ2)j#ý','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductTopRated.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú\Ú œ\r‰ºD\áL\Ü\Z',_binary 'LÂ¬ ˜õt/\Ä\0kiþAX\É}\ì7û…gwh\ì«ù','',0,'?'),(_binary '´eZx•\ã\"&!Àtr‰”\ï','wp-content/plugins/woocommerce/assets/js/frontend/single-product.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£\ØrX1X\'\ÝrO\ê—&\Ð\Ö',_binary '6\nL|Wˆ¤®\"\èO˜¥ÒŒ„,´qB>5­nùœ‡#','',0,'?'),(_binary '´m\ÃCB.Õ¥\ï>F_ð#','wp-content/themes/twentynineteen/sass/media/_galleries.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯–õõQ„\á6y\ÇXg\ã\Ê\è',_binary 'ú6©!1oAu\àøEo·\ÛFw\È9\n4\0¯\\%wM\Û\r§g','',0,'?'),(_binary '´m\Ô{\Õa\"H(Ó©¶#Ou','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-typography.php',0,_binary '\íöÖ€F_ð„!Rbú_m',_binary '\íöÖ€F_ð„!Rbú_m',_binary 'Ô•\Ý}\È\ÅùK½\æ¤7\å[\ÏQ “5\ÉgU”#„\í¬gI','',0,'?'),(_binary '´v>ð8Šó\'¶ôT6¶\Í\ÕX','wp-includes/js/jquery/ui/progressbar.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Äp%ž7%óC/™s¤‹…',_binary ' \n±@þB+´L\Îo\å&O¾\Ë\épP	\ÌÖ—r\ê\Z^{R','',0,'?'),(_binary '´z¶OXf>k\áZbðq\Ü','wp-content/themes/twentytwentytwo/inc/patterns/header-with-tagline.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Þ3¾x\Â+[ r\è\äÍ¨„E',_binary 'q´†\åÎ\æe¥ñ©10®q\ÕE•A\æyF™É«\àV”\ã','',0,'?'),(_binary '´~?Oÿ\r-~%‰\íÕš\ä','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/search-list-control/search-list-control.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜±m‹+<EÉ±ù0r',_binary 'UxŸõ«{‹ñ\'Wâ‹—îŒ«BwU\"Ù\ê\"Í”ª‚\Ón','',0,'?'),(_binary '´šöe	r¹£ºY\ì6ˆ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/page-selector/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’Fò\Ï^T±\Þ,\Õk!\Ðyµ',_binary '³ÒŸ5™3û[S/0ˆvr6zG>O²þ‘¸m\ï\Él','',0,'?'),(_binary '´šý\á¶4GL‚°¥2j\è°','wp-content/themes/flatsome/assets/img/payment-icons/icon-facture.svg.php',0,_binary 'A¸šh‡ó½öþ×Š}_,K',_binary 'A¸šh‡ó½öþ×Š}_,K',_binary '\ÄÀ\ËRÌ¼\Üg \Ù3a±¤y§\Êj=/­\rúSJ~þ+\Ô4','',0,'?'),(_binary '´‚,\é\×M†ø;vûû','wp-content/plugins/wordfence/views/dashboard/options-group-import.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ò\Ã+:\ÜC´š¯\ê\äg˜Q',_binary '(«#•ª\Ë><û\Ä­\"(\n\Õþ\'K™\Õ\ìƒ\ß\Ö\Î','',0,'?'),(_binary '´ƒ3 T.^Æ™<\Þ÷ø','wp-mail.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p¾~ßˆ†µ\ÆV\Í\r¤¢',_binary 'œ´@ºü¾`¯\Ä[\Ý?bP\âx\Ð<l\àX ¥Õž²S9[7','',0,'?'),(_binary '´‚:TŠL‘5¶EFªVc','wp-content/themes/twentytwentyone/assets/sass/04-elements/links.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ý¿X|^2\Ðgs÷= Ž£',_binary '¦P«‘s\'\n¯B\Ê\æKM$ê¼“rfy6yÝµ[‰²©e','',0,'?'),(_binary '´”K£°\Ù9<†\É59\ÙACt','wp-content/themes/flatsome/assets/js/extensions/flatsome-swatches-admin.asset.php',0,_binary 'I~‚›X7\Çñú\Z–1N\í',_binary 'I~‚›X7\Çñú\Z–1N\í',_binary 'õ77Y\00—ÿ$HV\í\ë,Ž1?;gfNs¹´1ŠK','',0,'?'),(_binary '´•\'ˆ‹@S \Ç÷D\á’š ','wp-content/plugins/wordfence/views/scanner/issue-control-ignore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U±¤?\ëq>ÿ@\áª\×p',_binary '\0{aq\î(w\Ï!Izó}+lÿx/I0¸9|1%¡øÀ¼','',0,'?'),(_binary '´™6¢i<£;\Ô\æW\r.¬','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',÷Jª¤´\ÃD§Å©\æˆ',_binary '8\à³¢¦ô}+º‹{3{9\n²ŒBxž¶ñ=\'0¼\Ï','',0,'?'),(_binary '´œ\0\Ûb™&\Ì;¸þ‚Ž8','wp-content/plugins/woocommerce/legacy/js/jquery-serializejson/jquery.serializejson.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'RƒžLD}\É\ï\Üô—¯ÿô',_binary 'I\Î\00¦…§tx¹25£ŽžQ\È\ã8ò|H[4üÛ¦\ÜO¯','',0,'?'),(_binary '´¥\é<Bbd–™°¢pcL','wp-content/plugins/woocommerce/includes/legacy/abstract-wc-legacy-product.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x¹*ŒËQú|‹aðœ“',_binary 'DÐˆ–\ÎÔ­A\×L<\Ñ\î\Ñ\Ý;j\ß\'36¥m¢g}û2G3','',0,'?'),(_binary '´½\Æ\ÚK›\Ï»›¿BÊšZ\Þ','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/RuleEvaluator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5¬\"\Òvl«|\äS) 4MŽ',_binary ' ]\Ù{\ì˜r\rrvõÙš\Èe©\Öêš™H\ílÁP(N.\çW\ï','',0,'?'),(_binary '´¿ßª\î—`K»óš\r\Z','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-preset.php',0,_binary 'lXþº\\ü|z6™½Â‘¶nP',_binary 'lXþº\\ü|z6™½Â‘¶nP',_binary '_²õƒ¿˜?pG+#H¹©dþ4b‹Fñ\Ô^ñovˆü','',0,'?'),(_binary '´\Ãer@n[xCx”LD','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-wp-installer-channels.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\Æú\'Ø™6M-Mc\á9z',_binary '­µ¯4¼Æ‰OQ’f\áf\è\ÑS\ì4dx/“\×ùþ½\"4™','',0,'?'),(_binary '´\ÒK´\ç\çOÈ–9\×3|<','wp-admin/maint/repair.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÐÞ™ùªª~Œ«Mâ™¸\Ã',_binary 'IoT\È]Š\àj\âJ\è\ß~\ÐÄ\Ñ7bn!M|\Ú\ç!F\ä\å­','',0,'?'),(_binary '´\Ôz\ß;E|~8h‚\Ä','wp-content/plugins/ti-woocommerce-wishlist/assets/js/admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' )¨š‰>ôúC\Çôu\Z µû',_binary 'd\'À?K\ÇD jñº	’%\å\"ˆN\Ûûœý”<\ÉÛ˜\î','',0,'?'),(_binary '´\Ù\ç®jIÞª\Z÷Æ¯\ÆN€¸','wp-content/plugins/woocommerce/packages/action-scheduler/classes/schedules/ActionScheduler_CanceledSchedule.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·šò\ÚÓ¨´©	zbAÌ¾ƒ',_binary 'E²g¾¯u\Û\Þk\r¼	–­§þ“m\\QŽm6\\;W<7¡\æ\æ','',0,'?'),(_binary '´\Ý\âR>€\éIg¹ÀW7^º\Ù','wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/class-latest-autoloader-guard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\çŠ~B½Ô²¢¥>\Çzœ®\Ó',_binary '&`¹_`ÿ®\Ì\á\ê9\ÙTTkNy\Þÿ5z`^—i¥9oŽ','',0,'?'),(_binary '´\âŽM‚ª{x¸J\ÇH£”','wp-includes/blocks/pullquote/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«÷XF&4G\Ì\â$}‘xJ2',_binary '|…UþòÃ¤f}\ÏY\"›¸»Xa¨<Ï†/€\ë#CO7¯²','',0,'?'),(_binary '´\ç‘¶\ß3\ç\Êc\Ü\Ð\Î\ï','wp-content/plugins/woocommerce/assets/client/admin/customer-effort-score/index.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’p¶ñt]G¿D\Ì<3\á',_binary 'ù\Õ7Žzr\éu’8‘4ýIdhgð[€U­5:\ËlF”X','',0,'?'),(_binary '´\ïVý}Aû‰\êªyóþ\ä|f','wp-content/plugins/woocommerce/templates/emails/plain/admin-failed-order.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€\r¢`-®*ó\ÑùÅ˜\Ø?ñ',_binary 'F *qÑ¬\ß&†ª\ïy<õ>þRl¢\Õ%\ÇqØ”{)\í\Â(¨','',0,'?'),(_binary '´ðI\Ç\å\Øû.$U0]\'ˆS_','wp-admin/includes/widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»\ïß•-\ÓI\å_™\'y“W',_binary 'Î­d\"“\Â\Û^b\0—gð\ÌT¨D7\×B\æk4\Ëiüõ:¢\\','',0,'?'),(_binary '´þê‘‰}úOaŸT‡TN.','wp-includes/blocks/search/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•Vó÷™»²æ—‚´',_binary 'ŒjV&®H\\Y\Ñ?-Ï¿;fñ\0vð%µ\ä\Ð<Irœ','',0,'?'),(_binary '´ÿ\å*<\Ì¥\Èi%•=','wp-content/plugins/woocommerce/src/Internal/Admin/Schedulers/ImportScheduler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"$¡³‰(I\ä!N£¦’“',_binary '¨\ZT·¿\æ\æ¤\Ò\æx#×¹\Ð~ú¹\Èr\çb:p#‡’@i\Æ','',0,'?'),(_binary 'µ\n3z\"R\n¬¬\ë?q','wp-content/themes/flatsome/assets/img/payment-icons/icon-belfius.svg.php',0,_binary 'yï¨BL0„\ÒÐ„6',_binary 'yï¨BL0„\ÒÐ„6',_binary 'I~¢q\å-\Ìr´úï›­=1\"þ\í[Áy\É —ðõ\r\ë','',0,'?'),(_binary 'µ.Pu“KMƒ|v[P','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row.svg',0,_binary 'ðhR\íL”<÷\Â\á;\âUû',_binary 'ðhR\íL”<÷\Â\á;\âUû',_binary '\ïQ`„òP 3\'¯£\Ù,s\Ïký+Ÿó˜S+\Û','',0,'?'),(_binary 'µ˜(£˜Œ‘ˆ‰p\ç…ð','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-wp-installer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ì\Þ=H±$•– )|\áÃ«',_binary '\árõu\Þ¿5\Ï\à\Z5S=÷\n\\kg´\ïI½…v\é­\î','',0,'?'),(_binary 'µ\åµ+DžFÜ¿TZ[H7','wp-admin/images/post-formats-vs.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦S¦l“ôH\\©¬¯¯ü\æ',_binary 'e…t¯«w|W§{x¿y%K:¦»QE7¬‘\å\Ã\Ó','',0,'?'),(_binary 'µ\Z\å[\èMµ˜[\Ù\r','wp-includes/blocks/columns/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÑÀð>Ÿg’\í\Ð?e',_binary 'Gö¾¨ZEB.8\ë~\ÈO+ó‘ñ\Úa±ˆ\Öv¨.\ä','',0,'?'),(_binary 'µ‚\ÐýJme²\âƒrf»o','wp-content/plugins/woocommerce-currency-switcher/views/widgets/rates_form.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\èñŒlðkX`\ä•,—w',_binary 'rd‚1S3¥“Oý\Æ0÷\0+¶²Ì©	F\âõ‡/®MQ<','',0,'?'),(_binary 'µ)ù\é}1¶›\Î/®ù4\ê ','wp-content/themes/flatsome/inc/admin/options/header/options-header-content.php',0,_binary 'ƒ´P\ÚX\éG„Û§4\ÎN',_binary 'ƒ´P\ÚX\éG„Û§4\ÎN',_binary '\Øø\Æ;3b¡[vIf*jlø‡²¹\ÅXAõ\ë\Ç\Û¢„','',0,'?'),(_binary 'µ-NÂ©$·Ž\Ù[›ƒ0£','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/filled-mini-cart-contents-block/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñ/it\0©\Öiw²1',_binary 'V±\Ú]D\ÆeP\Õ6&©\Åu–ü,\Íóõ\ØZ/¦¾~\Ò 1','',0,'?'),(_binary 'µ4¿\ÉHiGUß¾x˜','wp-content/plugins/nextend-facebook-connect/class-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':®42$“ù\çLÄ±Ò¬ ',_binary 'E\Å1\í7\Å¦KyMó÷\×{/wŒœ¬]g\ä¡Yj˜9','',0,'?'),(_binary 'µ<Ÿ3\ì†v¢&F','wp-content/plugins/wordfence/views/scanner/scan-failed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Åœ*\ç7\Ü\ÑP	rx§†',_binary 'üÃ´¶pü`)³ƒ28‡$iw6\ÕJ\êg\ÚjnD½j','',0,'?'),(_binary 'µ=—fd¸\\Ó‚vº\âˆú\â','wp-content/plugins/contact-form-7/modules/listo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Á…‡N\Ö\Í\0\Â\á‡)²\ë{',_binary 'Óˆª!tþ/)lpZ„|\×\ãý;nË„ÀbSƒ\î¢','',0,'?'),(_binary 'µA4^`MÉ§Xüõ \Å\ß','wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-server.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž\Ýw\"\ÌûýM=ú‰\à\á\ë¤',_binary '—X\ãSÝŒ65EA\ãyDú¢¡\Ûr¸\ê<\í%\È\èSR','',0,'?'),(_binary 'µA?\à™]\\8«PMT\Él','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int32.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿\ÐC\ÅB\Ú)cŽ\àaeƒ’\Ç',_binary '\ß[}“¾±D\Ø\Õ\Ô\0OV±:~-\Ô\"~mBh\"<\ÄùpW\è','',0,'?'),(_binary 'µC\0mŽ/\Ú~;\ÍÍ‚\æj¢','wp-content/themes/flatsome/inc/builder/core/server/src/Post/PostArray.php',0,_binary '¯D‡xÊ€ýS±*$×Š‚',_binary '¯D‡xÊ€ýS±*$×Š‚',_binary 'ÿL„\ÅhfLÉ‘™\ë/ªx\áX…Xœ1¨Ž~AK˜\ß','',0,'?'),(_binary 'µGV\\z²…#°ÿƒ!;¢\Ä','wp-includes/js/media-audiovideo.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ýTúf¯\ãE\r\ìÜ·e3',_binary 'ð-¨½S\ä?§R8#³V\Ï\á1@_\Ú\î\Äúø\ÞW\r>‘^','',0,'?'),(_binary 'µMŸ\és\á;\',¼\Þ\Ú-E','wp-admin/css/dashboard-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+32m‡÷}–#6j›òP°',_binary '\ÐEl\ÉQ\Üi·8\ÈLŸÙ’å™\Æ\ÄE[J\Èÿ]R<¦','',0,'?'),(_binary 'µO—r#½\ÔýTºG‡¿!','wp-includes/js/swfobject.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿýº,ÿI}p„e~2˜qõ',_binary '?”Lw‚ž\Ï.\ç4M\îÕ’F…J\Òø>fI†é´†œ','',0,'?'),(_binary 'µQ\è1\ÞÀTdt(Í±¸9','wp-content/plugins/ti-woocommerce-wishlist/tinv-wishlists-function.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i¤f4iù<\ï÷jò/s^',_binary 'ÁŸ¦1û\ÓÐ½AÑ–2@ôÂ‡÷D-\'Ä’c‘\êÜ±†\é','',0,'?'),(_binary 'µX½úŸ\ÆúMe\Õ\â¤t/','wp-content/plugins/yith-woocommerce-compare/assets/images/05-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô~õM¥(Á¶W+\Üjö½H',_binary '\0 ÅŠ¶\Ù\Ñ\å‹Vm)\ËùT„ú<ˆ¿_\îEš¥0','',0,'?'),(_binary 'µl&ö*‡©õñ\ßõ\È&','wp-includes/SimplePie/Content/Type/Sniffer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JVP°t>%N\Ó\âµðˆ\å\0',_binary '\nþ·S/³\ÒÌ¼#@¦\ë%ô\Þ\Ó,\îul°\è½$t¡¸…T–³','',0,'?'),(_binary 'µp@–‡\n\Ô™\Ý\ÈW','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/products-by-attribute.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Â\ë–v°%÷RØ¡5\âƒe',_binary '\\“C%\Ñòµ½¦Å„\Z;\×Q\×\Èðt\Ï_·\ã®_bñ\Zk£D','',0,'?'),(_binary 'µsõ»¾ÀIˆ#!3d±\î','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-wcexporter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\êl¹JCò1D{{?H¬',_binary '?0!˜“ÀM\Ãk¾XT‘±Pö†ô€Œƒ‹\Ê7	|c','',0,'?'),(_binary 'µz\à\Ý;ô)-\á\\h\È\Í\nrI','wp-content/plugins/woocommerce/assets/images/square-black.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þƒ\Ô0\æO“\n\î~',_binary 'jfo\Õ\Ãh)þt^\Í\î^7f\áu,4w3Á¹­K÷ð','',0,'?'),(_binary 'µ{oŸö\é\ØÍ¼8ò\Ö3o{','wp-content/plugins/woocommerce-multilingual/wpml-dependencies.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm©¡ûHO•ø¶)‘;ý¸\Ü',_binary 'ceˆ\çZ¤\Ü3\æØ\è\Öy1ˆI }e²\Ù\âÓ¤LƒG\ç','',0,'?'),(_binary 'µ}¤@S\ç–.š1J¯„\È[I','wp-content/themes/flatsome/assets/js/builder/custom/content.js',0,_binary '`Û˜\Ïen¬`\ì&¹k‚St0',_binary '`Û˜\Ïen¬`\ì&¹k‚St0',_binary 'Š~AÂ¦ k·±\"/™3\è™D³m}Y.l¸K\ÜMó©4','',0,'?'),(_binary 'µ…,yeñ¬v•]\ÓNM\×\Ê','wp-content/plugins/woocommerce/assets/js/flexslider/jquery.flexslider.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd#ÿß‰­¢0ŠlŸG[',_binary '\íº\ç$\ç9›#/ónv\ë^K\ÓÀ³•zŸ\n\ÑE„+Û¨','',0,'?'),(_binary 'µ†˜=\ä^«\ÍfAôXDJ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MantisBTInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×\ã‚{”„\ÖXTc¢\Í<Ÿž†',_binary '\ëvŒ¼‡/¨±\ãUþc’\äbd\æIŒ4$c™\Ñ\áwS‰','',0,'?'),(_binary 'µ†»$(­g‹(Á®\ÔP\Ú\ç/','wp-admin/css/wp-admin-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GƒQ5\'EY­o\â0¶}\Æ_\Ç',_binary '0‡|TF\î\á\Î\ÝO 	\ê.—«‘\å¨\ã.¹¯>¹CEjûø','',0,'?'),(_binary 'µŒV\Êhmxÿ\0\ì¡CñM','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/stock-filter/test/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')lÿE\ë;\äÜ„\åý\Ú9Ô¬»',_binary 'Ÿ \ínvkºŸ\Âzs*(LFp\n?vd¡:a‰”y}\Ä!','',0,'?'),(_binary 'µœ5ŽAtß‚–m0iŽz®','wp-admin/css/themes-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ	B‚\Ù\ÞôŠ £ý-‘¯¢',_binary '¢Ì–N¯2‡\ÏK‚\Ã\ß@+\Å\Âys&WTUƒ$n6','',0,'?'),(_binary 'µ¥\äªyx“\è\â\Âx4*ý ','wp-content/plugins/wordfence/modules/login-security/views/user/grace-period-toggle.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BP¡\Ïö\Å\â·rùç²“\0‰',_binary '[f­Œývûð\ÙAlÔ»Ë„N\ÖûA:4QP‹­\Ó\ä\Ê	r','',0,'?'),(_binary 'µ¦¨÷ù\Æ\ÕW\Ó.\ía\Î','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½Ý”\É\ê\Â9I7´|«ù',_binary '¿±\Ø\r\0šB´yfõ{§\0¯›¡¦6@4eýtSÌ–\Â','',0,'?'),(_binary 'µ§H–Ð¡ð\×ó¥YVhZ£','wp-includes/block-supports/duotone.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÕƒÁ~9Ox_apØ˜\î\î',_binary 'C©B]¨\ÛHjJ\Ô\ßtt\Ö8õg5Žm0¯¶.¤yðÀSˆ™','',0,'?'),(_binary 'µ§¶\æ\áQGü\Âw~ÿh\00n','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ó4Í‚\"\Ð(¬¦\æ	¶ž',_binary 'yŽ¾{…ð ˆY\Îü°,`Æ¬À5\ÙI\\é»l-¬u\Ù\n','',0,'?'),(_binary 'µ­¯†\Åwy¤ù~B÷öµ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/query-state/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“ö{z	»½ƒ\áX\ÜwkD',_binary '·-µBOú­NJrù\Íw-!s\ÖKl„\äC\Ó\ÛPô +.','',0,'?'),(_binary 'µ±\ã·q†K\ÑU\Ôj\í¤','wp-includes/SimplePie/Category.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{ôô«\Ø[°Á \çZVG¢4&',_binary '¬<±úJ\ÂH\Ñv\Êi\Î	b\àŒ4l~\ãe\ÐF\ë\Úmj\Â','',0,'?'),(_binary 'µ²_ä‰IôA‘Ž\Ê]ŒC','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/textarea/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€·¿¦À }‰R2‘ª\×ñ',_binary '›Xƒ\éø\èþuLS{L4¯aŸ~4†ú\Î b;2;¸e\Ú','',0,'?'),(_binary 'µ¶\Ýú n€Še÷¶\Ý\Ë\îŠ','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/checkbox-array.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®¢e\Ðæ»¥\Ê\ÊÛ¬ós{ü',_binary 'žs­°n·d!¡Vq\Ý\ÛÀƒS‘\Ýñ(|4r¿;ûŸ?','',0,'?'),(_binary 'µÁOÂ­\n	„U\Éí —Rb','wp-includes/Requests/Exception/HTTP/304.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\ë;”·P°#S\Zˆ0|]\Úc',_binary 'v¦\ÓC‡	a\Î\'F\Þ;€øò±z\Ú»”(eJ\í±L','',0,'?'),(_binary 'µ\ÑA!kB•\âòñ \nO´\Ç','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/bpml/icon-256x256.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥®¬{[c¸\×\Ï\ëM\ì¾eV',_binary 'ögšD‹ƒº”Ž•\Æt.U\Ùó®øÕ±kø–÷gó½ž','',0,'?'),(_binary 'µ\Òô†t¯‰x×¢Š¥¯\á','wp-content/plugins/woocommerce/includes/emails/class-wc-email-cancelled-order.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f…~]\Ç? n@ý<',_binary '>P\ÈÆ0¾ü\ËyX›öÜ“;QÝ…u¥.3h\Ò\á','',0,'?'),(_binary 'µ\×\í!#x\íDþ!À\ÒRƒ¡','wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/UI/Factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q¬jQ0‚g>ÝŠü\Ö[',_binary '\ç-	¡\Ëb0õ6ÀÉŸð\Ø\Ú\Ñh¨–a™T5f¯','',0,'?'),(_binary 'µ\ã-Z¼³€:E¾:','wp-admin/js/image-edit.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÛWÂŽ\æ¶N&z­;€\ï\r?',_binary 'I\\J\ÔLðôø:¼þÁô~#¾\Z\à\èò.ž’h','',0,'?'),(_binary 'µ\ê92t§º[\Ï¬\à*¯ù','wp-content/themes/flatsome/inc/admin/customizer/img/nav-line-bottom.svg',0,_binary 'übR(úz8\Þ\'T\"xüzz¹',_binary 'übR(úz8\Þ\'T\"xüzz¹',_binary '…¡»]\ËþŽ\åª^\ë~6\é(9 $L+\Ìš\å¿ý','',0,'?'),(_binary 'µ\ê:V\Ì\áþv€g\ÊÙµõ\Ø','wp-content/themes/flatsome/inc/builder/shortcodes/values/align-radios.php',0,_binary 'H#\Û‘˜ÿ0\0ˆF\æŽ\ë',_binary 'H#\Û‘˜ÿ0\0ˆF\æŽ\ë',_binary 'r\çÿa\Ç/!9Q\Â\åÓ„EZ;_Â†¹Œ€5h\É','',0,'?'),(_binary 'µó‰L›>¢©‰-0H\ã','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartFeeSchema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Æ3ÐRD±\Å2\Ù\rª=W',_binary ' ‚œª¦\Ú÷\Ñc¯.fôýG¹\åY€¹½DB\Zÿ@ °','',0,'?'),(_binary '¶V‚X{ö\Íü¼Q‚©À','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-totals-block/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬+gN‹<Ÿ\ÞF#—',_binary 'ð	f÷“\Õ\çØ¤³Y£nÑ€J ¶#”\ÇQ_¤@žL¶d','',0,'?'),(_binary '¶ô\"W\î©Xƒù¡¯\È','wp-content/themes/flatsome/template-parts/footer/back-to-top.php',0,_binary '\r«Vš½yô»õƒn+saO,',_binary '\r«Vš½yô»õƒn+saO,',_binary '\Ó?\ËöbÐŸoU…õ5\Ï};¥VK‰»qf6\\¢†®','',0,'?'),(_binary '¶º¤|jX–ù©\ß|\êfb','wp-admin/css/login.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\üL»\Ä;q–¥s\n',_binary 'µ§\Ð\É\Îý°\Ê\Îÿ\îS´\Þ\á¶JIK†\É9\Óy\Ê\å­\rb','',0,'?'),(_binary '¶& ö]¾|\ä\ã3œ\r5\á9','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H»\'Hyý²ø\àr\ç¶\n',_binary 'ò\é\Ð\ì\Êß“¼K4ô\Õe\ä\Å\Æß‚\â–\ØþS®]€n\ê','',0,'?'),(_binary '¶*i\Ú8ø\í]«\n4²–\î‚','wp-content/themes/twentynineteen/print.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸·4d¢­‰cŽt§s «O',_binary '–\ç$™eI\ï¹8a\Ê‡*¦ˆ¼¸ \0ºùD\à\åB\Ä0','',0,'?'),(_binary '¶MR²\æl\ÄBœF¥u','wp-includes/option.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SmH©\Z™!™(¼Mi\æ\íÝ•',_binary '¿Ba† *V\î\ì¯f¤\Óò$(p%,/E\ç\×`:\Õú	','',0,'?'),(_binary '¶N”\Ñû\×+õ¤¢¬›-òeV','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Telemetry/class-wc-rest-telemetry-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k 	~ÅŒ#×®\Ü ª\ÈD¹',_binary 'Áö¿¤™{úH\Z¦&<š¸½þ¬ð†µ_\Ód#Ž=D\Õ','',0,'?'),(_binary '¶^ý‚\ÉÌ«\Â.qŽWA5\ì','wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/mollie.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’b \Ö\ÓS4A›}iIÃ´$',_binary 'i\Ã\äB·¼§u5[;»:Ñ¤t€†òñ9eª+C','',0,'?'),(_binary '¶bQV\ê¼\Òmõÿ±S…y¯','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-filename-hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z¡•[¹º¡õR\âP\\\Ív',_binary '»t°`G¬\\ŠJ\Ô*¯J\0p\0±8\äh¶üW\Ì/\ØS','',0,'?'),(_binary '¶he¨\Ê-¬BJ–ñª_vñ','wp-includes/blocks/search/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o“tp{¤&<ì›‘6\ß1†Œ',_binary '\ný #8\å\áóÞ—F»ÿ\Ç\àÿÓ³l\ä\Èä‡—7\å;\é','',0,'?'),(_binary '¶r\\\Ùj”´¨ò\áA$','wp-includes/js/customize-base.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Nfªu\î\Z\\A\Ð\à0o®)',_binary '\Ü\è\Ùl’\àus\Äo	¡\ÍnÿGÇ\Å\íNU1¾`9.\Þ','',0,'?'),(_binary '¶t Áµ—k·b…r\È}\×\×','wp-content/plugins/woocommerce/assets/js/frontend/cart.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ãZ\åp\í”\áƒ\Ý,\Þ\",',_binary 'N)ûüN,‡Y\é…\Ê}0	\Å\è?Xg—\Î1ó[3','',0,'?'),(_binary '¶tP†3\Ç\Ìr\à=\n','wp-content/plugins/woocommerce-multilingual/res/js/wcml-multi-currency.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E²Ú…b\\‹5ß¾…ºç¡',_binary '\0\ßb\Î>Oü\Ò`²ÇŠ\ØO\ÓS«f¨M¦¯\Ó\ÓA‚^(J','',0,'?'),(_binary '¶~\ÊN“~ýO”\Îmó¹\ß>','wp-content/plugins/woocommerce/includes/import/class-wc-product-csv-importer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à¨\Êÿ\É\ÎŠm—Ô¾aö',_binary '+W˜‹W³4ˆ9‡\ß4¥\Ì\Ñ6²\Ü&9\Új(.ûcO','',0,'?'),(_binary '¶€DkÎ‡Ž\ÈSû« ­n„','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\"	ô\r\Â{9‚\ëq+E^[',_binary '\ÙOl…\Ø]%‹º¿´·$RðCoµm ¹b‡Tr\Ø>\Ý\ZG£','',0,'?'),(_binary '¶€•^nü[«¦\Ôa–¼','wp-content/plugins/woocommerce/assets/js/jquery-qrcode/jquery.qrcode.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rÿK»š˜G\é£j\Þù´@',_binary '›q‚\0\Ë+\å\äv\Î\çh1epW‘^\ë\Ê…ø\Ú~am\Î','',0,'?'),(_binary '¶Šp\Ðù–5 3!l#N','wp-content/plugins/products-compare-for-woocommerce/berocket/includes/custom_post/enable_disable.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\x\"Ô¨0ÁT,Ô™\×\ZD\â',_binary '\n\Ä<ƒ\rù˜ýŸM\ë\æ\î”y±x¾‹s<îœš\í\'\ìDx\ç','',0,'?'),(_binary '¶çŠ`bIñ\"v4…Nñ','wp-includes/blocks/cover/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³v#3\ï\à\È2A@8€8\Ò',_binary '†9g\ÚO¹š“òdA¿®–›C»*¶»3<\0\r\á','',0,'?'),(_binary '¶‘_Q([\åTJX\ÙÑPa','wp-content/plugins/woocommerce/assets/js/admin/woocommerce_admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GœÚ›±ó)\Ân´\Òs\êˆ%D',_binary '™&\Ó_\ë\Û_ \ÏóY:\ßúí€°\É&\Ù0´\Û\í\Ñ\àrO','',0,'?'),(_binary '¶–4)h·\ØÁZ\'\ä\æ}°w','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Payments/Integrations/Cheque.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Pb(e\È6ù%a³\\”',_binary ':—m¶\Ã\í\íÙ¿‡‘‰´nû¡qm\Ùû&û:`\Ä=9]:','',0,'?'),(_binary '¶˜À\ãŽ\Æ\"SÎ­`t@','wp-admin/network/plugins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–R\n½¨.o\×\ÄÆ±2bw',_binary '\ÕAˆgpª‡Œ\Ò/…m\ïø,&Rqÿf9eyþ÷$=\æ','',0,'?'),(_binary '¶™K?\Üþrµ\ça#Qh','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/InvalidRequestException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ia»\ã\îýµÿRÉž%x¼¿',_binary '³°§Mþ¢ \äb÷€¼\é£d\Âý]FÀi÷POZq’\Ú','',0,'?'),(_binary '¶¤;2}ˆ!\ä>¥ò','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/copy-to-clipboard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eWq?ÿ\ÃY~D=V|bQ\r',_binary '›uùP\æ‰B\Â-g‰D´ \ÂiÜ¯c	 ´˜|#o¿D ^Sr','',0,'?'),(_binary '¶¦\â\\\ä\Æ.1°\Û-œ¾:','wp-admin/options-media.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=¹Ã£nò}\ÔEq\Ì}PD',_binary 'g\\,\Í\Õ iIc<\ã˜\é^*l\Ñ]\áýE1“ói>§','',0,'?'),(_binary '¶§ø”D\Z:T\Í(Ò¦uñ\Î','wp-content/themes/flatsome/inc/classes/class-flatsome-upgrade.php',0,_binary '\Å\î\ÙÉ·\Ö\rN\æ@F\ç÷\êÀ\Û',_binary '\Å\î\ÙÉ·\Ö\rN\æ@F\ç÷\êÀ\Û',_binary '2†’\nô³Xv:	\'3*\ë‰{Ú…\ã\Ôt™.û\Òt','',0,'?'),(_binary '¶°ÎHº*¶\á*.ÚS','wp-admin/includes/bookmark.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F`Wø3\ãU\çù\ÈH ',_binary 'ß˜\Éö¿c.5%i¥IA‡™4–Zz5©Iª‹\ê˜\Å}','',0,'?'),(_binary '¶µ8Šòp>°Ä‰\áÁ+(ž','wp-includes/blocks/template-part/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸s\È7¨™\ZKT8f\Ú{',_binary '<\é\å|\é\'é¶\æ=^§ðJ¨\ÜWM†8×\È\Ø÷<\Ó','',0,'?'),(_binary '¶ºˆ¬ðlQ\áV_¨\ÒD','wp-content/themes/flatsome/inc/extensions/flatsome-instant-page/flatsome-instant-page.js',0,_binary '\Ûüe3z2l[zrì´†\Í',_binary '\Ûüe3z2l[zrì´†\Í',_binary '$¹¯ñ[)uø¡=W¿Ibg\Z8/\Þ\é~7\ã}8g„\Þ9@','',0,'?'),(_binary '¶º¶EÁD\Ép½ƒ\Ä/\Çh','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/select-buttons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Në¯Œ\åm¯¦’kþ\Ë`;$',_binary 'i\Ç\é\ï–\çˆz$$\0p3iÒ§·	\ìa¨(ôK\Ñ\å\Ç','',0,'?'),(_binary '¶½cr˜\\\r¹\í\0bU¯ž','wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/class-hook-manager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñKˆ·\Îø\ÌUÒ—×‡º',_binary 'rým_u4\Ã\ÇgµA‡µ»z»]\ì&ƒ³A†-^i\Ì29','',0,'?'),(_binary '¶½\Æüe\ÃW°+\'Ö’ž1BH','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/chip/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mš{Yfa6~DY’',_binary 'ua”e›¾T\Ý|½\Å3cgþ\Â\á\Ì+Ž“-›\0\ÚSu¥H','',0,'?'),(_binary '¶½\ÐYk\ã~^?\é\â@º	³','wp-content/themes/flatsome/inc/admin/customizer/img/category-box-bounce.svg',0,_binary '	\È$S\Ë\Å\ÛÉ³‰·LA\Îý',_binary '	\È$S\Ë\Å\ÛÉ³‰·LA\Îý',_binary 'Ï®|\Øtyq™Ñš„\â\æø\Ó\Ù\ã7Ó¾x*¬\à','',0,'?'),(_binary '¶¾°*ÀgŠq\äº\Îkñ4','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/yith-fields.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñs ’-(T}`!Š6¨F\Öm',_binary '¿s55‹™Tk‡\Ö{ž™[óUÚ®i!\Þ¹R\×{›\è¤','',0,'?'),(_binary '¶Ádx¹\Í\ÖeBÀÝ™ÏŸ5','wp-includes/IXR/class-IXR-clientmulticall.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\åH›˜qºg\Ç\×l¡t',_binary '†žÒ“\'bO\Ò\ë\è\ÚE¦&Æ§W0hÀ	o’\\`ÿ\ÝY­\Ó','',0,'?'),(_binary '¶\ËtˆAaö3…×šŸ+','wp-content/plugins/woocommerce/src/Admin/PluginsProvider/PluginsProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')SÿT`(ð«²X§\Ù]',_binary '¤\Ð\ØùT1\ï\ÞDH-ü\ï½O+›{<I	Œo)µ\Ù\Ø@\\','',0,'?'),(_binary '¶\äaóNZ\"Y\ËáµµiaX\ï','wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-setup-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½»/¥’ˆX«D\æt\"2\×v',_binary '!~/5õÑ‰DIzc½¦\ÈI°\Õ\êfh§\ÛÿŽ@¿r','',0,'?'),(_binary '¶\î¤Ul1ÀÈ•Dübmgñ¯','wp-includes/css/buttons-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F¡¼XøWDw€÷ý\ÇÚ­\í',_binary '\èo\Â ®Ÿ€¬¡ð!Pc›Šü\0\Èi\ÛF9aKûú\ê\Ì','',0,'?'),(_binary '¶ó\Z\â[úkO<\Â}…','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/attribute-filter/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÁC¶q\\i”[z“µ\0\Ó',_binary 'u¨\Ñ\'ò\ãþþ¯Kw	\Ö\Þ\0!F1S\êN\Ï6{&','',0,'?'),(_binary '¶õƒÏ\ß\ÅRCOh¥™\Ú\ß','wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0¥\Ø6ž¢.tzÁ\åŸx\Ço',_binary 'ö\à;\Ýþ¯p^\0¬3¿Ô¹\â(€ ‰ŽAþ\ß\Îa´\ì\Åw','',0,'?'),(_binary '¶þf\ç\ØDW[-X+\ê\Â','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/pagination/utils.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \ØcÔº\Ëk¯¤µ\ÄjX',_binary ')\Æ\"Xµ\ß\Â}	e9µøm ú„^‰¡ˆˆ\ä­Æƒ»›','',0,'?'),(_binary '·]EH\Ùu\É\Ä\n\ï³¤','wp-content/plugins/yith-woocommerce-wishlist/includes/class-yith-wcwl-exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'žß€q<d¹ ó[ñwu¹Áþ',_binary '@¢H6¹ †nd\ÑPD/&Ž\ÄW¿‹¾ôp¼\èt“\ß','',0,'?'),(_binary '·bgý€‘?¢\Ç:xW\Ä','wp-content/plugins/nextend-facebook-connect/providers/amazon/amazon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'û¿k™˜|õar\Âû\í»\í',_binary 'A\Ýw\ÂöyHH\ßMg\"\È4úþ:\0ƒo¾gJ_l\ë :','',0,'?'),(_binary '·\nfv 8¦÷\á1·“™-I','wp-includes/SimplePie/Exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'é€—z\ÇqÅ”¡\Ã/\ä\Ñ',_binary '_pe±NO\ï/»*¶mv\×\ÙÈ¿\ïn6*ù\çzoþ\än\Ô','',0,'?'),(_binary '·DÑ•ˆ®q»‰1(»E','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-wp-components-sender.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}¬µóŽ¼xÊ‹9ò™òn¿',_binary '!²`G‹—ùøeŠ“ibHQO|*¬8\Û’-úþÎŒ','',0,'?'),(_binary '·\rL\ÃnQ¥¼ž\×t\ã','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/shared/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾uYÁ9\ì“V1±\Û–\ÑE',_binary 'Ž¤e\×Öºšôµ¾Š\"«1ò×¦§•¸¨\"uqir','',0,'?'),(_binary '·¶\ÕU\ÌN,¶Â \\1','wp-content/themes/twentynineteen/sass/forms/_forms.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿ|PWÜ¥U‹÷¸\êxðþ‘>',_binary 'h˜VC{¶Bð{ó\é\ì4O÷b¡]=¸\ë;X)\æ§\Ý(X\Å','',0,'?'),(_binary '·d—žó&\'¥Å¦\r\Ý\ß','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/template-service/interface-otgs-template-service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%°R\ß\Ú\è.N\n\0„4',_binary 'óh»<V9—ªh‚¢†–ûkX! kœ\Ó*Z\Ç=3òŽ','',0,'?'),(_binary '·)\á\ì!P—ª\Îõ\íG1ú','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Property/AtRule.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ü\Çó|\ÅM¬Ô©\åbCza:',_binary 'ò®1\ïR\è;k¢Œm\Z&\Ã\Ö6‡U¼\ÜN,\á•\ì¥\Z¢œ','',0,'?'),(_binary '·1\à\Ç:œ½ps\Ê\Ëcd\ã¿','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/empty-mini-cart-contents-block/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\àÀvi!´f\ÅØ§³›\Èò',_binary '÷sA\Ô\êm;\ÞQ¦N@³£pµ/HkhþE½\É\Ñ\ÛýP\ê˜','',0,'?'),(_binary '·6•jOÀ¢)\ÎR*T	','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-upgrade.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õ2b\Ð5ÀulƒPLˆ¦«_9',_binary 'vŽ\Ñ\Ñh’þ÷ñŽ¼F‘¶`&Õ¾™Eœ¨L¥¥!\Â','',0,'?'),(_binary '·8dœ\ã_\ËD_9¥\\ß¥','wp-content/plugins/woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'amµ!\î¢Q\âQ îŽŸ\Z9',_binary '‘j‡)‘ñ\Üø\çZ™\ì}¼þ©\çªj\Ø\Ëh\ÉG‚ñ\ä ,	\Ò','',0,'?'),(_binary '·=d®Ž¹‹\Ù\Î„j\Îÿ‘\"','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hooks/use-shallow-equal.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D>\ÄÌ\Ì~n´\0—÷œ[¾',_binary '¸\Ý\ÒSúJ«7½Û³\âaž«4ÿ\"}‡\ÌO2\ÐjE','',0,'?'),(_binary '·F…[¯\Íãµ‹PÑ³‘@»','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Postal.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\ÂbP\"\ÑŠx\ÙY@0ñ\à',_binary '÷\'\È\Â\Ön©²*2nÔ‹\äò\éŠ\ä)\Øa(Œ_÷IqŒÉ˜{','',0,'?'),(_binary '·HlRe\"Yjð¿.v	!ƒ','wp-content/plugins/nextend-facebook-connect/providers/line/line.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡Ö½\Ø\ê•\Ã:\Z¢/ÓŠ©+\Ó',_binary 'BoñË“\nf\Ð6\Ç?vMP\êQKþK\ßÝ±.fk','',0,'?'),(_binary '·P²ŽTˆÝ…\Åt(`\Ç0²','wp-content/plugins/yith-woocommerce-compare/plugin-fw/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%œëˆ•—Ž·6\ÒD\è+0¸T',_binary 'PD\Ðy\ÚQc\Ôð\Ë,´‘òax\ÌoCWlÂŒ˜4¤¶\'','',0,'?'),(_binary '·SŒf\Ì_ñ\Î\"o¡D^\Í','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/phpcs.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜i3\ÃpB84À÷r\àM4´',_binary ';ðt2õQT\È\ÑkY»šw o†Ÿ=˜£?\Ý)Ÿ~QÑ¸','',0,'?'),(_binary '·V®;|\Úøò\Åñ}2øP\Ì','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-media/icon-256x256.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K*‹@N,$.\é$bMZ˜¦',_binary '½Y„ž\çö6\'\Êû\Ðö \n¼RŽmŒ/\È\ÍW#ƒaš','',0,'?'),(_binary '·X‚¬aBz­§ ý¢Š','wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_ActionClaim.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·e<i”þ€Y^“\ä0ªY&',_binary '_vˆ&\â\ÖZŽYwDÚ€\í\Ög]•\é^\Ä9Û”™ufú¨d','',0,'?'),(_binary '·_s ,¤Y¿÷š¯W,üÏµ','wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-square.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ï¢\áž3ú¬	€KÞ¶>²',_binary '¡»€\Í\ÑCGoýô\äµ\Ì\Ýf !5l¶þ\åóµng¬»±','',0,'?'),(_binary '·`™`\'\Îl`=\è\ê¢X(','wp-content/plugins/wordfence/views/options/option-select.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J*E\Õ%v	N\Ãa!‹¤Uw',_binary 'Mü«#3‰a@xh\ÇÀ s\r5qB\ÒNÙ£©X#Àò’','',0,'?'),(_binary '·n1W]ðÁ÷¼oT\0PYW','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/use-query-state.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X¶¡|-¥\é“HËœ­\æ\æü',_binary '¥x\Æph(\ë±­ù/\Ó8nn>æ®¾dšiéŠš\'','',0,'?'),(_binary '·xLñ²ƒÁŒ@yù¯','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/title.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž\r\éfYSwn¼nc',_binary '•¦¿%\\`-\é^D\æ¦\'fm£\êd¬—‚“\n?×©2#','',0,'?'),(_binary '·y£¿Ñ‘ÿc«j!¿\\\'','wp-includes/class-wp-block-list.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ï´†À <zý·’p.\rÅ±',_binary '\Ï47×¾—<\Ã\äM\ê G\áAE¨d\â üe¯\Ê6V\Ê!\Ö','',0,'?'),(_binary '·{\'q\Ü{\Ò\Ü?\é\Ì>vHº','wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src/Css/CssDocument.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ã§Ú­\Ùû?1Ž¦‹«µ)\Â',_binary '&Q§¬³½ì»¿ºt\èJAü£ñŒ–1£\ë\ä­?Â','',0,'?'),(_binary '·2±D[\"¹ñÿ„*\"(\×\×','wp-includes/js/jquery/ui/effect-size.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v©øhY q|±TC›',_binary 'x0QE\rž_·‡®\Å&ý&PQš\'\â=XÀgao\ÙTF','',0,'?'),(_binary '·IN\neSG‹\Ù\ZË³«­£','wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/privacy/yit-privacy-plugin-abstract.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž¹u4‚\Ñ.½\ähsö\Õ',_binary 'õ%ö)“\â\×eZd!@{\Ò\Ð\ë\îÖŸ`u˜j\êód´\í','',0,'?'),(_binary '·Â¥-V¾\×¦¿;©­\\','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-button.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l\âÊ©¬\Ö\Å$¹÷o\èK',_binary '\ÕGÈyxk\Õ<Å‰!cY”\Üz+\ÂNŒM\ä•ÿ Š­ˆ\ß','',0,'?'),(_binary '·“hJ–´D\Òã°—G¥ ön','wp-content/plugins/wordfence/lib/wfCentralAPI.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'è€³ú\éB/ŠX§\n`œ2r',_binary 'Œµ>C¥\Û]§!¬„Õ¯VMÕœ4U¹‚U\Å\Ì\É\Í\Z','',0,'?'),(_binary '·”o÷\"®1\ç³\à\Ê/q','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/instances/class-otgs-installer-instance.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ao\\¦E\êhq1\Zöcd',_binary 'ž\'¼CK\æm\"\ä8v\ÙI¬L\×mp\ìûX!!','',0,'?'),(_binary '·˜\\¨\é\Î0O¶\'w[l/^$','wp-includes/blocks/gallery/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£¾>(k\ÑgP•E„\áZ\Û	÷',_binary 'ûŸbe¬\æ\æX9–sÿÁÒœR?¯\ÊúüX‰L´@•ô','',0,'?'),(_binary '·›œZQ4\Ç\Ø\\(‚Ü‡','wp-admin/network/admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ï®\rŒý&Z3’r“\"ò',_binary '\Ö:\á\×%£;KiˆW@>\áU;Š\Ô\Íô\ë½#À>','',0,'?'),(_binary '·´\ã~;s5¬®ƒWBmEV','wp-content/plugins/contact-form-7/modules/sendinblue/contact-form-properties.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9öVX¹‹\æ\à—Û·DÃƒ‰µ',_binary 'E¿\ÑL\Øø%8Š[Ž‰mi \èË£\Òi¢–©¿cD.cV','',0,'?'),(_binary '·Àû\Îw>ý;e½€õ\"\ì','wp-content/themes/flatsome/inc/builder/shortcodes/ux_shortcode.php',0,_binary 'y\ìS&\rö\Ñ\0Ä‰\\¤Ve',_binary 'y\ìS&\rö\Ñ\0Ä‰\\¤Ve',_binary '\Íÿ»2[+\ì\ç\Þr2+IýwC<]X©0¼!‚¾','',0,'?'),(_binary '·\È%(Š>Ž…X¯.þ»e±','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartItemSchema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õ\'\×\ÙÞ²Ø£? ¢©\Ì#\Ó$',_binary '$¤@¤÷:@\êc[\Õ80ýU¯GeŒˆû\ÄRo‘úþ5§','',0,'?'),(_binary '·\É*7b\Ê\á\Ì1q\îÖ’‘’)','wp-content/plugins/woocommerce/assets/js/admin/users.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ý„ªT;1û–\â{\ÊBy–',_binary 'j\Ö%ü\ÇpY?v\×\ÝrûZs\ÏL°\Ú\é\ä€uI…','',0,'?'),(_binary '·Ê…\Þ4õ\Z¢f…»s‚ô','wp-content/themes/flatsome/inc/woocommerce/structure-wc-conditionals.php',0,_binary '#\ÓO\ã/]\ì\èˆR\Û€®\Ö',_binary '#\ÓO\ã/]\ì\èˆR\Û€®\Ö',_binary 'I\Ã\êu \å\ä\Ð\ë3‡g–ö3œº°Wx«©UÄœ\án™\é','',0,'?'),(_binary '·\Ë®·L	½©\â\í(\\Ü©','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/fonts/font-awesome/font-awesome.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S;f?4£ò½Q_\â\á_|?',_binary 'ú[‘)\ÂkÉ’­y\Ö\å+,/\')€Ó¥²Nw¬9Ä²±','',0,'?'),(_binary '·\Õ[0ñ^‹ŸªŒ\Ð¶','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/AnonymousIp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eºmg\ëÝœ|ù<ë¼¸Dh',_binary '™+Á%\ÝG¸<t³1]\ëƒIò5m·\Zž}¯\âEö>ð;','',0,'?'),(_binary '·\â\ï?\ßwEx\ê¦','wp-content/plugins/woocommerce/vendor/psr/container/src/ContainerExceptionInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '×¤ý¨‹”?eŽ÷õª>…ñ',_binary 'Qö\ìyH\Øn\Ù\Ýÿ’©ð§**59†p/s%Xh#¶','',0,'?'),(_binary '·\ç¢hgs³ ö\é\\7Qz','wp-content/plugins/woocommerce-multilingual/templates/setup/footer.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4¦™S-\ÂA]\×è¹ž	\æº',_binary 'o‚Ê\ì3µ˜up\Êô\ÛVdø×—Ùž:Á( ªˆ ','',0,'?'),(_binary '·\é\n™¿%[w”£²¨g~','wp-content/plugins/woocommerce-multilingual/inc/template-classes/setup/class-wcml-setup-introduction-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\Ñ\ÒJ±\×TylZ¤¤ Y\ß',_binary '\Ì\×ºYYê¿³\Ô.:W­úÉ­qæ†¼iù9¥ Q\Ã','',0,'?'),(_binary '·\ìÈ \">€gÝ ôþœ','wp-content/themes/twentytwentyone/assets/css/custom-color-overrides.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å\Ê·iÁhŒe¤Þ¹‡&',_binary '\æTŒwUZ\Äþ¾µc\ÐÿF­`\ÄY[\Êúa¡Ž\êZ','',0,'?'),(_binary '·\ï/\ïöØŠ!¤N>ñ‚\nþ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Ed25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ú¢f<_2S^I¿ªZ',_binary 'ý­iÝ¯™ÿ8{‘iü´\Øq!d¾ \ÌÕ¨\åAzòõ©','',0,'?'),(_binary '·ö~$_¢¶\æ´U§\Ò','wp-content/plugins/woocommerce/legacy/css/photoswipe/default-skin/default-skin.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ã÷™\Æ\ÞÉ¯L†\Þ\Í÷9$',_binary 'A_C {þ\Å.ö:h\Û«Q¶{Ž‚¾\Ã\ã¹\Ä2N˜\æ','',0,'?'),(_binary '·ú\é¬8©\'š³)\\','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-dashboard.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\áÿ™T…3M:¯×¢o\"	E\ì',_binary 'ñróS+ƒ\È]\Æ\r·ižþ‡þ%\ZÁþ5iš¹±Ï´WBˆB','',0,'?'),(_binary '·þ\r¾ƒ\ãx‹\Û7TL”','wp-content/themes/twentytwentyone/assets/css/style-editor.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆfN®3‡BND”dz<',_binary 'ó\è­kÀ$n\Ò*’\Ëw®®R\Ú\Ç^8Ú¤\Ûû¬![','',0,'?'),(_binary '·þf¶eA\nAx\Ë[-¦','wp-content/themes/flatsome/inc/builder/shortcodes/values/text-sizes.php',0,_binary 'ªC\Ö:6‹T\r_°\àv“—',_binary 'ªC\Ö:6‹T\r_°\àv“—',_binary 'ÿ¨fP¯\È\\3\âÀ†\ï\Ñ:ö’Eè§œü´:\ÊTv0k','',0,'?'),(_binary '¸„zSÀ!­U´Ò‹\0','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ûH‹\Û=ªu\Í]R9\Ù\Ù',_binary 'K±‰ˆm\Ø}D®\ÌS\î\ì7\ØÚš\ì\ÍÀL<ya„','',0,'?'),(_binary '¸<Rzcþ˜$¥;f\ÆBf','wp-content/plugins/ti-woocommerce-wishlist/assets/js/public.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\ìµ·v­µ$¡z\Ö~9',_binary '^ùs¸ü+/¤v®¤N\rñK\é‚y€Â™@	ô`\'','',0,'?'),(_binary '¸\Z\ä¡¯l\î\Î\Þù3ÈŠ\Â','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\ÉUÕ’\è¥JL´“m8`v',_binary 'Ó›úvQ´–k\â\Ä\n¹ƒl\Ø]\Û`Î•ºÛ·ô•+}\ÒkO­','',0,'?'),(_binary '¸2DI\Z\ÔøY\ÃM4cJ‘','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/arrow.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ž\ÅN\ß{øyT&,\ë\ØÐ \é',_binary 'ƒ…žb\È\Ý@M§Žw›\Å\Ç3Qn‡D}Õ»ñ’^ _:tø','',0,'?'),(_binary '¸9‘D\î1YÐˆu#„º..B','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/checkout-order-error/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ž\ïM\Ò\ÝðµM­>Ë„c',_binary '\êunû2*aý!	C\ä\Ø\Û\ì*§|xŒlzûTýÜ§\Æ;','',0,'?'),(_binary '¸<h iÑ­3*µ	Fq','wp-includes/blocks/button/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\îhKŽ©/—\ío±¦P_*',_binary '\ÕL\×	¥†ùp\n\ã\ß~»§\èh¯kõ²\é\Ê{Z¦\Ó¡v','',0,'?'),(_binary '¸@Ÿ‡•\í\Üh\Z;lA¨','wp-content/plugins/woocommerce/assets/client/admin/marketing-overview/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Í\à\Ìê¹¨Cx\Ìd\"È¡‹«',_binary '¸kU¶%…<ü‹=¢L\ÑÝ£úKÀ²\ê*ö\ZEú]6Gð','',0,'?'),(_binary '¸D™Vœ£?¢FºO%¨¢\Ì','wp-content/plugins/woocommerce/src/Internal/ProductAttributesLookup/LookupDataStore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\ÆÂŸ¶X£÷‚ ,µi',_binary '\Ð·\Ü2¤@xjÏ«\ç\Ýõ<\Ñ\ä/Z\0\Í\Å\ÃUžø£','',0,'?'),(_binary '¸G\Æõw¾\Ðù\Í\ÜÞ´Z\âøò','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '76\ëµ\'\r†Ÿ<#z=\Ò',_binary '‘S\Â~8\ÃÛ\ë\Ô\×qZ¶g•©\Ò\Ú#cÒŸ˜.:oy\É','',0,'?'),(_binary '¸J|6}\ËP\ß,\rÙ›','wp-admin/css/colors/_admin.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KS)ƒ_IM\"¡ ù',_binary 'ð¹b\ìc¨\'W\ÐuIc©Õ¢oÀ\ì8\ãJ<¡RP\"\ì¼','',0,'?'),(_binary '¸O\èC|\×y7|PF<ú\\Ÿ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Payments/PaymentResult.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ªˆº€=\\u\ï\æ›|)R=\ä',_binary '2šc&\Ñ$”‡0\Æ\ÅYÃ”~k` \ß\Â¦”&@ˆt','',0,'?'),(_binary '¸Z£@’ú€ûE–yaþB','wp-content/themes/twentynineteen/sass/typography/_headings.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oc­ñ>ª³w+&\Û\ÄS\ZK\å',_binary 'üpÐŽõ‚(\ìW™\\\Þ\Ù\Ù	‰c\é36§\0ô\ê°\'øf\È','',0,'?'),(_binary '¸\\\Ñ^®R\Ð\ZetÑ®\Ô\á,‹','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/taxes/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®H‚žT\n\Ú@Y\×\"¬¢´©',_binary '•I¡¾õ(Åªq¿\Ïö8¦y@h\ÙS†°–J\ê\æ:','',0,'?'),(_binary '¸d`#)?žÏ³š\Ï0(w‡ù','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Crypto.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ÁoYƒ¢\Û-\ã)EHd',_binary 'l\Ü,8¿EñT—ŽC‘eylžaùS\î\Ô;)\'\"d\Ì`zû™','',0,'?'),(_binary '¸h\Öÿ„²\ÛAoÊž¸¶‰ž','wp-content/plugins/woocommerce/includes/shipping/legacy-flat-rate/class-wc-shipping-legacy-flat-rate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O—{1La|­NY\ë\á ',_binary 'y¦ \å‹0OÀlc\r\Ë_5Ž¸\ï\Æe®\È1Ç kÁZ\èú','',0,'?'),(_binary '¸rô\çª#_ÿwu\Í£¶\0','wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-hu_HU.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<žô\Õü©.·[fzo\à‡—\é',_binary '’³”µ±ri\Ã\×w¨\ï\áñ‰u0ÝƒU8H¯u¤]\Ä','',0,'?'),(_binary '¸ý³~U˜–Œp¤ùJ\Üt','wp-content/plugins/woocommerce-multilingual/inc/currencies/class-wcml-price-filter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×ôÃŸ©wžDId)o.«h',_binary '.¹Š\Öñ$\ä\Zk\ÓG™\ÊU\éÆ“RŠ\ï¢\ÏW£k¤>c\Ë3	','',0,'?'),(_binary '¸€\Ü*\ÖkÓ®®û½·ô­','wp-content/plugins/woocommerce-multilingual/classes/media/Wrapper/NonTranslatable.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§.eû^…r\Òw7T¹%¾Œ',_binary '\ë¨¶T´ólŸ\Ìn\ê®Ø !-2„\Â\Ò\×_I¯ ñ','',0,'?'),(_binary '¸o; ì¦ˆ![\Þz€©j','wp-content/plugins/woocommerce/src/Admin/API/Reports/Customers/Stats/Controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y‹ñ\\M§$\Ù\Ë\×\Ö7\Þ`–s',_binary 'oªC\éj9¿\Z2[l\r WÐ‡\Ô\Ìð­ë’˜ó\â¶6\"\Ôx6 ','',0,'?'),(_binary '¸ƒŽˆ\×VZ\Íbl“Í¯','wp-includes/blocks/archives/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ø¾£Ê¡<”e$Š‹\n—\ã¼',_binary 'WxØ«˜7qC\nš\ÙùüŒ—ògñ®\Zºeü\Ê6-&','',0,'?'),(_binary '¸Œx–`þf,5ef2ý“','wp-admin/js/site-health.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Î˜>I\åVp\ÈFñG\ÓN}',_binary 'iD@\ÝV>k\ï\Ï(¢t#	\Å`\âª9ž¬œH*\'¦ôc\Ä\ß','',0,'?'),(_binary '¸d\×]\Ñ&3š¶\ÖNˆ=','wp-content/plugins/wordfence/images/logos/shield-white.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õdX\Ì#\Ìp°RÃ°J¾',_binary '\ÏœL‰O\Ñ\'\Ð(öEqH\Ã\îl\Å@\èü\Ê)O§ŒŽ­','',0,'?'),(_binary '¸Ž”§œ[®:°—„…q','wp-admin/includes/class-wp-plugins-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñ\éü\ÖýVžOQÊ—³¸\í€\Â',_binary '@ÿÍ Û¿v¶›\ÇÁ\r\èlMTR\ØfIj4c‚\ßWY;E','',0,'?'),(_binary '¸š…P¿Of;ö™\Í/ó\×','wp-includes/SimplePie/Decode/HTML/Entities.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰™jÑ‹p&y€\Å·\Ö\é\ìU',_binary '—ÿWP»\Æ*P=NÏ»;\Z Ž¾iÿ\ä8\Ú\Ã2_¬ü¸ ','',0,'?'),(_binary '¸¢.yz\ç _ž\ê­jz\Â|Š','wp-content/themes/twentynineteen/images/pattern_03.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿e\ØY)fùx¯:.+\×\æ',_binary '4]ou\Ë\'—uõµ‘‚‘mN\å²\ÖZV;Ke¯\ÖjW>T','',0,'?'),(_binary '¸¼q÷\ãw—óûŸ=b¬o›°','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Shortcut/EmptyStringParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H~\ä7l\Ê)‰Š³À-s}\×',_binary '*e¦\"cuqû¨Ü§h\è–uûcù\n4\ÐZoUm\Ðö¤','',0,'?'),(_binary '¸¾…%Š\Ñ\raõ4³\Ç.\ß','wp-content/plugins/woocommerce/packages/action-scheduler/classes/WP_CLI/ProgressBar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ²O»¢S=&.\Ò^‘Ç±\Ä\Ô',_binary '4,\ä™S h\ê\'S™¾gÕ¶¹ð¼\êkI\Ê\rÐ³','',0,'?'),(_binary '¸Áp\n\0 6\Ý\ç@\ìÒ¦4','wp-content/themes/flatsome/template-parts/header/partials/element-contact-mobile.php',0,_binary 'ô™³b\ãC&\ÕA¹÷—õó',_binary 'ô™³b\ãC&\ÕA¹÷—õó',_binary 'À‰)¬”H	×–Ž\äÎšº–Iu÷@*Á\ÒO\Ü9','',0,'?'),(_binary '¸\Ë\Å\ëe,Gð‚<ø\Ìü…\í','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/image/save.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`?\èýÓ¥A~k\r÷¤',_binary 'û•P\ÝôRñ š3\Î\á\É=\ãr‘\ÂùSdù¨\ÛD\Õ\Ë','',0,'?'),(_binary '¸ÌŽ¼Lö†UÙ¡.\ÓF','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h†\à!\ÓfÅªe%\ÒQ\ì\ë',_binary '²\æXT¨\ï\ãQ½¥±ýms™`œ®DPˆÃ§,|\ì—ì«ºd8','',0,'?'),(_binary '¸\Ð7WöjL‹\Õ\Zò|*Á¡','wp-content/themes/flatsome/inc/shortcodes/featured_box.php',0,_binary '\è_k»M‚ü(ž\í\×P¶',_binary '\è_k»M‚ü(ž\í\×P¶',_binary '\ÏûS2¬\Òec½Š,z\ì\Ü)	Kx\ãT/k','',0,'?'),(_binary '¸\Õ\É¿¡\Í\çÉªŠ\ê_-cS','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/id.js',0,_binary '@beñ\Ã\Ô`g2$M\ZG®',_binary '@beñ\Ã\Ô`g2$M\ZG®',_binary '%\æuòv¼\Õ\Óÿ­\ëñµ-¤\ÊE\Ï\ä6k¤¯f\\°Add','',0,'?'),(_binary '¸\Ù;kü\ämÒ¨‰sh\ØP','wp-content/plugins/woocommerce/src/Admin/API/Reports/Orders/Query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Yµ”Þ‘^¯kõˆµ•Y\Ó',_binary 'z\rÊ´sz]Ë›„£õŽN’H¤\ãIƒ82‚¤J\Í\Ôaò','',0,'?'),(_binary '¸\Ú\î”!O1…\Ç\ë¨“{\Õ','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-product-shipping-classes-v1-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“\Ê\ï¦ÜŒ;\ìÚŠJf¹H',_binary 'Ë£3?¯„IWH+÷™ ’÷ò	)g\Ô\Ø>U³°','',0,'?'),(_binary '¸\ÛZŠ\Ì(“\Å§|Ÿ\ÍZ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'QUÿp~ocÃŠ4\ÒNt›û',_binary '”L\Î\Þnµl2@Îö>hši,uJY²H¦‰\\\ãLô,²B','',0,'?'),(_binary '¸\Þ¶aƒfÇˆÃ‰R\ÆXªM','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-category/utils.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\äYs·\äù§Ÿb/\ÏXa',_binary '1…\ã4ƒù\ât\Å9\åÓ¡úÄ†b\ß~7ÿwl$…’3¤\ï','',0,'?'),(_binary '¸\äEøˆn-¼À#°\ÓQ>','wp-content/plugins/yith-woocommerce-wishlist/assets/css/themes/storefront.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡ˆU÷Á	\êt\Z‹\Ò\Z=\\',_binary '¸“£\Ø\à©F\Ñ\ÆoeÀl\Ç	­õ¦ar ‰j.\Ñy°¼`','',0,'?'),(_binary '¸\è«\\ ¯”IÑ»Á»\è,','wp-includes/class-simplepie.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦\ÇH\ÚGØ¸¶þ\Æù–³œ',_binary '\×\Ñ*•JÿÁg…\Û<õ9\ÂOõ-[C¥cVl½\Ïøß','',0,'?'),(_binary '¸\îÚ™y\ì2D\na€ú93','wp-includes/block-supports/layout.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i²+g`g.\ê=Gg\è\Ý',_binary '3ó‚Eƒ¥ô\ÆxŸf’Áó\ÌðWÏ§	¿\ì\Ûõ\ÓØ¥5˜','',0,'?'),(_binary '¹9ƒÉ‘7;‰i	+jb','wp-content/themes/flatsome/inc/builder/shortcodes/commons/toggle-buttons.php',0,_binary 'œ@NU‚²61«&\n¼\\\í6',_binary 'œ@NU‚²61«&\n¼\\\í6',_binary 'f³*,0\ÛÁ;\Äs5\ÙqU\ÖôZ­¸Að™WÀL˜{¨[\Ò\Ç','',0,'?'),(_binary '¹©\ÂÑŸþ‘¯,6›V¹\ÄY','wp-content/themes/flatsome/inc/builder/core/server/helpers/modules.php',0,_binary ')6€‡	\ÂuxoG©5uÀ\ê',_binary ')6€‡	\ÂuxoG©5uÀ\ê',_binary '\Ò\Óc´þDD¬µG‰•\ÃB\Üú\ÅÉ­&\é#u„3t\ÏX]','',0,'?'),(_binary '¹	Š.\ß‹q´aÿ³B\Æ}','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/access/icon-128x128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\éY{I§¥œ\Ð2õ5.µù',_binary '•C‘_\Z›\ë+4XhpM3Ri¢§úðøNiQ`\ØX','',0,'?'),(_binary '¹\n¦:+\áö\Ì1¾\Ú\ì®>\Z‘','wp-content/themes/flatsome/page-featured-items-3col.php',0,_binary 'Ÿ_\Ê\àÁ:Li™Mº\'ð',_binary 'Ÿ_\Ê\àÁ:Li™Mº\'ð',_binary ',#¨\Z2\è\Ë~‚E\Ä\ïM\ÚE\r¢úC¨À¤™_ŠE\ÅI~','',0,'?'),(_binary '¹\rû\Û\"8\íL˜÷#KWL¦o','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-express-payment-block/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\09oq…Kña¦\0\âŸÞˆ¶',_binary '8\×&¾R\ê?”h¿:ooIxW\\Aõ€þ¤Àh','',0,'?'),(_binary '¹\È	‡ý¥G\Æ¡á‘«','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals-wrapper/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a²*\Î\ÈN\Ì4P¯\Â$e',_binary '’B«%²-xÿ\Ø\r?`¹\é¢\Ò\Øö‹Áy­X±¶’¸','',0,'?'),(_binary '¹\í‡\\ž]^\ÒT£ê¥Š\Ñ','wp-includes/js/dist/vendor/wp-polyfill-url.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rt\0X²\ãd\×xR`•\Ï',_binary '÷bªÕ”WŠ?ÀûgtRÄ‹\\}DµE»TÓ‡ÿº=','',0,'?'),(_binary '¹$=Z±©Z„HÉ¼½¹\ìf','wp-content/themes/twentytwentyone/assets/sass/06-components/navigation.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õ!\ê_½µ\Æ$¹}w\Ü.\äÿ',_binary '\é_\Ä\ÍE>«À\è@\Ð\Î[)º$¡=\ÛA\æL\Û	CøMp¸','',0,'?'),(_binary '¹$lv÷\áECÛ©bN','wp-content/themes/twentytwenty/template-parts/footer-menus-widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…\ê]Œ .5Ž¢Y\\&$',_binary '¥\ê\Æln3Ý€{\Î\Û…B(\ßÙšŸG;\ì² M_n½','',0,'?'),(_binary '¹,E\î\r\"\ä3O^]»Ž·','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/form-step/additional-fields.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ekŸ\Ø\Õ`#j7½ \"1\Öe]',_binary '‰(Ã±<÷øi«³Y\Úað†\Ó\à\"FRj½\Ù\Ñ\î&\ï','',0,'?'),(_binary '¹/&¼Ž\Öû\á2®Ñ¡\rgDs','wp-includes/http.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ºP!\ír<l\Ì{³|\ÚN',_binary 'µ3À\n \Â]tñ ›-dX%$ %Qwq\\ˆq½\Ê=	Ä‰','',0,'?'),(_binary '¹5ñ\ê™=^šj>Vü0','wp-content/plugins/woocommerce-multilingual/res/js/front-scripts.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ó\æ[\Ó3`\à>\ãALô\Þ\ä\í',_binary 'R:™EýT“ˆ®~v¯ ˜ô«\ÐWŸ;®Ew—‘k›€®\Z\í','',0,'?'),(_binary '¹5Ù‚aÜ¨Ï˜\Ò	#‰\åbu','wp-includes/js/dist/compose.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\ÐuHŽoÿt',_binary 'ƒ²±<Æ›\Ø`8¯n†J€Ù¬\îÆ·	r­\Øuõ\Ñ\æ¯j\Æh','',0,'?'),(_binary '¹8À(<ªAs‹\"\'\Ç','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/add-to-cart-form/form/submit/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_õ¾\ë€\ØOˆ\Ä)\éc\è@|',_binary '>\'\È2‘In^ºp?lo6šÑ”,\æó‹C(±@Æ–7','',0,'?'),(_binary '¹9\ï{Œ\ÂÆŠF³¬!j','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-registry.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K­¦Ã¾\Õ\ælM’\Ôj',_binary 'Eq2M œý—s°{c\àzó@&fW÷œH!,B\äC*J','',0,'?'),(_binary '¹I\ËS]›K¿¹zýä·Š','wp-content/plugins/woocommerce/assets/css/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž\Í+š©z{i»\êI\ê\Ù“',_binary 'À®WWB\Í\Æ\ï¡\âY(\nsk\Ü/»@À\ÒlÝ€L\0','',0,'?'),(_binary '¹LB\î5ÿ8Ë·\ÃWòý','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/TokenStream.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œmO,ýfp#.\Î\ÔK†\î\Ý',_binary '¶kP°\ätNù–1%·¸„¹\Úzöiû’Q\àg\ÙÌ¹H','',0,'?'),(_binary '¹M‡ÿ´Þ¯\ärž%\n@\ê','wp-content/plugins/woocommerce/templates/myaccount/my-orders.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3r‹9\Äÿ=2Œ\Ã`ñ—À\à',_binary '\Õ1™T\èˆ\Ã*\ì\"ª+ hRz\à»s ²p\ÄÎ©¥­A','',0,'?'),(_binary '¹Sß™\0‹\Çc¥Æ•`4','wp-includes/blocks/navigation/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ý!«IÚ¥-\Þ;“\Ì7½',_binary '\ÊM”\Å\×YÝ¼\ÖmI\ÆaŠ‹h\ë\à¹c-¨—Ö‹+±\rŸR-','',0,'?'),(_binary '¹`Œ÷\à\ã|¯}¨	\à}¨|','wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-nineteen.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–Ïµý›\ê]T«00©O\Õ',_binary '\Î^ÁKj^? 1¢¯\ã¤H»eÆˆ¦\ÆôKÍ˜ª8\Ñ\ï','',0,'?'),(_binary '¹bœE‡‘3\Óg\'cZ (š÷','wp-content/plugins/akismet/views/get.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=\Zþ\è[‹1	oów\ÇT ',_binary '\Ê7o\ÎJ\Ëû‹DZÔ¬¢Ã¤S]h¯_FŽ²)™\ÙO+','',0,'?'),(_binary '¹c¦t‹›\Ï<\áÔwO\Z ','wp-content/themes/flatsome/inc/admin/customizer/img/category-title-push.svg',0,_binary '\ÖÐ»„²°\ÔÇ‚¾\çFR',_binary '\ÖÐ»„²°\ÔÇ‚¾\çFR',_binary ':\à¨v\Î\Zs\Ñ/\ÈKvYZS\î¤\Û\×\Ï^l1\íŽÆ·A\ËF','',0,'?'),(_binary '¹nzGl†õk|\nTß©vv','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/DframeInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';<J»¾\ÔE&$óô”d§c',_binary 'q%>D·$$¥‘‚\å:üŠ\ãjúõŽž\â\Òk ¤z\Â;\á“','',0,'?'),(_binary '¹u§’GyT*\åÆ¥;¹’ ','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/sysinfo/tabs/error-log.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ùU°\Z \ÌpDG‘L¼’¦£',_binary 'R\ÚvÀ†ðe¢IøEQþ-mM±\Âs¸¶¥›‚>\ÊK','',0,'?'),(_binary '¹‚¯¶=\Í\åÑ¶\Í8$ú','wp-includes/js/dist/vendor/wp-polyfill-node-contains.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/2•;°¸ñƒ(ú\ëU‚µ ',_binary 'i-»…®;R9\é\ïs 	„bl¼\ã:XJ$\å¤ÿKô¹	\Ë','',0,'?'),(_binary '¹Œ?ƒ0|\Ãö\à5uÆ¡ƒ¾','wp-admin/custom-background.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ã½«¾ö]0¹m7\ì\éöd',_binary 'ZÁ5\"=®\0\îT§Ïƒqr­/0ž\àQ\ÐX^dn6','',0,'?'),(_binary '¹ŒK°ô÷ý\nöJ>ž»%>','wp-content/themes/flatsome/woocommerce/single-product/layouts/product-right-sidebar-full.php',0,_binary '«}UB$ÿe\×Òœºþqc',_binary '«}UB$ÿe\×Òœºþqc',_binary 'tvW\æÀv.MV`VcÁ\è_0„\ÎFm¸x™\ãò<','',0,'?'),(_binary '¹œaÚ¢ŽV?]\Ò-ûVõ','wp-content/themes/flatsome/inc/builder/core/shortcodes/shortcodes.php',0,_binary 'ê¡¦J\"\äbck¨LGú\Ó',_binary 'ê¡¦J\"\äbck¨LGú\Ó',_binary 'O\è\î\îÅ¯~.eÛ¾\Ëî—ƒ™7¥kº£\ÖôÁ˜äµ²xÞ…','',0,'?'),(_binary '¹ž<eJô½\í5}™\Ûj','wp-includes/blocks/site-logo/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FµÌ©Gv‹\Ò÷Œýò\ÎY',_binary '\ê/7\Ý\ÄE®Ø¼¤ÿý\'S]j\ãA>6 ö]mq¨n=','',0,'?'),(_binary '¹¢Šš5¹]Hüø†«Sø¿t','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-methods-block/no-shipping-placeholder/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÊJ\ßô:z`§mJ®\â¢\n',_binary '˜·\ï\ÃM–\çðœó¶ùfU\èw\à„`ñ¹ÿ6\"(¸\Ím¦…','',0,'?'),(_binary '¹ªÃªüU”	7V \ÉG','wp-content/plugins/woocommerce/src/Admin/API/ProductAttributes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Žú´[ª‚¾I/\Þr0',_binary '›u‰A øˆ÷¨_%\Z,/¢Ÿy=,.6ò‹ûg','',0,'?'),(_binary '¹®ƒqh\Ìn›Jýj¯','wp-admin/css/nav-menus.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'CÖ‚•ý~O>\ã\n”\èpšƒ',_binary 'F‘8>_K	\à£\Ú\ë\n%ú\éOF$WÜ‰Ù°ä£©\íµ','',0,'?'),(_binary '¹¹\Î<ÿ	\Ïf%\ÕnŸO³','wp-admin/includes/credits.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8[X{´’Ë“ð\rWŸü\'ü',_binary 'MWi“EnRQ~©*gœ2|¯=Š\ê\ì´%ô7:”','',0,'?'),(_binary '¹ÁÙ˜»a5”uaa;Ü¶','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ProductAttributeSchema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´\'¦£’û\r¸›™ÿm',_binary 'y#\ãÚ¦P7—/Á\ÖU*ýs	°·½Lmo#\Ø\ä0ó\Ø\Ò','',0,'?'),(_binary '¹ÃuL\ç,\îŸ&Ç‘‹\r1','wp-admin/media.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Š9ê‰`Wkÿ…¢l',_binary '’f¥±\ïÐ„ü\"Sõ‡\ì\ç¶™+µ0p¯½Uöñ¼,¸','',0,'?'),(_binary '¹Ó€9[\êÀM-g‰‚','wp-includes/js/dist/hooks.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eÍ¿¿›/õ“bB“žr~«',_binary 'š7}h\r£ð¯ß›¾¦·\ã}¥\ì†NSšy)\È','',0,'?'),(_binary '¹\Ô%I…‰\ç}ŒPözW­\É','wp-includes/random_compat/random_bytes_mcrypt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·ŠTÿÔ¦Ê™`µP§¥L',_binary '\åb=¯-.¹“´XÿÀ\î”\ÎþTü\ÅòYnž\Ð\ÐP\æ\í„','',0,'?'),(_binary '¹\Ú\Â\Ö-:5‰fx\0\×8 \â','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/rating/save.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`?\èýÓ¥A~k\r÷¤',_binary 'û•P\ÝôRñ š3\Î\á\É=\ãr‘\ÂùSdù¨\ÛD\Õ\Ë','',0,'?'),(_binary '¹\Þ\Ö\ì#¥>Ì­Ö³{ý*¾','wp-content/plugins/woocommerce/includes/admin/views/html-email-template-preview.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ì·ß»QôšU3¡’÷ ',_binary 'a]ñ\Úy\Ýe\Ìó d\\\Ê\"g@1IÂ³Z1\ä2¦A\à•,&','',0,'?'),(_binary '¹\ç¥l“\Ð;+©S›G¼\Â','wp-includes/blocks/audio/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼&QÕ¶o®&—\×\ÇUù¦',_binary 'Ò¢^‡ôúO7\Õ.s¶k®C\Ó#Œ·\î%\ÒNr£?','',0,'?'),(_binary '¹ó;\ïF\ã\ß*5;\ßi\ìÀ','wp-content/themes/flatsome/index.php',0,_binary '<‘HD¤Y26¬\Ä\È\Å\Ó}­¢',_binary '<‘HD¤Y26¬\Ä\È\Å\Ó}­¢',_binary 'žÕŽ\nqÀeš\è\édE\'\Ñ/8\ê+U¹:q¯š\0\Ãû®\æ','',0,'?'),(_binary '¹õÝ‰¢6\Â\Äù\ì\×\äQ.}','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/filter-registry/test/admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ã«z 5=““|–q\ÝhR',_binary '-ûw„\Ð2\Â\Òk«¦Ÿamv._„n_	ùcq\ãº`','',0,'?'),(_binary '¹ÿ{Z\ÌñV\ä\Çö­$“§','wp-includes/blocks/social-links/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥Ïž\r>y®QŽ¡:3r¿',_binary '\ÉC\Û\æºl«n\Ù6óÂ±f\\\äj¦\îl²’w®^ô¸bLZ','',0,'?'),(_binary '¹ÿˆ\Ì\Þ\É\Ç\éU°\Ì\ëMa','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/WelcomeToWooCommerceForStoreUsers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\åÎ°\é¨:¯~¬²f/–¹Jœ',_binary 'ñÀT¦›\Z5\Ó\09®\å,~-\Ôy©\Ðk \ÏP`¨\Òt','',0,'?'),(_binary '¹ÿº\0·7e“^yD7{`x\Æ','wp-content/themes/flatsome/inc/admin/kirki/modules/custom-sections/sections/class-kirki-sections-nested-section.php',0,_binary ';0\Èc\ê\Í?ü´4\"º\é',_binary ';0\Èc\ê\Í?ü´4\"º\é',_binary '\Ñ\ì\Ýl)¢ 6ó_\'\âkÿ\rˆbI{Ž\Õ\ì\'S–¬›tPS…','',0,'?'),(_binary 'º\Ú+M\â%üµ]›sD00\Å','wp-includes/blocks/freeform/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ù\×Ï¯\r\ÊMÇ³\äc÷|L',_binary '\Êxr\Ð	”ß”©’Ú…^\ÍÆ¨\ä|ú& ™\ì\èßŠ5Ó¹ö','',0,'?'),(_binary 'º\n\èôn‚=\æ^ñ¾nžN','wp-content/themes/twentytwenty/classes/class-twentytwenty-separator-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª\Ä!½5kñGBÀ\r‚F',_binary '(_{‘Þ«Ø b•r,\Ëc\ÃlÁ^aúj\×\ÈZ²\àò','',0,'?'),(_binary 'º\r<ýº·ja“¾G»¸*‰£','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Domain/Services/Email/CustomerNewAccount.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!pð6\ÅS¦š\î\×Áª',_binary '\à\í¹Õ´{Yµ¼\ÑvQ*oG.A8\ÃÌž`O\Ì\×j','',0,'?'),(_binary 'º\rX_H5æ€¨‰>\Â£\Ù','wp-content/themes/flatsome/inc/admin/customizer/img/category-box-overlay.svg',0,_binary 'wt5\êbV½;]\r!aû\Ü',_binary 'wt5\êbV½;]\r!aû\Ü',_binary '\ëmÃ…¼@ò¥ò\r\"›Ÿ‚m\Ä	\äþ´GXto>[”´A\0','',0,'?'),(_binary 'º”\âyzCX9ø˜\Ðj','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-cart.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\Ã\ß!˜Á»„_Yi<ÁD',_binary '\nU%\æ>\åÚ£ /|XR \Ë\r\ê?Ái¥ò‘\Ó\0ŠõÖ‡','',0,'?'),(_binary 'º²)›¨7Z:1w–\Æ\ã™','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/FirstProduct.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\É\î…K×¢?¶Oz\Ú(Ô®Q',_binary '7Šƒ5\Öe/u²\ìÿ‡;\Ö\ß\Æs\Ø$l9<e\ÇHlb™}\è','',0,'?'),(_binary 'º’JAIYö5¶*!¶)J','wp-content/plugins/woocommerce/legacy/css/jquery-ui/images/ui-icons_454545_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\åQ´Ë„‘3XŸ¨hZÎ­\ß',_binary 'nyt¥,ó.#øöp5\Ö@\Ë%6qv\'\ë\å`.ß«#¼\Þ','',0,'?'),(_binary 'º(dwI\0:\r\ÎÀ\×Xx1DC','wp-content/plugins/wordfence/views/scanner/issue-control-hide-file.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•v\ÌòÁ[ý¥A.F3D\ã',_binary '@– Ú“‹V\ÓCñ²+ù\é´<!;@8ŠÀ§9\Ð(ón=»G','',0,'?'),(_binary 'º,u.O\ÖRú\àšP	<ƒD\É','wp-content/plugins/woocommerce-currency-switcher/img/woocs_banner-old.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\Ê\Î³£È¹`°%ª’',_binary '†´?¹\"Ó‘¯vùcp£ ®|ƒ_Ê©üi\Þ\ì\åo6','',0,'?'),(_binary 'º3ž,’˜\×cv‹k–’\Ñø','wp-content/plugins/wordfence/views/onboarding/overlay.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ðœ¨´þ\ÙÁºñ\Þ\és\Ã',_binary '\ÔÀa:£Fž¹\âV¢W\Ü5W¡<nôo`úø','',0,'?'),(_binary 'º7Ê\ìÀþ…aB»Kz','wp-includes/blocks/button/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\îhKŽ©/—\ío±¦P_*',_binary '\ÕL\×	¥†ùp\n\ã\ß~»§\èh¯kõ²\é\Ê{Z¦\Ó¡v','',0,'?'),(_binary 'º;‚ k\Â\ÃBqx‘','wp-content/themes/flatsome/inc/shortcodes/ux_pages.php',0,_binary '²½–v\çÀC¤.¹\çØ‘\Öj’',_binary '²½–v\çÀC¤.¹\çØ‘\Öj’',_binary '\É\0ºfõ]Öª–û4u\r\Üxp£\íI\ÏÝƒ›\È\Å+h®¢','',0,'?'),(_binary 'ºDc\îX¥H H<\Ü\è´û','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/jetpack_autoload_filemap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œ¡A;;\Ö\n\ÂhºUùu',_binary '·ß ØI0¾Ä’š9…˜c¡;\×üÿAõ¥€;)\â{\Ð','',0,'?'),(_binary 'ºNþö·?YW>_»>91','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„Ž“PÌ†©¿¨‘x¥Ç‹',_binary '´D•\ìmMõY|\Ûx\"<ALfp³x3³)®H\"–','',0,'?'),(_binary 'ºWM\íŠ\Ë{h©ø\ÚÀ(ž','wp-content/plugins/wordfence/lib/menu_options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S–\æ\È\Ñ\ÓõeñÚ‰Tÿa‡',_binary '\nS¬\îx\êB¾[\Æ\Í)É©L’6Û–>–\ÜòHÏ«Ü¥ó\Ê','',0,'?'),(_binary 'ºZu<ð\Ûeœ\Ó;×™','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/checkout-provider.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|\ïH%mú¯\r \ß4¸*\æÌ½',_binary '­Ë´µ«ÿ\çÉ¶k\Èß»b½š8ºÀv\Z\å\ÒLk³D9\Ö\çþ','',0,'?'),(_binary 'º]K{\ÌÙ¯¼\æ`\Ø{¿,','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfChc-AMP6lbBP.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+E\ÒYH\Í\í<YPK=°S',_binary 'Û‹ü&ò:^Áý±G¿\Í\×&BˆŒ„2\ÃPC‡¿~÷¯ò…','',0,'?'),(_binary 'º^®\Éq³ò<EP†\Ú\ê6','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-integrations.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Øy€h?ŽIl®\Í6 ðž',_binary 'ž \ã#”\Æm\éö2º£¤§—y¨…\Ò\'X\é\ÏÏ›¹','',0,'?'),(_binary 'º_W	\'|}\ê\Ñ}\ÊV»ƒ','wp-content/themes/flatsome/inc/admin/options/header/img/header-simple-right-buttons.svg',0,_binary '˜ò«\æŠðj~fò½„½+',_binary '˜ò«\æŠðj~fò½„½+',_binary '@\Ê\äµü\à	7<{T>\'ÿ.ö´V~hÝ£lº\0²§y','',0,'?'),(_binary 'ºa\É@o›ÿ\'¿\Ékb\íþù','wp-includes/js/jquery/jquery-migrate.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y´•k~\Äx\ì$K^-3¬}',_binary '\å\ìöP\Øyö\ì\ïD\\\\ºcd\ä~ö\ÌP¿ˆ\Õ`7  F/','',0,'?'),(_binary 'ºbˆ\é\Ö\\§õm, \Ú|','wp-content/themes/flatsome/inc/builder/shortcodes/templates/ux_slider.html',0,_binary 'ð²$Ç•ŒKÿž¯¬_}·£',_binary 'ð²$Ç•ŒKÿž¯¬_}·£',_binary '³ƒ~x\Î\×@\ëªv 2\âV_uh\çœ\Õ\Æ8†Dø\á\'','',0,'?'),(_binary 'ºbÿs•¦G0+\Íh\0–Æ»','wp-content/plugins/woocommerce-currency-switcher/js/sd/front.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']N\ë…7±\Ü\éö\\\Î-Ý§',_binary 'r\ÖgB\nÏ¤{ö\Ï\äD\Ø\Õ¬-Ñ‡ct*J4\á\ÞK\ì\á','',0,'?'),(_binary 'ºf \Õ-øg\î`L§;\êûñ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/price-filter.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´ß±‹\ä\í¼\ì\r„<\Ùo',_binary 'ÁEó¼UN¼ö³«‘‘ð3\Ï\Ê\\‡Ó¥`v¡0#yG','',0,'?'),(_binary 'ºj\ë_\ÙU\ãvT\ÂB³ 5','wp-content/themes/flatsome/inc/admin/kirki/modules/webfonts/class-kirki-modules-webfonts-embed.php',0,_binary '\ê\"ò™\Æ\Ì\Ô*R^ÁEp,',_binary '\ê\"ò™\Æ\Ì\Ô*R^ÁEp,',_binary 'ƒk­½\í¨fJ\'4b«>rOP*|¨qlµMoµÓ¥\ëNÁ','',0,'?'),(_binary 'ºx;_úq\íˆ*`<','wp-includes/blocks/group/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=>½\å\Ä* ¡f´±[µ³ž',_binary 'Ï©‘—þz—„J&–O{|K^–Ö¤«0.\Õ1t','',0,'?'),(_binary 'ºƒA¦7\ãK­ò»Ê€a\'¥','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library/check-payment.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n…^tr¡ Š\ÌñU\ßf \ëµ',_binary 'hµ˜¼Á\è`ˆ#\â}¹â˜¨V—Q<Z”„DH¥','',0,'?'),(_binary 'ºŠi/ŠpEtðµ\n\Ý÷lø','wp-content/plugins/wordfence/lib/rest-api/wfRESTScanController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´ÿr\à\Éš0mb74$',_binary '\ï{hõ¹D¨ôXò^µw¯š®6D‡fc\Ä@Q‘\Õ\rüf','',0,'?'),(_binary 'º’\Ï\ë2ÿ\Ê?!\àu\ØÜ†\"','wp-content/plugins/wordfence/modules/login-security/views/options/option-switch.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„Ÿ[(AÉŠ\Î\í„\Ö\Éû•hü',_binary 'þ£‡ðÍ³ß˜“Q6Ì¨!*ô\Ç\×X\äx\Êõ\ÃMM­u@','',0,'?'),(_binary 'º¥?\æç©–`yH@\Ö?­\Æ','wp-content/plugins/woocommerce/src/Internal/Admin/Onboarding/OnboardingJetpack.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°nC6ªo\Ñ\ã¢›^)O\í',_binary '¸¡Aqð/òxš¬1:—1±F\ë8m\âžo,P\"ûwR','',0,'?'),(_binary 'º¨¸G?šôo{Œ°\Ë\å','wp-content/themes/flatsome/inc/builder/shortcodes/templates/title.html',0,_binary '\ï}\ÝeR_ý#Zˆ‚¯n\ê',_binary '\ï}\ÝeR_ý#Zˆ‚¯n\ê',_binary '\Åõ±\Z¬ž\Õ\â;j<Àù”)&M¶\Éh‰92Â¤Dn\È\É','',0,'?'),(_binary 'º©\Â\ã^[X’\æŽi³	\í','wp-admin/themes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hJŸ[WôWô\×\Ä	T_',_binary '\ì\É5\Â\"²y-€»K‡øœ{p£\Ö\Î\â‡3qPñ÷eµœ>','',0,'?'),(_binary 'º­:\æÀX©¼@\0{*\ÅÖ¯¦','wp-admin/includes/class-language-pack-upgrader-skin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm¥/\åQ%\Å@œ÷,)l¬ù\Z',_binary 'A\ËV²E]{\éQ!Œ\ëñÁ“\ì\ÍT\ÉÃñ\Þ\Í6e[{.¸','',0,'?'),(_binary 'º¼4T¸(\â\\9\'Œ\ä3±)','wp-admin/css/customize-widgets-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+ý\ç“F³+N—\Üq.V[—',_binary 'a“¸”E-n°Ae\à=R=:.CC\\\ät¦š°Z*¬\Ô\ë','',0,'?'),(_binary 'º¿‡\0n:T‹q}K ø@','wp-includes/Requests/Exception/HTTP/408.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×5\ÄWƒ²p\ë]\'zAz\î¸',_binary '\éq¬™ò*\ÖlmKÒ£k\Ä\"\ÐMÿQ?\Êp§’aØ‚\ç¦4','',0,'?'),(_binary 'ºÁ8\à™\Î\\q\åU¿\Ë.w','wp-content/plugins/woocommerce/templates/single-product/review.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\î8\Ó øõyM\Ðo=5U±',_binary '	.\æ\íu |‰‡{°)±\0#y!,(•‘\ZZ\"·G¸}','',0,'?'),(_binary 'º\È\Ê?¼JJÞƒ%\ç®_D9','wp-content/themes/twentytwentytwo/inc/patterns/general-pricing-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(ù¶3cÖ•_\Ö\ä\éþ†¦',_binary '¯Jpˆc‰7\Ò\âÙ°r²\×CN<Í©eö\â	\í/‡\ÑC','',0,'?'),(_binary 'º\Ík{š\ä&òó»x\n¶ø','wp-includes/class-wp-error.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„l\ß &\Ø0?&‘c~ûÿ',_binary 'G†bM[G&Jr\ÄF˜Eô\Ü’™1\Ãrôs„L,t\æ(\áW','',0,'?'),(_binary 'º\ÓBg\Û~8hÔ“','wp-content/plugins/yith-woocommerce-compare/assets/images/10-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'žCbQŒÐ¸\Ñ=2\Z½d\È',_binary '\×V?—Í»\ïQ“B¨Pd\Û2`¥ˆ<z \ÄÉ‰','',0,'?'),(_binary 'º\ß$\á„o“¬1\ÖT³2]l','wp-content/plugins/wordfence/lib/dashboard/widget_countries.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›	›\Âd*W·\Ë‚ÿ\Ã1g›',_binary '\Ç+q\Ò~;f€E_\Î#\Ñ]I·V\\ðk?l¶•\ËÃÏž\é','',0,'?'),(_binary 'º\ìmñ\rý_\Ë\Ì\ÕNI¼\ÑFa','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/AbstractDynamicBlock.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%hhè³²ß­³\í¾}³·–',_binary 'rK\\OqÌ \Û/Ë ó\Ä 12‹À-\ÔZ·ºŽ¸Úž@','',0,'?'),(_binary 'º\í\ÌA0fŽýf`\Â KÇ}','wp-content/plugins/wordfence/lib/wfDirectoryIterator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n+Z/_¬\Zxu\æv',_binary '¢\Èu‘úü;IV—•a[¯~ãµ­þTZ\\^\àyJ¬j','',0,'?'),(_binary 'ºü·µœ5‰¤\Ï\Ù‰>\Èü','wp-content/plugins/ti-woocommerce-wishlist/assets/img/chevron_down.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ïs\'%\ÎSyµºªÁV\ë',_binary '\Ò\Ó\à\"Md1H\Õ3h\ä\ÍV\É;iþ\Í\'\Å1OT','',0,'?'),(_binary '»\0²\×%3[$x\0\è\â.°Ž(','wp-admin/images/marker.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\Ü*O2/\Ô3I2œý\è',_binary '~T¼@\\Ž€vUI<\çpK\È\×\Ä\×a`Tº@c\ã\Þcaü','',0,'?'),(_binary '»™ÌŸ\é)£÷À¨6@õ©¯','wp-content/plugins/woocommerce/vendor/composer/installers/phpstan.neon.dist',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ\îrùÎ¤¿\ãvc\â\Ð2',_binary 'œ\Ó\ÐC·?rô0R¹ú\êEª!\åtc\ä1«Œ=oª¦','',0,'?'),(_binary '»\Ò\É4þ™õ‰ù=Ž¸','wp-content/plugins/wordfence/images/icons/ajaxScan.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘Ê–´Ñ´­÷~fúúžiÁ',_binary 'ß©0¼Ôò£\ÕÑ¦®Æ»H\n‰•Ž‹ÀÂ¡;\Â','',0,'?'),(_binary '»tP\Ò\ZX\î\ël”','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart/push-changes.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ùö¾QƒQ\Ó.,—7%q=',_binary 'öË‘¤\î™\Zœcñ#E£Cºnð¢\×ù:ú\È)‘ó›|','',0,'?'),(_binary '»	\æ\ã\ãEm[¥¬³\Ç\Øl\Å<','wp-includes/js/tinymce/plugins/image/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-”úZC\élÂ­}\ÄèŽ\ê',_binary 'y\ç\éT\í\ÔNz+¨ª\ã†­âƒ†õ\'\Ãó«ü%Y\Ê','',0,'?'),(_binary '»Œ[ôºt\ê\àöhø(òL’','wp-content/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'óG\Âµ¬\ÈEYúdu\Ú',_binary '’IS\ã£\ÔR¨\Í¡\ç—c-ŒU\×v‚\Z\Ö]\ëb—)','',0,'?'),(_binary '»ø$5I2*ü-\ÛÀ9','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/ajax-terms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'úE)òM\ìÁ˜O pZûj¦',_binary '6R…<<\ë\Ä\r½$–bNü$¸…\Æ3º8MSB\è8°\Ø','',0,'?'),(_binary '»x’0,ŽH=À|¯\äd','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/OnlineClothingStore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BÀ²Á;æ‰´\é}‘',_binary 'k# ek\Ì\Ã;\"}½V\ÇE\ë!f\Ö\'\'qáœ©i\ê~\ÖS','',0,'?'),(_binary '»\Zn\0	ô|²G²¥~\é¹','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/UpdateStoreDetails.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†\ç\'M•=ø‚g;¸ªt\Â',_binary '\Ý/€:\n\Üœ\æL\Þ2y£Ê¦H\Ýýõ;³¯Ÿ(\á”','',0,'?'),(_binary '»\Zsˆ—‡·\æ‡\ØT\à¥','wp-content/themes/twentytwentytwo/templates/home.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E¨Ý–@\âMXÜŽƒõ\Ç\r3',_binary '8\Ã!S\Í|\íw\Ú\èrD|Û½“\ÇÄ†/R\Ì|yV','',0,'?'),(_binary '»\Z±\ÕQTK)2y\î‚\ì³','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/stock-filter.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A¢— Ü–|.\rÀ´QA\Ý',_binary '(¤\êüjZgÉ—\á^¯¶Œ\Ãz6\îv“\Æ\Îúõš','',0,'?'),(_binary '»\Ò\Ø\ë:h„\×	O¢X‹¡','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LÄœ\Â\ÒL¦Èr4òr',_binary 'Á“’\ÎŠ\rº\É&sð÷3û\å÷HŸ)CN\Ñ)’1\nJ¶','',0,'?'),(_binary '»¾˜\ì\íLðû\Z¼\Å','wp-includes/blocks/query-pagination/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wü)e–\Ã4%ƒ®ü4#’\í',_binary 'ˆ«@\ìoøÿnv|¡kðÊœf¿´ƒ\rÀ;>ób’t\×\ï','',0,'?'),(_binary '» ”\ß7n]\Å\Ómþ\Öóv','wp-content/themes/flatsome/inc/woocommerce/structure-wc-product-page-fields.php',0,_binary 'Ý›s9ZRÚ·Ÿ^Y\èN',_binary 'Ý›s9ZRÚ·Ÿ^Y\èN',_binary '\×\ê8{_KÇ§¾ª`\Äp¡Ð„&\Û\ä¸\Þô-Ý¬\åqAÁ','',0,'?'),(_binary '»& kñ°;ö»³\È\Ð\Å','wp-content/themes/flatsome/page-single-page-nav-transparent.php',0,_binary '½?‘)òšf/ö›\Õ}oÝƒ\Ò',_binary '½?‘)òšf/ö›\Õ}oÝƒ\Ò',_binary 'x+{\ßZ\Þ>¬}X]@˜–\Ç\ç©}¡_?ž±¡û5\åd','',0,'?'),(_binary '»-(&\Õ$\å\Ý\Ä\é\á\"˜ú','wp-content/plugins/woocommerce/templates/cart/shipping-calculator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜:^´\ïœT¾[»+ 1:¤',_binary 'Œs\È\çrÒ´*\\÷w\Þ\ÝKP+	×½¶•l\"\å','',0,'?'),(_binary '»0`\î\áKŸú\Ë\raüu\Ör¨','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/chip/removable-chip.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5¡-8Á}@üv!ùx©g\Ý',_binary '1úT\ïpv±x­#÷€\×\\Úš½uô} %º\ÄA§]*Œm','',0,'?'),(_binary '»0§TYt`iº¥\ãvA\æ+I','wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/onboarding-tax-notice.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	p’‹!N½(\Ä-þˆ1\ë',_binary '\Ð?C›õr\åmMS8´­¢5 zP}óG«\È\ÉP«$d•','',0,'?'),(_binary '»5­\ìûtöó\Ë1\0\î·+','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/price-slider/stories/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\øY33\Þ<¥¦\Ö{#]o•',_binary ' E\ê\×\áÁ\Ö\ë¹)A0˜\ÜzešÂˆ]\Î8›”\É÷\Â','',0,'?'),(_binary '»>5\é×“—\ípô÷OÍ³','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`	\Ú=\Û{¥³`F˜\ZG7',_binary 'c6\Õy ó)ö‡‹µ\Õ\ÌSº\Ò\êº‰Šq![d\îkúmø','',0,'?'),(_binary '»D`BŒÈ¥\Ûú\n\Øb±Ç™','wp-content/themes/twentynineteen/sass/_normalize.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ËKU\à\×1<pª‰ZV\×ú|',_binary 'LL\åZ\Ñm›\Îh2-s‹ñ,+ð<\Ës!@tpŸz«G','',0,'?'),(_binary '»GBuÀ\Z;}ý•·P;—·','wp-content/plugins/woocommerce-currency-switcher/js/sd/smart-designer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\Äy:ò¦Ë¹ôÒ…¦©m«\Ø',_binary 'E\ãC%ù¡@‰>¿É¼•ØµsJ6[Fø«…	ÁR‹','',0,'?'),(_binary '»L¾\ê,\ßB”öZ\Ì.E_','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/test/products.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w_Y„?„~¿]\åy[V',_binary 'Š[\0§\Íc1[\ZŒlt\rU§÷½\à£\Ï\èv´[¸ ·ó¿','',0,'?'),(_binary '»MQ§\ÜHY®_r$K¡S\Ñ','wp-content/themes/twentytwenty/assets/js/customize-preview.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'òc½\Ð\è\î\êiN\î\ëÆ‘@',_binary '\Ô}o8­H‹¹r\äª\Ã,R´‘°\'£ü¯qýðBY?','',0,'?'),(_binary '»Qø–Â°…[$z¶Ü±','wp-content/plugins/woocommerce-multilingual/templates/multi-currency/custom-prices.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ð¨¤=J\Ö+?ÔŽf',_binary '	CU\ÖÁ\à*oP\åUm=d\Êm5{\Ît<°þ»\Ý{†¦\"\'','',0,'?'),(_binary '»`õ\âO\ÔngÀ.M\rÿ','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-promo.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—¶c8–µ)\ê¼yÛˆ\à–',_binary 'm\ÐMvõ\î¦@­bY`&Û‡ð\ß\×Ë£(\0€´\åõ\ÑC|','',0,'?'),(_binary '»j\ís8i”<>>€\çu\Û','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²b‹Uþy\êÍ…«\ß\æ\08',_binary 'bSx\\h¤µ\ìT/·[\àÄ­ux+)\è€D\×+n<\à','',0,'?'),(_binary '»u\'ú¦¨rŒ¢öæ¡Žj#','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-price/stories/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\r\ï˜\Þ5B|ð&®j[N¾',_binary '“+ ;¦–Ebd}òJ\Û}\Ùz\Ü\\Á.\\afd','',0,'?'),(_binary '»ƒ4mòŒ©qúx…','wp-content/themes/flatsome/template-parts/pages/page-title-breadcrumbs-centered.php',0,_binary '{º7¥‰\èQ6\êbmp‹4',_binary '{º7¥‰\èQ6\êbmp‹4',_binary '±Šðutr=„•°	\á‚À\Å2w BF>–”Úº','',0,'?'),(_binary '»ˆw_v@\Zhñ§ƒ­Ad','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-theme-licence.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(0[\àÞ‡\'K!¢\×ø\æÁ\ë',_binary 'ð“ñ¼A\éU—û“õ\Z \äºX\è\Ð?ý´\ÈSûq‰y','',0,'?'),(_binary '»‰\á\áIûôLA$\ç1Š','wp-content/themes/flatsome/inc/admin/customizer/img/portfolio-top-full.svg',0,_binary '€Y½‹…ýó­ð]O*z²7',_binary '€Y½‹…ýó­ð]O*z²7',_binary '\ã;\Ê(d\Õ\ïp‘`»\ËDH\nÿH\Ü\ìÀm:y3‡ô¹Á€xX','',0,'?'),(_binary '»_’¹\n®´\ÞD€¸Ë¸m','wp-content/themes/flatsome/inc/builder/core/server/helpers/transformers.php',0,_binary '\"VIÁ\Ë5\éq\é\ÝT—»l',_binary '\"VIÁ\Ë5\éq\é\ÝT—»l',_binary 'A.ÁP2VRr\ÔT’m\æ\n£\ã‘!iˆ­}~\nR\Ë^<','',0,'?'),(_binary '»’–BƒEy\Å\Èû@:\Õ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-metadata/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ªø\ÅjZzJøú4w\È',_binary 'P–¢®\Êªj5\Ú*n9Áõ<MD,kä§Ÿzófšõ\ç','',0,'?'),(_binary '»±†\â/yM—±mˆ\Ô*¯','wp-content/plugins/woocommerce/lib/packages/League/Container/Inflector/InflectorInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/­P¦J\×8ÞšÄlõ',_binary '° #(\ÕÊ¾>d\ÈK‡ù†:ƒõ®\Û@÷T3œ”e\ì','',0,'?'),(_binary '»³L\Ë!¿ÓŒ>,™‹','wp-content/plugins/yith-woocommerce-wishlist/uninstall.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z·\à+\Å[C\åX›\Ò\ê½x',_binary 'w³\áõ€\è^vr.\ÈÙ–•V0\ÔcÝ¸\ì0¡+\Ë','',0,'?'),(_binary '»·Fg7„\0Á\ÒEOn3¡','wp-content/themes/flatsome/template-parts/header/partials/element-cart-sidebar.php',0,_binary '\ì£F·|¬#W\0b=M:Ne',_binary '\ì£F·|¬#W\0b=M:Ne',_binary 'žA8\Þ\ÒÁpÝ¨³±f¹õ\ÎzK\ÆA«Z\Züf','',0,'?'),(_binary '»¹\çC™lôª|ü’\è´\ì','wp-content/themes/flatsome/inc/shortcodes/ux_menu_link.php',0,_binary '¨}\àF\ë\0_XhIúµ‹\Ìô',_binary '¨}\àF\ë\0_XhIúµ‹\Ìô',_binary 'Wñgu®mŽBÀ¤¦P\Ï4«D¼\êK»ø|:/','',0,'?'),(_binary '»\É\ÓG!k\Ä}ñŸŸ`º§','wp-content/plugins/woocommerce-multilingual/classes/media/Wrapper/IMedia.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'øŽC2\nDñcf¥&U\Õ:',_binary '\í‹\â›@…qcµ%\Þ|\Å`\ç\ný	\î\á\ç l1(„','',0,'?'),(_binary '»\Ê{ü]\\Öµ­	ô\èdó»\Ú','wp-admin/css/forms-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.²9\ÖB0c`!\Ó\î[?l',_binary '\×E$L\ïö£RŸ±tÂ8u±jž\ë\é\á\çV…y´rñ|','',0,'?'),(_binary '»\Ì\ÑoÆ°j:\ÔqQ\Å7¨\Ä','wp-content/themes/flatsome/inc/functions/function-presets.php',0,_binary 'mkùnc\Z½„„hMÅ¿ø',_binary 'mkùnc\Z½„„hMÅ¿ø',_binary 'f2ü\É?t\Æ¿]á·¦G]±µ¢´…˜\×;(%f\Ý|\Ñ','',0,'?'),(_binary '»\Í}»üÜƒ¡C”!','wp-content/plugins/woocommerce/includes/class-wc-breadcrumb.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'š\å÷y\Ç]bn\Þr\Ô“R°;',_binary '÷\Ëc	jLø\×õÀút\ÕEWi9ò·>\å\äò\ï0ýÄ¿9Ÿ','',0,'?'),(_binary '»\Î&\ÈÏ¶­D¾µ\âzŒ­J','wp-content/themes/flatsome/inc/admin/customizer/img/badge-square.svg',0,_binary '\ÞÁ;ô‰\Õ\Üð\Z	D¥\àŒ',_binary '\ÞÁ;ô‰\Õ\Üð\Z	D¥\àŒ',_binary 'A´¤t`]oÓ‰Ø“M);\Ü\É“\0‘Mm¨o‚5nú¡-þ','',0,'?'),(_binary '»ö\×ó\êB\Ç|„\"À¿”','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ß^ûq÷{û3\\\Ýg€',_binary 'NÓ®Nó˜Š\ÇAW¨uh‚ª#³\Ò\"8)\Õ\ëeM1\Â6','',0,'?'),(_binary '»úôÀ\ÕmRm¸.1°_\Æde','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-st/icon-256x256.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ö‹f‹ÁÊ‰~<1H¥÷P',_binary '­\ì\âLY%	c‰´™\ïJU¾J9\Ö9n!)-\ïÍ”\Û','',0,'?'),(_binary '»þ©\Ôvf\æ\Â©M«\íÀ','wp-content/themes/flatsome/inc/builder/shortcodes/commons/links.php',0,_binary 'qœ—e‰OlN\Ûù\ÌP',_binary 'qœ—e‰OlN\Ûù\ÌP',_binary 'KVì°§·®\Î\Ô@^–\ìó‡¨o\Êm•x¸;Žš¸\ÈÕ§«','',0,'?'),(_binary '¼\Ð$\Ô4;Jµ5¯E\âW\á','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/component-metadata.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\Ú\â\â\ã\ê)©?\Û\"÷w—',_binary 's)\"j.›|‹0të·X¹\Ç\Ðg;Kÿ¾\Ó\É[t}$\ç','',0,'?'),(_binary '¼\"+Á\\UKg\ÖÐœl0','wp-content/plugins/woocommerce-multilingual/classes/class-wcml-tracking-link.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't•ežbk)§€tä‰®r',_binary '¨‰u¶\àƒ\Ñü\ÑP\0°¡?Œ€¶i¼‚#ri\Û\ÂZ','',0,'?'),(_binary '¼\åpg˜‡´˜`¦I@ƒE','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/dist/gutenberg/index.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\á\Ð1<^yž´\ÄAu®\Þ\Ô',_binary 'uŠ¥¨j[ 	÷õ¨/^6W\Ê\ãO2… tŸ›\Æ\'U\ÉP','',0,'?'),(_binary '¼¬ð\à\Ä\Í\ï\"¦R\ÑÅœ','wp-includes/images/crystal/text.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ì Ñ²ªü#¾dÿ%\ã[µ',_binary 'n1ô\Â0µ\é©<;ý\n”\ÍIp¢ö~\Üf™\Åâ ¸\Ï\Çz','',0,'?'),(_binary '¼\ZNG…yqoAR\Ø\Þ\Ö','wp-content/plugins/ti-woocommerce-wishlist/includes/product/legacy.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g9¸\Ù>ü\É\ìhcu%#¼',_binary '“¼À³±žø‚d†4q:±W\ÅÃ¬‰8Ÿi\'\ç—','',0,'?'),(_binary '¼ I­\Í\âvú\é¢Õ»´w','wp-content/themes/flatsome/woocommerce/myaccount/form-login-lightbox-right-panel.php',0,_binary 'Á‰€LR\ë/yŽxaÊŸ',_binary 'Á‰€LR\ë/yŽxaÊŸ',_binary 'f°–@°×¥KtpPµ¦[¿DK\\?3>‡ƒ‘ðx hˆ}','',0,'?'),(_binary '¼/\Þ\æ-°j	i–¨T6\à\à','wp-content/themes/flatsome/template-parts/portfolio/single-portfolio-bottom.php',0,_binary '\ÞD,Uð‚KšÀ6KBGÔ»s',_binary '\ÞD,Uð‚KšÀ6KBGÔ»s',_binary 'bùR„\Ò9ö]\ÐÍ©š¿\Ã>\Îc#w`+&{gªöh…K','',0,'?'),(_binary '¼1wF\å\Ô\0»ü®ô\Ý\ì›U“','wp-content/plugins/woocommerce/assets/client/admin/chunks/3576.style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡c£„¶\Îx´]*Œ5O\Ê\Û',_binary 'Tj³\åL\è¨32Ð‰†\Ï÷9¦õ»òP\êu\çcý®oð','',0,'?'),(_binary '¼1ƒp\Ì\ÓW\î–y»¢a5c','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/installer/icon-256.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®–Ja‰‡ùZ\ém†ý',_binary ']-}TS‹k€lUªh4:\Ï]>\Ðdn_\n³th\Õ\åf!\ç','',0,'?'),(_binary '¼7²‘KÑ’õ*–øZ\Ë\"+','wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lYŸZöià¨† 3\02[',_binary '(’\åA#\ïÀ¼F—þø~+¦Ÿ Fgh¡ðSŸ.ûb','',0,'?'),(_binary '¼=ê¢£²%œø\Î\ïi¿·','wp-content/plugins/contact-form-7/modules/recaptcha/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jƒ\Ô(sm/¯\Ì#€&',_binary 'É–¹†qv\Ó\àÓ«‚\Z\'››4²¿+™]¨\ÄL4šM\È','',0,'?'),(_binary '¼@ý›a‰á‹‚p\è·p&H','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/tag/test/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é K ›˜–3½@©%o»=',_binary '<»)o”\nfv”,‘†\æ}–\à<\Å\Ù3D\ëL·\äˆ','',0,'?'),(_binary '¼H“¹\ë8Ø¬ÆŒp;Ÿ9˜&','wp-content/themes/flatsome/inc/builder/shortcodes/woocommerce_shortcodes.php',0,_binary 'c/NH\Ï\Øu4:t+3ðÞ½',_binary 'c/NH\Ï\Øu4:t+3ðÞ½',_binary 'N\ZúHAA©(Â¹Ró»\çö\ÚÀ\Ó{›º-Y«²ÆªX','',0,'?'),(_binary '¼I\Û\Ïi—\Ä\\u\ëùÐ‰Œ','wp-content/plugins/woocommerce/legacy/css/photoswipe/photoswipe.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\â¯\êÇ~ðl…C\Í(~‘\Ì',_binary '\ÉÀ”Ù­¢\ì;„\áûYCÿŠµ¯\Âõ•|=†–•.’(ö','',0,'?'),(_binary '¼P ý ¦\Û\É)œ¦5','wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-sale-countdown.php',0,_binary '@{¸\è/’‚†€B~=]\ê',_binary '@{¸\è/’‚†€B~=]\ê',_binary '$S\Ýyæ“žË±¿\â/¡J™‘Ñ¤=3_®I÷	GƒùC','',0,'?'),(_binary '¼S(\Ôfíƒ\Äbòú‡=','wp-content/plugins/woocommerce/includes/log-handlers/class-wc-log-handler-file.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '88¯ƒl\ÊS8\ÏL\ï\ïù',_binary 'yCº\ã\Õ\Õ\Ñv‚]#\Åú\ë\Ü[…\'­t;î¤©\Õ\ç\íJJ','',0,'?'),(_binary '¼YJ’\ìO\ÏÎ ð*Z\Ò€\å','wp-includes/blocks/post-author/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6hx¢6I…\à20Ï†»|\ìg',_binary '4\ìý\Z&{„b’|Ÿ\äG#\êf^3ÁÀ)!h½¦0xz\é','',0,'?'),(_binary '¼h_B\Äü¹5zö\0D3-=','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/dist/js/otgs-installer-support/app.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c™eh\È$R0\åkO[þ»N³',_binary '\à	l¶D‡Î¤ŠmH°™ s\éZ\Ì\n “AUf\r','',0,'?'),(_binary '¼s\Òt]H°˜‘û\×\Íþ\ã\n','wp-includes/js/dist/edit-site.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ä6%\Ýe\îN^v\àÜ—†¿\Ù',_binary '\Æ4\\y}&´\Öõi,\î~¿ú\Ýb\ã•}\ë¢eûf\Ïgµ','',0,'?'),(_binary '¼v%Ÿ”ŒS´[¿Ìª£Ñ¾','wp-includes/ms-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Úšœ›w5FSX‹\æ…\r\\',_binary 'K\Øs\â»4D§r\âöX’‡k	\íô\"¥.þ„\Ú:aŽ’','',0,'?'),(_binary '¼w¢\ÑOûA\Ä5k_u©\Ã','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-product-variation.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'øT÷R\"¨L=…y\Í\ç“ÁK',_binary '+y\Èÿ\È¢g0f\è_ñ›$l„	p\âóÎ™‰™Y^‡','',0,'?'),(_binary '¼~ô’›‡\á^;»5Á¾','wp-content/plugins/wordfence/modules/login-security/css/font-awesome.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\ÄùÀ2Jå¨³ýYBç˜±',_binary '\ZP­Lã¨’\ÍžZi\Ét‘Aü§\ä®\ë\ã\Ø7d«','',0,'?'),(_binary '¼f\ç\Èú¾+\åS6\ß\æj‚¨','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤°\á\ÄY6ýoz\ÞÀ/›C',_binary 'e×º‹k+±oC \è\È\Ç@Æ¹\éOK<\æh¹S_','',0,'?'),(_binary '¼ŽO]\ä&ýjO}¢Ÿ@›','wp-content/plugins/woocommerce/assets/images/paypal.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'óftqg`¡ƒ\Ñr²W†\êA',_binary 'ÐþûJŸ\Ç8U\ë\Õ\ß¾…{\ë\ßÒ½E,\ÉýG\'Þ§´','',0,'?'),(_binary '¼’°dšÕ°L7s\Ú&Th@ñ','wp-content/plugins/woocommerce/legacy/js/jquery-flot/jquery.flot.stack.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5:Ç¡0‡-<Bû',_binary 'Y]A\å›Sƒ!\éœc££\Û\Ø-Á\×\ÏTNr™ÌŒ«ŸIÆš','',0,'?'),(_binary '¼“¶sI\ßA¹\Û6ŸŒ·\×h','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ês©\Þú€Clš¶\é\0oq',_binary 'm”‘juAã¸¸.\Ñ]4ƒødˆn¼ø›1\É$\\±&5','',0,'?'),(_binary '¼”\Æ^4K5\×}>\'¨Z…\é','wp-content/plugins/woocommerce/includes/class-wc-template-loader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Jg!\ËÅ‚\Í\r\å;\n\ÝTb',_binary '\É:o´l^\ì|¦ûÁ\èƒz\Ù«X;p^@¥v+\Ð\ç½ú','',0,'?'),(_binary '¼Ÿ¦rsa\ê\Ð\Û9SUU¨\ê','wp-includes/blocks/post-featured-image/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\Í&ÒªI\Ñsq™4\"',_binary 'h™¾tÜ„9¨Œ\×\ÙS\nn\Zc\Çñ%xMe\0’(Œ—\Û','',0,'?'),(_binary '¼¡+ºCŒw\ã\â8o/Ê«','wp-content/themes/flatsome/inc/admin/customizer/img/account-icon-fill-round.svg',0,_binary '“…ø£>N\Þ\å\Çü÷',_binary '“…ø£>N\Þ\å\Çü÷',_binary 'ž^Ü×”ª7\ß\rt\ÍL¹n_.^wJ\nüv°\á6+','',0,'?'),(_binary '¼¨wy2c\'\ÙpY›‚\ì','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/stock-filter/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\Zj\éA¢§&\ÔöŒ:@|R',_binary 'ôÁœgƒ\ÅR`p“%1Š…ˆW!F\Ìíœœ\Z\'\r\ÓD','',0,'?'),(_binary '¼©‘\ë\Ø\ãv\ÍyL\Ô\Âe¥\í!','wp-includes/blocks/post-terms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\ãœJGhNp€7gº{u\Þ',_binary 'f¸q¶žf=\Þ\ï^\Ýh\Ï)JR\Î`\ç†\æDñbˆwB%ñ','',0,'?'),(_binary '¼³‚|X%jgu@\èCJˆM','wp-includes/js/dist/vendor/react.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mŽ~gQ[[™\Ú7\âJ•',_binary 'Ä¤Q>\ÅÙ…\ÉÀ/K2ò¬\Z»ô¨ó#–òI($','',0,'?'),(_binary '¼·Ÿw…h¬§DŽ\Íø*“','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/reviews/review-list-item/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰\å™\Ù2gm}ñV\èk§o',_binary '1)\0\ßM\ÖB·¥ k$KVz\ä¸B´û%LlfJ\ãU\É','',0,'?'),(_binary '¼¸Y\ëi\Z‚2ƒ´Ù’Œ)\Ç','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/shared/with-product-selector.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%¦®\Ã%œDOw[3\ßr',_binary 'ôeY]\nN‰RUè€Ÿ¤¢*r‚ý?66öN\é¶%\ïüù8','',0,'?'),(_binary '¼¹Du÷„KŽB\ÔLk£—','wp-content/plugins/contact-form-7/includes/shortcodes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ú¶Ý¥,«—RŸªWý’\r',_binary 'Üš\ØOcksC[\Í\'\Ã\ã\Å\á´ÂUhø\ßjš	4¤\ë','',0,'?'),(_binary '¼À¤@\È\Êô#N‰*V/2J','wp-content/plugins/woocommerce-multilingual/inc/template-classes/setup/class-wcml-setup-notice.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'IÄ‹¤@½Ž\í\àv\'-›P',_binary ' ˜¾p6t§RÅ¨M-Rò¼\àG\ÙGr\Â*$E|$g\0X','',0,'?'),(_binary '¼\ÂCWöU\n²¿l€)\ç\Î','wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-metabox.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o,ŸŽq \Ìå¬¥27•\"ô',_binary '_¦uLùñO)*Á#-(÷½dyóŒ¶D·ø{\à','',0,'?'),(_binary '¼\Ëov¤}X³cH­ög','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-coupon-form/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l¿\åje$º/¤\æ%7˜)',_binary 'Ù·ô—¾WG\ÅX\n6*„oƒ‡\Õ>³­¡>\ìPñhli\ï\åH','',0,'?'),(_binary '¼Ë\ÞA¥F\è–;–w\ê^%>','wp-content/themes/flatsome/inc/admin/options/layout/options-layout.php',0,_binary 'b\Ý@q2ö_~þÑ¹u#ð',_binary 'b\Ý@q2ö_~þÑ¹u#ð',_binary 'OmpOˆ,›‰²ô	¾\ä\Êñ@	ƒMùSA…ð¾¦t£','',0,'?'),(_binary '¼Ö‚xRa\Ñ\ÛùÇœ„@','wp-includes/css/dist/editor/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ëµTNOZŒy¤n\äz\É',_binary '{-@Tˆ\ro\nR¸\\8Œ\ÜZ?_\ÎO>\Â[&†3ñf½','',0,'?'),(_binary '¼Û„k¦6TtH ø¾9','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/collections/resolvers.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ü±Dÿ½”‹£¾öqH¶',_binary 's~\ãFI\å”\ê| ˜¾ÒŸ¨:š¿N7›¸¸f„','',0,'?'),(_binary '¼\ÜH¸(\æ¥i¢Ç¤\ÏV:÷','wp-content/themes/flatsome/inc/admin/customizer/img/nav-icon-outline-round.svg',0,_binary '„Gh\njš\ÄIº¢ap_¸',_binary '„Gh\njš\ÄIº¢ap_¸',_binary '|Öˆ ó•\ã¨\ë\Ò\ãtMµ7.‚4pY´y„6‘”£2û*-','',0,'?'),(_binary '¼ð›\ÂX\"¯-{\ã\Ê$48sx','wp-admin/css/deprecated-media.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D‘Re\ÅCX&¡³À¨n',_binary 'QU)Âšÿ\Ö ÆŸ¬lˆQ d×¶Ž\ï†+8\ÍVÎ€ö','',0,'?'),(_binary '¼ð\Å\r\Ê\ÌZ³”O[Î…f”','wp-includes/blocks/columns/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Òw®×±„÷Ž&¼•,ŽÿEƒ',_binary 'Î©nW&\ëœ5(­p›ø\à}\r\Î\å\êök.Zá¬¿5œf','',0,'?'),(_binary '¼ôŒó¡\Ù@\Øó\Ù½\Ò','wp-content/plugins/products-compare-for-woocommerce/templates/style_section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜\ÅkRµ\'¾bñ\ÐQ»§§ø',_binary 'L­Ï¥û?…RG\ãÑ§uV$–h:9O\n0¤žòE(ùk','',0,'?'),(_binary '¼üUdŸ¥M…’\ÙS$€l','wp-admin/includes/class-wp-list-table-compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Û}‹>\r_D\"¦õCkñ\ÔC',_binary '\\¥;Šý]\"§¤®(+/\Ç\Å}žËšq5\ÎôNS\'ª','',0,'?'),(_binary '½\00f\Âø¶¥A!œˆº\Þô','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/KnownInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H.(»¯°ýN7\×\ë\r',_binary '_¦©ý¸ÿ\Ü›Gd„11g Y—”1~ú¦>B$t\ÛðªX´','',0,'?'),(_binary '½ltrAW\áØ³y\áp','wp-content/plugins/woocommerce-multilingual/templates/multi-currency/currency-switcher-options-dialog.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't¹n%³™Nó…\Ðs \ï\Ñ',_binary '§\"«¶ð|³`Áo\ækø¢pØ“?I\Ýüï›Œk','',0,'?'),(_binary '½	/j\ãAÑ¯K\ãüˆ¨\î—','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/errors.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¢”òee!\Ñ6ˆF~',_binary 'pŒ\Ý4\Øaw²\î\Æ\ïm\ÅJ~InOa—<6Àø\Ñ\ß\Ïô','',0,'?'),(_binary '½	\á‚\Ú\ÞzÁJ3Ø¨µzr','wp-content/plugins/woocommerce-multilingual/res/js/wcml-attributes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q=\ækA\n±\Þ\ïÐž¶\Î>œ',_binary 'U\';\Ì-%‡ÒœsI®q„˜\Ø~ŸYÈª„¯ý´\ã\ìý~','',0,'?'),(_binary '½\rz\é@³_ÃýmødM','wp-content/plugins/wordfence/modules/login-security/classes/model/ip.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '96¿fºö®\î;˜¡‡0',_binary 'mgc%\Ói\ZnƒA®€BŠ@ÀšwF±z\Û;\çy`\rN','',0,'?'),(_binary '½6»…aóQ,‘\Är™L¼\Ý','wp-content/themes/flatsome/inc/admin/customizer/img/blog-normal.svg',0,_binary '%\Ý­\îx6Mz›h­\Õw',_binary '%\Ý­\îx6Mz›h­\Õw',_binary '¹YBC\Âõ/1\"]Å€\ébJÒ—©\æm1R¼ÿ1\ßZ¨¨','',0,'?'),(_binary '½¦©\Ð¦\ÌZl\ê#u\ìY','wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/privacy/class-yith-privacy-plugin-abstract.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Cµ\Õ@ŽG~û §6ø\àñ',_binary 'Ú‘11&oÆ9UUW9?FR’Ú \Õzf˜÷\Î)','',0,'?'),(_binary '½\ÔB\í\ç-‰Ôµ\Ë\\/ò','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/StoredStateRuleProcessor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uÀJ\âO”=?\äÅ»™BQ7',_binary 'Æ€©?Ž\Û?®S´*<Om\ä’Hî‡©š=\éŸ)É¬=','',0,'?'),(_binary '½	\ÆbjùPi¼ƒ(®¤','wp-content/plugins/woocommerce/assets/css/twenty-twenty-one-admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„¹]&Ç®\Ò\Ï	¿rK”Z\×',_binary 'µ\Z®›G°–ùÌžº!‡–IüLŠ|WS\Û-:\Ós\ä','',0,'?'),(_binary '½$’;ŽLªS;-D¦ªßº','wp-content/themes/flatsome/inc/admin/customizer/img/category-title-featured-center.svg',0,_binary '¥‚—µ\rN\è\ÝhšHR\è‰Ïƒ',_binary '¥‚—µ\rN\è\ÝhšHR\è‰Ïƒ',_binary '³_ÿ\ìZJK\è\ÃY2W‹\Ã\ìNjü;€6_	„-','',0,'?'),(_binary '½&t\Õ^¿\Õ|7>\Çv¾\Ðx','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/payment-methods/assertions.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡Y­h-e÷tø7È¼',_binary 'üK”ù\Èvt¹Ó«$gU\ÇF¤\ÜM\0!^\Üµ\Ê}°\Ø4Ž\Ë','',0,'?'),(_binary '½\'öŸC’+Èœ\Ô4œ/»	','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/Cart.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?°!™ŸœÁ3šù_P\Ö\Ì',_binary 'k‹d~Ý‰*#\'?\áXh\ÔCmj\ë\Ü:¦\'©§\Ðh™2','',0,'?'),(_binary '½/F3§\ï`\Æ\021W{Y','wp-content/themes/twentytwentytwo/inc/patterns/general-layered-images-with-duotone.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Á¥6“\åŠM\ËÐ‰?À',_binary '\å&ü\ÚÀJT=dj9²)ò\"1=ð\ÆRIC—\ä\ã½<G\Ë','',0,'?'),(_binary '½@G„\ît\ÇeY\\\'>¯O','wp-content/plugins/wordfence/lib/wfVersionCheckController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'û\ÞiCŽ™¦^Ao*\Æ',_binary '­´\'iU\Ù\'FL©Ž[\Ý	5\Ç\Ê\'*\ë\èa8MgG\â>','',0,'?'),(_binary '½C§²\ã^Q~/\ïñ©h','wp-content/plugins/woocommerce-multilingual/compatibility/res/js/wcml-adventure-tours.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Êž\á\åX(¼Ÿ º!\ê%\ÅU',_binary '¯”p’B)\\¦Y-}\ë\äPøt^\Ì#šÁ_ž\áz','',0,'?'),(_binary '½Fš#p»\îŽ\Õ\Ú~‡','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/how-to.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$ÅŸ—C6¶’e•1&½ƒ\Õb',_binary 'È–p%Aª¹\Ç }¢ \nŽA©\ä<ú¯¾N–Ÿ_Ù¬·','',0,'?'),(_binary '½Gï¸ˆƒg\Ù\í\Ý\à\ÐpÎŠ','wp-includes/blocks/quote/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®ˆ\Ül\äkþ“,\Ì\È4¢',_binary 'T3—º¥C)\Ó‡¸Y²8“\Ñ9ðŒ\éZšN]‰eŸÿ','',0,'?'),(_binary '½K\Íõt3Ó³‹\ê\'b','wp-content/plugins/wordfence/css/activity-report-widget.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J„^x;y‚­‚°\Ôc¡ýÿ',_binary '\ÐÓ¡®Áf\ÅaMšWv+ò€¨WŸ%}\Ö\êž`DöN£\Å','',0,'?'),(_binary '½O~ûLÈ¦¼\"f~|‰\Ú;','wp-content/themes/twentynineteen/sass/site/header/_site-header.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\'uòš‹\í˜?\ÙÚ©\"-#',_binary '1,\Ú³¹ý0¹\ÜÑ™LvÀ»/\r­>%Œ¬¾\"½\Ó\ï©øô','',0,'?'),(_binary '½Všª\î6_¬\Þ,s\Z\Çyš\å','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/complete.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ä©˜?É£„VO\çýÔ®\â',_binary 'ÿ„R^¬\È}U\r;^\Üy>\è;\ÙŒf¯‡\Í(ò0\Þ\èY','',0,'?'),(_binary '½ZžÀWt\Çp¥NŒh','wp-admin/css/nav-menus.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I†\rÄ–®\Ê\ê—Í¹‡M±',_binary ' i:ag¥\Õ ù¨r”\ä“\Ùÿ“\"’‰`z\0ûfE\ç','',0,'?'),(_binary '½lÅ«­\æ\Ì:\ê\0\ì©Hk','wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/AU.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\Ë,ñ\n\ßr\ÃWWð»\Þ\nh',_binary 'û‚À¨\0\0rQš¯-\Ùy±\'fµp„VÀ7\nzù’¸E','',0,'?'),(_binary '½m\Ýa#$sõm˜xµñ\ëQ','wp-includes/blocks/template-part.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'QE¶\nú\à—ôx\Í\ÛbE]p',_binary '§@nŠ°\rf¹‚Ë‚\ntÏ¯uÜŠpF²\ï\\\äcû¾Q','',0,'?'),(_binary '½6³ žm\Þ\é;\Æt.6','wp-content/plugins/nextend-facebook-connect/includes/auth.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é¶\Ò\Äñ¸gëŠ¥Gó\'¯~',_binary '\ê\n¨9r…\È~\æ…´¶rzð<öŠ\ÞbI<u°…|·ý','',0,'?'),(_binary '½˜|^9’„\ç…<h|.K','wp-content/themes/twentynineteen/style.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ìmMxöD\rm¼(/ƒ€\è',_binary '–y\á?»úû=+±ŸÀ/¦_ƒ´ùg§”«\Þ\è¯Y›4Z','',0,'?'),(_binary '½„#;‡\ìe½¶O\"õ¼#[','wp-includes/blocks/shortcode/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4>c\ÇS\×/\"™Ø‡$ˆv',_binary '\Òky\Ë}÷r\ì¨C\Õ\à\"µQ}\ë3‡³i\ï\Ó$>V¬','',0,'?'),(_binary '½‡\ëk‚\Ç×AV¯¤LMö`','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-webhook-deliveries-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½/Lë¾¿\Ú\éÉ«>G',_binary 'v2—¢F\Ý™ù´\rH\ÙAd\0\Ìo¼\á{\ë’u^\ÆkA(x{q','',0,'?'),(_binary '½‹\ËmÀ‘*£x\Ø\æ™\Ü×€\Û','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/notices.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xBj&,ö®¨ó]\è¶$',_binary '\Â:Ü›<Xù9euQ«§Æ’÷§`X6i°\éÐˆ§‡!ú¨','',0,'?'),(_binary '½Z øOg\nW‹W’2','wp-includes/js/wp-embed-template.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”~ƒg\è\Äl\ËL\ä9€',_binary '\ZkVcLQ<üZ+z6i\×f&€B!ø4\æ÷ªÛŽpÜ','',0,'?'),(_binary '½‘š‚;Å…»:\Í\æ\é†','wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-debug.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ê\ÌÞ£,q‚r\n0{—0«',_binary 'rw«=µ°‡|\Ðc™\ÔÍµ„=aºNd \È/$Õ¯.(','',0,'?'),(_binary '½’¹õ˜ðC#®8\Ù\Ì\\{\Õ','wp-content/themes/flatsome/inc/builder/shortcodes/ux_badge.php',0,_binary 'šm\äR¢ù:‡Só!\rwÝ–',_binary 'šm\äR¢ù:‡Só!\rwÝ–',_binary ' ¯F(r\Þ\'#h‘\Å^`vHË®ÏšûÚ®\Ëäº±xŒ[\ï','',0,'?'),(_binary '½™\á•IeÂ½P°/[Oy¿','wp-content/plugins/ti-woocommerce-wishlist/includes/tinvwl.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Am\rðz\ÉEŸS«',_binary '\Ö\Ú4ù–Ž˜m\á»\Ì#i\ß\å\ÌZ/\Ä=\Ò_S=Œ°\ã','',0,'?'),(_binary '½ŸË¥ðð\ÆÈ³c-ùy','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't—&\ïr@;…\ì\æf\à€',_binary 'Ÿiifz÷Î°P\\ŸB<WÙ´p‡\Ì2£®,ªT\ï\Ã\Ð','',0,'?'),(_binary '½¨úô¤øB\ÃJ¨<«`õ¢','wp-includes/blocks/post-excerpt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Í>ª\Ñsˆ”ña’!åŠ',_binary '¯/Û¯ð7{1•(DTMˆ¤\0Ñ·!\Úø!\n\ÃlZ','',0,'?'),(_binary '½¬9H6Ÿ­\Ñ\Äeø\Ý\Ód','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/no-payment-methods/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uEŒ½\Ç#j¶»×ƒ9|H',_binary '\ç‘I)9{\Ô¹\×É—\Éó\Ú\ê1ˆJû#_[¿9Uf½\è','',0,'?'),(_binary '½®·=&z²m4ºu_\í>','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-rating.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'esQ6\ÎYD–h\Ð\åß |Km',_binary 'T((™²\Î\×?±\éN±\0jh$\×\Ç+;•¥h¹L','',0,'?'),(_binary '½¯!\Üh>„iq…8t\Õ\Ân','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ö\0\ç¤\Ù>ö¤@Ue\ì\ìU',_binary '®È›pñ\â¡Ë„o<¸§O\n¼†Oo{\Öw=—S','',0,'?'),(_binary '½²¼\\†“9ºÑ•F w\í','wp-admin/js/revisions.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\Ã\ÖOez²¿±nUR',_binary '\Èq\æ\Ó:\\\É\ÏH\å-ˆ”Æ’’V‚\Þi²\ïÔŽ$','',0,'?'),(_binary '½³c\ëxÀˆ\ä‹]\ÍRs²R','wp-content/plugins/woocommerce/templates/loop/loop-end.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°±IÌ†ð€?\Ö\0‡&Y÷Y‰',_binary '‘TG\×¤K\Þ\ç8\ç˜\Ò<”\Ëè²€&MM©ˆ\ê(','',0,'?'),(_binary '½Á+z\îT2“\Ñ]˜ZE','wp-content/plugins/ti-woocommerce-wishlist/views/wizard/step-page-field.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒù1i\Ä¢_½	\ç',_binary '\"%\Ðº©ö\Î\à~\æJeQIwô3cŽÞ¬\ê37ù;™','',0,'?'),(_binary '½\ÉÓ°\éz²´ú3$·Œyu','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/gfml/icon-128x128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n[s\ê\Å ¬xÅ¬W¶ˆR',_binary 'ø¹\"\ÚE£¯ü«‚	q»9\ãù{\Åó\í\ÚÁ/g\ZWº','',0,'?'),(_binary '½Êˆb\Íc#:¼;ü8¨¡‚N','wp-content/themes/flatsome/inc/extensions/flatsome-lazy-load/flatsome-lazy-load.php',0,_binary '—Ÿ(šS\ÜÀ:–\×le¢C',_binary '—Ÿ(šS\ÜÀ:–\×le¢C',_binary '»rŽY›\ï68¾^ü¤\î-~\Õ:\rrÚˆ¾\â ÷®º\Ç','',0,'?'),(_binary '½\Ë…s\Û:\Ê|+°r‰j²','wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/block-error.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o:\n\ã\ì\é\ÚX7±2Šs\ì“',_binary 'ð|¥\nÿ¾ô¨\é6=N\ÐÃ‘D$Yª‰ó’g¥?üø\Ú','',0,'?'),(_binary '½\Ñ\Â/<‹5ô-”Á\Õ\å”\î','wp-content/plugins/woocommerce/packages/woocommerce-blocks/templates/parts/mini-cart.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ä`ƒ ,\éI…\ç7\ê\ä',_binary '\ÈvBRŽ ø‰\ÇÁ\ç\0—¥§¯\Â!‘Ÿ•\ÜãŸµ†TJ','',0,'?'),(_binary '½\ÙE=#Š¸Ã¼zØ¦ ','wp-content/themes/flatsome/inc/builder/core/server/templates/media.php',0,_binary '\î=€B\ì(\Ù<. \ÖX7j\Ï1',_binary '\î=€B\ì(\Ù<. \ÖX7j\Ï1',_binary '!³{ñf5xT\Ù\Û\é½›@ön\Ý_MTrf–Ò«˜%š¶','',0,'?'),(_binary '½\ÜJülHRyõ¢\ä„\ì\Ý','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-categories/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\è\'	0šUóz=`òª\ìú',_binary 'ÀØ‰‰‡¤T9\É2Pš\ÙH\Þs\éz/gò—ÏºM±Ô²²','',0,'?'),(_binary '½\Ý\ßbP´TûY¿v\Ì\ãP','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/single-product/edit/layout-editor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ö$Vr\åÀ2.\æa\Ñ-\Óa ',_binary '¹Lí’¹\íÖºÿ©h;D6\Ä7Yü”¸k(6büs‰','',0,'?'),(_binary '½\á ×¥›\æ} §ó—\ë','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks-style.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—°\Æ7F°\â:G6\Ækny',_binary '¨øß–D—\çŸkƒ\'ª_#á–”0\ä; ‰&tT\È\ä','',0,'?'),(_binary '½\îpcgQ-žF¿pð_\Z','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Utils/StyleAttributesUtils.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|bž„¢/HŠ£\ï5xtFŠ',_binary '\í‚rõ‡\ÒßŸüôúžE+\ÎD…82\Å20½yhŽžr','',0,'?'),(_binary '½ú¤%™!Ú¡G²œ&\î5','wp-content/themes/twentytwenty/assets/css/editor-style-block.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ú\ß\×\re\Â\ÄÉŠ)\ÔJ£{.',_binary '\0I&T\ß\çxf(¤}\Å\Ñ6¬½A\Ôô\àC\0AG‹gÒª²','',0,'?'),(_binary '½þ§-o¤\ì\ê\îmq\â¨\0X','wp-includes/class-wp-block-editor-context.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U\Íö¼i¶ýŠ«‰•ñ3',_binary 'ñÁ]žc¥\ãü×­°Ñ\Ì\Ñ&jÍ„ùò\0j\ìß¹º\Ç','',0,'?'),(_binary '¾¦M3\ÖvaBcdµ','wp-includes/blocks/search/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•Vó÷™»²æ—‚´',_binary 'ŒjV&®H\\Y\Ñ?-Ï¿;fñ\0vð%µ\ä\Ð<Irœ','',0,'?'),(_binary '¾:ù¢+ˆ˜hy^Wƒ','wp-includes/block-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„Î¨wx\Ä‘‘j–Ñ¹·',_binary 'F\Î <ª\"8G\íŽu\ïÀ©L\Ùy\Ñ6\Ì\Ê\\ hl¨3\ê—Oa','',0,'?'),(_binary '¾\r\ä\ÂÔ‹_\ÎxEQD—¬','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/return-to-cart-button/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ò¢—\é{=\ë\Ç4€Y»‚£ñ',_binary 'J¢:~ð\Z\ïG¤+\r\ä6JK\êÑ´¹\Î\Ç!\ä\Ø`[k®\å˜','',0,'?'),(_binary '¾!^¢Q9\Ú\Ãv\Âgu¹„œ','wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-product-export.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ç’¾N’«·m‚A',_binary '»\Ë\Ù\Â*¥a\Èø?zžóŠ\Æ\ËQ«±h·Šžõ†2\Î5','',0,'?'),(_binary '¾&yž§qû˜%d–½W —\Ï','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-system-status-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rîˆ—\Z “‡KQ\Ï[QNx',_binary ' T¸<5qs8*¤žE\Æ/ò\ëb8\Ù\îS\Ú´·\Ý\Ík','',0,'?'),(_binary '¾/=\ï+HhE\Ñ\Þ14\ÓÊ†¥','wp-content/plugins/wordfence/views/tours/login-security.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›PÉ–¬µ\Ø3TØ±#…',_binary '>ãˆ³ec\ÃÂ¯f4s\Ø7©8ý·\á#G‚`þxžµ0–‰','',0,'?'),(_binary '¾1:¿À9,×®n\"\Ãø','wp-includes/class-wp-theme-json.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…hÿ³F¥Y\í\ØÕÁz',_binary 'Yõ0\Ì\ÌQiAjˆŠqdÈ…|¦F“ös\ÂZWRg§','',0,'?'),(_binary '¾;!Ó™A\ÔO\ã“þ«\×Z—','wp-content/plugins/contact-form-7/admin/includes/class-contact-forms-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\èõcIÿ¤¬4÷€\Í$%',_binary '‰¬|(\Î¨HE\â×§ :´H.~\ïV\ÚÞ©\ë\"\ä0Ø»','',0,'?'),(_binary '¾@)` \Õ\ä~O\Ý}\ï»ac\Ì','wp-includes/blocks/heading/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\ÙmHðvoÓ±\å´kN\Ó',_binary 'z]3Í¨˜‘Œ¹b\Âù’&jô\Ï\å\È$L½\Íb©÷\×B»—','',0,'?'),(_binary '¾H^\Ùv*\r\ï–\Éw˜c¹','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/payments.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':ß˜M^	\Ïa{%“(^',_binary 'C\ZyITÆžZa\Æ\Û\Õ;Še\Òb\0‰q³\ÇÄ‰U','',0,'?'),(_binary '¾JA\Ç\É\Ö\Ã÷¦7z´0','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/quantity-badge/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€jg—\â\å©Cò(Qaz\à y',_binary '>P\á{E”[•(n\ç-A‚$«/\×\ëJ”p\Ðü·È¦ˆ','',0,'?'),(_binary '¾Rž?°„\åf£ð×±]\çe','wp-content/plugins/woocommerce-currency-switcher/img/woocs_price_info_icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eq5X\"‚ûpON*lr9',_binary '\È\ËY\ã\Çd\ÕÜ¬F‚›úžiŸ”NTNH\Òô¬¨\'','',0,'?'),(_binary '¾T¼þ\ÞU\î<o‰\Í{$cf\à','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/select.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Yw@Y˜p\ZZ=\Z\ZóGv',_binary '\ÂMT\îˆ1}–’\éE\æ’\ß…&N†¤‘…„Ú‡D„\ÜBœ','',0,'?'),(_binary '¾VÀkx\çöQ{T\"\ÔB Z','wp-content/plugins/woocommerce/src/Admin/Loader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A¯¬\Ú›\ëE_†bŸ\Ù\'}',_binary 'ÎŒsÁØ‘ÿN³ýâŒ±pj^·+cõ\æ>\ry\n','',0,'?'),(_binary '¾^@|eVËœÄ¨ñ}H;','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-heading/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®‹\É!À€…¶_€ÿ ž…',_binary 'f^d\rõñc9¯´ùµ\Û+«br[\â.ùS50\ß\Ñ$\Í','',0,'?'),(_binary '¾jŽø7ˆ—¡n¾\í8Hw\ã','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/MiniCartContents.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½qKh\Ü\Î]€ 4\ÜP\Ñ¥',_binary '\ZV¼Ô“\ìT÷O\Ñ\æ\×sbˆ¸\ãðbÁ\ëÓ›\Ì\Ýj»¹§ª','',0,'?'),(_binary '¾jÿ«÷\ÉBÔ¿7o\é+÷%','wp-content/themes/flatsome/assets/js/builder/core/editor.asset.php',0,_binary 'hµ•Ü® ó¶Ÿ+\Ü@U',_binary 'hµ•Ü® ó¶Ÿ+\Ü@U',_binary '®5b74tó¢Tú`\ä?úG£]\ãø\åµc\å&Qƒ È¬£','',0,'?'),(_binary '¾lõ›\ÉM+J\Ä±m\Ö\Ý','wp-content/themes/twentytwentyone/assets/sass/05-blocks/columns/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\î\é\àŽ\Õ\ß\Ï;K6u(È‚',_binary '!3´`DTdúk ²‰Ž3·\Ü\ê÷Z–2•6\Þ}','',0,'?'),(_binary '¾y½$r\"\î”þ\0\Ì\í¿%7Š','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/query-state/test/reducers.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\Ý(\à•û\â*()ûñ.\àõ',_binary '\Õ\á`EÊŽ6 ˆ\'ªƒ‡¯†·.\Ï?‚Í°!NvM\Ösð','',0,'?'),(_binary '¾ƒ—ñN\é\Äõþ@½(º3—','wp-includes/ID3/module.audio.mp3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's£\Ø1‡\×bF·û	Œ\Ëy\é,',_binary '‘8&\ãŸý\Åö*E\ÉúŠˆë ´B!Õ\Ë7hEV-Š¸','',0,'?'),(_binary '¾†\×g\Ýöc\È-@ ­§@','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-line-items-block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“\ÆO\ÌW›&&&½ÑŠô ',_binary 'L·~\"\æ$\Ô`Vw×¿ûBa^\ÙDºÁðo\è\äþB)','',0,'?'),(_binary '¾‡ë¸—ðbd8‘ÂŸ)W','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-system-status-tools-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Þ¹-ú½Í³Gþ£\Ó\ëò',_binary '\Õ4…*¹\Ñþ\Ù©,}©KM|<wŠI7hc\r›\ãÊŒ\Ù/','',0,'?'),(_binary '¾ˆ-\Ã,\Ê\ÜA\èô/‘:²x\Ò','wp-content/plugins/yith-woocommerce-wishlist/templates/wishlist-view.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ûi\åcÿ\0E÷(©7\áU',_binary ',?<\ì:†Œß†x\Í\Ø\ä²¼Á	6}s\à\ÆHS–ÿhb','',0,'?'),(_binary '¾Šh¢\Ý\ß)UG@\Èx–\Ìv	','wp-admin/edit-tags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's¿wQ*—?¨:¡J<$v',_binary '7^\rM¼\ÄiHVûþy,\Ì-\ç‹Z\nµ\ÈLo\É9Uškjª\Ñ','',0,'?'),(_binary '¾_GT„5Á¯\êð‰\Ä\Â','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/filled-cart-block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª\Ã-M\0?g\×\×^^šñ†q',_binary 'ð‘\æ3™¤\È\íC\Z%õ\Ê\\±­ü‰\Ît\'^|<³@™*','',0,'?'),(_binary '¾—¾\Ë Ù›yQým7\Æýk','wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-fr_FR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Æ-¤\ë\0¿\ì;S\Ã\ì›Zœ\Ý\Í',_binary '}•\Ë<o=‚súG©\Ôð	\á&\áf)\ÅE\éÔ»\ï\Å?\Ê','',0,'?'),(_binary '¾›¿+m¼½ýVœF¼Ñ»\Ä','wp-content/plugins/woocommerce-currency-switcher/js/fixed.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`[£%A•\Ýq\Ö\\}¿U¥\Ù',_binary 'T`ÓƒO\×)•T\äŸŸON\'c¼Y74mˆ\î:ûð','',0,'?'),(_binary '¾ŸX\î\ìw\Õ±E’\ë','wp-includes/blocks/more/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÉD«d<˜¤¸\\ÚŠ\ëÝ±',_binary 'Ü§c%P<\Ã\à5Ã¤Š(\îFzô}k?ù4•:\í\å{ ','',0,'?'),(_binary '¾ Ž®¸\í\è!ýy(÷‘¿','wp-content/plugins/woocommerce-currency-switcher/img/no_flag.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™•üZ/¨€\Ùc0)r\ØUÄ§',_binary 'YD¬\Zn«B-Pü‡@Z]”ö\æ\Ï\Õ\Øù!Hg68¹#F','',0,'?'),(_binary '¾£MoË“Ùd?¢x\äh8','wp-content/themes/flatsome/inc/extensions/flatsome-infinite-scroll/templates/button.php',0,_binary '‹V!t\ÙK\Ô|C_šý\ç]',_binary '‹V!t\ÙK\Ô|C_šý\ç]',_binary '7N˜‰\Æ\ï‹`\è‚\Úuð\Ð\Ê	\ä®\Û\Ù\êñ~y¥Â¾Ÿ\Çx','',0,'?'),(_binary '¾¼úY–\ã‘-\ÒW¹\"‹5','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\"	ô\r\Â{9‚\ëq+E^[',_binary '\ÙOl…\Ø]%‹º¿´·$RðCoµm ¹b‡Tr\Ø>\Ý\ZG£','',0,'?'),(_binary '¾¾x™«ý\ÖmY\r=‘\ì\ÎP9','wp-content/plugins/akismet/_inc/img/logo-a-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\ÜJZ>µ\Ñ\Ô\Ó\Ã‰™',_binary '˜Jƒzµ…{°°M¢»\rRÿæ€®lBA\r§U´ŸÂ¨','',0,'?'),(_binary '¾\Ã>‘\×YN1\ê\ØmÑ¾\Ð','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/google-analytics/utils.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡l$H\Çö–C\ï¨ø·4',_binary '”Ué± \í¥Fò?¢—¯¶²\ÎP ƒ\ìX.»\ìZe\Ão~„','',0,'?'),(_binary '¾\Ø\n»1\Æ\æb\ëwñ\Ä\ÞA³Ž','wp-content/plugins/woocommerce/assets/client/admin/chunks/2624.style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '  h\í:\îŒ\Ú\ÖÆ§o§',_binary '\ïù\ËµWU0$G#xj›:\éZv\ÅDMSrÓ¡o','',0,'?'),(_binary '¾\á2]hqu:\ÞT6E\ÑU¶','wp-content/plugins/wordfence/lib/wfAPI.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•ÿ¼\Â»”=¯½S6ñv¹ˆ',_binary 'Á{:G\Úò:\ïER†¿\ÞW\n†$IŒm\r\r¼DÄŸ®|','',0,'?'),(_binary '¾\ãñø«X©Xc\Ñzy”\Z','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value/Color.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\ï(’\Ò\Ù\Òé¤”G1…\ã–f',_binary '¤j\á»\ëðñI!\Ì8(K‡ô\ãú\ÌX\å<ŽÀ\'Q]\Ôj','',0,'?'),(_binary '¾\ìýuþç¤€‰\Í@À\ßõ£','wp-content/themes/flatsome/inc/admin/customizer/img/category-right-sidebar.svg',0,_binary '*¶\nn~±\'•\'®—ÀO\Z',_binary '*¶\nn~±\'•\'®—ÀO\Z',_binary 'nöÆ³*ä–²p}9\Ö\Ïg¨\îWó\Â50¥‹†\ÆEš\î)','',0,'?'),(_binary '¾ô	sù	÷…\nM\nŒú2ð','wp-content/themes/flatsome/inc/builder/core/server/templates/editor.php',0,_binary '\Âq€”-pv­\Æ\'\×ó Š',_binary '\Âq€”-pv­\Æ\'\×ó Š',_binary '¢\ãA4œ-\â½vS\ßô~cN~m\Ç\à\ËLƒ ;Yü\ã¡mõ‹','',0,'?'),(_binary '¾ù|y™iW¡§5‹¦*’','wp-content/plugins/woocommerce/assets/js/admin/api-keys.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ©ò·\ä”ôƒÑ•H b',_binary '·»EuÎ„$3¯y\\,\Ë[¦	q‘2Œ?µ\Ð$üi¹A\0\â/','',0,'?'),(_binary '¾úIfù8fŽRhÀþ\èe','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/bootstrap/icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÁBõø_eaü@­¾',_binary '‰v1`¦2?m\ß–“å—“w9e@Â¤žH\í\Ð	','',0,'?'),(_binary '¾ü\Òe… K[\Ë\Ýe\ï«t','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-icons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÜòŠ†:EK¦v\Ì1J',_binary 'È¦\nZP}R*ª©‰­\Ö\'\âŽ2•ú\ïômaü\í\Ð','',0,'?'),(_binary '¿\0_¨\Æ÷òðÿ4*O_ž','wp-content/themes/flatsome/template-parts/header/partials/element-account-mobile.php',0,_binary '/\Å`\Ô\ã.|tÉšó	©\ì',_binary '/\Å`\Ô\ã.|tÉšó	©\ì',_binary '­\Ì2gt3òRöZ¯Ÿ\Ø|\ÍOL\ï›/ù×‚–,¸½00','',0,'?'),(_binary '¿^q$\ÝÈ«€g&É—\é','wp-content/plugins/ti-woocommerce-wishlist/integrations/buy-now-button-for-woocommerce.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·?d\ì~Zü¢\ÑÙª\è}õi',_binary '¯EF£®ˆ{?%4v`.÷dH\Ô=ôAþDg”:)Zð','',0,'?'),(_binary '¿	Ie\ÓÔ©[Gº¼³_Á6','wp-includes/js/dist/editor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '11¨&%U\0µ\ÎG±³…',_binary ':¶\ßZü\n\Æ +,[ýyñ—ÿ2\"1\×ƒ»\ÇùmB','',0,'?'),(_binary '¿¯÷¸2\ß\à~Lš¸•G','wp-content/plugins/woocommerce-currency-switcher/css/auto_switcher/roll_blocks.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ZÁZm\ë\Ý,p\ÕV\Ù]',_binary '\0\Õ\Ä\\H†ñ- •\Þ\í,«ý)óH­\Ð“sC\rwôô','',0,'?'),(_binary '¿#²AuI.Fªù/ö \Ç','wp-includes/js/wp-pointer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œ˜8\Zß@ \rÁ|ÿÉ›[d',_binary '¶O²È†m~À¼š‘gÆ·^96\Ï\è}>|Ì­/\Å]\ê\Ú','',0,'?'),(_binary '¿7_F‰Àõ–²ô£¥v“','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ°d\î3Í®%.Y‡™„€',_binary '¼\n \Ê&<j\Ñ}J«ÌŒ\Üv¢‰n^w¨\ÓÁ¶\áo\Ë[','',0,'?'),(_binary '¿@\ÈúK=ŠûibPiT','wp-content/plugins/products-compare-for-woocommerce/berocket/includes/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\Ú,Ì¦òò\Çj\Þ',_binary '~ú1i¨y>\Èj^OfŠ\Ë\ãÌ˜úð\Ôy¼¥M–z[ ','',0,'?'),(_binary '¿@\ÔD¶w\×w3«ü\Ðð','wp-content/themes/flatsome/inc/builder/shortcodes/commons/box-styles.php',0,_binary '“\"U†}1JA`\ç¬ð¦\ã½',_binary '“\"U†}1JA`\ç¬ð¦\ã½',_binary '‘°ó\Ï\íù+ˆ¡N£šˆ©¼¸~S6¬\å\Ô\à\r5\Ø\â(<','',0,'?'),(_binary '¿@\ê\É,\Ðn\\–€+k·','wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9\'ôQ8b\à/€\ç\åa\È',_binary '3t\\R>À_a²Ÿ>ö\0‘\Ú|Õ‘VC–ä¦‡OB','',0,'?'),(_binary '¿BK$\â\ã9 yù\\!\Ö]\Ï','wp-content/plugins/woocommerce/src/Admin/API/Reports/Orders/DataStore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'À*)9~J°YL%Æ‚[7',_binary '¡Op@¡¢:°9»”›¼·ð@ý\Ç\0 ½yŽµ\Ê%¶ŽÍ©','',0,'?'),(_binary '¿Lp\îºE\\”QA\×\ZN!\Í','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-tm/icon-128x128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ZVA´.ñ\Z5\Õì¸»#ƒ>',_binary '\ÈF\ÛÆžjE2¦°‡ü\Ø\ÏP¡õ½Ä€ö\Ê\ÉLjª,\Ûl\Å=','',0,'?'),(_binary '¿O/´Ã¬\î`|g¨_\0','wp-includes/Requests/Exception/HTTP/429.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›ò&†\Ù\Í9iÑ—²R7²',_binary 'ô‹!óT“ºuwm¡t5\Éo\n\Ì2A\"k”ßšz­','',0,'?'),(_binary '¿S”\å\áð¨p\r]) –²¼','wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-data-store-cpt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}òô(:Ö–ˆ9”T!\ØX(',_binary '™0Gh\Ò8:hyVL\æJüwp\ë\Ì\äN\Ó\"¥\á3ž9g\'','',0,'?'),(_binary '¿Tk™\'\Æ\Ð‰7jFP%ó','wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-metabox.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ðý=\\\ÝÖ¢ú\"µ;±',_binary '%\ã®#¾B†½;)£‹ª`B\Øóq\í\Ü-›«\"\ÏYž','',0,'?'),(_binary '¿V/K\Í\Õ`º…s³£ÿÁ„s','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/icons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*ò]N\n&ŸÃ‡ø\\dT',_binary 'ÿ+fô\ÓÁýŽÌ^n0$\â|˜õ8üÁ\Õjˆ\ã\å÷GE','',0,'?'),(_binary '¿h²5@p%€ºµ©ž£\Öc','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/grids/grid-6.svg',0,_binary '\Ô\æµ\æ†÷°B\r‹ò­\Õ1\n',_binary '\Ô\æµ\æ†÷°B\r‹ò­\Õ1\n',_binary 'U\Z£µˆ¥\ÍÖ¼¿tr±hWñð÷Û›€ÙWqv°\rA<','',0,'?'),(_binary '¿m›\0\éò\å4\Ü\Ã\Ê\å\à=¿&','wp-content/plugins/products-compare-for-woocommerce/berocket/framework.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ\è.W ›œ\Æ!\âˆKU\Z¹V',_binary '>¾?H˜S¨·f\Î*u\â\Ô	ücÏ¡c’œ­ò¥ða;','',0,'?'),(_binary '¿m¦½!\çheÂŠ\ãµ\×XQ','wp-content/themes/flatsome/inc/admin/kirki/modules/custom-sections/panels/class-kirki-panels-nested-panel.php',0,_binary 'tBŸú<gtA|`šf‡ö',_binary 'tBŸú<gtA|`šf‡ö',_binary 'ev&¾¼U\æ«i4\Õ\Õ°ÿpz\Êq#ƒ+®Nt\æ\È','',0,'?'),(_binary '¿v\é—FI—\Ë2h´\Ïø¤nÁ','wp-content/plugins/wordfence/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨¨F\'#7d\Íng‹\ÙE',_binary '[/q\Ü\ìE°}\É‡\È1%\ä[D\Úõ_‹²óô\ÑÒ±	\\S','',0,'?'),(_binary '¿{\Z«õm@e·Š\ãm2kQ','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/loader/Config.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\Ãz÷xm\ê\ì‰\Ëü“',_binary '@Z¤\äQ÷\ç=ýa&@c\rFŽFÉƒ^\Íü‡fP\É`5t','',0,'?'),(_binary '¿{‰1ðú\"¸¦^\ë\Ò\È.','wp-includes/class-wp-widget-factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'efp|rš¼)\ne\ÉŸ\\',_binary '’r³&\Ù\Ø\Ý\Þm\ãpKøº	(\àE8£\Å:N%z\Ý€','',0,'?'),(_binary '¿ŽmI«\ß	õG1\Ìo¥”.^','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-taxes/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ýmpÎ´\Ï\\5¶“¸E«×¥\ß',_binary 'O¬	‚w^jT\çR3\ß8Šð\êe’J\É\íµõ²\Ü\á','',0,'?'),(_binary '¿“ã¿º\î7—\ÑZôv\ár','wp-content/themes/flatsome/inc/admin/options/shop/options-shop-category.php',0,_binary 'W`_¯ö…1ÄŽ\âöx\é&\É',_binary 'W`_¯ö…1ÄŽ\âöx\é&\É',_binary 'i·:K51•\é³Õ®»\Ú\ãTr©¥Áñ\éð·$\Çò¸e°','',0,'?'),(_binary '¿˜¸s¢¢ô\Ü\ç\ï\è\Åv ','wp-includes/blocks/social-links/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÜÁKPOat®Ýš',_binary '¢X9À¸ú„q\ÆLHUNIøÛ±\Ñu†Àq¥kRt\çñ—','',0,'?'),(_binary '¿™s¼óƒIžqF›Š£µ','wp-admin/includes/class-theme-installer-skin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^wwýüy	\Ó\Ê\ä˜cŽ“_',_binary ',™,Œ-§>\ãL•I<€]2·›º\ÛN2\Õf\ï¨¨\Í<','',0,'?'),(_binary '¿™¸=V;¢‹\í\í\ÂN.K','wp-includes/js/wp-list-revisions.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PbOPµxO¥rs7©µ2',_binary '#´ò;w´1£°.¥\ËB\Õ\Æð3•f_;\ÏPf÷','',0,'?'),(_binary '¿ ¨œ›\0½\æ\áI\èB','wp-content/plugins/woocommerce/includes/class-wc-auth.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ðs\Ñ\ÊutŸªýTMP\ïû',_binary 'W‘]p¥Á†, B\0\êù©ÿ¿½pÛ·™*œ—œiÿ?','',0,'?'),(_binary '¿¢@b\Ú\Ôõ•a¬~M\Í','wp-content/themes/flatsome/inc/builder/shortcodes/values/text-hover.php',0,_binary 'la@E\Ó5ÿ®­.7Uq',_binary 'la@E\Ó5ÿ®­.7Uq',_binary '£û\Ö4o\";Wøô½\ç\èL·\"\Ã\Ñ5ž¿\'‡v¸±ý.\êY','',0,'?'),(_binary '¿¢#€t!Q‰¨?J“','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-subtotal/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\ë\\Mmg»·ÿ(}\×n^3',_binary '\Èe”·ü\Ü\è&}{\È÷šFBnZE°w\'”œSÌ¤‰b‰¨\Þ','',0,'?'),(_binary '¿ª7FW\à\Ñm!w—µSZ=','wp-includes/blocks/video/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=9A?U‰sýøo‘û‚\å4',_binary 'õ´£\è1i‡kýÛ‰w{\×t+2oõ\êFŒ\Î\Þ[ý\Z','',0,'?'),(_binary '¿³\éò²±BV „¥','wp-content/plugins/woocommerce/assets/images/admin_notes/dashboard-widget-setup.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç\î=<«D˜y\Ü÷ª.\Ã;',_binary '¨WN|@-®ŽôaÚœ›³\Å\Â\ß\"Š›>{¼R¸)…š','',0,'?'),(_binary '¿·\n…Ó›IQED	\æü\ê‰','wp-includes/class-wp-comment-query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ïWX\ÝÐ¹3ª}8\Æc\r\\2',_binary 'šks\íú\Ü`–¼ó?×’\Ñj\énœ¬\Òo\ÊYó\ÏV','',0,'?'),(_binary '¿¸÷ò\\\èM¼MøF/±I','wp-includes/Requests/Auth/Basic.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I}\nºÑ´¤ŸM»ž\"_V',_binary '—Š\Ö8¼ñhŸñs\ß+d\à°Æƒ¦œ\á°*&\ã9É¯\ß','',0,'?'),(_binary '¿¾&Ù…n¥†‹iIºj','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-guards/object.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G²£\Ö®¥\æ_„/°s',_binary '\Ï;4ŒÀÇ´\Æ\áÑ›$\rS	A\ÆPÛ‘,\àG›]3X','',0,'?'),(_binary '¿\Æ5òŠ\Ï\ï\Z¿=\ê\â]¡','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-payment-gateways.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OÖ¨W¦\Ù[Ì€Tó\Æ–+%',_binary '4°óG4s\n-–	¸\îdÌ±sˆÞ’R\Ð	:\Ì\è‡Lþ\\','',0,'?'),(_binary '¿\ÌnÎ¾8n¿\ÐPp\\`z','wp-content/themes/twentytwentyone/assets/css/ie-editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½„\ëŠWIÐƒo‚Lb\Ê\åC',_binary '€\Ï£- º	»4\Ï\ëÀ…K\ÏLLˆ\Þ\Ïuè”“\è6.l','',0,'?'),(_binary '¿\Î‘WœË§\Ü\í»P?˜·','wp-content/themes/twentytwentyone/assets/css/ie-editor.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Â-/6?—®¦ñ£\ZúX¶',_binary '*ò¾KO‰\×kC\Û\Óö{Y*©bõfº¦\ë\Ü÷¢¶\î7”\Ò`','',0,'?'),(_binary '¿Ùƒ\ä¥^µƒ¡©ýˆ','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/box-right.svg',0,_binary '\'r\Ó-~…[ˆ\ì\ä',_binary '\'r\Ó-~…[ˆ\ì\ä',_binary 'öžTiðœ¿\'OL4™±y-<¯¤«F	Ç¸\Ó‡®ý','',0,'?'),(_binary '¿\Ú\Þ.©F$u4\ë<C=€','wp-content/plugins/woocommerce/assets/client/admin/chunks/store-alerts.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't¬\\û}\î\ì©õ\áóðÀ‰',_binary 'RÁtíƒŠK[LBu¶h¾\ÖŠ;*™uú4\Ç0U•/','',0,'?'),(_binary '¿\ß ‚zú\Ø\ëBsÜš%st','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-tr_TR.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\îG‚RÙ¸3IÊƒ_,;Ù›\0',_binary 'Iûºp\í\Õ<\Ør¢“µ«µ\r}#zs^Ì€‚Ÿ±kWn0','',0,'?'),(_binary '¿\àÎš,\ÌQ˜a»gl·\Ä\Z¯','wp-includes/class-smtp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.æ–šaˆq\ØÝ“Ï ©¾Ž',_binary 'B)HJ¢¬«¥ÚòR¨ps\Ð \Ýø˜¿©	+\'8k_','',0,'?'),(_binary '¿\ëö\ïE\0\ëñ\Ø\È,Y\ã		','wp-content/themes/flatsome/inc/builder/shortcodes/ux_stack.php',0,_binary '\ÈJ›œ\á…j$\"×ª\r9',_binary '\ÈJ›œ\á…j$\"×ª\r9',_binary '\ÈvÚf\ÒóVÄ£\Åt\èR°Ã”y–§iQ\\€n8qV/¹','',0,'?'),(_binary '¿\ìL\Z\ã—\Å|¨=šc™‰','wp-content/plugins/wordfence/modules/login-security/classes/controller/whitelist.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B0õ÷™š\ìou‘ÌŒ\Â',_binary 'Žœ‡ü7/QŒ\ã¥\åÆÕwÿg:\Ä?¡À#{sþðÉŸú','',0,'?'),(_binary '¿ö³Þ“*\ç^\Ú\ê\ÃMZ%','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-large-right.svg',0,_binary '\×Gé§¾Oªó½G\Æ\Ã9',_binary '\×Gé§¾Oªó½G\Æ\Ã9',_binary '7Ã‚ó‰\ï{\Ú¶°QPNX“NÞ \ãq…Û—\ZB—','',0,'?'),(_binary '¿úDl\Z²©Å‰ƒ’¯“s\ä','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Domain/Services/CreateAccount.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k¸¶¶ƒ\0½\ìV_\09\è}]',_binary 'xôl\ÔS#¼¤þl±¯GÇ”\Ù\ï4»œ‘”[ Ò°','',0,'?'),(_binary '¿ÿdA#…ö\Í*\ç‚Å¹o7','wp-admin/js/customize-controls.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\'	\ÍHccÝ£á‹»ÿ\\',_binary '­MûÝ©‘.–¨z\ÝYø’%ZO\Óm\â´m©\ïöú\Û×','',0,'?'),(_binary '¿ÿ¢¥wRŠ-\í¢»Þ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/blocks-registry/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ê°$\Â^“X÷­±\Ú\ÂlC',_binary 'Z~kô8\r\èjt˜y©;1G\í\'\ÊvD4\í\Ç\Ï-m^²¦','',0,'?'),(_binary 'À¡Dv%V›…F4‡\Å','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒºm°ÄŽå¦\r\"³Bx\Ê~',_binary 'ñP¹˜Š§Lò²`û\'™R<DòJ\ÕU>1•÷\ÝD«,','',0,'?'),(_binary 'ÀØ‚‰\'%¿\Ãv¨\Æ\ã\ÌõX','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-list/types.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿ý(mLª[°™VO\03g',_binary 'Ô‘Û¸\Ø\ì\ãg+—H¯:ºP:6\ê}<\ë+\ë;G\Ã0û¢','',0,'?'),(_binary 'Àj(¾\âñ¥ À\Â\Ä‰','wp-content/plugins/woocommerce-multilingual/inc/currencies/class-wcml-w3tc-multi-currency.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Šr?ñõ ö¿w*›Nóc',_binary '\Ô\ØE¶OÂž\Ób_5e\n\îŒ’…\àµjú¤7\Î','',0,'?'),(_binary 'À\ÎV\ZF\Ã\Ó\0\á\ÌŽ|€','wp-includes/sodium_compat/src/Core32/Poly1305.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ß@Bg\éÁ»EJøÆ½H¶',_binary 'i§\í¦|\\I¦—\ÇñE‰‘Œ\É_•¬Xç¶ˆj’\Ù','',0,'?'),(_binary 'ÀW\àù…	p¯\ì\Îh\'C\Â','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-taxes/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡`¦ºu\ï2»ºsò\Åö]\ß',_binary ']5¤4™’e¢÷º\'Oj4¨óþŠÕ€h¥(^ly…\×G(','',0,'?'),(_binary 'À«\Íx\ËOW\rƒ ¨ \Ç','wp-includes/sodium_compat/src/PHP52/SplFixedArray.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©£Ø¦T\áÐ¬©Ô„c\ì/¥ô',_binary 'TJ¶)‚,8\ãq²@©f\Ì<DÚ›”\Ö\rx\Ý\È\å\ÄF‰','',0,'?'),(_binary 'À)$\ê\Ã\Ö9Ï“vðöE','wp-content/plugins/woocommerce-multilingual/res/images/xit.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨\Üz\Ö\Ä^•¼Hó«h2\é',_binary 'Oÿ\ê3¡|,\Ö\él\Ì\ê6¹\Ö\ïƒ\á˜5\È\Ïn½dUð]','',0,'?'),(_binary 'À\'ý\Ç\r\Ë|¸\ë­”','wp-content/plugins/nextend-facebook-connect/providers/twitter/admin/settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œ\íc‘p\åx«’±û˜\ë',_binary 'H—\èÍƒ8\rŸ\å¸!%\Ó_“2C|\êQ,\í—','',0,'?'),(_binary 'À*\Êq3i\ï*\Û$O¦ºš','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/yit-plugin-registration-hook.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\é\ÓobHºn\\Eÿã•\'•',_binary 'ù¯ilh)òdJƒ \áú¦C3ywœU·_8\ì*','',0,'?'),(_binary 'À,¹J%\ê\à(ÁµIv¤[û\0','wp-content/plugins/woocommerce-multilingual/dist/js/multicurrencyShippingAdmin/app.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ê•\éŠ\×ô©¸¤\r\Óo\ã¡',_binary 'Ex\\\Â-Tuö¢eù¶ÍºZ+?L\ï\å\åÀ^tF','',0,'?'),(_binary 'À5Úœ š\Ç2\Ïl2{„','wp-admin/js/widgets/media-video-widget.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ì\Ú:\çÜ¥ó\Îd|QùSón\Ú',_binary '…\ÊR;T„›wh©\æm^\Êÿ²\éò\à½äœºü\ÙKñLÀA','',0,'?'),(_binary 'ÀDˆÿ!VD+“ó\ê\ë','wp-content/plugins/wordfence/views/scanner/scan-type.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N½V†³\Â	¯9\çJ·',_binary 'Öƒ\á\Ïhbfõ#\æðÐ‚‡\ÚOE\é\íR\Ý\âþ¿ž9H\r','',0,'?'),(_binary 'ÀD\ÅBÌ³5\Ø\ê\Ó\Îü\Ùú;','wp-content/plugins/woocommerce-multilingual/classes/RewriteRules/Hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\á´âŽœ6S3†z¨…~',_binary 'Ýµ\Í\ë$\r¼{¤Qóó_:t˜q°g\Ù\Æ¡šBD4€Y','',0,'?'),(_binary 'ÀG\ÙVx EÀe\Õf§ÿb','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-image-right.svg',0,_binary '$n3‹—­Jc:CKÚ¯j\Ð',_binary '$n3‹—­Jc:CKÚ¯j\Ð',_binary '\ÔB¥t\Ñõ\äm\è;\Å\Èx\Øs\09˜\Z¯\çó\ï(\ÑT','',0,'?'),(_binary 'ÀKŒüœ7¿¾\×ý«9<Œ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/autoload_static.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WU~Û–ksØ¶A\Ð\Ñ>7',_binary '/4a•\ì}\ì\à°\Ê\0…‡\Õ&•I\Â@4*5O»\Ó\ÚPksÀõ','',0,'?'),(_binary 'ÀM¹/<\æPôß\çf.¤ð','wp-includes/js/jquery/ui/effect-bounce.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7grt\ç/[\Ìv¿¶<½',_binary 'xO÷\í¶G¼7°9u†”\Ù\éQÅ‘0\Ø\"\0zi]]','',0,'?'),(_binary 'ÀMÜ Ò¬@»ø—pd©B','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/collections/use-collection-data.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ë\Ì÷üZ7Ñƒ¬\'‰Ä¸DB3',_binary 'Œ‘©bŽ\ê2i\ê\Ò¦\Æš\ÂP=&“l6¿\Û\ê&D','',0,'?'),(_binary 'ÀN»VO¯&ô¶n*\ÄC²','wp-content/plugins/yith-woocommerce-wishlist/templates/add-to-wishlist-remove.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5ºŠs{¤]2\0\ãøW\á©',_binary '7\à•P\Îuc§û\Ã$Û¹`\Êsú\ÖÏ£}\rIwÉ¡…\n/ö\rŽ','',0,'?'),(_binary 'ÀT\â\ä%Á|Ow#e?','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-coupon.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\ÉQ\ê0¹tµc÷:¬Ú­\ë',_binary '\ÔA6Ÿ\ã(½Y—²Q¯(«ø°(xÙœŠµdž/ýÀm','',0,'?'),(_binary 'ÀT\Ü:\Z¢›ª°rDõ\ÕÀ ','wp-content/themes/twentynineteen/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ú¼&v\ß\Å!|ø	§Œ\ç#Š',_binary '»{tŒx”\î7œŸ\×ùiÄ›òO\á”\È~d+·f·ð\äGL]\à','',0,'?'),(_binary 'ÀVT®™2e\ãw\Îgß‹u8','wp-includes/js/jquery/ui/button.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ºaòcG;Ì­–²:$¢,Ÿ',_binary '’\È¨\'Î§Á¶¼¦Ñ«³”Œ4Zovœi|K\êó»™­','',0,'?'),(_binary 'ÀWð“ƒš¿FÁ\ÑGjUðZ','wp-content/themes/twentytwentyone/assets/sass/03-generic/normalize.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';3ÿsi\É\Û*\Çgù+^',_binary '\\Î›;3X]\íÀ\Í3­·{{8þÒ’Z\0‰>ž\Ç\\‡&•','',0,'?'),(_binary 'À^J3ƒ/:\×z!\ÎB—\'•','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/shared/context/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(ñ›¡­%Ÿ\Û\éQ%*\Ç@',_binary '\ÍÇ´ñ\ÆFþû)¤\Ø@”ö!&¼†‰Ï•h{/4«½\ZÅ¨„ù','',0,'?'),(_binary 'À^^Ëštf7“zb\â\Ë_','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/text_box.svg',0,_binary '\î$]ô^`o\ÐhA…‚\ï\Ã',_binary '\î$]ô^`o\ÐhA…‚\ï\Ã',_binary 'E°ùIK‰\ÙÅ‡Ž\ç,]½\â]*¿ª\äožK›ƒW','',0,'?'),(_binary 'Àz»6\Ù\Ù+ð\Ô\ÜPH\r¦tU','wp-includes/css/dist/block-library/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\Õj©â€‡\n9mX\\±\É\å',_binary 'EÕ½Â¢\Ð\Ývò‡í„‹\ÆU„OU\Öpö\Ò\ážA”›3ˆ!','',0,'?'),(_binary 'À{úbyü\ÖS\Õ\ÃøY','wp-content/themes/flatsome/inc/admin/customizer/img/text-light.svg',0,_binary '\Ïq”Ð¦:ü!E¼\î1\×A',_binary '\Ïq”Ð¦:ü!E¼\î1\×A',_binary '.•«­^õ|±&z.\Â\ì1ÀŠú1i\Þ8S\ï¡-1Tõƒ','',0,'?'),(_binary 'À€R\á–n·w\Þ\ÅdŽMN~','wp-content/plugins/woocommerce/assets/css/twenty-twenty.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„¥wùLºö\'‰¾©4|',_binary '^ª?J¼­cz\n\Õ\Ò\×\0[G‰‡\0 ÿ\ÕD\Ânb@`^¬\0:','',0,'?'),(_binary 'ÀË¥Ì°MVÐ—eªAú','wp-admin/js/widgets/media-video-widget.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3Sóº\Ý-!@|¼©[M',_binary 'ù\ësƒn¶úñ\á\ÔUÿ»ˆŒ\Ã¼Bo3Ÿ}\Ä\ï+¡+','',0,'?'),(_binary 'À˜t¦\å(‹iltY/','wp-includes/css/dist/list-reusable-blocks/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ä¦¡\0µ²&4¢L\àw–\Ès',_binary 'Œ»bZ\â\ä\ËÀK~\'}Êšq-’3/z\Ð\éú\082Kþ¤','',0,'?'),(_binary 'ÀŽÎ¤e;y\Í[ð¾9\ë9','wp-includes/js/jquery/ui/checkboxradio.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦Ž\0Ÿ\0\Äy\Çl\ë4Ç£…',_binary 'ñ4¿²ù¾”aI-Š\ç˜ò± g\Ý\Ýý©M‘ƒcÒ§ø','',0,'?'),(_binary 'À’}à¿¤\Zt\"ƒl}\n[Q','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-date-format.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›\Ò=.Eh\Æð\\­º\é)Y',_binary 'žFk¾\ä\Öoƒ\ËOo)\í\"\ã\Ð \æiZòö','',0,'?'),(_binary 'À•ƒhû\ëp¥l†/„e','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-price/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\áx½	t¬f±»¥b\åÊ–,',_binary '\0|Ð·F\çVW7U\ä3:e˜\è£\Å\Ðv\ÂANA–= ñ','',0,'?'),(_binary 'À•©£\ànì“‡Áó].,','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/js/admin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0¾³\Ì.\Òäˆš\Îq\Äy',_binary '\ZãŸ€p\n\ã\ïü¬óâ”µ\ìe¶\Òs¼\Òw(\rv¯m','',0,'?'),(_binary 'À›=¾°?+ý\Ðm\Zz¼bÕ‚','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/ux_stack.svg',0,_binary 'øY¹\Úóÿ\å÷<M\ÉL\Ûù',_binary 'øY¹\Úóÿ\å÷<M\ÉL\Ûù',_binary 'P²tSü\Â:\Û÷K’X¹ó\ÑÿÊªBR˜(€ÿRVz\à','',0,'?'),(_binary 'À ”MŠÛ¥Ø°t\ËF±ñ§','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/collections/test/selectors.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V_\É6Œˆi§…\ß\Í\Ó\á5µ',_binary '\ÆFï‚%Y\ÇSµšW¹Y2Jþ\ãSl.\ÔK¯?\áDN\éº','',0,'?'),(_binary 'À¡\Ù<Uj±ž]\"ým\Ípû','wp-content/plugins/yith-woocommerce-compare/assets/images/socials/youtube.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\ï\à\ÕBÎ‚?\Ë/\Út\Â-\\c',_binary '±.\ZK){†0õ	•\ÄSý\0l\ìl†¢l_™‘öD´\Î','',0,'?'),(_binary 'À¦\Ú\Ø‹OŸ\"°b^E*@','wp-content/plugins/woocommerce/legacy/css/woocommerce-smallscreen.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E¨K\ÑCJ!\â_ômx—<',_binary 'Xx‡µ\Æ\Â\ÓD‚¨5¬\Å-ûA52Ysš*\ç\ÞSx¿­ÀD','',0,'?'),(_binary 'À±3\"ü(z\Ùa€4\î8Œ','wp-includes/images/media/code.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-o–­UÊ“\î\ÕU©U_',_binary '\'eM a[R#q2š\×kz­+*<ü\Äü÷\Ñ7\0\Þ\Êj','',0,'?'),(_binary 'À³õm)¦\Ä3 4l·^I','wp-content/themes/flatsome/inc/shortcodes/ux_logo.php',0,_binary '>R‚zjÿöËž¨V\n\Ä\Ö',_binary '>R‚zjÿöËž¨V\n\Ä\Ö',_binary 'M2qR¸µúÿ1B\ïmiD|AÇ—€CB<\ë;¬¸P‰','',0,'?'),(_binary 'À\Æ\Îûúmº\Ð{·@¯m\ß','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fChc-AMP6lbBP.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oLFÊ’4\å¼\Õi\î--',_binary 'Á‡¦Cc#1_»œ|\Ë·Z  ¿ˆ1€—É¾\Ü\Õ\ÏYx\í','',0,'?'),(_binary 'À\ÇO„UMpsÞ´p–~\Ö','wp-content/plugins/woocommerce/assets/css/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\íD\ç¡\È5BJi†M••³^ò',_binary 'ª§ŸB\é\ß\ÉZý\Ýøf¼\ê6;\Ä#…™XªV\ém‡Š','',0,'?'),(_binary 'À\ÒÄ‚òÚ’‰#’øšcA\Ê','wp-content/plugins/woocommerce/packages/woocommerce-blocks/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}M÷\r\Úp££\Z¯:•\â\Ñ',_binary '`Xÿ“y)\â\ä—Î—¬\ãM‡¿®&ª¶v`I»øE“','',0,'?'),(_binary 'À\Ó\ã2Dªµ\Ê¬„ú:Ò¡°','wp-content/plugins/nextend-facebook-connect/includes/userData.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	ºôOt¸¹fw\é\n.»‡',_binary 'zðxO)Ã\0³D°Í¼¤õKiF\rd‡GµHR³œ\Î','',0,'?'),(_binary 'À\ÛM\Ñ~:\àN\nw.‹õ])','wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Shipping/ShippingClassesMode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\rû‡[\Õf\Ýl8LÁW·¸',_binary 'v­üf®©—Å›Ÿ—!c\î‡ý‡l÷bN(b#I‹','',0,'?'),(_binary 'Àä—Œ…w¬½\Ï!ž\Å?®g\"','wp-content/plugins/products-compare-for-woocommerce/style_templates/simple-shadow/simple-shadow.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nZwdüüøî²‚1\ÆoM\Ì',_binary 'ÀgW[\ÕN‚¸\Ö]-€\ì‚´S\éC0’Z…Šó\Ý\ì±E','',0,'?'),(_binary 'À\çCª\Ò^§F–`—Àóö','wp-content/plugins/ti-woocommerce-wishlist/integrations/yith-woocommerce-product-bundles.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',²ñ[J£õª§ü\ÜR\ãœZ\à',_binary '#sWšW\\¬@Hq˜,›ö€õcVjY(/ƒò28\ê','',0,'?'),(_binary 'À\é\é\Ð8š\"\"8PŒ$ÌŠp—','wp-content/plugins/woocommerce/includes/legacy/api/class-wc-rest-legacy-orders-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷qm<ÿGþºEs\r«“9',_binary '²¡^\" \âe \r4¢^,µ‘n”\à7S‹.Œg','',0,'?'),(_binary 'À\î\íÿŸX+>n\n\ç}\ï','wp-content/plugins/woocommerce/packages/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_TaxonomyRegistrar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iMP\åžP!²ú&7º(',_binary '\íóñ9)„úÑ’”Ú°ü`;\ÉT®\Ïko¦T\å–#ÖŠ','',0,'?'),(_binary 'Àúö\ä\Å<÷x—…no6D','wp-content/themes/twentytwentyone/assets/sass/05-blocks/query-loop/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘v¾=åœ­ 6PŽ',_binary '¨\ÜH\àv±‹O#»^[f\é\Ð8¼\å:\Î\Þ» M3ò¯M„','',0,'?'),(_binary 'ÁB5\\\ÓñA\Ä\ÉkƒõP>','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/button/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\â\íXø^iLTO\Éô¦',_binary 'ÿ«¬z$¨i½\Ë\í¢z/ \ëD…\"\ïVc€…%°\ékß™F+','',0,'?'),(_binary 'Á~Q”ÔÅ´Fp\ì\Û\Í','wp-includes/class-wp-taxonomy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%^¥\âˆ‰\×\énÁP.‡£k',_binary '\Å1AEw\êo\Ê7‘’Aˆ•\Çlž\rüû?³\ï#¬m+þHŽ','',0,'?'),(_binary 'Á@óƒ„÷Šœëµ°On£','wp-includes/blocks/html/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ú\ÜQ©Re—¿mÆ…¢',_binary 'v#Žpu¬£h\Ì1\ï·>Ò¿\àÙ«\ë§\Î3ŒÁœÀ6›','',0,'?'),(_binary 'Á8ƒŸ\é˜>_\ÏhU\rð\×','wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-config.php',0,_binary '\æû\íÕ—›\Zm½\è\Û\Ù4+',_binary '\æû\íÕ—›\Zm½\è\Û\Ù4+',_binary ' „„-\Ñv\ï\n\îY‰û\Æ\Ã<\ÆI©\Ç^§„9”¢±\Â','',0,'?'),(_binary 'ÁA\ìFšTŒ£\àn³†“f','wp-content/themes/flatsome/inc/builder/shortcodes/ux_nav.php',0,_binary '1qôöÎ¿]š:\èDEXQ',_binary '1qôöÎ¿]š:\èDEXQ',_binary '»G(#X-¶I—sõ“Jú\à½=\ì	\0÷\ã¢\ÐJ\å•','',0,'?'),(_binary 'ÁB\r/Ú¹\Î\ëJ´\ËOwñ\"','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/yit-upgrade-to-pro.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ‹m¦\ãÐ¤#…£Ÿ“„',_binary '\Ï\ß\í\ÕU®«\ã#—›|bxx›mf!h\æ;6W	«\".\åòš','',0,'?'),(_binary 'ÁCü\ë¿Ä­r ®õ‡µJP','wp-content/plugins/nextend-facebook-connect/admin/templates/settings/privacy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×>\ZÃ‘¾r·lV\ÞIL\×ô',_binary 'þ$\ßg\äo3XÉ¼\Å5½¨©h¨´«N“7\ÍUo\Ãòw­pG','',0,'?'),(_binary 'ÁDz\'š5R÷\ÃM\ëú.\r†','wp-content/themes/flatsome/inc/admin/kirki/controls/class-kirki-controls.php',0,_binary '|»„<Ø—¾6¯üb‘X±X',_binary '|»„<Ø—¾6¯üb‘X±X',_binary '¥Dc=?\Âd›“A¥IhX‚ˆñ\ÓF5½û\Ìo¹Ê©','',0,'?'),(_binary 'ÁGÕ…Yyø\È]—\Õ\ê^;','wp-content/plugins/woocommerce/assets/js/frontend/credit-card-form.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0)FP6ý=‘nL¼\á\ë§1',_binary '¥ŒÌ“\Î\ÉO\Óg’\Î\Òy¸tD¼ˆ?alTÿQ}A‹û±‹K','',0,'?'),(_binary 'ÁL)‚¸,;šö\×[\Ð#q(','wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/layout/content.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nA¤©U0V÷×’Cm_J',_binary 'ŸðønqÔ’\r~iø\Û\â¼/µ\ÆbÝ—…\'A *!','',0,'?'),(_binary 'ÁRX@\Ï\èWk÷zd{\Ê+,','wp-content/plugins/woocommerce/assets/js/jquery-payment/jquery.payment.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú“ê‚ŽŒú¨)ôÖ³',_binary '}\é®w…ºEqkðw²\\¬7£`+g°K—ð0\âß´¾','',0,'?'),(_binary 'ÁVpþ2\"_Š\È.À³T3>','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/multisite-updater.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\n¨À\îy¤	\é}\"LT\á',_binary 'Q\ãŒ\Ô»Á\ëý,Ë¬¶\îÂ¨\ÝPÆ®ºƒ¡ÿƒ’\ã','',0,'?'),(_binary 'ÁkHm\å1\Óó`0Ñ¹¯–_','wp-content/plugins/wordfence/lib/wordfenceConstants.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú2•\ì\Ó\Îsg\Ì5¯äƒ¥l',_binary '\î?*¯¯\0Z:WXÌ©ºk k\0IMð´ÿUT','',0,'?'),(_binary 'ÁzÝ¿\ä¯&Xâ™6¤˜\Ìs','wp-admin/css/media-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' f\è\ÇMjm©v¦ñ‹f',_binary 'C\Õ?´-ªLMš¡q\Ñ2]Rgpv\\\Û)Só¥\ì\0–Ñ®','',0,'?'),(_binary 'Á‚®8«ö§¡\Þhµ.\Ñ\ÂSk','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-comments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç}\ÊDRrÔ¯\Éo”O4`',_binary '\É¸u ienÛ¾sÜ¹6ªºañ&M9d»\Òo\Ð','',0,'?'),(_binary 'Á„o˜\á.(\íO€nW','wp-content/plugins/woocommerce-currency-switcher/views/fixed/product_coupon_data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õ4X.¹DÛ“l÷È†\rTP',_binary '\Ó \éÆ¼`ó\Ò\ïE\\£!lD¬\Û\Û1øû%\ËLM•FbJQñ','',0,'?'),(_binary 'Á‡÷\Ä\ËÀ\â­6‚lZ5›+','wp-content/plugins/woocommerce-currency-switcher/languages/woocommerce-currency-switcher.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M?\Ú\Z0«…œ\'h\0ß½\Ó',_binary '\â·a\Ï	÷	‰’\â¥?Š9lµ9:NX=g\Õ‹’\é\àµ\î','',0,'?'),(_binary 'Á‹\Û\ÖÍ¤z\á²aÀ¨B¼\ê','wp-content/themes/flatsome/template-parts/portfolio/single-portfolio.php',0,_binary ' \ï«:\äð‹\ÕÙ¼!›¤',_binary ' \ï«:\äð‹\ÕÙ¼!›¤',_binary '¥¬)V¼\Ùõ˜ª”|E&\Ð\ï\æ_\ætrWŸTz\áA¶#','',0,'?'),(_binary 'Á’Ë©sÈ‹SŸ~\'Ye7\Ä','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-footer-block/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°\Òx\×BH+v1\Ð!$¼\Ú',_binary 'ò\æzŽ\ç\à{¡\Üñ\Æ\ì\\\Ðd\Ë\ß\Ãg=—\àwre†¡,','',0,'?'),(_binary 'Á›¢™2\Û\ÊS“x-\×û\Ü_\Ú','wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/stripe.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Pb;Ÿ[F¥]8xK\Ú',_binary '·»ñ\ÎGÉ¶‚/l\ÙO\È	T¢5@}4\Õâ¥™\ÍMIZ','',0,'?'),(_binary 'Áœ!\ç\ày\ÏF¼¿]\É\Æ\Ã','wp-admin/includes/class-wp-ajax-upgrader-skin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k!a‰.ñðš.urd',_binary '\ßùV~¤BN>›z\Ûøj\Í\Îÿç‚•\nps¦L·\âŒi ]2\È','',0,'?'),(_binary 'Áœ)t<H8\éÄ–ø\â)i}p','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×\Äó))¦3XK6\ß\Ña¹7½',_binary '¹‹\í\ìd~\Ñ6‰I·G)˜µ\ÈþT¯wø9ýbø+\ä­\ê','',0,'?'),(_binary 'Á þ¬\n ð\æ\æü„\Î(z','wp-includes/PHPMailer/Exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“ÿ\ÊuiD\Í7Ç…€C\0\ì,',_binary 'õ/ûb®^u,ŠÊ²`¥XJ±·x \Ó~\Íù\Z¤´C’†','',0,'?'),(_binary 'Á¢\"’®¾µf«ò)¦³Ÿ','wp-content/plugins/woocommerce/src/Admin/API/Customers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†$VL\Õ…^%¶ñ\æ\Ó%',_binary '^*^©=H/g€Ey\ì0\ÚzõK­T£OQ¤/]¼¶©¶VŠ','',0,'?'),(_binary 'Á¤2÷ Ž\ÈûS($³','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-image-left.svg',0,_binary 'hÑ¬Vk‚fø\Û\"¦÷\Ä5',_binary 'hÑ¬Vk‚fø\Û\"¦÷\Ä5',_binary '[\ã\íQqdÕ„–(Mtrû\ì\Û\Ò#÷q¹`Ý„WÜŠb','',0,'?'),(_binary 'Á¤M«»6VWO3]q~','wp-content/themes/flatsome/inc/structure/structure-portfolio.php',0,_binary '}\ïc\ä™\\\×@Z\Ï2ÿ¸K',_binary '}\ïc\ä™\\\×@Z\Ï2ÿ¸K',_binary 'x\ÞÂ§\è\æ}·_Ý‹^gt2\ÏÐ†—\Í)P','',0,'?'),(_binary 'Á²cE*Dû5 d\Ó\Ñ\nc¨','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-fee.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\È\â\Ä@\äƒq\ê\Ên1Xh’1',_binary '\äŠCP	ùœ\Z\ãX6¯Á\ã\ÆÛ†)s\îJô¦°\Æ','',0,'?'),(_binary 'ÁºKÐ¼\ÆTD¯t\Þ&tJ\ï','wp-content/plugins/woocommerce/src/Internal/Admin/WCAdminSharedSettings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' øªÆ„\Æ_¬˜1w=,¢Gx',_binary '¡P\ëˆ\Ñ\â^ü\'\ÊÈ¼s\Û(JùýIŽ\Ï	ÿe&h`P','',0,'?'),(_binary 'ÁÀkV\æ\çMŒ2{cS.¿\Ú','wp-content/themes/flatsome/template-parts/portfolio/archive-portfolio-title.php',0,_binary '¿úÞ‚˜©ú¨jUM§¥',_binary '¿úÞ‚˜©ú¨jUM§¥',_binary 'ý=bovð.\ìwy¬\ì6\í\\%)±YXt\Õ!Âšx°ô!]','',0,'?'),(_binary 'Á\ÈŽ³|;\Ø\n­7\Ë(\Ë','wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-gradients.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"=j…8“t3µµ\à¸<6ú\n',_binary '!Iñ¢_//ú\ÍgôF\Äb—À\í¬\ÅFe$„ð#\ÜL-(]™–','',0,'?'),(_binary 'Á\È_iÛ¢·°L:|R3\Û|','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/schema/constants.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¶À\Ù“w“{qE¬Gž…¹',_binary 'sJî‹³y\Ö\rm@-\Ý\×Sµ†B»\Î\Þi8hG\ÖQgp','',0,'?'),(_binary 'ÁÉŒ¨\Ï\Ó×Š)Lb4\Õm‘','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Property/KeyframeSelector.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›c}1\Z·ŒŽ1H\ïtò',_binary 'ƒŠIm”Dh8»\ën€Bv[É›A\éˆ:öŸ\ì#÷+“õ','',0,'?'),(_binary 'Á\ËH©÷\ÏE\Ö$—Á$','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/stock-indicator/save.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`?\èýÓ¥A~k\r÷¤',_binary 'û•P\ÝôRñ š3\Î\á\É=\ãr‘\ÂùSdù¨\ÛD\Õ\Ë','',0,'?'),(_binary 'Á\Ívý{\Z†ŒS\ÇzÿG6B','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-stock.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'RÔ©rt_Å±Øµm·e\äò–',_binary 't\åŸ\Ø\ÃýIfl¸r—\Â\Ü\Ôï„¬ÃªI¹þ¤}Ó£n¨','',0,'?'),(_binary 'ÁÙµ\nh¶\ÍJxµdv\ÏÔƒ]','wp-content/plugins/wordfence/lib/wf503.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\-\Þop\Ï`Os}B€',_binary '/\ï§];\ã%X_\çkz#Oûa\Î;Š\×ôH\ëßŸ','',0,'?'),(_binary 'Á\Ù\Ë*÷R\ê¥{‚’Z¹','wp-content/plugins/woocommerce-multilingual/inc/template-classes/multi-currency/class-wcml-custom-currency-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Šzt}Chýq\Î&Û¦˜b',_binary 'ü©BaS\Ø<@aD\\¥Q%Yð@·Œ:=¢w©®™\0\0','',0,'?'),(_binary 'Á\ãv·f„Ùh\à\èc^¬W','wp-content/themes/flatsome/inc/admin/customizer/img/header-top.svg',0,_binary 'Ag™’·5¶\Ù/f²*%µS',_binary 'Ag™’·5¶\Ù/f²*%µS',_binary 'kˆ™)HÉ¸\äy\Ó =2»’¢\Í\ÒrŽ\0û|\Ð\å\ê\ïyK','',0,'?'),(_binary 'Á\ãˆ\ç2{\Â\ïd”\Ñ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/order-summary/test/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«ñð9‘ÉœOkº‡Ç¢jr',_binary '\ê\îRü(^Züœ0\'š‚c\ëÿ\Êm“Ç©\Öúû1rŒm\Ý','',0,'?'),(_binary 'Á\ëöº\ágóVœ7Q®t¸ry','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-coupon.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹E¶4\Õ\ÚÊ»²1\ë•ør¹',_binary 'v\ânu\æÿf8<\ÞóÃ¿Ÿÿy\'›Yû›|Á#|J\"Œ³','',0,'?'),(_binary 'Á\îKwˆ\é\ï\åZ\ç\Ùxú','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/active-filters.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-C¤s9K\Î@“Ò•]',_binary 'S\0`\ì¼\ëL»ò‡³\ísd\ê„ü ;©\Ö\Õ\ÉÅ¦','',0,'?'),(_binary 'Á\ïõ^|J\ßÊ•\Z%¡Š\"b\è','wp-content/themes/twentytwentyone/assets/sass/05-blocks/legacy/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\Üiõÿ\à2*³JzÑ„L',_binary '¿~\nf)\î\ÜZ¼¤†‚\ëª?\"z\ÏI\Øþ\\ªNä¹–ù','',0,'?'),(_binary 'Áð $öT†Xü@#Ž„A¤\ç','wp-admin/js/widgets/text-widgets.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒH\ê\Î\Ò\äÖ¬\È–\â\ã„—',_binary 'hw±¦þ\Ê,\ÓDz\ã&\Ðt¨\é=#]$3žŒµb–','',0,'?'),(_binary 'ÁðÒ¯jÛ¿\ãtTaoÌª>€','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/label/test/__snapshots__/index.js.snap',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iÒ¸(ü÷Ó¨\äb¨qš\è\ç',_binary 'ô—–Ê³—¢š\íÙ´/U±\Å\ì†5\ÉGñC´ùö\Ó\ê\ÒKö','',0,'?'),(_binary 'Á÷\ëN\â“O\Æ\ÒTð)EH','wp-content/plugins/contact-form-7/languages/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YT&\Z˜o^GÔ¨£\Èô}',_binary 'Mž\ä\âºO\á¯(\ç\rO\Õv[±\ã/FB•A\Ã>ütCw','',0,'?'),(_binary 'ÁùÁ2zsñŽú4x\ÎEB','wp-includes/ID3/module.tag.id3v1.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_ü±\×óœ»t\Ê\Ò$E1',_binary '\'fB\ÅÐ‚+\ÑN|\Í[„Áö³\ìDx\\g—SLAsƒ\ì_','',0,'?'),(_binary 'Áù(„—#|Ø¡a©ˆ³;’','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/use-checkout-extension-data.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`†\ÑpDšC˜¨\Ý\Ù',_binary 'öÄ„a(„/”\èl<\Ïl¢*ý¡«1ªÕ¡8´$òjÁ','',0,'?'),(_binary '\ÂObc®³\" \Î\Ç\Û|J(','wp-includes/images/smilies/icon_evil.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ð^ôM>\Êz“\åø',_binary '¦\çQ|x>¿\Å\é@VÐ›_¸/€\"Ž\ÎWô™ó¯%S','',0,'?'),(_binary '\Â\r\ÇÁ°]@LGÛ´d dK','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/reviews-by-product.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\'i\éŠpuZNq\Û;\è9',_binary '0\Í, ’œŽZ¹È¶\íô[òA|bp)\ÙV›\Í,‹\ÆH¬!\É','',0,'?'),(_binary '\Â’¥µe­\î7”F\Ó%','wp-includes/blocks/post-title/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?(\"<\Ç\ÇÑ· \\~;\Ç',_binary '\Ç u7´/\Óoó#[\Ö\0…D\Èù¢\ä.\ìŠ\Èûdgš~','',0,'?'),(_binary '\ÂiJ´²¡z\ÑB«„®³','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/title/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÃÂ£\ÄA\Ð\Ðl\Û/^\Ñ\ÎD„`',_binary '¿\Ø3ƒu\Æ«\Ét´.Ú (ƒ÷\ßa¨ª+=ÿû\ã','',0,'?'),(_binary '\Â¸dŒ\ã¦|™±u¸u{´','wp-content/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories/Admin/SyncUI.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VzbC–u\Ï\"c ð\ßö',_binary '\Ï\ã\Û!ùÑ’ÀrZ\é¦í¥ƒù¦˜¼z÷s¯½ŽŒ5','',0,'?'),(_binary '\Â*Ÿl\Ò÷Áÿ¡{Ð¢\'','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z‰¿šrœ>U<z1x\Öe',_binary '\Ó2L¾Y›\È\ì\Ð6[þ½\ÜSŠ\âj\Í\è@KÂŠ#','',0,'?'),(_binary '\Â1\ëPsd1\ÈZ€\ÛJ\á\É','wp-content/themes/flatsome/inc/admin/customizer/img/category-no-sidebar.svg',0,_binary 'ù$ˆ\Å÷«Va\×õ÷Gò ',_binary 'ù$ˆ\Å÷«Va\×õ÷Gò ',_binary 'X>g”þ]d¿R¤I\Ü\Åþuó\æ“®$\ÇÓ‚x¶,\ä^¼','',0,'?'),(_binary '\Â1¨ŒWV(2Ÿ˜6²„³”','wp-admin/images/icons32.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÑÛ¬[\çm9…\çJ¡4\Ì\Z\ê',_binary 'D\ÌkCd‰\î—i|a|™¹\à\Ý\Ù+ò\ržx‡¯ÌŒ¼ñ«','',0,'?'),(_binary '\Â5«uŠuÈ¸­±8õP”Òº','wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-link.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ržü»{¤~\Ü>šÑ½',_binary '&‹ôyZ\Ã\Èe\ÉõÁnž‡_ö¤\Ø&\Ä\É\î‡0öA Á5','',0,'?'),(_binary '\Â6³¿MÍ“\Æ\è)Ì»','wp-includes/blocks/text-columns/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\à¨L\ä^…^\í\ÑJW¸z\Z',_binary '\â¢o[.7~Cm*\ã\Ô-ül‹\Õ=\çBPûø5-IL¯','',0,'?'),(_binary '\Â=©¼†}ÿLsQ\n`q&','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Cached.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[M/*ŽµE\æ<s\äW\ÜRG',_binary '\nðÁ\\‚¯XÎ°Ö¨P’°A\åÂ—\nXjð\'£;qý{¬‡a\Ö','',0,'?'),(_binary '\ÂO“tg˜\02‘\\‘BÀ”','wp-includes/assets/script-loader-packages.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ó\\ôqBßºw•‰\Õ	',_binary 'JŽ\'_Hc©OÅ‘¿\æ\ßº-rx³°dò°ñ7Ž¨','',0,'?'),(_binary '\ÂYm–Rôl«X\0ø†\Ù:','wp-content/plugins/wordfence/views/options/option-textarea.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°Ž„\æw\n£Mus•ô žµ\Ì',_binary 'O¾Š¯=~jc#ý6Ž¿Lçªœ\Ý\Ê\Ñ\ÄasòW\ÕOQ-','',0,'?'),(_binary '\Â]ìˆŠYT\Ã\ïXm°+%','wp-includes/js/dist/vendor/moment.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F´ok#ñ/\á\êËe',_binary '\Ô\ã\íñ\Ól¡G&\Ü–­°µ÷<öµU¶»[[\åm','',0,'?'),(_binary '\Âj\Õ\çU\ÃU\é‘X\Z\Ð\è/J/','wp-admin/includes/class-core-upgrader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd˜e\í¤“\Ñòps\åJ\Ù',_binary 'ðL?<ý#p®_\Ø\ã4i4˜Ã‰ö5òVŸ\Æ\Ìò\'','',0,'?'),(_binary '\ÂpQ¬\ÏAjú–lõD¥°0','wp-content/plugins/woocommerce/src/Admin/API/MarketingOverview.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=Ú¢þÕ›…k\0\åO{ŽÙ½ž',_binary 's\â%\ÏÖ¾¶\ë\Ïr\Z<z\Äy\ã\Ý\ä^F#ÉŒ:ó','',0,'?'),(_binary '\Âs2²c^Š|µº¼,\Ú\ê','wp-content/plugins/woocommerce/assets/css/photoswipe/photoswipe.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æ\\¼\äX\â2\Â\Ø\Çfþ«z',_binary 'ý—GuÀ¿sQqŠ¹\à\ÎÕ±«£¡‚\Çr…a¤^\æY©i','',0,'?'),(_binary '\ÂÙ‡—\n7^	˜\áø£\Ô','wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_DateTime.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\ÒF\Ç\å\Ü*\æ\Ñ\Éc­–œ',_binary '\Æ\ËÀ]\"\ÚD.Š\×ó\Ú|e¢Aù¹>M‰|$\è¥\nT­','',0,'?'),(_binary 'ÂŠ\êgØ²h/á¸®™O²N','wp-includes/class-wp-block-type.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\'\nE\Îa„\Ó\Ç>\ä|',_binary 'sŸ\Úl\ã[*h¿SVi×²X\Òü¬’¾ŒT@ÿm*I’)\Ýh','',0,'?'),(_binary 'Âþ÷ÀˆžÄ¡!±ú¦‘\Z','wp-includes/blocks/categories/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<­ö•¹}WIs§•C“',_binary '«‰rûJÿ‹˜y\à‚`©«<D\Í\àšZ¹­I³\ÃRH\ï=','',0,'?'),(_binary 'Â˜\ÑV×¢ITTfP\à~\â%C','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/footer-item/test/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±q%»\ã•o°h°öI‰L°',_binary 'ò\Ï\æf\Z/H‹‹… Ú¼\'‡«D\à››;_²vX®\Ï\êð','',0,'?'),(_binary 'Â³Ý½ü\Ñ­s\Ü4\Òò™E','wp-content/plugins/nextend-facebook-connect/providers/google/admin/buttons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b^o\Å`AM ˜•>',_binary '\\x\0‰@œIô°¹U\Ü}ô“¸\è4\âZ|\0D©PgJ52\æ','',0,'?'),(_binary 'Â´­\ß9¦1y~\î\ÒG\Ä','wp-content/themes/flatsome/woocommerce/loop/result-count.php',0,_binary 'ªjPD‚Z\Ö\Ó\È;ª`ð\Â',_binary 'ªjPD‚Z\Ö\Ó\È;ª`ð\Â',_binary '\Î\äP–1tò^t»I`…Gv¶‚„\0A\n\Z\à’s”X*„u','',0,'?'),(_binary 'Â¶¬¨:qi!;¤—\ä:Š','wp-content/themes/flatsome/woocommerce/single-product/layouts/product-left-sidebar.php',0,_binary '¾Ü”¦¾\Þw#~T¨C\ì\ãñ',_binary '¾Ü”¦¾\Þw#~T¨C\ì\ãñ',_binary '¥~›_Ë¤OþX\Ä~‘M¢©¶±·Hø‡{®Ý­','',0,'?'),(_binary 'Â·º\ält‹\ÍúŽ]:L','wp-content/themes/flatsome/inc/integrations/wp-rocket/flatsome-wp-rocket.js',0,_binary '\ÄûB¢—¶\î\Õa:(q¼83',_binary '\ÄûB¢—¶\î\Õa:(q¼83',_binary '4õi· iiP±a/\çJ‡‘*\ï+	HÕ¯ý(S\âò','',0,'?'),(_binary 'Â¿A\ÔÁ oõµBR¡','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/acfml/icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÖU-7ž\Ø\ß\r?f¼\Î',_binary '‹e–F¤6¢‡¾\\\ÎCT6D\Æ`¶!†oˆ-8\Å/\ï','',0,'?'),(_binary '\ÂÀ1Œ’Á|¸}š”\âdQ','wp-admin/export.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ga\ä\ß\émªUKPg\n',_binary '1Œ<Ë–\àò[þ-þ,Y\á#P\íKÙ˜\ÚÓ‘	»Œ','',0,'?'),(_binary '\Â\Ð<\Û×µ5\É\ë^3X]ƒ<S','wp-content/themes/flatsome/inc/admin/customizer/img/category-box-push.svg',0,_binary '¼\Ç\Ñu?‚½y7e¼­\\\Í',_binary '¼\Ç\Ñu?‚½y7e¼­\\\Í',_binary '\Ï5\Í\á§\ì»y_À\Þ\á!*n’À+É”{~Zû3\Ñi&¯','',0,'?'),(_binary '\Â\Û\Çg›ðHe\ÊCdW\Ó','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/title/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R¿p…±\Å\ç\'\Ü+\î/',_binary '\×}\×\ã\Ø\á¨K\Þ	ýt J5§\ìÜ½\Ô§ñ_E]R','',0,'?'),(_binary '\Â\Û\Î!Bj‘RS¿Kü3Iˆ','wp-content/plugins/woocommerce/assets/css/twenty-nineteen-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\àk!˜è ¨Á\'\Þ\Â@m',_binary 'z\n»]\\d\Ü\ái\Ë\\\0Ë–KPgóV\Ý$y±\Þ\ç6MN&','',0,'?'),(_binary '\Â\ç[5uð®\Æ/—\Ò\Å\ÃW','wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-cart.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡±KW«‚\n\åX®›1˜',_binary 'õ!\ÌnE t“E\ÂKj²Q…s#Š \È$ «\èFJ7À+\Ñ\ë','',0,'?'),(_binary '\Â\ïö\r\îf\Þó\Â\r_[è³&','wp-content/plugins/woocommerce/src/Internal/DependencyManagement/ExtendedContainer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Tú\ËYUgÑœ”V4p\ä\Åo',_binary '=FIŠ+tŽg\Þ\Â\ÛŠp\n\Õò\0”NObšˆu\çp','',0,'?'),(_binary '\Âý	1ªõÐã€…S:(','wp-includes/js/thickbox/loadingAnimation.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Î\"h\r\Òc\Íôÿ\Âö&º',_binary 'BÿFú\åœ`¼F-›\Ël®Ú›±RT6\Ï\éº\åüþÕ…ý\Û','',0,'?'),(_binary '\Ã\rµW$2lv9{Ü­:„\Ù','wp-includes/blocks/post-title/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†˜4‚Ìˆ~\á3\ÊvtSQ\'',_binary '\Ûg¯e«\à–Tø½»\Ô\'i\\š’i¤\Õ=>;€QBH\'D¼…','',0,'?'),(_binary '\Ãw:k@DižWQ¾','wp-content/plugins/wordfence/lib/wfModuleController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿·oIñÆ·k†ùb',_binary '7.Ý°Ì¿•ò™\ÜU¶„\ÔL>\Ö\"\ÍTM5±]¿\Ú>†','',0,'?'),(_binary '\Ã_WS‘¯\ë\ÆÞ²\Î$','wp-includes/js/dist/edit-site.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '×¼.ü¦û%¥T“¶8Á±<',_binary '¾\Ò\ÔB _-h‹w<½*–bowJƒ]˜º9\Í$°Û¨','',0,'?'),(_binary '\Ãð´t€±[À\Ësó¨','wp-content/plugins/woocommerce/lib/packages/League/Container/Inflector/InflectorAggregate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|·¾¢\é¹$Hy\Ð\ç¢\"ž',_binary '§Á\Û8IÞ¿ô\ËŠHú0–Qñ1‰:\Å\r*i®Pò\ë','',0,'?'),(_binary '\Ã$\ê»\0-Zx^)¨\ËyK•ö','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Property/Import.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vBzƒId`VUžý?Ëºt',_binary 'bwe\ÇB,\\¶e\Øhöxñ!K§´¼2]’¢‚ù','',0,'?'),(_binary '\Ã*ô•¥¥Ñ”Ûž›dröB','wp-content/themes/flatsome/woocommerce/single-product/layouts/product-gallery-wide.php',0,_binary '\Å\É~yò«Q\Èóð¶^‰wÀ',_binary '\Å\É~yò«Q\Èóð¶^‰wÀ',_binary '\ÊUDtSŒ§]®$\n«\ì‚IxS0\ËE`ñ','',0,'?'),(_binary '\Ã,6NR’ù©\"(²Ý±Q','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/item/stories/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™\äE&g~ù\nÀ—v€W\n.',_binary '\ÐQ½­üE\Ö}—H\äÍ;–F\Û10üj:z','',0,'?'),(_binary '\Ã/ô@Š\0K·5V¯\nñq\Ê','wp-content/plugins/contact-form-7/modules/constant-contact/constant-contact.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')HM—$\Þ6G“¤¶¦&Î¥˜',_binary '­`—  \à\ï\Ë\Îú˜\î\\˜¾\Þ\Ü\\(ø\ç\Ú÷\Ña','',0,'?'),(_binary '\Ã=\Ï.³@\Ö: 8$%o','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/ProcessWireInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¶8õ/¿*<¤ŠZm°°XŒR',_binary 'KýŠ,\ÛU‚\ç\\y$\Í\ê\á\î\Ã&\Ð4ü:ö£ƒ\ÓÄ†ð','',0,'?'),(_binary '\ÃE…Še\ä\"^¸úzT\î‰\Ç','wp-content/plugins/contact-form-7/modules/quiz.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Æów\0oV\ØiD¤t\Þ]\Ña\ë',_binary 'ß»r\"ý6<“ž¶kM¢þŽ˜P¼\ÛAö\ë„\á\Â(jw0\Æ','',0,'?'),(_binary '\ÃHŸ.\Ñ	ø¤u9%\é˜	±ó','wp-content/plugins/woocommerce/legacy/css/menu.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\ëÁª\Ø\ÜP]\ÆÏ¯z',_binary 'tŽKt\rÇ«b ˆj¦šz½}žkº|f\Ý\Ã\Ð\Äch\ï\Ì','',0,'?'),(_binary '\ÃRv\è¹	\×(Z¢©\ØN°\íð','wp-content/themes/flatsome/inc/admin/options/portfolio/options-portfolio.php',0,_binary '\ç<\çÖ¬[¡¸\îœöw¥',_binary '\ç<\çÖ¬[¡¸\îœöw¥',_binary '¸ZR`GlùŽ]‡ý$ËŠ»÷Æ·€e\Û\ÃhWõ@,ð','',0,'?'),(_binary '\ÃS¾¤^\Õ}d\ró}.','wp-content/plugins/yith-woocommerce-compare/assets/images/01-bg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tV‰À{µ~q€|¹Kœ\Ö',_binary 'üš\âñ w]=\ãûk\Z_Ù¿qu\ë\ÌpýKB\çl','',0,'?'),(_binary '\ÃT¬µ\Ç!Ø©7l°\É<','wp-includes/js/codemirror/htmlhint-kses.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\îýò[®¶k[ó#cLf{',_binary 'N\à©&\ÜV\Z…A«\Ó/\Å\ÙR#~Õ¢¸\á\×_J*\â—Ð‡','',0,'?'),(_binary '\Ã_´—§jSX\à2\ÎQQ=','wp-includes/ms-load.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\â),lþ\"µ¦?’V\Ô?%',_binary '½™ž#~¿\Øñ–¦&‹S@\Ñö]…ED}L*÷#5+\rÀ','',0,'?'),(_binary '\Ã_•þù¶O‘h#\Â—ºÇ«','wp-content/plugins/woocommerce/templates/single-product/add-to-cart/simple.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z6\ÌG»”LG\'\ë¬Ò‚¯',_binary '™´s±3\ïõ\n\é\ä`¹ä‘‰U«`\Ærô^\ê\'²€P','',0,'?'),(_binary '\Ã`~|D%EH´wOº¤ƒ\è','wp-includes/sodium_compat/src/File.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œ‚\æ¬\Û\ÏÇ¬þ°ú ÷\â',_binary '¼7.{ü›=ƒ5›A³~\Ù\r~.A(0Z§‚Q\Â2¸','',0,'?'),(_binary '\Ã}Jo%²†?—•AÞ¡Y','wp-content/plugins/nextend-facebook-connect/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Iq\äÈ\á\á°zš:X„',_binary '\Þ.E²„ùL.A\Þ3\Ô\Å\é&?rq¿E3\"kþc\Ç&80','',0,'?'),(_binary '\Ã~—™“{WgbM+FŽ\Ç\0','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/types.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œcòÔ–S ,1¾\Æ‘)`ú',_binary '‰»š˜„¬S3\É:E8%IV\ämRª‚Î“\Å\rJ\'<','',0,'?'),(_binary '\Ãÿõf\å\Ý\Õ+Z\à\â©','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-layered-nav.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rñbQ\è[ô\Ý]m_–û',_binary '³\\·J ‰ŒHØ¬¯#\È(¤>msñ=K\Ë\Î\ÉF\r®Š','',0,'?'),(_binary 'Ã‚uJõM\í/€ w·y','wp-includes/sodium_compat/lib/php72compat_const.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ðp{\á\î¡[•´Ë”·	',_binary 'À9\çoóøš\á\êG’f\ÈpmeGó#`­:Qü{`¶','',0,'?'),(_binary 'Ã‰ñ$]<ž\ÕR-#	9c\É','wp-content/plugins/woocommerce/src/Admin/Overrides/Order.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Oóñ?\ïP›\ÒÃ¬›8\Â<Úº',_binary 'S~\ì\ìqq\äô\Û\îô?¤D‹T“\á°Om\å\Í\×8<L½zQ','',0,'?'),(_binary 'Ã£\Ø#r¹¥Šõ#Nr8²z','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/colorbox/border2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®þ7Ä¡\îP’“i%\Ò',_binary '–µ#º˜DA%\Ñ#vJ\Ë\É\ã“(?\í\îðT ­s0m+','',0,'?'),(_binary 'Ã¤û€]0¦`\Ðù\ÝAS:D','wp-includes/js/dist/blob.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ®€\ÚJÀ‘º|M£†h',_binary '‘çƒƒ6&\Ölåœ‚K\ß\rº1\ì\ê«\"\Ñ\ëxöÈ•f,','',0,'?'),(_binary 'Ã¨q^”¿²@¤4š¥Y','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/lazy-load-script.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°›G_\ïÚ®c’4¢\á]T',_binary 'g\àqK-LTÿ¥X‚sõ€m†\ËEF€\æK\Í’m','',0,'?'),(_binary 'ÃªC-ûZ›¯¬$L6¸ªT','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R#tX\îÉƒtÀ}7FI7',_binary '1ø…xk_,•_{‹pÂ›µ\Ð\'½³-ŽZÊ»','',0,'?'),(_binary 'Ã½£ÁP„²7&Ý£`\ã)','wp-includes/sodium_compat/autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Î¥\ZBab…_Æº\ã01Q',_binary '\n£¯”¼è­‚:|‚\Ë\çD\êgŒ¶²÷²DU\×\r\Ø÷=','',0,'?'),(_binary '\Ã\Ë}œ1C‰ƒ\rujxiW','wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/bacs.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?$GÔ„L`¬xM\Äú¿',_binary 'ÿŠ?\Ú\Z\é\ì˜\\ô£b§l\Ì85ôƒ\ßj¡KA\Õ×´£^','',0,'?'),(_binary '\Ã\ÍtnRŸØ”À\á¯\Î\Æ%^','wp-admin/images/align-right.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\Øó\â‡Oe#\Ól@:P+\"v',_binary 'ò‘üÉ³üö‘Cºº?ò=ÿò\è&¡°UyZ©31’¥!<c','',0,'?'),(_binary '\Ã\Õ\Å5\ÛV\"ó°$$\î_ý','wp-admin/includes/post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w– #]f°N…C\É\0šˆ',_binary 'Ã…ómú®</ŽB\Ûó7è…©Ð¯‡§\Ûw\Ð)Ym©3','',0,'?'),(_binary '\Ã\Ù4\Ìl!„rÁ\êØ„\Ã\ß\Ó','wp-includes/class-wp-block-type-registry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ùý\æ\ÈP0„XÁ¹o\Î\\[¸',_binary 'Œ	OmR#þ\Ù\Ð\Í%$—6\nLlt\Íe\Û#cRi–E(U','',0,'?'),(_binary '\Ã\Ýe¤…fzž±\ÂeoxŸ\ä¨','wp-content/themes/twentytwentyone/package-lock.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñ:\ÐP™\Z­õUw‹Žu\ä',_binary 'K3\áµ\Zœ{õp+\\\×Vj\Zkr\É\09÷lÃˆ\\\æ!','',0,'?'),(_binary '\Ã\áiY–†…\0\nR)–„','wp-includes/post-thumbnail-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v‡1~5S8ü]\êºñ¯4',_binary '_…L×¤‘ÿ,ü\æÎšn¢¦\Ö +³ŽñE‡’À','',0,'?'),(_binary '\Ã\åuÿX\ÛÝ¼#‚-\Æ\Âøª','wp-includes/class-wp-http-ixr-client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Á2k\Ã\î\äE}aö«º',_binary 'p ´ý¿.N¤ @\ÛÔ–*¤g\Èü–€Ã¯\áK>:\åŒ','',0,'?'),(_binary '\Ã\æøE ‘[~­\äK‹','wp-content/plugins/woocommerce-currency-switcher/css/images/ui-bg_glass_65_ffffff_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å¨ó.(ý\\\'¿\í3È¨¹µ',_binary 'olœh®€¶i6›#\ÑK@J¬³´Û)G\Ë\0JÏ›7','',0,'?'),(_binary '\ÃñsÄ¨\ZÂ‘ \Õò¼‹ü','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-core/icon-128x128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S>6ž\ëü1+15\Íbò',_binary '§D\r³Coo·‡²„4m\0c·7¨ø“t5 `m‚s}þ','',0,'?'),(_binary '\ÃóBe\ÐÓ£…™LDýªL','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/cart-line-items-table/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡™6J<P½˜^Fw\'f¢yó',_binary '\ÏÔŽ±ªŸ\ãxVf\ÈÇ¦˜ññz$!\ÛiC5\å°\Ý','',0,'?'),(_binary '\Ãõ>m¼\èÿU•\0Ž¬','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/grid.svg',0,_binary '=qrõÄ›¯¸¼˜˜SHs',_binary '=qrõÄ›¯¸¼˜˜SHs',_binary 'aj\\\ÑeT\ÄzY³\ãYùœT\Óve\ÔX¨…\èTxŠ1„','',0,'?'),(_binary '\Ãø8ŒT€m€£WtQ|º!','wp-content/plugins/woocommerce-multilingual/classes/Options/WPML.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\0w\ìö\Î/^‚ò\n4n',_binary '–£™JaØ´“Möü_P\ÝœÏ’¸K«-(\Í¥Lˆ','',0,'?'),(_binary '\Ãøò¬y§o®Š\Ï¦¶$1\ê','wp-content/themes/flatsome/assets/img/payment-icons/icon-bancontact.svg.php',0,_binary '«S\ß\ì‰\æ\î\Zœ2XEø/',_binary '«S\ß\ì‰\æ\î\Zœ2XEø/',_binary 'ðÀ>‚?¼EÏŒYeŽ\Ë\á\Ø{ú¹%ö\"¸j\01• ','',0,'?'),(_binary '\ÃûŸ\é\0¤Ž\Û¨Y\×\ê(u','wp-content/plugins/woocommerce/includes/queue/class-wc-action-queue.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹h\×Ê¹\È+KüwA¹\í',_binary 'vb\ËFøcUv•ƒ‡1r{Î¤ê“™O™¢Ž2','',0,'?'),(_binary '\ÃýóqR”®\'\íÁ.SVŒ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Registry/FactoryType.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ä€\'Œ\ä\ê }\è“L\ZÊŽ',_binary '\êÍ¶„º\æ\âw5÷\'\å\Â¨ôõñz\ézcr‹\Æ\ád3j\Ã','',0,'?'),(_binary '\Ä\0U\Î\Æ\Í\ËöaS­\Ì','wp-includes/widgets/class-wp-widget-block.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k¸óùmˆzb\Z,ž_Oóú',_binary 'ŸKË½\r\ÍnR\ë\ì\ËWD›ˆ4¾@À;\Ö3NAª‡.','',0,'?'),(_binary '\Ä\0t½\ÇYVª]WV\Z{VF\Z','wp-content/themes/flatsome/inc/shortcodes/product_flip.php',0,_binary '!4ö2\Åü\ä§\Ð`!\Ïâ·…',_binary '!4ö2\Åü\ä§\Ð`!\Ïâ·…',_binary '%$v$i\×NQ‹” Šv\ÄIkm\èPù÷ˆ0Õ«Oý','',0,'?'),(_binary '\Äcá˜£¼r\ä¿\Íw¹\ã¨','wp-includes/blocks/file/view.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C´oFG­\Ý\Å\Ö\årŽE',_binary 'µ\åaCÍŒ/A#\Ì7:¬\èe\0z09‹›·\à¾g\æ’ûŽ','',0,'?'),(_binary '\Ä™•)†\×6°\Ó™q´','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/shipping/shipping-rate-selector.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹‡–f¥Ò±Y„«§e\Ê\n\Ë',_binary '\ÚFý¡™\×%…?¾\ÒÎ²S?ˆN»W84fVÄ¶Ÿø‡aSBš','',0,'?'),(_binary '\Äl\Æ\á\ág\Ù\âj\Î]M4','wp-content/plugins/woocommerce/src/Internal/Admin/WcPayWelcomePage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\áÀ\ï–²Ik–jú\ß\'',_binary '—wr‰9!+h\íª=sÊ”ÇŒlj/9uBPh-f\î¥(','',0,'?'),(_binary '\Ä8»d$\çnx‰¥™yÅš','wp-includes/blocks/navigation-submenu/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ìn½C ow\ïZþq£\ã\æ\Ä',_binary '\ï¥ñ¶8\Ëm¤›”‚\Ö7ó}›\ìt\Ãy‘J\îœú\ë\Ól','',0,'?'),(_binary '\Ä6ð\ékci\ÄOM','wp-content/plugins/woocommerce/assets/js/frontend/add-payment-method.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ižG`yP	K\0µ§°…d',_binary '\ÌÙ®Š)“\Ìm9@-7Â\ÉtE(+Í¨\Û\ã\æV£f\Ü\ß\ÃÐ­','',0,'?'),(_binary '\Ä\æ5Ä¨)\Ì0\Þ\ÆX‡\'\Ï','wp-admin/widgets-form-blocks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uMœXBÕ¹.\Z°ÿ£ý\è\ËJ',_binary '\åZ?¥’\Z\Æcx{þgØ§@\Î\ÂK\rF½\Ì)\ëzKÃŸ','',0,'?'),(_binary '\Äˆ³T\Í?\æ\ïro\Þ','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-source.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Å²\0j\0V™\Üüƒ\æl\×]¢',_binary '\Zž]EÀ\Za\ÐlKÈŒ§€I[\ä{FŠ.«G\Ä$\æž>ý','',0,'?'),(_binary '\Ä&)ý”ƒ\ÛN~&ü€\Ë\Ð','wp-content/themes/twentytwentyone/screenshot.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*§»\ÖñÙ‘^R\×	',_binary '\Z\Æ\â†u\Æ@\'\\\á®KL·82¦BÀr‚\Z2HC\Òo','',0,'?'),(_binary '\Ä&ð\"D\æ\'/ù}\Ü0N–','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Exceptions/InvalidStockLevelsInCartException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æðÆ’™\r~v\ãu°‹uº$',_binary 'ƒ>´šb \Ï\Ù?\êû´*\Û\Æ\â‚\ìh¯’fŠÁxÀ','',0,'?'),(_binary '\ÄF\æ©3ö O»l0F\\yñ','wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-coupons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' œº\Ô+tSÁ¡ÿ\ÓC%i',_binary 'emy…¨l/ó\02—k\0\æ\Ä\Ù\Ùh–¸r\í¥ -´\ç','',0,'?'),(_binary '\ÄJhz\íœU„\Ò!\Ô¬½','wp-content/plugins/woocommerce/src/Internal/RestockRefundedItemsAdjuster.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|”Ÿ¥­\æ½w\æežPC ˜',_binary 'OK_3\àˆI¬\å\ËÛ¬Ev³(ŒŒ•±‰\Ôlõ\ïi+\Õ','',0,'?'),(_binary '\ÄL9Ô”L\êMU\Â)ªM\Ù','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/jquery-ui.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿$i™¼&e\ïnMt‡§',_binary 'ô\ïpË™\á1€tp…’\çaXEðl×˜L—XÐ´¬Œ(Ø†\ß','',0,'?'),(_binary '\ÄQ8$\Ä\ÆùY&/9‘\Óv','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/yith-icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ô›´–K\Ím>¸\"½Á–„',_binary '\à-·\é3Lµ\ÑM\È\n\å\è\ïœrÏŽ	öò÷lõý2™}','',0,'?'),(_binary '\ÄS´w\ËO{öƒ|\ì-\ËZo^','wp-content/themes/flatsome/woocommerce/loop/pagination.php',0,_binary '1‡À(¨+c\Årh]\ê®',_binary '1‡À(¨+c\Årh]\ê®',_binary '¨jb\"´#qQ\n‡^\ÏXKHBüð\"™\ï¸\Ú8L\É\ây\ÏH¶','',0,'?'),(_binary '\Ä[\Û\Ä\Ù\ÛÌ¹\æ¢Z\Õ\×K\Òù','wp-content/themes/flatsome/inc/shortcodes/sections.php',0,_binary '{­©¡e§\î‡…+',_binary '{­©¡e§\î‡…+',_binary '\'4Iƒ\Ð›\ßt‹‰X[5³•,9wc}\Ç1m;n+¿F˜','',0,'?'),(_binary '\Ä`\ï,}£\×D\ç\Ø@','wp-includes/class-wp-recovery-mode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \ëoxÑ†\Ò\Ó<N¤»',_binary '·4>³ü \r”	jŸ¨ªºsdqm´H»l\ß7¼~\ä\î','',0,'?'),(_binary '\ÄpÈ¬\é“ES÷÷•ù0²K','wp-includes/blocks/search/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—\ä\Ð4\êm¾ŠI‚\ä\Ñ	gž',_binary '>y7\Ô\rŸ\ßöi †÷…¢\rEu\Ñ!J ÁœR\Ûö','',0,'?'),(_binary '\Äq¡U°d-\âùE7ª;\ê¡','wp-content/plugins/woocommerce/includes/class-wc-background-emailer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J‹­G| ¶¿*ŸVõU\"ù',_binary 'ö‰3ªJ\àúI—t3Î¢{X±|\r*»eY“60–W›ˆ','',0,'?'),(_binary '\ÄvûV/W\Î\Ï{}!^\ÏN','wp-includes/blocks/html/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·Z•?ƒ9M}m\Ù%\ÄTƒ„',_binary 'ŸN’÷\Ê\Û]F©\ä3p’<6ö½ð@w\ë%<};\Ð','',0,'?'),(_binary 'Äˆ^Aõš+l†®¬oød‰\Ò','wp-includes/js/tinymce/skins/wordpress/images/audio.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7~!\æ\ß\à\0Ž÷\Æ\Ôý\"w',_binary '\çg\Ö\Âz\Â\Ù\Ï.g‰Vû:«ƒ[‘¥\Ì\ÓÐ™¡H)Èž\ì','',0,'?'),(_binary 'Ä‰HÓ¢Ka\ä÷\è^(@¾f','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-accommodation-bookings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XD§F5 i8´\à¹kº¯÷',_binary '—(*isJnN\ïŽi¸\Ýù+ö‡—Œ²Wd5^;Á\ÖT','',0,'?'),(_binary 'Ä”Ô¼ü\Ý\ÕpPˆZ	H´','wp-includes/images/smilies/icon_cry.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+`Å®dW]ö¤\Õ\Ëð—h',_binary '[º<q\Åwf¥)™rZû(\ç¯\Ó=#;ans\Ê\Ô\Õw9','',0,'?'),(_binary 'Ä›\Åwú²+\ë¶qAZ','wp-includes/blocks/group/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'¬O\Ã:FY€£\Â8i»',_binary 'þ6	\ÓašA\Äƒ…uI/)•\Û-3‚\ËÁƒb†\æ\Øß','',0,'?'),(_binary 'Äœõ®õˆÇ”{3§\ê{Sû','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yith-debug.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e§E«‚}q\áRòy ¤t\è',_binary '÷U^±@\"T:s\çÿý^\r5GÁ>c¢J·`±\Þ\Þ$G','',0,'?'),(_binary 'Ä \r\ÈyÆ®ñ\âRñ‘t','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-woo-var-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\çÉšhÕ™4p“ˆ—‘J\Ý',_binary '¤YfUº7k\ëµ\æŸD¯´\Ïö3J¥O\ÔN	‹*\é¯','',0,'?'),(_binary 'Ä¦¨¦SNL†h`\ë\Å\Õ','wp-content/themes/twentytwentyone/assets/sass/05-blocks/navigation/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ)5›E\ì\Ð\æ¶27\Ùâ²±',_binary '9Z\âJn\ç¼l+;\ÎCG;	\Î+²0s³þ‚f\è8\ï','',0,'?'),(_binary 'Ä³Jõ\n`|\Æ5,HTõ»','wp-admin/includes/admin-filters.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Æ¸JŸÒõôF0¹ú¤ü\Øù',_binary 'œ¸\r&\Å+ï›µ;øU(“x³\àw\ç}\ÎJ\í-\ïU›‰»','',0,'?'),(_binary 'Ä¶‡Æ––oŠ\çÃ¨f{U','wp-includes/js/jquery/ui/effect-highlight.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\'ˆOWk\æ@y©/¬¥',_binary 'KKYÆ•*$Eb\"\âøJföž\ÜsR>\Ñq4®¦g)—[','',0,'?'),(_binary 'Ä·S`™d/~	\Ú}ö1]71','wp-content/plugins/woocommerce/legacy/js/admin/meta-boxes-coupon.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹E¶4\Õ\ÚÊ»²1\ë•ør¹',_binary 'v\ânu\æÿf8<\ÞóÃ¿Ÿÿy\'›Yû›|Á#|J\"Œ³','',0,'?'),(_binary 'Ä¹\ê]ð(mW\ëpñ\Ða)','wp-content/plugins/ti-woocommerce-wishlist/admin/settings/integrations.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{ö\é2›¯(°ý\Ùy\î',_binary '\ìv>\'¼2<].P`\Ôg\Øe 2\ãD—D\ßg–eý','',0,'?'),(_binary 'Ä¿+]\0Cò	Qò–\Ã\\]{','wp-content/plugins/yith-woocommerce-wishlist/assets/images/facebook.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´\ã@,ŽG»\ÃY\ÃÔªÁ@g',_binary '\\\ímz×‹¿k!ð\Îc\Ìnü(üq>‰˜`%!KÿÇƒ','',0,'?'),(_binary '\Ä\Ã°ùÎ¯ó<Y«JZû(u','wp-content/themes/flatsome/template-parts/posts/archive.php',0,_binary '\Õ:@¶\Ê\Ô1\îIm',_binary '\Õ:@¶\Ê\Ô1\îIm',_binary 'óX\"g)Œó“©\å\ê\á2\Ô8ÄŽ \í#$Xô\Èd\Ï\Ð','',0,'?'),(_binary '\Ä\Æ*©šHœÒª¡É²|ñ','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/AglInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\í\àCcŒ=W*\Îò±‹Dg',_binary '3\Ó(üW¶«\ê~;M\Ñ<\Ìd\Ë\Ñƒz4£\Ó„\Þó\Ë\Ã\Íþ','',0,'?'),(_binary '\Ä\É\r§RÐ¨\Û<×´U;\"','wp-content/plugins/contact-form-7/admin/css/styles.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0ƒñ¼œ­\ÓBhµÀ#8Y',_binary 'S,žº\íèª£G³À£.\Ã,?\ã¿\å\Ìf%UVVoe','',0,'?'),(_binary '\Ä\Îð5ƒ¥Y\Ä/nˆ	n(','wp-content/plugins/woocommerce/assets/css/twenty-twenty-one-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z!Š‚LG`eE³Ÿ«6ý',_binary '\âP3·<”‰\ì>\ÅPn\ìS,q`)IE¯\àC\Äß õ´²\Î','',0,'?'),(_binary '\Ä\Ïe‚ýN-\Ï\Ý@1\Z£\Ë','wp-includes/blocks/legacy-widget/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'úx\év¼^E\ËøE\ÚA',_binary 'þ}2—\èk\0µ“¦hð«­dz!uª´5\í\ÒÞ­gdŸcŸ','',0,'?'),(_binary '\ÄÑºÉ©•‚uy\â\Ò\ï\Û}','wp-includes/sodium_compat/src/Core/Salsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®¹£b5lJ\å#ûšõv',_binary 'c=0\ïŒ-#Ž-T\äS\ÅX†&ž´4¡\ä\ï\0\ÈK8\r','',0,'?'),(_binary '\ÄÝ—Æ±A\áN\ÇL÷\æ°','wp-content/plugins/woocommerce-currency-switcher/img/admin_preloader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\Â0D¼½¼@¢\Æ\ìB€–',_binary 'Ú…O\îðg\è¦cd’‹Ø—…EI\î\Æ,ôj^I\ÃØ‹c','',0,'?'),(_binary '\Ä\àÊ™\0}ô\ßç” K›ö.ÿ','wp-includes/js/jquery/jquery.color.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rq\Ó*X˜gqŸO£(Íˆ',_binary '©xš2³ý<\à\Í\Êÿk\éö•QÝ¯«\ä\ç\ï\í{\Ê\Ð','',0,'?'),(_binary '\Äñœ\ÅÐ„j[ö\'P€`Áy','wp-includes/css/dist/block-editor/default-editor-styles-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ëó‹7§ä†œ¡~hñ“?¦¼',_binary 'ö|Ç„\ì\Z°þDª~¿X“\ê\ÄE\àž– \Û)>Œõ2ô,','',0,'?'),(_binary '\Å¬\Ù7AEs\ÔD¢º‚vUP','wp-content/themes/flatsome/inc/extensions/flatsome-shortcode-insert/tinymce.php',0,_binary 'âª\Z˜O\rðL‘0™ ²’',_binary 'âª\Z˜O\rðL‘0™ ²’',_binary 'dµ\êXIðk„»ô\âÆªÜ”\Ä»s³â›œ.ª\Ñ*\Å[)','',0,'?'),(_binary '\Åª{A¸\êmmù\ß*K','wp-includes/nav-menu-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'JI1E%gä…\í?\Æ&ƒ',_binary 'AS%¦Â³\Ð[„|ZJfŒRH3#BlöK\Óÿ\ÙzH','',0,'?'),(_binary '\ÅM1¹ªi[˜—k\'6r','wp-content/themes/flatsome/inc/builder/shortcodes/commons/border.php',0,_binary 'òòm‰WCVf‚µ¢',_binary 'òòm‰WCVf‚µ¢',_binary 'öYe’k8†„yq¶”P@\ïÀ\ä†øCV\í™;‰\\>X\ä','',0,'?'),(_binary '\Åñ8#‰F¹/æ‡y','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/button-circle.svg',0,_binary 'û=Ÿ\Õñ«.ý¿–ª[ü¦',_binary 'û=Ÿ\Õñ«.ý¿–ª[ü¦',_binary '/\ìÎºC+t\Ì÷@8>ñ‰Eþ{%÷Gñ\r›õ2\Ú\'K','',0,'?'),(_binary '\Å 2.†hNM±le)§Af-','wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/core/domhelper.js',0,_binary 'W\â–/+6\r¥¦\ærø†',_binary 'W\â–/+6\r¥¦\ærø†',_binary '³Ã…	„74\Ý\ßbƒš\É9.®\Z;,˜ëƒ‡\'M)¨¯û\â','',0,'?'),(_binary '\Å2*\åüÁu–\n‰I\Ü','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/woo_rating.svg',0,_binary '\åu/a³ee\ïgÌ¯»¹',_binary '\åu/a³ee\ïgÌ¯»¹',_binary '‚oF›¶Î§‰œkšó‡\Õý\Æaªú}\â‰M\Üõ2>õö\Õ','',0,'?'),(_binary '\Å2L=E/³Ò¬|Z\Ñ@r\ØW','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/EmailNotification.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ê\Ö\ßøO\n92Gý}m¹\è÷',_binary '\è\ëx\ç0´?X‰t\Î\ê1²ô/¬\0Exsx·e+^.','',0,'?'),(_binary '\Å3¥‹öñëº¼D\Ó:§*','wp-content/themes/flatsome/inc/admin/customizer/img/nav-left.svg',0,_binary 'gM}¯Ó’!\äù\çjô6',_binary 'gM}¯Ó’!\äù\çjô6',_binary '÷$t\ç\Öh©Ÿ)Qr~C‘¤\â‘x¡’$®]¯\ï\Ún','',0,'?'),(_binary '\Å3ñm\Ì+\ÆJ@d•Ò–\î½','wp-content/themes/flatsome/inc/shortcodes/testimonials.php',0,_binary '7ˆ–÷—\n\'\Ç_\"žµÀ',_binary '7ˆ–÷—\n\'\Ç_\"žµÀ',_binary '°E\Ã\ïø®jB÷\ÎAûAY\\­hžUªÿ\ÑKõ™0ð','',0,'?'),(_binary '\ÅD€¬C\è\è\Ô\ÃF}±\Ë','wp-includes/Requests/Exception/HTTP/418.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '83£9k\\8\'i³v\ìó',_binary '4 ¬6éŽ¬½\ìM&ð$!2d<žª\\	|\\—?gü\n','',0,'?'),(_binary '\ÅPÞ¹£¹¯o\Äw|\à4K.','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/active-filters/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\Ýv…jr3!3gHZr¬',_binary '9ukHÿIj¹d.‡\Â\ßÚ[KyÃWˆaœ#$\Z\à•ñ\Ö','',0,'?'),(_binary '\ÅQeWw\Ü3\Ð\ÆÀ’½2¦','wp-content/themes/flatsome/inc/admin/kirki/assets/images/kirki-bottom.svg',0,_binary 'ø\Ãú–³\Ñv\Û}Žú^û‘',_binary 'ø\Ãú–³\Ñv\Û}Žú^û‘',_binary '\Ã%\Z©\"S¸\Û/kŠû»\î\Óô\Ò\Ð\Ð\à˜Š£¹¿‹Q\è','',0,'?'),(_binary '\ÅVÝ€^€W»4\Ûù\Þ-zX','wp-content/themes/twentytwentyone/assets/sass/01-settings/fonts.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z*\Æs+c\ë‚\Éi\æ\êX~ñi',_binary '-u¹\Ñ|\Ú5²øCD`\ë\Óç£©QrGù‹)&\É','',0,'?'),(_binary '\Å_\Ìn€ü£³\Ép·¼aV','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>*L\Ö1\ÊËµ©\"k%Fƒ+',_binary 'Z±öi\éM\Ûf¼UŒv±i-\å})ôùf\Ñ\"†þMnd?X','',0,'?'),(_binary '\Å`#\ã\ØG–b¯C\Ð\åÖŠ\Î','wp-includes/js/swfupload/handlers.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j¼Ú™K\á~q	õˆü\Øc=',_binary '\ÙTòŒ¿‘ôõdñT¯y~#\ï\ïjI\"£++3ÁÉ‰','',0,'?'),(_binary '\Åxejuù\ï¸\Ù²Š','wp-includes/css/dist/edit-widgets/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'À<K@p~ý™Kª\×\ê}\Æ\Í',_binary 'R˜ô’Ã«\Óû\Ó\È\ä\nQµ¡\Íú™\é}‘‹E)V\nM','',0,'?'),(_binary '\Å¬‘>—aO/ÚªÁ\é±','wp-content/plugins/woocommerce/includes/admin/list-tables/class-wc-admin-list-table-coupons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ä\"Ç“·PÁD\Ò	sù‚',_binary '	‹ÇžTd\ïFŒ\nU—Wú}þ_B/ôœÈ‹½k¸4\n¡\":R','',0,'?'),(_binary 'Å‚j¨Dß‹¿.¥Ë–D¥‰','wp-admin/css/forms.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ò]wƒTˆ7?7£œ˜',_binary 'F~yƒd%\Å\Ð_\ëCšZ\Ô\Ý#ZÑ¶³\r¬wT‡\Äñm\×','',0,'?'),(_binary 'Å†€Ô¡yi\ÓD\â‚1›','wp-includes/blocks/embed/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™JÏŽ…\Â_¬~\ÎÉ™\èQ\Ï',_binary '¥\Éû	\ê\r\ÍQ?*þÏ¶b\í\Öo°\\”\ï¶6i?©”ƒ','',0,'?'),(_binary 'Åˆ¤\ÖÈŒ\ÓwúHŽó\"','wp-content/plugins/wordfence/css/license/premium.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯À\ïA‚\É\Â]¿UQ\ïðç”',_binary '«-{)f\Ô\Õ\n¹ ¬:\ê}\Ç\×F\ê¾\î3j*´ù¸\ÜÁc%','',0,'?'),(_binary 'Å‰±\ÚjN±’$\\!]S','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/css/font-awesome.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ø•\Ë;•óA€f¯!TÉ¶`|',_binary 'žÎš\å\0¼…\äµ8aŽôŠ^b\èH‰\ç=L\Ý{‚’\Z\î','',0,'?'),(_binary 'ÅŠ³÷6ƒ÷½@\àL(`ö\â','wp-content/plugins/wordfence/views/scanner/site-cleaning.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\²!ß´_²&xh£•G',_binary 'l¿t–œ!o\ÊVL\Ãþ`Í‚eÜ¶\ã<·¬`\ë','',0,'?'),(_binary 'Å+\É*!‘¡8‰ŽÁª@','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-contents-block/footer--mini-cart-contents-block/products-table-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ö­&ö\Ë\ÕÒ§÷\"?—]\Î\Ù',_binary 'ÿHbÿ\ê\Ð÷<\Êh\ÌtI_ÁöTFT\éƒ\êh\\\Ùl·61','',0,'?'),(_binary 'Å‡5]Á‡dxvý:\Ü','wp-includes/blocks/pullquote/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']o\Ý\Ëa¤©!\'\ËÁ',_binary 'OJg­I}Ol\n4?k¹aœ¼W‘K÷!o\â\êQ±†','',0,'?'),(_binary 'Å—‹j\Üù6B°Ë´÷¿‚','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-sku-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ø[”þÇ„&-ƒ4¿ˆO/\\',_binary '\Òg®w	zhdþ$DN€©föNJ\áù\"ý_h&\"þ³','',0,'?'),(_binary 'Åœƒ\0»>jô-Œ»§š¤\ê','wp-includes/blocks/latest-comments/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'çŒU\æ~\ÛP«¤(\Òk',_binary 'V\å3=%û\ÂkOõ[3¹\ÚNf3\ß\éS\×0v\ÒÚ¦','',0,'?'),(_binary 'ÅžMjÂ¬~’´‰\È\ÊË¬D','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/country-select.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰²ü=<\Ñ\Ä=©‡‘c†\Ð\Å\Ð',_binary 'Oo\çaaÅ¼M%@rÈ”hQt7‰#§C\ÆÝ¸’úf','',0,'?'),(_binary 'Å°üR¶þ\ÚP\ì \0\á\Ó×½','wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/cod.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\ÎHl\Zh·r³:ˆS\Ûm',_binary '´m0¯-~\Ù8\ÌMŒonÏŒ›@8x&9˜; \"\ßNÎ³Ãž','',0,'?'),(_binary 'Å±\nˆ°yÖ½DW\Ñ','wp-content/plugins/woocommerce-currency-switcher/classes/dashboard_stat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œywYÝ«¨F‡Œ-°~\\.',_binary '\à!Ð\Ý.m¬;¼\î\Ólù¸.R±\éÜ´õ`%™CO\"\Û`','',0,'?'),(_binary 'Åµ±Sa\Ü:\Êðs\èvß»”','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-all-import/icon-256x256.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Á\\\Õ\ÑTýh/pZ\ÙJ	¢›',_binary 'þ\Ù\ï\æp–„/IŽk\æJ´n†`€ÇŒ\Ò ¾š\ÛHK','',0,'?'),(_binary 'Å·o—‰\Öô«\ç­%\Ý.½','wp-content/themes/flatsome/inc/admin/customizer/img/product-page-title-center.svg',0,_binary '-¶RM\ì…Ö™W\í£H',_binary '-¶RM\ì…Ö™W\í£H',_binary 'nz.0©F8Iª\Ï\Í\ê6(,\å#µ9ßº«\Ï4','',0,'?'),(_binary '\ÅÀ+Cs*’®Yž\Ø2ö¼\Î','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-date.php',0,_binary '‡3\ZF©f\É\ã\ät\é¬Ë§',_binary '‡3\ZF©f\É\ã\ät\é¬Ë§',_binary '¼°vr¢J°EÆ»Nû\äx¢i·¶\Èf\Û|.^1%^nW','',0,'?'),(_binary '\Å\ÃC¤Éˆ£ùxU„\ç¥U\ß','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/payment-method-extensions/payment-methods/cod/constants.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ùyú|\0/Jc¿Ä­\ÅdR',_binary '¥²¸ÿ\ÍdX¦]®5\Ðßº÷ÛŸù“Un|¥6Í·¿Ž`Ö•','',0,'?'),(_binary '\ÅÇ¼ƒw;£]ÿôƒ’†z','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\"	ô\r\Â{9‚\ëq+E^[',_binary '\ÙOl…\Ø]%‹º¿´·$RðCoµm ¹b‡Tr\Ø>\Ý\ZG£','',0,'?'),(_binary '\Å\ÉÏ”\Ö2_´y÷\è™','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/cart-line-items-table/cart-line-item-row.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œú\í\Ôý4À8\êTzD\ZÖ¸',_binary '\ç‹R}_\Ç\ÏÎ›ª•\ná¹¾(¬\Ï/AÐ€¤Wˆ=¶4','',0,'?'),(_binary '\Å\Ë\í/b¼˜\Ø@6\Ê\ØK¡4','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/phone-number/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ï.V¶-™0e\âTS“²4',_binary '¾¦GA=³ŒŽ{\×ù\ß<@:DL\ãô\ß\Ïó¤ýC{L×¶\Ð','',0,'?'),(_binary '\Å\Í-†p“lE\Æó\Øk†/ö','wp-includes/js/jquery/jquery.hotkeys.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ãS!}EU«\\b³g¾h‰=',_binary '\ZJ·û]\Ýx Õ®T\î¾\ÄcÁ0n˜9  +V\ék\â','',0,'?'),(_binary '\ÅÎ‚v\Ú0ürþm¼·ôþò','wp-content/themes/twentytwentyone/assets/sass/05-blocks/rss/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å¨\ÔÒVÎ³_ü¢(!\Ã',_binary 'Ì©\ZTQb[c\íU\æ,³\Ùs~Œž$\ìF_\n\æ±e\Ë	\Ú÷','',0,'?'),(_binary '\Å\×EÕ–®^\'‹SùƒAó','wp-content/plugins/woocommerce-multilingual/res/images/locked.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ó_9öE…ù\í9gf€b',_binary '\É\ê¾!\ÈÀ¥\×ì­°hQWÒ¦ˆ÷È¨3\ïUAô\Ûp†\Çú','',0,'?'),(_binary '\Å×„5­r÷ÕDX.\å<\n','wp-content/plugins/products-compare-for-woocommerce/main.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ýº£³·—¬ÁY™!k\íe\Üd',_binary '$¬ó\ëŠXtŠ˜5™0õ\×0*oþ}@Á<’f4@BC,','',0,'?'),(_binary '\Å\Û+\ÊP+…°”ex$’','wp-content/plugins/woocommerce-multilingual/vendor/composer/autoload_classmap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ªˆ\Ø-b\â$k®¬Š\Ü',_binary '\Ñ\n„\ç`\Ð$Uc­	¨;o”¼’…$\ËU¥©&!*Žc','',0,'?'),(_binary '\Å\é¥\Õ #¾Hˆ7&!¦…','wp-content/plugins/wordfence/js/wfdropdown.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€½\Ñ\á\Ørpô\î÷c\'\Z¾',_binary '\â\àŸSGƒ–s8;®Z¢!²×–J\á„u\Æ1·z?«¿„','',0,'?'),(_binary '\Å\ê\ë\Ý!\å&7›\ëûn«\â','wp-content/plugins/woocommerce-multilingual/screenshot-3.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸.þ Š­O\\i©|% ›',_binary 'ò\Ën\ì›1\ä,™Kÿ„›4\çôaù¥¼\çZ»± Š(Ÿ','',0,'?'),(_binary '\ÅöZTDÀ\r[ø\åFcLL\Ó','wp-includes/blocks/gallery/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ËXd#F:–\æð	B\â\âa',_binary 'FŸ’“Ÿÿ\ÎBM!\Ý5d!Rv!j\ß\Þhù1S\é\åß¼Ï¿','',0,'?'),(_binary '\ÅùU\ëu³\Î\èñ(´þô%','wp-content/themes/flatsome/inc/builder/shortcodes/custom-product.php',0,_binary 'fM\\\à­×„EŠtÀp\æ',_binary 'fM\\\à­×„EŠtÀp\æ',_binary '5\ÃA¶\Ía	²¥¤sb\Å¦o\æ’,>?Ú‚ ü','',0,'?'),(_binary '\Åþ`¢Ê»\àý\â¼\Ùô8\ê','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/ux_html.svg',0,_binary 'Ži5û\Õ=EÎ?\ì\ÐFO™',_binary 'Ži5û\Õ=EÎ?\ì\ÐFO™',_binary '\ï.\Þ.¸‹v\ïùù\È\Ã¹\ÄW[xt»B²\"L‚W¹µ','',0,'?'),(_binary '\Æ	™·#A©\n#b#ü =','wp-includes/js/tinymce/themes/inlite/theme.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\âZ=\ro<3¤¡E\Ð\í\Â',_binary '·\"Á;l¾¯\0s\'\âlB´3qš6)Œ8’\n@D‡²¸\ê','',0,'?'),(_binary '\Æýp“1	°?\Â\ØJ@³','wp-content/plugins/wordfence/vendor/composer/ca-bundle/res/cacert.pem',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ü\Ë\æ\ÎÇ§n3Q­2\ãG‡',_binary 'ÿd\í\â\"fÝŽ•¼6emˆ`öz™´\Êú\âP<KO\Ò','',0,'?'),(_binary '\ÆŽi¢µ\à‚<[?¼„½h\ä','wp-content/themes/flatsome/inc/extensions/flatsome-swatches/includes/class-swatches-frontend.php',0,_binary '2ÀlvX©Â‘\Ëý¤‘ª<',_binary '2ÀlvX©Â‘\Ëý¤‘ª<',_binary 'nÁx%öJ)‘¸6\'»)<\nt‡‘Ñ¶\â[¾b*†«º)¿','',0,'?'),(_binary '\Æ¾,\äƒþÂ ³ª\0','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/images/ui-icons_2e83ff_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ä<QJñ\É,yÓ£ð»R\Ô',_binary 'B¢j¤0=\Åb\éW]F\è|þ\åh	Ÿ\ïø\ä\Ò5Rn³ö‡','',0,'?'),(_binary '\Æ+’ \Íg\Ô¾\Âq6¥^\0\è','wp-admin/images/wheel.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E0½ q0m»\Æ\ZY%V¹X ',_binary '(]´:=d\ÓqÛ…¼O{9ŒÂ€Ô€¥vš…È˜~Š²\Úó','',0,'?'),(_binary '\Æ+ùkZ@©bKŒõÒšŽ\Å','wp-includes/blocks/block/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\Â^™\ï\ß(š-4\éÿÀ†®',_binary '­ß©³\"s|[¡v\Ú\Ó†Ó‘{—o`Y÷ŽU°½‘','',0,'?'),(_binary '\Æ/~²V\ïj\çg€UU','wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-autoloader-locator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²|²¤ý_œE\Êbº5ù ',_binary '?:†P0/#\ÙNœ\ÈYM\ê›-P,\Í2j\ßÔ•Š>\Ý8#>n','',0,'?'),(_binary '\Æ1«’›.ko$\'Ô¦\Â\âR«','wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-note.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™¯iÁ0û­¾\ì\ÏÚŒJY',_binary '”@\îÀ„@3m‹3‰ºµ­¥C<õÀZI\×þGO\çC\È}[','',0,'?'),(_binary '\Æ4\ÄsÙ¸M;*°ñº°\È','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-product-categories-v1-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P•9„\Ïü \âv\Ð< G“O',_binary '\ïú¡‰Gxs\è\è{›ö\Úc/Yt=\ëJH\Ùûw[ñ`¢e=','',0,'?'),(_binary '\Æ@³ð:<¢o|J-e´','wp-content/plugins/wordfence/images/wf-error-badge.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰EQt\Ä\Øs	¡Mz½y¦÷\á',_binary '¿\å¨æ®™F¦\Î`\Äa¤Ý€\Þk¶\Ý\ÈmE\íQ´¥+~¤\ç','',0,'?'),(_binary '\ÆC\Ú]F|”`i\æÊ€’õ\Ð\æ','wp-content/plugins/woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Abstract_ListTable.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬\r\0XA7P\Ü*^\ÏjSq',_binary 'Œý»d‰\Ån‹¤MŠPqÿ$ P,x\ÚFXÌˆ¨<\Í','',0,'?'),(_binary '\ÆGW¿¿óXc(ùªn‹™\Ê`','wp-content/plugins/woocommerce/includes/admin/importers/mappings/wordpress.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L\ì\å\Ã\æ\ãB)£zkH',_binary 'Ab‰ˆ\0ŠôÊ†\ÐP\É\ÞOT\Þ\ä\×eø\Z\Ë	a\ß}\Å\Z','',0,'?'),(_binary '\ÆL9±ñI›N\Ãbò](³t','wp-content/plugins/woocommerce/assets/css/menu-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹>ˆT\ã+;x\â»ïŸ€Ä¼]',_binary '<x.U*|l\æ°ô´&/§:\á?m 2\Ñ\î¨\Þo7N_†?x','',0,'?'),(_binary '\ÆM\â\Öh@T\n&	B\ÑR\å«','wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Shipping/FlatRateShipping.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ïø%PŽ–\Ì,fÆ’¸|',_binary 'Ï«bý\Ô\ÃBc9•÷9¨I$“š\ä6@‹“\Â[Y¤F¡','',0,'?'),(_binary '\Æ]Pw¸\ß‘\Èð\Þn','wp-content/themes/flatsome/inc/helpers/helpers-grid.php',0,_binary '…B·\nQ\â`3,Á\ÔM',_binary '…B·\nQ\â`3,Á\ÔM',_binary '«\×n=£(š\Ô_Ÿ\Åv\"ÿg1\Ì(™n»\ä0ž=4w','',0,'?'),(_binary '\Æ`›e|\Å|\ç°\Óè°³§¯û','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/attribute-filter.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\¹K_\n-J±\Z\Ï\\U¤«',_binary 'v#%\ÊØˆö–óõ¼tµ<%k\íS;\çŠ\ät\Ô\è{Yr\Â','',0,'?'),(_binary '\Ædt\à€šS0›[\\Og:','wp-content/plugins/wordfence/modules/login-security/views/.htaccess',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…¼\ÕA¾a¸bvrñ¤',_binary 'C‡¾ö½\'r…9½\ì@\âK¡Þ†t¡ª™ö\â§w#@kº','',0,'?'),(_binary '\Æf.Ëš¥¾Jó\Ù\n•‡','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/textarea-codemirror.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±ËšX\'Ë–\Êg¯†P\Ø',_binary '…\ë\Ó@K1ôÀÍ¹¥|S^¯\Ä\æFñTœo-É”ö²\Ô','',0,'?'),(_binary 'Æ…Ž‹‡|_\Ëi/y¡\Ò	','wp-includes/js/tinymce/plugins/media/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\Î\'1\êZ\Þþ‘ž\Âf ',_binary '\n\é>\ë\á\çEQ\Þi¶æ¼º˜\äk}Ã®¨Ç²“—þ£\ç','',0,'?'),(_binary 'Æ‹?\å\Ö;Î–\0Ž&\à\ÐÚœ','wp-content/plugins/woocommerce/packages/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†$\ä­c”\ZV\Íi&[Ù‰¯7',_binary 'Üƒ„ €\ÆÀr‚Õ„ý\Z\Üõ%V;\"N\Ò1Í‡\'\ÖnW¸•','',0,'?'),(_binary 'Æ‹\Õ?­ô¹x—\ãg\í.]#\Ý','wp-content/plugins/ti-woocommerce-wishlist/templates/ti-wishlist-product-counter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k¯$¶c(•4\ÒZŠ‡¹\Ý\0',_binary '\Ëk}Nm\Æ[f™“5\Ç7ëš’ü^¸~\ÖSÁ}¿\ä;','',0,'?'),(_binary 'Æt¯¿\Z\â»\êo+\Ý\ÕØ´','wp-includes/blocks/spacer/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's\Þk“\Ë\ék3z\Ä\ÓU)\Ä',_binary 'u2ÿT\Ø\Úz\"»„\íÿ\Ï-g¾‰¶&]\ÌV\Ûj²•$O>‹','',0,'?'),(_binary 'Æ›\îmµ=F/6¥‹S®F','wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-ru_RU.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n\å\ê\à\ÑLØ§\Â\ÆC\æ¸Iwj',_binary 'Í‚i\Æ\Ü\rSÿŸV¨––¤d \Î3\Ö\ë^\Ö\ä\ë˜%b U>','',0,'?'),(_binary 'Æ©è¥–5!\äF:\ì§Nù','wp-content/plugins/wordfence/css/wf-roboto-font.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸Á]\Õ\ïðOŒuÝµœ',_binary 'ôŠ+\ÅhJ~¿Ê†´ª*\é\ìa* ý\âGb67§\r©:±','',0,'?'),(_binary 'Æ¬+\Z–¼\ÊIód^i <\0','wp-includes/js/jquery/suggest.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':$tV‘E\ÕÊ¿\Äû‰‚',_binary 'r\ç,K\ËpÅ—rq^b¢\\‘¸=rZ\Ð]ƒ\É6+','',0,'?'),(_binary 'Æ¬Œ\åSX‰ƒ\ÝZ“ù\â3›','wp-includes/js/dist/plugins.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼\ËÀ\ÚPH *æ«”',_binary '™ÁžW$2U\Zûb¸\ê–\èI\ë¬\Ôù»ŠÁ]|\Èfv\Ò','',0,'?'),(_binary 'Æ°k\ä\0šcþ\Ö£\Èð	dŒ','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/hr.js',0,_binary 'X:…´\Ôr³,}¿¾`1_\Ò',_binary 'X:…´\Ôr³,}¿¾`1_\Ò',_binary 'õJi¶Bÿ:¢Ÿ:»\å8 \×y‰Z²#H»F&@‘Z¶¹W','',0,'?'),(_binary 'Æ»MMIŠ#u×†a\n¬s\Ñ','wp-content/themes/flatsome/inc/builder/shortcodes/templates/ux_menu_link.html',0,_binary '\æy–©YóÐ…¤h¯}*ø\Ê',_binary '\æy–©YóÐ…¤h¯}*ø\Ê',_binary '\È(Qý€½x=^ù«P¿\é(³´…\ê_!øŠvžKð®','',0,'?'),(_binary 'Æ¼o_\ì\éh%ó£ÀÇ°lh','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/images/ui-icons_222222_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's£Nµ5‹J¤šA\ßZe6',_binary '´Êª”»Z6\ì‚\Å\å?c7<”J\Ú&–˜\Ø\\`jF\×','',0,'?'),(_binary '\Æ\ÂH\Ût	3f&2V=Á9\Ð','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1|2\Ù \Ý\å^\ry“\ï&\Âa4',_binary '\ç^±õ=dig¦`ø\ßbš\å\Ì\Öúù2\ï¤+nkO]ý','',0,'?'),(_binary '\Æ\Å\î\Ô;VÞ¯€¤nTy ','wp-includes/class-wp-theme-json-resolver.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6\á¥\ÖU¿-Ö™º\"=ÝŽ\\°',_binary '\ÌU6#˜_™¤÷lY¬\Ñ\ÞþœŸw‹cÈƒˆ›”7DL¦%','',0,'?'),(_binary '\Æ\Ça¸\ßH-„\ér]','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„>u·\á\Ã[É‚Ó‘€',_binary '\Ñ-vN\ÑK\ÍóØŽ*\á:¥g\n‡˜U\Äý\ï(gj¶¨\à\æ','',0,'?'),(_binary '\Æ\Ó$¥× 0\'ŸC˜›º•\ê','wp-content/themes/flatsome/inc/admin/customizer/img/form-login-lightbox-right-panel.svg',0,_binary 'À\äÿ84V\á1<xR\è\É\ÆH',_binary 'À\äÿ84V\á1<xR\è\É\ÆH',_binary 'Á\æ\àñ¶\ÌÄŽ=L$¿Ÿ\0\ÈÚ°÷h#¶ýR]B‡Ä·\ç','',0,'?'),(_binary '\ÆÕ‘fƒ)cW)Ö— Og\ã','wp-content/themes/twentytwentyone/assets/js/customize.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4»˜©\\:\à­š¯\Ê\ÓK',_binary '}ŽC!¾Mk;\'­?]•]…–VW˜\æýAˆešBßŠ\ï','',0,'?'),(_binary '\Æ\ê\ãgs¢Z‰›”k\Ö#„','wp-content/plugins/woocommerce/includes/wccom-site/class-wc-wccom-site-installer-requirements-check.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆÝ²\\\Ë\0_\â¢bÞ¬‘¾?',_binary '‰^\\£¶\Ô\Úfû©»}ì·¦—ùL\ä\å\æ\â\í\Ù3\×.¨~','',0,'?'),(_binary '\Æëª³@\Ñ ›=¤\Åy`','wp-content/plugins/wordfence/views/options/options-title.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¢Û˜\ä©\Ö\ÉjçŽ“Ý†E',_binary '\îûþ£Kxf›»´Ÿ„“\ê+eÇ–Ù­®ÊŒõ‰ù¼m','',0,'?'),(_binary '\ÆòÊ¤=\Ê2\Ý÷\ãNðO','wp-content/themes/flatsome/assets/js/builder/custom/editor.js',0,_binary 'õ\Ç	 R=f¿¨Ñ­Žò9\É',_binary 'õ\Ç	 R=f¿¨Ñ­Žò9\É',_binary '\â„b\"\Óññ…˜|V	É§úk\Ê\Öù›\í£^e\Ù\Ç>|','',0,'?'),(_binary '\Æü\æ‚*A­†^m™ˆ\Ê+T','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Formatters.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hö{øÅ#u17g²_\Ý',_binary '°W±#\Ìð÷–$\ÏÊ‹\Ò\ír\ê\ÆÈ…„R\éƒU€\Î*Sa\Ð','',0,'?'),(_binary '\Ç\0¼\ç×…ýFŸ*\\Î›X–\É','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-terms-block/constants.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'á®·‰‘\ï¹\ÝnG\à˜ý6ª',_binary '8b’O\ã€ó\é‡oÎ²`\Ép\ç|Ig\Öxð\Ý%ó(H8w!','',0,'?'),(_binary '\ÇÍŒ%+\Ëe@uQ(\Ï','wp-includes/js/dist/editor.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\èô_õ\ëz\ß=\ìDÅºp\äÛ­',_binary 'ˆ]qð\î5Epý—¦\âT¾)\ç\Â\×fÁõþõ\äR§„','',0,'?'),(_binary '\Ç\r7UÉš††5öÕ¦»M','wp-content/plugins/ti-woocommerce-wishlist/integrations/mycred.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\Z}¡©ˆ\Ü\ã”<$¥€',_binary '-ö÷R#›j&a\å‘\ÎjC4N\rˆ\ÖÎˆŸè”¸}ò¢q\0n','',0,'?'),(_binary '\Çlf¶ZC(;GiÜ¦`«O','wp-content/themes/flatsome/woocommerce/layouts/headers/category-title-featured-center.php',0,_binary '”‰utûý\Øv’S\ß)ó<',_binary '”‰utûý\Øv’S\ß)ó<',_binary 'û\è \n3_Gvt\Í\è–]\à\r@4\ÊT=Ÿÿ3—ñs‹','',0,'?'),(_binary '\Çk8Q?<×Š\Ó£y™p‰','wp-content/plugins/akismet/views/title.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷X¤CN3|)-\Î2Na©±²',_binary '¢‘štûCzô ž¤\Ín`j\r­M\ÍðN\"Agó\×\æ','',0,'?'),(_binary '\Ç …³4”2„Ò†nB%\Í','wp-content/themes/flatsome/inc/builder/shortcodes/values/nav-types.php',0,_binary '\r\ZõNC\0„Ä\0Â»\Ï',_binary '\r\ZõNC\0„Ä\0Â»\Ï',_binary '¶y6Žðt¬	®%Y†a>búð\ÍA\ã±·\Z\çô\Þù\×\Z','',0,'?'),(_binary '\Ç)iS…:\Î%\Ëõ$\Í&½','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-it_IT.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Í…bqŸ·ˆ ŽV¢».',_binary 'IÊ…\Z|»Qc‹\Ù@/\á¹\Z\ãù\ì\Ñ\ážr`F9>\î','',0,'?'),(_binary '\Ç26£O•,ETI÷\Ü\Å','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-editor-style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£<”{j%y\Ù\ÏQ2Î¨•–',_binary 't×´ôaU!?é¬‰WSYÁ<»üB„Š9ˆC¬ž','',0,'?'),(_binary '\Ç=\Ãm›\Â\Ù\Ë^D6Wø','wp-content/themes/twentynineteen/sass/modules/_clearings.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.õú\ä\Ð*\ÎçŒ¡j/\ã',_binary 'ósø\Ç\á3s=Žœ\é¸ø#q³\éûËž< —I\'r&\êþ','',0,'?'),(_binary '\Ç?ñŽLòþ‰\áoß•\Ôo@','wp-content/plugins/yith-woocommerce-compare/plugin-options/premium-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤\\Yºƒ$d\éE\ryÊ®x',_binary '²\ÎÔ˜n?\ÓZ\Z‘ip\ï3ng£\ÇX|\ë\Þåµ','',0,'?'),(_binary '\ÇFU…G®\ØÐ¥d¯cNC','wp-content/themes/twentytwentyone/assets/sass/05-blocks/paragraph/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×È<\èôFÓ¼91w\\)O',_binary 'ðx´–\ì›–(÷˜Sn¶\Ô\n;¶y{%”_¸j‚\Ò\Ì/','',0,'?'),(_binary '\ÇMho\Ùn=\îT†ƒ\Æ1','wp-content/plugins/woocommerce/src/Proxies/ActionsProxy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '45Ë ^y=ˆ}‡™_B´',_binary '\Ù\æ\0\ãœuDµ\Ù$°\'\Õ9ÂŸ£Ÿ©¬¨W¤Q`ž7','',0,'?'),(_binary '\ÇSQ\êsY7aF\ÇIMjŠz','wp-includes/blocks/post-author/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñ”&Qµ±@\ä¿F \É',_binary 'ðK\í-¨š~#\Í\Ý\Í/\Ø\äÑ­Ö¤9k[^vcnñx','',0,'?'),(_binary '\ÇW}\rDÅ¬½w‹°*¾ñ','wp-includes/blocks/query-pagination-next/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'š6î©‹\æ‘ðdB%˜X;',_binary '\ä±t4‚\â\à\0\"›qN\0x¼ž\ì¦|¬Pi\ç2#\ìV','',0,'?'),(_binary '\ÇX·B˜¡õ› q‘Y¶ ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-shared-context.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÅC\Æ/k\é¾\á%¥†\Ù0%d',_binary '\ÛSe8Ü .Ž<Œ£• qzq	2ñðo\ÆÁ\ÏvÒ”4a','',0,'?'),(_binary '\Ç\\{\ÝwZýˆ\Ù%','wp-content/plugins/ti-woocommerce-wishlist/includes/api/ajax.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ï\Úa&\Ù\ã}Š¥ó|9ý',_binary 'µsˆ\ËM¶V½½\æ&X2\Îývª\ÖŸ¿“1³R','',0,'?'),(_binary '\Çs\Ø‡\Ø2jF ø','wp-content/themes/flatsome/search.php',0,_binary 'Lÿ Û½r\\ø\æ¦òvS\\ª\'',_binary 'Lÿ Û½r\\ø\æ¦òvS\\ª\'',_binary 'žÕŽ\nqÀeš\è\édE\'\Ñ/8\ê+U¹:q¯š\0\Ãû®\æ','',0,'?'),(_binary 'Ç‚-i)ö.ø\\\Î\è\æz„^a','wp-includes/Text/Diff/Engine/shell.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸\ÜS³´õ\ß¢?üòz&',_binary 'óö·=5\Ê„:Pu\'pM\ÖN[µ9^£m>z@','',0,'?'),(_binary 'Ç…ú9 \Ù9: ÷¤\Zþ','wp-includes/cache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z¯\êV¢ŒO˜üyDv\á !',_binary '{\ëŽd\Ü\ë<>wb¹S£q©™\ÙB¹\Ê™\Ú\×\ê€','',0,'?'),(_binary 'Ç”Å¿T†¤@Ñ‹\Ù\âW\àœ”','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Óz§1À>¯å—º²ú\ä˜',_binary 'l¬±eQ.~@\ÈH~ý\æ€V\ãû)ýSx3Œž?–)T\é','',0,'?'),(_binary 'ÇšŽ\ä_Á‡`=¾ùú&ò','wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-item-type-data-store-interface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½|¥4_w\Ëo\×´\ê·r.',_binary 'ºû8\è·u÷¾|zGmlpH7†a¾\ç\Ð(¢™j…','',0,'?'),(_binary 'Ç\Â^¿xð¤JB\Z\Í3-«6','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G–þ5]{\"•¼\ã«V\Ø',_binary '¨C\ËJr~W\è„OY…*[ó:[j)«²\ÂGýÐ„\ÖeŠ','',0,'?'),(_binary 'Ç .FZZ¾\è9•\ê›\Ç\n2','wp-content/themes/flatsome/assets/img/payment-icons/icon-westernunion.svg.php',0,_binary '\Ù/[\ì	\íßÀW©\æ',_binary '\Ù/[\ì	\íßÀW©\æ',_binary '\ãRvÿ	sÂ‚	;žK†O\Òúˆ\à\Ñ\çÞ¼úK–&¬','',0,'?'),(_binary 'Ç¡zø®ª·’6‹\Ìy\Ö%\Ö','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-wp-installer-api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2Ÿk—{]cþ§­\Ð }–',_binary 'v—_\Öy\äZ\íB	$\\{\ão<U_„A\Zq•PÓº‰ ','',0,'?'),(_binary 'Ç¤>z±Ô„Ÿ!J]>','wp-includes/css/wp-auth-check-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\ÚþPñ\ÚKNŒ¯zj \ìK',_binary 'V<e\Ùb\Ñ\Ã(·k¤¥Iª\Ò2\Õ\ZÃœu\Ó/#4É†mz','',0,'?'),(_binary 'Ç§Ÿ\ÇxgÕ³¿ZN9tBT/','wp-content/plugins/woocommerce-multilingual/inc/currencies/currency-switcher/class-wcml-currency-switcher-properties.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ù´Ÿ—^!\ÊC1¡ò\ä\\c',_binary '£*ËŠ½5ü5\Ìrðúöª\Â\ë¯\å½]\ã\ï­Bg£©%´Ž¿','',0,'?'),(_binary 'Çªhóœk‘ð\ãj<TÀ','wp-content/plugins/wordfence/js/wfdashboard.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©£Ô½¬PŸ¬°\Í`\ß{i¹',_binary '=P¯z\×r”ŠŠ!\à?w\Z´/d!·½LÓª\Ä\ê1!·','',0,'?'),(_binary 'Ç«\É=\Å\èm‘/\àÁœ^','wp-admin/includes/schema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' n¤S\ã\Èõ£V\×\"t«W»',_binary '\íwý1ù‹–™T9q÷¯\0©N>OÛ–\Íxg:yB€+','',0,'?'),(_binary 'Ç³\\ª\Ý_L-Y€ÅŒ%$','wp-includes/ID3/module.audio.dts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ºllA\Óõ2õ\Ô\ëÌ‹\é¿',_binary '\Z†aH\ÈõŒýrµ\ß\Î%Aµ\ïñ6$`Hu¬T\î6y\Þ4•','',0,'?'),(_binary 'Ç´¹%#^UŽ‘?\æÉ±Q”','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/dimensions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q3ƒ”E˜qfFº@Áµ#',_binary '\×C\ÑÎ›¹~\Í\ê‡\ç_š4O¸™\0p\0/úX¹\Çg[','',0,'?'),(_binary 'Çµ\'«\ê…FûµJß\×\Ë','wp-content/plugins/ti-woocommerce-wishlist/includes/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ð™ .ƒ‹J5n>k«w.',_binary 'õŸ\ÏÞ2£”\êüD’l“<ˆ©\Ôhõ¸MZVk ','',0,'?'),(_binary 'Ç¼=›\È\Ô/%”@6šDn','wp-content/themes/twentynineteen/sass/modules/_alignments.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ø,oy\à2˜W\ÔÀ>j\ãü}u',_binary 'Ì°ç°ƒb\×\ï\ãp4\ÖiŒ\âÑˆB6\Âôñª©A\ï\êªþ¨','',0,'?'),(_binary 'Ç¾rð,\ÛHñm\Ö\\¾õø5¿','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-block/test/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\ï01\í\âe\ÈN\ï6ö\Æ+?',_binary '*\Ür„\"M\ÇŸ÷i}(Ô¿´U\äÚ‡\Õü','',0,'?'),(_binary '\ÇË’\ï‡\ÏH\Ù8\ä¤Ç†–','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-methods-block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ß(~P\Ñ øŠ¢þ\ã\"•±',_binary 'MQ´û\"c´ø\ÔË°“–@¦^¯<x\ÍQ¦ªñ“\ÅD¼\ê','',0,'?'),(_binary '\Ç\Ò^Ë´!f\ï\\P®u\Ï','wp-content/plugins/woocommerce-multilingual/templates/pointer-ui.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e>0¿ó\á\æ\Ý\ÃB!.™ ',_binary '“Ä›j³ý:ºõT¸¸á¢¢r‡# \×w³²MS‘¢.œ','',0,'?'),(_binary '\Ç\Ü){ …\Ë]¦t}­L·\Í','wp-content/plugins/ti-woocommerce-wishlist/integrations/elex-woocommerce-catalog-mode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œ*rŽT\Â\åýñMQLVx«',_binary 'Te[ß´a\ÍF§8@\ÑÈ—©W\Â\ë\ä\ÃÆ¾¢\ÖŽ–','',0,'?'),(_binary '\Ç\Ü?ªbd†;º\ÄÀ–\è\Ø','wp-content/plugins/woocommerce/assets/client/admin/chunks/marketing-overview.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡oI??4Þ‘K¼§P¬ˆ',_binary '“,O¾˜¾¨ ,Ìg€â’¬Jü#ŽdE©Z	„','',0,'?'),(_binary '\Ç\â~\ÕÒ™°.÷w¢Vo¸˜\É','wp-content/plugins/contact-form-7/includes/js/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ï´(À(ð\Ë\å\ÕóÜ¦\æ',_binary 'd¥Žy\Äf÷<Yû‰8VpE/¹:x	K2g1†4! LO','',0,'?'),(_binary '\Ç\ämyvH\åò½Ì‡\à\Î','wp-includes/blocks/table/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°„(\ÍV\ëDq$a¤ ',_binary '\ØVQ8#\á3m.6\Ý\Ø-ðÁ!¨“Pp:1Kj±‹\Ö','',0,'?'),(_binary '\Ç\åwª\Ûy¾*®X\ÍO\nG›¥','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Fe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\éVl~ò†m[%Wt',_binary 'P–q\0€ƒ´“”šV{|\æ0m\0;\Ô\Ü\Ö2•f@U\Ê','',0,'?'),(_binary '\Çñ}\ÛC“wX•TC€û','wp-content/plugins/wordfence/modules/login-security/img/lightbox-controls.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm]¼a’¬•\\$\É',_binary 'Ç—’h?\à\ï\ïS\é\î\Í)¸:›Á\Öi@h. X\×g”†','',0,'?'),(_binary '\Ç÷0ƒ\í›vð§3$#sY]','wp-content/plugins/woocommerce/includes/class-wc-geolite-integration.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\ï\Ûösf\é\Õˆ\ädL~ÿ',_binary '7Œ)\å”\Ðù\ß/S‘\å\Åh\n?\êPJO\È5‡XM\É\Ï\ç\Ö','',0,'?'),(_binary '\Çø‹ŸÚƒë··\ân\ÒqF','wp-content/plugins/woocommerce/assets/js/frontend/price-slider.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì®÷l\èONÚ“\ÆP‰N2 ',_binary '³¼§\r1\Z6ó\ÇA º”…1}\Ã=\ÏO¢\Ñ{«e\àú\Æ\Û','',0,'?'),(_binary '\Çù¨w.\Öö(S¦*I\Ëe','wp-content/themes/twentytwentyone/assets/sass/06-components/entry.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£\ì\ç*gL\ÈN•\Í\"\ZÖ¯w',_binary ')\è\Õ\Çi o\ß[G\ZC\ã)EÏ³lŒ\r\Åh\Ëd³!','',0,'?'),(_binary '\ÇÿŒT±\ãE\çkØ¹Ú©\Õ\È','wp-content/themes/flatsome/inc/admin/customizer/img/search-icon-fill-round.svg',0,_binary 'Ÿ\áö¤Q¯A\îü‚I½‰',_binary 'Ÿ\áö¤Q¯A\îü‚I½‰',_binary '‹3Ù¾\ÎÀqò”}V\\\íKR4hv\ÐQ~=\Äw\Ñ\Ê3›iõV','',0,'?');
INSERT INTO `wp_wffilemods` VALUES (_binary '\È\ÂAr»L\éWùgXs\å','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/product-data.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n¾õÀ \Ø6–4\Ð{\Î\Ð',_binary '\Ñ%\í\êXlýØ§\ÒbA\Úd4:bŠ“[¶\Éú¿{–\\œ¹\Å','',0,'?'),(_binary '\È\î\ÖØ–\ãI©2@±¢ fŸ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/variable/variation-attributes/attribute-picker.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¶#5¥/~ƒ\ëC\0$²BÿZ',_binary '¥\ÞAô†6*w*œ#>\Éy\Ã\Ð$%D6Ž7°\ê½2TŽÅ†°','',0,'?'),(_binary '\È\r^„´\Í ²R9f$.','wp-content/plugins/wordfence/css/main.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç‡1\rö\Ù8‡\Ð#»\Ì;º',_binary 'þl©j>H¢I\â¢	\"\Ï&Hq2e¢a³\\1\Ø\Þ\ãü2^','',0,'?'),(_binary '\ÈyN¨Og¦F-\Ø\Zg\nC','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-order.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\Z¶\æC\é5‰o‹u¶2¨¸O',_binary 'ƒ÷¸\çtd^%ÿ\É}>ŒNVL\Ç÷a2%þ`\è\Çðº›d','',0,'?'),(_binary '\È\Z{g\Ýü?\Ñ3gÚ¢\Z½','wp-admin/images/icons32-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ%¤*ùúüø\Ìgš´ú»',_binary '\×#!$\í¯\Ø@\ì0g\é¿.\Ö;i3%!\ÍýcHP\ë•œ=','',0,'?'),(_binary '\È\âüfp°ñ\0!¹tDK','wp-admin/js/code-editor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤òN¦\'ß½	‰%ù\îñ',_binary '·\æ-‡Bd/\È`ò²\\Vôx6Y*\Ý\î-$\ßþ³®\ÄW','',0,'?'),(_binary '\Èwò6nl¾ EM]¼-','wp-content/plugins/ti-woocommerce-wishlist/templates/ti-wishlist-null.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°\È\í¹õuW_÷Àb\ã',_binary 'ý´‚shg\ìQ\É4·\ê‹7\êF¸DEWR\nûuÿ_Ú¢d','',0,'?'),(_binary '\È\"sij>vy³\à\ÍfÙ¿\Ê','wp-content/plugins/woocommerce/src/Admin/ReportCSVEmail.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=\Ìe\Öó\'¬¿\éÔ·q§·}›',_binary '	Kõ7~“z\ã‰	)È’2ŽN™\Ã7\Ð\ï\\–ó}|#\0Œ','',0,'?'),(_binary '\È\"u@ž³T¬…S›ñ5ò','wp-includes/images/smilies/icon_idea.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å\ì\Ô<]\×ÿW3tÞ\å',_binary '\Å{ô2^4S’ ¶‰Tl¨\ç·\ç®I†J\ÑQøö\"','',0,'?'),(_binary '\È&C„f$^=i\Ó0\ÜJ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/discover.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ›,y@`†H†\×s¹\×_',_binary '\ßòHh.\ØIP\â\Äök=¥T&÷J‡\'Eˆ;H§\Ò\Ù\Öw','',0,'?'),(_binary '\È-\'‹pWÁ\Êû\ã.‡i&‚\Ç','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/spinner.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Öºmu—”e>þ£Æ—G(o',_binary '3“\Èþ–\Õ4Žøñå£•\Î]B\ÇvÌ­ó—¦©6\Â-€','',0,'?'),(_binary '\È5šZÂ³§\ÎXdµW','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hooks/use-local-storage-state.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÄN¾\ë¹\Ø\å\Ï~\ã¼Ãœ)4',_binary '\ä?X“…‚A\Ø \ÕE\í0$²•øy@†I\Ö:6­B\æ','',0,'?'),(_binary '\È6¿\ì¡w¼¡Žr]\Ï\ì*\\#','wp-content/plugins/wordfence/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»\Ó\ãB7¯&\Ú]ÀŠNDd',_binary '\Û@H\Î\ßÁ\å\åM;ïº¾‰5 i\Ð\Ý\'™\åo\í¤5Vö','',0,'?'),(_binary '\È7\Z,\Ò\é<¡™\na\"À8','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/GravInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\âÞ‘®»—U\ì@^LŸ]',_binary ')šƒ\ÌLB|@£š©£\"\ßU™eJE»Wz ƒƒ','',0,'?'),(_binary '\È7˜\0ŽùttŠ².','wp-content/plugins/wordfence/views/dashboard/status-renewing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hwB\í®\î\ïþe (›º',_binary '‰\Ô\ì^K$¼\Ó\Üú1\0¤nÆ„&\äiM{\ç«$Œ^\àŠh‰','',0,'?'),(_binary '\È8\â\×\ì¶\ÃR6>G\"Š£ð','wp-includes/js/dist/element.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÒÏ´û{|ŸmS~„…Ø¼(',_binary '‘ptÁþ\è0\Å ˆ1\rþw{\ØF IõüZÿ\ì\\}yÎ¿ð','',0,'?'),(_binary '\È:fNöb\rK_eÊŠ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/payment-methods/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?C\ÛjSù[\Ã\è†%þT',_binary '}\ã\ÆÒ‚‰¦Q^Ü–6\ÆC¯u{¶³«¸ã–¼\ÂGS¼','',0,'?'),(_binary '\È;±°”N¼Q>\ã‰\Äô¨','wp-content/plugins/wordfence/views/scanner/issue-wfPluginVulnerable.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\î5>ó\Z\Ü!\ÃÌ„†›\Äó¸',_binary '\"`\nÿ2Zgo\Ñj1\á¥p\áhG)M\ÚO¶Yaž\rci@G','',0,'?'),(_binary '\ÈY\0d>ú·ñ€^\è¨\æ','wp-content/themes/flatsome/woocommerce/loop/loop-end.php',0,_binary '\à\æ*‰ªÑ•_]\Ås\ÏH-’',_binary '\à\æ*‰ªÑ•_]\Ås\ÏH-’',_binary '·g…(\è\ÇµP\nÿ†õ\åm\Î\æ\0\äT{–8]','',0,'?'),(_binary '\ÈY$\'«»¾šo‘\ã\ì','wp-includes/css/wp-auth-check-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™\Ö\èjv\ÐsZ¬¦Ü»&h\Í',_binary 'F¥V=&G\"\Ùr¾¬\rF\Ýp–“\nJ\àÝ£\Û=ÕŸ3\Û','',0,'?'),(_binary '\È[	e\n^1º\ÝknIEž\Ãý','wp-content/themes/flatsome/inc/admin/kirki/controls/views/image.php',0,_binary '¤0ó\ß\ëø‡\Ø=	\Âö',_binary '¤0ó\ß\ëø‡\Ø=	\Âö',_binary '\ìÚÏ­2´œ¤À–\Ô]g/I€z¦‰b\Ä4g`üÇ\Ï','',0,'?'),(_binary '\È_\ç¹Q”U®\á)L\éd\ß\Ù\Ñ','wp-content/plugins/wordfence/css/license/response-global.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}û·#\Å!+h\ØN\ài@',_binary 'V\ì\Ø[’\'Ÿ\Û\ÝyyX?üyeV{F¦‡\é\êeC\Âlý%˜','',0,'?'),(_binary '\Èqûž.ƒLñ9	;R2u','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-products-v1-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't¾³Y«bw%S±V=¬',_binary '\éˆß«¢ò‚0\Ø\îûx ƒ\æÙY£\â„\Ô\è=\n\Ú\år\á','',0,'?'),(_binary '\Èu>r¥¿«±ó\Ë!\àDl','wp-content/themes/flatsome/inc/builder/shortcodes/commons/advanced.php',0,_binary 'l\È\çlT\Ðvµ€ø½ˆ‰',_binary 'l\È\çlT\Ðvµ€ø½ˆ‰',_binary 'o \ä \ÈY\ç‡no9^\Ú:³µ	5{.eµÂ¢&\Û#\Ä@','',0,'?'),(_binary '\Èu\å\ÙC~7\n\è\æôW³e\×','wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'HŽ£ˆ\æk-x…¼f\âC/',_binary '‘qŽ~xY\â\ZköŒ\Åo\îÀÏ«™(NS\ëB\çø¦','',0,'?'),(_binary '\ÈxAº\Å\î2P\äyux-\ï*','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-order-notes-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'óý¹œF\"SL‘ 6\ntQr5',_binary '`®§\Â%:MñvhzZ+e{\âc#@#+¶ô=>P©b','',0,'?'),(_binary '\Èz\ÐÞ»\Ãn%¤\â€¡\Õz¯','wp-content/plugins/woocommerce-multilingual/dist/css/reportsOrders/styles.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤\Ù(ƒ—\\.OtT¾\íB\á',_binary 'ŠkF¢V\á\Ë8Ç€–‚9\ÑPº‡´y(Šû\r\à›1Á','',0,'?'),(_binary 'È€9¼õ\Ð\×8\î\ì\Ùzp_u','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductSKU.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M\ám1c­l}G{C—¥\Ó6',_binary '9l«’zfþ`\åŽÿ\æ>›²³£¥\çF\æ\Ø\0õÂ‘\ì','',0,'?'),(_binary 'È·ôÁ‚#/î–£\0œ·6','wp-content/plugins/wordfence/modules/login-security/classes/controller/time.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2Aútz`\àn%”ðYPÿ',_binary 'Ÿµ·÷÷\\ƒ1\É\Ó[ù\ØZ†>EKö\ÆRk\å\ØW\\‹vŽ','',0,'?'),(_binary 'Èˆdi+Î½6ß—\nW¾T','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-reports-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼³$xz¹þU%\Ü\ÍPÔ‘',_binary '“\â‹Mt\Ó\Ó\×:\çûi­ò\ç	A>°#COšDµ\ßZ\è‘d\ß','',0,'?'),(_binary 'È‰4v\ÓGðú@\è¾(/¸\È','wp-content/plugins/woocommerce/includes/class-wc-order-item-meta.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_5/©\'xø÷\å/Ù•\æ)U',_binary '9…\ÈJ¿d«¡z\îÁ”\ïL‘\Âg¤‚‹–Õ¤\Í','',0,'?'),(_binary 'È‰F\ÊÁ>¢Eþ\ìñ~‹us','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/privacy/class-yith-privacy-plugin-abstract.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Cµ\Õ@ŽG~û §6ø\àñ',_binary 'Ú‘11&oÆ9UUW9?FR’Ú \Õzf˜÷\Î)','',0,'?'),(_binary 'È‰li—\é\Ù®\ÕQ--Už\Ý','wp-content/plugins/nextend-facebook-connect/admin/templates-provider/sync-data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÑÁ¾\Ë(zì¡¶p’ñù‹',_binary 'sOùoù2\r/m\å\Öm`	-\ÅuZ\í¶KZ6\éÖ–’\ã','',0,'?'),(_binary 'ÈPž\Ã \é3\Ä\ï\Ñ€\n”\Í','wp-includes/class-wp-customize-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\Îq\ÕhÈ»\í~\ê¸÷¼zŽ',_binary 'Š\Æs\äkdv°Ü…\Ì|T\ë7ñ¥ª\á\å\ÅOš/™aùS','',0,'?'),(_binary 'ÈŽ\ØÿfF_…u~©\ïQu','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/price-filter.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\î¥~µ‰\Ì\Ø6w[ó	º',_binary 'šžJSñ\Ô\Ã\"é„‰‹\"E\×Ã®(¨\Åþ#ñ\íš’*ú','',0,'?'),(_binary 'È \"U\ç@ñ\ãð>„!lû','wp-content/plugins/ti-woocommerce-wishlist/integrations/product-extras-for-woocommerce.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ê\Ûö\nŠñO\î…\ê¯7)²½\Ó',_binary '\07\Ñø~\æõ£\Ê_2\Ïút«›“\Í\ç,\äÝ¨\Ë\Ï!','',0,'?'),(_binary 'È¡H¤ò€(bŸea|\'›¥Š','wp-content/plugins/woocommerce/assets/js/selectWoo/selectWoo.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™‹œ…þR\äS¨Šw€€N°',_binary '\Üû\è&iñ­L£\çHC„\Â\ZR2\Ï	µ¥#\Ë%||‹—MC','',0,'?'),(_binary 'È¢Sœ9\Ø.v›{\ÙQy£ø','wp-content/plugins/woocommerce/includes/emails/class-wc-email-new-order.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\ØqN#[]d)ô\n\0',_binary '\áQº\ëN\'œ\Í«ö÷™18½WYO\æ \Ò?#\Ç\ë','',0,'?'),(_binary 'È¥#µ?°\Ö\á³XƒH\ï','wp-content/themes/flatsome/page-single-page-nav-transparent-light.php',0,_binary 'ý‡\Ì\ïW\ÂP­$°~·\Ô',_binary 'ý‡\Ì\ïW\ÂP­$°~·\Ô',_binary ']° ‡ wý\Î\Ó]önXù¬\ê!“Oo .ò@\È\ì','',0,'?'),(_binary 'È©¬`\rQÁ\ÃA.S\Ò','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­\Ì@5´\à$\Äuoúa \Ö',_binary '…¸À\èN8fý›©?l«\êû}\ï§i­\Zn¼p†\ßø}','',0,'?'),(_binary 'È®\Ú\ÙMP.÷.¢DW\àr4¾','wp-content/plugins/woocommerce/packages/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd±J£M\êHƒÁ¿Œƒ·\Õ',_binary 'MiH€€´h’,aªg%A¨ŒU]‘\ÚF\ÝRYV¦','',0,'?'),(_binary 'È¿˜-\è\Ø`°uúª\Æoðò','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Client.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a m;Sœ·V#\å\ÓmóI',_binary 'žR9F¨\Ì\Ýóø\ì\Æ‡\ë47i}€Ê§”\ÙC^\×%','',0,'?'),(_binary '\ÈÃ¦\Ì¼ ùŸ±e»#\í','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/installer/icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³\é±7\îO÷ÁmøIbl\Zf',_binary 'Œ?\Í\ç(†Ï\ê¾¨Tr¹\Ù3Ñ£ôWsN Ÿt»Q‰','',0,'?'),(_binary '\È\Æ\ÏU.…\Þÿn\0)ÁÕ…\Ï','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/stock-filter-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Èµž]\ë\Çaá«õKz³®ð',_binary 'k¯›ô%ž´ˆ —Ez\Ö\ÅF\Åb¹eX	<VN×“\ÚZøªc','',0,'?'),(_binary '\È\É\ÖLŸ^\'\Õ\0‹ûÅ•3Á','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/metabox.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'óY& †	V\Ú\Â4Y\è\ï',_binary 'õyŸ¼À7µet\Óu\ÞùšZ†••Ais¡r\Í','',0,'?'),(_binary '\È\èÁÆ«ð5Ç˜2\îŒH þ','wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-setup-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K¯u¾\Üo‡þl?º?ý\å',_binary 'J\â\ØË½d\ßoCgš´Ï—§§M\Ðx€Jšs\ÞRš³K','',0,'?'),(_binary '\È\ítB¨<°\Ô`V­ù¯„*\\','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/gl.js',0,_binary '¬\ëQ»\àDó\"ñ’Ñ·ùñm',_binary '¬\ëQ»\àDó\"ñ’Ñ·ùñm',_binary '¯#\ì\æq\ë\âj÷{jÞ›[\'Y»ˆ®\ÍQrRÃª\Ö%Z`','',0,'?'),(_binary '\ÈþÿÛ€ \Äcö³Ôž\Å³','wp-content/themes/flatsome/inc/admin/customizer/img/product-page-title-top.svg',0,_binary '™\å€©‚†\êô‘öŒÉ¤',_binary '™\å€©‚†\êô‘öŒÉ¤',_binary 'ûšmR¾\í\ãJ\ãoŠ\ß-a¿AS–H×Œ+\ÏB\Ö','',0,'?'),(_binary '\Éö¤\ÖU‡´wµ\ê\ä\î–ù','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/ExtendSchema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ó\áú¨\ØZ\è\'öÀ®‹\Û',_binary '\è8þWùÞ—±/>ü{\Øx·Wœ\á\ÎD*ú|w˜\\p\Ú','',0,'?'),(_binary '\É	0»Šš\Ð%\æ¤¾ñB','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value/CalcRuleValueList.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼e¨Ž\Ó\í\Ã%/1¡’\Ô.@',_binary 'Q½\Z\ÙFê¯­ òMPÁ¬d6YÞ Mùœ&UM','',0,'?'),(_binary '\É¥ƒ\Û\Ð~\r\ZK4(#\ã\Å','wp-admin/user/credits.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»¡(íŒ‹‰#\Ñ\ÓAƒ\äó;\Ç',_binary '‚u«A\ê\Ãö“+I/˜ãŠ“\0»n‰N\Ë1G8\Ü\ZD-ú','',0,'?'),(_binary '\ÉE\Ã\ÔöNÔ®®Ð¤+ü0¡','wp-content/themes/flatsome/inc/admin/kirki/modules/webfonts/class-kirki-fonts-downloader.php',0,_binary '…\Ï\Þ\Ú\ÚÀ`”qUd°y\è¢_',_binary '…\Ï\Þ\Ú\ÚÀ`”qUd°y\è¢_',_binary 'ôc-Ç¢\Å\ÎB\È\ÜU½“XÐ¯k¶k\áÁ\Æ^ýB›E{ˆ','',0,'?'),(_binary '\ÉÄ§ªc`š\"hd\ÉXF\Ñd','wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/DeprecatedOptions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼D\Û\ì\Í\Û\ìÇ”a\Õcyb@©',_binary '–÷\Ê=\n\Ñe\ßZ”•¿#Ó¤\r\rô\Þ0V\ÔZ	„Š¯(õ‰\"','',0,'?'),(_binary '\É$¹mM‘¹#Q4 scª›','wp-content/plugins/woocommerce/includes/libraries/wp-background-process.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç‚D†¤GxW\\÷ª\ÔJ\ãÀ',_binary '‰n\Zß·…„\Ç\Ía\Ót’d»F>Övµ–W	Dn','',0,'?'),(_binary '\É\'þqRBúIo\Çû—Á\0','wp-content/themes/twentytwentytwo/inc/patterns/query-default.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tžy1}\ÜH\Ò\ÉyAn\ïšB',_binary '8\Üz\Î\å>_(zg7‘/B?\Òþ4Z0ùp\0F¹s \\\ä','',0,'?'),(_binary '\É5ªiD‰hI„6\Ìþ;','wp-includes/SimplePie/Cache/Memcached.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°\Ú\Ö\ç\n\Ñ\'Xlab\î\ì4`',_binary '?O\Õd6¸C\è‰\Îu—¸\Ö>Jrúýh«t»\×\íôe…\î','',0,'?'),(_binary '\ÉA7¨\'\áC#žwŠSûsŽ','wp-admin/css/about.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Õ\0H\ã\Ý\î<\Ù\íº\Ýù',_binary '\ß›˜É–£¦Ïœ2iF4u‘¬\æ\è]¢§\ÎÜ¬\Ä$nþ.\è','',0,'?'),(_binary '\ÉIG©øK(l½d9OÓ¶þ','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-installer-dependencies.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B~\ÑJ{\ÎÔƒ	­†òðJ',_binary '\Ë\Æ:R-\Å`³’\ã\Ä^Á\ä;·m§ócw¹?r\Úi','',0,'?'),(_binary '\ÉT{\ÖÞ‡\åôez;LýOh','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/cart.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.½\ÙÐ—\0´KN¾+cr±\Ê',_binary '*\ßF´¥<©yK\ì?¹e\Ç|ö_f´w‡¹.yF\Ê\æ','',0,'?'),(_binary '\ÉVÔŒqxb\"#üæ­™^s','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\×\ì,¼S=–\Ð\Í\ØT³8¨',_binary '»–ÑŠcY2\Ü5%Œ\É\Ï=dt}¯µ¨~^ÿ\Ä\Ë?','',0,'?'),(_binary '\É]f3b¬)X~9‚Z­C','wp-content/plugins/woocommerce/lib/packages/League/Container/Container.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\èp­\Û\äÖ˜7Ò½¶L',_binary '4Úˆ\"SÇ†«ün\0/\"ô«}O^x\\…\Î õ‹Î§\Øk','',0,'?'),(_binary '\ÉfF’\í.vyy\0\ìUœ8','wp-content/plugins/woocommerce/packages/action-scheduler/classes/actions/ActionScheduler_FinishedAction.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–‡ƒ! d\ç\Ôõ\Þt\ç\ë\é„',_binary 'Z\Ì:õ¹Ð«¥\Ï\ÅwiG€e&¢\Øg\×\Ç;((f\'Ó‡','',0,'?'),(_binary '\ÉlX”wÁóBõ*X§Wñ','wp-content/plugins/wordfence/images/sort_asc_disabled.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OÉ§\Åþ\Í*\ÒXÿ²\Û9e',_binary '¯v‰\Zþ|5.YX ©‚÷‰¤òZ–é¹Å¹','',0,'?'),(_binary '\Éq‡–R1B(‘I\Ï\ì','wp-content/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories/StoredUrl.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì£zSŠ³—wb€½ M4',_binary '·dPXÝ‰0#Š\\ÁSI=\0-&7‡\"§¸\ëp\à`Nb','',0,'?'),(_binary '\Ér\n÷\åúApO=BLw^','wp-content/themes/flatsome/template-parts/header/partials/element-contact.php',0,_binary '%\â\×\Ñg2\Ðx­%z`',_binary '%\â\×\Ñg2\Ðx­%z`',_binary '\ÙCZ„N\0:\Ì:/Ø¸g\"v“dÞCi…±','',0,'?'),(_binary '\É|<›ü,i\à\Í\Ïxova&','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-woobe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ò`\Ú{4†,M\î–\rµ\Ì',_binary 'XüÀ{†ª¦2\àšD\à›ùr\Ö;tC<ûˆNð½¹o	\r','',0,'?'),(_binary '\É5\ì0\ÎWoT\æ\ß_','wp-content/plugins/yith-woocommerce-compare/assets/css/admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mO_‰\ÄcL‰\ß\ÚRõ®L',_binary 'H?\îð\è\ï^T1\ìÁ\Ì&¹ƒI\Â	X\È(\Æ\ÏST','',0,'?'),(_binary 'É†8¨\Â\ÖÀpÅ»ÑµVý','wp-content/plugins/wordfence/lib/wfActivityReport.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«…ôþ/}\Ï\éU\ìG+\ï\ì',_binary '\'o–w”,X^\Èxšµ¯(˜ˆ•*\Î\Ý\å\Ã/ƒT?Œaµ','',0,'?'),(_binary 'ÉŽ£3tYJÐ¤\Å	ƒ\ê¶øs','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-cropped-image.php',0,_binary '³ò\ÛÓ\Í\âøi¦±\Â\ßn\áø',_binary '³ò\ÛÓ\Í\âøi¦±\Â\ßn\áø',_binary 'šm\ZüµÃ˜~v¿¾\n)&lVE\é\ãw\"—\á‰Ó\\# \Ù\Ñ','',0,'?'),(_binary 'É‘%r)Ž‚§¢{ü¯š+?','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Parser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+˜s=*ª|“O:\Ú\Û\ÅË',_binary 'r\Ï_;qu}L<\ÛFÑµX3´‚)iL\â\Æm#ž','',0,'?'),(_binary 'É“¡\ß\Ø\Íj\Ö=Wv\Â\ïÁI','wp-content/plugins/nextend-facebook-connect/providers/slack/slack.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®h«-ª¥žBsŒC\ÍE>\Î',_binary '>r°£RX€\Å^zjóŒ[¡\Ð\Öq!™\îzP´\ì\Ö\ì','',0,'?'),(_binary 'É¡îˆ‹Ê§~²¢Á¿.)k','wp-admin/includes/class-custom-background.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦\â ûIZFÞ‡À\Ë',_binary 'Ág?ef™•òšþQñ\ß/8\Z±¤Uì»³°úUP;¯','',0,'?'),(_binary 'É§‹ƒFNô <„\âo;\è','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/grids/grid-5.svg',0,_binary '¶¸ñ#1°6\Îk\ä3^T',_binary '¶¸ñ#1°6\Îk\ä3^T',_binary ')˜ ›¡‘\ì,0›p{Cy1¼´\î¯yj\íD\Ò\Ã\Ê1\Åó','',0,'?'),(_binary 'É©mˆ¨W\Ý;½”¢¸™`t','wp-content/themes/flatsome/assets/img/payment-icons/icon-sepa.svg.php',0,_binary '\èü\î\Åw\Ç`2©oi\'©*',_binary '\èü\î\Åw\Ç`2©oi\'©*',_binary '\èW²¬±%\ìñ\äwˆ\Ï\êèŠ–Îš\"Š”9DòÁ>H#9“','',0,'?'),(_binary 'É°\Âcu¥«Û¨k£V\'','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/buttons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=°\è\î\Ì\ç›\ë¨p±³¥®',_binary '\ØK²(¬l³\Ò\ì®L\â\n\Õ\Z5\á½y!k\Ü\ÄC•\"yûƒ=','',0,'?'),(_binary 'É±²Q€Gg\á\ì\ÌúªÁÿb','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/order-notes/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸|Hp´\Ø\Äþ{§`“ø«',_binary 'o\ÄÿY„o{\nP@\ÇGÌƒ\ïfÈ“ö}3ž\Í&#”\í¦','',0,'?'),(_binary '\É\Æ¡}e\Âl1ncE','wp-content/plugins/woocommerce/src/Admin/API/Marketing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\á6\Úu~3\ë\à4§D~s',_binary '´ö­ƒDƒ\ßH°\ÇSi\ÕÍ¢\r\Î\Ù\Úÿ\ë®X®Ÿdcs­','',0,'?'),(_binary '\É\Ç\ål…žQš[˜\Ó1','wp-content/themes/twentytwentyone/assets/css/style-editor-customizer.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\æV	q\"µ\Ð8³ mt*',_binary '3ó2‰/Î¹\î\ÅÿDpµnXe\0uQ\nO#‚G','',0,'?'),(_binary '\É\ÐlST6z¶„\Ä)hÛš','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/fonts/font-awesome/font-awesome.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S;f?4£ò½Q_\â\á_|?',_binary 'ú[‘)\ÂkÉ’­y\Ö\å+,/\')€Ó¥²Nw¬9Ä²±','',0,'?'),(_binary '\É\Ò°†“2D´i\Üe½','wp-admin/css/l10n.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µÄ¸øP)û|„ðqŸr²€­',_binary 'wppS¦½\Ü\"üDÀ.¼\Åo”MOŒm\ÇO©\'b\ËaÇ‹0','',0,'?'),(_binary '\É\Ó?¨\n!w\Z2\Ì#Iñwš','wp-content/themes/flatsome/inc/woocommerce/structure-wc-catalog-mode.php',0,_binary 'ýsc&õr\ãT\0|À\"@¯¥l',_binary 'ýsc&õr\ãT\0|À\"@¯¥l',_binary 'üqžqƒ‘\Â/ð\ä*l+#\êÝ¡\Í^;\ÖðÐ”3ú²\nH<','',0,'?'),(_binary '\É\Õ~¬\×\Ûe“òsg#™¤','wp-content/plugins/woocommerce/includes/queue/class-wc-queue.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£¥xNp*0A/\Ï\àð”wß¡',_binary '\\\èõ œ\Ä,€U§DY\Î;\Öjþû©%ð³¬¨\ê\Ó—X','',0,'?'),(_binary '\É\Ö,»»(~¬úa\ÌHR›3','wp-content/themes/flatsome/page-header-on-scroll.php',0,_binary '¼šñ%­(Ç‡Ÿ06þ',_binary '¼šñ%­(Ç‡Ÿ06þ',_binary '°*U\èË¯†]½º6œ˜\êˆ\ÎpúÌµ®\Ü\æ@\r™P\"','',0,'?'),(_binary '\É\Û\r;\Ë.]°–\ÛG¹À\ãõ\Â','wp-content/themes/flatsome/inc/admin/kirki/modules/preset/class-kirki-modules-preset.php',0,_binary '\'ûú±„° \Æ\ë\Ç-h\Ç',_binary '\'ûú±„° \Æ\ë\Ç-h\Ç',_binary '\Ç\Ç8z\ÝK\Z\ã\Ì1¯RvºnYƒe‘GA\0\ß-n’','',0,'?'),(_binary '\É\ÝÜ–\Ç\Ñ}¡÷¯>\âÓœ\n\Ö','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/read-more/stories/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's¨ò;+a:¸»\'á¢¦-¾',_binary '9½\Ñ\Õ-%øL\Ù\ã’\îŠ#.û»l\ëhŠš	€õ','',0,'?'),(_binary '\Éè±¤¿\ÞÖ‹O{ß¹q‰D\Ö','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\".\çOù„œ	•Á\"\ìO-B',_binary '\Ã`Åšç¤ôƒy\Îb´¶¢k\ít¼\Ê\äŒB±\èI©\Ô','',0,'?'),(_binary '\É\ï—¾\ß«h&£\'s','wp-includes/blocks/search/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o“tp{¤&<ì›‘6\ß1†Œ',_binary '\ný #8\å\áóÞ—F»ÿ\Ç\àÿÓ³l\ä\Èä‡—7\å;\é','',0,'?'),(_binary '\ÊY\Õý\Ã(þ÷B¶\î€','wp-content/plugins/woocommerce/src/Admin/Notes/NotesUnavailableException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–§\Ñož÷¤F\å•\Ã\Û)U',_binary '5’}-\â\Í×“ÁÙ»V\ÅO\è†kˆEQ(Ž^\×M±\æ','',0,'?'),(_binary '\Ê¼¥o†#§6Ì‹¿3òýs','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/summary/utils.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8WHñH\ÆY\Z;’¶#ù',_binary '\"ù+7\r\Ñ[N?[|\Ë)¡Œ@{\ÜÍ•gQt+f\Ùn','',0,'?'),(_binary '\Êe0=V>GR¹\Ü?¥','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-assets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KƒŠG—¥ž÷R)Õ…@#',_binary '«ó¬™Q\áÂ¢“†=ÀÞª!\Zº\ÂOº\ì¾\r\ÇÀ','',0,'?'),(_binary '\Ê ü†µtdrlPj','wp-includes/css/dist/widgets/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ü&¥•ú»…\Â\Ý\Îd‚ˆY\ê',_binary 'Ö³k=\Õ\×\nÀ\ÔGb\r¾\àqM‰÷4eñüNZ³­®¡9','',0,'?'),(_binary '\Ê%G«ÏµÕ¦ÁA\\mhøöX','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-setting-options-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©oÈºŒ¦É“±S\î¢<',_binary '\îð/3eÛ—w\Ðýk\Éjû.	…\\\è8g\Ûh«†Od\Í','',0,'?'),(_binary '\Ê(†q‚4P\è}ý5Ozük','wp-admin/js/inline-edit-tax.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž›_¡¢’hŒA?¹ø»D',_binary '±›LZV(jû\ä0\ï~\Þ\Z3u¿)›\Ôztef\n\Ë\Þ\ÇO','',0,'?'),(_binary '\Ê8u303\\WeYú‡³UF\â','wp-content/plugins/woocommerce/legacy/js/admin/wc-setup.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>(#×™õI::¤dƒ}Ø´',_binary '9\")¶Ÿ ³¿Xdº¾\á$2\0ƒš\è¹\È=K=6\éÔ‘Q','',0,'?'),(_binary '\ÊH;\ì\Ño¨ùzfÈš\Ë\ã','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/search-list-control/test/hierarchy.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ï\è1’”\Û%‰Õ‚\Å\n\0G\Èf',_binary 'õX]Q\Ä9\æ\Ûý\ãX¿õ\å\È\ì\ïûW%\È\Äo¥®ø','',0,'?'),(_binary '\ÊR±­\ÙÑˆ\é°Þ¿¾0','wp-admin/css/themes.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦ÿt\ìlŸ\Ïl¸’M\Zcq=',_binary 'Ã£Cƒ\Êr4<Sˆ \àsŸx\0\Õ¥Ã·ùh\æn17qm','',0,'?'),(_binary '\ÊUÙ†ý:£¬_«±ð\0~©','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì¶\Ñg‡&;¸\ÜÚ¶D',_binary '7Ágs˜\ØIo´\Í}\Í\Ö3;X¡Ò–¯\ë—\0§¯™×šE','',0,'?'),(_binary '\Ê^ JY\ï(iKÁpùV','wp-content/plugins/yith-woocommerce-compare/assets/images/04.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\è\èðh}P ?ø`±¥P\'',_binary ']\î\ßR\Ñ2J[P\é\ÉøÁUª\nLn‰²d§\0\Ú\Úù²0c','',0,'?'),(_binary '\ÊcMœ\Ð¼(\ÏÛ D`ý','wp-content/themes/flatsome/inc/builder/shortcodes/values/sizes.php',0,_binary '­JXªû{\Ï\Ç\Ú-2Ö’',_binary '­JXªû{\Ï\Ç\Ú-2Ö’',_binary 'žT¬Z\\‰³Šý\Ë¥Ø…²y1>\ÓOŒ¾».ñoA_ú§','',0,'?'),(_binary '\Êg	”\êh«ÿ–\Ù÷Y\nÕ´','wp-content/themes/flatsome/inc/shortcodes/ux_banner.php',0,_binary '•7±V‰ˆŒ¢iò{ll\Û',_binary '•7±V‰ˆŒ¢iò{ll\Û',_binary 'y\Ù\ÅMk~\'>\Ú_V\Ö+›£|zM­¥I¯­;O¼d\èV','',0,'?'),(_binary '\ÊhFM<@`%q-\ã\æ','wp-admin/includes/class-wp-filesystem-direct.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qyE\çh²l™Gë­—l(»',_binary '[\Â\äJ¿mù¼‘n’,!\nþõ\r\ÑbÙ¶H\áI½_Á‚','',0,'?'),(_binary '\ÊkC`„f;Zx´p\ïô†','wp-content/themes/flatsome/inc/admin/kirki/controls/views/radio.php',0,_binary '¦.3„œ„g)*°Ž\É\ä)',_binary '¦.3„œ„g)*°Ž\É\ä)',_binary 'xõ\ë’:cHj®‚I\æü ¯b!ºE\çqð\è°+_','',0,'?'),(_binary '\Êl\Ýø\Ä4_r¸,7\ÞiY','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/arrow.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ž\ÅN\ß{øyT&,\ë\ØÐ \é',_binary 'ƒ…žb\È\Ý@M§Žw›\Å\Ç3Qn‡D}Õ»ñ’^ _:tø','',0,'?'),(_binary '\Êo\ëv¢0K Žq¼','wp-content/plugins/woocommerce/includes/react-admin/emails/plain-admin-report-export-download.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`k\êÓ‡!‰\0¥^\Ç\é\"¾C',_binary '‘\à?€fC\âf{f\0~ƒfÿ\ï,¦ö‚N‘\êÜ˜øû','',0,'?'),(_binary '\Êp–û1‹û{\É\0zc{›u','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-nl_NL.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~Ñƒ¦	¶»rÿ]Ú‘',_binary 'x\Ñ÷@\Ö÷¹ Ë\æ¶\Zç™/i\Æ\Å7§%x!	>C†','',0,'?'),(_binary '\ÊqÏ·« \\jÉ»¡!ö“','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-webhook-deliveries-v1-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²*\ãß¾:\Îš&”\Éx\î',_binary 'zw?³H2‰ýÐ¢~X‹n\á\0l/\"(\Úe´4¹T€.Aq','',0,'?'),(_binary '\Êr¹ž{¤\Zk¡À\"¨¤k','wp-admin/css/site-health-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ð]\Õ!S\ç\\çŒ«ñO\Ý$\Í',_binary 'Wnµ}\Õ\0Þ—XyZù›ó\Éqô›±-ÁŠµe_~†','',0,'?'),(_binary '\ÊxjP\Õö¼¨\Ù!c\Èx','wp-admin/plugin-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'À±4Ä”Å©5~5&\ï\"Ë‘',_binary '‚)@V³;E€nä¢£å\É2Ûª\êUoµ_\Ü< X(','',0,'?'),(_binary '\Ê~Ta2l¤\Ë\Ð;¡6ëŠŒ','wp-content/plugins/contact-form-7/modules/constant-contact/contact-post-request.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(E\É\É\êbŒd¤\ÔlY\Æ',_binary '\ÉO\ã\á\Z£Iªc\ÌH¬=§\Ç\Ö\Æ<.\r˜Ž\Òj\ÄY´VJµ©9','',0,'?'),(_binary 'Ê	iôð\ìþª:g•y','wp-includes/blocks/search/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}©kI—«K\Ú–\Ë\ä\Ïpó',_binary 'æ¡vq¯Ruò#Ç‘õ\Z\Æã« ûžbJ²Ÿ6)¥¥\0p_','',0,'?'),(_binary 'Êƒ¾¦ª\Ï\äö»\î\ëK','wp-content/plugins/woocommerce/vendor/maxmind-db/reader/package.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\×\×:D{O\Û\é\ê#cQ—²\Þ',_binary '\Ý\nc›Irm\',Œ¦wU¿K@g8O( z›.¨`2¢','',0,'?'),(_binary 'ÊŠbm:°Iy3’ª\è’','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-most-stocked.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z%Kú½P\Í\àû\Õ\ÎR\'\È\àA',_binary '‰þ¹GG\ÝM~\ì_*“¢¤ \êª\n?¼wÓ¼x{w´','',0,'?'),(_binary 'ÊŠš2¼%ð‰+a_\ÒôLF','wp-includes/blocks/columns/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UÖ¥\"\Ø{H¶÷=\\Á3',_binary 'G3¼\í\ï\Ä©È´E\ì\ç%D*yI·\Ü\Öÿ)\ÔJ\r	’)','',0,'?'),(_binary 'Ê¡û*\åž\Ä\èÀý\0žuM','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-enhanced-select.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<*FŽ)ˆ\Ù\ÏÙ—\n+	ª',_binary 'ö´‹dS’®WYF¦,i¶_€\'Á¦\Í\Ñ\é1\é	µÀ','',0,'?'),(_binary 'Ê£/ðËºSD	\Ý=„','wp-content/plugins/woocommerce/vendor/autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'KÂ»€\ÒBO™~C\\\Æm',_binary '\0T#º&\ÂmÄ‚HU·,W\×ˆrðÜ±/+õòaŠ6!\\','',0,'?'),(_binary 'Ê¤AZz\Ý	j•;p4','wp-content/plugins/ti-woocommerce-wishlist/integrations/woo-custom-product-addons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ï\î°[ýPbp©¯[yv',_binary '\å\Z\à3X-:$”\ã%†\nì€“\Å9‚ŽÙ\Öp?J;','',0,'?'),(_binary 'Ê¬w\×y.\\\ØI„R','wp-content/plugins/woocommerce/src/Admin/API/ProductReviews.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ø­¬ýùÚ€|\æy¼	A z',_binary 'o\ÌG‰$Q’£ªNY\ÐBý§A`4\ç\×@­|,\Í\íýÀ?','',0,'?'),(_binary 'Ê¯·e¡6ž\ÞÀkÑ­Ÿ\Î/','wp-content/plugins/wordfence/js/admin.ajaxWatcher.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\Ë\ãð\ç›Å¯)\éô\í†\â\Å',_binary '\Þ\'ƒv¯á¦¸ñøÁ =ª£\Ç\'X¸k\ë\Ï<6YS”t\Ä','',0,'?'),(_binary 'Ê´	T\Üõ\Æ~ƒ1ô7\\¢˜','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/woo_hooks.svg',0,_binary 'P\Õ\Ñ0m5©^Áe.¨5',_binary 'P\Õ\Ñ0m5©^Áe.¨5',_binary 'ö˜P6ó\Òz6\0hw\çÿ<°¿•\Ó\ï\îø5ÁŽ\×r™','',0,'?'),(_binary 'Êµs÷‹	‹Ÿ\Ï\éR>ø\Ú?','wp-content/themes/twentytwentyone/page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\0=œ?\'!\"Ë­OB85\ï',_binary 'mDTZ\ÈÀ\r«Ï„(c‡zG™ÜŸKlö@\È\àƒ\ÊKv','',0,'?'),(_binary '\Ê\ÄüƒW\å>\ÄÒŸ¢\Ï\ïþ\È[','wp-includes/Requests/Exception/HTTP.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥\É\ËÅ³ÙžhƒXªr~n\Ùf',_binary 'oýEÂ²tQQbo\n®þº\ïr\î¡Qq\Ú\á\"/±‚Ž…','',0,'?'),(_binary '\Ê\Ê&·§\à®\ï‘~sXm','wp-content/themes/twentytwenty/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ö¹§,Bx(¾—É–µN',_binary '_\ç±ûôj\É5Ž©\â_iÄ\ZNDs+n\ê:J§\Ù@','',0,'?'),(_binary '\Ê\Õ=\niš²h2Ž“\Ó5','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-fr_FR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æUº¡A\Û\ß\ç? |õ¥',_binary '/q‘_.%w¾¶d÷”î§ºQô­¢M¶1ßœA\Ól\"ó','',0,'?'),(_binary '\ÊÜ†R(\'2Whpõ¤—G','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/AbstractModel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@ÒH‰ÿC¤5Ì¨[\0¥\å',_binary 'ÀXú\Íf:µM‰t\ÞËƒ#û¥sDú4(øNG†F\èº','',0,'?'),(_binary '\Ê\Ý	b¢·–8\Î[¿¶¥y','wp-includes/js/wp-emoji-release.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l†\Åo°»cñ\\\í¥Ü˜',_binary 'Q¯dÁ:À®ü\Ê[U4&&;J\â£Í½g–ûr„\ïV¸','',0,'?'),(_binary '\Ê\Þ>J\à„BP \í\à\Ë^\î“','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-image-left-large.svg',0,_binary 'YO‘e³´V\ÔùHi\Ç\Å\n,',_binary 'YO‘e³´V\ÔùHi\Ç\Å\n,',_binary '¥öO÷\Ü{5V—1\Ý$f.-%Íª¢3Ê˜¦÷¸\È\Zÿ\â','',0,'?'),(_binary '\Êà¿°L#\ÅYz¿[ #X','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/gfml/icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦cË¯›6\å.Œz; µ\Ê=',_binary 'nw\0¿€\Éqš;\çQdh\\¶üî¼„pN[\ÕþF6\Ö©','',0,'?'),(_binary '\Ê\á\ëñ4s³öôWp?§\ç','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/stock-filter/preview.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©f\'¤ Á\Ý	!?Š¢,\Æ\Ê',_binary 'd¢¯\Ó@XüóŒ•fš†’Ð’ ‰]\à¿dZÍ±„','',0,'?'),(_binary '\Êã±›™‹­ V9ø{\â¶\éb','wp-content/plugins/wordfence/views/scanner/issue-postBadTitle.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~¹ñJnw\Í\æ8z2óswa',_binary 'œu<üOñ8Be\'O¯b\0yŽPJ\Òx7˜\çþ\ÜÿIó','',0,'?'),(_binary '\Ê\îOå¿¯uRòû\ÒcÁ[j','wp-includes/sodium_compat/namespaced/Core/HSalsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[cl\ër‹u©	\ÃÐ¡u^',_binary '6p\Ë\Ó\'`À+*[AG\à4Šüúü^6ÅŠ£\è%\ÔÁC','',0,'?'),(_binary '\Êò\n$P\Í9†Ú€]ÁƒBC','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')ÂŠ\ëŠ=¸¯5\â]=\ãMkš',_binary 'òøZ\ÍjK\r\ì¾*\Ðm\n˜¿\â\Óx,c\îb¼”Á','',0,'?'),(_binary '\Êô9À\Ý\ï„3p—\ç^’1\É','wp-content/plugins/contact-form-7/admin/includes/editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pF\ì\"Š÷:DÒ“ð\"',_binary 'bÙ£oL^-\Ê{‘$zF\çH…ºrv‡÷vŽ/Pžƒ','',0,'?'),(_binary '\Êø\\8;  ~r—+CZ','wp-content/plugins/woocommerce-multilingual/classes/multi-currency/exchange-rate-services/ExchangeRatesApi.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Á\Ê$&j#5\É{¯÷ŽA',_binary '¸:\r£R¡ôZRD~6ûT˜\ÆDbˆ]ñe¢ƒ–','',0,'?'),(_binary '\ËTÿ\ïò\ê\r\Ã>ö\ëí³‘','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-system-status-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹s\çû;n(Pö\Ñ9¦‹E',_binary 'ø¿@\ÍF+\Ó\Ø\Ì>ò`«•úÍŽ…C\Ñ\ä/(	:+v“{ù','',0,'?'),(_binary '\Ë\ÈO\ã\ê\Õð´R¯kz¤\ç','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/CompleteStoreDetails.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ï\Z¤E\×\\D-ª¨PA+',_binary 'G\ä(\è«š*+úú;.0ƒ\n6\ÚLVÀ–Ïµa¯Mq\Ó','',0,'?'),(_binary '\Ë¢Pã‡ …\êÿ\Ñ\Þ\ç8\ä','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘F[|.\Ó1\×\Ðx\ë	&XfN',_binary 'ó›\éDmõ1%Œ©nÝ›´_dr° \Ô\rJ3Tr','',0,'?'),(_binary '\Ë\ç\Ó=«$\íCš9\Õ&\áœh','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-pt_PT.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\Í#pi\ÃüIn»\ÍMºŒ',_binary '„A>\î\ãRV\ä¬o\ä6ŽzL\ÚgW\ï‰³\ÑEÿ\Øl','',0,'?'),(_binary '\Ëvˆ!Á\Ì#\É\Û]‡>\æq','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/select2.full.min.js',0,_binary 'n\ë³]7³\Ú;2¨û·})',_binary 'n\ë³]7³\Ú;2¨û·})',_binary '¶»ÁG¦.\ã?=VX!¶>÷…•6\ïQee\\³¬','',0,'?'),(_binary '\Ë!¢#ò°\ÕI|‚\ÛF\é','wp-includes/js/tinymce/plugins/directionality/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\Ö\"\èX	& )\Æ\Ï=Ê€$',_binary 'µ&‹[\ì@\à\Ê5ˆ¹(\Ó¬cv‘§LûYI6ðB;)-','',0,'?'),(_binary '\Ë$\â·&\âJaU\Þ&ý¡','wp-content/plugins/woocommerce/templates/emails/admin-failed-order.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú\Òlÿú<–ô<\ÒH\Û_¹¿',_binary 'œ\ç\Èpg…\Æ\î\Â\ÚØ“\Òg,\ïs…‚±\É^L\ÒHu­4\Ñ*‹','',0,'?'),(_binary '\Ë)K§‹>O—$£ºº\á','wp-content/plugins/woocommerce/src/Internal/Admin/Coupons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J‡¾“~\ÄRü¨¹›ª\Õ\Å1\ê',_binary '\0*!Fô÷‰;\áÂ\0¸D¼îœš¡ó#\Ö\Îú\Æ@\É','',0,'?'),(_binary '\Ë,¯\àœ\îHSÃ—É±\Ç','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/billing-address--checkout-blocks/shipping-address-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o­\Ô_ph\ÍnÝ® ¸{Uz',_binary 'Íµ£o{42Dw-ñ®\ÕþŠõEÓ¡bUiw‡\n.k','',0,'?'),(_binary '\Ë,-¾§\åõ¸¯,j$xK','wp-content/plugins/woocommerce-multilingual/res/js/product-custom-taxonomies.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x-iKø›í©ª\íµ-<\Ê',_binary '\ç\Ðw\à%Œ*\à\Âr-¦éµ·¦wøÀ7‘|Dd O¡ùM','',0,'?'),(_binary '\Ë0Aò\njym?˜U>=','wp-content/themes/flatsome/woocommerce/single-product/share.php',0,_binary 'pí…«\Ãg\îV\ÝXp&JI',_binary 'pí…«\Ãg\îV\ÝXp&JI',_binary '®\ÐTgu\Ã\Þ#\ÔV|ZiKy\éƒ(ž#\Ì=','',0,'?'),(_binary '\Ë3\ÝKñöC¯,~¸|“hM´','wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-rental-and-booking.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ž¢¿\Úõl9Zž \n“¯e£',_binary '<\Îò\âvc\'ó&\Ï\é\í\"\â€\Ìy`¼Z\Þ2œ²!@r±ü\Ö','',0,'?'),(_binary '\Ë5V›x\Ç,$¾>7dýk»','wp-includes/sodium_compat/namespaced/Core/X25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ú¸búò¯9ô°‡±M',_binary '\éF©/\'¡€M%”9ô }@¬\ÎfW£>Œ–S*­m','',0,'?'),(_binary '\Ë5\îw&X~\Ç	““Œ\Ç–','wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ð¦\ØT|f°×°$fU',_binary 'Yôq\\(#Jw!Z\íû@Í“Ú-/N\n\ÌY0:\Òù6i\Ï','',0,'?'),(_binary '\Ë6=\Z-»P´Cd’\r\ê','wp-content/plugins/woocommerce/assets/images/woocommerce_logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õt\ÜP90$BNó\å8ü¿ý',_binary '\æ]j¶˜ÁuW!M\Çe\Ú}\â2Ê™F\'‘\ËE/÷·8‹\Z','',0,'?'),(_binary '\Ë6 <¥\ÊC\êï®¿¹V:(r','wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\çbe& W\à“\å\ï“\ÍÅ˜„',_binary 'Iu{W\Õm©bk_\æ\Ê\ç€ùý\é.ªcx\rh+KŸ','',0,'?'),(_binary '\Ë=M\Ø\ZýSj™\è¼\Ò\\A','wp-content/plugins/woocommerce/includes/gateways/paypal/assets/js/paypal-admin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ\ÇR¯S¢\ÃÒ½IZ€\Ôvó³',_binary '\ëð|A\Ê\Õ\È\ÃKpô\êflrW ýþ!!È¢¿TŽ','',0,'?'),(_binary '\Ë=\Þc¾œ2\ç¼Hš(O\år','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/OrderCountRuleProcessor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tmà´­·\n„VR¹¯l\è',_binary '>û’&`Š²\Þnr\È\Ã\éó\àðÐ¹´Þµ\ÏÒ®@G\\„t\ï','',0,'?'),(_binary '\ËE=µÖŠ÷´†;\É_','wp-content/themes/flatsome/inc/admin/options/header/options-header-search.php',0,_binary 'µ5I\â&h\à\æ¢^§™†',_binary 'µ5I\â&h\à\æ¢^§™†',_binary 'p\nSó\í)\ËÜ“ó²ÿñs\Ü*›`Ko\Ã÷=˜\ì#\â?','',0,'?'),(_binary '\ËF\Ë£R\\\îF‰\Þ)}','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/es.js',0,_binary '$ž\0D/ò°__Ž5\Ð\rŒ^',_binary '$ž\0D/ò°__Ž5\Ð\rŒ^',_binary '\ÏbBÃ ö\n%\ä6 ý\Ím}‰CF>\à\å,[r\å÷\Ä','',0,'?'),(_binary '\ËU<\Ý?Y,õ\Ï§Ø»(','wp-admin/js/svg-painter.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\æ¾Pr\ëu6ª<jsF&„\Ë',_binary '\ÌW\ÐQ\îžüVµ\ä\ZA¦6\ïûIn\è_G§„É»Ü€\ëÔ’þl','',0,'?'),(_binary '\ËU\Ð\Ä}\ÚB£\Í	Jsýª','wp-includes/class-wp-object-cache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÍnÌ©$¦³¸›–•¦/V',_binary '…¦\ÏO‹\Zm7l‘‚\×üWž´\Ø2ö…m´_/2ü\ì¸$ù','',0,'?'),(_binary '\ËWV~/‹“ª’©:9[N\×','wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-fifteen.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž±2\"=¨¶„3_Ë‘µœ',_binary '\Ï1 .G¤g6\ïR©\æ˜\ë3_€Mû¬tG#]\'5Q','',0,'?'),(_binary '\Ë[.hÂ¬\æ–[¸\\Mˆ\"´','wp-content/plugins/woocommerce/assets/js/admin/marketplace-suggestions.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FJr±\éxgZm(',_binary '\ÓTÁ´\ï‹F¢Nºx5{\éÇ³^\Ç{\Û%Oj €\×;\Ô!','',0,'?'),(_binary '\Ë_·T+\Þ\0KrsŠv\á','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader/class-manifest-reader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v»\äL\\`JR3 }¸3:®',_binary ' ÿ™\Ée°~µ7N\í\ß Ç¥3ÙžÁ\Ãuk±\î1Só\"t‚\Ô','',0,'?'),(_binary '\ËcŸÚ®q€¶\"–.|0>','wp-content/plugins/wordfence/images/icons/check-response.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NŠ¶Fòô\Å\Ø\Æ¿\â¦',_binary '82f…)³o>\Ø\æ5iq)»\Ãe=\Ò\Öò©G}\ì\à','',0,'?'),(_binary '\Ëp‘\åŽñ\ÊbÍ^\ÍG”#','wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/onboarding-product-import-notice.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N;:¶\Ûõ»è£¸W½Œ\É\"',_binary 'ú\Âzó\æŒ\è{U\à=4y\áŒ*HüB¨µ·\ç~d\Òö\è\Õy\r','',0,'?'),(_binary '\Ëqò›8\à]C¤\Ý\ËÖ”\Õ','wp-content/plugins/wordfence/modules/login-security/views/common/reset-grace-period.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ë²ü\á6\ÞÏœ\Æ{¼/\åy',_binary '\ç€?a‡\Îd&ò.\íÉ–¹¦¤…\Ðq\îV$\Ë\ÂMd','',0,'?'),(_binary '\Ëy\Ð6‘6l\ëšM¬C·','wp-content/plugins/wordfence/views/waf/firewall-status.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ý\ëû\Ø\Åð¸S\Ó4,=³tP',_binary '\Þ\â-.\\zo¥Ö‘úÊˆg\ç¤mP¤P\íR§.\Ò$\ï','',0,'?'),(_binary '\Ë|Gµ\Ò$\ê\Ñî¥‚\Åk™ú\ä','wp-includes/js/dist/vendor/wp-polyfill-url.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñ˜>d KP\'IC¤\ç3µ½8',_binary 'žköõz\ê¯\Ï:ó´—_sDpþxe%J\Ø	½‰õSTº_','',0,'?'),(_binary '\Ë}Ua&gl\Ã\äi¸)º\ë\Â!','wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r,86,úÕ¯ŸøDe\Â÷$\ï',_binary 'o!\Újh°oP\é\Í\Ìd‚µ¢6$ö\ÛÞ»;õ®D‚\rN™','',0,'?'),(_binary 'Ë€g©¨3½/5Ž“ð\ÕR','wp-content/plugins/woocommerce/assets/client/admin/notices/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž«Ù‰ž\Ï\"”—µ$Ø',_binary 'E\Øx²\Ð\0ö†¥ñº\ëþ\àG\ì]’:ð¼Ë—:‰9.','',0,'?'),(_binary 'Ë€\èa—hšöù?„<`6ým','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Õ{ü’F‹‰\ç¹Á\Ês',_binary '\Ö\æC\â—f\é½j¹I\0óQ¦»önmþJþªI*Á','',0,'?'),(_binary 'Ë‚ž\ZU‰\Ü\àg\È\ÅKš\Ñh«','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Exceptions/RouteException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÛM\à%uV +Â’ôú<\Ô”',_binary '1.P\îž\ã‹\Õýó}T\ë³\nŠôüúÿ§f%Ÿ,\Ï7Œñ','',0,'?'),(_binary 'ËƒõvƒŽ\Ìl\Ès3lI³¸‡','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/metaboxes/tab.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E¢É»J…º\Ô4?\ÉÎ¦Y',_binary '39þ²r…BBN¥\ÆZž?®;r%¡ò4\Îê°„Mq\â ','',0,'?'),(_binary 'Ë†]g–1{[	œpeŽ','wp-includes/blocks/video/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/cO¡ÿA\Ü\Ûÿûq\âña',_binary '\É\Þ\î xÑ­Á\Z¶V\ÇPûžsŽbªsÒ‚\ÄÏ…”l(A','',0,'?'),(_binary 'Ëˆ\î!h3G\Ð`þa\È÷	','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-category/example.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/+\Ñ\Ûb\Ñ\Ê\Ïúj®+\ìc\å',_binary '\áoñ	4\èK|ªþ\â5\á;Ó¼\çª•\Ñv\ã—Gwú','',0,'?'),(_binary 'Ë\åGä¯€oe·ÿ\ïoœ','wp-includes/js/shortcode.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@¨¿ñ\Ð\Å\â\ÉP}óSÎŠ',_binary 'yae\ÃaK\ÔµR\å\0%\Ô\Æxy¿Áuþyûâ†¢','',0,'?'),(_binary 'Ë\'À\Ç!¡Y.\\ò\ËjŠ','wp-content/plugins/woocommerce/assets/images/onboarding/bacs.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å$’n \Úúþ“»3m[¥+',_binary 'e\à7¥#1žT=:l\Ô5,ç‡Œn…˜\Z\ÒXnQG\×O¨','',0,'?'),(_binary 'Ë¤Ô’{%kò¥Ž#¶f\Û','wp-includes/js/mediaelement/wp-playlist.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬\â†ó3|G^\âcKT\"\Û',_binary '\'\èe\"ÊŒ€_(nŒ\Éfú\íww\à‰¨\ZŸNª2\ï+ ','',0,'?'),(_binary 'Ëµ\Ð\nþ»ð#!:>G©©','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/bootstrap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Þ¨™Æ\n%\0\å\ï‘',_binary '\îõŠg&Agpª\çI\è84\Ý\Z\á\ç\Çœ\ÛB\Íùj ÷','',0,'?'),(_binary '\ËÀ\â\Ór.Á\Ñ\ä¦•','wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-plugin-panel-woocommerce.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	\æ\Êñsd&•»XOµ—b',_binary '\Ú5“yc[¯EgU\Ý0æ‡mƒM*\ÏeG\á×­\ÜOË¯X\×','',0,'?'),(_binary '\Ë\Æ\î*÷	\ÍkŸˆ8dÀeo','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-package.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X¶\ã\ê\ê\ã|¥‰ O{@¬<',_binary '«•\Æ`ý\Üºfdš ¸Z¬öU\Ë;x¡\Û\ÔH&}','',0,'?'),(_binary '\ËÇ†\ÜQ½_yœdö+£','wp-includes/sodium_compat/src/Core/XChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X†ñU iU0\Æll9ýc',_binary 'þ_\Òv$\í¸U7_‘*\r?¬+ó^÷Œâ‰¾¾Ä€','',0,'?'),(_binary '\Ë\ËO[±\êÐ‡™§t±','wp-content/plugins/wordfence/modules/login-security/js/jquery.qrcode.min.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ð±\×Ô¹°´—Xp`me<',_binary 'wP\0\Øp\ÔzuYDS\Þz(W ß¥‰\ìP¾3$S‘öò‘','',0,'?'),(_binary '\Ë\ÑpÖ´È‰\í\Çi—\n!','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-block/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yIy:•(\í)K{°^',_binary '9A 2½‘„€%É–:Š¯ý›Ëºu‹±«KVœò','',0,'?'),(_binary '\Ë\Ô\ì5*˜t\Å$\ÎðD ','wp-content/plugins/woocommerce-currency-switcher/views/auto_switcher/roll_blocks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';$}š‚\ÅÌ€”\nñ¯dRW',_binary 'N{›\Ã>\ë>eµ*\ïvJ]\ÑD0«(,H)\àsÿI4','',0,'?'),(_binary '\Ë\Ö\æ»Nú½\0\Ù\ÝÜ¹\Ît','wp-includes/js/jquery/ui/spinner.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€Ešy$,QB»˜úž¨',_binary '\äeŽ{Qöv\Ì&\Ó\årŸ›ý:\Ó3ÿÿË¬¢©/\\+f®','',0,'?'),(_binary '\Ë\ß|¸\ÇC\å\å\Z\èc¢9Š','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-cart-items/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”p?TFg?\å4ý-\Ö\à\Ûd',_binary 'ô\n\r\×ežªešD<¿\é0Š­\ÍJ¾e5¡L:\Í`wÄ¿B','',0,'?'),(_binary '\Ë\èQú\'®\æ:\ê3\í˜G\Ý','wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_AsyncRequest_QueueRunner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ñ¦xQ\'XX ¤öè™…~e',_binary 'ó\ÛY*›<ù{ž~´eÖ…§\ä]|½bó\å5*z(\Ó5`~','',0,'?'),(_binary '\Ë\ïv\íE,¿-O\ä{\Ïº–','wp-includes/link-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô¿«;†_¾I\×z¢²‹',_binary 'Ï·š—û \í\èy@8øp”ù\Î\áWñÛ—þ\ÝüB]LóŽ\ä','',0,'?'),(_binary '\Ì:Sûj¹¦¹òÖ¨\Ô9','wp-content/themes/flatsome/inc/builder/core/server/src/Post/Post.php',0,_binary 'ªk\çr3Ñ§\î€\Í\Ú\í”',_binary 'ªk\çr3Ñ§\î€\Í\Ú\í”',_binary 'l’g\'e´±=¾ó\'aüK\r\î·x\î!ú{óYûQT\á','',0,'?'),(_binary '\Ì´•\Ê{\è@\àqŽ¡mu','wp-content/themes/twentytwentyone/template-parts/header/entry-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WP›I©\n×ž\Ë\ÍUP¦Š:',_binary '\Î2&¼—ñ. §\Æ\Â(SG—lý²£^\ÉNÁÿC&/Ïµ','',0,'?'),(_binary '\Ì\Þh\ä\r+¦šŽ¼÷žn','wp-content/plugins/woocommerce-multilingual/templates/currency-switchers/legacy-list-horizontal/config.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ­\Ë\æ\È¼\ë†*Eöz',_binary 'tcäŠÙ¯\ÐPÏ«ˆ £\ÓGTWE[F\ÕÿŒ\Ì','',0,'?'),(_binary '\Ì!\éLT\á3•Ÿi\Ù\êx\Å','wp-admin/update-core.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŠµGÜ¾ýž\Íu&C\0Vˆ',_binary 'È³\ÊÄ‚š7Zvh\ßQF\Ãé²¡€\Ìy\Ó2dÖ¦\Ú\ä=','',0,'?'),(_binary '\Ì\"eš	Í±é¾¤¹ö$Ž','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-ru_RU.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r@U¦\ã¶9Ÿ\Í`mñ^€',_binary 'F$N\íÿmœt\ÆOý r ¤½^š­pl\ÓF?±C1¥','',0,'?'),(_binary '\Ì\"hX\ÙÞ…Ô³#Jª°t«','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/customer/constants.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+ñ†÷\Æuµ7(\Ë(+\ébD¿',_binary 'e(—²­3©Ÿ¸\ì(\Ê\àg1\Ã˜g\ä\â—e\Ít|ƒ¾8','',0,'?'),(_binary '\Ì/¦}‘¡Â¦•\ÆkA¸Zj','wp-includes/blocks/query-pagination/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E$ý¸˜1»r§õ{1Ú©X',_binary '2b°šk\ÕOŠºyô@\nôÝ•ˆ?õQ˜­›\ÍM*’','',0,'?'),(_binary '\Ì2©\ßR%—o“[\ZoR\Ú','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-settings-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†o³A«‰MŸA\Þ#Š\Ç	„',_binary '}4…G—ÿ…\ç\Ï#H\Æ]_­Eõ9B\ÄøV„Ã®V•¼','',0,'?'),(_binary '\Ì=`\Ê:‚°º®Ÿòx~”\ë','wp-includes/blocks/site-logo/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ù”³,‡#D$\ÃQr±`\Ü\Ë\Ç',_binary '\Öx\Æd\Ø\Åi·¡Þ !!È—+C\ß0òÿ¸Ö‘µ“G÷','',0,'?'),(_binary '\ÌB•E™\Î8\Û\ØAcª+m','wp-content/plugins/woocommerce/assets/client/admin/chunks/2953.style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\Ä\×\ÄV2~®¬\â\Ù^Bˆ„\ç',_binary 'å¿€\á:ro2…Gu\n­9\è‡7\ìGd\Äh\Ø\Z8\ê\'1w','',0,'?'),(_binary '\ÌM|\Ë\Þ	\" T\'„}¨\î\êA','wp-content/plugins/nextend-facebook-connect/includes/provider-admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9º\â\'‘\"…\èJu\ï\Î#X˜',_binary 'E\Zý§\'~!‘ \ã/t”\ãg|ª5÷û\è8k£«S','',0,'?'),(_binary '\ÌM\ÏTq&[?ýù>ì¹Š\å\n','wp-admin/css/colors/ectoplasm/colors.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ña\Ôb\æ.3\í^\ÝDSo',_binary 'ˆxªnûˆ’0—´ #¡G.±ì¦¡!!—i\Å»ø\È','',0,'?'),(_binary '\ÌM\è\Ö\ë\àz\ßÅ­Yºü®','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_444444_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ØG\ÓJû‡u;Q\ÔZ6ø½',_binary 'ÿû…\ß\\MUŒ\íKhQ¯wÀC©¶i\ÖV´î¢¹²\ÎJ\'','',0,'?'),(_binary '\ÌQ˜‘9²2L\Ò\Ód:\àúB','wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/builders/gutenberg/class-yith-gutenberg.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q^\ífYC†Ÿ‡¬KÉ¨O°',_binary '\Æo‹\×ö±7›ø‰ñ\\¥\Ö\Æ\0\\v@Q\åE¨\êª','',0,'?'),(_binary '\ÌR¦C/\ëVþ¯€>gŸ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/prices/utils/price.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“@#z1a=)\×ÿ¡d\n',_binary 'q™q`\ÛEC\á\ãCƒ@j¿0*:Ë¸9»n„svÿ','',0,'?'),(_binary '\ÌVÚ®™œ\Æ\êM¯\éjÓ','wp-includes/js/plupload/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u&\n©TIŸzº«ªˆ+¾',_binary '¼ÿ\0v1£\ês\ÔN\í>cIDÙ¦¾\Ö„I\é­0ÿ-','',0,'?'),(_binary '\ÌZŸ÷„›šÝŸGóÕ‹','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-switch.php',0,_binary '`_¬\å¾\ÎnUŸý³\"\Øx°',_binary '`_¬\å¾\ÎnUŸý³\"\Øx°',_binary '\×?­(m¯\Æ–\'÷MeTƒCÑ¬u\âmx‚\"Ô½³ò\'–','',0,'?'),(_binary '\Ìa“\ê\Ê>Vl\×X–g^','wp-content/themes/flatsome/inc/builder/shortcodes/ux_menu_link.php',0,_binary 'U¼©\Ö\æO\ÄZ©.¿®¢|',_binary 'U¼©\Ö\æO\ÄZ©.¿®¢|',_binary '\Ü\æ;\ÂN\Õ\r\î(ƒ¸¨rr6´mÑ¾\'\ìL/Ñ˜\Zõ]','',0,'?'),(_binary '\Ìd\\1\âEf´a\éÎ¡\Zöa','wp-content/plugins/woocommerce/templates/single-product/share.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Eb\ãvl(\åB€\ï³S|',_binary '°\r\Æ\Z\Öü¿º >e\n\ã[\ë\Ü[–¢0(TI,ß¦Û³¼‰','',0,'?'),(_binary '\Ìi\ë!Vg\ìõ` \Ûf“\á‘\r','wp-content/plugins/woocommerce/src/Admin/API/Reports/PerformanceIndicators/Controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÈFô~>²\"„b6Ž21o',_binary '*bL\ÍC®-F#B‹|U\\A#ÀjHB\Ç*\àejc\Û\"–S','',0,'?'),(_binary '\Ì\"pu‰â¦˜7­U£pø','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n–cR\ÙW†™¶)nD|û',_binary '¹%£‘\ã¥X(\Å>¥Y\à FöŽÜ¨NF´JœÁ<m','',0,'?'),(_binary '\Ì\Ñû i›\ïn°j/\Är¼\Õ','wp-includes/js/dist/i18n.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\åm\Æ&Íž\Õð\Îó6÷',_binary 'cü>|ª>Á!­eüÊd8X7jiF|Õ’•ÀNšÁ©','',0,'?'),(_binary 'ÌÔ‘¦A¹Ha]ª\':©','wp-includes/blocks/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uOw~\Þ=>*\Ü\äõ\Z†š',_binary 'I~¬\â\05–\Ò&ú \Ê\Ç¹á¿¤»º´%\à¶Ë‚','',0,'?'),(_binary 'ÌŠ\ã\Ï\nD\äDö»ûì¨¥','wp-content/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories/Register.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\Ê\æ5©\ïž&º\ÇgÁùØ·',_binary '©¼\Êçµµ–•<—ŒŸ\Õ,—\Ðh¯±\ßXL˜+’2\Ú<','',0,'?'),(_binary 'Ì‹¸q\ÈB3a\êY\ï\ç-ö','wp-content/plugins/wordfence/views/dashboard/options-group-email-summary.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'û\0`\'}·(ƒ¥ƒb·†ŒA#',_binary 'c,€Bp£2ý8 \Õ\í¨0j‡7}hp-ùòå®†','',0,'?'),(_binary 'ÌŒöûT\äþ‹%õ•','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯ž¿=öŠcAß–\â\"”‘',_binary '\ÜS\ØV\ï<Ar­n\éß’3e\ÆmªÔ=Î?ôo\á°ý','',0,'?'),(_binary 'ÌŒ»–3šŠ‡\Ê4\ÅÒ¿{‰z','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-component-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾L®KLGÌ‰šL>AQô',_binary 'û$™¼³\ri™xþƒ®9À½Ý®yÁ22Ï†Ý†,@›ƒ¨v','',0,'?'),(_binary 'Ì™~üÈŒÃ®+\ä\íbyÈ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SipHash.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{¥ìˆŠzÀÁ;5!\Ë\Ð',_binary 'òD\Ð\ZŠŽ\ìL‰Þ Î”a¤°]nôœ\n»\ìŒ\ÕL&\æ\n','',0,'?'),(_binary 'Ìš¬ŠÔ‡\ÇmX|±\ÅXq^˜','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/pages.svg',0,_binary '7´®i8\Ú‘Ì••!#þ',_binary '7´®i8\Ú‘Ì••!#þ',_binary '\àlŠøÁXx„\ä©Ë¤ö	ofÖ²§\ïéž eM³Q','',0,'?'),(_binary 'Ì¢;\êj—yˆ\nˆ“z¨','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/class-path-processor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zO\nJY¹…—gUºö{',_binary 'TóñA÷wµpvd…\Íy\è\Ðu¬­ý+ˆ\Ç7¨D& J8\Ý','',0,'?'),(_binary 'Ì¦Ô’S­øm¨\ËÁ@O­¡','wp-content/plugins/yith-woocommerce-compare/assets/images/12-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D ðE¿\Ö\Ä\ÌC÷¨ò0',_binary 'ógh@\ÚÒžGÀ2°«sˆCˆ%L¨\äŒÀ^i¶”­\äZ\r','',0,'?'),(_binary 'Ì¶\Í`\î\rg\Ò\Ð7‘/N\ë','wp-content/plugins/woocommerce/src/Admin/Notes/Note.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J1×–¨\Û\'¥]¸]',_binary '\ÆJ\í \Ö\ÝÕ¥J‚\\yo\Æ\Ò™\Í/)õ\×uˆ†','',0,'?'),(_binary 'Ì¸¿¬™-]\ZŸ—‰nü','wp-includes/sodium_compat/src/Core/Ristretto255.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k9÷wZ\Ö\ê~˜¹ øô\'',_binary ' z¾`WN?]ýÓŸB,K„õ\ÈJl´\êŠW±¨>k¡','',0,'?'),(_binary 'Ì½ó þ˜ŸX™$oB¹','wp-content/plugins/akismet/_inc/akismet.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2÷g:\í…r\ß$uV\æ|I',_binary 'ùŠ¿)‰3$×¾ŒD|ÔºðL\ëN¥\ï\éŒHdµ¨\ïTi¡','',0,'?'),(_binary 'Ì¿D\Ý×µ¥\ë\á^=\Ò;','wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks/StoreDetails.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`¨ƒ\Ø4+‰÷ó\Ó%3\é\Ë4',_binary '½r¡K–)Ã‚º¦:\n«A\çf+ò\'…‰°LµÎ“\é\Â','',0,'?'),(_binary '\ÌÃŠ5ff\Í;,G!\'öó\'-','wp-admin/css/colors/ocean/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q\Ïw$WO\à3l†HŠiI',_binary 'I²Uý×{\'\à&\Ê\ÕD=9¸RÁ\Þ5»Œzu\ãÎƒ®','',0,'?'),(_binary '\ÌÃMArbq‚PpB ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/checkbox-control/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'óK!\Ëñô¬\Í0\ã\åöC€',_binary '\Zyý\ïY]º#\íÁ(¿¦^\ç©-•\Ë\Ð¡ÁÀ+','',0,'?'),(_binary '\Ì\Å\Î\ê\Õ\";+\Â\rxu´\ä\Êw','wp-includes/js/mediaelement/renderers/vimeo.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'À?\È~s\Ð\â\ài6G¸/',_binary '­\Ë{ƒö“\Ûw˜\Ø-\rþŒŠªzF\áv_€û\\wf\Ë\â\å','',0,'?'),(_binary '\ÌÇŠ·EÁv–c,\îØµyS^','wp-includes/images/crystal/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ð]µLc\ãiG›fQ“\r\Ï\ç',_binary 'v\è\Úpm„\Êc\ëø6\ßY~\",!V¹\ØEXlül\ã\"z\Þ','',0,'?'),(_binary '\Ì\á\ÛHq\Í.\Æ\n|ŸÔ­\\','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-spacing.php',0,_binary 'aZ}ªüyÿ\Ïñ7¹#–(',_binary 'aZ}ªüyÿ\Ïñ7¹#–(',_binary '!¦Ä¦\æxtû‘\ëÊ¼\Ü(\r\ÛT²R—’\è¡Á\èl!','',0,'?'),(_binary '\Ì\ä:¤\æv» %Xs\ÖJ:','wp-content/plugins/ti-woocommerce-wishlist/views/wizard/step-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l\ÒC„+»°\Û=¢ïŠ½ë‚Ž',_binary 'qd…&uZ\Üþ©š-Û‘ø\ØK\Ë\êný\Ë\àr­A\í%','',0,'?'),(_binary '\Ìó­	o¼ý!°Ac\Â\ÞaZ?','wp-content/plugins/woocommerce/includes/log-handlers/class-wc-log-handler-email.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡JóKðe®\Î\ÞlE]N‹\Zô',_binary ']Q§#L	(Ka„Šúc‘ßº»\ät:B\å\Çf¦\ny]%','',0,'?'),(_binary '\ÌöÖ—\ã\\¼óŒ¾.«]¨Ÿ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/price-filter-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/alQ¿;lø^Ò¦\ã<•',_binary '¬:eõmŒ³À’\Z7&.{AŽÒ¶\ØxmÖ„Ö™\Ññ\Ì','',0,'?'),(_binary '\Ìûq#õ|;Gqn`\à(\áN','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-date-format.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\ÛH¥§ñÈ	¥ˆct\Ñ\î\Å',_binary 'v\Ï\ä¯ÿú\îÙ¤º/?Ý¾ƒ7´Ü¢Œ\ÎÁ)\ï$H—m','',0,'?'),(_binary '\ÌþŽî“§\Ú÷VÀ§;/\'','wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/components/tabs.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ\ë\á(L;\Öo\ß\ê™\Ç^{',_binary '‘Rªöf©¢•?«4”\Ûù¶ƒ=\Ë\îrª\Çv\Ú#p`I','',0,'?'),(_binary '\Í\Ó~O\Þ\×ÿ-’&/\ë†,\Õ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/price/attributes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G	×†T\å\Ö¢ õ_\Ã',_binary '\î\r\Ú\í\êú\Ùh\r›#\r=:Ž“›GqŽV\ÕKú5ù8\r1¿²','',0,'?'),(_binary '\Í©ÿ\á‡p÷jÖ›`’\Èw','wp-admin/css/customize-controls-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R:‰‚£j¹„9±!\ÖM',_binary 'ÿ?6¼úVC\ï}þVZ\Ò®6ðsþ?W<@?ÿ„\Ñ\É\ß~','',0,'?'),(_binary '\Ín	}V-Ÿ“¬˜IŸ','wp-content/themes/twentytwenty/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ïý±8ö_“fñ\ëÔ¸/\á',_binary '\Zò`t¥%,¸”òZÎ®ž>:2‡ùA6n¸\áó$†<\ç %','',0,'?'),(_binary '\Í¯{\è\Â%(¿ú\íQoj\â','wp-content/plugins/wordfence/css/diff.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ü€g	­ú	™$’˜‹`róQ',_binary 'À\Ü$µ\ÌhEJ^54<$žÓ­Yc\Ã\×\áÂ’\Þ&','',0,'?'),(_binary '\Íd\Ý\ê\ãlP‘O\ê’ùI„','wp-admin/network.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's1I\\~jG(úÿe\×¡®e',_binary '8RÂ€•½™	·\Æþ\Å\ïû\Ï\\]L˜ºR6X\Z`\'ú','',0,'?'),(_binary '\Í#_;ÿ»$1\Ú\Ü.	¸ƒ‹','wp-content/plugins/woocommerce/legacy/js/zoom/jquery.zoom.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Yóˆû\"VJß¿÷Zn',_binary 'r\Â\ïr\Äb¥\ÝJÜ»>¯Ã‚\ê„^\É#úU`²œª\ÚX=','',0,'?'),(_binary '\Í\'y;\n’­óˆ\Ò\ì.4\É','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-toggle.php',0,_binary '\\ü‘ôÙ½HòT\rÞŽY/',_binary '\\ü‘ôÙ½HòT\rÞŽY/',_binary '<Ü©\è\å \Ï`w\áz^óÛ£B/a W\íŽ(}×‹F','',0,'?'),(_binary '\Í)\Ä\Å\äò\0Ÿe‡_\Ô5=«','wp-content/plugins/wordfence/lib/diffResult.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\èQ ¼ª½\ífú7\ÅF',_binary 'õÒŽ“\ÎE\ÔõˆóØŠ>^!jº¡\0O’€\ÆcaŠ´^°\Ò','',0,'?'),(_binary '\Í>1p÷y\çö›§\ÉÌ—®\ë','wp-content/plugins/ti-woocommerce-wishlist/views/admin/templates-status.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«7<ˆÀ\Zf @<*\ÑÀ',_binary '\àºðŸõ²ÿ \éñ…\ÚƒJ„\é‡QÖ‰¶ÿ§\ÐUN°¤)ñ\Æ','',0,'?'),(_binary '\ÍI\ê»}A—)4t1õL','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/images/Thank-you.webp',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\ê‡aú\\ÚŠw`©ñ³e¦',_binary 'Œ˜ù\0 †q\Í\"~<Vi˜\ì\ÐG‚pý¿UôRXº\á','',0,'?'),(_binary '\ÍJ¼;\Úø\ï>­{:\Ã\è\Ã\Ö','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/accordion.svg',0,_binary '&[Œ\ÓÂ­š#ž\ÛV”\Â',_binary '&[Œ\ÓÂ­š#ž\ÛV”\Â',_binary 'šŒ®\ã\ê\Þw\×\ê„uw\ê	ò\îÆ¨$´¨šnõoøwr','',0,'?'),(_binary '\ÍK=­X\ìa:\Ä\'5¼','wp-includes/sodium_compat/src/Crypto.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-pü˜ÿ‚\0E\Ècbœc¥',_binary '\"\ÚÌ˜ŸLŽ\×\Ù!\Ò{rDnPz^ô\ÚXòjô\ÄûLk','',0,'?'),(_binary '\ÍMPm-!—wÁ\î.\ìû\ÝN','wp-content/plugins/woocommerce/packages/woocommerce-blocks/templates/templates/archive-product.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ša¡e¡´d\ê÷…5)4x™',_binary '\\8\Þ\ïðxžx]Nõû;@½\ËM\Ú\äÙ­\Ô\Ñ\"ƒÿlƒ\Ý','',0,'?'),(_binary '\ÍN¡{¥\ã^wD$@?\n','wp-content/plugins/woocommerce/assets/fonts/star.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^sG\0\Ýy˜²€´n9\é\ì',_binary 'ó\â\Ã\Êc\Ú\Ä\"\ÃC\Â\ßõB\Ì\rš²J¬¼\\†õ;k','',0,'?'),(_binary '\Í^&‘ó`R\áy’‹™\ìJ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Áœ}n\ë3;g)»\áÀó»',_binary '\nj\ìû^ú°¬†\ÓC\à˜(\Û\ËUU\ãi\'9\ÞO','',0,'?'),(_binary '\Ídˆ~l?‹“\ç|-X4O\Û','wp-content/themes/flatsome/inc/builder/shortcodes/helpers/colors.php',0,_binary 'úÿ\ÓYúsß¨/vô',_binary 'úÿ\ÓYúsß¨/vô',_binary '\ì»{a\á\èWGLŸw8’,mYªd£Š;,¿<^\Â7 \Ç','',0,'?'),(_binary '\ÍiOõuX>Hùq¬rt','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/shipping/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\_pýý9’\èÇ³\rtµ€',_binary 'ÿ•\Ä-}\'\àB™\å%\éùñ¯CN´?\ÂsŒ\Ã[/–\0-','',0,'?'),(_binary '\Ím¥L0N\"\ÈT~\ìb\Ü','wp-includes/theme-compat/footer-embed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„õZ\Ü«„ò.“+–j',_binary 'ƒi§\ÉDÿAJöÏˆ;v,gc\Ì%‘\çˆ\Ñ	^#','',0,'?'),(_binary '\Íwÿ9=Ÿ_\"h%’\×v','wp-admin/css/install-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Å\Ç}#Ta¯.‘ú¦u\Ç',_binary 'š1ñtIx¢\0—¯|I(U´\î*>\ìO5\Å~\Û\ëKj¶ý','',0,'?'),(_binary '\ÍxNPfœl+`¿\á±\Ó5','wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-upgrade.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õ2b\Ð5ÀulƒPLˆ¦«_9',_binary 'vŽ\Ñ\Ñh’þ÷ñŽ¼F‘¶`&Õ¾™Eœ¨L¥¥!\Â','',0,'?'),(_binary '\Í¥MTbvñ>­“L~','wp-content/plugins/contact-form-7/modules/sendinblue/service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'7c¯L÷F¹Ñª‰\áw~t',_binary '.\0]kÌ¡‹ÁxÁ\Ô\Ó\ÇX¢ö !jÑ€¸D”CˆH;J','',0,'?'),(_binary 'ÍYl×‹x\ÞOŽø\ZU½ò','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/search-list-control/test/__snapshots__/index.js.snap',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\¡q´¥„¬_\Ï{\Å{o2f',_binary '} b$©•l™„‰Ò !k”¦´Y79IfTŒÈƒ]‹ý','',0,'?'),(_binary 'Í˜\Ëk.f±\ÜR\rS\ß\ÍH','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/slider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ì S}JŸJs0PŒ\Ê\á',_binary '¼\Ì`K¡Óƒ\Î4Z\ZlÀ’²mN†\Òr–9øïš¦Û­3','',0,'?'),(_binary 'Íƒ/Y6\ì\ã¨}%Z\í\ë !','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Package.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\Å\"i}¢°QŠ\Ð\Æz\Å2',_binary '¡\0™÷¡¶1K\ÆE\Ãá§»&ƒ,U–›@\Ølf\î\ÚoE','',0,'?'),(_binary 'ÍŽ3×¢\àJyn\ÎþÄ€M\à','wp-content/plugins/wordfence/fonts/fontawesome-webfont.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ\ænq*Š\îõ€ZF‰)2­',_binary '\áü&4\"\rQjX\ãmN\"\ã\É?P¾o”\Í\\°\Æõ?¹ùŒ','',0,'?'),(_binary 'Í“\ßY\á36¾\él\ç€Y«°','wp-includes/js/tinymce/plugins/textcolor/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ä\Üv™<h\ä\ä\èð\Î\îÿpü',_binary '!À/\Ì[I\ä+\r©ðG\í²\â\à– DÕ­\Ï7€=ŽŽ·®“\'','',0,'?'),(_binary 'Í§\×N¾õƒ¨‹]—sr4','wp-content/plugins/yith-woocommerce-compare/assets/images/loader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Å\ÍS\0Wj´È‚´/m\íb',_binary 'òm×‹IWGP÷]c¨œ¨.ýôz	\Åñµ48™\Ä\Ë','',0,'?'),(_binary 'Íªöæ‡¥>§»\Ï™ý','wp-content/themes/flatsome/assets/img/payment-icons/icon-flattr.svg.php',0,_binary '\ï.rüW\ÍXx\Ï\åd¸{',_binary '\ï.rüW\ÍXx\Ï\åd¸{',_binary 'j˜-9˜ªÀ¡‘?T\Ú.ue¥Ë¼¨Ü™ Lø¯','',0,'?'),(_binary 'Íªu¹owsFC¹G[cƒ\ï«','wp-includes/rest-api/fields/class-wp-rest-meta-fields.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8^pÙŠ\ÄY¿[,ð\ÂF.',_binary '$vx%ÿ\Õc©·§7I\\£ª%­\Ò\Æ\ÅTHËž\â™	','',0,'?'),(_binary 'Í«Tc\Òu„ 9è©¬Ù','wp-content/plugins/woocommerce/assets/client/admin/analytics-report-downloads/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=n¤—¸û·!*Y\'ö“',_binary '=€£”\ë°	L”>\Ø}\ï0\Â\ÈË•ðÁXb‹ª‚8','',0,'?'),(_binary 'Í¯{_§\Û0;u;ñ\ÇW[\é','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-order-refunds-v1-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{Ïª&õ0DO³\Øhõ`',_binary 'u3E€1¬•´C\ÐÒ­’šžüƒ\á\ÞÌ„Jýn\í','',0,'?'),(_binary 'Íµ\ëõ*Š\×\Ý:ù<\Ý.&\Õ\é','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-cart-items/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(ŒÄ«[k\×m8\ç±J\Þ\à(',_binary 'lKŒÑŒV4A{©\Ý¾A^~‰2—XE\çý}–¤\å\Å','',0,'?'),(_binary 'Í¶”jÊƒà°±ýÿ·-¦','wp-content/plugins/wordfence/lib/menu_firewall_blocking_options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾:Ø¯_x\ÑðO0\á8‡‰òX',_binary 'ª[\Î|\ìrµ;˜ù\â\Õöž¹\ÉÆ¸®ò’¥l³b\Ã\Ô\Â	Q','',0,'?'),(_binary 'Í·\ÞW\Öw5¶\×0eb…\Î0','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Payments/Integrations/PayPal.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ã°ø©Ž\ìbrhlŽz.A',_binary '“«”\rRœ“Ÿ LlÓ¤®Wj)|\n—\'#»X¡F\0g\Ý','',0,'?'),(_binary 'Í½3\Â\è=£¡OÁG\Ä|~§','wp-includes/SimplePie/Credit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.‰6\ÍK>.¡³L\ç\Ô',_binary 'rõÙ´ƒ\í@c²@°ù…{R\ÛCGþ³®¥d^\ã>>E\Z','',0,'?'),(_binary 'Í¿›G¼OÁ}j”HÁR<','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-totals-block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚¿Ï·1\îO¡SA\çf\×Z\è',_binary 'h\ÈK`\ì²÷\Å\Ú»‹Ÿ\Ö[U\È\rÿ\Ô.øv<e»\ã÷ÿ','',0,'?'),(_binary '\Í\Ò=‘¤Š»¨¶´T\ïˆ	\æ','wp-content/plugins/woocommerce/assets/client/admin/chunks/7433.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=Ÿ\r\éuxßˆcµeÿhPT\à',_binary '-r€>Ï…Žþv\ÂE{rO!7\êý?\Ït—}*×‚}u\Ö','',0,'?'),(_binary '\ÍÓŠ—1ÁCµ\Ñð:8–\×\Ü','wp-content/themes/flatsome/inc/admin/customizer/img/search-icon-outline.svg',0,_binary '\Åg\à¹Ú¨—M¸£#q² ',_binary '\Åg\à¹Ú¨—M¸£#q² ',_binary ':‘\"d\"Qú›&)e©§ßsc\\ª¶¨)—¯\ÙAj(\æ','',0,'?'),(_binary '\Í\ç3À\Í\Í‚\äFô<¶¡8','wp-includes/js/underscore.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f¸¸PS½)Žª(”%óó',_binary 'TŸ†´¼ƒW’d\ÑFÉ¼A\ØòÛ—Ÿ…\ë\æ-\ÄgÀzµ» ','',0,'?'),(_binary '\Í\íS»>s»U)€¹¤\ÍH','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°y$NX\ÒŸ\îl€±l',_binary '[\ìŽ-©¹\Âv5<\Û\åM\n\á¦\Ë+B»u.,\Ô5g','',0,'?'),(_binary '\Íõ\â\ëÀd\Î\â6!\ã`\Öt','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷&¾V^¢\Ç\Ý\Øð#´6¤\å',_binary '=c-h\Î8½\å3>&ª	‘kf„µ3#pO8þB–¢|cC','',0,'?'),(_binary '\Íön$\ã\Æ\Ía\Ùèœºh{–','wp-content/plugins/woocommerce/legacy/css/helper.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬\nU\è½œH2‹¯¶\Ð9‰',_binary 'S-²¨Ë²\â{†¯\noŸ\ëK\ê!½\'óG.\"a7ŒŽ,:','',0,'?'),(_binary '\Íø‰»j(gù€~jU#·\Ö','wp-admin/includes/class-wp-filesystem-ssh2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r˜Ÿ?\ä\ê¬‘a\Ðy',_binary 'ÎŒuno…ÿM5E¥‰:?i°Pš÷8\ç$Ub\Ý\à,‡','',0,'?'),(_binary '\ÍúM`=\î<w@¸_ÿ™','wp-content/themes/flatsome/inc/builder/shortcodes/commons/repeater-options.php',0,_binary '\Ú\'v;Jb\é\áß¡9ù\æ·',_binary '\Ú\'v;Jb\é\áß¡9ù\æ·',_binary '^Z\È~¶ôBòþ&ð^{§›j«™¬\Æ”7÷\Ê7ª\Ïo\0','',0,'?'),(_binary '\Íý\Èö\é,[Šm†ø•\ë&','wp-content/plugins/ti-woocommerce-wishlist/includes/product.helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}\ëãŸ¹™ªL~R\ÝUtö~\\',_binary '^··¯\Ü&ðe5E\åm\ìºMÔ K \Îq\Î=®\"/\Î','',0,'?'),(_binary '\Î¦ÿ‹#DÁL‹A\ÝH\È','wp-content/themes/flatsome/woocommerce/single-product/review.php',0,_binary 'E43¶\Þ7ƒ\Ã`o‘Hu2F',_binary 'E43¶\Þ7ƒ\Ã`o‘Hu2F',_binary ' 	L\É\Ò\rrOjQ\ZÆˆw@9º!A°³k§\r\ÌD\Ï','',0,'?'),(_binary '\Îü¿ðÕ—	\ä¶î™ƒzv','wp-content/themes/flatsome/inc/admin/customizer/img/product-title-top.svg',0,_binary '¢ø@¢\0ÜICA\Ü\î\Ï',_binary '¢ø@¢\0ÜICA\Ü\î\Ï',_binary '%\ï\Ê\nùƒÀ\è·Iz \Ç½\Õ\éx™¶\É1k\ã6\×\íŠ!\Þ','',0,'?'),(_binary '\ÎnC†2™\Ö=§&!\Ó%KY','wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/previews/beanie.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž••\ï\Ç\Æ\Ü<†\ã^j‹3\Â',_binary 'OSƒ)%b\ë56v‰šBRóý?ZIT=,^k\äyi%','',0,'?'),(_binary '\Î ¢\êMu\Î)`¤©>\×2','wp-content/themes/twentytwentyone/image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\Å\ä§>.\ÞN¦û.™j',_binary '+pŒ>ö\Î?9\ï÷þ¸\Þ\È	œþŠ‘v±¥=M|…ò','',0,'?'),(_binary '\Î)ô£»œ…žº½h_˜\ÂC','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/compatibility-notices/use-compatibility-notice.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EžÁ¤\çï†¬ù”\Û\âœ~Š©',_binary '@,Yø\"”\Æ\'\Í%(€\\ªh¢.}rî©’\É5qy#=','',0,'?'),(_binary '\Î.\âôSÀmSi\Ð\ÅP9¬\Þ','wp-content/plugins/products-compare-for-woocommerce/berocket/libraries/addons/addons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PŒEL\Û5\âkH^\à\Z',_binary ')³®¯.uå©Ÿ°D\èr\Úýhö‘\É.T}ƒ{Ã”\Ú','',0,'?'),(_binary '\Î0\×\ÆlMa¿Å“D—ˆ;E','wp-content/plugins/woocommerce/src/Internal/Admin/Translations.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7`$\à—fpô=C\ÍV%¨',_binary 'Œ’s…öV·ª@#\Ðhõ\ÆYŒ\æð jŒ\ÌE‰’PlCû','',0,'?'),(_binary '\Î5£\à‹™|^\ÊøGÀg\rq','wp-content/plugins/woocommerce-currency-switcher/css/images/ui-icons_888888_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'úöõ\ÜD\ç‡„Áû9ª',_binary '¤}™fº/™ºH\ÆÁò,Ž\ä\Ì$U™t\Z\ãôºVŽöÞŒ.','',0,'?'),(_binary '\Î<ž\éùZ&\ßu\0,EôŸ','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-settings-api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ó€¬\à¼\Ðx³\Þ+\åz[v˜',_binary '\ÒpÒ¿‡e3Y\è\Óp\Ñ}\â\r\æ?¥\"\ät\Ï\ç~¥²\ìb4','',0,'?'),(_binary '\Î?`*h\èSgO\íœxÝš','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/variable/variation-attributes/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fþbS‰\ä`xV¨ÁqP(¬',_binary 'g®^\ÊBÆ¦\\TR\æ’MHˆ´Ya“\Òp@5³!\ÉH&0','',0,'?'),(_binary '\ÎH0ó¯VO@|«šngt','wp-content/plugins/woocommerce-multilingual/res/js/troubleshooting.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(d\Ó\ÄF\É\ÈÂ•ó\Äw\èFŽ\ê',_binary 'š\Òü\Î%\\(wO\Î\0F*‰¾R¡7„šTZƒ\ÍY$Vˆ=Š','',0,'?'),(_binary '\ÎN: \Üø£š¾\ß@•kÏ‚','wp-content/themes/twentytwentyone/template-parts/post/author-bio.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Æ\â§V=|\Ô\Ô45ß¿\ï£',_binary 'd\î{\É_\íU²\æœR7Iýû\Òoˆ(\Ì~œ6,\rTÿñ\n°£','',0,'?'),(_binary '\ÎQ\åy¶Š#±r9p','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Exception/ParseException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' Í»I)y÷\Ös5ga>Ó˜',_binary 'ÁŠAkwkO\àq6I\ÓÌ¢‘i¸¯CˆJ\ÊM\è\Zq«b','',0,'?'),(_binary '\ÎQ)ùe%H)\ÎO\îµ','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/languages/yith-plugin-fw-es_ES.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ûfžm²–“jJ#tuU10',_binary '–—ü~ò„œœa\'ÀoFmŠ¢pis;Œò\ä\Â]M','',0,'?'),(_binary '\ÎQ¹vbHôdm—$÷²39%','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/example.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' —|^…@8cŒª\0Kj©',_binary '¢@‘\É\ßV|­\Ã+œIBbÄŒ¯o\Ýr%öK\0c[v[\Ñ','',0,'?'),(_binary '\ÎXŸÊªrSôHt\â\ç\Ë?¿','wp-content/plugins/woocommerce/includes/admin/importers/mappings/shopify.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«z\ß\0$õSYŠK›vÜˆ³',_binary '9‘Œ\Î,¹¡kýd\ß\ÒZei|T7ôAõ±1S?ø°¢[Q','',0,'?'),(_binary '\ÎX\É÷—V;ÇñC)8pñ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/collections/selectors.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ï$\Ò\ÓeU¸Š*/=\ìª',_binary '©\àÕ„v\èóþ	Y¬GS\éX¥%v#OŸŠk\ÞyT5','',0,'?'),(_binary '\ÎYµf/÷pw™\ÍŒ§','wp-includes/Requests/Response.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Àlóz)Ue¢\Ø\æ$tŒ\Ç\r',_binary 'žý;-›f\ÍNù§I\ã‘Y¨YÚ²»½\íeŠ\Ù\r¤','',0,'?'),(_binary '\Î_)-ª]\íËŒkO	\Ã÷\Ã','wp-includes/ID3/module.tag.apetag.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Óž\Ü8)¦³(®ZOV!¶',_binary 'p²ÄžN²“W\é›lÑ°U!\Ö\ØÁ\Ï\Ç[dL¿\ÉI9','',0,'?'),(_binary '\Îj»\ÛÁ)rs{{µ\æ\ì0','wp-content/themes/flatsome/inc/admin/customizer/img/product-box-wide.svg',0,_binary '¶t\' gšŠ\ë3\Ø	Z`\ÍL',_binary '¶t\' gšŠ\ë3\Ø	Z`\ÍL',_binary 'ñ….7ka(÷\ÞPž	h#ð\Ò,¾¼¥#„y»c\Øÿ\á','',0,'?'),(_binary '\Îl/<À\ÍU\ç\ëZA‹\å','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/BLAKE2b.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'øW\ÕSzúLÿHAWr´6~',_binary '0¯¨pU\Ý\Ö\ëg×•™G/„„%¯³\'„\í\ëZd\Ô\n\n','',0,'?'),(_binary '\ÎlW.¹\îü\çù¨„2\'Gú','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/panel-field-container.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ôªglu¦°ñ{ÀR\Ü\ïË®?',_binary '%{¨p\0w®?\nù«H\Ê\',ƒLU#¬\ÍO:ŸXG±W','',0,'?'),(_binary '\ÎuŽ\ÖA¼\Éó{\Ã\ÖúŽ\'M','wp-content/plugins/nextend-facebook-connect/includes/exceptions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒE\á÷.3›¿\ÄZ,\ÔJR\èC',_binary '˜J!iH‚„4MMº¢&s¼\Òn´#›ð\ÕN\Òv…=','',0,'?'),(_binary '\Î|ž\Ïf÷€\î\è\É,2­T	','wp-admin/term.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þi\á3&±Ð•¸\ë(6\ã&¬',_binary 'H¥4\0\épð­™B\Ó\ÙaŠ\Ñm\Ñfµ\ß¿SU\n\ß\éT','',0,'?'),(_binary 'Î‚,,ø«\Ô\íbê°Ÿ–','wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-products-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^“ôó\ê2¦yžö\ÏÀ\Z;~',_binary '½b¢¬Û‰ax\Ñ\Õ3\æd÷F\ê%nNfù\ÝK†','',0,'?'),(_binary 'Îr\Ãa\ì\æ¿ùI\Ì\Ã_Ý”','wp-content/plugins/woocommerce/assets/css/helper-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\"\Ú\Û¼\í-;M{®b*.',_binary '{¶¸‹ôQB®¤\Ø\0˜\ì4F_Hñ\Ã\áñqö¬rJc÷','',0,'?'),(_binary 'ÎP|\ÙÚ’ü‡žó\\\Ão','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ „w^\ã®³]ç·£M',_binary '•«ò°Áñ÷§ZEüO\ë´7(­nY›\îh\îË¨ƒ‡','',0,'?'),(_binary 'ÎŸ%|û¢->è·§~Š\ÔP','wp-content/plugins/yith-woocommerce-compare/assets/images/03-bg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ø}‘È‹d o}Hn',_binary 'D5@”\æei—O\Äý–\ä¬<€s\Ó.\Ø?‹\ÍBB','',0,'?'),(_binary 'Î©ð9S×™þ†½Ò¸ºý','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ²ŸŒ\0fHpg!N¡O\Ý\'',_binary 'ß“¥£2nª÷s¾?­A\Ë\×úš£¨µN\nÿg;','',0,'?'),(_binary 'Î±¥Z	 \Úi\ÓIÈ­','wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D¯R\\U¡i\è\×\ËÐ¼§w',_binary '¹•\éq\çWH^ZNƒ{D} \êfRÿ\î9Ò£T¹ªù ','',0,'?'),(_binary 'Î´€Z‚n*\Ø\Ú_% :&','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-customers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¢\ß\ì«ý©±\'DÇ\á\ß',_binary '‚ü: ‘³ \ì\Ô:ÿ ˆ<9a˜/`\Ý(YG4­rc\Ã','',0,'?'),(_binary 'Îº‡\"28z_…!ðN>L','wp-content/themes/flatsome/inc/admin/customizer/img/blog-single-inline.svg',0,_binary '½\'ðjGP¿«²·pÜ«„',_binary '½\'ðjGP¿«²·pÜ«„',_binary '\ê\ÈrH\â1\0ŠÅ¶£$iü™Â¦R¸ój“—š','',0,'?'),(_binary '\ÎÅ“þúúÏ”ò=Ÿº#6','wp-admin/images/post-formats32.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'WY~O’ø{ð+_L‰kE;',_binary 'k¾<8¤._D´\ãK‹‚µ\ßG[§5e-I(0w°\áh','',0,'?'),(_binary '\Î\Ô&\Å\Ë\çô4…\ë/¸6‘\Þ','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/notices/ToolsetTexts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ßÞ¼\rq\åËµN<iÓ)-m',_binary '!\ÖOÑ§L´%`\Þ\\IAT([H\ÒWi\Ï\\\\J\Ò','',0,'?'),(_binary '\Î\ä—\Ïÿ\É®ª\nŒP','wp-includes/blocks/quote/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mG~—Du\ÆI‹\èB‰‚',_binary '[#\ì\r©fÉƒ¶\"[\Ìö¤\Ødˆ0ù“Z\ÌWS-\ËdM\í','',0,'?'),(_binary '\Î\åú°X\nX<°|t–E‚\0z','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’\Íö,œoF\ÝD:Nˆ¾4',_binary '²jKžb ¼Êy,`ª\Êÿy¾5o\ï\êfÚ®_¶e','',0,'?'),(_binary '\Î\æ\×a\íþ[8\Þ81\ä˜ö','wp-content/themes/flatsome/inc/classes/class-flatsome-base-registration.php',0,_binary 'OqJ4¤õ˜ÿ~\ÒHe\nw',_binary 'OqJ4¤õ˜ÿ~\ÒHe\nw',_binary '•¶þ†ÿžž\í¨P=\Âü\Ús;¢û\Ú#†\Õ\ã\Ô','',0,'?'),(_binary '\Î\îÀö—\î\ÄB¿š§—\Óq','wp-content/themes/flatsome/inc/builder/core/server/src/Options/Option.php',0,_binary 'ñú°^²º\Ü\Z0›\"Ø»·Á',_binary 'ñú°^²º\Ü\Z0›\"Ø»·Á',_binary 'ß¯…‹‹À=aT„\æ)Å‰™\Õ \Ú\Õ~\Þ>4','',0,'?'),(_binary '\Îÿ\"U¼5†zla<\Þ\'ž›','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/media-left.svg',0,_binary '´Õ¾Á<ù\Ì\"\ÚCo4\Û',_binary '´Õ¾Á<ù\Ì\"\ÚCo4\Û',_binary 'p É¾º\'9\ËH\í3p/óF5÷¸G\ê\Èb©D(jq','',0,'?'),(_binary '\Ï\ß,”Ÿ´@\Î\ÖóºQ\Ì','wp-content/plugins/wordfence/views/common/indeterminate-progress.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I·\æ\"\Ýsg½4ˆ\\(±8',_binary '´@™\îýZn\"Î¾~žQÕ”º\Ã8“s\ãPŠ¶ž\07\å3','',0,'?'),(_binary '\ÏŽe{\Åv\éöwª\ÆÉ–\Ó\'','wp-content/plugins/woocommerce-multilingual/res/js/pointer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨Œx9¹‚L\ãwwq/^ ',_binary 'v¾(Žijþ›»4\Ô\è[½\Ö_\Û	V«)\ËKI¹[•','',0,'?'),(_binary '\Ï	J@Q£O6T[\áE\"ž','wp-content/plugins/yith-woocommerce-wishlist/assets/css/unminified/admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zÊ³\"·–¤\ÒQ‡_<‹ÿ\Ö	',_binary 'y\Ïù¾{sM\Ã\Å&ð3š‘ƒf\Ûó\\\í\Ù\0\ä±wm','',0,'?'),(_binary '\Ï\n\âfGu	/#“Û´\ì','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zy\Ñ\Â¼§›\ÇvE›[š7õ',_binary '¶BV™Je¤kœþ\Óg~Wz\É0~*5\ìH\ËlL§b—\ë‡','',0,'?'),(_binary '\Ï\rçœž\rç«¯ô}üœ¼fµ','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Token.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¢ŒñúøÁt­²\í 4ô:',_binary 'K„‡\Ö\r\"ºp³ò¶¢/›Í¸\át¯%m©$³‡,\rž','',0,'?'),(_binary '\Ï¿$e\Å&‡gqŸi§m\Ô','wp-content/themes/twentytwenty/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±e1\ßdZ\ïzðh¥\èž,\á',_binary '\ê\Õ\ÉðJ›gÞ‰,iK\È4\és‡Fÿ&Ó¯§¨xN\É','',0,'?'),(_binary '\Ï\rþ<Cµ	¥2\Ò}#ˆ\ß','wp-content/plugins/woocommerce/assets/images/marketing/facebook.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%±Â“ŸÛµ\rn]\n±',_binary 'D¾Cº!\0gý_mp!C\Z\Û+þ\ÞZ)ˆ_¨–|U?\Ç','',0,'?'),(_binary '\Ï\ÔE÷(%’,u¤\nR‚K','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/add-to-cart-form/form-state/event-emit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ë¼!œ}žJ\ÎV¨¦10‘',_binary '†¬?º\Z ^f€>\Ò	\ßT\ÝÚ–[\èY\ÌcESÿ¾N3\rÚ¤','',0,'?'),(_binary '\ÏJ\0k¯\'?~\Û[U™1‹','wp-content/plugins/woocommerce/templates/emails/plain/customer-on-hold-order.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“b=©$ZbŒ‘I°^',_binary '-Ÿ–³‡Œž!´;·V;\â–\â^=A(\ßX\ß9GI','',0,'?'),(_binary '\Ï!r‚@¨¿¬H=iz½¨œ','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/mk.js',0,_binary '/¶Ç€výoG{	4ž\r{\È',_binary '/¶Ç€výoG{	4ž\r{\È',_binary '[\ìP\íªŽ@\'rA{ó\ÝÅ¾\ê#\áP\"CG','',0,'?'),(_binary '\Ï!\Ò\äcý»\àJ@•R3¸\'ò','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/cart-items-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰^oK=l_Ž—_\ÔvŽú',_binary '’põk\Ì\èAòl_Û©yykIÿñ¶Ñ“NÀSO¬±\Ý\Ú','',0,'?'),(_binary '\Ï\"€|\'—x†soCkt','wp-content/themes/flatsome/inc/admin/kirki/lib/class-kirki-color.php',0,_binary 'Z\ì”\Ä\ê½\È\ÆvC«„\åµ',_binary 'Z\ì”\Ä\ê½\È\ÆvC«„\åµ',_binary '©;%”\'Wk}þ«\Ö\Î\Øjƒ¥Á”@Þ±\ì¦Áox\\)ü','',0,'?'),(_binary '\Ï\"Áú\Þlõ•W:e2ªIœ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/TermSchema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“Leh\Ð6t~RC¤œŠˆf',_binary 'S„Xš	$\Êz0kX\É\Ïé©·Š1\ÌU€H5šyw\Ü','',0,'?'),(_binary '\Ï#c`ÔùDñ\íq„','wp-content/plugins/woocommerce/assets/css/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ [Mr\Ð\Îo‹qXØ¤qW\ê',_binary '}[\ËK;\Ç\â§5lÀ¨-¾¾_ˆZL4©Ož\ëñ\Âx/«','',0,'?'),(_binary '\Ï-\Ó+Že\Æ\á\Ômñu\"¶\Ãx','wp-admin/css/colors/sunrise/colors.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$³•y\ÎPo²LMð¬—',_binary 's\Æ<~Ž¯Q\àjt(\É\n=zQµ$\Þš.\ä\ßG½ÿ!','',0,'?'),(_binary '\Ï26\Ë6\Ý#	S[h(\\²µ','wp-includes/css/dist/block-library/common.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w`Ö…\Æq³þ]l:\Óx¾$',_binary 'KQú“@\roan¨ú-\ÔV¼\0n+\á\ë\Ã5¼i¼\n','',0,'?'),(_binary '\Ï9ÿ	\0…\ê\Ðÿ´½ T','wp-content/themes/flatsome/woocommerce/loop/loop-start.php',0,_binary 'knMß§¤ÿû«Fú',_binary 'knMß§¤ÿû«Fú',_binary 'n½Lü9E^\Ï\"‹–Q\ß:YÂˆ781]õØ¿\Ï	Tþ\â‡','',0,'?'),(_binary '\Ï=\êÆºyŽæŸ«','wp-content/plugins/contact-form-7/modules/disallowed-list.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÁN¼ýõ¾\"4C\âN…\Ö\'',_binary 'ƒ\ÙW·Þ´\Ë\×\ìDr‹\ëAñ„\ä>\ï1z\àïº¶\æN¢2','',0,'?'),(_binary '\Ï=ÐŸDoCW\Ïñ\àƒ(ñ','wp-content/plugins/woocommerce-multilingual/templates/currency-switchers/legacy-dropdown-click/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÖÁŠz\á;†¬c\r@',_binary '6xOU+·IüZ2Ç“ƒ€hhŽmY\\E\Ün\ÆO\îÒ›ñi','',0,'?'),(_binary '\ÏQKý\Ö\ÄQ95ŽÆ”`','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/City.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì‹\ä>\Ù\ÊY!\\z›ÿJX',_binary '¾³B*yLË°ƒa\Ø\âu¨\"t \Z4\àþ\ÇZÛ³NkÂ¥','',0,'?'),(_binary '\Ï\\ƒ\êø¹\éH–y‰pöü','wp-content/plugins/ti-woocommerce-wishlist/includes/api/yoasti18n.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¶(y6DµR†¹¨\á¤ø 3',_binary ')<š;¾²Œ\n\ç~\Ö	´F/Å¤\á\ÛQ™žý\Û\×Ì·6','',0,'?'),(_binary '\Ï_q ^¡\Ç<\à8\ï\Ç:\è	','wp-admin/css/colors/modern/colors.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ØžñM¤ˆk%hõ \ë¹Vz',_binary '™^Ÿý¶{¿`Žý]?š;df\ä•rß…ºÒ¥¬j)¯S','',0,'?'),(_binary '\Ïb\ã\îsœ¼U¹[k®d\ä','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/image/test/block.test.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŠÐ‰\æsA\ê\ßÉŽ\Âf',_binary '\Þ\ÄPþc²ŒW\éO\Ê\×w52\×\Äcúü²³0?Àp¨g\à','',0,'?'),(_binary '\Ïe\ßU3wv\ÅN\Þd m','wp-content/plugins/ti-woocommerce-wishlist/integrations/theme-flatsome.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\Ü<W\Øi^\\¢\ÆYðøP',_binary '²ŒÜ¾Ÿ#þ\r%-¢Ehô¥r,eFm÷PMûs†n','',0,'?'),(_binary '\ÏfÀ\ÝS	6§\ß&\Æ\åJ\Üùh','wp-content/themes/flatsome/woocommerce/single-product/tabs/tabs.php',0,_binary '¦\àvE\×\äX»zñ‚I\Ã ^',_binary '¦\àvE\×\äX»zñ‚I\Ã ^',_binary '|›l õ/\ì^>GªŠ™©\ÖK\ç \é¬;-Wd..?D%–õ','',0,'?'),(_binary '\ÏsY|±\'¿G˜vÃ¯€\é¬','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/images/br_logo_white.webp',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`I\æ\ëqtf]õª\ÇÍ‚_š',_binary 'w…\Übtr\Ù=+o…½? c\èýò‹<j¢Ÿg_uS•','',0,'?'),(_binary '\ÏuFó\â‘^Gú¥E+ˆ¶c','wp-admin/network/freedoms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u¨6\ë|º”tJ4¿1´',_binary '\àƒ\â B\ë;µñ½øM\Ù7©ßƒ€\á[²9Ÿ</ ','',0,'?'),(_binary '\ÏvübX±°±xX›_²û§ô','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/GetRuleProcessor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ZØ¯>+ªŠ\Ôq°‚\Þ<ú\çy',_binary '7ú] Å—Q\â\â\"|\ÌMd’±þ\Ø)Q±²ÿŒi','',0,'?'),(_binary '\Ïx1\Ñl‘¼ €ž\Õx\rô}','wp-content/plugins/woocommerce/includes/interfaces/class-wc-product-data-store-interface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W®´\á\à×…h&\Ù/€Bô\ã«',_binary '±\Äa6ð¥ƒ•nzµ\ï°(U¼•rnÕ¾5ñÿƒE*','',0,'?'),(_binary '\Ï}=HclG¬Ž„\0*\Ù7','wp-content/themes/flatsome/assets/img/payment-icons/icon-square.svg.php',0,_binary '±\ÒýT\é#\Ý\à\0º\Ä\Ã',_binary '±\ÒýT\é#\Ý\à\0º\Ä\Ã',_binary '\Æ;˜\ä\Ç\ÆG\0C\í\á¦a#	œ°aê¼³\Þ\êxbW¤5','',0,'?'),(_binary '\Ï}›=Y¯þl\Û¿\âŠ&K','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-subtotal/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ã¡»]€kj½uò±}\èE2',_binary ',­§{ “þ\Ç÷\æ(¸±X“|-I\à»òTq\\\Z\à\Ä\å(	-','',0,'?'),(_binary '\Ï~F§£t\ÄŒgþ›rú®','wp-content/plugins/contact-form-7/includes/rest-api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Üv‡»\á7\îü\Ï\î+8—g',_binary '&S¯\Ô\×:EH†ï‰„	t—ü\ÍÀ+\Ùqü¿\çœÍ¤û	','',0,'?'),(_binary '\Ï]G\ÍðÜ¬vre€¬ù','wp-content/themes/flatsome/inc/builder/core/server/filters/meta-options.php',0,_binary 'BE,%\Ý-\â(8Ö‡O',_binary 'BE,%\Ý-\â(8Ö‡O',_binary '¾T³W\Ø\Üþ4s \\ø\à‘[\È+ˆ\ä¥\ÄÃœ','',0,'?'),(_binary 'Ï€tGÈ©\ÈÀ‹¤D','wp-includes/js/tinymce/plugins/image/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŠB\n€4\Ø\\ªµ0ð=',_binary 'Q¸vö©“SI>;4¾Ž1û%»rf\ï$@\Ïp\Ô\Øø\\j','',0,'?'),(_binary 'ÏX—{\Û\Û“lÁ‰J\"€\ç','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Payments/Integrations/AbstractPaymentMethodType.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Û\'¤ö¼G^\Ö5´l\È\ÎG\ê',_binary '\ï\í	\n]²\á\ìhñ(\\¦X¢¢°\Å„ROúœü\ÛÛ’…','',0,'?'),(_binary 'Ï²²\Ú\ÃK\Çh¯ŸoÄ™t','wp-content/plugins/woocommerce-multilingual/inc/template-classes/setup/class-wcml-setup-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i“\ÛÆŒ™\Ú\Éêªªõ²’ò',_binary '”ÆŠ&ÿ\Ègù\ãV\Ïz5Œ}M;K\É\ì\Î>\á²/û\Ì³','',0,'?'),(_binary 'Ï„g¼¸\ÔVŠR_Ö’¥¼I','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products/edit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\á\Öp‘&9sË…:\"\ä(øe',_binary 'q«,\ÅOª\ÑV\"¡¿³@\æð’C-\n\"/»po¡Zdj','',0,'?'),(_binary 'ÏŠ=÷\ÆX®¬÷bBz\' Œ','wp-includes/js/jquery/ui/effect-explode.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾+\ê¦)\ÖDÜ¨˜\ßð†\Ñ2',_binary '4:r\à\Äy\ã\Z\r\í\Ö\Ðu¹iåª¸Žj\Æ\rËˆ\"†¬fn½\Ö','',0,'?'),(_binary 'ÏŠYw\Ô×¹˜ŒE­G\ê','wp-includes/blocks/group/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>)…eþü[\Úh:;*>',_binary '6‰!I{™û\çÔ¡†™~\ÑcH€,¦/ÀJHd','',0,'?'),(_binary 'Ï—‘\ì·j–Sš\ãcr;¤¦','wp-content/plugins/woocommerce/templates/global/wrapper-start.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K-\è´C¢%:p¬a*‚Ì¤',_binary '‹´&™•m˜\äH+\Â\Î`¾\ßm:\ä\ÑÒ†—c\ç\ÔG@Ú¯','',0,'?'),(_binary 'Ïš–\"ž²‰jðy±\Ô\Í\Ý^','wp-includes/js/dist/blob.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FvbÌµ|\ã\\V\Ãg',_binary 'O«§Ù€%šß¿ññ\Ý\'Z3þp*•‚Ÿ-\àØ','',0,'?'),(_binary 'Ï¯\"^\Úh£õ\à`+\ï}#v','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products/all-products/frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\ïÞ‚¾>i\ï\Îd\×\ÖöDc',_binary ']z–a±ñ\"\Ì:˜‡¯\ÞÑ…f°N\á\ì›E\Ô\êD»+	','',0,'?'),(_binary 'Ï¸H9\çµ5-Ìø\Òdw','wp-content/plugins/woocommerce/legacy/js/admin/wc-shipping-zone-methods.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&Y‹\Ã(_Áº+4ÁJ\Ö\åÇ¬',_binary '«`À¸5\íR·ðUf»P7œG!,f”dø­J²\"`\Â×­÷','',0,'?'),(_binary '\Ï\Â\È­ÁHÔ¹ò\Üf\ëk\á','wp-includes/js/tinymce/wp-tinymce.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1_H—0¬\í\âUS\Ã\á@hó',_binary 'Áš\Ñ\Û\ë\Ï_Ø•\×\Þ\ÉNÍž\í½–\ì1‰*\ã\ÖÇœýö','',0,'?'),(_binary '\Ï\Ïbô\×Nž(Î¨t*ñ','wp-content/plugins/woocommerce/includes/class-wc-embed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`ø\Å7\ä\Ñý®ÚŒ\äß†',_binary '%§²Î»òPDÛ‹jõ«z\Ô°Tß®qO‘û\"g\ß','',0,'?'),(_binary '\Ï\Õ\à\Ãül…\rÿO©,','wp-content/plugins/nextend-facebook-connect/admin/images/layouts/below.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆY¶P»\ÌlT˜ôÅ‰:\î',_binary 'b˜\ÔXÁóm7‘\ÉVÔ®	 \nŒOP\n(\ïrDCÖ¬\È','',0,'?'),(_binary '\Ï\×€yKv\ç\Ó.ù\Z±','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/namespaced.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>¹„_\Ð3õ\ÑNw°#÷',_binary '\àÇ¥\ãmZz*,=:\n½\Ù-\è3™™|£\Äù!“\ã\ß','',0,'?'),(_binary '\Ï\×\Ë\Õ?\áMù \à—Z','wp-content/plugins/ti-woocommerce-wishlist/integrations/comet-cache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ø\ÅEg\âL\Ð\Ê\Ñ+\n ¦^',_binary 'RØ\Ðó*OF\Ä\ØnLftº%\\Õ˜vó«\ÙAa22’','',0,'?'),(_binary '\ÏÝ™ªP(™ƒ\ÉO\'E‘ùe','wp-includes/js/jquery/ui/effect.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'žÈ‡zN…¦³š]ó{K>',_binary '\à\æ§9G‚€\ÑðsÁ«ôù\Âþªs3òarw;UÈ›Z','',0,'?'),(_binary '\Ïé‹­¡‚{^ªMU*ô_','wp-includes/js/twemoji.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iª\ïY¨…ñ´¯a¤\Íy',_binary ';9Ï›%¢Ù›Û§‚p›\ÉG¦‡\är&Ze²;eO;†´j','',0,'?'),(_binary '\Ï\ìB\Þcc!{\ìlnMº`','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-attributes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\"§\èdŒ/D7¼y',_binary '‚\æôw‘\×A\n©#_P\0¤’?ñ\æ\æºK3°£\0†\å.¾','',0,'?'),(_binary '\Ï\ì\Ö$g\Í\în—­©‰ö\Ã\Ã\ï','wp-content/plugins/ti-woocommerce-wishlist/templates/ti-wishlist-user.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ùI\Ù^\Ç#[°Ž\Îÿx†ø]œ',_binary '¿\Ù\éXO€[fñ0\ÏiF}ü\ÓK–¢¤Ý’\Ã\Î!‚I0m\Ø','',0,'?'),(_binary '\Ïüô\\TŸ¨@SO\á|m','wp-includes/blocks/audio/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ç	\ë,Ç¾	§—YQA\çk',_binary 'ñ‡7T¡˜Œ¡\ÓÆ²üaYš§¡,õø¹Xõô8\ì','',0,'?'),(_binary '\Ïÿ@¶÷AO=	òyA¼','wp-includes/class-wp-paused-extensions-storage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\ÍûÊ¤¦O¥­.ÁLX',_binary 'UY¬‰\ì\ÇÞ–\\\nj6h¶…Í–¡bYn\Þ\Ü5õ\Ý','',0,'?'),(_binary '\Ð¬]mÙ²§	â–­\ì','wp-content/plugins/wordfence/vendor/composer/installed.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>w\ÐÌ©	÷\Ó&J¼œ¡…)',_binary '±ð™«M\×ó,¹P:”k€\nN\â2…[s\nWze]oN','',0,'?'),(_binary '\Ð\nK\×/h\á¨jºþ\Êò[','wp-content/plugins/woocommerce-currency-switcher/css/sd/ranger-23.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A/(;¿Lÿh÷s©}\ßó',_binary '¨Á_“¢ y\\I\í\Îh©[p\Ìxs\Õn[\ç7\ÍA&¯…/','',0,'?'),(_binary '\Ð\ì¼ú¦‚gs˜†)Ý…','wp-includes/blocks/latest-posts/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÊT¤HZ0e’\æutZ€',_binary '\ëóª¸œ”xagö^4±nðrUYR)ŒT\Æf‹KÁP^','',0,'?'),(_binary '\Ð\ì®$\çŽ†‰\í\Þwgý','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yit-wp-pointer.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'û\"J\n)\ÑO”•¾¢‹µh',_binary '\æ*x ¹«ð)·S\"c3.¯û˜PW\Å	\æ6\å\éS]','',0,'?'),(_binary '\ÐI\Û\Ç-gf\ÜEÝ‡0\Ãm','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/mastercard.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3ó\Õ\É\Þc×´Ñ•ª)d‡',_binary '(\Ò\0\0‡À.k¨ß¦\Ì0w/\Ü:Ã‡º 9Nž_ q','',0,'?'),(_binary '\ÐH²%\×°9ž\ê³3»','wp-content/plugins/woocommerce-multilingual/res/font/otgs-icons.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'U³DŽ‘ÿ?K¸X\Õå¶„\Ög',_binary 'Rö÷Ei¯\ç\Ë5\ÖV\éµ\å:3w¾.~Uª\â8\ä\Ý+\Ý','',0,'?'),(_binary '\Ð%#óº\étÁ\Ïò4„x','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y¨Wû0{X\ån§Zÿ0',_binary '\Å\0AVðŒRXˆ\ÊÈ•\Ê~\Ü\ád§^\í/)…@Rò\Æ','',0,'?'),(_binary '\Ð)k9—xÝ \Åü\È\Ú)\Û','wp-content/plugins/ti-woocommerce-wishlist/admin/settings/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ð™ .ƒ‹J5n>k«w.',_binary 'õŸ\ÏÞ2£”\êüD’l“<ˆ©\Ôhõ¸MZVk ','',0,'?'),(_binary '\Ð-)_ƒP¬±Î‰\çuÿ.¿·','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/classic-template/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/˜«ÿõ§,½\ËAø¡<',_binary '(Ó‚œ“Ó„P\"’¬\Øñ‡É­\Ék8¾8õKýaG','',0,'?'),(_binary '\Ð2\Ú$Í³.F“F“h','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/rating/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&E€†÷žÇ‹)ez§)y',_binary 'Û‚Í¡Ý‰\ì\èq+\Úô¼Œ¥\Í+.:\Â\\ø»1\Ùa¦','',0,'?'),(_binary '\Ð>6bY£¹•AUFð.','wp-includes/blocks/archives.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'BÅ²¼†\Ê\ZA\Æ$>¦\Ü÷',_binary 'À¢²wl\Ê\Æ	j\ât]ü¢\î]w^\îÿ;¨6d”x\à','',0,'?'),(_binary '\Ð>›s\Ël›WD7õM°','wp-includes/bookmark-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ð7œøLh9xcšX\É',_binary '‚S =¹‡\'	Šo¦\Â<U#Œ\Øø©”ó¸\è\"ïŸ„XXô','',0,'?'),(_binary '\ÐM\Çú©m\Î?\ÉPŠÀv75','wp-content/themes/flatsome/assets/img/payment-icons/icon-cirrus.svg.php',0,_binary 'c%I„\ä.\Ï\Ó\0y…\Åu',_binary 'c%I„\ä.\Ï\Ó\0y…\Åu',_binary '±L 7½\×]Ý´Šsûœ%tœs±¡›#Rö÷Á\æˆ}\â\É','',0,'?'),(_binary '\ÐU3ƒò\ï/Ç½³µ(\Z','wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-resource.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ï›8\\y}ƒ±ù‘·',_binary 'Oœ¹\×\Í\È\Çxð¯¯}\Ó\0\áO\î\è\ÌW;1§;v¿Ždù\n','',0,'?'),(_binary '\ÐX²D\ZŠ™(¤ü±.\í','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't—&\ïr@;…\ì\æf\à€',_binary 'Ÿiifz÷Î°P\\ŸB<WÙ´p‡\Ì2£®,ªT\ï\Ã\Ð','',0,'?'),(_binary '\Ð]¥¿(\\`5>”_\Ë9','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/WooCommerceSubscriptions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nÀ°‡F!\ç®IÈ·y\Ç',_binary '%»\Þqj^Ø¤³\ç<¿u÷U4J\rù\ÐHq’\éõ\Î\Ê','',0,'?'),(_binary '\Ðp\r\æÿ0\ê›\ÞO¶¸c÷K','wp-content/themes/flatsome/inc/blocks/uxbuilder/index.php',0,_binary 'Ëª\n ˜ÿ.dK¬^\rA\ë',_binary 'Ëª\n ˜ÿ.dK¬^\rA\ë',_binary '\è\nqÖ•ö/\×‹\n\àˆ.Ä´¯\ÃÒŠ(±¦\n™','',0,'?'),(_binary '\Ðr™¬^Ä¢%w\îð\Äji','wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-sk_SK.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\Þû¸m^‰¼\È?†RT|',_binary 'v¼\×\Û68õ„\È\Ù{d\Å\rb +\ï\Ümq\á\ÈR\'×™','',0,'?'),(_binary '\Ðr£\ß\Æ\ÝTžC²€?(','wp-content/plugins/yith-woocommerce-wishlist/includes/class-yith-wcwl-wishlist-factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ö:³¡v~³÷5tª;ˆ\è\Ý',_binary 'Q\ÕÀQ”³ý†Ü›ñ*Z\Ç\Ãg¶Ê˜Ÿ\ì²süVŠG¿#\ï','',0,'?'),(_binary '\Ðx‹!°/Ù \áU »<À\ä','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/all-products.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\àüø‹`\\\×X\Ð>¡¶',_binary '\Ñý7Š½`=ù\àD;P{7–«,\Ñf.q  ‚$cx\í','',0,'?'),(_binary 'Ð‹º$“\é~†ƒ½}–I¡','wp-content/plugins/woocommerce/includes/gateways/class-wc-payment-gateway-echeck.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\äñœ¹^¡:‘?\'V+',_binary '\'K÷\Ï\Óÿ@ÀŠ®:¨3J\Ë\à\n+N\ÝAž\Õ\Þ\ìkø','',0,'?'),(_binary 'ÐŒ³R\ÌÈŒ;¥\É\rO','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/form-step/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Dñ\ÈI„²\Û\ã…mK¬',_binary '\Ó|pk-ûzÁ¯/´¿¦&\Õ­\ï¢ý\ëaú­n^','',0,'?'),(_binary 'Ðš\"0{©\ÕÔƒ|T\äE','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-express-payment-block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'okÓ‚û«ø\\‘@{‡\ÞD»x',_binary 'U\×\\þ{a–\ÛGÛ±\Ö\0¨¿a\Ø~¡\Õ,	ü¨\ëø³¯\r','',0,'?'),(_binary 'Ð¢’íŽ¹‚|\áŽ\Ñ\ä\Ø@','wp-includes/images/smilies/icon_arrow.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' 	\ÉÿJ<\Ögþ\Ìo9:x',_binary '¥nc²\î\Öx0’Ä¥\ã\Â\át‹”N…¡\ØÞ¾Y2X\0!','',0,'?'),(_binary 'Ð«\Â™/µ¨¦r‘¡94\Ô','wp-content/plugins/woocommerce/assets/client/admin/chunks/3700.style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡c£„¶\Îx´]*Œ5O\Ê\Û',_binary 'Tj³\åL\è¨32Ð‰†\Ï÷9¦õ»òP\êu\çcý®oð','',0,'?'),(_binary 'Ðµ\Æò\ÂA\Ñx(\ì\îl\×òû','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/SpecRunner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©šžP\Ï\ãOCªŒVõ€',_binary '1\×\Ç\ZÌ¸ò\"¾\ß&F\Ê\á4d\âþ\â¬÷–Geøw«b«','',0,'?'),(_binary 'Ðº~1„ý\ÌO1Îº)Ÿñ','wp-content/plugins/wordfence/css/wf-font-awesome.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸\'\ÄÿM\ä\çÙ‹øVµª¿:',_binary '997dIŠOu\Ö-\Æøùñ%enÔ» 1º\ï„\é¾\ÓI','',0,'?'),(_binary '\Ð\Íu|¾=:£1¾\ç\Òvø','wp-includes/blocks/post-excerpt/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Õ\ÚQj\Þ)O=S©R˜ø',_binary 'oCœl\'²6Ä²Àj‡\Ý¢2ð\'\Zªl\'ö\n\Îó}{','',0,'?'),(_binary '\Ð\Ö/¨?Ÿ\à–\Ú\ÛUñ‡\ê','wp-includes/Requests/Utility/FilteredIterator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ#š\æøò6B\Èoü¬fúu',_binary 'ÁAS\Z3H	\Â\ÕQ9Í³o³@h_¯\Ú!1S/£\èx','',0,'?'),(_binary '\Ð\Ö2[ñv\\)›I†\ÝðQ','wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~/\ê\\ž/0oÒ¹	×¢\Ú\\',_binary '•\çú±g\ÖZ”\ËxEÄ´÷Î—M&3r\àøq‹c\ÔlTG\Å','',0,'?'),(_binary '\Ð\Ø^º\\¶X\èPvS¬\\÷{','wp-admin/js/media-upload.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F‹ß»V?\Â\ßa\Ïn\r\Èº',_binary '™E¥ŸÀÿ\ä‘òa,Ÿ\Z‚\á,yM /\\iQ\ÙÓ \"\Ò?28','',0,'?'),(_binary '\Ð\ÝG4›\éiü¤ö\Úñû','wp-content/plugins/woocommerce-multilingual/templates/setup/ready.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wH¯»˜\Ö‚\ØÆ‹®X\È',_binary 'j\ìfG¸U\ÄùBúqx4f˜; `…˜s\'Œ-Å—\é>J','',0,'?'),(_binary '\Ð\à/<v`6Ž“Y]¬\à\r','wp-content/themes/twentytwentyone/assets/sass/07-utilities/measure.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³B„\ì)? 5ðz_´l',_binary '\ì\r¬þ‡E=¡¹°K\Ò\ÂIóy!Y¶§v*\ä\\©“_–>','',0,'?'),(_binary '\Ð\é™ü\r.žˆ –¯\Ë','wp-content/plugins/nextend-facebook-connect/admin/templates/settings/easy-digital-downloads.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'sM=/\Ëi^R*{h‘š',_binary '\Î*‚=X¿ûO\Û\×	ö¿Ö­~Ç™\å\0)FªýÕ³','',0,'?'),(_binary '\Ðô\Ò\Ï\Í,\Ù\áñf\ë\×','wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y2eR\Å\Ñ\ÛÛ»ÀI\è‹\Õ',_binary 'Rws\Êú5Ç¨6þþ\Ö\æ¡Ð¢öKxôži,u|»\Ü','',0,'?'),(_binary '\Ðôó¼ß¤\é\ç\ê>\Æ\Ç~$ó\ï','wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-orders.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n.\Âm\à“’€®·Cw˜„\\',_binary '|’½R$G0¤€.J\n¬\ë^Q¢k†k~˜¶0@\Ê','',0,'?'),(_binary '\Ñ\0 \Ù{2ˆ\ÈA\Üøƒ\Ã	ˆ›','wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/core/webfont.js',0,_binary '½U‰%°ÿ!l?pEhÁ\Î',_binary '½U‰%°ÿ!l?pEhÁ\Î',_binary 'tÀ\ÔÿŽ¼0Í¸¯?\Úhu(U›\æ\È&œ>#¥‚ÿ®','',0,'?'),(_binary '\Ñ\0p«\ïWG±\r}^\r¶Í„L','wp-content/plugins/contact-form-7/includes/upgrade.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Nœñ[2YQ\äÝ£–\Ô·d',_binary '1¶§÷\ÂñDœvQ²5C¯†³®#¼ª±\ÝB\Ø#','',0,'?'),(_binary '\ÑœEU»«ô-Ñ„ƒM\Þ\ê:','wp-includes/blocks/more/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\â\ã‰rš<%g£gdÏ‘\ã‰',_binary '[|¯‰.NË¡\ê\É\ë\ÑÀ?O\×\ß];´#õÁ5·Ù‡ƒT','',0,'?'),(_binary '\Ñ{!k+NËˆB—¿\Ö','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/textarea.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÄÑž\Ý*—©ýjdý±™H',_binary 'ù\Æ|ñ!)ô¼œZþ¬Atª<[5³\\“…n<»\Ì','',0,'?'),(_binary '\ÑØ€\à8£Ll\Ï H\"','wp-content/plugins/woocommerce/legacy/js/admin/marketplace-suggestions.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«\Òo\ç\ÒqØ¯¼‰ñI¦}',_binary '\Ìé¤”“/žÁ ˜c0lK\Ù\à’iûf­\Ý(¹-\ê(\ÃýM','',0,'?'),(_binary '\Ñº¸JêžÊ¾ºµ–D','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/blank.svg',0,_binary '\Ó\ç\×dò‘›\Ö!WyZ%W¹',_binary '\Ó\ç\×dò‘›\Ö!WyZ%W¹',_binary '­b×ˆkEÏ£\Za«;™Z¾j\âú¥¢CIK`P¡\Ç\Í','',0,'?'),(_binary '\Ñ3qöx¡\ìE[pü\æ@i\Í','wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki.php',0,_binary '¦ª@¨\Úð\î°WW\âþxr)',_binary '¦ª@¨\Úð\î°WW\âþxr)',_binary 'YË¬´F\ç[\Õ\Ì\n\ä¦þ1‚nü?¨ó\Û\è^#€','',0,'?'),(_binary '\Ñ4¸4›\ç5\ç8•\Ü¤','wp-content/plugins/woocommerce/legacy/css/twenty-twenty-one-admin.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\â‚A¯R“}ÿ',_binary 'ø\Ê÷\Ìö#Ÿ”v\É5W9UJU°\î \ÖrŒO˜\È','',0,'?'),(_binary '\Ñ4\ä\äZ\É$µ!™õ’J\Ú\r','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-subscription.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œ¶>W\Ù\\˜‡Y-jö3U',_binary '›—f}/‚\èM£ª§¡‰Igâ°‰7µQu\íg<†™,qv','',0,'?'),(_binary '\Ñ6ù¼¤‰urú­(£–','wp-content/plugins/woocommerce/src/Internal/Admin/Onboarding/OnboardingSetupWizard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e2vŠ`€{\\Ùžžp',_binary '_yfË‡pÞ“ïœ´†±FWTyeŸ9»y\×@Ž¦Sm\Õ\r','',0,'?'),(_binary '\Ñ:¦½œ\ì(\\Pu‹Ž','wp-content/plugins/woocommerce-multilingual/templates/setup/multi-currency.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å«6U\â§@CW\ìðjü!',_binary '\Ú\r¥–1Y\Â\Ð\"e¬|„²ó\Æj€m¸B\åuðJ¼Ÿô','',0,'?'),(_binary '\Ñ:¹\n\Ø\Çy­ËŒ\"4«','wp-includes/blocks/text-columns/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñ\ë\ïwò\å`}\ÞNû\nºþX',_binary '¬t!\ï\ãþlŽ`¯|*µ^…«\Ù0»	\Ýl$C§»ò;‡\í','',0,'?'),(_binary '\Ñ=´ª—¬·jx¸:ùŽ]P-','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-mix-and-match-products.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ìý¤xý\ä#<N*\\´\Æ\ê',_binary '~7øQ0¿P\0—_ž\â†\àVR>i\Ú\Ù+2;L(Q','',0,'?'),(_binary '\ÑN\r¡µ\ßÆ£ñ¦´\å','wp-content/plugins/woocommerce/assets/images/onboarding/wcpay.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰\ì\\gZ,Pm‡¥À+S‚',_binary '\èLq‚U\íp\ÅÏ”\ÈØ†¤º´B/|ö>P\Ö(9\ìu\Ù]P\ì','',0,'?'),(_binary '\ÑOH;5öz‰T\ÐÁø`\Ô','wp-content/plugins/woocommerce-multilingual/classes/wcml-setup/class-wcml-setup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þq‘L\Ý\ÜI\ÓDqV\çµi',_binary ' ­¼\é\Ú@2 ù\Ê\ê÷‚•\Ä2§©%=…aiR\Å58\å\ç','',0,'?'),(_binary '\ÑUWó««~/NŠ\Ó	§	œ','wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-svg-icons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\ÆNµ§¡˜D\nªe\×\0·',_binary 'Û¼‡\Ù\ç’ñû/£¬€«\Ä$%Ÿ\ß&U”\Äùª.õ','',0,'?'),(_binary '\ÑYoš\ÚUaˆ$ž;\ÊvC\ßw','wp-content/plugins/woocommerce-multilingual/inc/constants.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9Z\Èd«ý¸X¥¡\Ú»',_binary 'ô\ÆùŠo½ß¶0\Ú\ÃH\Ë\Êp	k\Âk5•¨Spx¡pp','',0,'?'),(_binary '\Ñ\\^{±k£˜\âÀ\ã\Ë','wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/styles/style-1/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ê\ÂUoòZ³;Œ\Ïv*ü-I',_binary '¦¢l4\çÊ€at:¿Î O\Ä=Õ„ó\ì€:>\Ùd£\ÖõVð\Æ','',0,'?'),(_binary '\Ñ_\\c9mLŠv\é\è£1‰\Ñü','wp-includes/compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—Ô¸eyf\íŠÿQ¤$¤´',_binary '=\êŒC‘0Gv˜÷¿IùÆ¼ª\ÐðJ§ò\Û)£¹&·u','',0,'?'),(_binary '\Ñhþ ô\âK¯i0  \Ä\'','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/notices/Dismissions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à²	\ÉÍŠÍ·\â^\ìk¡p',_binary '”}	£¨XÿW’,l½\Ó\ÖÀ\Ø?GØˆ´lºðU@´','',0,'?'),(_binary '\Ñlˆ5‰™³ô\Ä\ßp\â\Í','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/search-list-control/types.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\Òp´aú°i–	\å8 ¢]R',_binary '\Â\ï\ãê³½¥¸\à`¶˜w%ôú¬…µ\Å_J´_3`\ã|o','',0,'?'),(_binary '\ÑmaõvMvŸKó³¥\Z','wp-content/plugins/wordfence/views/scanner/issue-wpscan_fullPathDiscl.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n-Éž3Z¾¨2ˆ¬Ž>ò',_binary 'z“µ\r¯i\Ø\'\\\r‚jLü¨\ïã¤‘\è§4!¿U\ã‘\Ö','',0,'?'),(_binary '\Ñmª?\ç\\šÿÏªaGò®Fô','wp-content/themes/twentytwentytwo/parts/header-large-dark.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\Æ\Øß‰\rpñµ,¥\'3',_binary '›&®‡0M/WGbv‹?õÀ\éº\Ë1m.™þ¼2\Ì%v','',0,'?'),(_binary '\ÑuRl£t\Ð\Ý\ÍÀ´\"“\Ñ','wp-includes/sodium_compat/src/Core/Curve25519/Ge/Precomp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ü\íû7ÖŠi[L¯9ÆH	¥',_binary 'ß¹{8(ü•Ãatûÿ\0C\Ôn3Q\í„Ú¤\n‰l?¼$yñ','',0,'?'),(_binary '\Ñyw˜¦\×4=¨³¸\ì\Úo„','wp-content/plugins/woocommerce/legacy/css/jquery-ui/images/ui-icons_222222_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's£Nµ5‹J¤šA\ßZe6',_binary '´Êª”»Z6\ì‚\Å\å?c7<”J\Ú&–˜\Ø\\`jF\×','',0,'?'),(_binary '\ÑzÆ‰\âÀ«E®…ö;Ì‡\Ë','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/item/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ºRØ•û[z·ËµM˜\Éâ •',_binary '#ÿ/z\çO8Td{¹®F£\'°6(U€s·Õ•\ß\æz:Vž?','',0,'?'),(_binary '\Ñ|õHÃ»-I…H·{F}\ß','wp-content/plugins/woocommerce/legacy/js/frontend/add-to-cart.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\á’1\Þ\r÷™†P»7iU',_binary '€ð‚y`]9-¼<YðE¡ôˆ·iû:lU\ë3\'|K\á','',0,'?'),(_binary '\Ñ|\íÖµ¸ºõ_J»^¼“\æP','wp-content/plugins/contact-form-7/assets/icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\æ\ËÐ£!€È™ð\á\Ý/œ',_binary 'inY…\"xgµ”e(Mü°Ç…\ÃË•\ï\Ú\ß\ØU\í\n2%´','',0,'?'),(_binary '\Ñ}¾˜\'*\Â\â°\ÖÙ¶\ápñ','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/yithemes-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°JE\ãu`\Û¹\æ?£ª¥',_binary 'ˆV´ù”ö\ÌsK\â\Ü\îb\'ü?¨ÿöTÕŒJ\ÌÀ\Ï\äö÷\ä','',0,'?'),(_binary 'Ñˆ¯Šg–e\ã,ý´™','wp-content/plugins/woocommerce/legacy/css/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£Dþ^·°;‡\ë9\Æp\Ô',_binary '¯ƒ(Pd‹L°\Å\è¿\Óì»˜9¬\ÂI\íÿ\à\Ëw y›1Q','',0,'?'),(_binary 'ÑŒF·©ô\r\ç	yI˜8','wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/privacy/class-yith-privacy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“¡\"\Þ™4~w9[dKHø',_binary 'v•Oþ\Ú\ìW?Cg½\æ\îY(\ß¶Á1¸\Â%›Â£{T','',0,'?'),(_binary 'Ñ–´\"™\Ðs‚k£\ãü83','wp-content/themes/twentytwentyone/assets/sass/05-blocks/social-icons/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£M+§B<;w\Ú\rT9º»¤\Ð',_binary '\Ñ(%\ÕL{Á0\×d\ê &\ì\ÉX\Ò2Iþ•Š\Z•Êœgqû¦','',0,'?'),(_binary 'Ñœ\ÔbX\â\0\Ø\á¤ —35','wp-content/plugins/woocommerce-multilingual/inc/currencies/currency-switcher/class-wcml-currency-switcher-templates.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u¼\Û\í\'¹¥ž^\é/b',_binary '¡¡*XªÁ€.\Ë>£\Z’\ÏOh²7\äŸ]\ÊSQG\â','',0,'?'),(_binary 'Ñ ]\Í2hd}¼\Õýh\Ù>','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-name/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G:\Ï\á`\Ü\ÒÎ›\ßFtD',_binary '0wRRöH:b#°Þ¥*Dû\Ñ	;;P&\Óm•#\ÖÀ¥\"','',0,'?'),(_binary 'Ñ¦r¢JÊµ=ó MW\Ä','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/proceed-to-checkout-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8@¢³\Z°3\ß\ÑR',_binary '\"fE ŒqlºaD})^‰HN¿”Žÿ†]š-\îÁÀ','',0,'?'),(_binary 'Ñ¦õšPgf·\é/‘E@\Ü','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UR)¸³}ñg)vš¤\ËWs',_binary '€QT±\Ø\ß@\êkˆ´›\Éðš»«‰\"¬!–9Cˆ¢\Ü\èa','',0,'?'),(_binary 'Ñ¬\à\Â\è\æ\æn*\çÛ²','wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks/Payments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿó|\Î\ÊF½Š“m\Ï?',_binary '¾ú\rÁ23\Ú9R\Ñ$¨¼s®¨¢ÿn\ëÃ¬\Ü‰5Y','',0,'?'),(_binary 'Ñ²‹Ç¸‡\Üw9E¼B,\n\\\Å','wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/builders/elementor/class-yith-elementor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ØV\ä&\Ï\äñ\ÄNƒ«&K\Z\È',_binary '˜ò\Îc÷Žc%m’^„Ý¹%™±f_…{\ÖÓ„ŽfwŽ“','',0,'?'),(_binary 'Ñ¶\Ü\"<9ÞºŒZXmªÇ•','wp-includes/class-wp-theme-json-schema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>IuQ¼€9ce{\èd-¶ž',_binary 'ºõ\ÔD\ã	¦rssE‚\ç^¥9‹«£\Ã4 ´’J','',0,'?'),(_binary 'Ñ·ž\Ç\Ó\ã{\É#S\Ã\Ø\Î7š´','wp-content/themes/flatsome/inc/admin/customizer/img/nav-default.svg',0,_binary 'Ü®R+\ß+\ëwôØƒ\Ä^\"',_binary 'Ü®R+\ß+\ëwôØƒ\Ä^\"',_binary '5¹0NrŽXmL+\Ì;vö\Æ\È\ÉbôÀ{>1T\É;\Ü','',0,'?'),(_binary 'Ñ»ö¯\Ì=\æ£	\Û\Z|2ÿú','wp-content/plugins/ti-woocommerce-wishlist/views/wizard/finish.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\×!„\r\â°úð\Zi±n\Íq',_binary 'Œ(dúT1«5ý\ä«_\ÅZª\ÚmøÞ„ð\Þ\Ý\èÔ‘gzQ^û','',0,'?'),(_binary 'Ñ¿‰\Ç/ó¹Š\åþ@1\0 ^­','wp-content/plugins/woocommerce-currency-switcher/css/auto_switcher/round_chain.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£Ô¦Ï‡\ænf$TBŒ[\0',_binary '˜j¾&Ö²í†—\n\ênuõÿw\ï¢\ïAfy‹=À®;','',0,'?'),(_binary '\ÑÄ™aÓ¶Ž„\è´_cGj\Þ','wp-content/plugins/woocommerce/includes/class-wc-cart.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡©B›°\íµEqz,ÿ-¸',_binary '«4‚ª‡\"ó¿z~,O7Q\êi\ë j” Hµ,R|ƒ\ëü','',0,'?'),(_binary '\ÑÒž°/G^\ÈX0µ #\Ñu','wp-content/plugins/woocommerce/assets/js/admin/wc-product-export.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K\Ý`·ÿ‡”…‹F\ïfõN',_binary '?\ç‡\ï±ðZŒì¤³ñ“Š\çh\ç\Õ[\ÄÐŠV<ž4','',0,'?'),(_binary '\Ñ\Ò\ÏÍ¶ú%Q}2„¼hŒe','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/query-state/reducers.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÔVý©¢\Û“\î	\Z¡¹\Z',_binary '©\ç\ró\Ây\0£\Þ}\Ñ5Ã· A!z	Ž\ë†/œ»l?¤','',0,'?'),(_binary '\Ñ\Ô\Æ\"\ç+Wæ²ª0kŒþœ','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/custom-tab.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«t&Ô¾j\ç\"ˆ}WW§',_binary '‘\èòdSLV!ut%\n\ÐmÍº	¥\à%\è¯g?\Ã$','',0,'?'),(_binary '\Ñ\ÕvþA«]ÕˆL?°˜ˆp\×','wp-content/plugins/woocommerce/assets/js/frontend/country-select.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×^}\ÐU,õ\Î*\Ê*\ç‡\Ç:\î',_binary '\Û\æ\å¸\ÜÛ¥\Ôq~\ÙA\n÷}#køJ\í\ï\Ç\äß—\î±','',0,'?'),(_binary '\ÑÜº\×}p\Ë~\Øô¨\"ÿ–\ã','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-enhanced-select-wc-2.6.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N}´ðtÏ·\Ô\Ý\Ä<¿Ðš¤5',_binary 'W\ì\Ö\èòp–\"\Ó\Ó\Êô\Ð5Dº]jSq”\ÜH\Z)t?©\â‚\Ì','',0,'?'),(_binary '\Ñ\Ý@–D\ìz4£\ç;ŸdºM','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-discount/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pvB‘O`9ŒO˜g\Ñ\ÞY',_binary 'y^E\ÄI \íÏ½.<6Œ¬˜¨\ìx\à\î2¾\Åy\ê-‰\ÌÏ‹','',0,'?'),(_binary '\Ñ\æf°út½DÊ‘»‹˜','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-taxes-v1-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯Á^ž3\É\rO\Ü9ð',_binary '!\Û\ÈP•B¶0ø3†\0j\îù‡*\èA…·\Ï\Ä\0÷÷\Ù5','',0,'?'),(_binary '\Ñ\ç[\ÓMs\"+\ÝZª¦','wp-content/plugins/woocommerce/assets/css/photoswipe/default-skin/preloader.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ãJ¯»HZ–\êò§‰²¿:öþ',_binary 'Šj¯ÿ.O¡ë©†3„\"²©aüÕ© \ÐZ’1Ý·\Ì_','',0,'?'),(_binary '\Ñ\ï1/Y\nLÞ‚N¤n·æ­º','wp-content/plugins/yith-woocommerce-compare/assets/images/10.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—sq.:°‰ÀÙº\Ý?S|µ',_binary '„J\ì›aW\å\à±,°@©¼Ü­`\Ù@#ù·\Å\×V/','',0,'?'),(_binary '\Ñ\ï^\Ö\è\ã¸\ä/g8\Ç]F','wp-content/themes/flatsome/assets/img/payment-icons/icon-moip.svg.php',0,_binary '›\âH;õh2”Y7°\ëT\Ê',_binary '›\âH;õh2”Y7°\ëT\Ê',_binary '\èûñõ\ïiB\ØqŠSùQ?¨t£\0up\ÄU‘wû\ã\ÓV','',0,'?'),(_binary '\Ñò†¾\Ô_§V#ðªþ­\æBt','wp-content/wflogs/config-transient.php',0,_binary '»\ß\é¯rÐŒ\ßŸ\Ãû¥qJ',_binary '»\ß\é¯rÐŒ\ßŸ\Ãû¥qJ',_binary '!ði]\Â^\ë‹(5\Ze\ì‘A˜!—§¸ œûÍ¥˜6¹','',0,'?'),(_binary '\Ñö€u½n\Íúh€Ù\Õ','wp-content/themes/flatsome/inc/admin/customizer/img/layout-no-sidebar.svg',0,_binary '\×\Äø¯\ìÛ™ù\ZÅ—¢\ä',_binary '\×\Äø¯\ìÛ™ù\ZÅ—¢\ä',_binary '›)ú£¿–\Ù]92\r\ÞIV\Üí­¡\0KB\'2\Ã\"¦`]','',0,'?'),(_binary '\Òq`\Ì4sv^³Sù˜z','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-flatsome.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r§ù¾µß$¸žù«',_binary ' Œ›B\â;~Š¸¬¸Š\'t¯\Ã?–Ø¦\ÞA9_\Çë','',0,'?'),(_binary '\Ò\n@“=(\éY\ìY(X','wp-content/plugins/woocommerce-currency-switcher/css/images/ui-bg_glass_55_fbf9ee_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'øôUŽ’ÿ,\ÖgS9\ì',_binary '¥óW7•\"û3Áý= \Ã\"3ŸAóû®[+\r(§€2Aÿq','',0,'?'),(_binary '\Ò¨¢¯Ò›E\Æ\rn‰u.]','wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Shipping/ShippingModeProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ¨Kq¢¦ºôJÇ K',_binary '\Æ\èþ÷ ¡)2\ã+7B½&\Ên¸µ6#G¤f”¤&F','',0,'?'),(_binary '\ÒJh|±”0\çƒ`Zp˜E','wp-admin/user-edit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'û«ÏŒbx$quK5',_binary '<£þ˜¤\ZNRIŸ-i8˜§ýÈ‘¢\Ú &\'Dh\é','',0,'?'),(_binary '\Ò„<ü+4—5–\rE','wp-content/plugins/products-compare-for-woocommerce/style_templates/nice-blue/berocket-nice-blue.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rŽ±\0w\Ç\ç¸y |VÿK',_binary '¼¡•o\áŽ\Ó7Œ)M¥/ô{|nŠ¯<\ÛO\Ó$øDU','',0,'?'),(_binary '\ÒŒ{\ëMÁ‚²\î	³?#','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartCouponSchema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'À²’¦Œ…\å\Ø\ÂnÁRE',_binary '\Ê\ç¥ytváªaF”\ÇZƒ\rn÷­É¡xD«a\ëh\á','',0,'?'),(_binary '\Ò$6§zžƒ¡0ñQ‰^ñ*','wp-content/themes/flatsome/inc/builder/shortcodes/text.php',0,_binary 'S`¶\Û\å†\ä›ðxú´v„ ',_binary 'S`¶\Û\å†\ä›ðxú´v„ ',_binary 'œoY\×þM–y]ñ\ØÔ®\Û\ç}Ô¯MÝ¥›ü½ü\Ý\"¤\ÍKW','',0,'?'),(_binary '\Ò%s¢n\'4Å©\ã\ÆE±Z','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/test/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\­#‚\"k•†\Ã,\Ùó\Ø~ ',_binary 'Ÿ¢`¦u\\f™[x²l¬\Ãaü,v‹\Z³5«qk‚Bó','',0,'?'),(_binary '\Ò+À\äðNô¾@k¢/7ò','wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-ten.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ãc%+\ÖÍ\Ë\'Z.«h',_binary '…—úB†¾»²Ÿyõ?\0%6/<°iLõ 	G£S?U¨','',0,'?'),(_binary '\Ò2\Ê3žTÁt\ìé½«\ç`¬8','wp-content/plugins/woocommerce/assets/css/dashboard-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"WÚµ<\0\Ã/eGô Lb',_binary 'r%’\Ô72¥G¾÷eRCº\ã\ÊTyðH3S!’ªõx\æa','',0,'?'),(_binary '\Ò7µ[*w¢J\nnˆ¬º>','wp-includes/js/dist/redux-routine.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Åk\ÞC»2¼0“W9‡',_binary '•L:òžX†7¶\ÈP\éDZÁ\Â\çW–’ŠbQ£o\Ò$ý','',0,'?'),(_binary '\Ò8¯séŽ—‰šß¹Oh\Ä','wp-includes/js/dist/vendor/regenerator-runtime.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\Ô\ä5õ¸.E/X\Ð;E¦~',_binary '\\´@öm~¬·cnþñ³•Y\ïµ>­•UwG\Âd±»\Ðeû','',0,'?'),(_binary '\Ò?¦úß…ö#~—Ìb­@','wp-content/plugins/woocommerce/templates/single-product/add-to-cart/variation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô*’½hªQ¥\Ã&›r\r\çI',_binary '\0e0ò\Â\'F\ã\íŒ3¿o«\0.\\\ám÷löû5\ÐA>U¶','',0,'?'),(_binary '\Ò@\é¤\ÅY\ç„‚ö¦a','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/hy.js',0,_binary '~E\Ö\Ó8\íñ?ö?cô\Þ',_binary '~E\Ö\Ó8\íñ?ö?cô\Þ',_binary 'ƒÀ\Ùw\\h¥û«Ž‚OCS{–’ªDY—T¹¼\ç¶o,š','',0,'?'),(_binary '\ÒG×¬Ž½e\Ã\î\Ú\Ò\n\é\0‘','wp-content/plugins/woocommerce/src/Admin/API/Reports/Import/Controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5”ã¥¯\Æù43\r\rÇ™',_binary '½¢8\Ðò3º·»³\Çú°\à\Çc\\ˆ\è¿’vð“\Æ6\Ã5','',0,'?'),(_binary '\Ò_°R5YÓšR\Ç\Ðþ„','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-on-sale.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\ã’\Âö’mê°¹s¿\ï,',_binary '¶ñ³/\ÝÆ§\êWû\×q!I<œur&ùl–\Ï&1“ð\ÐS','',0,'?'),(_binary '\ÒaL\à\ÈV„\Ë\î_¦\Z9\Ö','wp-content/themes/flatsome/assets/js/woocommerce.js',0,_binary '¸¼dJd”\ê.<˜„,»¸ ',_binary '¸¼dJd”\ê.<˜„,»¸ ',_binary ':+‡h5\Ö;0\Ï~7;9¤œ\ØÁ\Ú\Ú\Z1\nÖŒ0\"<³Zª','',0,'?'),(_binary '\Òa’r¾ÁKw œLðeyZ','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/CSSList/KeyFrame.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':¢Z\ÜüA­†bc\Ñ5N',_binary '\Âó¢•\é«\0NÂ“UÖ¨í€¥Bõ¶\Õ\Õ)rhP®\Ãj`$','',0,'?'),(_binary '\Òcjƒq0uˆeC¥’h+Lm','wp-content/themes/flatsome/inc/admin/customizer/img/overlay-left.svg',0,_binary '…’†\Æ\Âg\ä“(¹j] Ž',_binary '…’†\Æ\Âg\ä“(¹j] Ž',_binary '!²þ\ìc›\ÅKTÄ‡2^Bºj´™¼ó–\É=\Z','',0,'?'),(_binary '\Òj¸i±\é õ\nT\Ûæ§¿\r','wp-includes/blocks/post-featured-image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u®*\äf™\Ö^‡„d\ët',_binary '\ËU\åÁq\Ì×—\Ã6\Æ.L­p¾\"i=Ý®J=\é$ñP','',0,'?'),(_binary '\Òx\nA[\è*ZxS\Â\æ9®NY','wp-content/themes/twentytwentyone/assets/sass/style-dark-mode.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<èŸ®^?¸<]Íº\è¸³ó',_binary '~¤ 6WT¾\É-³J\ræ˜«g†šÄ‰/K\Ò','',0,'?'),(_binary 'Òˆ\Ä5‘\Æ\Ü2#“\ÉhM·','wp-content/plugins/woocommerce-multilingual/templates/status/taxonomies.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@Û•\×r÷lŒZXO§l¯',_binary 'ñ\è½\'Ü–s©y\Ã\0—^\Â\ï\Ë\Ü\Õnv[{-G ','',0,'?'),(_binary 'Ò‹DR…4…T\Óðw¤+8²p','wp-content/plugins/woocommerce/assets/images/onboarding/mailpoet.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ù›þ z!/qkWh\Ífv',_binary '\Ï`A/*¸<3ùC\ÉPz4\Z<oN-\ÉfA›a ','',0,'?'),(_binary 'Ò‘üAn3šX}ž½[\'','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-metabox.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ðý=\\\ÝÖ¢ú\"µ;±',_binary '%\ã®#¾B†½;)£‹ª`B\Øóq\í\Ü-›«\"\ÏYž','',0,'?'),(_binary 'Ò–6Š\ÐòMÖ¦¶®5wH\Ì','wp-content/plugins/wordfence/views/options/option-text.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k»ú‘ßŸ*×‰k+;8',_binary '7\Æ\Ã\èM$<\ì÷rO9ªGj\ÞÁ\ç¿\ÞEyžöQ*+÷3','',0,'?'),(_binary 'Ò›$ûy¿U÷6D\ë1´#','wp-content/plugins/woocommerce-multilingual/inc/translation-editor/class-wcml-editor-ui-wysiwyg-field.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\âZ-?\Z\ÄX‰gbS\Æ',_binary ' K\Í	•õšë¬\Ô-\ê\Äi °õx6A(û\æF','',0,'?'),(_binary 'Òžqª[ ½]LnW\n\\f†','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/utils.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O­Ž7\Ënœ\n˜p\ÃC–¢',_binary '¡R¶\âk3,o	+mš|ƒ!\æ€\í`¾X±¯\Êh','',0,'?'),(_binary 'Òž³\åú\ìÇŸö	Ks\Í\×\Ð','wp-includes/images/icon-pointer-flag-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©\å\á¦2ñ³¹b\ä\Ä&\ÕZ\Ìr',_binary '4ö”BÈ¥\Äª\'x+c\Òh¹Ò VnŸ5®I\Ú>ƒj\Þ\Ë','',0,'?'),(_binary 'Òª*\ã\ÔHšª¨\n;t²û','wp-admin/includes/ajax-actions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú¦P4Œ.\Äx±4€6',_binary 'V]K¼C·†˜T`yò8w@“Y’Vƒù„ÿ³ZP\Ò\Ø','',0,'?'),(_binary 'Ò­ó_VlKøg°!p†1','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OÒ¡u\Ê/B\Ý&?€hðü§\Ç',_binary '\ÍDÙ½.†j7It\Ül”KD\ÆpCŸ–²Oõô\åÐ£h¸\n','',0,'?'),(_binary 'Ò²E5|\ÒÑµ‰C‚dé—¼','wp-admin/options-reading.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J=Á\'\Éõ(\ã\ÑrPû\ÆW',_binary 'ÀLL“™\ßJ_	\ëK\Z/Y\\‹ª(G~­!ú·]‹ÿ;\\','',0,'?'),(_binary 'Ò´Y¼0Z\èÀ-\0#¯\Ø8>','wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-zh_ZH.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\0\Íõf{ã‹³K‹\È',_binary '\ÛLò\×yñE\âõƒÖ°™-7÷\ÍÐŽ¯¿\Î\ZþI™j','',0,'?'),(_binary 'Òº^L‰\Ü\ÑAµ@|¯þ²q','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-fontawesome.php',0,_binary 'G>3Ës\áŠ\Ä\Ð\ì+\Ý',_binary 'G>3Ës\áŠ\Ä\Ð\ì+\Ý',_binary '\"—z•u£\Ýö^IžW\ëo\É:\×H±*ÛŽ\0v”]','',0,'?'),(_binary '\Ò\È\ç¨*@wo«A–\È\0','wp-content/plugins/woocommerce/src/Admin/API/Coupons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±–ôHŽb‹\Û}1JMž¤',_binary '\äº+i=nO1kŸ\ëÉ¾\rÁ\ÄG‘IA’pÀ\é M8Z©','',0,'?'),(_binary '\Ò\É´eNt\éÀ\È=®PÐŽ','wp-content/themes/flatsome/woocommerce/single-product/product-image-vertical.php',0,_binary 'ý\Ý~*	lw\Þ\ÂÛ\É5“§',_binary 'ý\Ý~*	lw\Þ\ÂÛ\É5“§',_binary 'O7¼¨\Õ\ÏV\\6 »À+Â¢D^>1Ù†\çs&;ù)\Ðj’','',0,'?'),(_binary '\Ò\Ê`/Zr\ç\Ô\ÍOpd\Î\Ð\ß','wp-content/plugins/ti-woocommerce-wishlist/assets/css/public.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Æª…’ˆó­\Ñ\âr£D¹',_binary '\éðžüOŠø*Ì•WûÔ8l\Î\'\0Y\ç©³d+ø«¶','',0,'?'),(_binary '\ÒÍ¨%f{³v\Åù\ÄþÄµ¼','wp-content/themes/flatsome/template-parts/pages/page-title-sub-nav-simple.php',0,_binary 'xk`¿Ë·\\@Ÿª\äpr',_binary 'xk`¿Ë·\\@Ÿª\äpr',_binary ' 4o±\ï\×>8žª\Â%#ÿ£BKb%ö\0ó6KºA r','',0,'?'),(_binary '\Ò\Ò\Ñm4Ñ½À\Ûo–\ïqN\Ì','wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/core/fontmodule.js',0,_binary '¾ø¾J9ðÝˆa¨DhÁ',_binary '¾ø¾J9ðÝˆa¨DhÁ',_binary '\ç±Ô£\ÈfÒµ\åo$fú+’<nPe\nÁ\Üp+E\èÕ‡Z','',0,'?'),(_binary '\Ò\ÕLt593–u^˜\ë\ä)\Ù\Ô','wp-admin/images/comment-grey-bubble-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'TY\ÓÅ2¶s,\rõmƒ¿',_binary 'D‰\ÅÀx­ŒT-¡¡\æ\Üþw…\ÃN„	 ¾PŒ{¦‚','',0,'?'),(_binary '\Ò\×AAg8ž·>\Ð¢,3','wp-content/plugins/woocommerce-multilingual/res/css/wcml-payment-gateways.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\í‚\Ö>d\á£RÊ•¡O\ÌP',_binary '¾\Î\Ë1\Ò3xŠ/]3%a,š\ßL^Œm¾\rXª‡\ìƒ\Î','',0,'?'),(_binary '\Ò\çU\í\Ò\Þ\rú\Ã\å\êC-š','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/prices/utils/test/price.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\n»e›³lU³ÀžA¿\\',_binary 'ƒ	_÷KT«Jß¯^ú\×?ÿ3\n})½5þ\"\åoúPK;-','',0,'?'),(_binary '\Ò\éb\Ä:¦\é{‰,³ü\î\ìZ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/autoload_psr4.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\çkOŽ\Z`\Ð0÷\Õ/³ð‰\Ø:',_binary '›ùü]RÈŠ\Ù\ro6T:’\rŸE<š<¥\Ë\ßú\ï8ô','',0,'?'),(_binary '\Òñlü¤I\r,B8ð¦º','wp-includes/blocks/quote/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž`¦\ä0G­õMº÷Ò«',_binary 'l~´\Íxv\Ó_6ô:_˜\rd\ë‰\ç\âE6}\Z1C\ØQ\ç','',0,'?'),(_binary '\Òø\Ä~«\ìÍš\\®Ž¦\×eˆ','wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/class-plugin-locator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'û\'>sÁ¾\Ö#\ÊYu·\Õ',_binary '\r\0†÷”½xø€\"-A\çœYÿú\ß	ï‚´µ(;4\Ò','',0,'?'),(_binary '\ÒÿDý:$$?<\Ýk#}†\à','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-ui.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\âj.½\nL\â—\êN³\ÅF\Ð',_binary 'XôÀža<\Ë\Ö[	+e\Æ_YV9h\Æ\á¤w]<n\Ý„','',0,'?'),(_binary '\Ó—œx2<)“lª*¶m','wp-content/themes/flatsome/inc/admin/advanced/front-end/options.php',0,_binary 'P©\Ê\Üú½\nµ¥u©\ê©À\Ã',_binary 'P©\Ê\Üú½\nµ¥u©\ê©À\Ã',_binary 'z\Ïóä±”µ\á\èit\ê—³\Éöp\Ûò\Ì¹D!\ÈÚ£','',0,'?'),(_binary '\Ó^Ë”\ÝHî¾«c®~\ÞO','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductsById.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Þ\ëº(e(…\ÕBö}?\î–',_binary '?—_¼\ÒÚ±^\î;\×\è>pBP\æb\ã?bA‚‚v# \î','',0,'?'),(_binary '\Ó\Õ_À\Ô{\rõ\Ó\×\Û6W','wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/baseball.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v)‰&»/‹\Óý\ç\'@ž?',_binary '\ï\ïœHE\Ðö]ñ~Ÿ\âœý\Èc\åv`§¸ó¡‰š‘€Ž>q','',0,'?'),(_binary '\ÓQ<þ@1a´3<pù','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/jquery-ui/jquery-ui.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô€#z\Ù^®!Á…^|ô²',_binary '‘\ïöZ]GMœ\í1yH†QP<Ýº˜(×˜\"õ\ß\Ï\Ò\×hÅ¡»','',0,'?'),(_binary '\Ówƒ]cIýw‚\éÈ°\ØH','wp-includes/js/dist/vendor/wp-polyfill-fetch.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g¯yµõGVŸ\ni\Zñ\Ø\î ò',_binary 'S¥\àÆ¸\Z7‘Y\ê\È	Rœ¹û¦™7\\›¹>¨É•_R¤','',0,'?'),(_binary '\Ób¥¼]\ã\î^5·\Ø]','wp-content/themes/flatsome/template-parts/pages/page-title-scroll-to.php',0,_binary '\Äo€G\â£eô\ÞWlt\ì\É^ž',_binary '\Äo€G\â£eô\ÞWlt\ì\É^ž',_binary '\Î2L¾C\çB¦ö]÷*\Âõº\ät\ä3\Ï-÷t2ð\ß,ˆ^¤','',0,'?'),(_binary '\Ó&o\\\Öõ´0˜\Ö]P eR','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/all-reviews/edit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·B]\Ze™Ä˜pN\Åe\Î÷K',_binary 'À¾wt-\Ô}Û<ƒqjªZMúŸ±>“ä°€÷WB:’\î','',0,'?'),(_binary '\Ó.7X¡÷}\ä÷m+ó\ÖW','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/tag-list/attributes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Uÿ‘gfZ\Óº‹\ç¨',_binary '^¢ý°º9”av–1…\â=ŠFò\áZºS¡]K@O\Ö\ï\"','',0,'?'),(_binary '\Ó7\Ó~CpTÁ¾\Ü\Ö\\\ÂbÒƒ','wp-content/themes/flatsome/inc/admin/options/blog/options-blog-featured.php',0,_binary 'Ò‘\Íiš7½úƒ©jJL’\Z³',_binary 'Ò‘\Íiš7½úƒ©jJL’\Z³',_binary '\Ä\Ù8¯¾ûp\Õ\ÌGÀ¹º‡I›¸¦\ÑûRº\ãcz^','',0,'?'),(_binary '\ÓCüƒ¼\Õ		[@\ë\0\n\îLŒ','wp-content/plugins/woocommerce/legacy/js/jquery-blockui/jquery.blockUI.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\ì~\nž]Zs™ðC',_binary 'òFX”O÷dn°\Ä\0\ZÕ¬z˜\Å\ÜL\æR§&¸5Ÿ³[1Í¿','',0,'?'),(_binary '\ÓE\"\Ï	M\ÑP,6V°º$—','wp-content/plugins/woocommerce/includes/admin/marketplace-suggestions/class-wc-marketplace-updater.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '×®“®²„ù \ËÀºÀ\Ü',_binary '7p™†¿‡\n“\Ô;ü—D…<ßŠ²A=:\ÆwE\ÏôN¾','',0,'?'),(_binary '\ÓE#lð\ÂLþ\æ_&Üª³\Â\ï','wp-admin/images/arrows.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Úv’$ð>ˆ\Ñ\ß\Ù>¿Y',_binary '’YW‰š(†ðN3–2U;\Õ\â\Æ\Î\Ñ<.iDd!\Ä\Ñ','',0,'?'),(_binary '\ÓH Š%9\Ý\Þ\Õl¶Ô…”E','wp-content/plugins/wordfence/views/scanner/issue-skippedPaths.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷Á¨ˆZð\Ú|JS\Êó\çœ',_binary 'Á—¹¯i\\\éJkFó\Ót\\ó\0x\ß\ÉReñheÁ&j¼','',0,'?'),(_binary '\ÓH°\ä\Î/\Üh\\\0\Ø:n!†','wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yith-dashboard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬\nó¿†\Ô\ï)•kO”8ú',_binary '\ê)\\#\Ë\ÞÁ);·ÚžLn$£Ù²¨5òVT/ù™A(','',0,'?'),(_binary '\ÓM\Þp–\0¨¯\Í`künP','wp-includes/template-canvas.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ù\'ó!\è´\'S©B|ÈŒ\Z',_binary '-tHv*\ï‰ý\îA1¥ü@M´Š\ÓMr\\zÀH8³ø\î\è\ê€','',0,'?'),(_binary '\ÓQ<÷AÆ®ƒ\à–†BD,ô\Ú','wp-content/plugins/woocommerce/assets/client/admin/customer-effort-score/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\à\Ä‹·•ZD\Ø',_binary 'D;E\Î7/Ïª\ì7.eo…\ÈC9¶¿ q_$G©ž','',0,'?'),(_binary '\ÓR+\ã­Ô‘Ž©\Ì\í£I!®\Î','wp-content/themes/flatsome/woocommerce/single-product/product-image-wide.php',0,_binary 'Y2®¶µ\Õ	µ|†O\Ï\ëg\ä\È',_binary 'Y2®¶µ\Õ	µ|†O\Ï\ëg\ä\È',_binary 'k\Äbcø\â+ŒD£K>ÇÌœ’ª\Ûeo\Ï\Ä\Ë×³u','',0,'?'),(_binary '\ÓS\Â[¾ózD\æ\ìö\rv\É','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/yit-deactive-plugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜FŸœ±RU\0PžR@‰uz',_binary '	\0øg©\r^«\Çz\ä¥l®\ã.ž0\È^1]üX¬\Ç\áó','',0,'?'),(_binary '\ÓU÷€n\Ð/|r@Úªò\×Á','wp-content/wflogs/config.php',0,_binary '‹£ñ„¡\n5„	\Û\á¾\Ô',_binary '‹£ñ„¡\n5„	\Û\á¾\Ô',_binary '¯—4\Ä>\æu\rA%\ÉhÈ²-BfÅ®\ä|y','',0,'?'),(_binary '\Ó[:\á¼S™›üh	Ë¸\è','wp-content/themes/twentynineteen/sass/navigation/_menu-social-navigation.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"!·\à‰\Äb\"3O^\ê',_binary '#@^\Ô=}l5\Û@\í\î¬Wññ\Ôsaˆ	#a\æ „\ÝV','',0,'?'),(_binary '\Ó^[OžC.pB)]§\È','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value/LineName.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\'‹Ã¸)§·Á#',_binary '5\\\nµD†Nü0\ß\ã’I\Ô\Ë\Ýu¸¨\ÖzYh\Ïõ=¿','',0,'?'),(_binary '\Ó_+ö/Î†œ€K\Í\Å\á\Ì\á','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/single-product/attributes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤}\01\ë\Ç\ë\Ç#Æº\ítU',_binary 'ˆ›ETl¹¸ôpHfþd\ç(Iª\Û7\Æðô\Ú/V','',0,'?'),(_binary '\Ójs¤žw2ù\ìp®ýqS','wp-content/plugins/wordfence/lib/wfIssues.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9=hw\Z¨{\"`Pl¥\é¾',_binary 'NU\î2\ç\í¸ö|ü¢2A§õ‰T\×$\äû‡\r#%Á:\è','',0,'?'),(_binary '\Ór\Ü\Ê^øVµ^ðóˆï•©3','wp-content/themes/flatsome/assets/img/payment-icons/icon-hiper.svg.php',0,_binary '‡žD 1\Ý\×(^·‰Yu\Ù6\Å',_binary '‡žD 1\Ý\×(^·‰Yu\Ù6\Å',_binary '7šºþd…z­E2iüx~ü2{\Ü÷û\Ïm‡/†\"$»T','',0,'?'),(_binary '\Ós}\ÔùÇ¶\ê)\ÓT\ÐV¯\Ï','wp-includes/blocks/nextpage/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾ ³\rÍ³Áyzbg\'‹»G',_binary '7\îôq½›\ìø\\·°\Ær\ßÜ›)[%#\èJSþ!J','',0,'?'),(_binary '\Ós\ÔO\\\ÌV\á`˜‘+YpÉ ','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K«8Iºdp˜o?E',_binary 'Tó!›H	ù¢Ø˜ñ,Cô­a~¼KO\×PJ\è\áÿ\Ì9\ß','',0,'?'),(_binary '\Ót0uW;ù%\É`2’\áø','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-date.php',0,_binary 'VÉ…)y\á÷9¨2q‹',_binary 'VÉ…)y\á÷9¨2q‹',_binary 'ªù‹‚½P—=¦½\è\íŠX\Þ5\Ù*\Ç\Û\r6VsE/º%','',0,'?'),(_binary '\Ów\ï\ãúM8\0:&òOt(¿','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q.¢\êh\à‡\á\ÓU3zj',_binary 'ûd\áä¢™ûOy¨V—¦ ~F˜x\ä\Ñyú^\rU\ÊHñ«/\Ý','',0,'?'),(_binary '\Ó{Ú­d3TúXy½‘ñ\Ð7;','wp-includes/css/admin-bar-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LF`\'·\Þ’ze:=\Î1š',_binary '[\n\å^¦2Œ\Z„“º\ßz˜à§¤8ÙþÁ\ÔVbHd\à¡','',0,'?'),(_binary '\Ó}³\ïªe¨\éC\Ó\Ë!Ž*','wp-includes/js/codemirror/codemirror.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ò\Ò	üf‚‚hˆ;f¯q\ì',_binary '¨uŽ*\ÃQ\ß6öÆ„\ÛdªvdÈ‡_¹û“\0·\Ôû¢´™','',0,'?'),(_binary 'Ó\Õl-œôöy4Ngp0','wp-content/themes/twentytwentyone/template-parts/content/content-single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª\á*.t_¨«Š†¼#:\n',_binary 'ZŸ8\ãû!!\ÊP‡ñ¬\Ì8~¨\0”ªý\Öõeý»h','',0,'?'),(_binary 'ÓŽ=GKµ‹¤ò@V\á¸S','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-duplicate-product.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñðøºò²(±Vû&°{O§',_binary 'ð\â\îf9eB!¥…\ç\Îj³\è\Ä\Új¢L\íô\Ùó\Í,‚\ì«','',0,'?'),(_binary 'Ó•\Ëý–\Â\n§®t\Ê0','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fBBc-AMP6lQ.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mpG\Ì\Ñ\×aBþšNX>œó(',_binary '%Á-*Î¨6Fž\Èiº\rWÏ¹‰M×½¬WI±…†:výD','',0,'?'),(_binary 'ÓŸ\îñ\Çmy¬+\nf\é:','wp-includes/js/wp-api.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'cHhbzCh÷\ÈBÆ­?‘3',_binary '•cò³@¯¥\ïGXÞ½¡6¡Ô¯ª®70a­{­I‚\é\Ú+','',0,'?'),(_binary 'Ó¤¬·\æ\ÌûÇ•L\ÙFZQ','wp-includes/css/dist/block-library/common-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\å—ö…5\É\êß·o‚!©',_binary 'oŠ™Ž\ZÎ¿¨\è}š³^¦{\ÝJˆ\Ë`vx7§RˆHo','',0,'?'),(_binary 'Ó©’P\ÌÒ¡£•À\êµR-ô°','wp-content/plugins/woocommerce-multilingual/templates/compatibility/product-addons-prices-settings.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬ý§ªy¢-\Ô-u®¶‚\Z',_binary '2*ˆÆ„Ah±D	\ë6g·Jì¸««€QE\ëþ3‹','',0,'?'),(_binary 'Ó°@p\Ð\îð 5x°P','wp-content/themes/twentynineteen/sass/mixins/_mixins-master.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘»\íM}yµr\nôW“\åÉ¹U',_binary '&Ð¶dôIõI½\ç¥2°8!À.!ÐµÿÌ¼ù\Íu‘','',0,'?'),(_binary 'Ó¶!QHö‚\Ë\\À”ƒG\Ú^','wp-content/plugins/woocommerce/legacy/js/jquery-qrcode/jquery.qrcode.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rÿK»š˜G\é£j\Þù´@',_binary '›q‚\0\Ë+\å\äv\Î\çh1epW‘^\ë\Ê…ø\Ú~am\Î','',0,'?'),(_binary 'Ó¹ò°\'?meU!\É-2\Åv','wp-content/plugins/woocommerce/includes/gateways/paypal/class-wc-gateway-paypal.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K©CZ=:a\Þþ‡j´ô\Þ',_binary '›Sº¸°\Z \àSÜ÷öS€ H¢	ž`\é4Gñ\èô','',0,'?'),(_binary 'Óºi=n M=\ÌX1÷lP°','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/bg.js',0,_binary '#?i\Ø\èÂ¯1‡¢O9Qw',_binary '#?i\Ø\èÂ¯1‡¢O9Qw',_binary 'ýH½èª—7\n\î;Z¨\ì\Ú|\É}Ÿ7o­\Î.k.‹s:\r\Ý\î','',0,'?'),(_binary 'Ó»¦S\ÜIy~{ñ˜zþ','wp-content/plugins/woocommerce/vendor/symfony/css-selector/XPath/Extension/PseudoClassExtension.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\ã\ßÜ‰=«\Êošb·0»',_binary '™Gd†®F\ÌV\ß3)¸™3`˜üO—\çˆ{P\âþ™=5\ã','',0,'?'),(_binary '\ÓÁd u\íL\ÑùD\r','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UR)¸³}ñg)vš¤\ËWs',_binary '€QT±\Ø\ß@\êkˆ´›\Éðš»«‰\"¬!–9Cˆ¢\Ü\èa','',0,'?'),(_binary '\Ó\Ê|+XÂ†aI\è/\ï','wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-grid-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'HŸCzŠ\ß9ª,?gB\n',_binary '?\nÛ¡\Óù.=b„e\ÞfQkj\0\Å{p\Ö|ž\èL\â`¹','',0,'?'),(_binary '\Ó\ÏŽªm;\É\'X\ì\ß(','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-installer-upgrader-skins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Éap‘\0\éD—¢ˆ-\Ô\Ò\\.\Ö',_binary '™©\Ö]Ý»À£\n\Ôú\ë>Š>,\ÍÀ&)#þv','',0,'?'),(_binary '\ÓÑ\ào(ýHŽttxû.','wp-includes/blocks/table/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\íÛ°&R1W6zz\ÕX\Ñò',_binary '/•¼‚¯þõ‚º\ÓjÊ†˜jA¾\ã»<9?Þ‚)”w2hû','',0,'?'),(_binary '\ÓÛŠ¾\åôY\Þ6YxIª','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader/class-version-selector.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒcmn‚„cx•\Ú%\ÑdS',_binary '¬üVl(\Û\Å6\0\0¥©Ä´‚€0“ôAAôb<£¡\Ñ\îQ','',0,'?'),(_binary '\Ó\â³>Zbµo&\Â\Ô','wp-content/plugins/akismet/views/config.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1\Ûõ—¨w…\îÕ¡',_binary '\×Bo»Å¾[¹¢tšO\ÈTØ‚û\'¢œ	ü0ý','',0,'?'),(_binary '\Óâ¸ [¦\è‚(ÛŠ\Ù\'¢','wp-content/plugins/woocommerce/includes/class-wc-shipping-zone.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G`Wž9r>–\Z\Ïn¦õ\í',_binary '—Ã‘\×(\'…ºT@pC´|¹!\Þ\ê•|\ì\Ï÷\é/','',0,'?'),(_binary '\Ó\â\ÉA8\Ïv´2€ü¼','wp-content/themes/flatsome/inc/builder/core/server/src/Collections/PostMetaOptions.php',0,_binary 'Zº\ê\ã·JNîŸ¯ª0\0\'?',_binary 'Zº\ê\ã·JNîŸ¯ª0\0\'?',_binary 'q;aô¬©”ËŸ\âLD¶·3)?Q\\\×4$>¡)k!¦','',0,'?'),(_binary '\Ó\ã—5¬¨\ì–Äº\ì%µ\Ë','wp-includes/blocks/buttons/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µG\Å\Ê69·±þRfUÁó',_binary 'Ÿp[&w\Äêšš\äŽ\ìC³d\ØNE»b\Þ\ÔWŒÖº\á\ë','',0,'?'),(_binary '\Ó\ç\çY2S¶,þ\ÞR(v','wp-content/themes/flatsome/inc/admin/kirki/modules/custom-sections/sections/class-kirki-sections-default-section.php',0,_binary 'Ëº\r\é\êñ[\nÞ‚)§',_binary 'Ëº\r\é\êñ[\nÞ‚)§',_binary '\ÇB;m\ÌCI£;l…eµ\Ïc©¹­¦\ìþ§ôøy¹jÿ\n','',0,'?'),(_binary '\Ó\é¨b‰\Û\Ç|C7M	¬ž\n','wp-content/plugins/nextend-facebook-connect/includes/provider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õC‰oˆô¼¿¤¢;ñ',_binary '\Â+\å]5}vRˆw\â!=Œe¶\Å…”¡©\åm8\ç','',0,'?'),(_binary '\Ó\ì¸\É{0!¯–Â´ª¤H','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-inventory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ílñ\î–/˜;\á\Ñ\å\é6\Ï\"',_binary '\ÜD\Ý|\Í\Ë-†§©k¬fŠª%G²KgH\ÂüóÝ±ñü','',0,'?'),(_binary '\Ó\î”x\Z\ä¬ºí¤·—\Ë\×','wp-content/plugins/woocommerce/includes/class-wc-cache-helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Æ—Fyö_»¢3w«ùÉ±þ\È',_binary '$gŽô\ç°_mÏŒÁ‘§4¿\"\éÿ\Èz¦Þ‘´OJªp','',0,'?'),(_binary '\ÓðH\Ù\ÌAGÿ|³™¤\"­','wp-includes/blocks/nextpage/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ì®¥÷@Ö¦\í`fx\ÉW\á',_binary '˜\Ê\'š„\Ø\Z[\îþ\é	<A€Ž¦¿ýAt\ì\ØØM–','',0,'?'),(_binary '\ÓóÁI7ß‡S\Ñ2‘&°Žˆ','wp-admin/erase-personal-data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AþS‡B§¨9=1ô~QD9U',_binary 'i©óüò\0\nT\Ýi\ÝVdM\ÃÛ¶kJŸX’c®_a>f€','',0,'?'),(_binary '\Óø@úe!Œ¼„O^\è\éÿ\Î\r','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/previews/cart.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”B¥‘\à\æ\Ì^$6][t',_binary 'qT™j\É|Åˆ\åTžÑƒ\é>v\Ì!\ËJ\Ýa)x¯e–’','',0,'?'),(_binary '\Óþ?H4©Vªˆ‰­\nƒ\Î','wp-includes/blocks/pullquote/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«÷XF&4G\Ì\â$}‘xJ2',_binary '|…UþòÃ¤f}\ÏY\"›¸»Xa¨<Ï†/€\ë#CO7¯²','',0,'?'),(_binary '\Ôö\×†[Tˆƒø`€÷','wp-content/plugins/woocommerce/includes/interfaces/class-wc-customer-download-data-store-interface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ü\Ð\Ñ\"¢\æa\ä\Óôt\ï=q',_binary '9?\Óxª„ñ\Ö,\ÉM\è\ïG\ÛŽ8{\Ýðk˜›ES˜c','',0,'?'),(_binary '\Ô	kJ’?û ¢@xª°’¤','wp-includes/blocks/categories/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÍLþ,¨\Þ6\Ø3\ØöO.\Ù\Ç',_binary 'Íši?\Üe\ØzÎ%\î\×=‹T´\ân³N\\Æ„ƒ\Øƒ','',0,'?'),(_binary '\Ô	‰¿L‰\\<\È\Ü5´8\É','wp-content/plugins/woocommerce/legacy/css/twenty-nineteen.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n£¾|LRü5>l§®\n',_binary '‰x{\ÏBk\å9\êG\ä\Ø\Ó4jÀ\æ	õ\Ì\Ûnd¼','',0,'?'),(_binary '\Ô\èòÿ\å\Í0*\îW\Ç\Ô','wp-content/plugins/index.php',0,_binary 'gD,V\ë§=\\\ÆbP',_binary 'gD,V\ë§=\\\ÆbP',_binary 'k‰À—~	¶½UH\Z¥\ÖxƒP\ê\ÛAÌ„¢ú<¡ž;X¨','',0,'?'),(_binary '\Ô’\r\n«8n}ô˜\Ñ','wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³\ëô¶©a<\'£Á&\ë%a',_binary 'Õ˜ª\æDÅ¦P]0|¦¢ŠÿYòe[©\Ûjø–ž\Ý\ï\Ì\"','',0,'?'),(_binary '\Ô\Z¬É:Ub\ÆúmM\å','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/jquery-ui.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô€#z\Ù^®!Á…^|ô²',_binary '‘\ïöZ]GMœ\í1yH†QP<Ýº˜(×˜\"õ\ß\Ï\Ò\×hÅ¡»','',0,'?'),(_binary '\Ô\"K®\ÞKÀ!Ww|}ñP/','wp-content/themes/flatsome/template-parts/admin/envato/directory-warning.php',0,_binary '¶1®yŽ\î\ÃV:”ŸL½Ý¶',_binary '¶1®yŽ\î\ÃV:”ŸL½Ý¶',_binary '¼Þ¿[¸g„< j\Ïk”•š…2®²þ†œ/)–®¯§ò','',0,'?'),(_binary '\ÔD\Ã;~I·Pû†‘q\ç‹}\ß','wp-content/plugins/woocommerce/vendor/composer/installed.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`C_´(\â-~ÿ\æ\'b\Ïö',_binary '\Â@\ÎSIO\æ!8¾=—CYs&,\ä\Ë\æo9\0\ã‘','',0,'?'),(_binary '\ÔHx.\ç<x	ÀP¼U0\ä‚','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-shared-context.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5óªYõ\Û\èŒK0•·\Ë\ç†\Ð',_binary '¦ÀŽˆVgÖ«û y\'<JÛµi•\nþ›´\ïo\'&”mNJ-','',0,'?'),(_binary '\ÔP#°0{—”Þ¼¤','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-dashboard.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'žŠ›Ò–\0n\æ‹WK~ó',_binary 'œ¨Œ\Þÿ4\Ì=¼Ò¬\0d\è–üo¾˜Cü\Ïö!\Ì','',0,'?'),(_binary '\ÔVý\Zñ!Ï…tó\çW¥','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/MessageTexts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÒX\ëMô\Äò1š\ÞZ<É–(',_binary 'Fos‘5\ÎX\Î\ãóZ˜[·¯g¡>¿dA[-kq\Ê\Ü','',0,'?'),(_binary '\Ô].õooðÈ¦M-n	‡','wp-admin/images/align-none-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'øXC™)[\×°›-º4½',_binary '³ß§&QQ½p\"~\Û\Z8S×Šš‰\ï\ÍöY\Þ\å\ë\ÅS`','',0,'?'),(_binary '\Ôp‡[\æQZ˜²RÂ—ù\Î','wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/class-version-loader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' Àg\ÏcC,×†¿?¯\Ðù',_binary 'º•s~k*‰\ä|\Æñc\å(°S)-u½ª\Ûû®‡','',0,'?'),(_binary '\ÔsH‰\ÖõZš\å.ª«³\á¬\Ç','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P-\î^˜0ó3ô\×Í™\Ã5',_binary '>\á-\âÀ…\ß\Þä¸”—T˜	‰1&€¯¦04\é7¬lT','',0,'?'),(_binary '\Ô{¥X\Ô}vBu#|‘\íIp','wp-content/plugins/woocommerce-multilingual/classes/MO/Hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\Ý/ƒ=¡\Î\ÝWE\rÀ\äµ\à_',_binary '‚kd,\ì*“ÃŽ\ÙÿÙ«\ãAÎ‚JUaóñšxm£Yö','',0,'?'),(_binary 'Ô„Š\Êñ„„rT\ë+^}\Ú','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/blocks-registry/registered-blocks.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì-\Óy¬8\Z\ÊM\ÊhGn',_binary ',\à\ç\Ü\Ç\Ö\Ì\î\Ä\ëR+u`\Ò\ÕÔ–1”!¡wÊŒÆ¹¥¿º','',0,'?'),(_binary 'Ôt“¬ý\îB\Z.xŽ\Ö\Øö','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/woocommerce/woocommerce-form.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“4\ç³Á+h(~ý™.\ÎTi\Ë',_binary 'Æ°¾ñ\á<cªl(\îD\áÇ¿Jv¢±>\Ùù\Ær·`¢\Þ6','',0,'?'),(_binary 'Ô›÷aù\Úýš\áÁtr­‡','wp-includes/blocks/video/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹É–!\È}\íñMvõ\ï\Ä^\Ë',_binary ' ˜\é\êZ\Z¦\Ç|=G´&;Ÿ’\Ö\\\ÔIÁþ\Ïö¾\í9-)l¼','',0,'?'),(_binary 'Ôœd­&;0\Ì;ð}h¼\Ù','wp-includes/blocks/columns/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'sõL\æ\êª\Ç/>©hûz*z’',_binary 'f\åL¤\Ç\È,ƒm\Üi–€ì´µ \ÆÌ›©\àV\Êó','',0,'?'),(_binary 'Ôšr\Ð\ïy2\ÈkŸA\ì','wp-content/plugins/woocommerce/includes/gateways/paypal/includes/settings-paypal.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸ô\Ø\áö€wˆj„G»\Öl§',_binary '`Q\ã\Û\á0ÿ¡\ÌK-\àJ‘$w‘”j¼\n^\Â?­¾²','',0,'?'),(_binary 'Ôžj\nþ\ìjOÈ’','wp-content/plugins/ti-woocommerce-wishlist/assets/img/wizard_logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"#Q‰\êEGQÎª»4',_binary '\"dDl’\ä-AdH›ú¸–WF\à¼\Ôd&,\á\ÝÜ©Œ\Ò\×\ë','',0,'?'),(_binary 'Ô»q¾E\è{\ä\Äð‘n¥¹Ž','wp-includes/blocks/verse/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y†\Ëû¦\ÜVqY˜\n‚',_binary 'MbO<W\'8!»‡ˆ\éAø€Sô\r\áG_n0‹ùùs\ì','',0,'?'),(_binary 'Ô½\á©v-tW’\Øÿl\Ñ[','wp-content/plugins/ti-woocommerce-wishlist/includes/viewsection.helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŸT3\éü\È\Úä©™˜wµ',_binary '\'\å\á€e^\Í[fm*\ÅÊ¶!KP¶¹9%•RBfuüÀ','',0,'?'),(_binary '\Ô\Ä<¢W\Ä	\ZM^÷D¤q','wp-content/plugins/woocommerce/includes/wc-conditional-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`\Ã\â_~‰\Ð\×y\r\0\ìjd¯',_binary '4DÁ\âÕ·Æ‰qB4¢e¬\Òvòÿ¯%Z´\ZZ¬g­_','',0,'?'),(_binary '\ÔÈ†pŸþ\Ñ]4\Ì\ÐLñ\Äq¦','wp-includes/css/admin-bar.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª—L\Ö.=ª±\ç´³²',_binary '\ÒÓ»\nCP|\ìSM¶2eªðDŒCŸÀª\\Ux(\ÌZX\Þ','',0,'?'),(_binary '\Ô\ÊpÿýS•š`\ß]T]D\È','wp-includes/css/dashicons.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',Jð»\ß/¶\Än\çR\ä»~\é',_binary 'qÔ¡\Ðú¸c«\Çq\Ól5/\Ý3$ËTœGW\é','',0,'?'),(_binary '\ÔÌ†lÒ˜\Ü\\\ç4\â,C-“m','wp-includes/css/dist/block-library/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Û\n\ìŽ\åú\ä‚,\Ú\è+E`',_binary '”\ÅJ‡;\'Õ´\ãS\äR¼ôg\ì=ÿ™4»€9 ¯+‹¯\Ñ','',0,'?'),(_binary '\Ô\Ñ6…Á-\æÌ‚XT{’','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/shipping/shipping-via.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ž$\à$2²}\è£#GAÿx',_binary 'Àˆü#Ú‚œ,7\Çb‰\n $B÷Ž\ã CA»¸\Äø˜','',0,'?'),(_binary '\Ô\Ýf°ü\Z‚|V\ë=s\0@h‚','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/validation/components/validation-input-error/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ò\Z(“\Æ\0O\ÄoB\Åi',_binary 'T)¹•ý\Âz\Ô\èóU\ÝGSZ ©û\æ\Åx’\ç·\Ç\Ôm\ÕÁ','',0,'?'),(_binary '\Ô\ä:ô%–\Ùtx\ØòÔ¿‹','wp-content/plugins/woocommerce/templates/content-product-cat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡ÿ*²ýf\\gbIW,ñ',_binary '‚\"&·b\Ù3ù\Âh\É\æ\ÞvQ%•C`ˆ\\\Î\Ð~œ•¬Ÿ\Î','',0,'?'),(_binary '\Ô\è>\Ç\î‹\Õ</¦ña','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/js/channels.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'š}½Aø8E‰\î\ë\Õ\êôC',_binary '®[ƒò\'\ÜC¤ «x\ÙKJK\0ø§Lwð†;\Z¨\Ìø','',0,'?'),(_binary '\Ô\î<®\è\â%o$ù’,\ÆXW\Í','wp-content/plugins/woocommerce/assets/client/admin/currency/index.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹°÷\ËGj5~®~·Šª',_binary '¿\â5+m\Õ\ã\àKƒ»Ö–/%ò–q\ØQFŸ³\Õ8G','',0,'?'),(_binary '\Ô÷)=/†3\Éñu\ë\ä\Zqu','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/woo_breadcrumbs.svg',0,_binary 'w¤\ëúuŒsS¸\Ê\Åt?-',_binary 'w¤\ëúuŒsS¸\Ê\Åt?-',_binary 'õ0ö\0\Û\Æ1‡\Î8„;\Êx \Ò_“\åXVòµ\à\Ä','',0,'?'),(_binary '\Õ÷¢/—q‡RR\Ê|¹¡\ê','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÊRõŒ!z@;\ãVeö\á\Õ',_binary 'ž#\ëó²l“#\ÃûÐº;”	KAH9Q\Æ@‡	«\Û\Ë\ÇB~ø','',0,'?'),(_binary '\ÕX\éð¯—$„a²\ÔB\È\Ò^','wp-admin/js/user-suggest.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6|3¤—\ÃsŽJ:+IV\Ö',_binary 'ÇŒ0BúÈ |óqO­	F¡±¤\æ>ƒg„€À¦\Ó#','',0,'?'),(_binary '\Õ%f\ÇƒGµÿ PÑ£½\ê˜','wp-content/themes/twentytwenty/singular.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\ïp^~\Ïc9kŽ6_1',_binary 'p\Éÿ M ¿o´À¹É™\Ý6nypw¥W¦†™\á€ý\Ë\ç–','',0,'?'),(_binary '\Õ&d\0¹\Þn%…ú>ö\Ô\Ô','wp-content/plugins/woocommerce/includes/class-wc-geo-ip.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Íž«±h\×ë‹°\ÞTKb',_binary 'L>i0B™\Ã\Ý%Ÿ9•PO\Çt\áŸuzº	\0|@\ßFE6','',0,'?'),(_binary '\Õ,1mJC³¶\ÆÍ†K\è','wp-content/plugins/woocommerce/src/Checkout/Helpers/ReserveStockException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4&¡ð™þ+\é±F«½Ù”',_binary '2W:K–ñÌ–b:	-,¦™e);j…u‡\ÂL¦ƒ\ÆqÁÀ','',0,'?'),(_binary '\Õ2¡öˆô©_R\Õ\à’[¹ÀY','wp-includes/blocks/code/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?B\ìôùÉƒ„>‰\\¾-‚',_binary 'w£ùñ\ç\ê\àÃ«„YK\á\n¢aR„µ\ÓX´&øÑ¥V£','',0,'?'),(_binary '\Õ4•ŸÈœcxûi‰¡²','wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-pt_BR.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7òWW\Þzô÷µa\Æn»<',_binary 'e\ê®Tv\ç¸kS…»h\íhL(\èòhþ€j\Î\n‹\ë\Ý\0','',0,'?'),(_binary '\ÕAõ$Õ‰c8$\ë%b\Ó','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/Checkout.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ùæ¨¡ù–£]·\èµ',_binary '–	\ãß†…–!–WðOðrí„†\Ö\æN\Â\Å1eWœ±ü','',0,'?'),(_binary '\ÕBImSÀ\Ô96\ß7’†ðX','wp-content/plugins/wordfence/crypto/vendor/composer/ClassLoader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’þy±G\ÖMú!ex9\É\Ù',_binary '\Å!ZgbZ\å˜ô“¯FZ¢›\Ñzƒš\ã\ï|±YE\Í	ŒªÀ','',0,'?'),(_binary '\ÕC\é\Ö\Ú\"Ñ®¶t¨ó¾ˆc','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-subtotal/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ã¡»]€kj½uò±}\èE2',_binary ',­§{ “þ\Ç÷\æ(¸±X“|-I\à»òTq\\\Z\à\Ä\å(	-','',0,'?'),(_binary '\ÕE‡\Â\ßx\ÆÛ„}ð/\"Bb','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/upgrade/changelog.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ða\Ç\n¡­þ¾½\Ü9«ªß·ü',_binary '\ížÿ6#°€\"  Å™®F.D`ùe\\F¯\0$aDò\å','',0,'?'),(_binary '\ÕF\nŸ\êÈ©\á³w!Vª?A ','wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks/StoreCreation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­V\ì\'Y\Ë\ËÃ½W( K',_binary '&\Út\Þc\Ð\àx\è\ÂVÁˆò¶³\ÆMtWVW\ÇbkX•','',0,'?'),(_binary '\ÕGöhË²§;\Å\Ô\'Ý·–/','wp-content/themes/twentytwentyone/assets/sass/05-blocks/group/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†Dy£Ýƒ\ÂV‘\Ý.ÚŠ\Ù',_binary '—®Ÿ:.P¾üBIP²²i\èl°± 9h²\Â\î ‚jþ	','',0,'?'),(_binary '\ÕI%Ž\Ìû\Ö(E\Ì\ì\Ì·','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/phpstan.neon.dist',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ\îrùÎ¤¿\ãvc\â\Ð2',_binary 'œ\Ó\ÐC·?rô0R¹ú\êEª!\åtc\ä1«Œ=oª¦','',0,'?'),(_binary '\ÕYYý\ç\â\Õ~F«~\Ë\Ç','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/css/admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'§S½\\C•û}þ¤oÖ£\Í%',_binary '‘Oc\'\æ‚•²Œ#e“\Í5º\çÄ³›»¾a&-º½!Y','',0,'?'),(_binary '\ÕgÖ¿þ€mœã‹£‹\ÙI','wp-includes/js/dist/data.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\Ð	\ÑCÀƒ»\r>yûü¬¡û',_binary '±…tÔ‹\\.W.cüŒ\Ì\é\ìÕ‘ig\'¶\ã\æÝ­‚9o','',0,'?'),(_binary '\Õp\ïsZZ…#÷N7—óe','wp-includes/css/dist/block-editor/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'žO\ØlN¼±\Æ\Óûß› Qö',_binary '\ìª}\Ä*\Ýþi—dÇ¿˜ñ‚T\ÂN\'nhÿ\Ã4Ó°8','',0,'?'),(_binary '\ÕuG#ü)¹|\Ã^´¬¸6','wp-includes/Requests/Exception/HTTP/511.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´Ý§3ö*\â=\ÚA>®9\Í\Ù\Â',_binary 'úóIø¨}7+Æ•¤A÷\Ü\àlæ¬¿B÷õt\Û\'s÷ðt','',0,'?'),(_binary '\Õx­%SCz„æ…‰:VJn¿','wp-content/themes/flatsome/inc/admin/kirki/controls/views/generic.php',0,_binary '\ã½\Ô\è\rR›b‹\Ú	O„s',_binary '\ã½\Ô\è\rR›b‹\Ú	O„s',_binary 'P\Ü\r\å,Z3Æ¾T™\çH\åÆ¡U>ñL\áÖYÞŽ“','',0,'?'),(_binary '\Õ}f¬HE_µùgˆ&','wp-content/plugins/ti-woocommerce-wishlist/assets/img/wizard_logo@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Çõ&}+\ät\Óÿ\Ës\Ä8{›',_binary '|]Ó¼æ‰…\ê\Þþ\â	­´<9õS£®‹y—t£9p\æ','',0,'?'),(_binary '\Õ`S¾OÙªU&*wû\Ð','wp-content/plugins/contact-form-7/includes/js/html5-fallback.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ë*»=\ÖO·n\Ä]§góz\Ñ',_binary '’¨:¶<QY·\ìþòÑŠš†\è\ï4$9¯/q›hD}','',0,'?'),(_binary 'Õ…”Ÿß\ãS“‰+ý”¤‚','wp-content/themes/twentytwentytwo/assets/images/bird-on-green.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\àVc	vÂ¹N\ã1i)¬',_binary 'ì‹¹ý=óö÷’³>ŽdzŠ0òŠ€\r\íH˜oƒ\áH/‚ö','',0,'?'),(_binary 'Õ‹úŽð\ÐÉ³•¤\×3 x/','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/PublishAfterTimeRuleProcessor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Û\î€p2O¹W‚\äJ\Ä\È\Ð',_binary '\ËD”,°\é©\Ó\Õ\ã[Z‡/¡^›‚tÙŒ’š	û‰K·S','',0,'?'),(_binary 'Õ k™Š«\Ín\Ì\Óø’º_\Å','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[—}û\Ó_ðÛ•µ¤XŒ',_binary ';¨\äúÜ¶Úi¬–Kxå¥½[\ì\0¯Ü¥\Øü}*3 ','',0,'?'),(_binary 'Õ ³17²N@Z—\í\áÀˆ','wp-content/plugins/woocommerce-multilingual/dist/js/paymentGatewaysAdmin/app.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰“ÿŽ\Ã\â~Ye¹úa\Ü\Ü',_binary '=NgQ”ˆEy\Ò\Ñ‹\Ä\nœVŽûxe\ÞÑ‚\Â','',0,'?'),(_binary 'Õ¢\'¤\Ø=­g8•®`\ãT¹','wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-coupons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œg\ä\ÆWÁaEt(´',_binary '\ÄFG2„ºV\ë\Ï#iˆ\Ê=\r¬\åc}ct…Ÿ\íü\ä4\Ð\æ','',0,'?'),(_binary 'Õª°°º3(\Ð)\Î_üCœ','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yith-dashboard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬\nó¿†\Ô\ï)•kO”8ú',_binary '\ê)\\#\Ë\ÞÁ);·ÚžLn$£Ù²¨5òVT/ù™A(','',0,'?'),(_binary 'Õ®\Ø\Ýa½	ýjE\ÔA’ò','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sku/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'º\Ë’ùº\âûùo0\í;d',_binary 'Y~*ISE;M\0$7±Ý¡–$€ù>ñOHz·§g','',0,'?'),(_binary 'Õ·\ë5\ÚC\Í\ÖE/.ŸQ','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/visa.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~ÿ\ÌSY¦¢½\'–°\Ãƒ',_binary 'Ž:q5J®w\ío\Ì\Ä>‰T–F+7\æ\ç7\â\î\Z58\ìY','',0,'?'),(_binary 'Õ¿\ç\ÎMg\ë÷\É\ë\Ä\Îxö','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/popup/animate.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\Ê.\æôˆnx\Í—@	E\Â\ç',_binary 'Œ%\Í:\È6»\Äï­ºOýH;SÇ¿öo‘ÿ³º\åX9\â','',0,'?'),(_binary '\Õ\ÃöøÈ¨’\áŒr\Ñ\é%MÃ¨','wp-includes/blocks/file/view.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ú t#šZoZhãª¼\àp',_binary 'Ë©i\ÈÚ—ƒ\Z\0²¦|\çü!¥v–¬\ÓÔ¦*!+gJ\çTw\\','',0,'?'),(_binary '\Õ\Æ\ÆIEû\ÜË™;ˆ','wp-content/plugins/woocommerce-multilingual/res/js/languages_notice.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^\Ìw/ŸÔ­0»ý\'\íÄ—',_binary 'ö\nAA&\Ö\àlÕ£S¡\Ü\Ûû\è\Ð\Õ÷l³©Ý¸\nœ','',0,'?'),(_binary '\ÕÈ©ø7ô>œy\Ó\àŒ«\ÅO','wp-content/themes/flatsome/assets/img/payment-icons/icon-eps.svg.php',0,_binary 'y\0¨5I›c.ƒ{m+zT\ì',_binary 'y\0¨5I›c.ƒ{m+zT\ì',_binary 'dz\ådJ\êg\Ü#m3\0ú’Að:\Î\Ì\"|kY™)Ó©Ám','',0,'?'),(_binary '\Õ\Û\Ã\ãœ Z¸/:^ $\Ã	','wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-reports.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>ý\"\Ø#C\ß?Ø›d•ò¤',_binary '¾Œ\Ãe\é\'\è\ákh‹·ó‡x,g¢s¥P=S—°”ð','',0,'?'),(_binary '\Õ\é/>ò®Á\ÝIN\Å\á\î','wp-content/plugins/woocommerce/assets/js/frontend/geolocation.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­m;¤mÁ6\ë…”³[ù',_binary 'dJ=’ˆ\Ê×‚Þ¬\0=°:µL®þxÞœ?™	W³;·ü','',0,'?'),(_binary '\Õòð[Wp\îú;ž¾$bˆ','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/layouts/icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×qðµ=t„\è[”£',_binary ' m_šx?t\ÙOˆ	2ýp\Î\×\ìª\Ù\Íý›“™‡','',0,'?'),(_binary '\ÕõK2;\æ<D¦®‡ƒkub','wp-content/plugins/wordfence/lib/wfStyle.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's†»1_¸eþk2R’²ž\É',_binary 'j\Æé¢Ž·°\È®_c\×632¤3Ö…\ã]Gs}.\n','',0,'?'),(_binary '\Õõ¸NyLûÔÐ¡¦¤ˆ.','wp-content/plugins/yith-woocommerce-compare/plugin-fw/languages/yith-plugin-fw-nl_NL.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^®f\ÆÙ¿4\ÒU\×G7\Ù2~',_binary ')rª\á\ßß ~s_XÖ«\'k\Ñ9X\Æ8©,\â\æðñŒÕ·','',0,'?'),(_binary '\Õö%\Ü$\ÍB3ýi9ÿp_q','wp-content/plugins/products-compare-for-woocommerce/style_templates/full-footer-buttons/berocket-full-footer-buttons.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ù8c\Ôª\ÎJª*ž¾F?Ÿ',_binary '¿ýº6\ã}\ítš{À i\Zž\"\\<h\çýÞ²¤‰l','',0,'?'),(_binary '\Õö¼úÍ¤6\é\0/ý“kúÀô','wp-includes/js/imgareaselect/jquery.imgareaselect.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ws¾»H¼\Èj\Ñ\Ð\Ö\Ë',_binary '¡Ž\Æ&ñ°TK±‘;­$(»á¢¡Og\Íp\àöm]ˆ\ï','',0,'?'),(_binary '\ÕüO\n/t\ë»‘þ\ç\Ë{','wp-content/plugins/woocommerce/includes/class-wc-rest-exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L…\Ã\Ð\åºf\âù%ñ¼',_binary 'ý/]%_\Ì\êÇ¨€_P÷|\Ãý\âzG\r®™l\Øy61>\Ó','',0,'?'),(_binary '\Õÿ§”Z´d·˜ºsûRP\Ü','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-express-payment-block/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pvB‘O`9ŒO˜g\Ñ\ÞY',_binary 'y^E\ÄI \íÏ½.<6Œ¬˜¨\ìx\à\î2¾\Åy\ê-‰\ÌÏ‹','',0,'?'),(_binary '\Öñ8†1û&t%·þ\Ò','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/infobox.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|µ¶ð¤j»5Ó€\ä˜H‹\0\Ú',_binary '‰7\ë{‚pL.\ÏQ÷Ty¶\Çk$“R»o_^Ü‚¡­<ò','',0,'?'),(_binary '\Ö&_\ï\Ä\Z p\Ê\ê\×gl$\Í','wp-content/plugins/woocommerce/assets/images/onboarding/creativemail.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\á\Îö\0jNp·\à1\ã\Ì1',_binary '²3V\ínfò g“R«ªG2$(ô7N	-/\ä\ã%[','',0,'?'),(_binary '\Ö.+\î¥1³´\æ¤$\Ûý?ñ‘','wp-content/plugins/yith-woocommerce-compare/assets/css/colorbox.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œkcUŽ]\å’Á`V=¾\Ý\r',_binary '\ÂKû-\ãúÎœ”\Ðö¥tž‚ò»ŽÄ¤•¥»S','',0,'?'),(_binary '\Ö1\éÞƒŠa\ÇJù˜','wp-content/themes/flatsome/inc/builder/shortcodes/templates/scroll_to.html',0,_binary 'v\ä/‚Ÿ\æ8x¬½V\ÂL©[',_binary 'v\ä/‚Ÿ\æ8x¬½V\ÂL©[',_binary '\Å^\à\ç\n—u\í¢ÀÙ§Wv\àr–\å©ñR\Ñö\Âú\Ê-<\êK\ê','',0,'?'),(_binary '\Ö<6[=,ªd\Z­¿52\à\È/','wp-content/plugins/woocommerce/legacy/css/dashboard-setup.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°oö[\ÒZ°œ0…\ç~6/',_binary '`ÀHŒ\íL\ã”Z³„€V=u\\™F%d¸®bz\Ä\Âÿ','',0,'?'),(_binary '\Ö<ù8\é;p® x¹TG','wp-includes/css/dist/edit-widgets/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	tt\ÃÀƒF¶WWI\Û\ç',_binary 'ñ\Êürr\Ï\Zz¾&€\nµ\\¶‹q®w\áEOgÈ»8üƒ','',0,'?'),(_binary '\ÖD¥;\Üm7‘w«HóŽŸn','wp-content/themes/flatsome/template-parts/posts/layout-left-sidebar.php',0,_binary '¸ò.\\/_ã—‘§·»',_binary '¸ò.\\/_ã—‘§·»',_binary 'ªM²£I\Ì)\nl\ÂUƒ&T¨Å‚,ž]\Ê\à\ë\çf\Õ\Ô','',0,'?'),(_binary '\ÖF\ÙM“NrM,¢ñ\Z','wp-content/themes/flatsome/inc/builder/shortcodes/templates/ux_html.html',0,_binary 'a\î.–F\\@Dð8*<r',_binary 'a\î.–F\\@Dð8*<r',_binary '\êœž\Ä\ì¥s”¡4¬1Žc™ \0\ß|FÐº\æT?³','',0,'?'),(_binary '\ÖS\æþQfs–|\"\é\×\àœ\â*','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/single-product/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿w\Ì\ØÌ–Yö{·¤\ì¿$\Ý',_binary 'þ\Õ\æ‹”g$\ë{\Ð\")lYkFF©¹\ÚOËŠ>±\á«','',0,'?'),(_binary '\ÖXÚ‰|\î8\ÑõÁ\ì}\ÂB\Ý','wp-includes/js/tinymce/plugins/link/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°öV\\\n]\Ì\áKûs\' ',_binary '\Z>†‹I\ÖS\ÖÐµ´œ\ê\Æv´,¢\Ïq¦U¡¬\Þò^','',0,'?'),(_binary '\ÖZ\×ö	r!Þf\Õ\Ñ¾	\Þ','wp-includes/images/icon-pointer-flag.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°\Ó,‡ò­‹\ÂE^¿j`\'',_binary 'oq·\Ú9”Áa{)h}=#¾½ü\ë\çTû×§\É\Â','',0,'?'),(_binary '\Öjõ‡‹#¾Ó²©·X%œI','wp-includes/block-supports/elements.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÐS\ëv‹\'m·\ß—\ìJ',_binary '\Ë^\é\ìO6AÍ„\ØB\r\Íw˜\Ç\è¦{-\î\á\é2dr÷‚ž','',0,'?'),(_binary '\Ömá‹žj¨\ï¼\ÇW\ìBv|','wp-includes/blocks/template-part/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª\"/\íh¡€O·k@Þ¤',_binary '\â%˜‚Xä»(•ƒKbô¸6q\ÇF¢›*F30]–™·¢h','',0,'?'),(_binary '\ÖoÒ¨*K\î\êo˜7{ƒ <','wp-includes/ID3/module.audio-video.matroska.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œ\Â\"\ëX\èT\ëpP\àz',_binary 'uÁP\ákŒ_?’\Ñ\Ñ(¾Ž]\\±\ÈO59\ïa{Ànú\Ãÿ','',0,'?'),(_binary '\ÖrYŸS¯xwDYËšJ™[','wp-includes/images/media/interactive.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R×¬Ë‚®ñ\ÂÃ´Å‰h\ÜH',_binary '{óô‡ [K\ê\à\0!ƒê¸½²/\á\\¹lw.Á¨\ê\Ý','',0,'?'),(_binary '\Ö{\Zƒ\Ë\Û$³u9€„A¶‘','wp-content/plugins/woocommerce/legacy/js/photoswipe/photoswipe.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›ø\Ô\èÁ\'ÍŽ\Â\Z›PÐ¿',_binary '\àT›6¼è‹õM>Äˆ\ÑF\ZóÝ†“ñ3\Ûl´ßŠ{0','',0,'?'),(_binary '\ÖRÂ\ÑvŽ[x¢\ìT\æ','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/hidden.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÍMÿ\Æ\Ü6Mz­ q\\Vk',_binary 'VÀ\Ô\È¾†šÚ—cÁ¡\åPƒN@aÄ˜\rœ”‰\ßÁ','',0,'?'),(_binary 'Ö6\ïW\Ên+Šqó\Ó×Ž{','wp-content/plugins/woocommerce/src/Admin/API/Reports/Products/DataStore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÙÝµpu«´\ÝÀ„‹\nWf',_binary '\Õ\ètŽL¦I\Ë\à\ä)a\0=@¡z,²	‹ñ^\æaÛ·','',0,'?'),(_binary 'Ö‹\Ë8“[½À¦‰˜0½ÊŠ','wp-content/plugins/wordfence/views/waf/debug.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ûAöN™¯z‘ð\Ì	Ü¿œ',_binary 'Å—”5‰£bDGˆ!‹\â\Í\Þ{t¶*\"Ÿý\Èy»','',0,'?'),(_binary 'ÖŒ·ñq\æÃ³ýX°[\È\Ò\Ç','wp-includes/class-wp-feed-cache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z\Å\èØ·?h\"ý\Æ%c”´(\0',_binary 'lh\Ë>¸ý6\Ù<Z,2ò\Ð1*!€cm;z~ \ÎÜñ4½\Ü','',0,'?'),(_binary 'Ö˜y­›>p}9«r\Ó=F°','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/event-emit/utils.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Î\ÇT\ã5ùuµQ—-Eðs',_binary '¤°I\Zl,H³\ìƒHcT%if\n÷¸JŠŸ0k\nF®','',0,'?'),(_binary 'Ö›}k<¾Uo°½’ó\Í^','wp-content/plugins/woocommerce-multilingual/inc/template-classes/status/class-wcml-status-multi-currencies-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\é+W„\èP\îz¾S\Ý6\r',_binary 'p\æyŽ»ßŒÁP^p<%W–$\\Õ¦©\ë·PAY„›Æ”»R','',0,'?'),(_binary 'Ö›©8ŒD-£\ÉPH\Ê\r¼_','wp-content/themes/flatsome/inc/woocommerce/structure-wc-global.php',0,_binary '&\rc…óGu•ôø(øj^',_binary '&\rc…óGu•ôø(øj^',_binary '{m/„Êº`}–BGôõ¢t0¤!¹”òBº7¢KN','',0,'?'),(_binary 'Öž‰\ã“eÓš‡µ€‘\Ì','wp-content/themes/flatsome/inc/admin/kirki/modules/css/class-kirki-modules-css-generator.php',0,_binary 'v·¿…\nº}T…\Ä\\{<X',_binary 'v·¿…\nº}T…\Ä\\{<X',_binary 'b%C\Æö­Uƒ\áL½’\å7’/\Ï\Þ3<vŸFee¦4','',0,'?'),(_binary 'Ö¢!\íüYK/‡\ë5°ŠM','wp-content/themes/flatsome/template-parts/footer/footer-absolute.php',0,_binary 'Ã¿\Íÿ„<Mv\'Gjžùu',_binary 'Ã¿\Íÿ„<Mv\'Gjžùu',_binary '\î\ë©\ïUj~>•’ó‘i‹&]’;I†‘™eI³9®²i\ï','',0,'?'),(_binary 'Ö¶\Ë\å9Øžføpo3t','wp-includes/class-wp-admin-bar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_œô›\á\Ì\ì|T%BWô',_binary '\ît\n;`S\îb\Ãdl$\Ô\ä´\é\'£hÃ©mŸ4ô‡^c6','',0,'?'),(_binary 'Ö¼Ð¿—´4œgc\î\×2\ÞÝ´','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/order-notes/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E32.oºø‡¢=b\Çc',_binary '\É}\ÓZZÂ»<\æI‘\È\Ï\í\èÚ|l\n\Ít8K\ê\Ù\Ò','',0,'?'),(_binary '\Ö\Ä-\×ù4´+\ÏsÙ§\Õ;´','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/AutoloadProcessor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ö§G•\Ù\ÌýùB”P“±',_binary '$H«·Á¼n\É\Õ\ì\Å\Ã\"\Ëe^\æ÷¥è˜¤{\àÏ¨Ÿ\Z','',0,'?'),(_binary '\Ö\ÏJ\Øû\ï!¬[W6Ý§\éý','wp-content/plugins/wordfence/lib/IPTraf.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†«8ùw\ÞVX¯8¾›~$òö',_binary '¯\ï ©%\ï\Êõ\Êm\Âüù\èò³š«-[«\0:ˆ& ý','',0,'?'),(_binary '\ÖÐ—\Ý\ÖD\Ó\Ìu\ëŽ\éòy','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wcml/icon-256x256.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼§c\ß9yNo2\î\í\â',_binary 'Gp]\Ä-¡W\Ú\ï«b9Zþ›¡`0\èõ›\"ÈŸ\Ó7\æ','',0,'?'),(_binary '\Ö\Ùz ñG·ˆ/U\Ì\Ôôô','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/src/Recommendations/Storage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×\é‹³‰[g\rc—‚\å',_binary '†§fMx_\åŸdþÛ…=\îmùI¸÷e[»\î+\Â\Ã\ÃMaû','',0,'?'),(_binary '\Ö\Ü\ÏBû\ØW‹\é\Êk\rZ{½¥','wp-includes/sodium_compat/lib/ristretto255.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æ5\\S\äö\Ãz\éø§“\ã',_binary '¿\0h“—÷=‰`]U3Œg…÷æ®¼4%1µ¥9x\ä*\×','',0,'?'),(_binary '\Ö\áT\rš{ù\ÅÙ©gq]5\Ðt','wp-content/plugins/ti-woocommerce-wishlist/views/null.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`{L~»¦’\Í#ö(\Ã \Õ\rL',_binary 'Í‡—O¶z#ù57\í\Ù0\Ù,6ª·ðõ¢ \Ëô¨¸e','',0,'?'),(_binary '\Ö\á\ÑR€\ÆZ&¸4\'	3\Ò\ç','wp-content/themes/flatsome/inc/builder/shortcodes/button.php',0,_binary '\Ú\æ†\áb®˜¦®zx0\êu',_binary '\Ú\æ†\áb®˜¦®zx0\êu',_binary '\È\ëy¬z¼\Ç~d§O\îSk¼\Ì3:öD;Nxž_ª\ÞD','',0,'?'),(_binary '\Ö\ê\ÐT\n´\Ér1”°’˜=0','wp-content/themes/flatsome/inc/admin/kirki/modules/tooltips/class-kirki-modules-tooltips.php',0,_binary 'ÆŒ\Ú4$–:S\ÐZ\è…\Ï\à–',_binary 'ÆŒ\Ú4$–:S\ÐZ\è…\Ï\à–',_binary '7‡ÀÈ¼T!¼\î`¸•Zü\Ø3\ÄHˆ¡i62¯#','',0,'?'),(_binary '\Öõüfw\ÑõW\Æ\Ä\àŸ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-line-items-block/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pvB‘O`9ŒO˜g\Ñ\ÞY',_binary 'y^E\ÄI \íÏ½.<6Œ¬˜¨\ìx\à\î2¾\Åy\ê-‰\ÌÏ‹','',0,'?'),(_binary '\Öÿa\å!57\ë	\è\ì\æ5c','wp-content/plugins/wordfence/modules/login-security/css/admin-global.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­\Þ\n\Ì!m]\'\Âx\Ë_·',_binary '\ÓW‡”þI¯Y¢\ÞT\ÃÄ¯Q².0(?ƒ\ËF£™\Ïf#|\ÆM','',0,'?'),(_binary '\×FîŠ“{\ä\á%L,ÿ','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/RemoteInboxNotificationsEngine.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²\ÞM”;\'‹\Z~Ø—¨\0',_binary '’$‚C/ŽJKgx\\°\é\áM¡M\ä\n}½\Þ‡Ûœø','',0,'?'),(_binary '\×”\ï\Ïù\ÍÉ®Ø¶ý©˜Áö','wp-content/themes/flatsome/woocommerce/single-product/up-sells.php',0,_binary 'Yh\æŽGYþ|˜¥RŸXtF',_binary 'Yh\æŽGYþ|˜¥RŸXtF',_binary '&Aµ‡ûÃ¾S÷ÿÔ¥ú– \ã[¨¿d\Âm !A\Þl\Ç','',0,'?'),(_binary '\×%\Ïu\Öc\êpÖ–´\Þ]\Ñ','wp-includes/blocks/calendar/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\n±‚Œõ³Uz¹PU\Ò\á',_binary 'ý\âöŠ\é2aC•[[\Ù­n\ØkŒ2!\ZR3LŸ.6l\äRü','',0,'?'),(_binary '\×q|s\ì9½ˆWRŒ÷P‹x','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-category-control/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\Ît; e`&ñ¼\ÅÑ’‰',_binary '¬òC¿9~~«\ì{\ìp1<q\Å\Õ™\ÈûÉµ\"\Âl]0þ','',0,'?'),(_binary '\×\"\ÉÌƒtq)\Õül@;Ì˜','wp-content/plugins/woocommerce/assets/js/frontend/lost-password.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J—xD‡Ù‘œ\àV”ø\n',_binary 'X3\Ýq©\ë„0»\Ë\Ì\Ël7Pk[ ?\Ó\Õ3¦\ï+§þ\Z','',0,'?'),(_binary '\×)„ Á9.DúRó³¸}','wp-content/plugins/woocommerce/assets/client/admin/chunks/6637.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'üBú\Ô!cùt+8¯®#µJ(',_binary '¢\è\Ë\ï’{µ\È!\Â+xJ\é^‹\ÈhbB…\\›ÿôFí ”\ä‹','',0,'?'),(_binary '\×.øúef•UyFüˆ¢\Ìk','wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-product-data-store.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AaE\ÍÒ†¼y\Ü7³@Àº',_binary ')e I4°qð3ñÐ•¼5\\œ‘\Æ\Z\ÌÔ®1øˆ1O\Ðl','',0,'?'),(_binary '\×3>r­¸9ñ“`‰dk8wi','wp-content/plugins/woocommerce/src/Admin/API/Reports/ExportableTraits.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'æ½®\ÔK§ñm\Õú?\Øýz\Ø\Ñ',_binary 'ÿ\Ã\ØO\Ý\ê\"\ã< º	\ÞòÁ ƒ#&3Ï»	W«¢	3¼','',0,'?'),(_binary '\×9\Ý,»°\á²\Î\ÉL|\Ô;\à','wp-content/plugins/products-compare-for-woocommerce/js/products_compare.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n§2 w{>G\"Î»H\Ç!M',_binary '8ò´\Ô)\ÔR.\ê³L^HvI})\Ù\n^Å“{rtw\ì¯e‘','',0,'?'),(_binary '\×GöòQ\Ä\Å5±¬–”º','wp-content/themes/flatsome/assets/img/payment-icons/icon-invoice.svg.php',0,_binary '½ûb\Ðl±\Ó1£ó\Û\áh\Ï',_binary '½ûb\Ðl±\Ó1£ó\Û\áh\Ï',_binary 'WÞ‹¢ªñ\êLŽ‡oœ|kb¸\Ï\Ûrô\"\ì\ë\Þõ„¨\Ú\Å','',0,'?'),(_binary '\×GÈ©õ\ï¿6”¤³\È\0Y','wp-admin/includes/class-wp-posts-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y¤\Þð\ç\íX; \ß:Ì¿\Ý\Ý',_binary 'šðY\ÃðÖ‘°@j’>¼[T\â9\ÕA_\'¢J3\r¸sO','',0,'?'),(_binary '\×Hµ\ç3ttšûWKB\ìV','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartUpdateItem.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Š\ç±Œ÷\è”Å°#zIy',_binary 'œ/\'ò|k\r.ž±­\Âþ“H–C|@ge)Š¦‘ª7','',0,'?'),(_binary '\×I\ã	JµŽa~RšZ¨','wp-admin/includes/class-wp-application-passwords-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Å£\Î{Ž\èŽLlF\æ»\Ãÿ',_binary '¢Û–-<ùüÏ\ÊC\"½(°˜£Q±÷›,Hn¨C»\\8°\Â','',0,'?'),(_binary '\×Jhß£8bDƒC¡E','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's¨\åhú¡úS.`O\×rvA',_binary '‘ƒdûõ½\ì\éóË‰Œž\ËbZ¼O5\Íù¦%>­S\Ùñ','',0,'?'),(_binary '\×Lq¡~x7\á¶\èpš\Â{','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/cart-totals-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')-lškå£¡1\Åv´®',_binary '\rMV\ë‰\ÈÓ¿-|ü f=ý\ÖK·Àœxˆ¸Ÿ&etQ','',0,'?'),(_binary '\×M\0÷\Â\Úc°š\íø¡¢_d\Ø','wp-admin/includes/class-file-upload-upgrader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\ç®;>\Éx\áZs\×6',_binary '[\"o ^\ï.q`O×¦ƒ‘vÿ\á<°õœQŒ+FM\Ð4¹‚','',0,'?'),(_binary '\×P!\âŸ\ÈÁù¾}¸S\ÕÒ°','wp-content/themes/twentytwentyone/assets/sass/05-blocks/list/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œ\ã\àgIó²\ç\ãµHõT®',_binary 'G+xÚaÈ´Ñ¾ä„®ŸC\0B\ç\é–,­üL¤\çw','',0,'?'),(_binary '\×`5`‘\âh\Ù6\Æe\rŠZ','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-product-attribute-terms-v1-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³rIÑ«FS\ÔO7J\Ê]¥™',_binary '¸*n~ÁŸxXTm5´$$¸\0›W°\ÚhD§gôR~»','',0,'?'),(_binary '\×f¿k[x‹•œ\ä \\Œ/Y','wp-includes/js/dist/redux-routine.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Çž]Þ£P\Å\àRA\î*$*&',_binary 'ôM“ÿ¥)Ê™u‚öH\ZHZ\Â\ßè“’¿\Ùª‚\Ø6÷<','',0,'?'),(_binary '\×ifû\ÕÆª\Ü\ÊTo\èj','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/StoreApi.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~4v\Ù\Ö\ãY{a9œž•',_binary 'S\êž9\Ýöƒ8»\ÒZB\äJ<¦\î\Í[¿\r+\'•sºf™','',0,'?'),(_binary '\×m\Ø\å\çK§Lbs\Ó','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/shipping-rates.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|r\çÈ¬š\r\r\Ë\'G˜9Ÿ',_binary 'qq_M»½P\Ó\0\Ì÷s¦>´\Ï\Â\î®\Ù\Ù}\Ó%’ú\å','',0,'?'),(_binary '\×n\\w›;\\]Ç›…\ß#²','wp-content/themes/twentynineteen/archive.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6œ¥Š`ºñ\ÓXLörª¶',_binary 'yg–Û±\Î®\ÇJg\Ðõ\æ«zV›\åx¼ðŒ\×\í=H\Ö','',0,'?'),(_binary '\×wŒh] Ã¡\Ë&“wM³\Ä','wp-includes/class-wp-network-query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'“CKeô%\ìÙ­J-Ï¡\Ê',_binary 'L³¡„ñ¶Ñ¬šd°%\Û 0\îókzY,BE\æ*\Õ+ô,','',0,'?'),(_binary '\×x“²@,x=š…2ñ~\æª>','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Rule/Rule.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ç¼´ñ,¾÷MJ\î}´ð`',_binary 'w\Ú\ÎDx<\Ôþ\Ý}«õ|—¹\ä_\n\ØþFž\ÞCT™I\Í','',0,'?'),(_binary '\×|\Âô½SöRu®[\n\Î','wp-content/plugins/woocommerce/assets/images/placeholder.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\Îs\Ýy}Kÿ\áõ††š\Ø',_binary 'M\ZLdûÉ“\èq\Òg(r\Ø4ƒU\Ñs«®.ø­\Ã','',0,'?'),(_binary '×†¶.”–pF<™\ã\×\ç)j','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartItems.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'QýL¼l•P6u¼i',_binary '¡\rf¶ZZ>jÔ\íÜ\ï\ï“v\Ë\0³•DƒA\×l\×öx','',0,'?'),(_binary '×—‚õ‘JCµ(ªB-\êQ','wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-theme-licence.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(0[\àÞ‡\'K!¢\×ø\æÁ\ë',_binary 'ð“ñ¼A\éU—û“õ\Z \äºX\è\Ð?ý´\ÈSûq‰y','',0,'?'),(_binary '×ž”y„7mE5ƒ…O_Á','wp-admin/js/media.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ó\ë-:§(•ð%\×O„\nú~',_binary 'x¡(ƒ£\ëžË»ð\Í³ü\Ú\ÛY}hu^8?K\î\â\ÞZ','',0,'?'),(_binary '×¢P¡¯§4\Ýe\ÛÂ¡U”`5','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-shipping/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ì×FO\Ú\äE%\r\Â\Ãó™\å',_binary '\Z/Eç´º\Ê!&ƒLS%\×`;0Fø	!s‚¾v²#','',0,'?'),(_binary '×«P-CG¤)¤ów‡','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/CSSList/CSSBlockList.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ç\Ê.øª“öQo\n&\à\Æ|Q',_binary '\ÚS7³ýñ—qo\äÛ‡\Âü\ãÁ´ \Å\íjZ»z;º7‘\Ë','',0,'?'),(_binary '\×\Çj0–©\ÞwþE}Â®RŸ','wp-admin/css/wp-admin.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€e\èUpÊ“ûHšWtP! H',_binary '\Ê^´\É\ÝE-\ÊRŒø±¢\'#?‘leÀ®mL0¯kU@','',0,'?'),(_binary '\×\Ê|9=ž]\ÜBµîŒ•','wp-content/plugins/woocommerce-multilingual/res/js/products-screen-option.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';îŽ†t¿ZO\Â@OÂ„°\É',_binary 'cú£rk2\à\ä^²²\ãŸU›V—}£1Ÿö\\¡8`Y\Å0Œr','',0,'?'),(_binary '\×\×45Hv+³5“\å/¶o!G','wp-content/plugins/woocommerce/src/Admin/Schedulers/SchedulerTraits.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~Tõõž¿­\Ç\á5Œ\È/\àò',_binary '\Î\êrØˆ»\Ô\ÜB®K`G1/\Óù£\Ùn-KÚ²\Ëi\Øð\è','',0,'?'),(_binary '\×\ä^\Ëu©­\â\Ë}G»\Ô','wp-content/plugins/wordfence/lib/email_unlockRequest.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ð¤Î~ÍŸñ\ìþak±\Ö',_binary 'u\Z g$}o¨‚û\ëbÄ„ñ+\r \ã\n¸»±8²','',0,'?'),(_binary '\×\æ?`\r{\Ó{¸’€º¶\ë','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/order-summary-shipping-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\îi\çÐ‰c‘•ð@],6',_binary 'š÷šö—&D64ôJf¢\ç©(5\n­K®ò»\ä˜\r²#™1','',0,'?'),(_binary '\×\ï\ÃPDZiTÝ‹VXQV^','wp-content/themes/flatsome/inc/post-types/post-type-ux-blocks.php',0,_binary '‰–‚ƒ»ô\ïðÂ¤=\0ˆ\Ð',_binary '‰–‚ƒ»ô\ïðÂ¤=\0ˆ\Ð',_binary 'Î­\×=›ÿ]\Ç\î<\ÞAÿu$W¬Ÿü\ç 2N£/','',0,'?'),(_binary '\×õ;\èœÊŠ\é<>3\ã1','wp-content/themes/flatsome/assets/img/payment-icons/icon-discover.svg.php',0,_binary '‰vŸ‹ª\É\Æ\ìM\Å[',_binary '‰vŸ‹ª\É\Æ\ìM\Å[',_binary 'WÑ¦iÓ„ñW\ël\ÙVùšg\Ö\\\Ö\ÏÿU\ï&\ìFÌ‚ ','',0,'?'),(_binary '\×ø‚@\Æóø;kˆ§¤•¿\Å:','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z‰¿šrœ>U<z1x\Öe',_binary '\Ó2L¾Y›\È\ì\Ð6[þ½\ÜSŠ\âj\Í\è@KÂŠ#','',0,'?'),(_binary '\×ø\Ô\Þ\Öcqó ú€Ko\ÔÖµ','wp-content/plugins/woocommerce-multilingual/classes/Block/Convert/Converter/ProductsByAttributes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M$\Î\Â\ZŽNù\Ègó°}Y\äü',_binary 'ƒ\\6*¤/#¬8†,fG*)UV7«†6|¦;','',0,'?'),(_binary '\×üK\Úl\Ô|ùp\Ò<','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œ«Y02Ž*i\ïK¿,]\î±',_binary '\×PÅ„² L\ï]Yj‹_ß¿š–~ù÷*W‚}\çŒ\ï\á†','',0,'?'),(_binary '\Ø\0Át$¶Ew¸.õj\Ô','wp-content/themes/flatsome/inc/builder/shortcodes/col.php',0,_binary 'uc®\æ/\Í6>*$¶ùt\á',_binary 'uc®\æ/\Í6>*$¶ùt\á',_binary 'QýœÿŽ¦`U«\Õt®ÿ\ÈÎ§lq÷úen#','',0,'?'),(_binary '\Øqw¬\Õ\n\ÚÊ­™ž®m','wp-content/themes/flatsome/inc/admin/kirki/modules/icons/class-kirki-modules-icons.php',0,_binary '#Ý‹\ê_’\îF)zý­-ž\É',_binary '#Ý‹\ê_’\îF)zý­-ž\É',_binary 'Yü(pHx•\âX„“\å\ÓUt€ZOóõ·~—Ž)£1','',0,'?'),(_binary '\Ø\rXì‘’å‘D¤r±!','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/store-snackbar-notices/components/snackbar-notices-container.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LF¸¬ÖôÓ».á¬¶Sr',_binary 'ùˆnŸQˆ?xÁ\ëšs¤µø´\Õ\Ñ@\ê\è\Æ\n5\Æp','',0,'?'),(_binary '\Ø\r\Æ%jxœô\×\ßsÿ\Û%*','wp-content/plugins/yith-woocommerce-compare/plugin-fw/yit-plugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ý\Å[\È\Å,\n	\Êý¡Fµ\Ã;þ',_binary '‡»X…&;=²1<\Ùp\Ù	vÄˆw\ß5ƒñGó­\Õ\ï','',0,'?'),(_binary '\Øbœ\Ð1h÷|a','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/country-input/country-input.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ð}S\Íl©ˆ\"{–Œ…`À',_binary 'Ø©)r÷6{~ˆÎœ,\Ññ«NM©ç– ð¹z¨Ti','',0,'?'),(_binary '\Ø¢¶\É*8LT\á)\Ûòr¥‰','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\ÃvE…‰\"¹Â™M\\\ÙñM\Ã',_binary '4(eõ“ýô\ÊI892¡\×ö-…ë±ŽóÄ¼®~™]','',0,'?'),(_binary '\Ø\Ù<Qªý\ç\Ý_4°t','wp-content/themes/twentytwentyone/assets/sass/05-blocks/social-icons/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rz\æG\Ð\ëù\âöù”[iC',_binary 'z\Ò\äÐ¥ó\ÝY\Û\Ð\Ø\'R•Hžy\ÎRiV~\è‚\nÈ¿y¬','',0,'?'),(_binary '\Ø|²\Æq\Øp\Û\Ô\Ösôkfô','wp-content/themes/flatsome/inc/shortcodes/ux_text.php',0,_binary '\Âþbô‚\ç\ÚÕ»k…tóqÏ‰',_binary '\Âþbô‚\ç\ÚÕ»k…tóqÏ‰',_binary 'u	¹1°\Õ\ÂnˆÿU+\ãD$1ò½L’b>°\ÍyJšµñ\Êÿ','',0,'?'),(_binary '\ØÀ\ZvŒI:wm\ä²\'~K-','wp-includes/ID3/module.audio-video.riff.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«²÷ G0`3+{PP\ë\Ð',_binary '–Àô‡nZ…ùÊ½ƒ\ÓûZ\åˆÿ§P\Ñ\ÍH\å\î\Ï*I$©“û','',0,'?'),(_binary '\Ø\"\Î>‡@Ÿ[ò†MT¥˜','wp-content/themes/flatsome/assets/img/payment-icons/icon-googlepay.svg.php',0,_binary 'Ö‰+$2\×<™|= ¹ò€',_binary 'Ö‰+$2\×<™|= ¹ò€',_binary 'hŒu%Šy­,\ÜÁe\è\àõgó_ô‚\åe·\í÷©ÿ','',0,'?'),(_binary '\Ø%má•£f´÷\ádÄ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/button/save.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`?\èýÓ¥A~k\r÷¤',_binary 'û•P\ÝôRñ š3\Î\á\É=\ãr‘\ÂùSdù¨\ÛD\Õ\Ë','',0,'?'),(_binary '\Ø&\ãZh\Í$›Ã‰o‚','wp-includes/class-json.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'kE\Z\ï¡[Z™ÀœÀä°±½',_binary '\èD¦\äýû\Ðtª¸5\Êð^	©Ïƒ72Áð7\×{','',0,'?'),(_binary '\Ø6T®4r4\Ê -E\Ø|\å,','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì¶\Ñg‡&;¸\ÜÚ¶D',_binary '7Ágs˜\ØIo´\Í}\Í\Ö3;X¡Ò–¯\ë—\0§¯™×šE','',0,'?'),(_binary '\Ø8/B±$8ˆ\Ï`mœ','wp-includes/js/imgareaselect/jquery.imgareaselect.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\è?¾óES+\Ï',_binary '\Î\Î\É,³®OT[9\ê«pm¦«YÌ£\ßÃ“,ù€\Íñ\Û=f\Û','',0,'?'),(_binary '\Ø@\è1Y\r¥\Ü_­/\×	®+™','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/fonts/fontawesome-webfont.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯z\å©\î\Õø¸\æ˜ 6‡>',_binary '­\ß@â£‚©L\ëEQññ‰(ieº–q[N|&°\ãùÃ÷','',0,'?'),(_binary '\ØA¯h)Iˆ\Z]Gr\ÞöƒE','wp-admin/includes/import.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Í\æòž&Àm¹|Á<ø\â(`ñ',_binary '6\r6\r‹@\îu<\Êz(\á_ü\Ñ\Ð\á\ì‚0‹v\âÀ*®','',0,'?'),(_binary '\ØJ=R\'ÿ¬\ßt^ôŸ}ú\n','wp-content/plugins/wordfence/images/2fa2.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ä¾\Ü\îŠ\Ôû\0¿”H',_binary 'n¸põŒÊ…¹¨üG\Ê¿0\Õ6KqÁJ]Œ\î¾\Ã¾Jû','',0,'?'),(_binary '\ØJ•õÙ·\nq¥\é9Z¦\Ý','wp-content/themes/flatsome/inc/extensions/flatsome-live-search/flatsome-live-search.js',0,_binary '(Ã§›i‰„®\êSDW\ZŸ²',_binary '(Ã§›i‰„®\êSDW\ZŸ²',_binary 'X/±¨Yp‹\Õo@¯c>-P/›±@ùT{gó¢R','',0,'?'),(_binary '\ØM&3\r\ÜÁ3CMaQ{','wp-admin/images/yes.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ä+ø¢7Ü‰—\rqZ\èQk',_binary ' =\ÊQ\ê\âG\Ý\ë\çˆ9%¹K†\æ\æ,\Ë\rû\ZFðyõ…\ç','',0,'?'),(_binary '\ØMÈ RAýì¨™°y±\í','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-payment-method-cod.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9 \áþ\ÂNI\çXv\îx',_binary ']\ÝÅ³B_¿³w‹Tq¶\Ñ/¸•vdWg|\ç\åúr*\ï','',0,'?'),(_binary '\Øa¿t\ìÔŠ~)\ë™5\Ýðû','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zone-locations-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­\È\æŸ]j¢\çvšW\Ï4°Kö',_binary 'µ÷]ióÇ¶Pj1pU\ëR‰\Æ;\ß\àüŸ¨ÿ\ÈÍ¨Iw=','',0,'?'),(_binary '\Øg%\n\È\îÌŽ\ì\á¤','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/payment-method-icons/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²N\âozWƒ`~ú\ç\Ë\Õ',_binary ':fÁ‘3mƒp¢\"—b\Zµˆ¤I‰šh\r»Q(¹g!\Ñ#ki','',0,'?'),(_binary '\Øh‡EøŠðT|¦\ÃJ¤\r\Ì','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-totals-block/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S\Ó2\àA„Ì õ!!¨°',_binary 'O\ãùXh;‡œ–\Ý=µu1K\Ù\ã\éµEJ\Çf\Ç\éU¼ò´','',0,'?'),(_binary '\Øj‰i¾\nNI·J°\Ü','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/help-tab.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'û=Gu†‚<ž\rV¼i\Þ\Ý\n',_binary '5\Ô\ì %!¾#=R\é\Í\ÐÔ¡µ[NªW\r/ø\Ì¦1ò{º\Ô','',0,'?'),(_binary '\Øn¦Š¹o†As³K0\ã?‰+','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/PantheonInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	Î´Ñµ3øl\î]\Ø\r¥üE\ï',_binary 'Né«¼³‡”U³˜P}\Ä\'!7o\Öþÿ‹møš-)~','',0,'?'),(_binary '\Øo\ÅÇ£ž	×£\áŸf0¿Y','wp-includes/SimplePie/Core.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ø²3aÝ©\æ0)¬­_\àS',_binary 'õ“\×760\î—w8\Ý([†ž\Îo\ãW\Ô\èK\ï\Ô4dŽ\Ãó','',0,'?'),(_binary '\Øvõý\ã\Æ\r\êû´&X‰','wp-includes/js/jquery/ui/selectable.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÂKÊ°õýk9\Õ\ÃEˆZ',_binary 'O‚þ±tOrA[*®>ú\Ùñ\æks\ÐLuq)‘s\Í 8','',0,'?'),(_binary '\Øx¼øÎ²Ð¦¬\à¨A	Š<\ê','wp-content/plugins/wordfence/lib/wfCrypt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'CøR`¨œ¾\é\Ä9|‹e',_binary 'U ÍŠŸs›ôds\Õ9;\ä°ÀC¿Oô†ûòÈ¤‰@','',0,'?'),(_binary '\Øyôù¥‚[w°i\è”ðñ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Õ\ÞUò«3\áÒ¾\ÉP¨m',_binary 'o\Úa\Ë\å/jnuø\Ý\ÚFõX]¾òS{\Ìu¥\á','',0,'?'),(_binary 'Ø‚!\Ævµ_«\Ý9Hôö\'Š','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/blog_posts.svg',0,_binary ' ;5–eZ	œ‡c4(º',_binary ' ;5–eZ	œ‡c4(º',_binary '\'¶Ž»?f……‹#\ZL¹ÀR\ç\Ó\Ô\î8±0”\0Ôº·\Ô\ÄÀ','',0,'?'),(_binary 'Ø\Ò\É\ì\å\n¥t÷¹«\ß\0','wp-content/plugins/woocommerce/includes/integrations/maxmind-geolocation/class-wc-integration-maxmind-database-service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9¦µ;\r\Ôò8\å\èÄ«\rŠ\Ý',_binary '#Q-c7\âNWH!6“5ªH`(w~\ß;j\Å&Ž\ëŒh›','',0,'?'),(_binary 'Ø“…-ú¶\Ñÿ\ä£œ\Ô\Î\È\Ñ','wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-b.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ë\ê¢\ÉTEb»…¡B;',_binary 'Í½\Î1=Íò\èN]z]ùòwn«@ªx\Øa©¡H','',0,'?'),(_binary 'Ø•‚ö\ìJ‹¢7aüù?\Æ','wp-content/plugins/woocommerce/assets/js/prettyPhoto/jquery.prettyPhoto.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ï\nfú\Ä>\ì\Ë\Â~w„U~|',_binary 'ÏªGE\âÓ¼ª3ÁHYh‘\\\Ù\âƒ.Ž_\â\èS\Ü<','',0,'?'),(_binary 'Ø™@ƒ\ÝvR_)\Ù~fO','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#[““1ŸE=\è\'?\ç\ÏÂ½',_binary '±n=ü}J\ÇqYð¬9)f–M$&¶R!¶w\î','',0,'?'),(_binary 'Ø¥\è2w\çaAŒ\ÖWôP¿','wp-content/plugins/products-compare-for-woocommerce/style_templates/simple-and-nice/berocket-simple-and-nice.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ã#%]fU]\ã\"\×gü—\Ã',_binary '–F;Gü1t\î‰T\Ð\èÈ»¹\É\á\ßd-‡=†‡D©—','',0,'?'),(_binary 'Ø¯¹\ÙO­‚¶ö²6\rA†','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/codemirror/javascript.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®\á>µöJ³=³)Z}¨',_binary '¥m\åw\ÉJÜŒA\ã\à\Ãb.–³›ó\æFk…N‡\Ý0L°','',0,'?'),(_binary 'Ø±¥-¤_}Z‘hû\ì\n±\Z','wp-admin/includes/class-walker-nav-menu-edit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V&]„Cm]c\Óhý,0',_binary 'R\Ü:\Åÿ\Í\Ñ\îa¢\\B_4ð³ƒ/–\\j\n¡','',0,'?'),(_binary 'Ø¸´!S:!aˆ\î\ÉCŽg','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-coupons-v1-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D\Z®E(’C\r‰\ÚP\ÑŽ',_binary '\ÕªT\Ã„\Ý\æú\Â\ÜvS\Ý(\á+q—•\à\0¬V÷·t','',0,'?'),(_binary 'Ø½\Ð)’üuÒ¶Ÿew‰¯l','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InsufficientFundsException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆmhOà´²Šfô².I',_binary '­o±O\ÛbÁ9_Á\ãb”-4\Ã\ê-„x%ùT¿õ«5E9\'ž','',0,'?'),(_binary '\Ø\Êÿÿrf\âô“L¤\ÜS ','wp-content/themes/twentytwentytwo/inc/patterns/header-stacked.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PŒdy\æù!\Ì\ÙÔ¾²\á¢ ',_binary '\Ëv¬Eüx,\Ã%¦%NA\ä 6;\î34*E;`\Ô#5a','',0,'?'),(_binary '\Ø\Ë\ZªyL\ËR\à¬5g÷‚\â','wp-content/themes/flatsome/inc/structure/structure-footer.php',0,_binary '®—…v1€põ†q?òª\Ë',_binary '®—…v1€põ†q?òª\Ë',_binary '6XcWv\áT\Ñ\àÒ ¬Þ¹—O=›^\á\Ú\ËKB˜“Ä¥\ä','',0,'?'),(_binary '\Ø\ÌK\Â\Z¿ÀVl¥b~`JW','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/components/list-table-blank-state.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'dP\ßxJh‰ñ\nJû\åw™',_binary ':\àReŽB\Ä1D	Ñ»:Œ\ÃJ\0N•Ñ\â~…Ú…\Ä','',0,'?'),(_binary '\Ø\îÒ¡ýŽªK%‚¯ˆû^²','wp-includes/js/dist/dom-ready.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\éø›!‘±N\î´JœAž†v',_binary 'T\Ö\ãII-ƒU{zö]m´RX¼û>\Ã@[jt\ÍX','',0,'?'),(_binary '\Øô\n´c\éMÄ‹Q&¾','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/simple-right.svg',0,_binary '\\\ß†\Âr\×òq\Â\á$',_binary '\\\ß†\Âr\×òq\Â\á$',_binary '9©$ŸûŽ¼9Ö¹[F\0P\å–3]i†Á}Œ¼\á \Ó','',0,'?'),(_binary '\Øö_Ô¢\0§n¦W±‚µ ÛŒ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/test/utils.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}Æ¢ô*œ;‚\ãi;-V',_binary 's«ý´\ìò\à®Q©›úLŠmñS¾x¼3ŠW.¢H\r’\îù','',0,'?'),(_binary '\Øùî‚‡\ÄT`Ò®\æÀcA¬','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/webfonts/fa-regular-400.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”š+n\ÃZ8Gü{\êòñ',_binary 'LÆŸ°ý)3£v}\Ën°¡Uó|/\Ö)\ÛN\â„9º)9','',0,'?'),(_binary '\Ù|³7O¤=„g\ZöŒT','wp-content/plugins/woocommerce/vendor/pelago/emogrifier/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' \"’…Ps¸pf>ÿi\Ï\Þa',_binary '·™‚Àâ ù+®‡	\'\Ölÿ‹®É—ðc·r;²<\r','',0,'?'),(_binary '\Ù-h\n\r`–\éÃ½Û•C/s','wp-includes/class-wp-query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª.¾cýù7K¨Æ›\Ç\åÞž§',_binary '%<\ìLUid¶\ç‰ô—&·À\å5\É\é… ÷o\ìX˜:¡“)•','',0,'?'),(_binary '\Ù\n P\ÌÔ ›8VüŒ','wp-content/themes/flatsome/inc/admin/customizer/img/category-style-list.svg',0,_binary '}±ðGb‘’\Ö½Mÿw¨Á²',_binary '}±ðGb‘’\Ö½Mÿw¨Á²',_binary 'HÖdµ¯9\Ø#Pþ\ÝS“ö4/7\ä\n\0„q-fT\ï','',0,'?'),(_binary '\Ù\ÛÀ\å™\ÝùY‹“mxŽ','wp-content/themes/flatsome/inc/extensions/flatsome-shortcode-insert/min/shortcode_insert-min.js',0,_binary 'úG3ÙŠ\0UAb	{FGF',_binary 'úG3ÙŠ\0UAb	{FGF',_binary 'CMŸ\ÌU\Ð›\0\ïÃ³u\Ñ]¡æ°¼2Ã³„ú¤ˆµ—','',0,'?'),(_binary '\Ù\êiÑ§9$\Ä¢\Ùz\Æ','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-menus.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nF\á¤:¦$ø\0x4 ¨\åð',_binary '¸P5\åž\Øq6>µ›3 pÀ-\ÝQo•\Ý(!i\"|Â¢¯p','',0,'?'),(_binary '\Ù5Ì“Ï»	V\å/\åYT\ï','wp-content/plugins/woocommerce/src/Admin/DateTimeProvider/DateTimeProviderInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\ÞPD{©\Ñ9²\á\Ò\Ì\'',_binary 'Y\ç/X×˜E3oœL*z¶\Ì@þ	.žX„…>¡T²W','',0,'?'),(_binary '\Ùr¹ª-”¹ˆ\ÒD.‹\\\Ë','wp-content/themes/twentytwenty/print.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'û§i\ÄI<k\à”¶tzDS',_binary '\âh³\æœ\ï\\\ç•ý½|UW‹\Ó\Þ\â—\ë5h±\çg£¾±\ç','',0,'?'),(_binary '\Ù%N…^Ç½v\Õ7sý@\ný5','wp-content/themes/twentytwentyone/assets/css/ie.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™\Ù0šC\"\ÍR4\Ô\Z\Ãw r',_binary '®7üór*/|\ì˜`ù1Fóô\Ý \ÛV\È\Ûl‰R^<4u	 ^','',0,'?'),(_binary '\Ù*±q\Ê¹QJõŒ\Ò\å°','wp-content/plugins/woocommerce/legacy/css/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž\Í+š©z{i»\êI\ê\Ù“',_binary 'À®WWB\Í\Æ\ï¡\âY(\nsk\Ü/»@À\ÒlÝ€L\0','',0,'?'),(_binary '\Ù,(¡i7:^\Ì^\ç‰#','wp-includes/js/tinymce/plugins/paste/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dX®\Û½Ÿ•¥ózÒ†Ö«',_binary 'ƒf÷\×\0W{?q½\Å\Þ\Æþý\Å\æ‹\×Ul\à¾PóýÖ«c8','',0,'?'),(_binary '\Ù,\Öû\È%<\ç\ÒBtÿ(öð','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/get-icons-from-payment-methods.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*s“[\r¤\ÞgŸÞ½\Â\áò%',_binary 'd¨žñOô(-Á¾\n[I	þ\Èü`Œ“\ã~\ßI/\Ù','',0,'?'),(_binary '\Ù:\ÏM\ëGœ\ÒÿSX¢Š\Ð','wp-content/themes/flatsome/inc/admin/customizer/img/text-dark.svg',0,_binary '\æöT¦Ÿ«*n¹I\ÚöÆ‡',_binary '\æöT¦Ÿ«*n¹I\ÚöÆ‡',_binary 'Õ¥_ô\Âð\Ú\\w\ã%Ðž*€61\Ó\Ã*Y©O\ä7šo|\É','',0,'?'),(_binary '\Ù<Ñ›ù÷‹EŒ\ÃN\Ýû_W','wp-content/plugins/woocommerce/legacy/js/frontend/address-i18n.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'žQ÷ó6vÀ©R\Õvôd',_binary '±Ùži„¥\ë\áú\Úû^Í¡‘¬”	Iõ\Ë`¶\ã=','',0,'?'),(_binary '\ÙA\0•xñc\"Œ\ìD«\ã\Z','wp-content/plugins/woocommerce/includes/admin/marketplace-suggestions/templates/html-product-data-extensions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4~–Urpô\Õòþ\Ý',_binary 'p\Ú\Ûö\"¶V1¯„\È\Õ`\Õ5›œ§š\å\Ë\Ûù\â\r®','',0,'?'),(_binary '\ÙF\Õ\ÈA}ù1…Wtû±','wp-content/plugins/woocommerce-multilingual/templates/products-list/products.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>,z•\Ù\á¬KÑ¨ º”³.\æ',_binary '°ñ¶(E¶(\×\Ý,pŒFK\ËX—\È\í\Îû·%ª£zj\áU','',0,'?'),(_binary '\ÙF\êµø\éÀ¸ýZ2›\Ç','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Assets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\Ã\r\åyy\Ò\Ç£·²\Å\Î',_binary '\æÁšB6o>\Ä9Ž·8Ø¨,Æ¯÷þÀ–	j`ŒV–\ë\å','',0,'?'),(_binary '\ÙG£Dp1°C\rjUfZòšw','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-cart-removed-items-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':OŒ9V>(HkÃª\åÐ‘.',_binary '\"ñVu(^Pòƒ€½p›[‰°3^ _/¢q¿šQ¢C<','',0,'?'),(_binary '\ÙJ\à\ïš^\Z7ü•uG–k+','wp-content/plugins/wordfence/lib/wfDB.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P­_<†‹¤-1\é__I¬ˆu',_binary '\á‡%d¯¬¥¾d¨\Ý_…\01@TY‘$’\Ð\ä\ÐA','',0,'?'),(_binary '\ÙL\âi˜®F>®	\Ø\Ã\è=','wp-content/plugins/woocommerce/packages/action-scheduler/deprecated/ActionScheduler_Abstract_QueueRunner_Deprecated.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\á\Íé°‚g~.D÷b#À©',_binary 'ù #\Zm\Î„-0@¦Ê–DG\Ø \àñ‡˜ÑŒ','',0,'?'),(_binary '\ÙcÊ°LX\Äd¾aT+X‚\Ë','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/components/list-table-blank-state.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'dP\ßxJh‰ñ\nJû\åw™',_binary ':\àReŽB\Ä1D	Ñ»:Œ\ÃJ\0N•Ñ\â~…Ú…\Ä','',0,'?'),(_binary '\ÙdTÒ…:C9$öð ¼Î„9','wp-content/plugins/woocommerce/includes/class-wc-customer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Á\Â\Õ\nœN\Åol,o0Ï…',_binary 'ð´\Âv\Ãÿ(K§¢¯ºøŽ\ä”]\éL.*ÙžÏ‘œ‡a\Ñ','',0,'?'),(_binary '\Ùd\Å\Ó%3\ß\èZð4ý•_+','wp-includes/css/dist/edit-post/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=8\Õ6u	~œûüI\n\ËÜŠõ',_binary 'Ÿ`‘1\ë‚¢¶\á\ÑT‚(xAy¿º+5Sòp†','',0,'?'),(_binary '\Ùg8up<¯‹\àœ\Ë\çf­Š\ì','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-cart-sync-warnings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hT\àü‡¾{åŽ¼øÎ«¹úõ',_binary 'F=\Ì\×È˜Ù…•\ÃT,‡—FÉ¤Z9\r©\Ôuq\Z†{÷/','',0,'?'),(_binary '\Ùk\ï\Û/yž³©ý›&‰ŸG','wp-includes/images/rss-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÇYa[ QÁ\æõ—ýrj',_binary 'yS0üc`\n7ù\äas®\Ð#\Ân\ìú¨Y\ßü\Ø©','',0,'?'),(_binary '\Ùk÷ˆ6œ²-;[òj1','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/test/with-searched-products.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¢U\ã•ÅœDn\çU\ëöŽð¦',_binary '\Ä\ÓÕ•\Ó\èCªh”*\ÍûªQxÀrŒT\Äo{WoŽ\nF\'q','',0,'?'),(_binary '\Ùl;aoò´˜\â¹~ûG\Ö\á','wp-includes/Requests/Exception/HTTP/501.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ü\0\ÌjQc:†1NiD',_binary '“k¥Gå¯²\ä\nÎƒCD#¾6\Èu\Z\ëÖ„EÚ£@K1','',0,'?'),(_binary '\Ùq@‹Vr£¶Òªh','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-payment-method-paypal.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ô\é\Ëgd}!ˆ€ ZsdI\"/',_binary 'ò\0g¶M\Ð}7.\0s\Ì¸¥\ZY[OÑ·¸=À\ãeT‰','',0,'?'),(_binary '\Ù{\í]|:±\Ý\ÝÇ‰\ï÷\Ö','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/stock-filter/frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…*_[ü\Ï\nW+1§wý\Ù',_binary '†ƒ<ƒ>#<…«î·ŠÝ‰ºyE2‚Ëˆ¯[@µnþ','',0,'?'),(_binary '\Ù|#6™7\Õ	½\Õw÷.v\Ê','wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-customer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+\Æ\ß\Å%\í•ßš’\n]d³0',_binary '¹ƒ\Åóvø³e™‡\'üÃ€²—`«•\É\Ð\Ìp·3C[lf','',0,'?'),(_binary 'Ù‚„\Ç)\ï4®g±‰‰0h','wp-content/themes/twentynineteen/js/skip-link-focus-fix.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ø™jªr¦Hù\Ë\Ã\ÞB1£',_binary 'ˆ“Õ™da‘œ1,6˜\Øø•½9\ã%ef;VÀ5+','',0,'?'),(_binary 'Ù†\ÊGó¬óšd\îðÓ‡','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/feedback-prompt/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ß\Ý-\ÚOKð\è!¼}2Ô¸',_binary '6„ð_\ÜÞ¨]\êÅº‰\ä Ÿ–\äŠ~ôx»#!„h§','',0,'?'),(_binary 'Ùˆ\éTÄ–hx~Dt>lŸ','wp-includes/js/dist/compose.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v¼\Þ\Ù^´2Á\Õe*\ìe+ý',_binary '`j”<v(\æÔBa\È42l\Ú\î•D\Îþ\Þ^1ûZù¹wO—','',0,'?'),(_binary 'Ù‹3\"\í3ó;!™Õ£\Î{ö','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½Ý”\É\ê\Â9I7´|«ù',_binary '¿±\Ø\r\0šB´yfõ{§\0¯›¡¦6@4eýtSÌ–\Â','',0,'?'),(_binary 'Ù˜\Ý\"P´Üž÷\Æ,ƒ©\Ø','wp-content/plugins/wordfence/images/icons/ajax24.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K:û„²·õmð™—£P½',_binary 'j*\äeŽó©õdoX¤~§7\Â\ë&€²‚Nü9\É|L•\Ç','',0,'?'),(_binary 'Ùž_d(\Ëd&]\r_”‰”X','wp-content/plugins/woocommerce/src/Internal/Admin/Survey.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÚpW?ifx\Ñ/ñPB\Ë\Ã/',_binary '\Ü~\ã¿\Ò\äåŽƒšµ’¥ñ!}óí±¶¿_>¥¿\ÌM\ê\ß','',0,'?'),(_binary 'Ù¥]]…Õ¬$K«¹\äýE,¼','wp-content/plugins/woocommerce-currency-switcher/img/off40sale-590x60.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YrÀô\rM¼ueÀe\Â',_binary 'Ý½k{\ÌúÁ6P\à	ŒsO¡8Ïœ$°;kI\é»\Ï_\îò\Õ','',0,'?'),(_binary 'Ù±ºµMPr\Ë\Ñh~Œžù','wp-includes/blocks/post-content/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dD\ÉJƒú2¨°=¬i‘',_binary '-Pü“]		6¢?\Ø\ÙrWüßºaV\Òñ‹©\Âí¹—','',0,'?'),(_binary 'Ù²‘‚C‚R³Æ°“R\Ý','wp-content/plugins/woocommerce/vendor/composer/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•]_\åŒ#Dö´\0óƒµ\â',_binary '\Z ŸøÛ’ö%§4~N\Ù~Gh!b\Ø­:w‚˜ÉŒ¿™\'','',0,'?'),(_binary 'Ù³#SZŠ•\Ú\îv¨	}\Ï','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\êf9\ÞñO\Þ\Ì6\Û{l«¶',_binary '…òXÁ>ˆ>2ò½¿‰=½IÌ±F”\Ç»ÒKÅl\Ù\"ž','',0,'?'),(_binary 'Ù¶þè…”•‚RLª	&\íFw','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/single-product/frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\'ú%…ÏÎ´\ÝEŸŒ',_binary '+=e]\ë”gAü\íg¾{úzXh\ìþƒX_sœ–^','',0,'?'),(_binary 'Ù»# ¬*ð\Ññ;îƒº¤','wp-content/plugins/woocommerce-multilingual/templates/multi-currency/currencies-dropdown.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=>\Ãó›µ%ö\Úiicƒ6',_binary '¦öÿe»f­š8\á·Gm\'3KRº\ï+¢E½r¢\ï\Íó\Þ','',0,'?'),(_binary 'Ù»‰h\Ý\r\Êy—i£\×ð\Ú','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Handler/NumberHandler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'é¾ƒsRR¼²\ÍSHÒö_',_binary '‚ž}Yª$½ýN+š™`\r\ã\Û*4TÁ˜±nk?—D¸þ','',0,'?'),(_binary 'Ù¾[œ˜v™J_.½Gð²€','wp-content/themes/twentytwentyone/assets/js/palette-colorpicker.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'I©X˜ñ—\05\Úù\n‡g',_binary 'ü~}\Êð±Û½@Ö–\"Œ¤ž Jf4¤*Wwë¸º','',0,'?'),(_binary '\Ù\Êjþ\â	iÆ‘ò\ÝD¿H','wp-content/plugins/woocommerce/src/Internal/Admin/Onboarding/OnboardingMailchimp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\ÍÒ­L„{Ó’!^i™N',_binary 'ú\Ñ\ë”fFn\ÉfL/\î†m­IœŸ}i­\ïzv\ìŒp÷À”','',0,'?'),(_binary '\ÙÍ€ \ê+.«¿º£uQW+','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-accepted-payment-methods-block/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@\ì€k†9\ÓK¢W\ßótWC',_binary '¹Œk,òq{XÄ»‚\ê”N…7\Z‰PÀ~B5\\°‡qƒ','',0,'?'),(_binary '\Ù\Î\"#\Å0\\\Î®:›Á#0','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '76\ëµ\'\r†Ÿ<#z=\Ò',_binary '‘S\Â~8\ÃÛ\ë\Ô\×qZ¶g•©\Ò\Ú#cÒŸ˜.:oy\É','',0,'?'),(_binary '\Ù\Õ{/¨:p\Ô+€\åÁšj;','wp-content/plugins/woocommerce/assets/js/admin/api-keys.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\0;@\å¬Y\ã‚LšTW\ê',_binary 'ÁŸúD# }Ù¢?\äVoÿB\Ãâ¬†¼×z\Øh\Ú\ï•6','',0,'?'),(_binary '\Ù\Ö3›\ÏI\ê98\\\ÙÖ›\Ì[t','wp-includes/random_compat/random_int.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*¢RX\é•Ç ¯Í¤B\Ðn6',_binary '8ò÷-%¨©òús\ç`NªŠaøL	óL\ÃMóÊ«\Ã)À','',0,'?'),(_binary '\Ù\×BŸE¼&\Ó1l,¹','wp-content/plugins/woocommerce/src/Internal/Admin/Schedulers/MailchimpScheduler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\Õ`-³G\n9Œ˜3',_binary '­*¬a \Ä\nÑ™¥\Ù_ W\Âx\×ò\ívø_@]+&','',0,'?'),(_binary '\Ù\ã¤\Í\Öt?\Éõ˜À\Ézúu','wp-content/themes/flatsome/inc/post-types/post-type-ux-portfolio.php',0,_binary '\ÚP¥€wc.:þWgj\Ì',_binary '\ÚP¥€wc.:þWgj\Ì',_binary 'snµi\ëN\ÎÑ»\ÝRz‰w´ô»%o±É\Ëõ\Ïf=\ê','',0,'?'),(_binary '\Ù\ãºK©E\å\ÐÊ³\Í\Üˆ\Õ','wp-content/themes/flatsome/woocommerce/loop/sale-flash.php',0,_binary 'ö`l¡Ž?r®J¯u«\0\Þ',_binary 'ö`l¡Ž?r®J¯u«\0\Þ',_binary '3/J­~Dš^ùOû‹½v\'ž	\Èzü/R| ¹=Íµ‰','',0,'?'),(_binary '\Ù\ê\Æ\ã`¤³s§‚™ôC\Ð\È?','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-es_ES.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ö7<€›\ÓUTŒ9)LO\Ø',_binary '{-4Ÿðp|A!­ŽbY­\Ä³E\ÑL€\'qÒ¯X†','',0,'?'),(_binary '\Ù\ë¼!}ñ=ö`*„gZ=','wp-admin/network/themes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'sŽ8¦\Ûlv`\à|YYv\Ï\Þ',_binary '\é\ÓF®6E¨¢k\Þ÷!‹y\ä­!\ïh†òN\Ò\Ú\"\í\Éü0 ','',0,'?'),(_binary '\ÙðX–b\éT\Ë\"5\Ò\Ù]','wp-content/themes/flatsome/assets/libs/infinite-scroll.pkgd.min.js',0,_binary '\ï2ž\å6MüB!b\ÈE)ž',_binary '\ï2ž\å6MüB!b\ÈE)ž',_binary '„»òŒ.\ÝÁ»4Œ†&=Bbq\n¦6‰\È9Â«#¶ÔŽ\Îù!','',0,'?'),(_binary '\Ùð‘[SCSþ-×¹\è','wp-content/themes/flatsome/inc/builder/shortcodes/templates/accordion.html',0,_binary '\äò,œ=¶$õvZSžU?\Ð',_binary '\äò,œ=¶$õvZSžU?\Ð',_binary '\'\ëv\Æ„ž=¾\â\nv\Ë`®s‘4¶O\Õ\'\Òs+\ÇXb-','',0,'?'),(_binary '\Ù÷VBÇ¡ñ\è\ZŸB\"\0²\Ç','wp-includes/js/codemirror/esprima.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd_™ \ÛS’ñg«¹Ù›´“',_binary ']ù;¸%Js\à\Õlxîƒ¯\à’£\ÎFqý‡BH\Z\äU8\î¢\í','',0,'?'),(_binary '\Ùø´É˜q\ä±\Æ=÷)','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/active-filters-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd¤ºb\Ïh”\ë/!	\ïf©¿',_binary '\ëc	\Úö\Æ\ËF\ÙK¥ü„d,ÿ~Cf\"­.Cˆh¬u','',0,'?'),(_binary '\Ùþ>\Ï~\ä!ðªg\Åq‹˜','wp-includes/js/tinymce/skins/lightgray/skin.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ…¿\\– B–œ¥&\èpw\Ç',_binary '7>xV&v|Â­«\æUž& Ý·\"Ç¥z9j\ÛF%Ñ½K\Þ\ÞV','',0,'?'),(_binary '\Ú<é—©—¬½\Ñ\'­\íT¿','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/Display.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\ÔÁÿý¸Æ²\Ê3Cû(õ\0',_binary 'dY‡±£,@Ž\Ê“\á°>\'g\èô){”ù}ßŸl‰Jt','',0,'?'),(_binary '\ÚNú2Ÿˆ\Ú_]‚]ô\ßb>','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-webhooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0ð,<û©\ÝÊ†®Åš`…',_binary '} Sn#*~|~T#K?^b\è\rù\Û\ï}µ\\\É|÷\Z„','',0,'?'),(_binary '\Ú±gd®DE¯zŸ\0Nÿ','wp-content/plugins/woocommerce-currency-switcher/views/plugin_options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>@\í\"Kñ]»\ê…l¯u·n',_binary '¤QN3\â5\×gmœSõ!‰§•‘Á\éŸô\É=´¦\Ù','',0,'?'),(_binary '\Ú\ÆBð\è1\ë4\n(œ\Ý-v','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/state-input/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0]² b\Ø>†ºS\Ém',_binary 'Z”•D†¨\ë#?&`I²uAÀ°\ìWO$\ÕS×±hft','',0,'?'),(_binary '\Ú\rd;H¯—\"6&Ì‰\0?*\î','wp-content/plugins/products-compare-for-woocommerce/berocket/includes/custom_post/sortable.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ó8Pùd\0·:\è\ä­8‘v\Ê',_binary '\æöS\Ö5€¯d\êô¿ýIð÷\Ô\ä®\Õ\èW\Õ#3h´\Ù\\°j','',0,'?'),(_binary '\Ú\rÁí±Beª×¯Eó7','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Location.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\áñY}ƒ‰Œ`8v\èý…FJ',_binary 'U¢’ß†(²[ÿråµ³€©g†\Ø\íh\Í\àå¬µ!m9(\"²','',0,'?'),(_binary '\Ú÷‹(c³…¢¯º9\ï\ÄI\Î','wp-content/plugins/woocommerce/src/Admin/API/Reports/Variations/Stats/Segmenter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹œª¬)\ÃÀQc˜úxMz\ë',_binary '€*L»ÿ\ëºYù\Å\\¡\Ô\å}wvün~\ß\Å\ÌlB¶§u','',0,'?'),(_binary '\Ú†wú=Å¢\ÄOú&¹F\Ê','wp-admin/css/colors/midnight/colors.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$hþ\nûŠ*…lQ\Òu–\Ö',_binary 'GfHKš\Ï\ë\Ôü»<M\åRMwÃ±Ð°$’¬\éZ-–o—r','',0,'?'),(_binary '\Ú\Êõ\Æ)ñ\â‚D‡«','wp-includes/block-i18n.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\åó\Þ!’¼¤:D™\É8\æ„',_binary 'ñfý\\t›M&\ë\rû1\É	$u3Ž\áó \Ô\Ù\ç','',0,'?'),(_binary '\Ú\åùÎ±\ÎGôžuE-\í,','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MiaoxingInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ó*HœRA\Ñ&š’h?Àž',_binary 'w\é\n\á@´u€H~sTW†™…=\ëIw@”PnÖ·º','',0,'?'),(_binary '\Ú$\Õ\é\éž\é»\Ã^|´°O\Þ','wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-bookings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Éo}þ:7w]f7ÁÔˆ',_binary '&{É›\ÌöóYˆf._µUòM»¯²\è\èZú´¥ªù','',0,'?'),(_binary '\Ú%->xó–\ÇuÊ¥[{','wp-content/plugins/woocommerce/src/Admin/API/Reports/Orders/Stats/Query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ï¸–-<\ìI\à{0³‘',_binary 'u`’ÿ“´!\Æýƒð\å2\ä>V.¥@\Ö1*\Ó','',0,'?'),(_binary '\Ú\'£\Ýø7\ìb\â\ä~ 6','wp-includes/sodium_compat/src/Core/Base64/Original.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ò£-\ï‚ý\è\ÞÑ‚ðº±',_binary '±9\0zotˆID:\0¹›\ê·\Ég\ä I%\á~Þ¦$o','',0,'?'),(_binary '\Ú\'µ\É\Í¾¦<š–6™\ÉBt','wp-content/plugins/woocommerce/templates/archive-product.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ý9•!÷	_s\ê¨Zi',_binary ' \×N¤¶Ë™\ï\ë\Ùûvf²W‡™\Æ\èZF\ÂP8Gx¥0','',0,'?'),(_binary '\Ú)C·b\êÈ«¯\\³!¨h\Ó\Ë','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-data.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z¢\Z\â”g\ÏÄ¨¯	l¥',_binary '¿)©\äú°»ª%\Õ(}F°ö\í¢¶\Ý\ß \Ö<\éS6À¡0õ','',0,'?'),(_binary '\Ú,\rž\Ê	\Õg\ÎH\Åþ6','wp-content/plugins/wordfence/views/scanner/issue-wfPluginUpgrade.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾\Û\çH\ë±v³ƒÿöþù',_binary 't	NÉ¼!\'´W«÷ô` 1†\Ê1†©1\çöšáŠ¿!\È','',0,'?'),(_binary '\Ú.«!Lþ–µŠ)|lOŽ!','wp-content/plugins/woocommerce/templates/taxonomy-product-tag.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿQoÑ¸óAdù\×@•\à\Þ',_binary ':\Î:¥\èq™y\Ã\Z\Þ\Ä\àÞº·ƒESqQgIš½Ÿ‚:\Ì(‘','',0,'?'),(_binary '\Ú2\àŽ6,Ìž|ke‡L\ns','wp-content/plugins/wordfence/images/2fa1.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/)\Ýh\\ h¨G\æ¯8ü',_binary 'C\Ù%ñ0…z)f ý¶±@\Ît>õŠÉ¶{Tˆ\Ù8·o‹','',0,'?'),(_binary '\Ú8¥J=oNÀÿò\ç','wp-content/themes/flatsome/inc/builder/core/ux-builder.php',0,_binary '9:5\'OuÐ˜Ó•6\éš\0Ì²',_binary '9:5\'OuÐ˜Ó•6\éš\0Ì²',_binary '\×`ò3\ì\ß\Ð\å\ÃjÀŠ8T¶”b¥F<ò¶»\éhuÀ\\¼','',0,'?'),(_binary '\Ú9Xb³Xwº˜\Ï\Ê1 P\â','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/languages/yith-plugin-fw-nl_NL.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^®f\ÆÙ¿4\ÒU\×G7\Ù2~',_binary ')rª\á\ßß ~s_XÖ«\'k\Ñ9X\Æ8©,\â\æðñŒÕ·','',0,'?'),(_binary '\Ú<1Jª öE¶‡@\ã\ÌB','wp-content/plugins/woocommerce/templates/emails/plain/email-downloads.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(÷F:†ˆ±û³[ˆ\ÂWœ',_binary '¢”Ä¢\'J}r\Ðztƒóú÷ù\Üvž\ÐL|\Ù_kWry','',0,'?'),(_binary '\Ú=\ß\ëd`G¦”\ä^.\é”O','wp-content/themes/flatsome/inc/admin/options/header/img/header-wide-nav-gray.svg',0,_binary 'ÿ}\Öv\\0P\Ö\ÆN“\áò…',_binary 'ÿ}\Öv\\0P\Ö\ÆN“\áò…',_binary '\Z:x¢BcTŠ®\\ü¢9“ \ég—,\×Ù‘{cSdµ\È~','',0,'?'),(_binary '\ÚGÍ¼^njŸól£Ç£sn','wp-content/plugins/ti-woocommerce-wishlist/includes/deprecated.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1ñ¡z\n~”xŒ\ä! .·',_binary 'ù\ë\ä\re¨F½V\\«?”Ú³d„f®4\å}™\ËT7','',0,'?'),(_binary '\ÚVŠ\Î\ÛC\ÐÀ“ôdvÛ¦±','wp-includes/blocks/file/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž[\Ï@/ýSû†2D\ìš',_binary '~@m	.3\à‰Q[\ÖJº\à4kƒ-‘Ö¦¢\Ãø·­\à£h','',0,'?'),(_binary '\ÚY‡›<\Ô\Ö\"\ãlô \æEM','wp-content/plugins/woocommerce/legacy/js/frontend/country-select.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×^}\ÐU,õ\Î*\Ê*\ç‡\Ç:\î',_binary '\Û\æ\å¸\ÜÛ¥\Ôq~\ÙA\n÷}#køJ\í\ï\Ç\äß—\î±','',0,'?'),(_binary '\ÚY‰d\Øú\"þ-«\ä','wp-content/plugins/ti-woocommerce-wishlist/integrations/pw-woocommerce-gift-cards.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\íŒ\Ú\ÆU,{‡E\îó\ËH',_binary 'Qvð=úõ.\ê\ÉÊ¦–11£d\Ö*\ÌÁüV\ì±v>Œ³À\Ð','',0,'?'),(_binary '\Ú[^CI\É\0ˆ;}\ê\Ým\×ô','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-customers-v1-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ý³½<`œŠ\0\Ø\æÁ~I™',_binary 'ýñ±œ u4žþ™K_úŒpQõ¥\"L?B·ôV\Ð\'','',0,'?'),(_binary '\Ú`V¥\\Ÿ¾±¸Š\Õª9\Ø','wp-content/themes/twentynineteen/template-parts/content/content-page.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ûÅŸ³…8\Ï\Z–^%Êª0\Ø\è',_binary '	N\ã\ÑÅ¼	¼I6h\éº%^ú?`v\èY\Ñ=›\Æ2º¨','',0,'?'),(_binary '\ÚeO.­+Ê6DÀ;3D','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-contact-information-block/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“\Øu\Ú?¿\Û#\0{÷\ãT\àŒ',_binary '\"\'•\ÛqE+\äh{y\n\Õ7\Íþr¨!µ\Ê 	\èz0\Ä','',0,'?'),(_binary '\Úi.â¹½\Ï\àb0l0QW3X','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-add-to-cart--product-button--product-category-list--product-image--product-price--product-r--a0326d00.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^@ô÷ðýI\í	R \îDš',_binary '^bjf¬v\Ü´ó”ò|0C‚cÿ\\bõ\0—\à\á\Ü\åS','',0,'?'),(_binary '\Úuð¸Kü\Ì>\Í€Ÿ“l','wp-content/themes/flatsome/inc/admin/options/header/options-header-contact.php',0,_binary '^‘îž³¬{\á\î4qª\ê',_binary '^‘îž³¬{\á\î4qª\ê',_binary '­\0vƒ\è©ËŒ#^\éöJu|ªŒtð\Ò\ç€Eñ\È6','',0,'?'),(_binary '\Úu78¾Â¸\äKÔŠkh\î','wp-content/plugins/wordfence/views/scanner/issue-control-show-details.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\étJÖ¶•DÜ’¾+ÿC',_binary '\ë¬ô\"uužgˆI$E¯…®D=\Ðð¿\nºž·Q³‚g-\ìTZ','',0,'?'),(_binary '\ÚvüEŸ„\ëT	´ \\¦\ïN','wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/giropay.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G‘P\á+Ô§Lb§Àò ;0',_binary 'vy¹,–\Z›¶$xt»5ø\Ì\ÂN;\Ð4\Õh $´\Í\äq','',0,'?'),(_binary '\Ú|À#\éÔ°#{•\ÄþŸ\á','wp-admin/js/link.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\n…“w¾hµ®£õ’s[',_binary '—y×ˆ\Íh8\ÛHi*\r!‹\Ù4*”<9g·V\"¶Ušø','',0,'?'),(_binary '\Ú\n4\0ò=c¶óº','wp-content/plugins/woocommerce/src/Admin/API/Reports/Controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±	©¼\Ð*¦S4`\Æj(K…¨',_binary '+\Ï\Ì\Ç0“Œ\ât³·\Ó\ï\Ç#‡	\r!Ñ‰*\Æ\ÐiV\'ƒ','',0,'?'),(_binary 'Ú‰x`\Ù9\íLÅ¥M‘\Ò,L','wp-includes/css/dist/block-editor/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨\Ñz‡y\âDû÷Á\Z„n\×',_binary '\ÏG1Ü\î8#Hþ”/\'E{ÇšU|IrRW\Ä9Hn\åOa','',0,'?'),(_binary 'ÚŠ\êýt\å¦\åù½4:\Þ#v»','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/google-analytics/constants.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ã ±þ8Äƒ^ß¾/1N\ï',_binary 'Ti‹»ö0\Ì6ô\Ç\ï	\ï<$Yi»HõQ‰\Ø\Å_+ \ëS','',0,'?'),(_binary 'Ú#ò ]t†´=x|•Õ§','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-express-payment-block/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\Ëa¯’\ÑPÜ«Hcñ¹\Æc',_binary 'Ÿ}õ²VüZ&ž:©¡@$!?¡°®\ïÈ¥(0p\éc«„š','',0,'?'),(_binary 'ÚOWtiŠ±p\Ì«ˆ\Ü','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/title/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\r\Í\Þ\Õ\Ý6™ZSµ\â2',_binary '<\î,&˜\àŠ†\é¶	÷d\Ï&Sý#J¹üŽh?o\ÓA85','',0,'?'),(_binary 'Ú<Œ#&¡W¾F÷L\ís','wp-content/plugins/woocommerce-multilingual/templates/currency-switchers/legacy-dropdown-click/script.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Š›Eø>¹B>«\'‚ŽS¶',_binary '\ß\0OÈ­\ÄA\ìwMh¦Â\ç®	ú…²\Ê\Ø\Å\í\Öe: 2','',0,'?'),(_binary 'Ú”.xw5Ud(–©úT©+','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/sidebars.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/žeJ<2É˜{\Ë\æh\Ü',_binary '§§TJ¥œÅ¥bNûözò¦2ˆ\Æ<JŠAl0u¥Ÿ\"e\Ú]ˆ','',0,'?'),(_binary 'Ú”\Ê\ïxoxÂŸ¢ Ž¡','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-colorpicker.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡\Ç¸h¥s€‰²\Å\å†9',_binary '+‘,«©Zqx‰Àb®\Ë6A\ÔdÕ»z\Ì\á“€\\/}~ÿ','',0,'?'),(_binary 'Ú–\'\ßuQ”³ëˆ¯\Ô\î','wp-content/themes/flatsome/assets/js/woocommerce.asset.php',0,_binary '€†Ö¤Ü™t€e\Î\Ü\éu—\Ã',_binary '€†Ö¤Ü™t€e\Î\Ü\éu—\Ã',_binary '‘¹µn\Ù\äv…\ï*æ†²U8.%ƒB±\Ü@Döð','',0,'?'),(_binary 'Úš§\éÞ´¬¤˜\ë\Ðu_\Þ','wp-includes/blocks/post-template/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷\r™üÙ¾ID\Å\Ü::œ',_binary 'e°z\Ñ{ì´ˆ\Û5³\ì\ÉB³Á25øw¹Ž6\ÝÀu\â‹=','',0,'?'),(_binary 'Ú›\\>\Þ\Û\Z\n	A?Z\à','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®\â0¡\Ýv¿-ª­T8',_binary 'i;\ÔøHÊ³=wR\çmö‡:þ\ßó@¨‡¢6C|Q	,‡','',0,'?'),(_binary 'Ú«üXÙ”[\È\àF6±\ÊÜ½','wp-content/themes/flatsome/inc/admin/kirki/modules/webfonts/class-kirki-fonts-google.php',0,_binary 'c’ö’\ÊA†\Ëhþ¾”,’',_binary 'c’ö’\ÊA†\Ëhþ¾”,’',_binary '¥žð?F†4­[\Î\\\'RrQ\ì‰\Â3Z“\â¾\îò‘','',0,'?'),(_binary 'Ú¬´‡ú\éü¦\è\Ôˆ\rMY\ï','wp-content/plugins/woocommerce/vendor/symfony/polyfill-php80/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ®5?\ZK-DtAŽ\ê\Ú',_binary '£Á\î+*©$\"Ñž5˜fð\r\ÍX\Ñlê±¬Ið(\în','',0,'?'),(_binary 'Ú­¼\ÊÓ‹\Ç¸\Í\'ûp','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-product-tags-v1-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*Dª\Äø}m+£\åBpƒCˆ¦',_binary '‘D7\rž=ž]\È\í[·\ÖŸŽ®Ì»Â“\"\ì‡(e‚©&','',0,'?'),(_binary 'Ú®¹@S\0~$\ÛO','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-es_ES.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$P¶¦\ÖT\ËvÏ¬£\Z\r­',_binary 'K‹\Þ@l\nzU\Ô\Ýq\"\ì\Â\àðžt(\ÔaÙ‘\Ï\Ù\Û','',0,'?'),(_binary 'Ú®‡×µP=!\Ú3jjgð³','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/Transformers/Count.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Èce\ì\à`F]\ÜÅ Yö',_binary 'Ujúñö¹– ”\ä ÷…SG\Ây—\ÚF\ì‚\ï&|h,•.\Ë','',0,'?'),(_binary 'Ú°XÏ¨]I\Õsœ_Z½}¥\É','wp-content/themes/twentytwenty/assets/js/color-calculations.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=~`ž1ÖŒÛ¹‰\ÅDK²',_binary 'Ì UŠ\ä¦÷e\è­Cb\è`aÞ‰b¹¦õz/È“\ÂU','',0,'?'),(_binary 'Ú°ü	+z+{+XK{(‰','wp-content/plugins/products-compare-for-woocommerce/style_templates/nice-blue/nice-blue.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª‡H¬\Âq`ô¨@`‘r\×',_binary 'ˆ@\ßüy¨CF©ˆ•\ïC>Å’[dj œAZcÿ,S\áŠm','',0,'?'),(_binary 'Ú²\Ú\Åù§ÿ‰EAU¶\\H\Þ','wp-content/plugins/yith-woocommerce-compare/assets/css/widget.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2ú¹\Éø2i?cUðý\ï¥\Ø',_binary '\Ê*>\Üb\í\Ë\Ý9‹ð-^axWpƒ2t?‡¸\àV~/6','',0,'?'),(_binary 'Ú¾\ÃÎŠ\ãzgv–\ÆÌ›6','wp-content/plugins/woocommerce/src/Admin/API/Themes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²Œ\ÏÖ Ø‹€—üUÑ“3',_binary 'g\'\ì\ï,	[\Î\\§\ÂM\Ý;\Ï<=t5¾Eg9‡bo5\í\è†n»','',0,'?'),(_binary '\ÚÀQ\nº|yeGjBQC†','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1|2\Ù \Ý\å^\ry“\ï&\Âa4',_binary '\ç^±õ=dig¦`ø\ßbš\å\Ì\Öúù2\ï¤+nkO]ý','',0,'?'),(_binary '\ÚÂŠ#6øK%#f\r\È','wp-includes/js/dist/vendor/wp-polyfill-element-closest.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰¤\æH0\Îc;`ñ\äªW&',_binary '2A]\êÚ›\\e‰ŠWß¦kZösÿ Àc¯<\Ê`÷d)\æ','',0,'?'),(_binary '\Ú\ÊW\ÄS÷:\ã†(\Û=c¯\Ü','wp-content/themes/twentynineteen/fonts/NonBreakingSpaceOverride.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Gß”\ì\ï—Aœ\Ç\ç€Bü\\¨',_binary '\ã‹`GS\"Åœ(G¼u\Z	\Âs‘E\È\æµÿ‘ð¨P|Œ\ã','',0,'?'),(_binary '\Ú\Ï7:—\ê9Z[\Ør/j','wp-content/plugins/woocommerce-currency-switcher/views/widgets/converter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ\ë²	\éˆ\í\ÒK\ï',_binary 'Ë\"•š–-ù!\n3N\Ú{÷’ ©3>\Òc7\'\Ï','',0,'?'),(_binary '\ÚÞœ\Â\Èj\Òq*©\ì\ãt','wp-content/plugins/woocommerce/packages/woocommerce-blocks/woocommerce-gutenberg-products-block.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·k‚-\rCr­\ÒAº\í¢',_binary ' A¤ñI-¾N\ç\Ùí•¬”‹*À·õˆö€\ÇA0\×d\Õ>','',0,'?'),(_binary '\ÚÞ·ñ\ÏŒwŒ\×ùqÿ\áy','wp-content/plugins/woocommerce/includes/log-handlers/class-wc-log-handler-db.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥\æK‰wp«¶ˆ™(­\ØZ%',_binary '”}\r\È\àÁ#\Ý~–\í9Ì«Œ@OOD\ÆÄ€\é^\ã','',0,'?'),(_binary '\Ú\ãÌ­\n5\ïB…ó\î£\ß+\Õl','wp-includes/blocks/gallery/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”¨ª\à\Ü(‰\Í\Ò[\ÌôÇ‚',_binary '­$®\Ì\×DG m\å\ì\ï«\Å7/1Vý@ž<¦-','',0,'?'),(_binary '\Ú\ëJ«B&9:V\ÃF[À','wp-includes/js/dist/media-utils.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™;œ\r\"ŒcYVf»š\\ü©',_binary '½·ú²ò{\å!£He-Nœ¤6ºÆ¾\Ï÷)\'qWü\Û','',0,'?'),(_binary '\Ú\ë¡pNe9­OˆiEX)!','wp-content/themes/twentytwentytwo/inc/patterns/general-video-trailer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\Ø\â†,MÙ£<\Ú#e_1B',_binary '‰\ï@\ÏC\à]^¯‚h\Ç\Þ\æ¿\É\Üb6¨•LŽ™ªK','',0,'?'),(_binary '\Úô“ðC .yj\0o\ì*úf¹','wp-content/plugins/wordfence/views/scanner/option-scan-signatures.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÁL\Z3`f§ŠÑ–{_z©q',_binary ' .IET°\ÚØ£µ«J#\ÕJðUk\Ã7úhy›\Ò\\û0ˆ','',0,'?'),(_binary '\Úûi€}\Þ,Ò‹|€¾\è','wp-content/plugins/ti-woocommerce-wishlist/assets/css/public.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ]\Ü\'Tr_·ñ,b3õ',_binary '”µ\ä\ÙÂ’¬4\Ô\àò™i†€u\êui¶¯FÀ@Ÿ˜G','',0,'?'),(_binary '\Úý!§(t”ò‰<Ô¹','wp-includes/js/heartbeat.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R»[¾f‚»\à÷:ò\å',_binary 'c»\îV\â\èg-$6\ê[\"ü3iò<›~Œw¼\ÉÀ\"\ìN','',0,'?'),(_binary '\Úý¢6g¿[Ÿ\Ò_Møô¯','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#[““1ŸE=\è\'?\ç\ÏÂ½',_binary '±n=ü}J\ÇqYð¬9)f–M$&¶R!¶w\î','',0,'?'),(_binary '\Úÿû…Šk ¶m(ñ{2','wp-content/themes/flatsome/inc/builder/shortcodes/templates/col_grid.html',0,_binary 'Â’²Âr\Æ\Ý\Ö¸Ë„üx',_binary 'Â’²Âr\Æ\Ý\Ö¸Ë„üx',_binary 'õ\ß!÷yw\è\Ì1õÄ› f!\n!r—X\Çw´s\ÅUa±','',0,'?'),(_binary '\Û\ãŽ_\r¬JL\è#®@B\Ì\Ö','wp-admin/css/colors/midnight/colors.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼T|\Ê/k4\î0›\áV\nõž',_binary 'uŒT\ÅÒ»:\í\ÙfT ya\Ðy\r1a\Ù;Ü†m2ôm','',0,'?'),(_binary '\ÛÌ’».¸Y\èøLÍ”S','wp-content/plugins/yith-woocommerce-wishlist/includes/class-yith-wcwl-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ur0\à)B¤²´¶_‚ñ‚',_binary '\Üð3ö\Zº\Ýuý!\Ð`„£b€/´` ñ\áW\'±\"bU¼Z','',0,'?'),(_binary '\Û¶R \Ì\ÔÀ„U{ž(','wp-content/plugins/woocommerce/templates/emails/customer-on-hold-order.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Š¿L\ÄK^Ÿm\\``\Øm5·',_binary '®+\'»€J‰þ»>7X3õ\Ô<~€ð¦X\Ô\Ä‚\Ôøµ\Ì','',0,'?'),(_binary '\Û{šQëž±\ÆXY\ßv”Á','wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/AutoloadGenerator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't•\Z·v¬gc1\r‚&iò^µ',_binary 'rcª´‚µö\Éx?B}¹ÿnŠ‹\ä\É4þ€A•šz›™','',0,'?'),(_binary '\Û \æI\Ù_X²\Óš¼¨?','wp-admin/js/gallery.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÆXJ7±\Íjp÷Š8 n³T',_binary '+:\â\êUÀ.õ\é”õvfKBUL\àñ\Ù+sô\×h[','',0,'?'),(_binary '\Û!È£\Ä\ÑFºeð‹\×ú\Ò','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/notices/Recommendation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pÏk]\Â\ê	³}“0•',_binary '«\ZØ¤¤bƒQ&¼TX2{2çŽ¡=É(\ãöˆZHO\ä\Ýý','',0,'?'),(_binary '\Û4Vús#À,\ïûQø\î','wp-includes/blocks/query-pagination/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Í\á›[hž\æH\æ©õ 30$',_binary 'F\î£‰\0%›\Í\ê~§û6E\\[\èvs\Ï\ítp\ãÃScW','',0,'?'),(_binary '\Û46\ï1\Âm\Î\ÍùYR','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­nH\0÷u„}’ `¤\èó\Ï',_binary '—–ŒR\Â÷&»XöŽd\Þ[—š4¸š9Ž“V\ì·I','',0,'?'),(_binary '\Û5¶*\Ñn4\ÍcÁ\î:¬','wp-content/plugins/products-compare-for-woocommerce/berocket/includes/settings_fields.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|G$…\r[Z®£ù\ÇMtK',_binary '¦Xöö\08e\å\åµbŠ­¼\çVž!(¨¯z‘UºE:J\è','',0,'?'),(_binary '\Û<”ú¥\0vY¡>ma','wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-chat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-)“bV\Öü¥b\ÝÁ–”†',_binary 'i\Z%\ç2À‚\Èl\Ú\Î\à@uFi\Ë\Å=´Š_\0P—Õ°·','',0,'?'),(_binary '\Û<›û\Öf¨D\\±C\Ò×¶','wp-content/themes/flatsome/inc/admin/kirki/modules/css-vars/script.js',0,_binary '\é­mªN§ÿrL\ÑÊ¹\ãK\Õ',_binary '\é­mªN§ÿrL\ÑÊ¹\ãK\Õ',_binary 'ñ®¨2‚0N\ë@›«\îT\"8C§\à\ÏQ\Ø:g¶©4¥?œ-\ç','',0,'?'),(_binary '\ÛD<°/pbœû{¥_öÀ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/FeaturedCategory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯\Ú÷90ývø~…PS²”\ê',_binary '\'Õ”\ÃUWq¿ÿ}ñt¢,#3+\Í]}\ËÁ.²^,ô\n','',0,'?'),(_binary '\ÛVú»\Ö\nOƒp²\Æ+É¤','wp-content/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Metadata.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yÀ¸.ó<®tx³V\Ô',_binary '<\äG_\Û\0{\è[9|\Äs 0@\ã}Ÿ‹f\Î\ÄE¡Z©ž','',0,'?'),(_binary '\Û]\È=\"\ã«v8öAV{','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/hi.js',0,_binary ')\Í\ÈÁ‚\æ\ç\Ýu\æ\"\È÷ø“\å',_binary ')\Í\ÈÁ‚\æ\ç\Ýu\æ\"\È÷ø“\å',_binary '	Ò¤\ß\Þq‹³‘±/¥Ž?§­\ïj”Æ›…\'','',0,'?'),(_binary '\ÛcPƒf$ÿ÷Œ\\U£3;','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/attribute-filter/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿŽú8\æÄ€Ç\ã\\ƒ_&',_binary '›\ÙûBw\Î\ìY#x\æ;›e5›\é\Íò¶\Þv\'û‡ob\Û','',0,'?'),(_binary '\Ûg\áË‘\0|—\Õ7D½®º\ìd','wp-content/plugins/woocommerce/assets/images/select2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-E1ƒ3\ÄwFûq\ì',_binary 'r°O\Ñ	C_9³Ú ¢MÏ£4Tr‹w^¶BŠLü#¬—','',0,'?'),(_binary '\Ûi{›£ù\n	`\Ï~\ï&','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-note-block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^‘v|ôx›V~¾-™Šx',_binary '\Äoa”µo\ê&Ñ \'LPª™\å\nþ¼V3\æfÇ¸rˆ','',0,'?'),(_binary '\Ûv6^A\èó€A/],6\'y:','wp-admin/css/site-health.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N±\á\0deqi2*urEþ',_binary 'q-<z¾BGN‹\ÊBE¹HZ„iÖª\n\ÍOQÞ›u\áa±|Kÿ','',0,'?'),(_binary 'Û€Š>-R]:¦‘wD¿&','wp-content/plugins/woocommerce/legacy/js/frontend/tokenization-form.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ì¿Ç…t\ë60±[¦¦9¥\'…',_binary '}wpÿ\îƒ{¥7û3\æcY\éˆù¦\å\Ð@S‚\á\Ø\à\ËI','',0,'?'),(_binary 'Û\n™#\ÌDUx\ã°O•¨&\ã','wp-content/themes/flatsome/inc/shortcodes/ux_payment_icons.php',0,_binary 'xh\ã.Nù’º¢\Ï¸',_binary 'xh\ã.Nù’º¢\Ï¸',_binary '®*E7Kf¹5Jigf¼-\ZGR9h%\Ã\ì\'\Ï÷Þ–','',0,'?'),(_binary 'Û…D\êù¨­g¤\æÇƒýdC','wp-content/themes/flatsome/inc/shortcodes/commons/video.php',0,_binary ':$†\âº\Ä\ê™^\rÿ®±ü‰',_binary ':$†\âº\Ä\ê™^\rÿ®±ü‰',_binary '\Ø\Îþ\ÃI,º(’\ëƒ^a÷/¦j¦Êµö(œ\éÀ¤f«','',0,'?'),(_binary 'Û†jº\Òü[d†\Ë<\Ê\ÈT£','wp-content/plugins/woocommerce/includes/data-stores/class-wc-customer-data-store.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't,J?žø\äº\ØöœV¶\Éó',_binary 'xš\0œ\r‹\ÛAoÀ¥ôa1ô\Z\Ó\"3\ïÜ†>Q\Úð ','',0,'?'),(_binary 'Û‹{S0\0\0=š1_Ø¦\rÀ5','wp-includes/js/dist/priority-queue.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Þ®P±\\\é\Är\äkŸ†£H',_binary '½\"›\Æ?\ç\ÛG^éšŽt¸÷ˆù¥”\'º‘\Ú\Ým´C\Í','',0,'?'),(_binary 'Û•\r\ïo”.®­³g@M','wp-content/plugins/woocommerce/includes/data-stores/class-wc-data-store-wp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\ä\é/\ÞXœ\Í+L\Ûl\Í\Üô',_binary '´\Ûpu™¯Yo\ÕÂ‘œ=PgT?÷Lÿ»¥‰¾ecŠ¼[','',0,'?'),(_binary 'ÛðnD\Ê\Ó	fÁ‚|RLÙ‰','wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-setting-site-option.php',0,_binary '{¿Ÿïƒ \ìLm·5~²\ï',_binary '{¿Ÿïƒ \ìLm·5~²\ï',_binary '‡Ò…¹4\éÉ©=JJS\å\ëÿv\ê¤K&\á\ã’w•¼þ','',0,'?'),(_binary 'Û–JBw…C˜¡|Môv','wp-content/plugins/wordfence/lib/Diff.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥5VzY³]ª#yR•\ÛJÝ®',_binary 'YÁMÁ\"z)tÏ–©‚\Ö*c‰wL\0¢‚ý‘´1w$dƒóû','',0,'?'),(_binary 'Û™È‚\Ô\'\Ñ.·œgJ\\e','wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-blog-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4c¹W,\Äljmž¾ÏŸM',_binary 'jI“W+{FÐ¡±Œ\ÚK¹Ÿ\Î\rðAg•	º¼¢(Xƒ8','',0,'?'),(_binary 'Û \éo%Ki•\È>¥†€øž','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/cart/use-store-cart-item-quantity.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹€\ÚFgƒ§<E0\ÄT¶r',_binary 'ZG\Æ,‹ùÿ\0†\Ýf\ê*\0³Ã™\á\æØ¶\Ú\ÓÐ‘–7 ','',0,'?'),(_binary 'Û 5®ƒDê˜Ž\ÎËµ>mD¦','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-images.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.\æ‘4™•<üq\È$®\ç',_binary '\ë¸\nò›6P©Ò±#E·	G\Z·\"\èö+H$ÖŠ\àùƒrE','',0,'?'),(_binary 'Ûª8	Á?ª\ÔöªŽZ\rb','wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-color.php',0,_binary '>ŽR\\\Ï\Ý%\æ\0X^\Ë\Ðþ\ê',_binary '>ŽR\\\Ï\Ý%\æ\0X^\Ë\Ðþ\ê',_binary 'Y5q/\å\äŒH­\ÅQ2øý6UHV¡¾b\ÐMÐ—6T°©ÿ','',0,'?'),(_binary 'Ûª¿·cš\ÔropQ\àub\æõ','wp-content/plugins/yith-woocommerce-wishlist/includes/class-yith-wcwl.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<î‰™=z]<Oðd~\Ó',_binary '\ÝG;ó¾Š­¨\Ñ)Z\ÎòRñ\Ó@\í8r\Zˆj','',0,'?'),(_binary 'Ûªò\ê÷	.\æÕ¸\ß\\¾ò¯','wp-includes/js/tinymce/skins/wordpress/wp-content.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'üƒÁƒ`‘\ÆUn\0\rˆ´',_binary '>¥ \ä‡@\Æ:so«\î\åúX\é=¹°Kd˜\Îkuˆ{Š','',0,'?'),(_binary 'Û¸\ï\ì)t4ó¿~6:d','wp-content/plugins/nextend-facebook-connect/admin/templates/test-connection.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿ\ÛU•4%\î\Ì1£P\ãK÷',_binary '­\á\âÖˆÌ°QšÂ¨‚“^ø,Ž•›FÖ­\"llQ¾&‰¦','',0,'?'),(_binary '\Û\Èrš¼ÁµØ=\ÔÔ’\é','wp-includes/images/rss.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥°[¿(ò”°.ý”*NZ¸',_binary 'jþ(-9¿§_\Ç\ïE-#\êwe\Æ$\Ø]oÿ01©\Ïu','',0,'?'),(_binary '\ÛÉ¯\Þh‡X€²šœ—©','wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/core/eventdispatcher.js',0,_binary 'õ–Jt\'k.\ìvú†\Ø5',_binary 'õ–Jt\'k.\ìvú†\Ø5',_binary 'Þ®ˆœ˜ü\Ï:*\Óýmw. \ÆRšxH¶½vM‰À˜\Ð','',0,'?'),(_binary '\ÛÐ¹\ÓÀ\ç\Ý\\ý”Žâ™ž','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductNew.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿c$‹\Ñd\Ésô\Ç;<„’',_binary ')IJC\í\"º“L}\ÜV\Ò:Ù©‰‹\æKñjð˜.\äª\Å*ðÓ¼','',0,'?'),(_binary '\ÛÚ¨\Ût·c	\ÜËµ\í:G¶','wp-content/themes/twentytwenty/template-parts/content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\"\\\Ïk·T\"\'\ê\ìDB &',_binary 'o§§—]\Û\íÍ€“h\"\îø\Åò\äxd·\æÁ\×HM\\¥j¢','',0,'?'),(_binary '\Û\ß\np¡ñ\ÓGnu:¢¸\Ó','wp-includes/js/colorpicker.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ð\ÊV gô„²¶ùŸ-¯',_binary '…V‘w\ä\ç%©%\È: 3CQ#+g\Öô›	•–e¹}\×','',0,'?'),(_binary '\Û\èKÒ—Âž®ûB\ã(','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/WinterInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':@\áGxŸª\Ñs£V\é=',_binary '­\Í|¼¹û°\Ø\ÍÔ’?L¶e¢„ŸœGU»\rp˜\âs','',0,'?'),(_binary '\Û\î\ÂrŒx\Ü\á\ï\Ñ\Ì7Œ','wp-content/plugins/woocommerce/includes/class-wc-emails.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q¹m\èJ+Tüß£j\êD‹\Í',_binary '\Óô,%]Œ5\êk¦P0\ßô±\Ùf|pµGL$\Â\Ý#±¸§','',0,'?'),(_binary '\Ûò\Þ]\å]‘„,R\0oö','wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/amex.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›„Ëªþo\Ís¬W{r«Ú¡',_binary '5Ô˜\âò¬\å\ì\È\Ç\Ñ\ÔQ v±\È\ÎP\è´\Í<ò[#A\îú','',0,'?'),(_binary '\Ûù«³o\Ì]x\ÊÙ˜¥™ÀF','wp-content/plugins/woocommerce/templates/single-product/product-image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ðg”Z?­“.f\\}¤v 9I',_binary '¯¥µx\â:ô:œ1ÒŸ\äS\ÆÃ¼\ß\Ûz)<£\Ô9 \è','',0,'?'),(_binary '\Üö§1jÞ¥“DL¯Zµ0±','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/utils/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\çžñS$d\\w‚$P°³Z',_binary 'š‰Êœ&\ÓzNa\ÅsHlº\åÈŠsH\å\"“ƒ@\Zôx(','',0,'?'),(_binary '\ÜÝ¢w€|\ä[Ÿš\Ú\\&{','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/images/ui-icons_cd0a0a_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p‚~„¬\èþ\èó%™.',_binary 'DÇ‘”\àÀX†TRœ;\nŠ·\Èß£”_ÀGùPù%ÿG¸1¤','',0,'?'),(_binary '\ÜF\èª†\ruŽD¼b7','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-segmented.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ë\Üm—E»†\î}8×Ÿb\×,',_binary 'dh\î÷\ínCø\æ\æ[º$\ê\ÉôP7xH\"8úi\Z*\ã‚','',0,'?'),(_binary '\ÜÈ¼‘ØŸ\Ü\'\r`ùô\Ê\Î','wp-includes/feed-rdf.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xG³7\ë%”ž \0b\Ðø\ìþ\É',_binary 'p=m=G\Ülò”h‚nh\ÒÁ¸V\Ó\å]\Ó-\Óû+1\Êa','',0,'?'),(_binary '\Üº‹Ž¼\Æ,ZŠì‚¦','wp-content/themes/twentytwentytwo/templates/single.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹óNUÜ¢–m5¼ª# ¨',_binary '\0h\Ýkø›\ÚQv\Û6PŸÿr\"—¡:RF.\èm$õÏ­I','',0,'?'),(_binary '\ÜÖ—\ä\Ã0cý­¿j6‡¼','wp-content/plugins/woocommerce/templates/checkout/review-order.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Å+V\ïõ¦ñÖ¦\Ò_»',_binary '\íô{€yÀ¤\ìi2G¹\Èp¹\Ö ô\n\È\Ë\Ö}¶­;\0v\Æ','',0,'?'),(_binary '\Ü$\î\áŸn\Âø©†‹;AÞ…','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/class-latest-autoloader-guard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\çŠ~B½Ô²¢¥>\Çzœ®\Ó',_binary '&`¹_`ÿ®\Ì\á\ê9\ÙTTkNy\Þÿ5z`^—i¥9oŽ','',0,'?'),(_binary '\Ü/sxý\"\Æ\ç\Âqe¤¯','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'üñ\×:\Ø8¡²Ù·\ÄIø¢',_binary '\ê\0\Ä\î±x\Zaª‡\ë&*­U<Æ‹¦]\é\ÊyÜ»','',0,'?'),(_binary '\Ü2Gý?¦_\æü\\\è\Æú-B','wp-includes/canonical.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à\ÌGœŠo<´\á—µÝý',_binary '€ž¸¯1\r\íeÉ“†¯…»\è·\Ë\ßYå®’^zÕ’=³F\Ø1','',0,'?'),(_binary '\Ü7\Ê40\à™\ä\Ç!Go \å','wp-content/themes/twentynineteen/sass/elements/_elements.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•¾†|\î„¾,£eh\0\r',_binary '\ß\nŽÆ¡\ëƒJ¦òxY#$m>ŸÛÕµ?¼U\"$ñ £lz','',0,'?'),(_binary '\Ü;¾A¿\ÍPÓZž\ày¯­À','wp-content/plugins/woocommerce/assets/js/frontend/address-i18n.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'žQ÷ó6vÀ©R\Õvôd',_binary '±Ùži„¥\ë\áú\Úû^Í¡‘¬”	Iõ\Ë`¶\ã=','',0,'?'),(_binary '\Ü>Ú¨\rò;ó,žlY5¨o','wp-content/plugins/woocommerce/includes/class-wc-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³/M’¢~±Ÿ]Šø\Öl',_binary '\ì\è\í\'[}Ô¼‰YƒB„\"]¹y”HÙ¢õˆú:u\î\0\Ý','',0,'?'),(_binary '\Ü@±÷¿I,²\×kwU%lƒ','wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-nl_NL.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ü—\Ó`‘œB	ÚŠ\Â<e',_binary 's]Ñ¶ƒþ‡+\æ’0\Z_3…„\Þvye{\æ\Ãz}','',0,'?'),(_binary '\Ü\\“+\ë!¯K–3­\"S#§g','wp-content/themes/flatsome/woocommerce/archive-product.php',0,_binary 'ÅŒ?ŸGÃ®\à¡ÀNbðþ',_binary 'ÅŒ?ŸGÃ®\à¡ÀNbðþ',_binary '\Ô\ê\0$\0\\P\Â\Ðz\0\ã¨Sigx˜\éƒ4ü\ëjl%Ï²ŸÉ­','',0,'?'),(_binary '\Üe|\Ü\ì\Ú‡\é3Aªµ','wp-content/plugins/woocommerce-multilingual/classes/Rest/Wrapper/Orders/Prices.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ü\Ò /\Æ\ÜVŽ\î¥UYù\å',_binary 'Šø4‘tf\nh2\ÉU‰$}ju¥-¹Þ°œø\Å’\r#÷¿õ','',0,'?'),(_binary '\Ü}» +\Ù\ÐÁ\Í+)\Æ\Æ\â','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/payment-method-extensions/payment-methods/paypal/constants.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¢õb¿|\0­ŸÝV@hø˜',_binary '˜\ÝAl\Z¤\Þs,¦‚\â\ë\ã\ã)“³¬q”·²@l³','',0,'?'),(_binary 'Üˆ…~¼Ò±8\Ù\Þ\ÅwQa','wp-content/themes/flatsome/assets/js/admin/admin-menu.js',0,_binary 'c—D–fœs-]P¤vFd',_binary 'c—D–fœs-]P¤vFd',_binary 'œ•®ýœGH¦\Éñ\Zxm5y,wkŸd93p\Øi[','',0,'?'),(_binary 'ÜŒYÊø¸_Ý’\ãwAŽ','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-webhooks-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-e¥.\rU%\'Þ¾\×bc`®_',_binary '»\Î\æ\Ü\äüŽ\Ò\É\Å.`û¯1\Ú)ˆõ©­Œ´Cõ\â\\×¸*Äž','',0,'?'),(_binary 'Ü¨³Fz’\Ý\\”€õX7m','wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-setup-rtl.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼­Bµi\Ã×«(/‡	',_binary '7^Œ°Kzýl—ù	¨0:\Ùÿ\ì\Å\ã¨?SQ\ä','',0,'?'),(_binary 'Ü\ï\íO’\È\æü\í\à„\n','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-sv_SE.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Âšý¼\Ýø2\âš|Ï£',_binary '\ß¾²[fP\Å\â;“\Æ\Ôö_C29\Æþ’-\å\n‘\Þ\ê	Ô','',0,'?'),(_binary 'Ü‘K\âÝ“\à¥\É\Ð%eP¾^U','wp-content/plugins/wordfence/views/scanner/issue-checkGSB.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g³}\Ùhšk9ñyb©(W',_binary '¥ú\Ù\ZD“üQ\à^‹ý\\¡–£\ì9›£;\Û7v¢\çF\Ë','',0,'?'),(_binary 'Ü‘\è´\å\ÒZ¸h!Z÷\0\æ','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-emails.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UÀd‘\0ûz\nX£,\í\Z³',_binary '\àD–\Ý\É73)\ÛJ»#©#¥¬¦\ëª\ÓÀKN_E','',0,'?'),(_binary 'ÜžW\×\×\Ô3\Î}	-\\eô','wp-content/themes/flatsome/inc/builder/shortcodes.php',0,_binary 'ª@+\ÞÀ¤\nol\ì›Wú',_binary 'ª@+\ÞÀ¤\nol\ì›Wú',_binary 'ˆ²\È\Û}Fñ:z \Ã\0 ±‘7\×\ë¯G”D8)<ð}\ÖE','',0,'?'),(_binary 'ÜŸ\ÖWª°˜\'«~PŸ\Ð\ì3','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-plugin-subpanel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Øí©Dþ¿f£A',_binary '\r\ç‹z—©Ü°\åó°Ùÿt·\í“[jß«šP¸T¿.','',0,'?'),(_binary 'Ü¡°>)²[÷¾9]›k','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-fee/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®‹\É!À€…¶_€ÿ ž…',_binary 'f^d\rõñc9¯´ùµ\Û+«br[\â.ùS50\ß\Ñ$\Í','',0,'?'),(_binary 'ÜªInZ\ßB98Nó±d','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ý×\ì\Ò<\ÊÀ…¡fAÏ§',_binary 'S¤†\á\rÍ˜\Ði¥—\Ë53\énM\Ë&c£ö÷ý\àT£:%','',0,'?'),(_binary 'Ü¶O\ä;hTI¥œ™\Ò\Ø','wp-content/plugins/woocommerce/assets/images/icons/edit.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œ\É\âfje³‹\Üxw\ÅtU',_binary ' A.|wÝ™Û†ßœþ4UBµv>Ž„÷*\Z#Ý€','',0,'?'),(_binary '\Ü\Æü\Õ@\"ôªf\í¸\Ò%g','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ß^ûq÷{û3\\\Ýg€',_binary 'NÓ®Nó˜Š\ÇAW¨uh‚ª#³\Ò\"8)\Õ\ëeM1\Â6','',0,'?'),(_binary '\Ü\Ì\ä.\ÜU\Û	ý¯Y\ä\ä=','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/byte_safe_strings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾h„Á³`‰·ÁœV“Af',_binary '<‰\\žGò\Ì;1#½Àk©L´—Ã \Ãƒ(Öƒ','',0,'?'),(_binary '\Ü\ÎTÐ¾ÀR§Ÿ²\'\ï´{','wp-content/plugins/wordfence/lib/wfPersistenceController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ø%\ë\âkyŠži\ÕMO*',_binary 'ò¢\ïÿ«\ì\ÏX(¾30\r\n\å\ï\nPEžÌ „› Ž9\àöª\È','',0,'?'),(_binary '\Ü\Ñ[HpC­‰Df\ì{›\é','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/shared/quantity-input.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SA×ºR}1KEpœ«\Õ',_binary '\ÒN’(\Ü\ï.L—9\é”\è†\Ôpœ$@\Ð\æt$ý\Ôwò\ïûd','',0,'?'),(_binary '\Ü\Õ&LÒ¿wW¥Tn¯\n','wp-content/plugins/woocommerce/assets/js/frontend/password-strength-meter.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A°+x.h–\r…\íV\ïU',_binary 'F©\ïLÁüÑ‡eCù2J¦(2£.qžpU\Éeõü\ïÒ¸\ä','',0,'?'),(_binary '\Ü\Ú”ñV[\ìÄ½=?\Ïf','wp-content/plugins/woocommerce/src/Admin/API/Reports/Downloads/Stats/DataStore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ä‘¬Î€\rG\Zb?ðˆ™\äó',_binary '\×o6!µ6›ª/‚\ÅVB\Â\Ä\ÊL–9\'.,€úŠ–','',0,'?'),(_binary '\Ü\éÕ»Zml•\î4ôË®U','wp-includes/images/smilies/simple-smile.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\éK²\Ï{Â…Ž±f²w—h',_binary 'ô´?Y©ag\\<yƒ\ÃÁ³€0\01\äƒ\Â8½3‡¾H¤g','',0,'?'),(_binary '\Ý\Û0ƒ\àª\ï±\Z/1¢\Ò~','wp-includes/blocks/query-pagination/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nña\êo¨[F^ø8¸€\Ôñx',_binary '\æ4Ô“©A#Œ\à~lœKl	\n\Åú\Ïm‡f:\ê‡ù\é\Øõ@','',0,'?'),(_binary '\Ýº\r\0FJ\È\ä–B\á\Þe\ç','wp-login.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R=Í§>C\êUƒ\á\ì,°\Ö',_binary '÷\á\ÜJ_M-\Æ…\Ûp\Ïa ÿˆ	G\ï»1¶…\Ù9Ý \ÎN','',0,'?'),(_binary '\Ý×µ(õ\éœ‚K\ÛB\í\Ø','wp-includes/js/codemirror/fakejshint.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5\Èv÷,ROlx]J\')K',_binary '\Í\í‘-6ó$$¨;²™Ž}ptO§4]2¶€Ð¢R\ã5Ö¡','',0,'?'),(_binary '\Ý\ÂÔ¬g#\â\ÕÙ \É\Ü\Õ','wp-content/themes/twentytwentyone/404.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\}–<Gbˆ0¶\íô\è',_binary '\ç¤ð˜›û-c•ºýWôñƒºo¦\Ð6\nþ¶¯˜(','',0,'?'),(_binary '\Ý\0UŸ?,‡y*=¢\è\Æ:','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/block-error-boundary/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æ°\0q\Ñ¡DZx\×a‰pYŽ',_binary 'f‰„0\Ùß˜ Z”òˆYCCh<\'\'-¨¹ÿ-s+.Jö','',0,'?'),(_binary '\ÝPP‚I_õ¦)\èn','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-contact-information-block/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N/PM7\ÒŽøJØ¦]>Z',_binary '_\ÏM!G\è\êhYƒjiñò¸\ÒøÆ›\Îr\ÓH†²)5~r','',0,'?'),(_binary '\Ý*7JÓ®\Ï›0u­]7A','wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_Exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k—\rÇ’ß¤b5‹¼.\Öð',_binary '\Í+y6¬0<Ê²4D®`(²i \ÜJ\äU\'{¼\ì','',0,'?'),(_binary '\Ý*?\â:ò¼P‚¢2x\Âr','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yit-plugin-panel.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›T4—j\Ó\Z=\íþq\"\nw',_binary 'öº,)¹\Õz\ßAr\æL‹dÆ²¿©yý\Æ{ÆH ”','',0,'?'),(_binary '\Ý-ó›û[¸\Ç†©œõ\Ê\â','wp-content/themes/flatsome/inc/admin/customizer/img/cart-icon-default.svg',0,_binary '0\Ý\Ä\Ò+V†u\é\Ã;S¨xp€',_binary '0\Ý\Ä\Ò+V†u\é\Ã;S¨xp€',_binary 'XpÞ®¾û–tl8s‹\É\'L3LDbmÚ¾‹\Û\Íó‰\ï','',0,'?'),(_binary '\Ý1\'±‰\ß@Tš#\\k2:','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/InboxNotifications.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9­>ö\ÂQ\Z\Þ5‡!˜{\Þ',_binary '£1Eª&¦jÁN¼N>!\æR$uY\Ózh_/\Ñ\í’µ','',0,'?'),(_binary '\ÝCL E§KÍ³C-\ÉÆ§','wp-content/themes/flatsome/inc/admin/customizer/img/nav-right.svg',0,_binary 'ñ%¸!Ÿ\ã‰_Ö¾>·^',_binary 'ñ%¸!Ÿ\ã‰_Ö¾>·^',_binary '	øŽ\ÒòŽQCŒüEN{€W8ù\0k\Þj\í\îR\Zò¸|:','',0,'?'),(_binary '\ÝJ0\Ïõ§\Éj Yg\Úh£','wp-includes/js/tinymce/plugins/lists/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2´8¾·:s–¥w¼9\çJ£',_binary ')bò#4\æ”e¬¾*\Ø9(™°=ôQE£e0|1û¦\à\ný','',0,'?'),(_binary '\ÝP3¡©ü_ª’w`\Âlmp','wp-content/plugins/woocommerce/assets/css/twenty-twenty-one-admin-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„¹]&Ç®\Ò\Ï	¿rK”Z\×',_binary 'µ\Z®›G°–ùÌžº!‡–IüLŠ|WS\Û-:\Ós\ä','',0,'?'),(_binary '\ÝR1l\Ûc¡Q{s¶\ëÄ¦û','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ProcessWireInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¶8õ/¿*<¤ŠZm°°XŒR',_binary 'KýŠ,\ÛU‚\ç\\y$\Í\ê\á\î\Ã&\Ð4ü:ö£ƒ\ÓÄ†ð','',0,'?'),(_binary '\Ý[6»5€„+\È	\án9\ä','wp-admin/images/sort.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'û ²¬ \í½*¢ ª’\Ú\Ï3',_binary 'vP„„-~«x’µO\"	’\Ç\Ð\Ù\áþ;€\é','',0,'?'),(_binary '\Ý`U]ù!‘0¹¦0i–’','wp-content/plugins/woocommerce-currency-switcher/js/wselect/wSelect.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\Ú+¾OÀS‰”G¦ý,:v',_binary '\Õø{=k»¹½Œ-¤.L\í(o\ÞÄ®º.”§¬«\\”Í´%','',0,'?'),(_binary '\Ý`Œ\ãL\\3-iš_3³S\r­','wp-includes/blocks/code/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Í\éû”¢¯\Ö(†ê¶²zhÉ¶',_binary ' ¬©\Å6¸r3–ˆ\èô§C9a\áÙ’\Ð~È¾«:¯','',0,'?'),(_binary '\Ýf6X{K¬À\ÐþŽ“¸ž,\ã','wp-content/plugins/products-compare-for-woocommerce/style_templates/grey-gradient/berocket-grey-gradient.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ôrs\ë\Ö6O\á•AVŒE„³',_binary '\ÚD\Ô\è9&iŠ\ÏODm\ÉÐ„1ó~ò\Êp5¸ š²H','',0,'?'),(_binary '\Ýf…\ãyŽü¬Ä§—*!','wp-admin/js/nav-menu.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Š:IK‘{¥¨“W.',_binary '¢¸þF@¨û¤û\'òüÁ	#øT°d\à  w\×\ìC\'t','',0,'?'),(_binary '\ÝfüÍ“\à”d¾1˜\ì…\'Qz','wp-content/plugins/woocommerce/assets/client/admin/analytics-report-orders/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=n¤—¸û·!*Y\'ö“',_binary '=€£”\ë°	L”>\Ø}\ï0\Â\ÈË•ðÁXb‹ª‚8','',0,'?'),(_binary '\Ýv\ï\á\Í\Ô)”ðò€!:y5','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/legacy-template.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²¼eúúƒí€€#˜‘',_binary 'W©#\Ðó\ZùR\â2¥c\ã–\×\Æ8öN\ÔxQ\Õ\Ó\ËË¹i%','',0,'?'),(_binary '\Ýw´sûÁ\ìºY¯e\×s{©','wp-content/plugins/contact-form-7/admin/includes/help-tabs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\î¼\Ã\îò®N\0VÃ\×	',_binary 'fl3™XŸ)a*ÿ[g0‹º\Z\Ý)\àWölò$','',0,'?'),(_binary '\Ý{c\Ê\í\Z¦ŒSf~=J”0}','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/otgs-icons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ò\Ì_3¹\Ãú(\ÎAI\ÞWM(Š',_binary '(’@\æ\ÄC!®D\Ôp\åv½\Ø~¸\Î\nš5\ê¾À–im€ö¼','',0,'?'),(_binary 'Ý‡óNùýÿÔŠ[’\Ãma\Ô','wp-content/themes/flatsome/inc/admin/kirki/modules/css/field/class-kirki-output-field-background.php',0,_binary 'Á\"u(“¯\íç¾‰¨\ÅøBø',_binary 'Á\"u(“¯\íç¾‰¨\ÅøBø',_binary 'K\ß\éøiB30J\0oeý:\ÔP`·òD¬z»;nÎ»\'\Í\ì','',0,'?'),(_binary 'Ý‹¼rn}§z¹\äw\'\é','wp-content/plugins/contact-form-7/license.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xj8%&~¶i„¹\Ö\æK\ç´',_binary '\ë–U\Æ}¦Œ\í{ý\Çø	Œ¯°‡—6º\'-™˜¹U\\ƒ','',0,'?'),(_binary 'ÝŒK÷\Õ\ê\åvŽ£§¸S','wp-content/themes/flatsome/assets/img/payment-icons/icon-maestro.svg.php',0,_binary 't\\½ZpwÛ³@:TÓ§4%¦',_binary 't\\½ZpwÛ³@:TÓ§4%¦',_binary 'ù=‰>¿g”<È˜\Üi­;«C\Ê~\Æ_Á\ï´\è£\íŽM\Òu','',0,'?'),(_binary 'Ý–y\á½\ï\Ó\ìU…xM¼	¤•','wp-content/plugins/woocommerce/templates/global/quantity-input.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',\rü™\å.3êº’\×P ó\í',_binary '\ÅŽºn¿	SzN£bãŸ0Œ5Ù§k²\î\Ã0x','',0,'?'),(_binary 'Ý–¼\'\Ö\"|3\â_™t|©ö','wp-includes/class-wp-term.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ðù\èQ5\à\æ¡×„XZ\Ù\Ä',_binary '»}Gj)p™\Ã\Ú\á\ïO\Ý7±Ù fÝ’À¾ýáŽ\ÄY¼p','',0,'?'),(_binary 'Ý¦òþ\ä¯\ì{býh0ŸQ¶','wp-content/themes/twentytwentyone/assets/sass/05-blocks/rss/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å¨\ÔÒVÎ³_ü¢(!\Ã',_binary 'Ì©\ZTQb[c\íU\æ,³\Ùs~Œž$\ìF_\n\æ±e\Ë	\Ú÷','',0,'?'),(_binary 'Ýº$;k\Ù\ÂJ•	a€l1£','wp-content/plugins/contact-form-7/modules/select.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÝZQ\Æq\ïD\ç\Ê3\Ü\È',_binary 'ž”_omªÖ²{1\Ø¹Um’[j,*Ã¤	1ö\ïb_','',0,'?'),(_binary '\Ý\Ñû\Â4\Ò÷´—°òƒ','wp-includes/blocks/media-text/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!ÿ5eü\æ\ìÔ»ú—Ueñ',_binary 'Kõ¡÷&4gÑ«±«& Ù”+\ÍD K«+dŽƒO™uµ','',0,'?'),(_binary '\ÝÓ§öoe¬:\Ý\Ä\Öô¨u','wp-content/plugins/products-compare-for-woocommerce/berocket/libraries/templates/default.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\Ý-Ñ–;ùU‡•\Û\Ý\04\r',_binary '\á˜Zb·	óˆ\èñ2š’y\nŠ9\ÆR	.¤#ƒ2¼ž','',0,'?'),(_binary '\Ýå¥*¬,º2\å\àÖ®\ãt','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Utilities/NoticeHandler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²ª.lÀ„.U²ºK‰y¤',_binary '€‘G%m¶p6>xŸ‚]ð9\È,k¾™4\È\èbV=F”','',0,'?'),(_binary '\Ý\æˆ\'˜\Ä|?˜\Â>û\í£','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ¦÷L\ÕòaDJ„?ûƒZÿ”',_binary 'ˆ»‹…=F=„=…<øø_%ˆ=§\ÙM?\áª\Ý\Ü\Þ\çu/','',0,'?'),(_binary '\ÝúWMc½‰w¹SLWJ\Íþ¢','wp-content/plugins/woocommerce/lib/packages/League/Container/Definition/DefinitionAggregateInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ä,?•p} \á+\n=LÁ¹',_binary 'c?†\ÚD9ü\Î\ÊL\ÌªMµ$IKºß“\é%Qñ\\~rv','',0,'?'),(_binary '\Ýþ¢Q­osMÄ²S€x\'','wp-content/themes/flatsome/template-parts/admin/envato/register-form.php',0,_binary 'u	£þ¤Á®(Y\ç¥yc\ÝaÀ',_binary 'u	£þ¤Á®(Y\ç¥yc\ÝaÀ',_binary 'q\Ü\Óz&¢€£¯§‡úrN\Ç\ØkM_\ÔpC€£','',0,'?'),(_binary '\Þ	u\Îa¾\0s\í[{I\á‘','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/NoteStatusRuleProcessor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”\ä\Ê\Å.¾³©l\È\ÃòR¼',_binary 'mj\Ùô÷ˆ¬´¶•ô»²6¥É‡1t‡K}¢-3\ÓðOv¥¯','',0,'?'),(_binary '\ÞOKNŸ\0‰Yn\"²‚a','wp-content/plugins/akismet/views/connect-jp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0<h=°ª>C•º×¼L\á\ã',_binary '‚@Pžþ6?\Ç\ÏF\Ì\åüÿ¸øJ\ÕW\É4“F;\ÄÂ•Z\Ø\Ì','',0,'?'),(_binary '\ÞHCý™¶\âô\Ð)ªC\Í','wp-content/plugins/wordfence/lib/rest-api/wfRESTBaseController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ü\êy\ë\ÚKÁ\æ\n\Èuˆ@\Ðx',_binary 'AÝ¶ºÝ;_|s\ÏÈ¤4\Í\Ô_\×)zµaK\ÇQ¾Ee!©º','',0,'?'),(_binary '\Þ‡{‘[(ºfh­ô','wp-content/plugins/woocommerce/includes/tracks/events/class-wc-settings-tracking.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\ì\ì¼9\ÛOì‹i¸_?ž',_binary '(\Ç\åü\Û$E²j-tÀmtüJ3—\Ý[ýQÁ\êüó!g','',0,'?'),(_binary '\Þp«Õ­^\ß@#\àÔ’','wp-content/plugins/wordfence/views/scanner/scan-progress.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b·1{\ê	@õmŸ90',_binary '\ïKª\ÊM$®\ã)+SCQF 1qZ\éTv`\í»r','',0,'?'),(_binary '\Þ)c»QU\Ò*\'Xz¯\n','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/panel/custom-tab.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«t&Ô¾j\ç\"ˆ}WW§',_binary '‘\èòdSLV!ut%\n\ÐmÍº	¥\à%\è¯g?\Ã$','',0,'?'),(_binary '\Þ,ò å†§~IË‚q•µl','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products/base-utils.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´\Øñ\é+¨\\õ3\Þ~ˆh%ý',_binary '\Z¸\Èc\ß7£\ÚÄ›JQ	g™A\í|Æ±S£\ÎJnmœ†O*','',0,'?'),(_binary '\Þ.¶}4Êœ*Y°­\Ø\0W\Ó','wp-content/plugins/woocommerce/assets/client/admin/chunks/analytics-report-orders.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\í½Hû,µ3,†kD\ày',_binary '`Wi\Æ\';|\Ï\ë	‘qyy—W…ñm¹¿\Üx•xgF€','',0,'?'),(_binary '\Þ3^\ë\ËPMŸY˜\æ\íHˆD\Ø','wp-includes/js/tinymce/skins/wordpress/images/video.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÐÂ¶÷ B©=\rz»ƒ3jÁ',_binary '¡ˆÁi‚\Í\ÄI/=´M¾MXž:M\æA\Õpv\Ü\r\Å','',0,'?'),(_binary '\Þ5f„´ ¼\éoÞ®\ç','wp-admin/includes/class-wp-privacy-policy-content.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾ý\Ñg§ax\nC\"\å\\-1\Ä',_binary 'ô‰NToy%	5\Zx3Áø\ÛÅ§k©\ß(k4Ÿ*×­\æ&\æ','',0,'?'),(_binary '\Þ6 [\è\ãš02\Í\í$\ìó­','wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/maestro.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜KTc\Ï\"J\Èõ`(Uß¬',_binary '«$÷þ\Ædž\Ã\"\äGÌµ¾¦Öœ¹¡¶\âr¹\éûª\år\Ä\í','',0,'?'),(_binary '\Þ>%cq\r¤\å\Í\á½\èFñ','wp-content/plugins/woocommerce/assets/client/admin/chunks/analytics-report-revenue.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’[\Ë]´y\ç\è”\0Jœ\î\Î',_binary '½Î \Ì\Z$&Á\ë \Üõ\rc±\\Wf¾2•{J–M\æW\ê-','',0,'?'),(_binary '\Þ>Šü\Æ-¹&–-\å}W','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/selectWoo.full.min.js',0,_binary 'n\ë³]7³\Ú;2¨û·})',_binary 'n\ë³]7³\Ú;2¨û·})',_binary '¶»ÁG¦.\ã?=VX!¶>÷…•6\ïQee\\³¬','',0,'?'),(_binary '\ÞCÒŠÓ€\0\Ûnþý\Éõ¯','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-sl/icon-256x256.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥·–\Ä5\ã\è{\Þ(o—Qn$\"',_binary '\íL>•›&†ª\à4ZüÁ8ù^õA•¯\ÄsŽŸ‰™V','',0,'?'),(_binary '\ÞDwµy·Žÿ3eÿz˜\Èø8','wp-content/plugins/woocommerce/woocommerce.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­­A•Œ\"ØŒ\Å\Û\æ\Îr/\Ù',_binary '4_€¬d9\é–öa×„—\Æ\ä\îÇ™Žx±ž;\Ë','',0,'?'),(_binary '\ÞG\ß0I\Ö\Í(C\Ü\ã<D','wp-content/plugins/woocommerce/includes/class-wc-privacy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ¹k@rÁ\Ë\rÞ˜¯Óš\Zƒ',_binary 't²·\å@ú\Ù^+†A&b{\Ï`§X¹\É\Ø÷Hž™¬\É','',0,'?'),(_binary '\ÞIT.TI“\è\íÚ˜”R@','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ß\r\æ’%t†\Ø\è\Ål¤\é\Ã',_binary '©J%Üž¤]	†©<‡_+-¶\'yˆn¨\ÐÏ\'º\Ü','',0,'?'),(_binary '\ÞN\Ä\\ü|ó`*·,)@4','wp-includes/images/xit-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œÓ\Æu:@4\r…\â\Åz<5\È',_binary '¨S\r\Î}@½~Q÷:€Scµ±§\ê*d+\åZ\Î_¾{¬R','',0,'?'),(_binary '\ÞU\ÛpeŠÁœ oá‡†{\È','wp-content/themes/flatsome/woocommerce/checkout/thankyou.php',0,_binary 'þ‰Q¿’9)€ø\nüü\í[—ƒ',_binary 'þ‰Q¿’9)€ø\nüü\í[—ƒ',_binary 'd¨x¿ò\Ñ1ò1`«er¶÷ql#ªL8\ì8°¦^™','',0,'?'),(_binary '\Þg(\åB{ûÿ‚7¨Ý»','wp-content/plugins/woocommerce/assets/client/admin/date/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0rX©/¨6´¼£\\³',_binary '¢Ñ„¯ÚªfOŽŠ\ß~«L\ÏB\Ë\ì9cŠ|µk\ã\Ôù','',0,'?'),(_binary '\Þj¥K¬­«\âK\ÕT\r<\êó\è','wp-content/plugins/woocommerce/assets/fonts/WooCommerce.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ù·¦\ÙM\ëg+F.\Ü^b',_binary '_–\ÆÅ¹5•\Þ\Ö{˜xý\à\\\\œøxÔ‹4Î»‘Œ¢§¥','',0,'?'),(_binary '\Þp\æÃµ«½Œs„S*T>1','wp-content/themes/flatsome/inc/builder/core/server/helpers/breakpoints.php',0,_binary '\íhþ¥8þ\è\ã<!',_binary '\íhþ¥8þ\è\ã<!',_binary 'UI¬\ÂolUzG”‡\Ä\Îl‘\Û\Òç¾‚Gt\Ü\à\ÖA\ì\Î\0','',0,'?'),(_binary '\Þq\"/³“ª`‚ »‘\Øiƒ\È','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/address.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!ò˜ü[*Šsã¼ù\ß\Ú',_binary 'F{Ë†¶<š\í†XŽ\Ój|º6¯Vp¥v\Ìq\ËF¯%ø','',0,'?'),(_binary '\Þqÿ±\r\ß\ãL\î\ÔòÓ—&ò\Û','wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-theme-licence.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ï\á)5®(ð5D5\\\Ñö',_binary '‹Y`>øh„Ÿ’%—\Z$q!\ZAô-·OB‰ý½\noH','',0,'?'),(_binary '\Þ}Õ´ù÷«Ü¹ˆgx¦','wp-content/plugins/nextend-facebook-connect/includes/provider-dummy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Å\ÓoV\ç3	°\á¢<\Ðxþ\Ð',_binary 'xO\Êu³Zf$<%t&¸\\(€»õ\ÛwnB‘ÏŸQ|¾}\ëJ','',0,'?'),(_binary '\Þø´\ÏT\'ƒ42\Z\Ö\ä','wp-content/plugins/woocommerce/templates/content-widget-reviews.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§¬m´\â8+”„a¸‡\Ì\Z[',_binary '’¤˜\É\rñžV\\¼Q…#Æ¼-¦\à\îM’Ÿ_ŒÀz','',0,'?'),(_binary 'Þ€[11ŽbBƒc\Þ!–£\è','wp-content/plugins/contact-form-7/modules/stripe/api.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™D\àt­½1’·)F@',_binary '7tn3Rý©\í\'\Â|ñ\Çƒ\'ÀFjo¥ó{¶ü+©\ì','',0,'?'),(_binary 'Þ’¶?IñÎ©i%úýg\ÆyÁ','wp-content/plugins/wordfence/lib/menu_dashboard_options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™p\ß\Î	ª„9“_\Ö\Õ',_binary '?¡0\í\Ì\Ëü)„”É¼Ô…$\ÙZŽV³œþ¶\0FYN\×f','',0,'?'),(_binary 'Þ˜\Ô\\![öNB¾\Ú#W','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/EUVATNumber.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A5Z1_³Ø¨Ö›NöWŽ',_binary '\Ì\0\ï~\Ý\ïEŒu\"\Ú\É\ã\èmóE\çLõ´z|Â˜œ \Ã^','',0,'?'),(_binary 'Þš\íê§­\Þß…\"gÑ<Nr','wp-includes/blocks/text-columns/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñ\ë\ïwò\å`}\ÞNû\nºþX',_binary '¬t!\ï\ãþlŽ`¯|*µ^…«\Ù0»	\Ýl$C§»ò;‡\í','',0,'?'),(_binary 'Þ OÄŒÃ‘L:\0Ùˆ·','wp-content/themes/twentytwenty/assets/images/2020-three-quarters-4.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ó‚ðº\à\"»E47ÅŽE\æ',_binary 'ûŽ\á\é\ÚyaÄŠ\á\î2Ý¦õwÊ©\Äðqô,ˆý\Î{','',0,'?'),(_binary 'Þ \Æq«\Ç¡\ÈD\Ä„\äb,','wp-includes/blocks/paragraph/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÙšD}u»\ÆP\ÈÁ5”+',_binary 'Kº¹¥fÁOúò\ÞHÛª5fw£\Z-\äÍ¼œ¡\Í§\\š\Ú','',0,'?'),(_binary '\Þ\Õ{6BI°š(?\Ê=Ÿ','wp-content/plugins/ti-woocommerce-wishlist/integrations/sitepress-multilingual-cms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&¸wæ¤–“õ®o7µ',_binary ' :™*:\È\ßd»\Óø’££l”¢” ³‡\àIùu\È\ëh\×','',0,'?'),(_binary '\Þ\ÝÃ”¼¶\ÐYúhüºž\Z\ZQ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-vendors-style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ãr\ßG½\áV;U}{Ûqˆ',_binary '\à\È·\å\ÝtS\î€Àd[Öº\"(_ø\äó;)','',0,'?'),(_binary '\ÞÞ‹³­”1Fóø\ë\Ûa“','wp-content/plugins/wordfence/lib/wfArray.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ò\'FbaÛ†\Äâ‚‘Á1Ê¤/',_binary '›œn2qµ«8D‡\Ý-ƒAR\Ù>ºxqYq˜»¬$Á Ñˆ','',0,'?'),(_binary '\Þ\é\'g!Ž:–H™\î),¾','wp-includes/SimplePie/XML/Declaration/Parser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ùO,@\ÜÀÛº¦aõ	Î”\Ë',_binary '¾\ëim\ÍQöq+’¿\r¨£:§Po§«ü\Ð\Z*þ®†Œ\å','',0,'?'),(_binary '\Þö\ç\åB\Þ#øQw{0[M·','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/phpcs.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒz\ZH+û‰4:ÔŸY1½',_binary '] Yy\ÄˆJ\Ée,…]\Ã,÷À6|\ç\n\ÏxXñ\nÅŽŸo','',0,'?'),(_binary '\Þ÷Ü–ŸÆ­¡rg-š4ú^','wp-content/themes/twentytwentytwo/assets/images/bird-on-gray.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PaoZQO¡\Æ2ñ·î»»',_binary 'z7üœœ)\ß\Û#ƒ“\ÃÏ¦v\á\ßE-“\Þ1þ·gV','',0,'?'),(_binary '\Þý›\'±¶×º-Jó\Ér4\Ê','wp-content/plugins/woocommerce-multilingual/res/js/wcml-messages.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'oŒ\ã\Â#¦»Z%A´\Â6\Ð',_binary '‰§ù©¢\Èòf,Û´À=\äE\î\\Q_¾G*)G“M\Ù\Âj','',0,'?'),(_binary '\ßCZ[}\Ë\"\r\íjú4\Ô','wp-includes/js/dist/vendor/regenerator-runtime.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dè›“° Uûu\ê	\í',_binary 'r²=ž \Í2<Ë«0\Éo?½„¨ð\ÙnUþ>*,B9\ÄL','',0,'?'),(_binary '\ßD\á\ÚE‰S±“½\ßû','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/external-link-card/stories/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0—þ:¶#LO6£\Ò\"\'I',_binary 'q%‚’·%wt‚÷k¯×‹V†%i\Ñ[óiE–>5\È\àV','',0,'?'),(_binary '\ßµ!¦}\Î\Ïòè——\Û\Ú\ì†','wp-content/plugins/woocommerce/assets/client/admin/experimental/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\åbç¬¨\Çþ´\nNö*',_binary '6\Õ^‡v{\ÎlÝ¯®a†\Ù\Æ@÷.E+\ÃMC”…r\ê','',0,'?'),(_binary '\ß*\ìH\íù®x\Öd\èL','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-product-tags-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'öa©­\ÈdU<g¦ñwIÿ«',_binary 'ÀŒ\n¢\Î(%T:*¤8¾§X~Á¦¹mÃ‰®\êJ\Í\ÌSÀ','',0,'?'),(_binary '\ß\à\ÒÁ\"‰»–¾\Íc)j\Û\"','wp-includes/js/wplink.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œ\Æ\rž¶X‰\×ü|\0LF‹²',_binary '‘ñƒK½f ½\Z¦²ûAU‰i‘/½µ\n$\ìH5*\Ý\íš','',0,'?'),(_binary '\ß¬9Áª:zOÀ¯V','wp-content/themes/flatsome/inc/builder/core/server/src/Ajax/Data.php',0,_binary '\á\'4Sh0}¾Gb¬K',_binary '\á\'4Sh0}¾Gb¬K',_binary '\å±Ç²{É¨ujƒ\ÓÎ›½\Za–\01£\0>\éˆ\ÒHª','',0,'?'),(_binary '\ß:Vq!•œ€‡D\Ñ9˜\ä\Ð','wp-content/themes/flatsome/inc/admin/options/notifications/options-notifications.php',0,_binary '›†•\Ë\ËRe§\0TÑ\0a‡',_binary '›†•\Ë\ËRe§\0TÑ\0a‡',_binary 'ˆ\ÐDª\Ä~õ\"\Ä2°¯Žý\0#=J\Ðoþ¤\Ì])?z½ð','',0,'?'),(_binary '\ß¬\ÑÖ—\0e÷Q6l\Ê\Ó','wp-content/themes/flatsome/inc/builder/templates/templates.php',0,_binary '¶N\äSúU\è›Cxó\âo5C',_binary '¶N\äSúU\è›Cxó\âo5C',_binary '+SÜ¡b•X\é,d^HXÁ¤aÌ©—¢ÀDõ\ç\Ë,','',0,'?'),(_binary '\ßú_f}\áCq\Ôú”u`ö›','wp-content/plugins/woocommerce-multilingual/inc/currencies/class-wcml-multi-currency-install.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#¬ú\ê²}Œ\Õ\0³~\0\ã|\ß',_binary 'Zƒ»¿ðü¼\Ð6)]Ae\n‚<ouùP)\êø Aù','',0,'?'),(_binary '\ß-9££ò\Ç0§`\\x< ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-title-block/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a\æ>>\í\èÖ–\Ùü=p9©\Þ',_binary 'Œð³(¼\Ï\í´\í„ñ\à’ƒõ…‘£mú‰N¢=Ô£b','',0,'?'),(_binary '\ß/K\ã8 XVú\Óò°M*U','wp-content/plugins/woocommerce-multilingual/res/css/wcml-setup.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O\r‚¾bJký†§—Ø‰9',_binary 'HBºK#\\\é”<«v¹Ž\ÔN\Ý%–fž\äD8] ','',0,'?'),(_binary '\ß2Í™[™q\×nolñ0','wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-form-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' kP\êÒ¾•\Ë >\Ô–‘',_binary ';8ƒ©%“”?¨j‡ŒÞ™pr­ø	\ì[˜\ÞÜ›aò\Ñ\Ó','',0,'?'),(_binary '\ß:wýY¬¦,\è‚\Ä]¯^k','wp-content/themes/flatsome/single-blocks.php',0,_binary 'r7tÙ­‰»6€j÷2/a=',_binary 'r7tÙ­‰»6€j÷2/a=',_binary '.K¹\è\×‡} \ßÿ1,.Ø€e\Ö:g¶–\Þ{\ÃMœPW','',0,'?'),(_binary '\ß:º\ÂuTÃ·«\íAü\å°Y','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/EvaluationLogger.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A„\Õj¹þU\'‘™0Ž',_binary 'šA´”/v\Ê\Î\Ò9\ÌL\ÅúôOT\Û~—r9ÇŠ\ÊÞ°®\ÏS³','',0,'?'),(_binary '\ß=@\\ðJpQóm\\†À6','wp-admin/includes/class-wp-upgrader-skin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j\"\ælD±Á¬ysBû¿¤\Ù',_binary '¯:Š6\à|ŸO·H\æ\Òs\æR\Öb¦U\å\ì}\ÂmÍµˆ','',0,'?'),(_binary '\ß=\Ú\Îð ›\ì>\0šU<ún\Ì','wp-admin/images/about-header-freedoms.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©½™>¬X±@¾d;3ª=û',_binary 'AP\nÖ«Tbc)q´—8¤ŒJz•„B·y‘dž?ÿóšM','',0,'?'),(_binary '\ßD¼\â5\Ê\Äü\ès*\Ü/F','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OEeôZ\ÃY‡ÀûE\Ìù&',_binary 'ö³\ÊWs\ê¾Gr(ÀQ9Aª_Â©>+„‡‚\Ã\Ç\'·¬','',0,'?'),(_binary '\ßFI@OR}’t\ä\Æa\édW','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-webhooks-table-list.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5a¶m`;?9WŒˆ¸',_binary 'Zòw©*¤\ËÏ‰{\çpwe¾xµ’)7#vœH†±w|&i\Ä','',0,'?'),(_binary '\ßI‡µ¾\Å\Ç=¥o%\ç','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.time.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'žÏºs³o°E­\Ï2˜m{',_binary '\ÌSP5\'¤¢›Y™U\Û:•\è_¥\Ò[4ºP<†ïªƒ','',0,'?'),(_binary '\ßJ\ÎIú†.+”LÏ†*ô','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/src/js/otgs-installer-support/testConnection.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Þ\ÞU\×½[U\ßL\ÔZ²@',_binary 'Þ²³Ý½ýw 	[¿4\är\Üi )˜­²oV\0\í,W','',0,'?'),(_binary '\ßL#¦¹\à\âa³‰W ñ','wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'l#¹‰d\00õckZ<^?·',_binary 'D\Þtå½¦t±\àw¡\äwf3; ™\à™\ÎD »$','',0,'?'),(_binary '\ßLb;]\ÉÅ„)™\á›©E\r','wp-content/plugins/woocommerce-multilingual/dist/js/reportsOrders/app.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^)[¼£’‰ =ò\î:CBñ',_binary '\Ï\ßZ§ùsÿ†5›NRy\'-£%µ:ñ2NEKŽ³ñ\ç\Ü-','',0,'?'),(_binary '\ßLtƒ…~Ÿ7Hž)\â\Ë3ÿ','wp-content/themes/flatsome/inc/admin/kirki/modules/gutenberg/class-kirki-modules-gutenberg.php',0,_binary 'Q6n8\ìž!(Y¿	ZW#A',_binary 'Q6n8\ìž!(Y¿	ZW#A',_binary '%c4ƒZ\Í\Í\Ð\ÂnÖŒœC\×%\ÄU·’Å©ót\ÎÁ{³7','',0,'?'),(_binary '\ßO=#²\Ðò\ã?‚à¥›\ä\áD','wp-content/themes/flatsome/woocommerce/single-product/product-image-default.php',0,_binary 'O>f\å‡öý\\Ê´Zâ³‰',_binary 'O>f\å‡öý\\Ê´Zâ³‰',_binary 'H˜j\n\ËÅ´%Ge\Í\éK.g¼ch>‚W\Ì\ïˆa¡Bý†¥','',0,'?'),(_binary '\ßW\ß[‘\î¨\ÓPuPXü','wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-booking.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'øin\ß\ë-òú=l)4',_binary '’¸;\ÃKñ´ž/<\ÎSªµuóÂ¡HI\ì^:±ûi','',0,'?'),(_binary '\ßbz“/›ƒTº7aHy','wp-includes/js/mediaelement/mejs-controls.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ð„š^yq+\áS%\ã\í¸y',_binary '‹½®\Ò\Ó\Ïhó…©¯A3Lš:¾\î\'1÷ê \Â\\\è','',0,'?'),(_binary '\ßfƒ÷–·\Î\ÖÁ*= O','wp-content/themes/flatsome/inc/admin/options/shop/options-shop-payments-icons.php',0,_binary '¢,mžQ\Ø\Ã\íý¸Ž¶×„',_binary '¢,mžQ\Ø\Ã\íý¸Ž¶×„',_binary '\ì‡pBpß‚\ï\Æ\éjNaúR\â|»\Æu:÷K³—“','',0,'?'),(_binary '\ßm9¢\Ü\Í\\Ÿ\íö{ù¹','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/sidebar-left.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\áfø\ÂBc\Ðgf\åµœN¶',_binary '¡•T(Æƒù1RXÞ§ž®mŸ‰\ß)\×\n¦a[úv\ë\Ë','',0,'?'),(_binary '\ßp\"¯]¼¦\Ñ\'Te¾-„\É\\','wp-content/themes/flatsome/inc/builder/core/server/src/Ajax/PostSaver.php',0,_binary '€e3Ÿ\è\Ó\Z\é\Å\Õ\ë',_binary '€e3Ÿ\è\Ó\Z\é\Å\Õ\ë',_binary 'yc\ØÀ«¡)l€\ãIš³º\ßr³\ã\Ä\'{ùtù','',0,'?'),(_binary '\ßq‚ùœŠ%Å±“ m+','wp-admin/css/colors/light/colors-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ZAÿ\Élòpyº5Jd‡\à',_binary 'Ž÷`yzD›ŸðŒ«;!þ w\ÍJ\'x\áƒË¬„„w\Ý','',0,'?'),(_binary '\ßr\ÉlR\í©\Ülª\É)\Ï%','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-enhanced-select-wc-2.6.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸\â\×4½_m4\×\åF\à\rº',_binary '[RB¸žð\×Lf|\\²²!M«gñX×Œ(Jú•ýP˜$\'','',0,'?'),(_binary '\ßuD\Ã\ã\ÛÀ\Í8w¶·h\\\Í','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-contact-information-block/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ö±`wrµVò=\Þ|Kò f',_binary '‰…k1\"2\'\ÇOR\àÀšr«=\×š¿œ\â ƒò2\ÛKò','',0,'?'),(_binary '\ßw”¿7œÜ¡{œ-I\Õ|','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartShippingRateSchema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÆW5\È°¡°Rœ-À',_binary '\Ö[¢\Ï\Ûb™eª\0Q—[\'\ìÿ\á^õ²Çº\å±w\'3˜O½\Ïp','',0,'?'),(_binary '\ß{\Îõ·]Z}$ÇŽ†\ÝN\Ïp','wp-content/themes/flatsome/woocommerce/content-single-product-lightbox.php',0,_binary '	7\ä†Ui\ïú\naX¯\0',_binary '	7\ä†Ui\ïú\naX¯\0',_binary '”3¢†D¶\ê@›½W4!a2H\ÂA\é\ÜŠ_œ½\Ýú','',0,'?'),(_binary 'ß‚Ò‚•‰\æAŸ$-6­\ì','wp-content/plugins/woocommerce/vendor/symfony/css-selector/XPath/TranslatorInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c–\Ò\Ä\îWŸ´ZP\ÔC\Â',_binary '†\Ö\Ý_`\'¬\äX`±–s·;\èC4hl“\éSc”À‡€\áx','',0,'?'),(_binary 'ßŒò‘(ƒ©©‰\Õ\Û2\á\è','wp-includes/js/quicktags.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\äˆWËƒŸ\Úq\'\Ë\Ú\ît‹]',_binary 'ÿ¦P6\ä\Ï0\ç\Éj\ÓQ/mt”ª-\ßJ†Ÿ.ôqÃµ¶˜','',0,'?'),(_binary 'ß”¿\Ï\ËŠ‹œH‰u\Ô&\á','wp-includes/js/plupload/plupload.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ý ª$pZR\Ñ>\'Œ|÷',_binary '\à\"³\Íº–8[J%ª.ºËš¤c¯V\r\rE½¾)\'','',0,'?'),(_binary 'ß—\ÏQµ¦u\â!Ù¶x•[','wp-includes/js/wpdialog.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=nRó-\â\ïKP\ã\Í=Œµ<',_binary 'w§ø\ÜÚ‡EÃž‰ª´ñ\0´vºÓ­¶\æk^–M¹n','',0,'?'),(_binary 'ß«»–µœ~7\í@Y‘c™','wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-form.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ò:©ôõ{¤õ\æ\ìX6¾˜»',_binary '™˜–¶ñ¬VÜ“}ÍŸ§o\âÊ´<!l\Ê\ìX¹žL8‚2','',0,'?'),(_binary 'ß°S‚³ˆ±h[üÛ³\Ì','wp-includes/class-wp-http-streams.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9þuV¸¶Ž©\å\à',_binary 'y³tSi\Þû¦¦Z2(\×\ÐwƒŽe²¡, €T¾','',0,'?'),(_binary 'ß´\âùS8\Ö\ÑAÐ¢','wp-includes/js/jquery/ui/autocomplete.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\àW¼OeP…xaûù$',_binary 'e\ÕôDxŽM\Ü(\é\Ñøy$\ÍÞ¤/M\\{\Égº²','',0,'?'),(_binary 'ß¹V\Ì=¿£»\"\à#n§	¹','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/lexer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\à-…T³\0\Ê2²L-\Õ',_binary '¢È´¾÷£\àg’A\ã]\Óz-Û£²ð¢ûüá·¸[\Ï','',0,'?'),(_binary '\ßÁ Cˆ=ÀÕ²j\à\Ó#','wp-content/themes/flatsome/template-parts/pages/page-title.php',0,_binary '0)úò¬&¸Y™]…o³‰',_binary '0)úò¬&¸Y™]…o³‰',_binary '‚Œz<Š\ì…ib0‡G<\Ð>\à$þ\Õw¹&@\ÏaÑž','',0,'?'),(_binary '\ßÁJåœ…V?H\ê\ÜzTE','wp-content/plugins/woocommerce-multilingual/res/js/front-scripts.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­\nóN\är·1ô–\ÅOD\ë',_binary 'UPù¾Ø‚]=¶…¹\É%ú\0‡\ÔÆ¡öHR\Ö\'XÀ\Ä','',0,'?'),(_binary '\ßÄµ>“„#B§¾bóñ\Ç','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P3.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' Û“œ\ÑôGÿc,«™=c^¥',_binary '\ì\Û\ä‹«G\êc‹À\ï\èt(5\n,9%\Ù÷—£\Ê\å)\ïe','',0,'?'),(_binary '\ßÈ¦0\á $¢7O>\é¿\à','wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ù\r4še²\ÊC¿l{Ž¼“Ž',_binary 'ˆN<U\í”xwó¼¸\ä‰†V\Ð\Å\ê\ã%‡óxJ','',0,'?'),(_binary '\ß\ÓG]•\Ò9˜¡ôe7€õ(','wp-content/themes/twentytwentyone/assets/sass/05-blocks/latest-posts/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Úôa³$‚¢c\Ë\\¦~3þ',_binary '\"[3[¾@\'¡†`$Ip\ïE.Ò¹SÁ{¥\Êˆ\"$0','',0,'?'),(_binary '\ß\ÔYv”z\ÏÖ—*–9\ã\ïa','wp-includes/js/jquery/ui/tooltip.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<µ9¯ý	tf2‡y¤ƒ',_binary '¼V_+\Ð\Ò\áf\Z\Øu\Ë\ÙV€? ©6:L§eAY','',0,'?'),(_binary '\ß\Ú\èl\0\ÜMlòÄ—Û®\Ø','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Node/FunctionNode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÞR\ÜW”vH\Ö\ÌnQ\Ô[µP',_binary 'ƒvÖ\ÆJ»°Xì”­\Ü\ë®*\ì\"E^H„²\æ!¼\Ã','',0,'?'),(_binary '\ß\Þ(ú)\Ù\Ñ!\Ç}ôó#~','wp-content/plugins/yith-woocommerce-compare/plugin-fw/languages/yith-plugin-fw-el.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z^\ì\0•\à\é~8\ë5f|\Ä\n\à',_binary 'ŠMv†5\Ç\Ùs\Ã\'\Ã>\îqºŠnhU¼v<›EU·\åPf','',0,'?'),(_binary '\ß\âK±¸\ë›¼¡\ï\'Á','wp-content/themes/flatsome/inc/admin/options/blog/options-blog-single.php',0,_binary 'g=¹\ÄLÛ®µ×(Xm§',_binary 'g=¹\ÄLÛ®µ×(Xm§',_binary '¨Á÷\ÆY\nG\è±I”]ùP‚=\ÖÉ—/\r¸\Â\ÏÐ±\æ','',0,'?'),(_binary '\ß\ç—$dp\Å\ê\ÉC³©','wp-content/themes/twentytwentyone/assets/sass/05-blocks/blocks-editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';†…{ ke,c´Š\Í\Ö',_binary 'ÆµIg\"Ê§[ rž\Ë\Ñ8pVgR\ã\Ï~´\Û(\Ã\Ù)´','',0,'?'),(_binary '\ß\ìeÅŸ+ \r¾\á	ƒ\ê‹ü\ë','wp-content/themes/twentytwentyone/assets/sass/02-tools/functions.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/ŸS\çjtBa+D8\0$',_binary ')\êvIyƒ‹aŒ\È\"?ø‹\Î\Ë@vŽpYAqJ°\æ»>¥','',0,'?'),(_binary '\ß\ì“Y…eÈ¸‰qEV\Û!','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-best-sellers.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yÐ–C¹U\í[%\çY%¨ð',_binary '^ò‘D@\Ñðk\åú$\Ï0\ã*\âÕ¬¨\ÝÔ„f¾Œ¼J­','',0,'?'),(_binary '\ß\î-\ÓwÁ˜=‹˜\äš\ïS','wp-includes/css/dist/edit-widgets/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\n‡&Äƒ^\Ä\è¸_0',_binary '‹\Ë\É`u$2\Ä²V\Ê]k0\ÇžH¢,ó@1\ÆOC92','',0,'?'),(_binary '\ß\ï\Z£\î³FeŽ ù\Ç:Æ•\é','wp-content/plugins/woocommerce/assets/client/admin/onboarding/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª\É&L¢Q\âs¸[4ž\ßnû´',_binary 'ý‡±\0<„;\îË±±ú€\æùž\Ä0í›\áú\è\ç¿i<§','',0,'?'),(_binary '\ßô\è\ÂV\Äò!^“ž@','wp-content/themes/flatsome/inc/integrations/integrations.php',0,_binary 'xý¨G¬%”\Ùe\ç',_binary 'xý¨G¬%”\Ùe\ç',_binary 'Š´oY?t§4¯­(\Â÷&\êž1.\ÄL©öÀS\ÐC0','',0,'?'),(_binary '\ßôóE\"œ,V1‰=Y\è§\É','wp-content/plugins/woocommerce/templates/emails/customer-completed-order.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nÛ\ÌN¾‰M¤!\à)',_binary '¤¼§\ÖuT ?0\×d+”\ÜOy”Fôg0D\çGŸ¹²+','',0,'?'),(_binary '\ßú:C4\0Ž^\ßë¥ ¦ñ','wp-content/themes/flatsome/inc/shortcodes/blog_posts.php',0,_binary '\×,Òˆ\í€\ê;\â0\0C\ÅOn',_binary '\×,Òˆ\í€\ê;\â0\0C\ÅOn',_binary '›\ZEB\È\Çen&†·-FÛ¦ŠxI\Æ\Ç%\Ä/ÍØ¼¸','',0,'?'),(_binary '\àÊ²	\äx$c†=.p\ÄpZ','wp-content/plugins/wordfence/css/license/free-global.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i\ÜjõgE”B7Áq,\Ç',_binary 'ø¬\\R1¢\"¨`l 2\íL\ïL\×c”Xe‹ŸEt	BMŽ|','',0,'?'),(_binary '\à%\çf\\+,…\æ\Í\0\\Y','wp-admin/includes/class-wp-filesystem-base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's¦¦BœS¬Ð†Xö®’=…',_binary '\á\ìŒ\È\á\Ê<¾ ³~R}u…®8›\á·\nNE«\Ý#´','',0,'?'),(_binary '\à(C,ö\ßtÕ”Z\Çô\ê¼!@','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®„£§=`ˆ‡w\Õ2‰6\îd',_binary '6óÅ·\ÙWh‹	Šú›·0¬W?\êžÞ\ÏYÇm\ç·','',0,'?'),(_binary '\à*¢™°¹\'Kj¨›Ì°!c','wp-content/plugins/wordfence/waf/pomo/plural-forms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P!7GñúýŸÇŠúq`.',_binary '.’¼\n)[.\ß\éc¬f£‘\r›\rFº\äZk\ïœ£´','',0,'?'),(_binary '\à0û\Ùû‡/€K¼þ\Öm“6','wp-content/plugins/woocommerce/assets/client/admin/chunks/8625.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}¿\êóñfª¹Š§uh\Þ\à',_binary 'C»T:¸¥\"\ÈNuR\à«C 7\nñZ•\Ì\æ¥þÄƒ¥%”xY','',0,'?'),(_binary '\à;–§\Å)<\àžW\ÏM´\éD\Ø','wp-content/plugins/woocommerce/legacy/css/jquery-ui/jquery-ui.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÜW\Ý¼+yJ9ø-¿³',_binary '¾\0·û…ù¯\ÕdOn]&\çˆBó\"\ëþY\âXLö\ï7ø‹','',0,'?'),(_binary '\à?7›`¾\Ý9…\ãÃ…','wp-content/themes/twentytwentyone/assets/sass/05-blocks/table/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'üº #¯Jg¯w§\Þœ',_binary '-\ÐL\\Z\é%\Ûû°Er_^nniW\ÇB-\ÆmC—•\Å5A','',0,'?'),(_binary '\àJ@U:	3L\ÝÿÂ ±x','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-debug.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ê\ÌÞ£,q‚r\n0{—0«',_binary 'rw«=µ°‡|\Ðc™\ÔÍµ„=aºNd \È/$Õ¯.(','',0,'?'),(_binary '\àO±*‘Òž\á 9;²¡­ˆ\ç','wp-includes/blocks/embed/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J¶\àWc}¤œ\ì\Ó\æØ“Çš',_binary '\ÙvºU0»|$\\œ’Á´^ùü?L¸§Á˜dlð_','',0,'?'),(_binary '\àXLˆt¿ž£\ÎCc-¯—','wp-includes/blocks/query/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ =ó\é\á{#\Ù\Þ\Ì\Åû«',_binary '?ˆ\Ö	¡?`0®ÿi1’pL<…hxˆ§®£ö¶—\Ñ','',0,'?'),(_binary '\à\\1Ýƒ\â%\áVE|<Nµ°','wp-content/plugins/wordfence/modules/login-security/img/loading.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K:û„²·õmð™—£P½',_binary 'j*\äeŽó©õdoX¤~§7\Â\ë&€²‚Nü9\É|L•\Ç','',0,'?'),(_binary '\àkžžµ˜²Rœÿö\Z•','wp-content/plugins/yith-woocommerce-wishlist/assets/images/googleplus.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ü7™\Þ\'ó<~7§ˆ',_binary '\Ð\ì\äj5V »Y¥\ÏúQ®Ái\åu\n±\ÖõÝ’/#¦','',0,'?'),(_binary '\àuKP|7q‹¾E\Îj#','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-stock-indicator-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Çô¢\Ì2\æd\ÓL\ÑW\Â?\ßù',_binary '¼!ÿ\ä&¬(\'?Á¯lt°Ej©ZÁŒOƒ`\È¿','',0,'?'),(_binary '\àyV„$\Ï\Ã	a^ý¡#1\Ò&','wp-content/plugins/woocommerce-multilingual/res/js/product-attributes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O¬õy+\äˆ\ìŠ÷¹4>q',_binary 'Àüa4–\ßð\'r—ˆmú~\n\Òr™\Ðþyù©µs·²y','',0,'?'),(_binary '\à„i·÷ò4û»Zl\áÐƒ @','wp-includes/css/dist/block-editor/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\á\ê\âd)Žµ€:Q|¡]',_binary '¥Ú€Œ\0óNŠÿl\Ñd€N‹OÖ‰´D ™(vó=Ž\ÈE…<+','',0,'?'),(_binary '\à‡¼œºyÀaüúýl','wp-content/themes/flatsome/inc/admin/kirki/lib/class-aricolor.php',0,_binary 'ü[_§ö¯P>¸@\Ã\r›,',_binary 'ü[_§ö¯P>¸@\Ã\r›,',_binary '}…wV”6>\Úö¯h.zÙ°¨ÿ¸o’\Ø;xÿ\á','',0,'?'),(_binary '\à<\ÝÀ’òA@\ß\Í4+Èƒ','wp-content/plugins/woocommerce/assets/client/admin/chunks/1996.style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'À\íw<d\ÝT—‚ºœK]ò\Þ',_binary '×œ\ÛÁ\á¢\ÜnÉ¥zÁË‡¡\ïª\Ä-\å\n´ñ2	b…\Æ\ï','',0,'?'),(_binary '\à–\Êrª\ÖM\ÓÜ´-\nSƒ„','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/parser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eR\è\Ûrú#ˆUÿý½çŠ',_binary '\è\Ð”s\ÈGd‘“l\ãIB-?`7|r\ÚR\Þ\Ý3µƒ¬V','',0,'?'),(_binary '\à£Á704b“;I','wp-content/plugins/products-compare-for-woocommerce/includes/compatibility/product_preview.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6ÁIPV\ÑF\âü\'!½\è\í\Ú',_binary '¦\ê7õT#œ¶ø\ÔE&;at\Ô\n¸UH\ßÊ¢¬¿Ž','',0,'?'),(_binary '\à®\Ð\à\Ù\ÌÜ®eÿ\Ú}ZUW','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OÎ†ñ\Ó¤*­Af°',_binary '¨\à\Æ/ü\ßE±¤ÖºqÀ®M‰F»Áš†Q\Öom£R¨','',0,'?'),(_binary '\à²Ù¦Tw¹I;0òæš€','wp-content/themes/flatsome/page-transparent-header.php',0,_binary '¢12^ôñ?S§\Éy‹Eù',_binary '¢12^ôñ?S§\Éy‹Eù',_binary ':À· %J©¥}l\É>b>÷¸\ÅI‚rAþ:*\ÈöÁ','',0,'?'),(_binary '\àË¢/…\ÉCf>–]r\íý\ß\é','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/previews/single-product-block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ñ-f¾EñUtŸ>¼™)',_binary 'W©\Ö\r£ÿP»³Ñ´µ…¥`µˆS\à\r\Þ\íh^\Þ\åCµˆ','',0,'?'),(_binary '\àÌ“(ªo†‘‡£3¯½L±','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ProductReviewSchema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3qÊ“+SXö™!¸˜\Ù°–',_binary '3¾½TM3;\Û\n	}9öÁ+¡\ÛNÊ—T\Çh\éL´','',0,'?'),(_binary '\à\Ó\r­%±A\ç€\"2ù»','wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-customers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ê½·­km^šž‰ó@(',_binary 'egª¤5g(í²Œ¸”\r&9VT¿ß·\Þóô[\Z?µ','',0,'?'),(_binary '\à\Ôu4Å¢#Šó‘£\Ô\ÅóyQ','wp-content/plugins/woocommerce/assets/client/admin/analytics-report-variations/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=n¤—¸û·!*Y\'ö“',_binary '=€£”\ë°	L”>\Ø}\ï0\Â\ÈË•ðÁXb‹ª‚8','',0,'?'),(_binary '\à\åB>:ºy\ÇÀZ6ýX>\à\Ç','wp-content/themes/flatsome/inc/admin/kirki/modules/custom-sections/sections/class-kirki-sections-expanded-section.php',0,_binary 'kdypå«\n#”ÇžÐ®\î',_binary 'kdypå«\n#”ÇžÐ®\î',_binary '1’ˆ9\ì\'÷Fc\Ý\ïBŒñB‹_´–9Z8)–\à\Òò˜1¾','',0,'?'),(_binary '\à\é\ÏuaŽ€6Ù‘«s=','wp-content/plugins/ti-woocommerce-wishlist/assets/fonts/tinvwl-webfont.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œ¾WPN,ˆ££7·«Lð',_binary '}\áŠP_“Dyµó#3‡yþ9†l°Ð¦Ÿ½¿Ubc','',0,'?'),(_binary '\àðßˆ©yv]\êm\"¡\ÊlZ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-top-rated.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\åY\å]+—b\à3-\ÓV',_binary '—~óùr\ê­\×\Ù‡\Èc¤¿e¦\ä«Rkg°D?ž„','',0,'?'),(_binary '\àöÀ\Îð¶\'’–_®9','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/checkout-state/constants.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6‰¸÷ói<òv›p\Â\Ôñ^‘',_binary '`¨-Ÿ\Ñg\í8\\Œ\Ãÿ\Û\ä€l¦,\Ò\ÌAº\×ryH€','',0,'?'),(_binary '\á\Ñ\É\áÁþ–tˆ\ì~œ\Þø	','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/buttons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=°\è\î\Ì\ç›\ë¨p±³¥®',_binary '\ØK²(¬l³\Ò\ì®L\â\n\Õ\Z5\á½y!k\Ü\ÄC•\"yûƒ=','',0,'?'),(_binary '\á©^ºûbR–\åSI\á!\Ó?','wp-includes/class-wp-image-editor-imagick.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-™¹\Ë\Ïï¡¢su \ÚýE‹',_binary '¡»¯\é&\Ä÷“?°c\nç©Ši\Åý–p\ä#\'/Ž¶š','',0,'?'),(_binary '\á6\æ¬Ì¬H4ªO‚„$\Ì','wp-content/themes/twentytwentytwo/inc/patterns/general-list-events.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\åª\ê¦?Àõa[Œ\Ê\Þô_',_binary '¹\Ã^öVŽ„\êþ[•#¡’:µ‘9¡Ò•tGúÁcƒt¸šý','',0,'?'),(_binary '\á\ÕoŒ#N~v\ë[ƒ”·','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/price-filter/frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›Á,\Êj,ªzœ)~c\æ',_binary 'c\Ä\ÞMb5÷X>\êa6\á\â\09\ä\à\'º\æï½¥\êÿD','',0,'?'),(_binary '\á\Ô[\Æ\Ð+–S\á\Ôþ­ýšó','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/textarea-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=¸XTB€‹\"\í~¸TŽ¾½',_binary '\çÓ°j¿£**A°\'pxŽ\ÓÝ—cøUú/ j$ºûi›>õ','',0,'?'),(_binary '\á´ô\Úsk“6/§«Ð½º','wp-content/plugins/wordfence/lib/wfSupportController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!eZu\0z¸[\ÄO¼›O½§<',_binary '\ìQ:4s-Â¦\Ì\n\Ç\Óy\È\Êð}\Òxªz¨†³5ˆ','',0,'?'),(_binary '\á $J\ÜkX†45P\æø','wp-content/plugins/ti-woocommerce-wishlist/integrations/woo-variations-table-grid.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.?-\ê!P:œR«\Ðnúp',_binary 'Œ‚A™E\Å{òb–H—+Zð;’l+šx« V','',0,'?'),(_binary '\á#ºô\Åd\ÜwŠiš0³','wp-content/plugins/woocommerce/src/Admin/Notes/Notes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¶– &ž\Ã\ç7}Ï¢÷\Ê\'',_binary 'uxXùX:½Wh\Òm€þ“\rtqc1^N\Ü','',0,'?'),(_binary '\á&\Åÿ°0V.\Î\ØJ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-list/product-sort-select/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ye¸PZ—4\êu\Ç%’E¤',_binary 'À¢«ž\×\'‹J¨5L»jG\ÕpØ¸%óuj\"q','',0,'?'),(_binary '\á;}q$½šEu•\Â\Ý','wp-content/plugins/woocommerce-currency-switcher/classes/auto_switcher.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ó\Óh\Óœƒ¸\ã4ZŸ\Ü\à\É',_binary '¸}»²:ó\ï,µñ\äò¯¬¾\É\Å[øt7™²À¥AÀ\Ø;—','',0,'?'),(_binary '\á@†‹M]\"° …iNJ','wp-includes/class-wp-http-requests-hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·8\Úþ*‹_R\Ç\à£!\Ä\ï<',_binary '\ÉøJmJR(\Û~³\Ì\Îù1À¡\ç¶(n·zWt¤Z¤! {','',0,'?'),(_binary '\áC_4\â˜mK\ã\â\È„T','wp-content/plugins/woocommerce/templates/single-product/review-rating.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'øÈ€ýFo¥7¦\ãŠ?‚¼',_binary '=‡fLß¿µÒiö‚´\Z\ØÉ¡78º¸ò®m\n—','',0,'?'),(_binary '\áT\ÂT²9Ü°\Ê\Ø\nj\í~','wp-includes/blocks/query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~\è9½.*¹?‚\r\å\É',_binary 'N\rCŸ+\ï*`~\\{38ý«pnq÷Þ °\r7Ý™_Ž','',0,'?'),(_binary '\áYm\0\È\0CñŒ&c','wp-content/plugins/woocommerce/legacy/js/accounting/accounting.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>~ò‡z»)\Ôÿ\Ë\ÑB7ú',_binary 'Š®9QJò;„vñ¬gˆ1i\èEý·\È\0@\ÜK\ÎO','',0,'?'),(_binary '\áZ±Ž®(>(ª1bÞ«”Z\ê','wp-includes/js/tinymce/skins/lightgray/content.inline.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹lo7\Ör79wA¬U\ÉE',_binary '\Ìô\êEýÿ¬P¥¡\ã[\Ó¼•xðv1i0\ëh;†Œ¦ý^J','',0,'?'),(_binary '\á[°9>\Ò0\ÐEeh’','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/autoload.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L?\Øôe¥e¾°¶c°«±]',_binary '—\àÀ(>I\Îÿq\Øì‡š\ïó]Å—\áš<_\îe³\×\'Õ‰”','',0,'?'),(_binary '\á\\m\â”]I{‘\ËB]¦','wp-content/plugins/wordfence/images/icons/check-premium.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ß‡…º“`Þ©:\r‹N·',_binary '•&«\Æy$ƒf\Ü\ÓDó\àz’²\ãú‘\Ê9Í§÷|VqV\ê','',0,'?'),(_binary '\á\\øõ¶ø$\ÛI¦H\É\î¥','wp-includes/js/jquery/jquery.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ý]­\Ôu‘\"<Z´\Ü\\\Â',_binary 'VKlý\Õ-]«®\Ð\ÂKC\á\âR:ðûŒ\"ž·ì¹¾G`jI£','',0,'?'),(_binary '\á^ž€þœ\'t\éú\Ð,¹ob','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-orders.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' “\Õ9x<s0\ÚM…:8œ\Ü',_binary '½o™I}’B8,£™fµ =w\è$}.=¥«‰,\Ä€nŽ','',0,'?'),(_binary '\áe\í®¯\ßÀ‘:Ö¬p6\ä','wp-includes/js/dist/vendor/wp-polyfill.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ú\Ö\Ï\Çû¿y”¸\ÞA_\Ô<U9',_binary '‘òs÷e˜oò0ý–™9\âSøo¥vK%6\Ç\å%_þ\ç','',0,'?'),(_binary '\áið\Ì ÷/ö=\å“\Õ,A‡\0','wp-content/plugins/nextend-facebook-connect/providers/disqus/disqus.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ†.Fh\Ã\È4º}?\ë\å\ÅJ',_binary '|m32¦} \É\'O\Û+=™M\á^~d,\0A\rH\Ñ/¹_\Ù','',0,'?'),(_binary '\áq@/»¹ê¦‘Ùž-M\Ë','wp-admin/network/site-users.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YT& ;\ÝPo\Ø=÷',_binary 'Z_º\Å\ë!Ê¦%\'þÖ«\ndñ«J\ïò\ÑW ‚‡','',0,'?'),(_binary '\á€HÐ¸þ\Åo%p“k}\ä\á','wp-content/plugins/woocommerce/includes/wc-template-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Î.7z;\Ô;e›÷&AEt',_binary 'f\ÈJØP\áÁÿ\æ3 ç²¹\Ü/G×¡Fõ6\íT³\í~\ÐuW','',0,'?'),(_binary 'á†¬’!¹.’\ß\Ógâ‚¥\Û','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Formatters/CurrencyFormatter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬/\Ô=J±;ed\í÷ ¤',_binary 'Ü‰I`­½Ö°dg1E]r\Ìô\Ñ—ù<;ƒsHôó\ê','',0,'?'),(_binary 'á“»‹»¡4\Zƒö!lÝœ\ç','wp-content/plugins/woocommerce/src/Utilities/NumberUtil.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~w#¤\Ï\\«:_;+\Ø3cÒ‚',_binary '[\æN¶g´¡\â}\ßƒµ÷RJ©\Â]\Ó\Ú}‡pe¼','',0,'?'),(_binary 'á•µ7\\Fû|‹[Eª„\çl','wp-includes/sodium_compat/src/Core/Curve25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`/õ-?ùh|X.<ö\Ò\ê\í§',_binary '\îq\Â<\íðôS\Ñ<iõûC%Z™´N¾ŠN\à\Ê<Mj','',0,'?'),(_binary '\á–\îa0P@\Üa\\xŠþ-','wp-includes/blocks/social-link/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'øj³œ;Ž™¹\Ôÿ\ÒG24',_binary 'A¬«¤­N8L{ø‹\Òc·\Å\á#\Ü%‚*šŒ’\ÓK\Ó\È','',0,'?'),(_binary '\á™>Â“\ê\Æ\Ì\nô5´\ë\äZ','wp-includes/customize/class-wp-customize-image-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'jÿf¥\ì³	Ë¥\Ø^\èÐš',_binary '¨\nu ¨8\á\rYYµ\ä:\nVkÁ¢ý.aGˆóGoM','',0,'?'),(_binary '\á™\ë5®®	9‘o^ß¬!HA','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/event-emit/emitter-callback.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«\Ý^\áÞ¦A„‹uQ\Ï‚',_binary '\')LŽ\ÃBÿ{\"sùH¨•%”\íŽno‹ ;2!û','',0,'?'),(_binary '\áþeZe£´a—7\Ý','wp-content/plugins/woocommerce-multilingual/res/js/taxonomy_translation.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–œ²ðþ¥\é)\Å,\Êau\Ð\Æ',_binary '\Ç³¯¾ö7T\n6Œgƒ¶Y—,g\Ø]™)ûðxQEñžN','',0,'?'),(_binary '\áªFS\ØÔca7/˜B\Ð\Ò','wp-content/plugins/woocommerce/src/Internal/Admin/ActivityPanels.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\ä\0]õ<–¥\Âø˜x„@&%',_binary '.±\ãv;\Æ0oU\Åa(ï†¾y º\ÔW²\Ã°O¨¥','',0,'?'),(_binary '\á¬;ÁDthòE\ÓG\ì>“H‰','wp-content/plugins/wordfence/modules/login-security/classes/model/view/title.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÍÎ“õÿjN÷y¥\Ã8',_binary 'U™\ÍAM¦V\n\É\ÃPWkŽxuû		¶\Úûµ›Œ/ø=','',0,'?'),(_binary '\á½\ÂÈ—~sÛ«£\\$ƒz™k','wp-content/plugins/ti-woocommerce-wishlist/assets/img/admin-update@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Bðšw)ú\Û\Í\ì\Ë1>\Ó[',_binary '4Pz\ä¬r›7÷õ:F{\×5xbýH\ß¼i-&','',0,'?'),(_binary '\á\Ã\0Y¸©‚\Î\Ý\åŸ\"¦õV','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-address-block/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ^o\äV£©r_\Â\Ú9 ˆ',_binary '„j,¯%;:»)™\ï\Ãð\â1r­¿\"\ÞÝŸC´-ˆ','',0,'?'),(_binary '\á\Èû›m|\ë™ybœÁ¶\á','wp-includes/class-wp-recovery-mode-email-service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì\ê  ó­Guón‚Ž\ÉEt',_binary 'Y\áÑ¾LP–­\Ï\Ý=NL‹•¶¤\ì*Î \ËT9\îI­(','',0,'?'),(_binary '\áÓ–f\Ó5Ï:d:1´MB','wp-content/themes/flatsome/assets/img/payment-icons/icon-interac.svg.php',0,_binary 'NEÁŽùôMT˜ô\æÛ·',_binary 'NEÁŽùôMT˜ô\æÛ·',_binary '™\È+-¤Osœ˜!S|Ÿ3u>KOÈ¶b\Û\Éy\Ú-\r','',0,'?'),(_binary '\á\Öì®†™0ô°¦\à”TI','wp-content/themes/flatsome/template-parts/header/partials/element-button-1.php',0,_binary 'š\çt>Œ\Ê\ÖK•|Ð‚ˆ-¨',_binary 'š\çt>Œ\Ê\ÖK•|Ð‚ˆ-¨',_binary '6ivFn;5×Šu,wuNM¼¾mR¥­r5{¹Ú¥¥cR','',0,'?'),(_binary '\á\ØFžøùe\Ñ\Ñx\Í$›6','wp-content/plugins/woocommerce/src/Admin/Marketing/InstalledExtensions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'FHo8MŒ\âS/\Ç÷Ç¢ÀŽ',_binary 'B\Ûò\Ñü½z(|´+SQú]Þ²	)Xñþ¶Ðº\ZÁ','',0,'?'),(_binary '\á\á\"\ÐC*ÿª\×š\Ý.®±','wp-content/plugins/wordfence/vendor/.htaccess',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£E\"xK\Ê\ê{\Ç8ödS³',_binary 'C‡¾ö½\'r…9½\ì@\âK¡Þ†t¡ª™ö\â§w#@kº','',0,'?'),(_binary '\á\ã\Ð\Ç4k8>¥DgW\àŽ«','wp-content/plugins/ti-woocommerce-wishlist/includes/update.helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k¢®\Í6¥$ ~ù£',_binary '\åc[UX°:\\ð\Ç÷š\'f)äŠZ„:€±ð\íÂ…X?','',0,'?'),(_binary '\á\æF‚0<7g Œª','wp-content/themes/flatsome/woocommerce/single-product/tabs/accordian.php',0,_binary '‘\éù‘	Ñ™ e|(',_binary '‘\éù‘	Ñ™ e|(',_binary '\ïY\Óg…\Ó\ë °„_\Â\Ïvføe+‰ S\ÃJõ','',0,'?'),(_binary '\á\ê9—.ùžI]-\ë\èµ','wp-content/plugins/woocommerce-multilingual/templates/trnsl-attributes.twig',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Á§vðÙ¨¸Žü=¯\Ç',_binary 'Œ°\ÊrO?¹\è²\â|“^\ãl«\n[\ÎjOª\ØSúH¸','',0,'?'),(_binary '\áñ\\9Ã£>œŸ„Iz4“c','wp-includes/js/tinymce/plugins/hr/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤\Ék+%Á5l3\æÁ!-¹³',_binary '\Ù2`’”\ÙRi€L³#eØ„ü4\Ç6ògôªp†o~ø','',0,'?'),(_binary '\áô—+!5”ip E','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤0R\à\ïö$|~š\nü“v',_binary '\ïk\èipEû0mÅ—\ê™\Ç1tõM¡F\Üe\ÅZ\Ð\n\éRR±®','',0,'?'),(_binary '\áú8\Ó\nÿó¸°µôo‹\Ï','wp-content/themes/twentytwentyone/assets/css/style-dark-mode.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i	s\Ç.Nj¢e\Ïu´°\r',_binary ']Q¯Å“dŠHA½‹Š\ãyx€6]¯_Qv¬_','',0,'?'),(_binary '\áüŽ$;¶\ÆE; g\è\nWm','wp-content/plugins/nextend-facebook-connect/providers/github/github.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨¤›¹%k\î)ÿ„¥\Ê`M²@',_binary '\"Ý \Ð\ã\×V=½\ë\ÕuE¿1±8	|²Ÿ>¢$£¨\éûnt½','',0,'?'),(_binary '\âD\ëÁ«\ä','wp-content/plugins/woocommerce/templates/checkout/cart-errors.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'MxN7\Z	Cói=’Ot£¡',_binary '\â\ÚüDn\×ð2½\ê\ä\Ù÷\Í\Ì]Ô²\Õß©3, \ä]','',0,'?'),(_binary '\âBK†ÀõA—a<\ä­l2','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÉXß“\à¾Å’\"X3\î6DQ\Ý',_binary '!l.º.¬\êGI\î´\n7oe\ÈÑ¿\è\';Iÿ\n\n³ \ì','',0,'?'),(_binary '\â_\ç²\Ä\rl\é[‹|LW','wp-content/plugins/woocommerce/src/Admin/Notes/DeprecatedNotes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f,Wó¯‚DÁxn:Uy\Õ',_binary '\Ýt•9¡‰T\Ø\r6Yb·u$¹•\îTœr\ÕJrþ­:','',0,'?'),(_binary '\â*\Ú\ì½T‹g\×i­¯¦·\Ø8','wp-content/plugins/woocommerce/includes/class-wc-data-store.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>KL(z™V\'\ÜK–F=7',_binary 'iv¶~g\ß\ÇjD\×(n\Æ\Õ@Vù;\î\å&·“¢¾bš>','',0,'?'),(_binary '\â:ù3þ¡ôr1cýz\Æ','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/ManageOrdersOnTheGo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸,Q\n7\æ\Î&ˆ:†,¥',_binary '\0§¦=\É6\ë`ÿ´ª¤Z©\æycd¨‡­;\rXl˜„','',0,'?'),(_binary '\â<J\rŸ/š\í\Ü1Š','wp-content/themes/flatsome/inc/shortcodes/product_categories.php',0,_binary 'Š? b\ÜeqŽ\í\Ï<Mû',_binary 'Š? b\ÜeqŽ\í\Ï<Mû',_binary '”š¬\0J<$-\'§ü¯h@S(¨Q·nª\'I™,=R>ƒ|\"','',0,'?'),(_binary '\âDµ\r\Ø\ÙO ð*aO¼','wp-content/plugins/woocommerce/legacy/js/jquery-tiptip/jquery.tipTip.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Yc7-\Ë\É\"œ\åþÊ¬b',_binary 'Í…õñ\Û\Ü~\ÚR*\åkÕ»mZ\í\'¾\ç\îóð\íp01 ','',0,'?'),(_binary '\âL¶>ÙŸ‰#{6p}Y\ã\Î','wp-admin/options-writing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“\æx¢5xLB©3\ÉW5\Ï',_binary 'g\Ø\'LµW\Ã=\Ç)[þ1¨¥>D\ìË™\Ç{>\èªü&\Å|ZŽ','',0,'?'),(_binary '\âM(,*AhqiX\Øeˆ','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/ui-icons_222222_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡³ˆz†\Ï‘ò<S´\ÓX_',_binary 'Ú¾‘Ž\è\í*6¬øƒ1Z(þœÿö\'\n#¬W£=6','',0,'?'),(_binary '\âU6Ï…s\Äd\Â~x¡ýð','wp-includes/sodium_compat/src/Core32/XChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r*\Òun•rdu¾g¼\íô',_binary '\ÉÒ·<hùboô>óW‚\Ã\Z±N˜Œš e\Éù²ia°','',0,'?'),(_binary '\âXb2\Úb‹\Ä6E\ÈNð\î','wp-content/plugins/woocommerce-currency-switcher/js/chosen/chosen.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\Âü\èuüŸ\Ù#\'\Ôýô',_binary '²’²J¸|N‚\Ó+\æ#„zÕ“r\ê\è!\áòÿZ','',0,'?'),(_binary '\â^}R	\íV7{WI\rH','wp-includes/blocks/search.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú¦@—eP—Dó\"\\\Ë\Ö5¸',_binary '‘X‡\ê©džgÿ‡ \ZE­1ß°býŽó’KŽø1„Ü£¤','',0,'?'),(_binary '\âl\ÛÉƒa‰ndþv\"\Î\×Q','wp-content/plugins/contact-form-7/admin/js/tag-generator.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'øtyY¢@\Õx¨,ôR.À;',_binary 'V]\'ðm°\ãW›À3 T\"\×\n…ä„¿Ã´z\Û~N=œ','',0,'?'),(_binary '\âq“\ÉúÛ’‡‚\Ö\ê­','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-customer-downloads-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p–¡¶‡\Ï\Ç9ô¯~g',_binary '’™5\ç\ìó‰†³\ÒÐ´\×1³¬û¦À\"\Ã2ñ¿\áÿE','',0,'?'),(_binary '\âw=K\äØ¯S\ÈÉ¹\àiœw','wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/volleyball.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼*ªHOŠ=]RþanRù\è',_binary '<\ê\Ô\×C\ÄI™jÃ‚½\î“\è™: -A\ëlSH†ú-ú‘','',0,'?'),(_binary '\ây¨0H#;\èe\n\"¢+','wp-includes/js/dist/server-side-render.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·—Á6Ÿ˜ ‡`ÿCz?\Þ',_binary '8ûÑž ¿28\î«Xé´‡/n˜Tòº(\Ùüõƒ«qV','',0,'?'),(_binary '\â{K~þÕ²Ž‚\ÖÅ²ñ\áÛ¨','wp-content/themes/twentytwentyone/assets/sass/05-blocks/gallery/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\×Nê¦–~‡-]\ZŒ¤',_binary '\Å.v;\ïÿq˜\Ð]¨m¶,ü\\Ø”¯\ÖÁñ¡Zrý.\í\n{','',0,'?'),(_binary '\âA\à8@«\ÐzPGPµ','wp-content/themes/flatsome/inc/admin/customizer/img/container.svg',0,_binary 'e|`\Ë6l%tVPUŽ\É',_binary 'e|`\Ë6l%tVPUŽ\É',_binary '\Ñ\ÂJ5—Ã„\Î~¹.q\é\ÊJ\Òh2\'\ím+eÇƒ\\ˆt','',0,'?'),(_binary '\â‚~¸<>3F\àôw³r­','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/all-products-frontend.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡¿X´e-Z?\ØO\éo«',_binary 'ÃƒJw>\Ù0œg<¦C¶\ÇN´§¨ˆ>e\Ìo.€\0lø','',0,'?'),(_binary 'â‹²ŸñÍ”\ã\ÕT²…g\Ò\Ø','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-coupons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e÷ñƒ/Ê„C¹\ç`.Z',_binary '\Ùøˆxj\'¿l\ã4bÈ«’§\á£\Ä\à¯5cC\"L','',0,'?'),(_binary '\â J¯t`úxü\Ï,Ã»','wp-content/themes/flatsome/template-parts/posts/content.php',0,_binary '\Å\Õ[FÅƒ\'\Å{UG@€%Ž',_binary '\Å\Õ[FÅƒ\'\Å{UG@€%Ž',_binary '*I\è³\r{\çx¡ybÝ”\Ô2\ßL¼\âŸ|À¨»','',0,'?'),(_binary '\â\ÐÏŒ9x\çœB\"lC\Ì','wp-content/plugins/nextend-facebook-connect/admin/notice.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ñ³“\í­À¸p¢{v•ø',_binary '^Vš\Ê\Ö\íV\Ë)\Zf–±-\É\È\ê++7lù°\Îþš','',0,'?'),(_binary '\â§)ûeŽ‘j¾Nö7¦\rQ','wp-content/plugins/yith-woocommerce-wishlist/plugin-options/wishlist_page-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”2ªˆX+¢5@G\Õ={',_binary '²\ê;¸xmJ‚ŽS7ž¤2\Å&/¶\×~)\æ6\Ó\r\Ú1\ÕV','',0,'?'),(_binary '\â¯¤:\Ù6d•e\'O','wp-content/themes/twentynineteen/sass/site/secondary/_widgets.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@ª\Å6>	›¹áŒ¤«C',_binary '”u\ßŸª\Ìy‡Òº\0vò&¸%˜0)^\Ò\ZAóˆ6÷','',0,'?'),(_binary '\âµr\r\â\n\ß./t\ni=Cy','wp-content/plugins/woocommerce/assets/images/dashboard-widget-setup.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\åB)4‘‘\èŸŸ¬\Î',_binary 'Ñ¢”˜ 4ƒj D~™‚v•*óZ1-\ÎC\È)\é\Z«\çs\í§','',0,'?'),(_binary '\âºVŸ\ØuXaý¯4ìŠ‹°','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/multi-select.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\åƒ\Û?©; :\'J³A\ã',_binary 'hp\Ú>\Ì\'I\×ß‹övC¾,-Bm`Y¶%löfY','',0,'?'),(_binary '\â¼÷|`Ó‡»‘,€²&','wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-addons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Es-“\Í6T9¨\ÞÊ±[}X',_binary '³\Ã\rÁ#\ì\n-M™µŽ[`*ehÓ»(\Ú\Îg»7š8','',0,'?'),(_binary '\â\ÄZa9ŸUÀzü³Õ¶','wp-includes/class-wp-date-query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Zò¼=+H±™\á£K\É4\ï',_binary 'ÙºSVI\é*»\\E”LTŠ5‘[\Ç­B²%¸\ãÿ\Ö=\n¥\\','',0,'?'),(_binary '\â\Ø\Z	\Ë\\(†´\é_\Ó\â','wp-content/plugins/woocommerce/assets/client/admin/components/index.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Öµ*[\ÌG$—\ÐJ°–u[U',_binary 'a#ò)ýaH9ÁJmA¶³LGk7b\ì\Í\ÏA”\Ù\Ç','',0,'?'),(_binary '\â\â«cÛŸ\\-GLuïªž«','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/packager/icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÞB7Š\íc\Í%œsT%',_binary '\n\ê#\"ê‚Ž\Ð|­š	\âxbó–²–\ZXž0dG»\ê8¢—','',0,'?'),(_binary '\â\äÄ¸:\ß,p´1¿\ÛHr','wp-admin/js/dashboard.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“4vùð[ž¯r\å(\×',_binary '2Ì‡!UJ\ï;\ÞD<s˜Ë•G–V¼ð-\Ãx†û)Š','',0,'?'),(_binary '\â\èVt¦¯•%¶k{wsÅŸ\É','wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/paystack.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nªƒð\Æ\"\Ó\â±~I—œŒ5',_binary 'q—‘pŒ\Ï,\î\Å>Ù¡Áß²d”¤*Ac±\çŠ{±5:','',0,'?'),(_binary '\âÿ\ÕÈ¸”ùPô¥<ô=\Æi','wp-content/themes/flatsome/page-left-sidebar.php',0,_binary '\ëhnõ¯­\à^„½\Æf–',_binary '\ëhnõ¯­\à^„½\Æf–',_binary '\ß\Û¨xa\\„a\ØC\Êd·Ï±\Îø\×\Z˜T\\6þ<','',0,'?'),(_binary '\ã\0¼•×•oxi3%\r+]kg','wp-admin/images/post-formats.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÜKÿ\á\Ñ\0“\ä\Ù%3¨\Öº',_binary '9Æºƒ&\Ï]Ÿ¯nŸEu¡Àa]iF\é÷\Æó¿Æ³\Â','',0,'?'),(_binary '\ã5\ï\ãö´ý˜‡Œ¦','wp-content/themes/twentytwentytwo/inc/patterns/header-text-only-green-background.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8iU›Ë¾V\å®NAUN™',_binary '\Üõ\Åk›Â¨R®~`\Ù@˜—9P\Ãò[)h\êbQR','',0,'?'),(_binary '\ã	óN^\n)÷¦ Q0 ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/place-order-button/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ú\ì«ôJT\Æ\å’%2\Äó',_binary 'ï°ŸU\ê\Ð\ØM°nœŒœ½a»´c\Îÿ\í\Ê\Ê8\ì|97','',0,'?'),(_binary '\ãw<t/u\áH>ŽŒ','wp-content/themes/flatsome/inc/admin/customizer/img/overlay-center.svg',0,_binary '®¿W\ÐI	yô-VZ{',_binary '®¿W\ÐI	yô-VZ{',_binary '±%°\ZžH^˜ÿ×ƒv7 ¼$ùH\ä\Æô¥]µ•\çN','',0,'?'),(_binary '\ãx\\5nžW\n¬Š\Ò\Ý\Ç','wp-includes/blocks/embed/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e)\Ö}•úQZUžÿ\ã-\Ô',_binary '£kƒ˜	¥xb®{i¤aõ\ë\Äx|\\	Ñ˜\ì\åV¬U±','',0,'?'),(_binary '\ã&17 ©1(k\ÄÜ¡¹z…','wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-control.php',0,_binary '€yW›ô\n¼@•*rÜ¬ø',_binary '€yW›ô\n¼@•*rÜ¬ø',_binary 'ƒy\ÄÁ™ IJ³\ÆO\ß;5™Ö²gi\Ó\ËÕ\ÖŽ[†Á¯','',0,'?'),(_binary '\ã0—;\ê-,\ÓA\ÞEy\æ','wp-includes/theme-compat/sidebar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\áS\ë“;‰·Iœ\Ù(',_binary '\Ûð“§U\Ækx\Är\å\îLb°\"\î\ÌJAFž(u;	\0\Ã&','',0,'?'),(_binary '\ã8d\å\Å¦pQ‹ºSci','wp-content/plugins/woocommerce-multilingual/compatibility/includes/class-wcml-wc-product-bundles-items.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}.U\ß\Ý ®v\èeôq¼û',_binary 'y6\×1\î\Ë\Êb¼&£i9ÿ\0Î¨‡¢z› 4\n\ÅûL!','',0,'?'),(_binary '\ãB—‡\"^I\nš\ÒùhÆœ','wp-includes/js/dist/dom.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ð´}¤±½Q\Ü\è\'a\Ôd¸',_binary '¾\ç›ü®.\àø\r#©6?(r®\Ç0!È¨\àl6U\Ð\É-\âù','',0,'?'),(_binary '\ãBÀ+¯ø\Ú\Û\ÓG¸÷¶–‹','wp-content/plugins/nextend-facebook-connect/admin/interim.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'O‰ü\ÞÕ¡\çVô‹£¤',_binary '¢\ÎýS¯E£\äJs\æ\ÈÿCXÐ°	3\Ð\ÂÕ²È§¦©ˆ4','',0,'?'),(_binary '\ãL\ÃfL\nA7j\Ï\Ö}\éw','wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-path-processor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­¥°7Ì¾^\ÆN5TUù',_binary 'AŽ\ãñû\ám\0s«\Èsµ=\Ý]\é\Ï\Ê~\çù*6•fšz6','',0,'?'),(_binary '\ãS\à.ƒž\Âta\Ë\ÙVj','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/repository-end-users.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7ýÁ-3n\Ø\æ­Lò<',_binary '1öÍ»|·Ya>|\Ä/•\Â\í9E\Ö\ÙB¿/\n7\ëV·ü\ç\ç)','',0,'?'),(_binary '\ãa\ÝOj\'÷Å»D*ÖV4','wp-cron.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ü&\ï>F’m8ÉƒK`\Ù',_binary 'hi\Ð\äg£üF±¡œ-\èò	0&‰·\â†õû€\Íyl‰','',0,'?'),(_binary '\ãdò‹\Çõn\Íý9l/¾','wp-content/themes/flatsome/inc/admin/options/header/options-header-top.php',0,_binary '\Þ9\ØF\ìL3‹« þ_¶õ',_binary '\Þ9\ØF\ìL3‹« þ_¶õ',_binary '\ÝÇ¹l	H­©~Ng¼\Ô8•½`ŸkyŒa\ïzeÞ¨j','',0,'?'),(_binary '\ãm5^¹\ÛÀ\Çu\È\ê°9>','wp-content/plugins/wordfence/views/blocking/option-bypass-cookie.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ß(t\î\×„\r4\Ô\ÇcR',_binary '¯^\àVô£x‹þ\Í_:\Æ\ák	¤\Ü(£\á?½B\Ë!','',0,'?'),(_binary '\ãtMº&Žx³V±™¼\Ì\Ö','wp-content/themes/twentytwentyone/assets/sass/05-blocks/_config.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\|K\êAˆÇ€\Ð-´',_binary 'Ù‡O\Ïx\æ,\ï{e>\Åz\ÎÉ‹±ƒs—œ¹\Ü2C¤žÜ³','',0,'?'),(_binary '\ã\è{¹4ð*\ä]•','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-items-block/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£õ\×ô\r¶[\ïVr¡\Ûó•',_binary 'b\Þ\Ê\Çt‡³Ú® L$£Í­\ãJ(ñ!\âbÞ¾L','',0,'?'),(_binary '\ãz…±©£¹øtp\Ëlù“Š','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/cateogires.svg',0,_binary '\0Æ™ŽI¯\Ê\àŒW@^rù\æ',_binary '\0Æ™ŽI¯\Ê\àŒW@^rù\æ',_binary 'Á’$†œ2^?¯\\£Ð„\æ¸W\Ð\Æö\á}@\È.L‡bÒ³','',0,'?'),(_binary '\ãƒeDF\ÛSŠK¯\Åi','wp-content/themes/flatsome/inc/woocommerce/structure-wc-single-product.php',0,_binary '›¥-i¿¿‰99ÁC\0l¯A',_binary '›¥-i¿¿‰99ÁC\0l¯A',_binary 'Ao·µšRªg«0º\ÉR6§\ë-^—@-\Óÿ2|\á	…-¤l','',0,'?'),(_binary '\ã†#\' º~“º\Æ\ç/z¶F','wp-content/plugins/wordfence/modules/login-security/views/manage/regenerate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'šý\é\àÞœ\át”jÌ¥<˜',_binary '—þ\Ö\ç\ä\ãT¤ú¿¨	?Wˆ¦E>}½u‘¢\ë®+¥»','',0,'?'),(_binary '\ã‘\âñ®\r·[\ÝÃ––©ü','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/components/action-button.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ïº­º\â´5ƒ\Í0­_§',_binary '£l´¥ðe/\Þ*ršG#£\Ú*Zº‹-q¿ªŠ\ÈýOoz','',0,'?'),(_binary 'ã”—Ì…=ðU‰óhUr,W','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/TaoInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷PS\êõ5§gzgI\æ-²',_binary 'gè€þ\Ô\0Á©\×h<\Ä&”M0À\Æiu^ºÌ¸Lð_','',0,'?'),(_binary '\ã™O\â¤™¶ý\å\Ë8Q‹¶','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/badge-simple.svg',0,_binary '\é\âA§³D¹	™\Õ÷„¨',_binary '\é\âA§³D¹	™\Õ÷„¨',_binary '\Ætœ\ä	ñ?\ë\ÚM=xT\È\Î5\ì\Å=?cK\Õ\ël¹ð\"\Ã\Ø','',0,'?'),(_binary 'ãš•SUbPð\Ù\íî…¤R		','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductCategories.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡.¥\ãù´˜ª\'»X¬\íñ',_binary 'N\r\Ð,@r?ù9 ›[Iºó\Îg¨\r©UW]O`ýÙŒ','',0,'?'),(_binary '\ã e\Æ\\\Ûk\îc\ç\ßXf','wp-includes/customize/class-wp-customize-upload-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ø“‰B8¥?)ivr­`-‹',_binary ' ~t~¸ýX¹«% ˜\ÌK/3-n6\0\ÈRB—Ö¨G–','',0,'?'),(_binary '\ã¢Rs{p~ž\Ú\ägÐØ‘\Õ','wp-includes/css/dist/reusable-blocks/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'hk-Q6U‰»J\Ö\ëÓ',_binary '­\ìÑ¹ÿQ!!\ÉTý\èZk0£\Æ\Û\è—\\ªœ\Ç','',0,'?'),(_binary '\ã®®©œ\ë\ÅÖ©C¬<[U','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-guards/test/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_Ÿu\×ñy².|^\ào\Ë8a',_binary '»…]7\r\ïr\'\ÔÆ²<J\ÊU\Üx¿\Í(³­7Ö¢B-','',0,'?'),(_binary '\ã±vŠ\Å4g?ÿ7a­&\è','wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-php-autoloader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\"e‡\ÂLŒPô¤\È!ž',_binary '¼eQr1,—iqM¸m\Õ!ƒ\Òô!×§:\ÞQ\ä\r‹\Í¦Š]\à','',0,'?'),(_binary '\ã\àmkr˜=•`2ü\é4ðš','wp-content/plugins/woocommerce-multilingual/classes/multi-currency/exchange-rate-services/Service.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ü¦s ?HV\îÑœ`V#',_binary '»¬£‡&–L­\í[\ç„\'´o\Í	¤5”vÞ§ePû”zšö-','',0,'?'),(_binary '\ã\áq\Õ82½úv\Â&#M','wp-includes/js/tinymce/plugins/wpview/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ýj5qŒ™S\rXŒ\Ú\îi\è\ê',_binary 'Ej\Z…³\Z°I\Óñ\Ó3J\Ä\çG»jVÝ’¤¤6<S\ç9P','',0,'?'),(_binary '\ã\ã¶H‘Š§„\Ï%\â÷\Ú,ƒ¸','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_cc0000_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|¦%;w©ý¯Q»8ø\È@',_binary 'wi>\Þ6·Æ¬\à4\È\å .N\ÊC¹\äž\Zÿ4ªIOž\Ù','',0,'?'),(_binary '\ã\ìó<kUJv%ò1‚‡','wp-includes/fonts/dashicons.ttf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7¨¡\Â÷\Þ|±¯\Øû¡‡Z',_binary '\ßDº\ÊD+ve‚h \Þs>±˜¬Züfo‚÷vWˆ~,=','',0,'?'),(_binary '\ãúi¹¤\Å\\\ÆK)XZ„O','wp-content/plugins/woocommerce/assets/client/admin/chunks/activity-panels-inbox.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'—ynú}€GC\Ð\Ó',_binary '\Ôcn@\Ð\Äbr{T\Å>nSœ¼‰\rhÛ¤õ6W÷','',0,'?'),(_binary '\ãû{\á˜j\Ø(Ë‹Ï‡(','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/coupon/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ö¹>\Ö\ë\î\È\0¨X‡}',_binary '\àã‚\Å\Ê\ÆViýd„—\à\ÎÀÎ–HŽN\ZHZ$Z.¾','',0,'?'),(_binary '\ä\Ô`c´@3\í\Ï\Òvz´','wp-includes/blocks/legacy-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤OB´€\ê\ï•\ì\0£pðüû²',_binary '\ÖIõuL\Ö!\Æ\å\'U\Òh?\è2¬\ï\Ë\é\à†A«¥\Ù/\æmöu','',0,'?'),(_binary '\ä\Ñ\ç#ÿiJ\å®H·?ö@¸','wp-includes/class-wp-http-curl.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J­\ä<\ÎLH(b¢$Á\Ó',_binary '}\'\r“Jd{˜\ÓÈŒ\'—0Ÿ\Ñ5½v+¥†“g\Èl¶.›%','',0,'?'),(_binary '\äw¢\Í\Ó\ÖV¥\Ð\ë¼!\Ü','wp-admin/includes/class-wp-ms-themes-list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ù\ÂG[q\ÃÙ…X·Y\Ù\Ì',_binary 'ñ\Ôó\Ð\n\n·>®LXzìš¶`\Ü\ÔÐ’cA\Èh\n\Üjd','',0,'?'),(_binary '\ä¤\Ú\É\ÚO\íx\Å#ÛŸ”','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Utilities/ProductQueryFilters.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7¼\ìe\äµ3`/ù]\âW',_binary '¥&™\ì‡!.^¥\0AAK\ÄdqªR\n§{P¯l3W›–h\Æ','',0,'?'),(_binary '\ä\ZôK\éõ^ª½û\nõ','wp-includes/blocks/image/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%\Ù?ž²zc\ê#É´C\Ý',_binary 'ó#Ì®\È!B/\ÏHs«	’\Ì\Ð@¯\äz@\Ôð‡»¸Z','',0,'?'),(_binary '\ä >hŠ{:»(\È\ï+7','wp-content/themes/twentytwentytwo/inc/patterns/query-irregular-grid.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ì\Å\Ç;—\0[Á¸¬^t\Å!',_binary 'iJ6»¯,,T|§hƒ½X\î*\æ	\Ò\Åiø\è„ÂŸ\Õ\Ç','',0,'?'),(_binary '\ä,°\Ò*iV¨O1a\ß\n3\ë','wp-includes/blocks/post-featured-image/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'j{K=–N\Ía„\é0?g',_binary '•!Ë°\à[;<€ÆŒ\èx‰\ÓÜ–[´\ntþd)˜„DQ','',0,'?'),(_binary '\ä/ÁVpkùú^õB¥\\\å','wp-content/themes/twentytwentytwo/inc/patterns/footer-social-copyright.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡–RNpâ°™dx½`\é',_binary 'ú‡F¹Q°\ÎûQ\Ðû\Ä4X\ÕxŠ\Ú&\ê$lH\ßù\Ôkd\Ø','',0,'?'),(_binary '\äBÏ¶² n(@B\ßÍ°Ÿm^','wp-content/themes/flatsome/assets/img/payment-icons/icon-bankomat.svg.php',0,_binary 'ò;V\Æ\Ðõ\Ðu’dz¨œ\ã\Ä',_binary 'ò;V\Æ\Ðõ\Ðu’dz¨œ\ã\Ä',_binary '¶ø\Ï\É™EGó‹\Ë\è\íŠžÊŒ[\à\ËPù|r$À','',0,'?'),(_binary '\äM£,\Ù\Ç	\×\Û\âY’\Ïp','wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/components/alert.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ãÿH\Å[¢g\î=¤\Îcó',_binary '¦ú4@\ÇDZlø8M«~MŽ\n\Ç\×?/ÎŽ²™J.lSÇº','',0,'?'),(_binary '\ä\\/è„W\Þn\Î-•\n 9','wp-includes/blocks/image/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£\Ï\ÕZ¢ºû\Þ`My\Ú0+\ê',_binary 'GÓ¿\à\ÐH1\Ûo½\Ï2²õ›@\âŽ¢&\Ñ\ï~ôW”P\í\Â','',0,'?'),(_binary '\ä^Û›\ÄýÀ¯¡®¶±F','wp-content/themes/twentytwenty/assets/css/editor-style-block-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LN CkrŸªa »Š®',_binary '’vfŠ˜„3/ƒõ*“\Î\×x‹W´\Ë .k’¯˜s','',0,'?'),(_binary '\ä`§b1*œHB…ñ€j!','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/phpunit.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']ÿ¨oe–$I£0öØŽ',_binary 'r\éô¥{†°\ì6\ÌF‚óÔ¿˜ÿÍšö{‡8u¤œòb“’','',0,'?'),(_binary '\ämÐ™¦\rnX\Å´ig“\Ù\Æ','wp-content/plugins/woocommerce/assets/client/admin/chunks/5487.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\çÁ—\Ð\É\ÃpÀ¢£³­n\Ò',_binary '—Ÿ¯¥+\ç\Ìu¬Eu=\æ³É€~.½Á_˜ÀrõŠµ\Ù','',0,'?'),(_binary '\är/ã’•£±\'–¹×´K','wp-content/plugins/woocommerce/assets/images/onboarding/creative-mail-by-constant-contact.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ý¶«9ƒ\"9\ä—x~¿É¸¹',_binary '½tâ¨¯øJð³S\æžÝ„\0C¦¬*\ér8\Ìû\nô\â$\×\r','',0,'?'),(_binary '\äry @rÁ†tžc\åIF','wp-content/plugins/woocommerce/templates/single-product/add-to-cart/variable.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ëdþT|\Ó\\#\à`IF·¡',_binary 'Ç­\Þ\íül\â¿uì¸‚¶Sô\ì4\æƒ6;wK´','',0,'?'),(_binary '\äz^}ù„Â¤hh3\ržˆw','wp-content/plugins/wordfence/images/options.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥V\ÉðÑ´®\Çó»A\ï¥',_binary 'D:\Âbw\Ã#^›€\Ï4¬BÀKIP‰?	zÀn‰V\Ì_','',0,'?'),(_binary '\ä~Àpp(µw§5\Êz\ç›i ','wp-content/plugins/ti-woocommerce-wishlist/assets/img/admin-rescue.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Kš\ÚZ¿ûr–`Ø“•4',_binary '†¡.¥c(½~f¡\Ú\à\Ù÷­,ZŸ3Š†x“ÄŒŸWª','',0,'?'),(_binary 'ä‚¾%/\\´Ê°î‡©^f\Ù,','wp-content/themes/flatsome/inc/shortcodes/box.php',0,_binary '\ÔŒÙ\0²\é€	˜\ìøB~',_binary '\ÔŒÙ\0²\é€	˜\ìøB~',_binary '\ã°\ÄB˜üšûôÈ™o¹$\'®A\äd›“L¤•™xR¸U','',0,'?'),(_binary 'ä†®G*\×~–5H\Ò\ÜI','wp-includes/js/dist/vendor/wp-polyfill-dom-rect.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'aŸx¼“<Èƒ|ò\Ï+QW',_binary 'û™L\×c¢c±\É9\Ô00p“¢’\Ë$ÂŽÓ¥†Œ²ü','',0,'?'),(_binary '\ä‹M&,c…&š	+8–\Õ\\','wp-content/plugins/woocommerce-multilingual/classes/Rest/Wrapper/Factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']a‡°­”(‹t\Í5tÄšz€',_binary '\ÎI êµ¬3Æ¤ö6\Ð\åpø\Çn\å\Ô\Ò#\à–\\m\éR','',0,'?'),(_binary '\än’ð\ãŽ!\á‹&›¬','wp-content/plugins/yith-woocommerce-compare/assets/images/05-bg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X:Û‚MzN\ÛS\Ó\Z\×,',_binary '¶Ò°‚©‡H£‘BªYp,¸…ù\Ê$¼¹z\ìAIc\ÏK9e¾','',0,'?'),(_binary '\ä‘M„\íT˜¦R\Ñ;\îa8','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ß\Ò+ør\"`lÒ®ú\Õ\Þvv',_binary '#5}Í	ó\\fŒ\ÞW–¶¼Ä°\Ý\ï~C\Ñ`¥‡Où\ë”c,€','',0,'?'),(_binary 'ä’ž>U¨\ç\ä\Ìðœ¦\ÛD','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/WCAdminActiveForProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\è\Ñ¡\0\î\É%Äˆ\È7ƒž',_binary 'm7\Ø/\á±7…¤¼k._“ÿm\Õfª„z ýÿ¨\â±','',0,'?'),(_binary '\ä—wn™˜ð¼Ù¢ñÑ¨','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/ajax-terms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'úE)òM\ìÁ˜O pZûj¦',_binary '6R…<<\ë\Ä\r½$–bNü$¸…\Æ3º8MSB\è8°\Ø','',0,'?'),(_binary '\äš`•­Uö\àRð”I','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Payments/PaymentMethodTypeInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!¶¤ó™:\Ï<7',_binary '<.V¨|.yl€AMT\Ôo\' Â£›?¼\Ý\âh¯+','',0,'?'),(_binary 'äš¨d„®T-j2J*\Ê','wp-content/plugins/nextend-facebook-connect/providers/amazon/amazon.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\Ø\ç:Y%¾ûWa \nc',_binary '²U„D0\à¤@÷\äa÷\è\ç\ØIÒŒ\Þ[£A,\ÓûÁM','',0,'?'),(_binary '\ä›h\ßÑºtX5õU','wp-content/themes/twentytwentytwo/inc/patterns/hidden-heading-and-bird.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Vs\Öû4P#£\ã\É)c\"Š\Ï',_binary '2Àc\ä\nöÒ³ZB5^\ÐD„aU\ÊÈ·\è6-\'G\îc\éF\ï','',0,'?'),(_binary 'äž°9{!¯\ä`¼.÷¦°\Ó','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-product-reviews-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\í’+ŠKœy·{)\ã @S',_binary 'fA\êŽ!F\ç€\ï„E½CO`\ÙJVi’¦×¨TG','',0,'?'),(_binary '\ä¢¸÷Hœf­ÀNy;','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/images/Feature-request.webp',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô~Ò³Á)§s§\ÜV/÷J',_binary '©Ÿ;¥½¤€x˜¦z‚YÐ¶h~’G\à\ëv/ŸXŽEo','',0,'?'),(_binary '\ä¦\ígL‚µ\×N/­S\r~œ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartItemsByKey.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹˜g/:¼œKS\ïC\ÒA',_binary ' \ÑbYQNvÛ¤ûo<.¼\ê+W+M]jM‚\Ã\åÒ Á\ì\Ù','',0,'?'),(_binary '\ä¬I*yu\é•)B\à\æòw','wp-content/plugins/woocommerce/templates/checkout/form-billing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',R97|’\î>Šº«e',_binary '‹ôD*bBˆ0\Õ\ëJgº\ÃP¦|`•\á\å(\ê\äÙ“ö','',0,'?'),(_binary '\ä¾úýŽ¯‘&\ê.’1	t','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/sr-Cyrl.js',0,_binary '›öù\äCqW°\éA9§\éL',_binary '›öù\äCqW°\éA9§\éL',_binary '\ã8\ä\Ìñ\î³#{o.ˆ\ß:k€|‡w‘w!Ý²Qð\ä','',0,'?'),(_binary '\äÈ½N\ÏG÷V\ésP\é­\Ú3˜','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-list/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„Š_´Xœ‹I j!\è&ô',_binary '|0\î›o„/\ÒM8SX\ç*„½†’\å\éˆFDeO¯p\Z','',0,'?'),(_binary '\ä\Ðd™­˜›\çx\Û\ëVcku','wp-content/plugins/woocommerce/includes/tracks/class-wc-tracks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼ú9Ž­\î_‡8\Ã\ïc03',_binary '‹A\Ûf õ ¾<uR\ê\0TU“%¿	ÿµñ¯š/jaPE','',0,'?'),(_binary '\ä\Ög®\âö#ª—_\ÓÆ’ý6','wp-content/plugins/woocommerce-multilingual/classes/pointers/class-wcml-pointers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Áb[‰v±„–ºS3_‹‘',_binary 'h]?¼&!*9Ú‘\':9©k\Ñ\ZóÂ« \Ør©}²0\É\ß0','',0,'?'),(_binary '\ä\ß\æ¨\ÞzpKC²{\\>‚ó','wp-admin/js/dashboard.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'klQ,£bh\n\î3«\ÔUœa',_binary '\ì\Çò3S—ÑŽ\r¿LùG \Ãg&µ/!/\Ç]Ý£\ï','',0,'?'),(_binary '\ä\ãd\Ì\ç\Èùñ0u7ˆ\Ò\êR','wp-content/themes/flatsome/inc/builder/shortcodes/ux_instagram_feed.php',0,_binary 'œn\Ù\Õ8x;¥Y9\Ð\ÐM\Å',_binary 'œn\Ù\Õ8x;¥Y9\Ð\ÐM\Å',_binary '6F\Ù\ÕDU§€}÷ö·À6[egm% \Øú\Õ*\Ô\á°$f','',0,'?'),(_binary '\ä\ç´{\"‰gGZx½\Ë','wp-content/plugins/woocommerce-multilingual/compatibility/res/js/wcml-composite.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\nl“\ä#…„_\Î\è0``',_binary '½hmiF²g^Yl\Üë¬„ ô…ðm\\;tM4\Ù\n\Ö\Þ\Ú\Þ','',0,'?'),(_binary '\ä\ê¿1þ]\ÃM|®K\ÔFZ','wp-content/plugins/wordfence/lib/wfBulkCountries.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9	+OyÕ®…urOó3\î\n',_binary 'X&o1\'\ì»cgü\î¶mlû¢yS\Ñ\Ê\Ò\Ýt‰ºª¾Á\r','',0,'?'),(_binary '\ä\íR^“¹)5•\àc5j\á','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/allowed-blocks.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o¹V\×rS~mR=\ÐmDR',_binary 'keg½¹(ñÖº5œ³\ëHx\ÈN¤þ\Ð\éø9e¢\Ò','',0,'?'),(_binary '\ä\ïý\rV[vÆ¢\0ù\Ò.`\Öó','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-items-block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ´¢\Çg\Ø…CR\Æ#1w\\',_binary '>C´ .EýŒ&\É}·\ÙòòDš\r\Úø«\n\È].˜\åš','',0,'?'),(_binary '\äö\00‡ùqŸÄŠNy)”\Ô','wp-includes/plugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±q§L\é\Ò\ÃJ\\õÿ‘ˆB',_binary 'ð0\ë­vu³¯§DFŠûZ¢\È0ú»“\ä\Ýö–[¯<?','',0,'?'),(_binary '\äø“ü\Ç)ÐHwB\è0\ä\Z','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/colorbox.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þIo8\ï\ïšóR[1Ë¡-',_binary '\\AÁò\Ö\Ü\Z\Òþ\ç\ÉH5„õŸ\è(·\å®Yð]””7ˆÃ¾','',0,'?'),(_binary '\å7¤€ð/Dv91\Âj/','wp-content/themes/twentytwentytwo/inc/patterns/general-wide-image-intro-buttons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ãû¡}C\ßò\í¨GšÖœó\Ï',_binary '¹V$R‘…Y¬\à\ÕCC(Ýž7:!J5Sž\rƒ\È®P\Ê7','',0,'?'),(_binary '\åo±(N/äŠ¸s\åü!','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'š\ïo `\è\"å«“L­\Ì\Ò',_binary '\Ä±wT¾R]µÚ¹·\ï)Œ\Ï\ÚIù‡#¥+ùF¤\ê+ÁX','',0,'?'),(_binary '\å³]&\âa\Ü\â/}½þ\Ù÷Ž','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-plugin-panel-wc.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Únõü_\'=ÅµJ&š\rû¥',_binary 'L9;\æ9Ü½÷\è\Ü @¶eÔ‰\Ídò@Œr\ì\'<Sot','',0,'?'),(_binary '\å\×-¨g‰+\É\Ëz\êöZ‚1','wp-content/plugins/products-compare-for-woocommerce/berocket/libraries/wpml_compatibility.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡­«÷\ÐM\ä§[[¥ay\ã#$',_binary '\ák\ç`{z\àI¢ý„{\Ô\É\à‡-uWZ–µ¦\ÑÁ\è¤xk\Ë','',0,'?'),(_binary '\åW¨„\ÇôÚŸ/Ÿ{\Ù','wp-content/plugins/woocommerce/assets/client/admin/store-alerts/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô†F\ç\ãÝ–}›k£ºÃ°\î',_binary '¡.Ú¬\Öô\ê‡0\ß|OIk\ÛP|ÎŠ\éK{Q\í?\ê\å','',0,'?'),(_binary '\åódb\ã)\Ö*KE\Ò-Š','wp-content/themes/flatsome/inc/admin/options/helpers/options-helpers.php',0,_binary 'uŸh\Ç]œ;\Ëc¾,¯4S',_binary 'uŸh\Ç]œ;\Ëc¾,¯4S',_binary 'P²\à\à\Ý1*žÿzûyÓ‚™¯(\Ë !ó²ñ567\Ó_ÿ\æ','',0,'?'),(_binary '\å%g\ç”  7‰1T)›~','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/payment-methods/use-payment-methods.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Šþb‚M\ÝY@÷p>£+',_binary 'V\Ø\Ì\03¯Ÿg0ô\îggÃ\"T\Ò(p†³Z!\Ö\Êl','',0,'?'),(_binary '\å\'\Ò`FÌ”\Ì~\ÙÄ–“œ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/view.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C¿ýõØ\é\Ì0\Ð+C„²…',_binary '`>&i(Å¹›…‚C”\Î\ßfÿ\î\ë&ñ\Ï\ì>Y\"¦','',0,'?'),(_binary '\å\'™“}0+k\ïƒw\é«j','wp-content/plugins/woocommerce/assets/client/admin/activity-panels-help/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´B\Ý|H¡Rn‚?ÁU»…j',_binary '»\rT$€k,™‹B´\0Qû’´-fP°‡šb!¾','',0,'?'),(_binary '\å)¦é·«œ\ÊgÌ¨R','wp-includes/blocks/loginout/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·³\êE÷º$Y?\ì\n<\Æ',_binary '™d¹\0¼s\Õ-VT\Ê\ÓI´ˆ5;4¡|]!\ã\Ó%·\Ì0-;','',0,'?'),(_binary '\å23¢ŽVœ\ç\Îys¹›¢ô\ë','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\Ì\ß\ÕÐ¼†ðÀzÖµ_',_binary 'üV²-2Þ¸<n{s?IõÝ¸W½\ì>f½\És\å(§','',0,'?'),(_binary '\å5&$5Q¡’‡5\ìž\íN\ß','wp-includes/js/dist/edit-widgets.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\ÉÀþ&d\æó¸Â¿7øššz',_binary '\0?b g,\Ó†\ZçŸ¦`¸\ÖZ-¶´-ŒDtnSŽÿ\å\Ô5','',0,'?'),(_binary '\åCžÇ´ú\é²k‘q{.L','wp-includes/js/dist/block-serialization-default-parser.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«6œÊœ9þY»jbIü$',_binary ' ‹Œ£¯¡4k\É:‘dÈ§\Ï!\'\à{Ý¸\ÑM™\ì’\Ãh','',0,'?'),(_binary '\åD©e‚5H?Ðº¿g)+G†','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/featured-category.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'vFÕŒOeN)m‰²Àt.K',_binary '8¸AX‡—\Ñ\Ü\ïƒpS…¦<	‡ù\ÏÛœ­mžOþ7\Ö','',0,'?'),(_binary '\åFß’\Ä<K¯¿“ |¬','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/cart/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K~\î9‡8¢rþ<º\áN}',_binary 'Ÿkt^\Ûþ+dœ.\Ò\áI\âiµIô\ÕHAš\à\Ï@Ê¬d\Ä}','',0,'?'),(_binary '\åH\Æ\Ì4….\\\ã:‰\ç#\à\î','wp-admin/css/l10n.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+.\Õ[H\rÏ¬.k«½/ ',_binary '®þ’»\ÃŒˆlgó\Ú\Ã\Âj-u¹ð\\$?Ÿ¿¦)\\‘y6@','',0,'?'),(_binary '\åR«¹q± vö\Úz\rPU','wp-content/plugins/wordfence/languages/wordfence.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0%›\Ö\ï¥=X¦Ó¼/«',_binary ']·%ƒN£8­ŠÜ °\ÔëŸ·\ï\á_†;…©\rD¹,eŸ\Þ','',0,'?'),(_binary '\åR\Ë\ä5?’- S£^H—ý','wp-admin/js/editor-expand.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘¤ƒK\Ä\\(°‚p½©²[',_binary '\à\Å\é;W#\à}Gj\Ù[—¼KˆSAKZ\ÜiË¤[Q4c\n','',0,'?'),(_binary '\åeÅ\Âúôüýn·…ŸA\Û','wp-content/plugins/wordfence/lib/wfView.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[žÜº\Ñ-Ë†N\n™\\\ÏnO',_binary 'x\áˆ2Q¿…\í\àmkÙ«@IFRh\ÕHu~\ÂR8¨\"z\ìK4\Æ','',0,'?'),(_binary '\åseþ¬ŸQr^T\èKù','wp-includes/blocks/post-title/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?(\"<\Ç\ÇÑ· \\~;\Ç',_binary '\Ç u7´/\Óoó#[\Ö\0…D\Èù¢\ä.\ìŠ\Èûdgš~','',0,'?'),(_binary '\åwÅ‰Z\Ó»-›\n•\ãr','wp-content/themes/twentytwentyone/assets/sass/05-blocks/file/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'd\Ùá—€¢©\Æ\ëo\É\ä\á\Ô\ç',_binary '\ì³\â©|Nž\0ü¯a69\âAˆ\ç1N¸%+› \ã’','',0,'?'),(_binary '\åy#%³n®$€Q\Í\åŒXQ','wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-customers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾e6¶#\0\0«—’N{H+',_binary 'cGh8k\"“¯|=vT\Ømµ\Ø%„ú4p¬¦)','',0,'?'),(_binary '\å|¨\ÂH\Ë\ÇYBVz£7}\ê','wp-content/plugins/ti-woocommerce-wishlist/public/addtowishlist.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ý®øœ~¦\Ä2¿_Ï¼/',_binary 'ˆ9c¨uœ‹2±„\'@«ò\àªnÃ“·&³\Öÿ{\ÝOù(','',0,'?'),(_binary '\å„#—nÎº“\î³	»£\Ö','wp-includes/css/dist/edit-site/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'PÀðb+ò¿•“„|z@ð‘´',_binary '‹J÷\ÝH>\ä»ls\Æ1\Ø\ér’”b=o‘\ï¨\Ã\Ç*','',0,'?'),(_binary 'åŠ®\Î\âf\Û)\à™¹øŸ','wp-content/plugins/products-compare-for-woocommerce/berocket/assets/tippy/tippy.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿ\ï²ÿÜ§°Œ\è²<vdˆ',_binary 'Af³—\î¥Z\\«\Öz6˜=»\Ö\Ýu€‚ñúô™¿','',0,'?'),(_binary '\å\Õú°5\Ü1QŠ?ž_µ¢','wp-includes/https-migration.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×s9Š4W#2\é\Õ!H\ãß¾‚',_binary '2‹|P´ºÅ§muÐˆø¤~k´©37rz0»x\ÅA\Û','',0,'?'),(_binary '\å£^Ê®É¿¼¡šÙªYL','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/collections/reducers.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k ,«\n\0x&¢C\æ¶!®}',_binary 'W\'Œ‚©¹TY†b£ý±|)§\ë˜\é=\Ë\×L \ì\Ç','',0,'?'),(_binary '\å¨\ïË‹\ÕH²\Ï\áj…®®','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-shopping-button-block/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹;ZA\ÖW¨ö\Çnü\Åô\å¼',_binary '¼]\ßXr§GF\0\é\0‚¨™ýÃ±š\ãmy@LeF}C','',0,'?'),(_binary 'å³³$¿ @z6§\0`’\Ñ/ª','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Õ‹}\ç\ïB°÷HÀ\Ö71',_binary '\Ã\"\Ã÷beTb¿$\à\Ö\æ‚\Ö×‰ù\n…º°~½ln\Ý\Å','',0,'?'),(_binary '\å´\ãX#j¬>\n‡š|Õ–ß¦','wp-content/plugins/ti-woocommerce-wishlist/integrations/automatewoo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?9\Ò&…Pc§ž¯\ç\é¿Z',_binary '*fw\àC.eö1\Ð\æ/¡\ç°-—)ú¿²u\æ”G_Ç€K\é…','',0,'?'),(_binary '\åµtó5ƒ«nuš=¦\ßÿ \Ò','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-fields-block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ØyÀ\è’\Êñ5bI‚ó¼m‘',_binary '\n]Áº®Oµ^6\É\ã\ä\Ó\æ6¢\Æ%¸£Á÷\á­>Ž\n\ÖL','',0,'?'),(_binary '\åÃ™yÁŽ]x<\Â^ó*K6','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-he_IL.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y\é%MšÏ›\Ô\×!\ÉQ|\æ\ë',_binary 'ò´õ\0\ÍldŸJo±–œ\Â)‹î…€#ˆ÷\Ç\"\îŽU','',0,'?'),(_binary '\å\Ñ\å[ª\Ö	ü_ºK“¨ZŒ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/reviews/review-sort-select/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\îþ=E\ë y\Ú)É¾',_binary '¾\'Fök3`\Ö9(	ˆº%n\ÂRSø\"õ•$ck«–\Ê','',0,'?'),(_binary '\å\ÓFo4[–\Âöd\Z\êt\Ð','wp-content/themes/flatsome/woocommerce/single-product/short-description.php',0,_binary '\0©\Üø\íê”›’“¸\ÈóN',_binary '\0©\Üø\íê”›’“¸\ÈóN',_binary 'G{u\Ç\ïWø°DR©§\'†\ï€\Ö@\Õ\ç}òº`´üŽr‘','',0,'?'),(_binary '\åÙ®‘\èÿ\"ˆ\ÑNø®tr¬œ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings/shared/settings-init.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Iÿ£,X±ùZ#Š)_\ì',_binary 'ÿŒë˜¿\ÙÎˆ\Ç\ìÊ­\Ùš¡!ú±@Aù±œItç©;','',0,'?'),(_binary '\åÜ‹9ôIz\ÇKûz9\ÚF˜','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-discount/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®‹\É!À€…¶_€ÿ ž…',_binary 'f^d\rõñc9¯´ùµ\Û+«br[\â.ùS50\ß\Ñ$\Í','',0,'?'),(_binary '\å\Þ¤¸)Ÿÿ0­‹@\é\æ÷','wp-content/plugins/woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Lock.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€\ßO	RO\Ö\ßA7¿›¡Kg',_binary '¸\\j*æ¯½úª\Õ\êa“Y†™t[jM\Î7é£©•\Z','',0,'?'),(_binary '\åÞ±\\™0®º®ó—•\îeJ','wp-content/plugins/woocommerce/packages/action-scheduler/classes/migration/DryRun_ActionMigrator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—!²Tn\Éu`\'3S×—„ˆ',_binary '~\ÄL\áX@»“›ÐŸ*7=ItÙ¶9f\êù„ý*­ÿ','',0,'?'),(_binary '\å\ã|1ò†ò³\ç!¿QÿÍ >','wp-content/themes/flatsome/inc/admin/panel/panel.js',0,_binary 'ý|\Çm{–•…eV¥\"\ÍU\0',_binary 'ý|\Çm{–•…eV¥\"\ÍU\0',_binary 'ªþwœN‡\Ñ]lÊ›FB¶£!Q…Ù—©©dhQ}\é','',0,'?'),(_binary '\å\ì0a3¶¶g}¾r#','wp-content/plugins/woocommerce-multilingual/templates/currency-switchers/legacy-dropdown-click/config.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\æˆc²M +»\nn÷u’',_binary '\îC!Ì¯üŠô\Ó%\Òd\Ó\è1ôO\êðŸRÞŸµ‰£šÃ¼g2','',0,'?'),(_binary '\åòZô¥õE‹\×$1ÿ6‰{','wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/alipay.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h,P1\ë$ö\Å\á*€',_binary 'Ù„^¡`\ç„\ïfE‰/´žŸqP²\n\ÙáŠ•…ô','',0,'?'),(_binary '\åó+¾ø1\Ø\îðôl:Í³\×\ï','wp-content/themes/flatsome/assets/img/payment-icons/icon-cbc.svg.php',0,_binary '\Ùa´Z§÷‹¹y 7$Žh$',_binary '\Ùa´Z§÷‹¹y 7$Žh$',_binary '\Ë	\íÁœ¡ºÎ³¼\ê ,u°{‹\×\å\áM¶D¨’','',0,'?'),(_binary '\å÷Ô…¢‘8\ÓJ/K?¸Š','wp-content/themes/flatsome/inc/admin/kirki-config.php',0,_binary '9¿?¼z#¤ö¸~d•:uˆ',_binary '9¿?¼z#¤ö¸~d•:uˆ',_binary 'Û­#p=òsae†–Ã±Ì¾a\í_E —T\Õ~¾|2N†','',0,'?'),(_binary '\å÷\×\Î\Ô\08H}£\Ö\Êo\é','wp-content/themes/flatsome/sidebar.php',0,_binary '\Ã\ìDR8¾3.H«¿r!-',_binary '\Ã\ìDR8¾3.H«¿r!-',_binary '›lò:>•{°tî½§&~\n¦\Õ9\"W–{\Ê\á\Î_»	','',0,'?'),(_binary '\æ	ùlQ\Î\Æ!\È\à>M','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-totals-block/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³(f\Ò\Ékš9x$¯›¹‰',_binary '<]\é\î\âO\'\\–º÷\În¿\ë„ò¶0\Þ,lm—‡š2','',0,'?'),(_binary '\æ\ròb\\ñ™‰\ÄÉ²\Z\Ä\ë','wp-admin/edit-form-advanced.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ýŽ \Å9\î»2\0\00£\Ë8€',_binary '†~“¬¢·\Ô\Þò@…Õ“\Æh \Ð\ìš\îu\îó\Ò3\Å\ái','',0,'?'),(_binary '\ævÑŸŽH¨ý\Ë5%','wp-includes/blocks/site-logo/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œ0kŸ‡)£\Ð\Î-:®Gc',_binary 'qýl9\×E«š&¢\r‡‘_Wûþ>÷”ši6\n\ÌÀrm','',0,'?'),(_binary '\æ\"f%Y\ê\Ë-F“#\ï~Zz','wp-content/plugins/yith-woocommerce-wishlist/assets/images/jquery.selectBox-arrow.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒC\Ê¹ŽxT\áH:¡n\è',_binary 'jA6 eX·p·ò£k¸\ã v§/)\Ùw´¯D·\ßø','',0,'?'),(_binary '\æ+‚ù«.\âø\ÇeF«\È','wp-admin/css/dashboard.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§”»w\Ü\å\æ„tT£',_binary '˜}L\í,øb\ìt[ø5h7œ„\ZU°¦\Ý[h\ÖJÁ!','',0,'?'),(_binary '\æ0r«*_•W±ë¸«\Ì5m','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.stack.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '5:Ç¡0‡-<Bû',_binary 'Y]A\å›Sƒ!\éœc££\Û\Ø-Á\×\ÏTNr™ÌŒ«ŸIÆš','',0,'?'),(_binary '\æ1¯\Üj›\åˆQÜ¨eŠŽ>','wp-content/themes/flatsome/inc/classes/class-tgm-plugin-activation.php',0,_binary '#J´úô•\×_\ßV”y\Ó',_binary '#J´úô•\×_\ßV”y\Ó',_binary '\ïãº»=`\Â€CQ©\Ænù5d\Ö=\Ü\ÊxJ\Ô\ÇkšN','',0,'?'),(_binary '\æ9eºò\ÐkköR\Êo—†þS','wp-includes/embed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+¤@²<4#!\0s•Á€\Ò',_binary '\ÌOa\r¿\é\Ó#º\"\rV[³‘õxV\îõ?’\Ò\\\Z+müq','',0,'?'),(_binary '\æDÅ£¹5Ò¸6^)S','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/reviews/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b÷\ë|pq\Ù\Ë<¡Ö¾\Ë\Ôm',_binary '\Î\Ë\n\×oò->f\ã2;\Óª\ÌBKðfS´¦OšžO´ù…\0','',0,'?'),(_binary '\æEþ¹cuˆ\Òu’µ@ Á¯','wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_NullLogEntry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4bøBV®N•-`$–¡',_binary 'c)N¬þ†k„…Y\r$o’B5!&*Öd\Ò	4\ï','',0,'?'),(_binary '\æG\Ä\Å5\Ø@\æ\è\Ù\Ú07•\Ç','wp-includes/images/blank.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÉýûÊŸgŽ\Ðh\íkK¾¶f',_binary '>„øE\ïG\ÅóLó´ E²òšJQ‘‡ô|\ÌBÀij\Ï','',0,'?'),(_binary '\æJ~_o¸f™k³¨öóº\Ï','wp-includes/js/wp-embed.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"ò\î\Èúÿp†ª\"ó\Ã_\à',_binary '~«­\Ø6sg­qükÎ»“}€z\èZ7ò»I£\Ç1ˆB¸','',0,'?'),(_binary '\æJ¼2E/º7Ö”z”]13','wp-content/themes/flatsome/inc/admin/customizer/img/layout-right-small.svg',0,_binary 'f\ÌÝ„Ë®\\ð™À±—Ë¤\r ',_binary 'f\ÌÝ„Ë®\\ð™À±—Ë¤\r ',_binary '\ë\"\áh3}\Ò9¸\Ð\å>Z‹\Ê2ÎŒòø\Ã\Ã\ï\åAlˆ@','',0,'?'),(_binary '\æL ©­GÊ“P\Û\×k-.f’','wp-content/themes/flatsome/assets/img/payment-icons/icon-fattura.svg.php',0,_binary '\í†\Ø\\aþ\åùpF5\rtò',_binary '\í†\Ø\\aþ\åùpF5\rtò',_binary '?«ðó\ÙóŸ#0ú^¶òržòÑ¦\nF\Z§\Ó-ƒV†„','',0,'?'),(_binary '\æS\Êm@ª\Ñpü\É\ä²','wp-content/plugins/woocommerce/src/Utilities/StringUtil.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«Àò¢¬`Ë\È>B\ßL-\Å',_binary 'µ|*\Þ{<1R\ßUÄ‰\Ì\"+\"Qü%\r­¾‚o³\\\Ø’	ó\Ð','',0,'?'),(_binary '\æbœV\ßöEf\Í4ª¾','wp-content/plugins/woocommerce-multilingual/classes/CLI/Hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4\Ó\Ï6&\ì‰\Û[ª‰\0t',_binary 'Te\Úm\îBõ\Ôh¦QEýœ.~¿ój÷YŸ÷¥MŽ^a*\Ë\nO','',0,'?'),(_binary '\æd\Å^M5|q`\ÌoD.2','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/price/save.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`?\èýÓ¥A~k\r÷¤',_binary 'û•P\ÝôRñ š3\Î\á\É=\ãr‘\ÂùSdù¨\ÛD\Õ\Ë','',0,'?'),(_binary '\æd\è\ì8—\Ù\í´ôË¤\Ä[o','wp-content/plugins/woocommerce/vendor/bin/phpcbf',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÖŠŒú™N\Ù\é$»9\ÞÃ™¦',_binary '\ã@³s³y0·…4û±\\*Â±( ë›Š\Õ\È\Ò\ßgA¾øt','',0,'?'),(_binary '\æes\ØÄ£3\å\îñ¼1D','wp-content/plugins/woocommerce/packages/action-scheduler/action-scheduler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½\î\Æ\×÷Iš›\ßU\ì\\\Ý\Z',_binary 'Lt\Ù\ìs¨þ\Ò(\áÂž\ê’=­¼$\Ë.±T®\Â5\Í7','',0,'?'),(_binary '\æjgn˜-_ˆ®0a– \'','wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-freelancer.php',0,_binary 'Žu-¸0f\è\ä<\ï&\Þ\ÝE',_binary 'Žu-¸0f\è\ä<\ï&\Þ\ÝE',_binary 'ÚŒ\'iL±´Öžwø\Îú\éB\áI\å•\âDÞ›^%\Ø^','',0,'?'),(_binary '\ænW3\ZÀÏµWñö%@,','wp-content/plugins/woocommerce/src/Admin/API/Reports/Products/Stats/Query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0R%\Éöÿ\ßÏ¢@ÈŠj¨c',_binary '–]~\nhÔˆI˜š\Ç\é_F—Sn\Î\áJèŒ\Ñ|Q}','',0,'?'),(_binary '\æn\Ã)p§›´9!ƒn\×','wp-content/plugins/woocommerce-currency-switcher/js/sd/selectron23.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ž‹al|¬l#d\"Ä¶R1',_binary '&ƒ\ÔÂš\r­u.\'EcInZŸ÷UhMœF‡\Þy=nh*','',0,'?'),(_binary '\æw™<¦S—õ’DA¤&\\','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-on-sale/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$¹ƒ³ñ‰ù«M\Ý7\\Ÿ\Öo',_binary 'Q}{l]I}B÷À)is\×vB©\Ô6¶|&ÿ8(2\Z&r','',0,'?'),(_binary '\æxî¨†§\Ò®ñ\ÐeUöù','wp-content/plugins/yith-woocommerce-wishlist/init.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»\È;\áÁO\0\Ëm\Å¬˜',_binary '¾ö\È\Ã!\ßPm¤TôY\Ä\Ò\êsQ\åhµ¶óA\æU§Gr)\êo','',0,'?'),(_binary '\æƒ\ÈqSŽE6\íI®¼!)j¬','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/textarea-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=¸XTB€‹\"\í~¸TŽ¾½',_binary '\çÓ°j¿£**A°\'pxŽ\ÓÝ—cøUú/ j$ºûi›>õ','',0,'?'),(_binary '\æ˜\ç›=ücu@ûvX\Í','wp-content/plugins/woocommerce/legacy/js/frontend/price-slider.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#>Lª½\ä²ôÀ«ªŸl\á|',_binary 'Z7vF¨\ìÌ¿‘\ß\ÄQj\ß‹ßž;\r÷KbW°\"	\n','',0,'?'),(_binary '\æž`’®Œ\Ïn|1\Ç\È?•…F','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/ro.js',0,_binary '²ó{r0<Ü‚ŽaU\æ•dú',_binary '²ó{r0<Ü‚ŽaU\æ•dú',_binary '\æ0†ˆ\âi»ß»¾ \ÔE\Z©\Ð\Òi\Ïñ\æÿ=9.a[0‰ \Ò','',0,'?'),(_binary 'æ£„y)8LƒJ2ùò','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/HandpickedProducts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D>¦¶‰6=¡€ƒðXo4¯',_binary '}¶Á´C”*V­†E[\ë	Q,ºŠ\ï-¹«:b\nE&D4d','',0,'?'),(_binary '\æ¤=¦½=\á7°\Â\"¥\Ú','wp-content/plugins/woocommerce-multilingual/res/js/exchange-rates.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯\\\Â]yŸ•\ÑŽ\ìN\Ç4',_binary '°¯”\âö„gó2¥_œP÷ùB\î‘á±’Ý›HR¶ÂŒ','',0,'?'),(_binary '\æ¦r{Ø‚:	d©a	À','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/cart-accepted-payment-methods-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o\äR— ›S\0»ñ:Q:Ç±\è',_binary '‡¾{…\\LlŽ¢¦˜ru\"d˜Uü$û†\ÞuV}Ák¤\n','',0,'?'),(_binary 'æ§˜º\î7\Ý^ô»b³\"³','wp-content/plugins/wordfence/images/back_disabled.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\Ù\Â\Ôg\Øú\ïi\î\ã†>',_binary 'Žä›Nó7\ÓgÎ‹\Ä?\ìFb!}„­Ý¿°\ÝC¨­é³‡','',0,'?'),(_binary '\æ«H´˜õ¿\Ô0ºcu7«\Ùó','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/legacy-template.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\á\Ù6Œ;~1×¨~›’',_binary '/_—lŸ\Ü[\Û½1\Æ\rL:ŽPd\Z¼&ý”{-1\é£','',0,'?'),(_binary '\æº=@÷\ãa]ºRô\Ü_O','wp-content/plugins/woocommerce/vendor/bin/wp.bat',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ºSC›M|q`\\g}š¾¬Q\é',_binary '×žaNd«M€•÷\Õõ¼e%€Š¢÷\åNÁF1\Z\Úñ-','',0,'?'),(_binary '\æ¼g¬\ìwßühm÷—\ÕAú','wp-includes/blocks/freeform/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0;\ãL“W!ý—µrC\ÚÇ‡',_binary '¬Ú¾i.zoûMô\Ô\\ñNG\ÇQ\\Q).?9X•Xô\ZÓŸ','',0,'?'),(_binary '\æ¿y§lš€só§U>\Â<ò\á','wp-includes/css/customize-preview.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨\Íb\í‹€\ÈSb\Æs•®\"',_binary 'ßŒ‰\ÙIùRð\\Ä¹\Ôe£¸z3\ÚüQsC•Á¾\×Qˆ','',0,'?'),(_binary '\æ\Â\çÃŽÆ£¾Ô“\å\Ì\0H˜','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-terms-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\â…ÀU\rY0÷¨_2K',_binary 'aô#x”0ücLôùrmg; \Ê<\ç\Ê\ÎC­\Æ\rwLQ\à','',0,'?'),(_binary '\æ\Ã´˜eÒ•÷h‚V\"€','wp-content/plugins/wordfence/views/options/block-controls.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\âBµ\Ï#jºT‚,	…‹©D',_binary 'x\ÜL§a);\É%ù…Æµî®·ü§žR*¾ü\é','',0,'?'),(_binary '\æ\ÃHR´aFw*\0ñgñ›P\Â','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rª\n÷\é3 øü\Þ\ëRVs\Ì[',_binary '.D*ˆ§Ÿ%Ø†.óŒ\Ï\îü¡a]“o{­…¾¡›¸¤´','',0,'?'),(_binary '\æÇ‡w\æh¢›½Cþa•®P','wp-content/themes/flatsome/inc/admin/customizer/img/icon-left.svg',0,_binary '“¥\î‘ÿ\ÝØª¤™&\Çœ',_binary '“¥\î‘ÿ\ÝØª¤™&\Çœ',_binary 'd-2t¶ð)kmX(e\Ï\áy^ó¹ð\éPrxò\×8x¦µ,','',0,'?'),(_binary '\æÈ¡v30Uª ¢\Zù•³.','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-product/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ñˆ+OK\ÈsW7\'ø•',_binary '\r\"G‚ý,\Ì	ûJX±öŒ+°M\ï8\n\Ìg\ä›\Å\ÄS\Óñ','',0,'?'),(_binary '\æ\ÎWû\ê\Ã\"ú\Ú\êSk:\Í','wp-admin/images/align-center-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž¾²-ór‡5*J7¡If',_binary '¢8tf\ç*Jw\ÒT\Â^\å\ÂH\Ù>\Èñ\Ê1öJD\ÈÎ¿','',0,'?'),(_binary '\æ\Ï\å¼\èP¿IcD\Ä\ËÆ¾\è','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_int.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ø\Ì®\ÙJ˜s\ÓÇ™ùB',_binary '¥²ER ôJb\ÆÈ¸I\"\Ê\ìt\Þ],˜qPþ1\\fD','',0,'?'),(_binary '\æ\Ð` iiu?\ßøƒSÊœ/j','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/image-gallery.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™\×\Ç¿üO\ä²_\ZBn\Ò',_binary 'K’šÔ8‚\ÂJï±¡§ðnö2@\âÏŸX/\Å*!˜…','',0,'?'),(_binary '\æ\Õ8\Ämø0Á©7ºR>V','wp-content/plugins/nextend-facebook-connect/admin/images/layouts/below-separator.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u¬EnÅƒ¦g³™/8†^',_binary 'm=j[\Î\É\áÐ¸ð¿\É¿õú &Š¶ü_|•\Û\à\Êa/','',0,'?'),(_binary '\æâ££ôM\åO\×º\î\ïƒU®','wp-admin/js/editor.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ³*¦¬Á‚¨{~ÁÁ.',_binary '¦\nô\ÜÃ·\ÏËžx\'0 W~Ð«\Íñ¶Z\âsrc9«–=','',0,'?'),(_binary '\æ\é¼\"ŒLJ1\ìC4ND÷','wp-content/plugins/wordfence/views/scanner/issue-wfPluginAbandoned.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­pDî›‹*™«ž\îL}³',_binary 'ñ\æfÂ‰°“«Æ¾ßœ=i÷ù\ÇsŠ8´\Z}ƒŠ\ç”‹º','',0,'?'),(_binary '\æ\í>9¾õ\Òc”\Ü\"Q6\Ú2','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/simple-center.svg',0,_binary 'iD!Ø°\rŽ•\\luKK´',_binary 'iD!Ø°\rŽ•\\luKK´',_binary '¢„-[Sþ\ìYŽŸU46©\Üü^½i3&ü´sŽ\Â\Õ\Ï','',0,'?'),(_binary '\æ÷µ\È\Â;ŸWœ\ãŽ\ì¡\Íl¥','wp-includes/js/dist/deprecated.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\ä&\È\Ë\×\Û/_\é|h\Ù\Â',_binary '&ú&\ìžÖªZQ\á¬úr©ø±#\ÅØ½o©öD\nF\àò^\Ë','',0,'?'),(_binary '\æÿWN,\rð0r†h\Ö@\í','wp-content/plugins/woocommerce/templates/emails/plain/customer-processing-order.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'À\ç&K¢x	c\ÝÏ²\â¤v',_binary 'Á\æy\0¥t}(ª\ÉB¦X=¤Ì¨Œ}¤Qð$}d¼ \Ç)y','',0,'?'),(_binary '\ç\Ä\0ý\ÏÍ´üË–Ri{','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-cms-nav/icon-128x128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ\Ê@-ˆº\Ðõ\ÜYhtOª\æ\Ñ',_binary '½+ta™¦°\æN\nŠ·\ß>xs\Ó\ì\"\Ñ\ï\à¯f8\'(','',0,'?'),(_binary '\ç\ØF‘\Æ\ã¹>•O4e\Æ\ë,','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductSaleBadge.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0I‹fU\è\Ò(&	c¾´|\Ô',_binary '3µo3x\Ý‹6Ï³TA¯{…\à0\îðþ8\Þl£\ÛI','',0,'?'),(_binary '\ç\n¡.-D®‘¨c»y,µ','wp-content/themes/flatsome/inc/admin/customizer/img/product-box.svg',0,_binary 'ø€<)\ØW°§\Ö\àb¬\Z\è',_binary 'ø€<)\ØW°§\Ö\àb¬\Z\è',_binary '\Ú\Ã9\n§“\î`4¾„•g\Þ\åix\Õ\åÒ Gõ\Ë\á¨öÛ™\Å','',0,'?'),(_binary '\ç\n`m\âï€”HÁI‹i¬M\Þ','wp-content/themes/twentynineteen/inc/color-patterns.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘ƒ\àu:q\nšX\ÔD¡ \Ú',_binary ']Ggp´x?_-lcw.9€kGˆ@ò\Ú\Zÿ\â¦h%','',0,'?'),(_binary '\ç\no¥`\Ú\Ë_8\Ê§r#','wp-content/plugins/nextend-facebook-connect/providers/paypal/paypal.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„¨¹reø[¼\ÒB+>ªQ›',_binary 'Û’\Ö\"k\ØjW¯\×\Z‘Ks\Ó<\éF˜EÁ*\Óq\ï\n','',0,'?'),(_binary '\ç\ìQŠ\åŠ\Ío\êCPÞ¶\ãš','wp-includes/blocks/navigation-submenu/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿\Í5\âø2ö}YHu¥\Ì\0',_binary '•\Ä\ÛV¡\ä®ˆ.‹F¸1S9W\ê\Û½<û9\îõ?\\{W‹','',0,'?'),(_binary '\ç\àd-¤\à‚¹_ð[\Û1tB','wp-content/plugins/yith-woocommerce-wishlist/assets/fonts/fontawesome-webfont.eot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gOPÒ‡¨ÄÁ›¤\Ò\ç',_binary 'ûú\å~8 ir®¿\Ý\nPp¯¦\n2òŠ5§DahBzP','',0,'?'),(_binary '\çÂŸ8\Éþ‰U*%˜œ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/class-version-selector.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@nðªM\ì*H\ÊMž\è\Ëj',_binary 'Ç²\Ïw AXs”‡#ó>cñ…]œ:öt…S²\Î\ÄIÀ0\Z™ÿ','',0,'?'),(_binary '\çuj­Kº^¯\Î*/`þ;','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-media/icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”\Ün\Õ³ò\Ö4¨CW0',_binary '·GTþ\Z\Ö;s~\×\ÖÔ²ú\Ùþ8?X\Â\Î\ÎsgŒ4ñ','',0,'?'),(_binary '\ç\ì\æ\Ãö¿Ž€|NÍ¤?','wp-content/plugins/woocommerce-multilingual/res/js/cart_widget.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§«¢{(xé©©Œ\Ð¶3',_binary '\á\Üû\âf¦sPb°-\ç\\Ç¯°žoø¨¦×»ØŠ¶9\æY','',0,'?'),(_binary '\ç\"\ÕÆ¡üŸ7vs+ö','wp-admin/includes/class-pclzip.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')óAh·8L\ÊXºdˆTa\á',_binary '“8D.«u+–h8Ò²Å¾ž,Ÿ¥\ÇWÚ\å¢\ì¾õO','',0,'?'),(_binary '\ç\àp=P\Ö-Ò•\Õì˜ž','wp-content/plugins/woocommerce/assets/client/admin/chunks/analytics-report-coupons.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')@fA\ru\Ï=!–ÒŽý',_binary '0÷VUû©¾Cr\ã\'¤\Øg2J9º}zzDÑ¿¢V','',0,'?'),(_binary '\ç%O‚\ÛÁ¯G4^ƒŠE	','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-cms-nav/icon-256x256.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹L\Å9s•ñp¡W®VN\Ø2',_binary '^/°ñ\r÷&–j>[\Ìk,_O·R¼\r\ÛL+±˜Ss','',0,'?'),(_binary '\ç&$.Y\å{x[Ì¨y','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/reviews-by-product/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ê…ðjò9ôU‹\àLC³V',_binary ')X\æ\î\Ìq•Ð§!p²6¡ƒa\Ç(óû4\èl\Ï\ç:','',0,'?'),(_binary '\ç2\Zð‰ {D·Zý‚¸-','wp-content/plugins/wordfence/fonts/ionicons.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬ýµh³\ßI­15[I]J',_binary '*¡\×\\&¿tä­¨\\\Ã	gTw°‰µ¯,\Æ1ƒ©¢','',0,'?'),(_binary '\ç5\'«\ê8p8/\Ý!\ë\ÆS','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(uÉ¥ü¸=c‰{§ô ',_binary 'ÃÿÊ™\è\ÑÔ‡7«¯“i‰ò_A_Miˆ†lbs','',0,'?'),(_binary '\ç:a\æû\Ê\0–\"k\ä\æðl+‚','wp-content/themes/flatsome/assets/js/extensions/flatsome-swatches-admin.js',0,_binary 'hüVxÎ»ý\ÞAehHAn',_binary 'hüVxÎ»ý\ÞAehHAn',_binary '\"ø7»\È+PE`‘Š\âj4\Õr˜\ÊL[º\ígNròš~¨','',0,'?'),(_binary '\ç;S„\Ò*\Ò{4ƒ³!\ËN','wp-content/plugins/yith-woocommerce-compare/assets/images/colorbox/border.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„¬9\Ëv_Pz¡®ðöW\Å\ä¿',_binary '?ŒÝˆ\å5û\\\Â\Ö*Q r\Ú6\È~e\Õ¬\á©Q§-w(b','',0,'?'),(_binary '\ç?h\\¼\ØM}\ì\ä»\íÀ\êµù','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/block-title/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(rôüM\Èþ5 zŠxZ\à\î',_binary 'uaò«ß°€\ÅOº])WÀ\Ç>óþ-!T€Â—\î’ô','',0,'?'),(_binary '\ç?qˆL83–\Úi¯\ä\Ð_','wp-content/plugins/nextend-facebook-connect/admin/templates-provider/usage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S<,\r„dHñ;‰\Z\æ',_binary '¾¶¢\Ðôj\Çõ\Û3\Ø&d¶4	veÄŸ¼š(^ƒ¢\0­','',0,'?'),(_binary '\çDj×ž\å8]fÐ”_\Ú','wp-includes/class-wp-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H?¯ù|q\ìT¶_wõ}\Z0',_binary 'ŠÁ_…Z+ôV´)`†qHyT)—J½ˆe\0\Ôg¨Ë¥ºV','',0,'?'),(_binary '\çFeØ³½\ê.žuò_³','wp-content/themes/flatsome/inc/functions/function-site-health.php',0,_binary '`¿‡ùÑ¸ÏŽ{-‚}™˜O®',_binary '`¿‡ùÑ¸ÏŽ{-‚}™˜O®',_binary '-^#q_F¢\\XÁ”n¾ý¤y|9.˜!¹\í+þ5¥ým²','',0,'?'),(_binary '\çQ¼ßª@\Â]¤eŽ=~\r','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-methods-block/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÌH‘Üº\Ô6n ¬\È™„',_binary '3…µt˜Šac\Z‡¬\nðXi±0\æ*RÖ€¾8‘øø','',0,'?'),(_binary '\çQÝ®U‘\Ïa&»l®=/','wp-content/plugins/yith-woocommerce-wishlist/templates/add-to-wishlist.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+®.\ÏB^l\ÓP\Ý\Ê3Tc',_binary 'k¡\'®\Ä\æ\Ø\\´?À¿°*ue\0e-ƒƒZf-pþUF','',0,'?'),(_binary '\çXÌ„‹}bWp÷\ZNû','wp-content/themes/flatsome/page.php',0,_binary ' A\ÊÉ•òu‹*­‡z\Ò',_binary ' A\ÊÉ•òu‹*­‡z\Ò',_binary '©x[+¢À\r“gYÆ¸-X)	w\Ü3ZS`\Ð\'ð€','',0,'?'),(_binary '\çb`K¬\'\×Šì»œ\ç\âK','wp-includes/functions.wp-scripts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c™\Ïø£R­\ìþS\Z`p',_binary 'T?´…&\Òf ô\ZE·U\Ñ\êT\ÅU•\é¸3þ,WwhJ²Lµ','',0,'?'),(_binary '\çk*‹C9K<üÍ°\Ä\ã','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/read-more/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uû¶]õ\è^º‚]$ûÏ©[',_binary 'v•þ\Ä\â†\ÈU\"zh\Ô-\Ñ)°dø.³Í®wš§+\äR','',0,'?'),(_binary '\çoñu\éW€›JjZX\r\â\í','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-checkout-addons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u$\ÕW»\ÒH\Ønt\Ëý‰Ð‘r',_binary ' å…½…s†qV%ù9\ãz™\çn\Î\Ë\Åq\Ý9=Ð¡\áIž','',0,'?'),(_binary '\çsz\n`uœQ¼Œ\Ø^¡$a\Ç','wp-content/plugins/products-compare-for-woocommerce/berocket/libraries/tippy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y-jôD\Ëj\Å Ô—vÀ¡',_binary '\à`3A\ë\Ä/û·ÂŠ\Ú\Ùp\ÞAcf y\n)½4‘œs§\ë','',0,'?'),(_binary '\çxÎ”)NX3u/@Œ4Yª','wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²Á¨Ÿ\'«Õ£=÷B\n¦†',_binary 'U\Ýò¦\ÖÆªúvH\'y¾§‚ðˆô}›s,,\è\r\×ý\Ýþ','',0,'?'),(_binary '\çŒV†¤ ’\é\Ô’½\ì\Zß®','wp-content/plugins/woocommerce/legacy/css/_fonts.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ìòAS¶·£Ø”ø+û',_binary ':\Ì\çØ \Ö\Í\"zm¡\×]œ2bº!`(‚T\ïE:L*W','',0,'?'),(_binary '\çŽ\çV¼½\×\Ù=˜þ§O\Ï9t','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-tax-classes-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿W¢<´\Õ\Ï¸B\ï\\@',_binary 'h”ŸØ“ƒ—8­\åõ‰U†?j{\í%AÁ­a´Qü\Ä—','',0,'?'),(_binary '\ç”Jú¡Ñ‘e÷\rXd”\Ô$\Ý','wp-includes/class-wp-customize-widgets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\ë\Ø=)‚°F­¾\Å%`',_binary '\Ì\ÎÑ¦C8…°øC9V°š³8‚kÙ©†\î\"Ó‹\àfœ^','',0,'?'),(_binary '\çš\Z\ÊIðó˜˜í°Š™\é','wp-includes/blocks/social-links/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\riX“\Ät^Û±b\Æt°',_binary '\é#œ\Z\Þ	Y\ÔÚ²„=ºö¥é¤¤3…˜\n‹D5@\îû8p','',0,'?'),(_binary 'ç »%¼\å\áP¡i °eB\Ë','wp-content/themes/flatsome/inc/builder/core/server/src/Elements/Element.php',0,_binary '\Ü0Ž\Þ@´W\Î\ÓN\reCp',_binary '\Ü0Ž\Þ@´W\Î\ÓN\reCp',_binary 'i\'¶ýÇ¡°Ü‚\ÞMD¤t}Úœ\æL.>“F¾\Ïþ\Î','',0,'?'),(_binary '\ç¡Ò˜G\"Œ:0ö\\ùKH#','wp-content/themes/twentytwentyone/assets/sass/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2MN\î;NvB\01Rxê¤³\ì',_binary 'Pc¾ýž…:D3yN´o&Ÿt*Ñ°“[ž\Â:kG\'\à','',0,'?'),(_binary '\ç¦c\ã\Ê\éBò\Ìó½\Ç!K','wp-content/plugins/woocommerce/src/Internal/DependencyManagement/Definition.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2<‡VUi•³ 6Ÿ7¤',_binary 'x®\ß\Zº€ókT€ßŒ\Ò0\Ò\ä9\ä{\áC\Ç\ï\Ûü{Å¨\Õ','',0,'?'),(_binary '\çªx`G$Ö¡\×øT\"P7!','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/button-link.svg',0,_binary 'û’-[\ÊW\ÎGúÚ“S',_binary 'û’-[\ÊW\ÎGúÚ“S',_binary 'oC¾\ä\èZf\ë¹o•É²÷P\Ý¾‰\r»\ÕÁZb­ig\ÍQ','',0,'?'),(_binary 'ç¯¼\'¾œ§¤ \Û\æö\Í\Â&','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-summary-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨yº\rL\Ìf5P(ú¹È³',_binary '\Ü |Q\íýgùösE°›I…ûC¦‹Ý•Ÿ4³‹%øf1l','',0,'?'),(_binary '\ç±\ç.À\Æö\Ñ^r<k8‚\Ò','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/how-to.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$ÅŸ—C6¶’e•1&½ƒ\Õb',_binary 'È–p%Aª¹\Ç }¢ \nŽA©\ä<ú¯¾N–Ÿ_Ù¬·','',0,'?'),(_binary '\ç¹kN\í·>tñ\ä,õ\Ñ\ìý¥','wp-includes/blocks/file/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Æ…d_V•\Ú\ÈC¼nM|',_binary '\éž\è»^b½âž¤½*Œýÿ\È>A/\'ý,´½\Û\ÄœK\Þ','',0,'?'),(_binary '\ç\Ã\ÕKÿg›\Ð\å‡o#\ç0','wp-activate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm¯#w:m’œ¾2´©A\"',_binary 'Ÿ¦\ì^>©*\Ñ\â˜\çr©¨ÿI+\Ò\Ú{ŠÑ„\ÅU»b\Ç&ð','',0,'?'),(_binary '\ç\ÄoÔºp2Šbdtm\0¼•','wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/styles/style-2/styles.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[¼3ûZY\í§Û¤\Ô\rŒ',_binary '¯€ú¥\ËDnV\à|#aÈ¯\çP¾²Rœ_¸‡”œÁ¹\Â','',0,'?'),(_binary '\çÅ‰û	i\àö¿/Ð­','wp-includes/formatting.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²ûý£eZL¶s£‘rò\Í',_binary 'w‡CY›-ž5b\Ü2 \é{v4^–¼±F\Í\î\Ïz‘„¢\ÙW','',0,'?'),(_binary '\ç\È¡¢+!š	xc¶*','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/resources/select2.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ó}ˆ8Ñšzº\î¡”\Ù2\Ó}',_binary 'ð85k­\Ê\ç=Tg» {¦–­ƒ_þ)D_:ƒv9FÁ','',0,'?'),(_binary '\ç\ÏH\â¶\Ç\Ílö±{!D#¯!','wp-admin/js/color-picker.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”¾‘£\Þ\ri)]f\ãm§+e\í',_binary 'i16±:\Ãô	n\Âs!\ÌF­\îúnÁÿA‡\ÌR6Š/±NE','',0,'?'),(_binary '\çÑ«¬¬\"•¬Æ„oÁ¥','wp-content/themes/flatsome/woocommerce/content-single-product.php',0,_binary '’†”*\Øô\åž¶ÿ©T{ð\Æ',_binary '’†”*\Øô\åž¶ÿ©T{ð\Æ',_binary '\\•r†V‘™«•¶)™(+_¢‘›@<\éœ;\Î!žµ®','',0,'?'),(_binary '\ç\Ø5?/ô\r±š¼9˜­H…','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/en.js',0,_binary 'þ\è4}»d\ä9tD$šJÿ',_binary 'þ\è4}»d\ä9tD$šJÿ',_binary 'V\Û÷p#¾Á* \ÉÇ—{_ž+oš1\äõÊƒö5­X¬W','',0,'?'),(_binary '\ç\Ø9&…ª±e\ër\îv','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/double-sidebar.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iƒ[j[\Û}E:Kh',_binary 'Yûòµ.\Ùn\ì0„–¦W)£d9—»\ÂC\Üor‰÷\Ö','',0,'?'),(_binary '\ç\Ú\ÝL³.dDv\ìù','wp-content/plugins/wordfence/views/scanner/issue-wpscan_directoryList.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\nµ\å\Ó\îaH{Ú¶Š¯ER\ÝN',_binary 'Õ¿õ\Û\ê\ïo\Z’º^ŒJº¾U\èB\Ëlò§5›\ã\ã\n—','',0,'?'),(_binary '\ç\àFüZY¿\ÑC8À3E','wp-admin/css/colors/blue/colors.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EŒÈ–r÷	 r¨10ú',_binary '–uhD\Ä\ä\Òú’]óµj@#T;\r\0\ÆÇ’\Ô\á\ÎVº˜','',0,'?'),(_binary '\ç\áÇ\Í.\ê\Òvñt \ä\Ì','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/metaboxes/field-row.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Äl~ —†\Ä%3¯p¶¬\Ô*',_binary '{\Èkƒ\ë\\\Z¹l»\Ü\â“Àòÿ[†”¾\á\î£n²]¯ ú','',0,'?'),(_binary '\çúÊ²Fo\Ü\Ð}¡¤•\\','wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/template-placeholders/archive-product.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷­2†\Û`¢Â•o…ð£5',_binary '\"þF€—‹(uI\Û.c˜§y\éañ\ÉN–ª1”\r','',0,'?'),(_binary '\è¨Ã·‘g$\ë”õM\âs\ß','wp-content/plugins/wordfence/views/waf/option-rate-limit.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E,bÙ¿ÊŠ•N¹þE\\',_binary '|J\Ü\Ú\Z^(\á–•£™×Œ»xDsX\â¡\å8\Û\èˆ?\ÈR','',0,'?'),(_binary '\è\àƒõ`ò¹\0N’\ÝHý\äZ','wp-content/themes/flatsome/assets/js/builder/custom/content.asset.php',0,_binary '\Êõ^#±§Nj˜¯M\È,;',_binary '\Êõ^#±§Nj˜¯M\È,;',_binary '\ÐF\ÃðI…VˆœœœO\ê<b?\ÇY\'|õ\Ú¥RjŠiŽBD”','',0,'?'),(_binary '\èö\è‘+Hª>¢\Ä=›','wp-content/plugins/woocommerce/src/Internal/Admin/WCPayPromotion/WCPaymentGatewayPreInstallWCPayPromotion.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ý‘ý\Ü,¨\æ¸@Yû\å>S\Z¡',_binary 'öjŠ\×k;n\Ü?\\ý\ç\ï\Ë´5:C\íp&¹3jrF\êšf','',0,'?'),(_binary '\è%y>}H\Ão\Ú\æú(6','wp-includes/js/jquery/ui/core.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç~ô\0k¹|—\È@JŠ¿N=',_binary '=@øòˆe÷µ\ZÿqS¶ö‰\ÂkUeŽ\ËÖ€÷ÜŠ“·','',0,'?'),(_binary '\è(ò•\Éul&!–¿`\ÍD','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-pt_BR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³ƒ$iû¹ÏºP¥Tóe4«',_binary ' ±¢ÿúûkÀ›\è$\â>jÈ˜Ô¶¬R…­X\Ó\È\0\Ü\ßF','',0,'?'),(_binary '\è++\ä\Âi\Ç©\\ó\ë·\Òg','wp-content/themes/flatsome/woocommerce/layouts/category.php',0,_binary '\Ã\nøi^W¬k¤¿¤\åûˆ',_binary '\Ã\nøi^W¬k¤¿¤\åûˆ',_binary '^8\Ù8øùrx\'~ƒJ^ó\Õ³\Ó/{ùPq4¢“','',0,'?'),(_binary '\è3jz2·\É\ë\\\Æ) ýs','wp-content/themes/flatsome/inc/admin/kirki/modules/post-meta/customize-controls.js',0,_binary 'ðR:qxêœªØ±ðõ*\ß§',_binary 'ðR:qxêœªØ±ðõ*\ß§',_binary '}Ï…Á\"v÷¨ŠN‰õ½(±¹Çµ\è\Òù\êBú‹lw','',0,'?'),(_binary '\è7‚û<~™V /=\í9Ô”','wp-content/plugins/woocommerce/includes/class-wc-order-item-tax.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÀI† \á*Ag@I´6ø\ß',_binary 'øð\è\\º\î\Ò;9n´\á[ˆ¹³Áº$r\íòr\Ó¹\ãÁ’','',0,'?'),(_binary '\è>ˆoÒ¼y.“Áˆi±','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/schema/test/reducers.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0Òƒ\r]±9|.H\Ñ8«M',_binary '\0©Š\Ü|x—0I‰¡$‘¦\Ú\Êp–×ƒ¸\ìIøjpF,\É¤','',0,'?'),(_binary '\èSHLenP\îq7¾Ä‰','wp-content/plugins/wordfence/views/scanner/issue-control-edit-post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f‡\î‹´Ž`\çj|£yþ',_binary 'iú†OGi„¥•F|4 8\Ú™Vñ\×j\î\n#V-L','',0,'?'),(_binary '\èS\ÙI’›\ã#¸µ )|','wp-includes/blocks/quote/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ý(\à\íÞƒ%ñ	º\Ók',_binary ';MP+CD_«Œ’\ëJ@\Ú[ƒ	\×O†{X£\Þ™%XBTÿ','',0,'?'),(_binary '\èb+\Âù÷a©X\Æ\Ç\âX','wp-content/plugins/wordfence/modules/login-security/views/options/option-ntp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Î!h˜\0,÷ \â•€%',_binary 'Ëƒ\\B\n\ì\âµG/Í‰Cwš†\Ô9ÿ,$¢ŠÅJ!\ä8&','',0,'?'),(_binary '\èfõi¿`¸=@Tµ\ço\Ù','wp-admin/images/spinner.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÕLõ\nD½\n\ÊoÙ‹\ÔjË²º',_binary 'zÆ„\à\Z\"ÿ²n\Zs²(\ÎU¶/~÷7º€F«ø^Â…\ã','',0,'?'),(_binary '\èg½&c\Í]ÿ9\î&’É–','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-products-table-block/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¶Q\Ò\Þ`)	§@²§\Ñ)',_binary '½;¸\Ú4»úKSÀ{,\Z%%*š^ÿ,}r³i|lyw','',0,'?'),(_binary '\èi\"iÎ¼œlC7 ´ú¼zP','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/php/components-setting/share-local-data-setting-radio.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\r\\R{mw3\Ê	÷^\×',_binary '‘\"`€eó2V»\\T\á¸n?\r’Í—\Ã\Ò\Ù$E=ÿk\Â	{','',0,'?'),(_binary '\èsœD)‘\êû…®mñ\éŒ','wp-content/plugins/woocommerce-multilingual/vendor/wpml-shared/wpml-lib-dependencies/src/dependencies/class-wpml-php-version-check.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '×«S	Fœ\ç±¿\ÞfZ=‡',_binary '}\Ê\Î\Ö9\ÞP]w\Z\È\Í\"\"7›sZ\Ó\à=\Ïu\Úyþ»ð','',0,'?'),(_binary '\èwj0‚¢67˜³„@ùT','wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"\êŒ2s7¬ø\\\ïi#—\ËE',_binary 'a\Ç\Ü\Ø„\Ó\Þt¹ÀWñ\Â	\Ì3NŠ\Z\Æ\ã`x†hI\Ý`À','',0,'?'),(_binary '\èwù\ìz…Owù\è(q+\ë\Ë\ë','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' –¸?D\È*Â¥b\Ór;k',_binary '\'>\Õ4f¯[\é9&b\0¶\Ä/¸aKøg\ÕT.¬L9K$','',0,'?'),(_binary '\è}@i›…\Ð~&²f\à\å','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-resources.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x\Ý=\Ø3O>ò{YøŒ',_binary ';\ÅÆ„´L¬\ïCÊ¾e\ÔxWI!s\Ê—i\â[A\Ëó˜','',0,'?'),(_binary '\è~=¾ûq¥/\ãôAŒ5ú','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Tokenizer/Tokenizer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ì¶¤\Zúa0|\Ò\ç”\×\Òin',_binary 's³:<ùG2˜\á2\äúV”J`u ¢\'—œ.\ëµzzEt','',0,'?'),(_binary '\èJ‰\Ù\åy”ž0m\ì`\ä¨/','wp-includes/class-IXR.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜\É0¼\ã\àC`q¥x\Ûü',_binary ']\Í\Ýñz\ïpŸ€qŸN\"CKW\Ç\ä›é´›‰øcŽôM','',0,'?'),(_binary '\è€\×E	´ddú\Ô9\r£x','wp-content/plugins/woocommerce/templates/myaccount/payment-methods.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨1‚Lúí«ž\\`\Ì(Ú²',_binary '\Ð^\ël7\Ó\Ì|\ÊÑ„*uø\Ëõ]E‹Q\ÉfÓŸ','',0,'?'),(_binary '\è‰\ï¹q•\æ8Oº\Ï;\ÃA','wp-includes/blocks/shortcode/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Í»ô0E\Ì\Ê<\í¨\ï#\é',_binary 'ID\ÒWó=\Ú~7÷¦Áõ(²­¿3E»¼ôb$@x`\Ñ','',0,'?'),(_binary '\èŒ\0…]¨p\Ý\ÒÞ‘\ê–	\rG','wp-admin/css/customize-nav-menus.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™Ow/›\Ë7`‹\Â\í\×`;',_binary 'ß’öÛ«e{À\Ý\Î\á«Kd\ÕhGYÓºûdJ\ÜûÏ’o_»','',0,'?'),(_binary '\è‘÷s\ÙX\Ò3¶ºýf\Êý$','wp-includes/blocks/file.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÏOÿ@Àj\Ë\Ô\Ï?%W3 ‹',_binary ']u|\àš’XŸ`®Ÿ\Þ\ZÒ•“ H+a”\âfx’ð˜Nñ£','',0,'?'),(_binary '\è“,û;V»ŸJùBC«`ú','wp-content/themes/flatsome/inc/builder/core/server/helpers/strings.php',0,_binary '\nÀ\Ù8C\Ï7a\ÌX‘\×o',_binary '\nÀ\Ù8C\Ï7a\ÌX‘\×o',_binary '„\Æ\ê“\âEeGgRˆwUNBhôwšGrõï£šõÀ­òš%','',0,'?'),(_binary 'è“‡)\r¸:+(Sy,0ô','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘F[|.\Ó1\×\Ðx\ë	&XfN',_binary 'ó›\éDmõ1%Œ©nÝ›´_dr° \Ô\rJ3Tr','',0,'?'),(_binary '\èš\Ôñ«\ïö~cµ^&)\ä\ê<','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-plugins-update-cache-cleaner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ùý»sCY…\Ô\Ý\Z4\Ä/3',_binary '…Ê+À\Èl.T@ƒ^\îúUÿ‰\09¢(K©\ç\Ù\Ó\âH)˜\Ü','',0,'?'),(_binary 'è£¥ ³\Ô\ÊB	†f\ÖUpð','wp-content/themes/flatsome/inc/admin/options/header/options-header-dropdown.php',0,_binary '[Wú½ø\È`¸+\ÛpN^1¸',_binary '[Wú½ø\È`¸+\ÛpN^1¸',_binary 'd\ÜQL¹:\ËFAhv0\nšJoö:@µ³`\Û\Òl£(ü3\Õ>','',0,'?'),(_binary 'è¨Œ,\ÍbJ!\àj¿ ö¢;#','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/use-checkout-address.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“Ÿ2\Âý\é\Ä\"ºøu‡LyW',_binary ')N>¬\ÚJþÂº£ÁEXZË·[\ÌÁH )Š|ñ‰‰p','',0,'?'),(_binary 'è¬¤j\á¶\Ø,\Ð\Óð\Û=>','wp-includes/blocks/site-logo/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´š\àVQqþo\Ò\Ç\å€E¸',_binary '¾ªò™\rŒ=¨žœZaX\å¢7\ä±/ÿ‹j[\Û@\ÝLy','',0,'?'),(_binary '\è·cOp\É½Ê²„=,g','wp-content/plugins/woocommerce/assets/css/dashboard-setup.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õ^!0_\â\á\â]\Ç0Ä¬',_binary '/ü6Snþ˜\Ú\äf¤L£\àC@\àÁ\â¹5Ý­‘n9\Ìö\ê\'','',0,'?'),(_binary '\è½:1Š?¾\Ú\Ï]ßƒoŠ','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/exceptions/class-otgs-installer-fetch-subscription-exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Û{—ý\"J+d×¹¸\Ð\Ü#(',_binary '\Þm\Û±\Ñ\0«ú0Gƒ pKý„\\x¤/LfNü²þ\Ï@','',0,'?'),(_binary '\è¾\n–j÷\åÍƒùÐ\Ío','wp-content/plugins/ti-woocommerce-wishlist/integrations/improved-variable-product-attributes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\êsi…G\Ä\Ä\Õ\Zr\î\×',_binary '1>Œ8r\ÌÏ§Œ­ˆË’ode†’\×\àf[?PƒA¡\åšü','',0,'?'),(_binary '\èÁ6€ZU‰z–_º\Æò','wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value/Size.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uÁŠ½¼`%d\èR\àÁ',_binary '¤É¯\Z5R\á\Ín\Ê\àÀ\è`ú»ÀÖ´pÂ¶–@—A/½Ì…H','',0,'?'),(_binary '\è\Ä$-˜ÿhêªr¢3K\Ü','wp-content/plugins/woocommerce/assets/js/admin/settings.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*3l25%à»¢L€d)',_binary '\æi—\"ph\åwD\Ù\é/˜¦¢_\â\Ñú\ëSKc‘\ïÀ!c\×','',0,'?'),(_binary '\è\Éõ\å=Apó\'e€<„6','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-core/icon-256x256.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚\È\n¿A†\ãx|¹X9™µ\åM',_binary '€	û7À*.,p*]q}\rº+\Þ…¨<d8\è2\ÐÏœô\á','',0,'?'),(_binary '\èÍ©@2\í\Ó\Zf‘Ÿl','wp-content/themes/twentytwentytwo/screenshot.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú>¢\îpƒ±¤\r LF¥z',_binary '¬Ÿ?C\ä-ý\ßæ¬³ª”˜Y6\Ð\Ñc\'\æ\Zvw”=)*o','',0,'?'),(_binary '\èÚ¸a‹+*Ù\Çu=\Ç\Ø\Ì','wp-content/themes/flatsome/assets/js/admin/customizer-frontend.js',0,_binary '—L¨Q\Õ\Ï=.½\ÄþYX´{t',_binary '—L¨Q\Õ\Ï=.½\ÄþYX´{t',_binary '~w*P·lm§/\Í,2É¯\çfûG/ð‘+\Í=Dhž|.','',0,'?'),(_binary '\è\á›\ÅÁW\Î\ã¶\é:†]','wp-includes/js/dist/primitives.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´qô*±&\Æ5Ù²\Ò\æ\ÞF',_binary '•„‹mi†$HŸz\n\Ã\Úþ0-$Hº<•Fº\Ú\ánù~\"5f','',0,'?'),(_binary '\è\èw|&•\În3\×U7ž\é\Ü','wp-content/themes/flatsome/template-parts/header/partials/element-logo.php',0,_binary 'Ù†@ÿGœJ8\Í\Å\ÇRBÁh',_binary 'Ù†@ÿGœJ8\Í\Å\ÇRBÁh',_binary '”WŒ±\Æ=[z³…\å\Ù\ì\ç‡ûvÁ÷I\Ê\à5ÎµŸ0«lV\ç','',0,'?'),(_binary '\èò<|Æ†3#§`®}Š','wp-includes/blocks/separator/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­\Ïv]³\Å\ê¾ ,8¹\Ç\ç',_binary '™­’oy»\Ê\äòg2\Å\é\ï{\Ä\0±8)O{U}','',0,'?'),(_binary '\èò‡òQ\ËoµH*¹‚À(\ï','wp-content/plugins/wordfence/images/sort_asc.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',¸»I§\Å+Æ¾ \êú=€ü',_binary 'd¹C\ìT¾\èµ\Ú…\îe&,)Ñ´ú\àFG\î\Zd\ãON\Å','',0,'?'),(_binary '\èö§9\éX¥É³r‚®','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library/barcode.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\àó\Â+)É‰ñ;.fF†',_binary 'Ï”º(šA\è¹W\ËAõ\èc«\\”X»­\Ây¹h‚ y\Ò','',0,'?'),(_binary '\é±U©MU¥­©$\ä','wp-includes/blocks/latest-posts/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b\à7Dy2•¸ó\"K¶<',_binary '·\Ü/g\Ïp»ñŸ\Ëy¨?\à\ÕJz=T\è¥7-\r\ä7|NÆ¼','',0,'?'),(_binary '\éŸ\Í#u¶G\×\Í\ÙM^','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-tax-classes-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X\î\ì\ÂÀ3*@:3K”£',_binary '\É\äÿwF©%4üˆð|û\í\'z„X\×\Ë\êTÓ—÷','',0,'?'),(_binary '\é\n7•\Z¼‚Nœ›j‚•¶','wp-content/plugins/woocommerce/i18n/currency-info.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':ˆ\Ñ(¼\ÞÝ­ŸXš\Ôs',_binary '\Ø©u•\É\Æ(‹r\ì{û\ì;^ÖŒõ\ÙE3=2\Ãf\ß\ë¿÷','',0,'?'),(_binary '\éA$ý\Ó>\Ö\Ç\ÝTªƒ.','wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«,\ê%ó\ÄÊ˜\ì\×D6Iy\é:',_binary 'ÔŠ#!\ém¶€\rŒ\\X2n–SŠ2Zq\í\0)\nh’F','',0,'?'),(_binary '\é—¯· œ ¤ÿÂºugH','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-taxes/attributes.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿¿.,š\Åþ9¯®R\Ã¥',_binary '¼\É÷L~oS±÷ðº\Í{·•\àœ\ÆZ’±\êIšOq‰\Z½','',0,'?'),(_binary '\éT\0œ×£}¶g£ObŽ','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/no-sidebar.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž»]ƒ\Å`P—\n?E\à{²¼',_binary 'f\Ü#3À…\ruñÍ„­°Ë“•X&òy\ÔÐ¾°„\Ãz\ÜZ$','',0,'?'),(_binary '\éÐššpt\Æ\Ù\Ñ\è]¾','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-actions-block/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼ŠŠŠdõp%M,:\èJÀ',_binary '8¬vA\ìO@\Ã\î9x£”\Ñs\Ý~röøWR3\î‹/U','',0,'?'),(_binary '\é+\ê‚3ô»pU','wp-content/plugins/wordfence/lib/wfOnboardingController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yÿ%ˆÌ…˜Å³¯<ºðƒ',_binary 'Å”WF&´x\Z	²\"¡g\Ò\ìß \Ù†;¢=•D¯Ù—x','',0,'?'),(_binary '\é*št²v‘ð˜eocF=','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/icon_box.svg',0,_binary '‡\Ø\Ã^x\à@ŠPõ…8',_binary '‡\Ø\Ã^x\à@ŠPõ…8',_binary 'ð9ˆ\ë÷zVCe\àB=z\å\0œ‡\æ\0\éÀ\ì\Í\æg€C–','',0,'?'),(_binary '\é@˜C¼…+A\Ðmr?\ß','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/privacy/yit-privacy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž\â•gh\Ð\r:ZÓ©',_binary '|\ZSmO\Ò&b»¸XÂº;s€½xF•©\èJ\éfzQ/¿À','',0,'?'),(_binary '\é\"‰e­Â–AlB\ä‹E™/','wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-gallery.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?$\ï®\Í\Ðrp\ÜÐ•r\î¥',_binary 'È¦({r˜Eû(ugý_	Ü¹ k•\æ\rP\Ë`õ8‘c½','',0,'?'),(_binary '\é3»ºn«À\á\Ý$\Çu$‰','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-actions-block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…Ø½‚30%þ°¬@\Âô‡\î',_binary '‰—5×µ\Æ2\ä\È\ì‚\×ýÍ•Œwsªb”_ÀÀ\Ã','',0,'?'),(_binary '\éE ¯¨ð-(Âœ\Þþ¤º','wp-content/plugins/woocommerce/src/Internal/Admin/Onboarding/OnboardingProfile.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ’\\¢/*\è\Ì÷òhó£/F',_binary 'õAQ\ZŽ\ïj\Å×›`k,g]\èz¢­%iôPr¿\É','',0,'?'),(_binary '\éF\Îj!Y\é{.J=,µ®','wp-admin/images/stars.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[¬\à™><õk²{\Ò\ì(‘',_binary '/	\Þ\ï\"…\ÚÀˆFaì±”<SY\Ú\Ãg\Ü¬\ÐØ‰FŒ\×@','',0,'?'),(_binary '\éIo\ß\'ð‘@¢F\çPE\Ã','wp-content/plugins/woocommerce/includes/class-wc-shipping-rate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\åZ\\\'«E–Ç­=\âñ#U',_binary '…_\Öï —¶:¹\áb:¤çº¹‡g\æjgR \äE1uk','',0,'?'),(_binary '\é[\Êð„Á\Å)ý¥´\Ñ<Øº','wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-ajax.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\ZŸ¦½g]½·5\Ñ\á{c%\r',_binary '\0Ù„V\î=<XÜ´;\ç./Œ!bÐ¾¹ã§\ç\\‰¯~','',0,'?'),(_binary '\é]÷W/>\ï}<8\è VF\ã','wp-admin/includes/theme.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c)\0Aƒ	\nù´&½,uAi',_binary 'A4\Ö\r\Ý\Ã\ÝQRºey¦0¨¾\Û\ÄC‘\æ.\Ã\Ä!\ít	','',0,'?'),(_binary '\é^.—jT}ù<\ÞŒI¾™','wp-admin/js/accordion.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T“\ê \Ä·R×Œq¢A\È\ë',_binary 'uý\Ýj\Ðh‚&Q§ƒ\'ƒ+\ÜGÒ—*!9¹¹1$W„õm','',0,'?'),(_binary '\ég\ÑÁ¶ÿU)\rR(\â','wp-includes/js/dist/is-shallow-equal.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\á)j#¹\Z>þ»½+Ñ„d',_binary '{{\àž‘2„\î\r¯È¼C\r8«y©1R‹B\Â\ÆÁ.X','',0,'?'),(_binary '\éh®d8òõ]H×€f;Œº','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/woocommerce/woocommerce-panel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'mõ\ÌoZe“G \nF\å¿',_binary '\íÉ“—OM^Cþ—a¤sõ\\¾Á‚n·þ•s¿­ÿo\Ûý\é','',0,'?'),(_binary '\érŠ.\ÈTb ,ah•I³\ã','wp-content/plugins/woocommerce/src/Internal/DependencyManagement/ServiceProviders/ProxiesServiceProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\í\Þ?—µ6,øpJq¾\"r',_binary 'ÀP@v¡¶\àgI+¼\"§—öõ\éC#_Co{\'Šþ•û´V¬','',0,'?'),(_binary '\é|:«\êxZ~±*\×wlø','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-select.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n\à\É\Ñ\Ü[f®•0\Þ=G\Ö',_binary '\Î[G¡fü\Ë’N\Û\éˆö	rGòÆ¬¿šŽ.','',0,'?'),(_binary '\éT\áB3º›Gö\Þ{','wp-includes/Requests/IPv6.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÔñþªnÒ¤&­i\Ê˜\r\Ò',_binary 'þ=\Ø\íln&\Î\Ñø¾„\çÄƒ\æJ\ÇÓ—µ‰£~\Ä\Ä\Þ÷…\él','',0,'?'),(_binary 'é‡±p1ªqºE¡/V\\ž','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/icon-white-refresh.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\Ï#n¹¦pe7®_\Ã\é',_binary '\Ï\Ð$a­ ¶ˆ\Ìô\Ö0ds\æCNLs‘\ÉtSwžo`ªe','',0,'?'),(_binary '\éˆ@ô%ój\áX-©	ººV','wp-content/plugins/woocommerce/assets/css/photoswipe/default-skin/default-skin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\à@+L:\î„\íb™÷“\Í!',_binary '\nœøµ€ˆ\êrIž\Å%\ÖÔ°´Z´p+­ö\Í\ç\æ\Ëx®#\"q/','',0,'?'),(_binary '\é—uu\Ó[¤PiL™¯j¾\'\Õ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-shipping/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡`¦ºu\ï2»ºsò\Åö]\ß',_binary ']5¤4™’e¢÷º\'Oj4¨óþŠÕ€h¥(^ly…\×G(','',0,'?'),(_binary '\éœý\Í\Êm/1c~\Æ\ã½~’\Î','wp-content/plugins/woocommerce-multilingual/inc/missing-php-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'AòU3\ææ·»f™\âÿ\é_*',_binary '%\\„Lûe\ÇÞ±™59d`_\æ\è~8\ØYSŸ®\Ù','',0,'?'),(_binary 'é »ÀyN<Ž €9€o\Z<','wp-admin/js/xfn.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\×>B’Žû25Š\r1U*¨',_binary 'O	\ï†óh^dLgzòò\ÌIwúvÆ„aZ1û\î','',0,'?'),(_binary '\é¡tLHŠ:§\ìP(\Ù\Ðö','wp-includes/css/dist/widgets/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£¾·XŽcü\Øóy\ÄW5%',_binary 'I¼\ÂZ]÷ƒ+9\ÒJa\é<\Ùg¸\ÉÓ¨\Ùô^…òF','',0,'?'),(_binary '\éª\Êm¬Mt¨†\ÛW³B','wp-admin/images/align-left.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\ýy0\Ïúd÷Zòo.hž\Ô',_binary '\é_]\ê<#¶S\Î\"´B^U4_\ÝQ<!@šx?J$®£K\Ï','',0,'?'),(_binary '\é´M¹’:T\Ê|¦!u\Í','wp-content/plugins/woocommerce-multilingual/res/js/currency-switcher-settings.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T¼h“;ü3j3´øY˜\Ë',_binary '\ÐuE|<†ŸXt\éUG»\Îú0`*b°¾cû¸eðÁœ','',0,'?'),(_binary '\é»c\ï8ÿ\ïx«\ï\åÏµ','wp-includes/blocks/preformatted/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å¼)1n8.R‡œ\í¨*',_binary 'vš[\Ë\â7•/N@3)}ùo£x\í©ý¸\ìt\Ø7§Nk‚ ','',0,'?'),(_binary '\é\Ìžƒûž;d\å‹R0Ø','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/BatchSchema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ktH\Ð\ÚQv¿P0í­®,',_binary 'P‡‹<ð¸´Ù^”N¡[¨~4³ÕƒGMß—sˆüs!®','',0,'?'),(_binary '\é\Í,t*\å\ÔÓ¼}\Ê%\è','wp-content/plugins/yith-woocommerce-wishlist/assets/css/unminified/themes/twentytwenty.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<\è‘œ£°\Z\Ös¯œ±\Z¤',_binary '}\íz~F\ë¢I´‹/\rú\Ë:Ð´m^ž›t8W’\ÈG=x','',0,'?'),(_binary '\é\Î\ÉÑ¸R©‰ ®`\0','wp-content/plugins/woocommerce/packages/action-scheduler/classes/WP_CLI/Migration_Command.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'k<]^Ü´\Çý›”³=3•c',_binary '*ù\n\Äµ\Ë`Œ3\Ôq\ï^°,,²G\ã/H\ã','',0,'?'),(_binary '\é\Ô\Þ\ât“þ˜Z\ÑO\'ƒ \n','wp-includes/js/thickbox/macFFBgHack.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’È°gï†­\×W’,/u´',_binary 'Rw\Ë/\à¿h\×\í&q\è\Þ]Z¢½_ó\Ä\ÖNgyô•ˆ¹\Û','',0,'?'),(_binary '\é\Ö\ç\ÙöV,E@†X‚šy','wp-includes/SimplePie/Cache/File.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P·¦8?Q\Ð\Ôh×Š\ç¢',_binary '~\Å`Ÿöå«Œ\Í<½õB\né²™%]û\è­X}\Zi¶¿','',0,'?'),(_binary '\é\æBk þj:¥/\0€wƒ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/item/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡v¥\×#sz•â†ƒª®˜',_binary '0\Ç3üd\ëZ1¶t»\rò\Ýh\Ö\\\n\ËÞœ#ñÝ²\ä\\h','',0,'?'),(_binary '\é\éDÚŠ¥\æ+;«k…','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-tag-control/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œc@Yƒ^¡w”…?7¸¡',_binary ')NoT³´²X\ìne³Øm$aá²²1¬\r\È\r\Ë\è\å','',0,'?'),(_binary '\é\îˆ]\×\Ê\í.q¦†ž¤','wp-content/plugins/products-compare-for-woocommerce/berocket/libraries/templates/template_lib.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iÛ¤\'¯\Ú\n†qª\æ\ì\ÙFw4',_binary '\ÕrYR8\Í\nóšº\Ø\ÃL¶\Î‰0½][o^4\Ã:\Ý ö','',0,'?'),(_binary '\éð\\P3ÿ¨“û\ßû\Ùt¶w','wp-content/themes/flatsome/inc/builder/shortcodes/helpers/colors-overlay.php',0,_binary ';Ã¦`#{™39XP®ŸXºˆ',_binary ';Ã¦`#{™39XP®ŸXºˆ',_binary 'SX8Lu&íŠ¼A‡—)÷X½;\Ã\Ý&*šlF†…A','',0,'?'),(_binary '\éÿ\çQŠG>g\ç³s\í!·1ü','wp-content/plugins/woocommerce/legacy/js/admin/users.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<Ñ€R\Z\rÀ\ãd\Ú\\\Ñv',_binary 'ŽC\è¼\ÕðvJ}2¥G£PO0ý…BDT÷\â³','',0,'?'),(_binary '\êš”@^#¸§C¡!4ÿZ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/contexts.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•ò[gn]í—Žúq.\'º',_binary 'nƒVµM©\Â]ÿ\åb…¦õ¸H˜Ü¬–\Ì\ç\ÞO=\"','',0,'?'),(_binary '\ê	\Ü1_E\å67ý\åó','wp-content/themes/twentynineteen/sass/forms/_buttons.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\î¯äƒ¤inO~\êž k£`',_binary '\0—Ã“\rÆ±6\Î õ,\íJ	\ß\Ü!d7”‘\ïn•\èhô\Æ','',0,'?'),(_binary '\êkLN\0ô\ç»x6@','wp-admin/css/list-tables.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÖHSÆ¯Ö¹Ž<W]Yq\ì˜',_binary 'µz_Á3‹­=zòi‡\\½\Ã\æû¶\ÑÉ„ò,@','',0,'?'),(_binary '\êHAJg‘\Þv\çC%ø','wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/TaskTraits.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';·\át\åSQÿ†{D\0\Ó',_binary '5þ\Ê\á1A\â\\%a\í¢i\Z°SWfq\r%¿¼\á$?©*\Ãi','',0,'?'),(_binary '\êjÎ‘¥¬Ÿ\×b\åq+m—:','wp-content/plugins/woocommerce/src/Internal/Admin/Analytics.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÔÆdôt\ßþ‰µñ22\è',_binary 'Qó\Ã\Ë	´\çôH’\âM¿ÿqv®\îø¢ÞqV#\â,\ÛÎƒ','',0,'?'),(_binary '\ê\Z7¸\Ôÿð\Ê\çú¥\ã˜','wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-orders.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Âð{‹¬8\î®\Ìeµ,',_binary 'î—‘T\Ü\Ë;À7Lr\'‡\å{zhˆCW\èb§ž<\'w?‡','',0,'?'),(_binary '\ê(Ÿ¶\Ê5TD¡Úµc\ZKÿ','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/metabox.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!\"\Ø\ÑG[\ËBø¼\áüÀS\å½',_binary ';§Gg(k\ÅN\ÕY\ì\Ü\0\ÉÀ†úw4|WyNl;žñZ\ZW','',0,'?'),(_binary '\ê*9Frù¥¬J¥\ß€«','wp-content/themes/flatsome/inc/admin/kirki/modules/css/property/class-kirki-output-property-background-image.php',0,_binary '¢	#øw\Ö}°”Œ.\Æh2½',_binary '¢	#øw\Ö}°”Œ.\Æh2½',_binary 'º±f5¶\ËÆ»¿š!®ö…Z\â\ÑB}*`ûRPg\Ã`','',0,'?'),(_binary '\ê-.§´x¶É¤\àR»\Û','wp-admin/includes/privacy-tools.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'CŽk.Å¨ªv\Õ:\\\ç¬',_binary 'P\é¼ZGD\0\äY\ê\Ï-c±ŸrU\ÏJ{˜€e7ÁB\Õõ','',0,'?'),(_binary '\ê-6OX;\Ö\ÝÕ‰}P3HG','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductAttributes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ógG;™j\ÇsO¡\ÑcJô',_binary '\Ý\ÚbL\æ³\ë¶G\\\ÞSG$\Z³\ï\Öû\'\á¹\Æ+Î»¿ö—ø¥','',0,'?'),(_binary '\ê0J\é”\ÇÁ\é\Ífx°#X{—','wp-includes/sodium_compat/namespaced/File.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']\Öm\Çw\è/\æ\\\Æy5\Ú',_binary '»Ét‰d7–Hñ†}=·ù.t“\âCw$–`cºÀ\'ü','',0,'?'),(_binary '\ê4\Ê\×\çº2‘)A.;4\Ñ','wp-includes/js/customize-preview.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3Q	ý!@\áÙ§T\r',_binary '	\ÐZ\\L\Ï\éô\'b\É%\á¹i$\çõúò\Z\n\ïµ\Æ\îF®~','',0,'?'),(_binary '\ê;v>£Qf\'\é@\ê‰÷·','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/use-checkout-notices.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–|Hs\ÃÑš\Û\ÄNˆSÀk',_binary 'e\Þ\n\ï9‘Ia5mt7Y»4Mlo°(	\Z„o({','',0,'?'),(_binary '\êD\Z—¯lµ*\ã\ëZq\å\à\Ä','wp-content/plugins/woocommerce/assets/js/zoom/jquery.zoom.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Yóˆû\"VJß¿÷Zn',_binary 'r\Â\ïr\Äb¥\ÝJÜ»>¯Ã‚\ê„^\É#úU`²œª\ÚX=','',0,'?'),(_binary '\êQ\ÉA\è	ð=HŸ¯7-','wp-includes/js/jquery/ui/droppable.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·µ…Ñ¡˜ý0¡\î$¶8}',_binary '$ŠaŸX÷¼»ûA÷91òn\ï\â\×\æUL\ÙŒ–\'-š­','',0,'?'),(_binary '\êd\nºv;\èO1:®®,Tn','wp-content/plugins/wordfence/views/options/option-toggled-multiple.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ò’¼Ð¾µ6¤\Êþ¯¢\ã',_binary 'r\Ì\nz\É\è•\é>¢˜½g\ãi\Ô\ru÷´u<²\ä›F','',0,'?'),(_binary '\êd\È\r\É\Û\\¡q\Åòr„Ee\Ã','wp-content/plugins/products-compare-for-woocommerce/readme.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª\ä;HÕ´ \'?\0Ÿ]¡\å',_binary 'žŸ€ùa\Ù?˜=Že É»\Åôð \ær4<=¹,§\Ç\î\ï','',0,'?'),(_binary '\êj8ô¼|¶‹û£­“z—','wp-content/plugins/woocommerce/packages/action-scheduler/deprecated/ActionScheduler_Schedule_Deprecated.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Í\ÄfÀµ±Èž‚LAš#(t',_binary 'mbµK[¹2:e<-Ld\ÕNó‡‘U\åd]°ùŽ\ÙÂŸw','',0,'?'),(_binary '\êk`J¯û»§\Ôl\Í(Sxö','wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-json-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ia\Â\Ö$üy“X“3w÷·b',_binary '¦cW*J/sÅ¯·Es—\Õ\Ç\reJ\Ïó…¬\"´\ì\ëš','',0,'?'),(_binary '\êr@¤\ÈD¾‹Z\Ðä¯©','wp-includes/sodium_compat/namespaced/Core/Poly1305/State.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Š!K\å	5y¼¡S*',_binary '\Îý¿ˆTy‡O\î%u;\ÈU\ì“}\ãg\æü1Ÿ\ï)˜\ÝZ\Ã','',0,'?'),(_binary '\êxŽBt\Ú\èð_Š\\','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/box-left-dark.svg',0,_binary '\é<#-!ýV\ÜÍ»ÀµcG',_binary '\é<#-!ýV\ÜÍ»ÀµcG',_binary 'Å¸3ª¥5,°™1\çL¥sû¾Œ«ýN²£\×eM','',0,'?'),(_binary '\ê€\Ûu‚i \ÕE%Û†\ïñ','wp-content/themes/flatsome/inc/builder/core/server/src/Transformers/ArrayToString.php',0,_binary '¼\nW^h¯0­&\Éj\Ø',_binary '¼\nW^h¯0­&\Éj\Ø',_binary '•¹w:B{6\Ïp£y”¯™Ášyµ\äjÅƒÀýd\áÀ','',0,'?'),(_binary '\ê‚$®‹;\n†@R¡\ç4¿','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-guards/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¢\Î5\î\Éÿœ4)A\Ó~ð³',_binary 'q ³3®	:`\'.\Ú(»Ë¾q paù…\ÂhÿI\ËW','',0,'?'),(_binary '\ê…\0¤ð\Z‰°Ê•ÿz','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/payment-methods/types.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×OR?K\Ó°7Qa\ßù$',_binary 'Œ€2@4!\ëœ\á,r~‡‡{Ñ«ß½žòþk~úvÿ¯\Ø','',0,'?'),(_binary 'ê¥²«2jEbgØˆW²x\Û','wp-includes/css/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'M,\Â\Ç|7\Õš\"ßŽ\'“',_binary 'Bû­±²³@¿{…»ðµ²­¢6\rœ$Ï…@’Ä­õ+«','',0,'?'),(_binary 'ê¥€»œG_,<\Ýoø¸','wp-content/themes/flatsome/template-parts/admin/envato/version-info-iframe.php',0,_binary '\Ñn\É\Ýÿ\0\ËºË \ä‘g¥\ç',_binary '\Ñn\É\Ýÿ\0\ËºË \ä‘g¥\ç',_binary 'ù}“¨¯¼&\Â@+ù–\ÝTET\Ú\å0dý\ÏD5½:\Ï','',0,'?'),(_binary '\ê¦$¦ö’\ê~­B”\àÌ \æ','wp-content/plugins/woocommerce/legacy/js/frontend/cart.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ôrO¢˜Á9¦£®{\à(†m\Ü',_binary 'sV‹…\Öðƒ|\Ù=›\Î3­üSÚ†¤Ü½.¦u<','',0,'?'),(_binary '\êªFsD¤bYØ‘ž\æ\nk','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-accepted-payment-methods-block/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸£®Šd¬ õj,\ëóW\Ò',_binary '\Ã\Ì^ù(\ÜZ\ÑSjS\Zs\ç+»4,¤&È•\Ê~v\Ô\åj£Ð‘','',0,'?'),(_binary '\ê¯Ç‡¾\Æ\Û4Ë“T`¡k','wp-includes/js/wp-pointer.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"ú%\âðiÙ‡km\Ûð\â',_binary 'U\ÄXu™®Ç‡\Ã)G,i\Ì\Ãm²µ\Ô\Í5_ý²MT_','',0,'?'),(_binary '\ê¾ZWGýÅ›_x}\â·Q³­','wp-content/plugins/ti-woocommerce-wishlist/integrations/uni-woo-custom-product-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥¥c!\'	z)oc´9',_binary '˜N\Ïm	©÷Áb$o9\'Oû\çCýóœpŒV·\ì§\ß ó;','',0,'?'),(_binary '\êÁ,Xœ\è	ž\0„²„f\Ü','wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/CustomAutoloaderPlugin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›(M\Ä <¬\êÆ£Íº E',_binary '¾\Èg\ÅN)ø—I[ƒR\Ãi\êÒ­!A\ï]®|¾_yw-','',0,'?'),(_binary '\ê\ÊC_\Ð\åQÁò¹ª)fW','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/AtomicBlock.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b–÷rkPa)‰zpe\Ñ',_binary '˜Ay\É\Î\à3¸\ZwX\àeAoþ\Õ\ÚWx¦~&\Ø;@\Â','',0,'?'),(_binary '\êÌ…o1&\ÓÀFÕ¡ó‘','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-php-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';Ôš\Å§WZüÙœÂ%',_binary '<~#7\Ñ\çÝ¨¬ò1“ƒH\ZŸ\"ª\ï\ÆNA\' :`)ªw','',0,'?'),(_binary '\ê\Ïp=h\î<¢\n@%CW¤ø','wp-content/plugins/woocommerce/includes/admin/settings/views/html-admin-page-shipping-classes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒ®$\Ñ]±ž’¼ŽY¾g~1',_binary 'þ0˜\ïHqˆG\Ä8ÙˆºŒiø»\ïC§ŸKPE\Äd¬','',0,'?'),(_binary '\êÐšª_Þžu@©š\Û1','wp-content/themes/flatsome/inc/integrations/wp-rocket/wp-rocket.php',0,_binary '4§iý\æ–1kxü@øhe',_binary '4§iý\æ–1kxü@øhe',_binary 'K\ÃEþ­±+w\r\Þ}õwK…\ãGq\á^Ì¸ðJ\â;7','',0,'?'),(_binary '\ê\×\Ð`I\Ë\í³,óy oŸY','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';ƒ\ï–8e_\ÈT\Ý\ÃÆ½W',_binary 'Ý¬\ïISôP\"õa•» 7JŒ6\çQSv„“ô_³y’','',0,'?'),(_binary '\ê\â\ÂH\Û\Úd2b‘\Æô\Ë>À','wp-content/plugins/woocommerce/src/Admin/PageController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G^4ú7odú0\ÓÀ)¢\Ñf',_binary 'RöBÀ\Æ¤|Ÿ\nˆ|\à\æw\n–Œ„\æ®5€ý(õ','',0,'?'),(_binary '\ê\ã\ï#zÿ¿Za\àB\ç\Æ\ì','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/order-summary-discount-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4ŒŽ\ZºiZÆ–9˜±ö\Ë8',_binary 'ô±ì‡¸Pz°7\Zw‹mšºq«\Î@,¨21Ì®\ß\Â\ÃfY','',0,'?'),(_binary '\ê\äü¼L\âóøn\ß\Èý\éB','wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src/Utilities/CssConcatenator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i–‡I\éš5HÑ®)\ÍJG',_binary '\'\äV9„\ípðøt2\ßö\Þ\æ‡÷·BXC¯ûh¾°\\','',0,'?'),(_binary '\êð)Y\ë¦%\Æ5ø\ã\à=u','wp-content/plugins/woocommerce/src/Admin/API/Plugins.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–\ã\Å1;œ\ÝR:¥\Ë6<Š',_binary 'K\Ð~(\ÖX#\'j†f\Ã?\n\0\é¶w:ñò\Z\È\Ò1Å§','',0,'?'),(_binary '\êð6\ÎZ—fM\ï£ó”;„','wp-admin/css/site-health-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ\Ï,	Qp\È5‡ðñnó\é\Ì',_binary 'GÐ¢E´pgû)DšrÀº6\îx\àP5\ÌE!^Jk±½ü','',0,'?'),(_binary '\êþôü‚Ù²½K¢ª>\×\Ü','wp-content/themes/flatsome/inc/shortcodes/accordion.php',0,_binary 'ô,N)\Ä	\ê\ê\0‰Q t',_binary 'ô,N)\Ä	\ê\ê\0‰Q t',_binary '”ë¿“)ž\ßz\Î\ïLû‹T•D\èRA¥\Æ[”\Ö\Ømù\Û\ç','',0,'?'),(_binary '\ë8[²Õ©øO€a\ê\Éø','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/contact-information-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w…í€ŒµŽ4–¨o•ñ¢',_binary 'À3	FwÇ¯\ÍF\×öž´‚¾ƒ¹Pt?\08y#™’›3','',0,'?'),(_binary '\ë\njÝea!\è\ZWdq','wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÓÙ¶Áöh«rdGŽÍ¶',_binary '³_7\ì	2î¼”w-Tb\â	-³\è710ÎµA\Õ°\áÿ\íf','',0,'?'),(_binary '\ë\ZÕ¥mg\ã½_ö„). ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/TastyIgniterInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '„‹ý5 \ä#6¸¯\ïlž',_binary 'w‡\r	‘Z\Ä\ÄÏŽ‘]?YxaPÀRn/A\ÙðQ\ÌM\Ì@¾','',0,'?'),(_binary '\ë&§\ê\î?P¿”F/\Ü~','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/payment-methods/extensions-config.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=/¼¤Y„xpü',_binary 'vjˆ:öA–\î´qR4\rÂƒ\è+?h\Zd‡…\Ò6êªZ','',0,'?'),(_binary '\ë-n\ê$.ÿ#g%\Ä}\Ý÷','wp-content/plugins/wordfence/lib/Diff/Renderer/Html/SideBySide.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å \ÂOÙ‘CHŒØ–sº ',_binary 'pX˜\Ü\éuc{ð-\ãK×Ú˜ /OnE0œš„)JB','',0,'?'),(_binary '\ë.SðM\ËE´6ö/\çpyX','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/bpml/icon-128x128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ëÁRwúý\ÜBo†\ÜS\Õl',_binary '\Ü0úq½~ßŒ™õYþÿF7–Ò†\ì„³b·_:±','',0,'?'),(_binary '\ë0žŠRðJ³{y\íË£÷\ï','wp-includes/general-template.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^Ÿª8«½‘\ÍB!	Ð²',_binary '=À8™VflD3¼›8Ö™™Ì¦j#b°ÿ5^ $¿U','',0,'?'),(_binary '\ë3™R»+\×\ßCg÷-\Ï\ç\Í','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/CustomizingProductCatalog.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SÖ Yø\\8$\è‰\Å\Ùûi',_binary '@}8œ~\Ôw)\éWiVsÒ´—ð?\Ò\í¿\Ù<õ|o','',0,'?'),(_binary '\ëB$ˆFY‰o8\ã‘sj‘…\Ü','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/pagination/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ã?9ux\ÇSL#\Þ\ä',_binary '\Ø_ùU\Ì6³H²ÁH\rŒžx\Åxš‰B½†ã•½*o¦þ','',0,'?'),(_binary '\ëC‹Z¾µ#º\ÖDTs\nj\ç','wp-content/plugins/woocommerce-multilingual/classes/media/class-wcml-product-image-filter-factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';óz)\Ç4ÿ™\Þ(õ&z¿',_binary '¶oI¬YZ\ß÷·¯±“óqIYqŠ\ÔežSBwØ‡t\Ç\áˆ}','',0,'?'),(_binary '\ëF ó8\Ç+²)\Ð\Ør\ÝP\è','wp-admin/images/no.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Èk¿d\É$ùŸÜŸV7ðÀ‹',_binary '\n\à>\È\Ò¢~h\ÄZõ¤\ÓP\0ýU0\Ê;\' {õ)	¬>','',0,'?'),(_binary '\ëLiûZk=…(I=\Ï\Å\ë\å','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-address-block/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Â&nµ\Ö-½Š\è¢Oô\Ä\Øý',_binary 'H\Ö\æ\ècõ#…i”n?#­\"\ÌG‚;0¡\Ý\Â\ä\Ø;x\Ù(\æ','',0,'?'),(_binary '\ëM\Z¥\Õü—H³?Í²Z','wp-includes/class-wp-rewrite.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@¼E¥j\n—–\è»\ÔHA',_binary '\ÞU\î+\éÚ9\Ê\"D®”_L\Æ\ã]öL³‚E_hN­\Æ&w','',0,'?'),(_binary '\ëOÓ¿ú;¤=\\J¼zy','wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Xloš)\r³\Þ\ßŸ\r³\\º',_binary '\Ù98\Ìn| ½W@Ñ­|Ýƒv¨\äp5¤Œ¹µl¢\è','',0,'?'),(_binary '\ëQF\Ô0t\è+¼ö\Ø\á™ðª—','wp-includes/css/dist/block-library/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '~z\Zž7\Í\Ú\Þ|n¢‹',_binary '<¬g“\Ôt¢9ž¢¢ôu\æ®À\Ìþ\æv/™+¢‚\é','',0,'?'),(_binary '\ëSü.ÿ\Ä\Êÿ\Ðô®³Â®','wp-content/themes/twentytwentytwo/parts/header-small-dark.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ìR+	}¡ù3ú~UY\Z:',_binary '	$\Í÷$o—ýpÃ±Œy2\"t¯Ak›,\Ë\Ïc­\Z\î¾Iy','',0,'?'),(_binary '\ë[=\Ô5…\Æ\\¡	1\Ôö','wp-content/themes/flatsome/inc/admin/advanced/functions/functions.load.php',0,_binary '¾\ãq\ÙúÂ¡\ËaA,&us',_binary '¾\ãq\ÙúÂ¡\ËaA,&us',_binary '(\Ó\ÓÀ\Ìú¿“9÷k“>\ÂWKc\ÇÎ«)‘#Ø‡!8\Æ','',0,'?'),(_binary '\ë_‹1t=qTµQ¤*«Fò','wp-includes/blocks/gallery/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\És›™ó\rK	ˆ\Ðö\Ï',_binary '‡\Í\'(@n¬·R¨—Ž\ë\ÑÊ˜\rx33\×‘•Œ\æù(ú','',0,'?'),(_binary '\ëa¶Žu\"9s?‚H€ø\Æ\å','wp-content/plugins/wordfence/lib/WFLSPHP52Compatability.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒü%1ùs¬˜¥Ã‹G',_binary 'E”„WÙ³¦?\Ì4\è\è…@U?¬0‰€\ëbPº+\æh','',0,'?'),(_binary '\ëh\åýu¬÷_±\Èú@','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ù0‹?°š\È\Ä;Ž!¦',_binary '¨R\ß\ßz PÿMJ,„œc5¸)·ttœ04$—ˆ-ºžº\Ý','',0,'?'),(_binary '\ël½/\í“s\á½|6oJi','wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-pt_BR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ê7AWA\îJƒ0´¶d',_binary '\ïHRò’2”­.(+Iñph¬hUº~\ÅÛšÃ–\Ø','',0,'?'),(_binary '\ës\æ\î´Zz\ç`x°mf: ','wp-content/themes/twentytwentyone/assets/sass/01-settings/global.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	¾F±÷nŸ¤¸\É\á\Ä',_binary 'mrO\ïzóIyÇ²õq±v\ÑË˜qZœ’‘¬\ãiº','',0,'?'),(_binary '\ëu\'‚ Áy„xH\íÔ¦µ','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/jquery.colorbox.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'È\ßò\Ç\è¸ß¤$\íTŸ-',_binary 'b)\Ó0[8™\È<¸Á\Ø\Ñ.´Å¸2…\Öq\Ù´˜P´Ÿ','',0,'?'),(_binary '\ëx°Dª.¶\á\Úm~<\×2','wp-content/plugins/wordfence/images/ratelimiting.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0[›\ìM±Éž¥yP°\é',_binary 'ô@ƒ\ê­ôS\Ä\çy\'\èN+™k\éBÀ¿3†J!PbÆ–•','',0,'?'),(_binary '\ëŒ\Ëz™7€öy-<§','wp-content/plugins/ti-woocommerce-wishlist/integrations/wp-grid-builder.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C2úr\éF˜\ì1»1	\Ã',_binary '÷±>\Ëj\ìž99>\Ä;a–\ç]\ìôö\Í3\r\Å>\Ão<K','',0,'?'),(_binary '\ë +–1i†I1´kˆpn','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-tag.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž\ÙZ2¼r¡(õ$I ‰c\Þ',_binary '\é.p)²B\Î\Ïhša>#U`²yù‹úxy6÷8»<','',0,'?'),(_binary '\ë¢kNyŠR—	Ü¸\ÊôE','wp-content/plugins/nextend-facebook-connect/admin/templates-provider/menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_\æ\ÖW=\"A\ÚÕ”\È\á',_binary '\åu1\'„C¸-^Gš\Ï\ä¾µðY&\'³}±§‘\0\Ä\Þ','',0,'?'),(_binary 'ëª¹\çT/÷Ž\á\\PVD}\æ','wp-content/plugins/products-compare-for-woocommerce/style_templates/sweet-alert/sweet-alert.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\çd—]\é\Ì÷©ˆv…\à4\î',_binary '!§u=V8&Hx\0·ƒ§\â+YM\Ú˜,›um','',0,'?'),(_binary 'ë­·\r\ç!z}MLKE','wp-includes/ms-files.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8üôã€–z\å§\ÒÞ	™',_binary '\Ã4?X\Æq©)½ƒ¢Ž\é‘Ìƒ\ÄcfN3.yœ²·\Ö\ß','',0,'?'),(_binary '\ë²\ÔSÚ°p—GMÇ¯¨l\í','wp-includes/css/media-views.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I²\à$˜\Z»‡\Íõ\Údf…-',_binary '½t-\ä!~2 ?õò\0¹½¡Hý—üP•F#¼#‘C™Š','',0,'?'),(_binary 'ë³ƒ_d\Ôó\Î\éDÙ‰\Ì\Ò','wp-content/plugins/woocommerce/assets/images/icons/gridicons-chevron-down.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*°9\"’ñ\0\ËtR:M\Ó',_binary 'f¢xl:V”ü¼\ç\â~\ÈH\é&(\Z§0E ¸\ï\æB/ý','',0,'?'),(_binary '\ë³\î\ï#p(µN„Hº','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/OnboardingPayments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\è&\Æú®\Ù\'\é‚J7i“v\Ä',_binary '?(\ïh—5s^k§…ú£\æ\à\Æ˜X¥ªô§­¤zýB','',0,'?'),(_binary '\ë´< jI$i`n)h\à\0GP','wp-content/themes/flatsome/template-parts/header/partials/element-newsletter.php',0,_binary '?ê—ŠAA\ÄGÓ¿Ÿ%L',_binary '?ê—ŠAA\ÄGÓ¿Ÿ%L',_binary 'yO\Ì|x»n*H³\Ù	‚\n\ÙD\êeMôƒâ¥½¨¾\Ün³#\Î','',0,'?'),(_binary '\ë¹2š|õ?‚]¸ø°Ï¸\Ç','wp-includes/css/dist/nux/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i˜%¨	N8\è\ëªÎ‘@$',_binary 'F/w±¦\ÈFX\ë2‚†w¶\Û\à\×HV\èc\n\íÏ·(l\î','',0,'?'),(_binary '\ë¹ÁN¯ ò\ÙI\év`\áx','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/pagination/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E¬#z„N\éPÂµŽx}\Ú',_binary '\ä$xºš»\ÄQ}Î¬µ2\æú\Épe[\Ð8ožKö©ƒ\'','',0,'?'),(_binary '\ë\È\Ä×®F\î\êp\Þs¥\Ø4£','wp-content/plugins/wordfence/images/back_enabled.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡¡ñø]\È÷£”\ÒHŽ\Ã',_binary '¹¾¶9í‡¥)Rµ$px#¯q Žþ°£˜\Ç{#LøOº','',0,'?'),(_binary '\ë\ÉZðœ.iU«\ãö\ê^','wp-content/plugins/woocommerce/includes/admin/views/html-admin-dashboard-setup.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm\Âë¤¦£d\í+w´+H‰¶•',_binary '\\\çvœn\Æ\ç\íœ/\×\ái\ìZq\ì@þA\Ä.º•U“e','',0,'?'),(_binary '\ë\Êk\\\á#\ê2Z¯£ ','wp-content/plugins/woocommerce-multilingual/res/js/admin-currency-selector.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/5†øª»q\\cZ\ÛZùŽ',_binary '\ÙA¯‘`£-Ÿ,º€\ëµN&~K„\Õ;‹¹Cª?','',0,'?'),(_binary '\ëÓŽJ·$bJHõŒü\í\Ã\ï','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/panel/premium-tab.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô\Û1¯Ñ¹®—¨·\Ê\r\ì',_binary '@—A¦1›­*\Ólhý±÷L^¯E©\ï77[ª\ØZ','',0,'?'),(_binary '\ë\Ö\n×Ÿ>¸þÿG\È÷¨†­€','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/fonts/yith-icon.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ø\Ã•…M\åP\"\Ó\'4°¿',_binary '\Z¸ga§q…gm°9\×9\ç‹Ö±=Vÿ(l	XÀq%	L£B','',0,'?'),(_binary '\ë\ÝvAÀds½ƒ—µ®Kµ]','wp-admin/post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xS‰þ‡v\ä€N\Ç ›',_binary 'øˆ u¹™\Åý³yAóÒ®Bˆ¿\â(ª¿B6†ˆ\Ã','',0,'?'),(_binary '\ëÝ°™Â‚L\Ðü‰þ‡f^','wp-content/themes/flatsome/inc/builder/shortcodes/ux_products.php',0,_binary '\í;mv7 §)\ì¹N\\Tð',_binary '\í;mv7 §)\ì¹N\\Tð',_binary '4\ÍC\0\Î\Ö7²Xjúdd-·\ÃË¿c\ÌÇ±\è¸Y¦\ÝÁ','',0,'?'),(_binary '\ë\Ý\é0`‰€ŠB³wüT\í\ìš','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/dimensions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Q3ƒ”E˜qfFº@Áµ#',_binary '\×C\ÑÎ›¹~\Í\ê‡\ç_š4O¸™\0p\0/úX¹\Çg[','',0,'?'),(_binary '\ë\ãYC\à\ÞoƒoR\Ôäºž”','wp-includes/capabilities.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\è\"#ÂŽoº\Ö\Ð\ÊyHHb',_binary '+ºaÿ‹‹¦øØºÍ‰\ÕÒ“¤\Û2<\ØKôe»\'5Þ™øa','',0,'?'),(_binary '\ë\ä>›ý¯\ÖSÁ°\ì‡©gE','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/stock-indicator/supports.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ê÷7\"t\äXc\Ò+\äõ™',_binary ')~7³–\ïH)]·\'\ãU\çPöâ—›\Õ=rg*5\Ê\àZ×™\Ø','',0,'?'),(_binary '\ë\æÅ¯hq\ßsA!P','wp-content/plugins/woocommerce/assets/images/marketing/mailpoet.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Á&gžvööýP¶¹\nWÍ¤',_binary 'þ7r¦Gf\Ñ\â\Æ\È\È[\Î\ÈZ\Öÿ)a¤\ì6DÏ³W¾','',0,'?'),(_binary '\ë\í+cƒo¥–)d\ÜÁ~N@','wp-content/plugins/woocommerce/src/Checkout/Helpers/ReserveStock.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ëûTv•\nº«ò{ª\Û Å“',_binary '{3 {WAº¾ûíœ¢m®WeH¢¦®Y*\êšq?‚ \ã','',0,'?'),(_binary '\ëû\Ð\Ñ*º\nÄ˜a\ÙPö\î','wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-removed-cart-items-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼%ú—³s —\Ú\èò2´Èœ',_binary 'ˆ½3¡ð\Ó;?\"\Åu~jÕˆÆ‹€\n:\"Òž\Õu\Í\Ç','',0,'?'),(_binary '\ìX	 ?ûzµS/&z\r¡','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/sk.js',0,_binary 'l|Šl±uky0\éB\ÂÒ»',_binary 'l|Šl±uky0\éB\ÂÒ»',_binary '€OÕ…\Ï;¨\ËZ\ÕlZø6þŒô‹\è&øõ\íLý \ÔZ','',0,'?'),(_binary '\ìÛ…nPE6–‡Tˆ˜ñ\Ý','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/Request.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '—KdWŒ¹ªØ¿E\ÄWø¯',_binary '\ÜR•õW].da\ß\í¼\Þ\Ès¹\ÚJMœLq+p},ó','',0,'?'),(_binary '\ì{³€:»q‰W\ÆE‡5','wp-content/themes/flatsome/inc/admin/kirki/modules/css/class-kirki-output.php',0,_binary 'Ê‚‚Á\ä«|ú˜[ó^AŒ',_binary 'Ê‚‚Á\ä«|ú˜[ó^AŒ',_binary '\Ã\ra®³uvt‰xÀ«H&“\ã\Ö(h-\Í\Ì3³\Ã\Ò\Zñ\î','',0,'?'),(_binary '\ì ‹\Åp(é‚Š«È¼‰a£‡','wp-includes/blocks/navigation/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ã*F:û|bLT’«',_binary 'N+\è´\ÚÉ¢zþ”¤[ºpSþòM B\Ã;8W‚\Õ\Ö\Zª','',0,'?'),(_binary '\ì$\é\Êû£\ÕZ\Öó>¿y®4','wp-content/plugins/woocommerce/assets/css/jquery-ui/jquery-ui-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Õp\Ç\Ó\Òy‹´[{i,°\á©',_binary 'B}”K%\É79\Õ#sˆ4?žt‡\á-Ž»§U\Â\ãúõ\Ém','',0,'?'),(_binary '\ì8·Ú§™ºs}\ï÷Õ¶\àNi','wp-includes/class-phpmailer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\'\Å\ÙF!;‰ 2ó±»±4\Å&',_binary 'G±\ÄZG…\ãƒ\í5ÿ_Üš…\à¬XS[Wˆ\ÄS:9p@\Û?œ','',0,'?'),(_binary '\ì?\Ø\Ô\Þý·h›±\Ò\Î;','wp-includes/js/quicktags.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŒÊµ\Æ\Ù>	%…nK¤{<5',_binary 'mwdÿ\Â\ì^Ê‹\à\r€§1 ^K–\É(<nV¦\ãŽ\Ð\è','',0,'?'),(_binary '\ìD\rh}¼\è¯¶‚!\n','wp-includes/js/jquery/ui/effect-drop.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ùwhŸ°\ï³\îú_csþ\ë\Ã',_binary '³\ï®üóÞ¼`ŽB¡¯‚\È_D¸ð\ßm6\æðC\Ìôk','',0,'?'),(_binary '\ìPb’’|QQ¥\Z\n¤0}û','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ImageAttachmentSchema.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lL\î”;\ï\×\Ñi)^`b',_binary 'Ii\\…\îë¡¼T~<Ta3Q($D¾1x¥”§¨Q«s\ï','',0,'?'),(_binary '\ìPØ·úŒæ‚‡ÌºÆ´$@\Ø','wp-includes/SimplePie/HTTP/Parser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P0³Ø´ð57\ã,Œœ	z',_binary 'þþ&\ÞbôBç­¢\ã0·9ÿZ/õ|ô1¸\æ÷p¦‡','',0,'?'),(_binary '\ìY_E‘\ÒÜ Œ\ÎU\â4ª','wp-content/themes/flatsome/inc/builder/core/server/src/Options/Custom/GroupOption.php',0,_binary '¤S¼ÍQ#Z\È\é,÷%?f',_binary '¤S¼ÍQ#Z\È\é,÷%?f',_binary '\ÙD+.öº\È\Ý‹\í(j\èl\Ê\Ô\\›…Âž„TYºff','',0,'?'),(_binary '\ìd:\nþ8\Ý	¦ÿ§b','wp-content/themes/flatsome/inc/builder/shortcodes/templates/text.html',0,_binary '=µ,Y¥³#ƒA˜:<$',_binary '=µ,Y¥³#ƒA˜:<$',_binary '\Ô\é\Ògòi­©þQc\ë\ß\Ñ\á€o\è\ÄT\Åú\"74k‰6@Š','',0,'?'),(_binary '\ìkBEu!\á\\zCª\Õj.','wp-content/plugins/woocommerce/templates/emails/plain/email-customer-details.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(ff\á¢4÷a¹HØ²B^¿\Ë',_binary '¦\â]\í²\ìð\ËðÃ›«\ç\çqI@(\Z’¢<\é\áOb:#xM','',0,'?'),(_binary '\ì{VcR\Ý\Æ>˜ÔˆA\Ä','wp-includes/blocks/code/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒª“ñSÅ\nLb³o¬—º',_binary '¦=\éõƒðúµ¹­\Ö	±ç¶¯ÿ´ü\ãtò\Ó¶I','',0,'?'),(_binary 'ì‚»Qs\î\ÜHEpb\ÖÙŽ­?','wp-content/plugins/woocommerce/src/Admin/API/SettingOptions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*<\Ó\Ñý?ª÷\ï\ì¬i\ê\r',_binary '¿ý´\Þc3AK\"#\"\Ì\å‰òN\ßù(Q\í»\ÂW¦O+\Òg7','',0,'?'),(_binary '\ìƒ¦˜ö\è²\Ø\Ú\ïª/7\\','wp-content/plugins/woocommerce/templates/content-widget-product.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '×·ž&\0€\Å3QŠ\ë;m<',_binary '[2\Û4W´B˜ ½œ¼« ~hdr÷s‡{\ã¨@øX','',0,'?'),(_binary '\ì‘|¶`y\äYÄ¶²»–Žo','wp-content/themes/twentytwentyone/postcss.config.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J¶}\ãd–\æ!\ä-\×ýq)—',_binary '\Û9û„\Ä6Ñ¡Æ³Ž¤ï´“\át_T¡\×tƒ”„ús\è\ì','',0,'?'),(_binary 'ì §\âzð¹X¼M$G¯','wp-content/themes/twentytwentytwo/assets/images/bird-on-salmon.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…–‘	žñ ³{Œ9\r¹˜',_binary '·a\"‹+€§Á–óÊ¹\í\"”Á[\Þ:Ò‘Ž\ÏAž\Ø','',0,'?'),(_binary 'ì ¶\ÊD\Î&Á\ÓS w7I•ö','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products/edit-utils.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\á\âVð\ê8Å²\×Gg\Û3„',_binary '#ÿ¸ý»”…Ÿþ3H\Þ\Ê\Ó\'QG-5†\æ´÷\0R\ç','',0,'?'),(_binary '\ì¡\çc\Ú\Æ.D\Âr¿ |ö\î','wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R\ÐÀ\äZ\Ê?f.\Ç8õ\â	',_binary '\Â\äŠÀ.c%´c°*G~£Õ¢>€Ydƒ¢:7\×j','',0,'?'),(_binary '\ì· Ð‡e˜³¼\ÅU~’\é','wp-content/plugins/woocommerce/src/Admin/API/Reports/Revenue/Stats/Controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W}“y\ÎG9o½5Aˆ\0Þ',_binary 'UœRf®\È<kX³84\ìðù§#P\è[\Î\æ\Ü­}~Z.','',0,'?'),(_binary 'ì¸ƒúv\È\Û6\àš;˜~','wp-includes/js/tinymce/utils/mctabs.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ë¡\ì\"Yù±´“>xUå­£',_binary '%—Y}Ú¿ƒ&)û¢øMaYg‚¿Ð\É\Ü\í*¦l','',0,'?'),(_binary '\ì¹\Ú!<ü\Ü\ÓB4\ZS}','wp-content/plugins/wordfence/views/scanner/issue-postBadURL.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª\É\Ïþª\Ìle\Þ@1˜\Ù-°',_binary '¦ª+	[P\rªi-\Ê\Âb0m–Ÿº\ÃÆ¥¿M\"…#³¤@','',0,'?'),(_binary '\ì»[\Ý\Î\äÓƒ©\ï2¾W','wp-content/plugins/wordfence/views/waf/options-group-basic-firewall.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ[><\r\Ãw³\Ò\èw¦É´',_binary 'À—ôü¼T;\æ™F\ë\Èò‘\Ê5@>X\Ës÷F\ã#ª&\å$','',0,'?'),(_binary '\ìÀ-x\Ç(\ÅE¶oI„=\Ý','wp-includes/class-wp-customize-section.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æ¦7›óI4\ëp†\å?ò',_binary '}ý˜WY¥ØŠx¥-?Tqn”&0”Š‹\Í“iº','',0,'?'),(_binary '\ìÆ¿­Žù•\æo\îF\×h”\ã','wp-content/plugins/contact-form-7/modules/akismet.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'w\Þeÿ/!†£¾o\"a-\ÐN£',_binary '‡o\rb;8V\àR\æº\Ø+€\ï\éUº*†®Lšñ\æz\Ý\å€m','',0,'?'),(_binary '\ì\È1\\}_u&\á	“‚~až','wp-content/themes/flatsome/inc/admin/customizer/img/nav-icon-outline.svg',0,_binary 'AóüE\",\Z@™l&6œ',_binary 'AóüE\",\Z@™l&6œ',_binary '\Î5ŸCð*Ø¸4¶¼‚Ì‰\0¨Ü˜À·Ú—„ô\ë','',0,'?'),(_binary '\ìÞ»\"‚`A\í\ÉhCFi°þ˜','wp-content/plugins/yith-woocommerce-compare/assets/images/socials/behance.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œSÁ]\ê¤2ž\0\ë\Þbþe…\ï',_binary '3\Þ\ÊOš<4ˆ—:\ÂI_0pü¼\ïŽˆqÁƒU-…','',0,'?'),(_binary '\ì\âV^žBÄ9\Ú\ì\Í\ÐiY','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/noninteractive/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A‘i^(n\'Áœ‹ªnk§ôX',_binary 'N\ç\ìŽ¡¤.ô\æ~²¶t\í•!(\Ó\Ðþ\Èn ‡÷Xi','',0,'?'),(_binary '\ì\èhu!’°ª\ÎùIU³ó','wp-content/plugins/woocommerce/assets/js/frontend/lost-password.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ø\0H®Y[\Â_\È\Ö\Äùfž²œ',_binary 'ªDžÝ·z{\ç™.ò.šþ2	ý€´\èÆ\Ë\î€a\åõ','',0,'?'),(_binary '\ì÷d1o\îq\Ý\Îf\Ë*','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/preview.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ñû\îœ­Œ\Ðz­Â’þ',_binary '\\Ÿ…`t|® Ÿ­Ò¾.>\0œó…QPõjB¿NKN','',0,'?'),(_binary '\ìý¥Æ¯\Ã\æ0~\rjA4u','wp-includes/css/customize-preview-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Eù\Û?¯ónZ£\Ò\ïd¥-',_binary 'G¨–i±\rlºiU^õªn\ê\Þrmº5ð\ÉÎÛ»Œ\\l','',0,'?'),(_binary '\í\\\áSƒÕ‡–€8¸–;2','wp-includes/class-wp-tax-query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y–+\nŽo\rŽ/Mñ=',_binary '³pÓºA8²\Î:`I{¨jú†‚˜\ÞCFºÁ\Ë*\Ùÿ','',0,'?'),(_binary '\í–øm×”\Ô\ÊF@$€~r','wp-content/plugins/wordfence/views/onboarding/disabled-overlay.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ªw|qª\ÙM+{3,©K¶#',_binary 'œ_œt™¸=‚Ô‘÷—G0É½*À67‹´\Ñ\ÏtŽ\È\è*s','',0,'?'),(_binary '\íY^üó°X÷\ë³z¯S','wp-content/plugins/woocommerce/assets/js/select2/select2.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸òm\Ös<\Ìbc\Ë\'>‚«',_binary 'ßš\Ïv+2*¨,Ÿ_iš\Ë\nzV\í\ÄG\ÌV ÷³>\Î','',0,'?'),(_binary '\íð‹\Â\\~jA\æOt\Ôü','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-product-categories-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zamÔ¥¤÷-\Ç×½\n§',_binary 'L…\Ó@\è/†‡m‘@»\Ç\ÉH¦\ëI\n—&l\ÂY’»=9','',0,'?'),(_binary '\í,+¨Lúù³°\\ƒÿAc\Õ','wp-content/themes/twentytwentytwo/inc/patterns/page-about-solid-color.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\n\à&\nD(Z\Ç;5ƒ\Ã',_binary 'm‘“ºž¥mƒ\Û\å=njpß®…¯\È\r}\Ålñ•8¨Ãžˆ','',0,'?'),(_binary '\í0\Öcž¼0\Çþ=‹H\É','wp-content/plugins/ti-woocommerce-wishlist/includes/wizardsetup.helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–B+,g˜ýö†R…\ë©',_binary '®¿Oc¬À²\î|\ÆQ0¸%\ÅŠ\Ø\ÌG.ó\Ä\Ò\ç','',0,'?'),(_binary '\í1‰k¯\ËB­\ÞzZ\Ð','wp-content/plugins/woocommerce/includes/class-wc-product-grouped.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Î\ÞKÂ¯\Ü\Ï\î\'\æó]—',_binary 'AŸ\Î\Ð\×+N\0=u}Á¾5E<b\"s¶\á±W1\å\ÂBBl','',0,'?'),(_binary '\í4\î:¹\Ò\Íj;F?µõ.','wp-content/plugins/contact-form-7/includes/pipe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0¿\Æ\Ð\Þ\0úù¢,®m\Ý\ãc',_binary '@ŒOZa•÷Nª÷d\ï¹Mð7\ÉÓ§‹½\áO)=óð¯','',0,'?'),(_binary '\íN\Ý\Ô\'¢!\rB\Äj¶\Ë3\Ï','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/LICENSE',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\H\É\Ö!#š¦>b\áW‹\æ',_binary '–&\ßxÁ†w\ÓÎ±h\Ø\Ä)šÅ“@5m\ß\Ò.)9\ßR','',0,'?'),(_binary '\íOR(Ç¹ü\Úñˆò¿Oµ¿','wp-content/themes/twentytwenty/assets/js/customize.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.Å‘\Ðþñ\Ø~->Q¯­¹Ž',_binary '\ßüh(*Ë¡SÂ®-t{\0\r\ìe£¿†7(ùC\ß:	\Ï','',0,'?'),(_binary '\í]š§@ƒ\n—«>Äº\îYn','wp-admin/admin-post.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S}d–¦D·ýTN\Õ\"F¹',_binary 'FµÔ\Ñq¯”`\Óë©¾ö\Ë\ér_“‘ŸÈ¨_†¢÷\'€œI','',0,'?'),(_binary '\íu\È\îR\ç¯ \æ½6','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œ¯\ä(J›\Ï_?+4h‡œ²',_binary 'ŠŸó°	\Ê‹<?~€C\ì²2B˜\Ö\É ®¿¢©Â’?','',0,'?'),(_binary '\íu\Ü\Üô­\æŠ6Š4S','wp-content/themes/flatsome/inc/builder/shortcodes/templates/ux_menu_title.html',0,_binary 'gR— ˜€=Z{%-v‘@',_binary 'gR— ˜€=Z{%-v‘@',_binary 'rð	\×r%\ßu3:b/(x†\Z\r¼KW&i›b','',0,'?'),(_binary '\í{ŠR:m\Ù\âsÁ\Ï_\ã','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductAttributesById.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'H\"Cr¡k¼) aŽõ±3\ê',_binary '€\í‹–\Ë\Ä	\Ðkl#­ý…p,%?¡\ï\Z¼m‘\ÐR>N','',0,'?'),(_binary '\í†Ä¤¸Q6™\Ä$\\|•)X¥','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/autoload_packages.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\é\æ+``jgF÷\É\ì.>',_binary '‡ó7uwÕ¬ ñ\Å\Ý:\r4!°§{Á&\Üc\Óº}[½Ÿ','',0,'?'),(_binary '\íˆ\Ò\ãI0“±B,óhÊ›p','wp-includes/class-wp-term-query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å¼\ì\Â+k \Í5\îv%Œa',_binary 'û`\ÃRŽ»•w¿¼›•\íC\Û\' Ô¢ƒt³’–§m™','',0,'?'),(_binary '\í”3£\Åu\Ê`p	W\"¤(|','wp-content/plugins/woocommerce/src/Admin/API/Features.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(b’J–¡]aJ\Æ\ê¸~',_binary 'g\ë]ltû\êÃ»€\Îp€\Ò;<\Ð\ëŸ,ª•wPq§\ìÙ»','',0,'?'),(_binary '\í™\Þ%Ô±\0:e\ìq\Ø\ä3','wp-content/plugins/woocommerce/includes/class-wc-order-item.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%§i\Ä\×\Çù$±N¸¤CÇŒ',_binary 'jU\èB\ØQ‡x¤ý\Ü0,\ßh\Èó^:£¥~’%8¸8\É','',0,'?'),(_binary '\íœ;Š\Ëù,6\Ø¬0','wp-content/plugins/woocommerce/packages/action-scheduler/lib/cron-expression/CronExpression_MinutesField.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b˜k\á«\ç§Q½2\Óö·',_binary 'Ô„\ä‹\ä4ÞšnqÓ¸$òõ?\rMfP\nù‹¢üTI˜p','',0,'?'),(_binary '\í£‘–\îú‡™è³®]','wp-includes/customize/class-wp-customize-code-editor-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\éŸ\æjM\ØÑ–\Â\é\élM£‘_',_binary '“xFZŠKc\ß\É37\Ä`Ôª$jgñý]\ÔQ\ì\Û','',0,'?'),(_binary 'í¤Z\Ò\Z‡5\n\Íj´}…@','wp-includes/blocks/buttons/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1–ñæ³jFx\Ï=I\ÌZ@w',_binary '[D\ì\åŸ\nF,PCyWÌ¯H\ÝH¦ÿw*\Ì÷\È@L','',0,'?'),(_binary '\í§F–ô\ì\Ý÷·mº¹¬','wp-content/plugins/wordfence/modules/login-security/views/options/option-label.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|<\â­>sZ¾K³z¾e',_binary '\ÄÌ†;\ån†Eô\Ø!\ïôZ\Ô\ZV\é\ÔV H\Û\Îw','',0,'?'),(_binary 'í§¤Z\Å\ZaYH\0 ›5\î~ ','wp-admin/includes/class-wp-automatic-updater.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´“\Å6ö$\Ølä¾¸mV…',_binary ',]Vs\Ù}MCn#E0fK¯cN\Ñ:Ÿ£‰Ž¹\\œ¹\å','',0,'?'),(_binary '\í°QR\"\æ\Ã@3ªöv\àS','wp-admin/js/link.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ï¶5§\íû¤«Öžù´Pô§',_binary 'O\Ín\Ê\ÄnÿôòË•\Ì{?Ÿ\à\ÈQ!\ï=øˆ\Ñ¢V¥oi\Ó\Ú','',0,'?'),(_binary '\í°a\ß@ÿPx‡¤','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-update-plugins.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\íR\ëWß—!¨?\í¾\Ú',_binary '\Åú\í |™\å1¡\Ò\Ê&\ï\É‹²\å\Z8Ú½;Md,â°¾','',0,'?'),(_binary '\í±\Æ‹-ðM\áq•e\È\è','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/box-right-dark.svg',0,_binary '	\Öøß‘¾õ–›.#	m9',_binary '	\Öøß‘¾õ–›.#	m9',_binary '|kP\Ò:CŠ§˜\ão9g%\Ð–õVIž•Èƒ\é@e´','',0,'?'),(_binary '\íºG® “\Ø~ª\Ðÿô`ø','wp-includes/customize/class-wp-customize-nav-menu-name-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ú\Þ7\ìfõW·Õš7Á´†',_binary 'pû\Üv\àw °\ÝÜª9ù¶Ÿ©?¡°a\Ýÿ\É€zŒ','',0,'?'),(_binary '\í»\ã]e\Ï+È’~~ùi6B','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/PersonalizeStore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ')\ç,¼\Ö<Ó¹;32\ØG‡—:',_binary '±wJ-,\'¤†\ÉÂ…}#}$’ZŠ‚\Ë>\Â^\Ø-\Ú\ÔY{û','',0,'?'),(_binary '\íÎ¢¶]ˆ\å.#WÁ','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-plugin-common.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@(Ÿ\Ö\Î÷\à›R±|µô',_binary 'C8\á¤L\Í\ã\è\'\Þ$©\ëš\Æ\Ö0\ÊXT…¿[Ai','',0,'?'),(_binary '\íÔ‡Ñ…‘\ë?tl’(š»ô','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-shopping-button-block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô\Õj}§\Æ\ÞÑ—2£¢½f\'',_binary 'Ø‹DY³‹’/«¼f^Å¬²Œ÷h	±/b*v\Z','',0,'?'),(_binary '\í\ØScÇ„\n\ìci¨1{wb','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/module-manager/icon-256x256.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\Þ¼ˆ\Âú[x\ë›=\Î',_binary '~V\Ð>Ù³uM\ÎRŠ‹=šgmyzC~/U+6pk\à0\ÐL','',0,'?'),(_binary '\í\ØÀU…\ØE\àýKÚ‚*ñU','wp-includes/blocks/gallery/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯\ì\"Bsz\ä±\âª2\Ø!À',_binary 'l\áR“\Ç\ÃEÍ”óVÖŠ™\Ö\r.3\Ý\ê\àuö\"°\Ö;ú¸\à','',0,'?'),(_binary '\í\Ù\ÅÁŠ\n•a\\&—ÿù\ì]','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/js/installer_theme_install.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æ\Â\åJõ…(oõ?ó›·V',_binary '-\ã¢‰\ï] ~„]j}\Öh\Å]ø¯·bIð‡›\'™­C','',0,'?'),(_binary '\í\à48\íK>/\'˜[$§¿ƒn','wp-content/plugins/ti-woocommerce-wishlist/public/widget/wishlistcounter.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&\ß$]\Õ\n´rV’©¤#	',_binary '5\Ä\"zÏ’\Æ\î\ÕÁø\\G\Ü\'¼~´{™©Aot\ÞÀ‰\æR\Ö','',0,'?'),(_binary '\í\é\Za˜]]\ãA‰\ê\'hŽ¤€','wp-admin/network/settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¶:‘S¦ý°}\Ê ªþ<òþ',_binary '\n©\Íf¸~”	\0øV\å½|F’žbh4VJ\è\r;™\æ[ù…','',0,'?'),(_binary '\íñ²ƒ=\Ãúc\äÙ‡œ\æý','wp-admin/includes/upgrade.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[V\ÝûT$v½»‡\ÉøµƒF\Ó',_binary '´\'ØƒÁ!ðy†`dã®¤oAª.\ë\íL¬K~@­ˆ#','',0,'?'),(_binary '\íù\ëeC˜¾„ðDi!\×\ç','wp-admin/css/colors/coffee/colors.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°þd½H\\\Z¯•^&\êsR',_binary '—aD Œ®’údošFD4]•h\ë³p•õ²¼21\Í\îf\Ì\Ý\Ñ','',0,'?'),(_binary '\î\nñ‘ªi\ÛÈ½©\'\0È§Ë¦','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/button-underline.svg',0,_binary '†|\Ôi\áú\èl\î,P‚“(',_binary '†|\Ôi\áú\èl\î,P‚“(',_binary 'a´ô\0\ÇmA‰” ¿\ÌE!°Èšýr\ÈLü\0\àIñž','',0,'?'),(_binary '\î‰•f\Ù%u\ßPû\Êñ„','wp-includes/js/mce-view.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…\îœ\è<ú\ê@^‰P\Æ\'',_binary '#û‰	„\Í\\P\ÎWdqß‹ƒ¼.ò\Î4Ã“\ã«\æx<’','',0,'?'),(_binary '\î&¿8fzZ¬g™«¼S','wp-content/plugins/contact-form-7/modules/recaptcha/recaptcha.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ûûn«tý½C	¶º\ÇL7J',_binary '‚¥Lú˜K¡Q\Î\Å\Ãd\Úú¦)’¯\Ù:N¢,yk¼X‰_','',0,'?'),(_binary '\î\Z½‡\å{:\ZªŠ\å4f','wp-includes/js/customize-preview-nav-menus.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[Nm ¬lñVÒª3„¦Ž',_binary '\é5,Œ‹M3\Å5÷\Ýn(tL5¶ ;^\æ\ÄP/9z±\á\Ø8','',0,'?'),(_binary '\î\"²7#†xuÛ¼ø/j+\È','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-it_IT.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']¯Ky\áWv,úQ\Ò\ÍUn¼',_binary 'd^ž­™¼[\Ì \âo@\Âò\'B¥\æ\ì\ÏO\å)¿}rW\Ý`H','',0,'?'),(_binary '\î.\Éz›ƒ&·Š”.\Ú1y³\Â','wp-includes/css/dist/format-library/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/IŸ\Ò8):°ct‰·|',_binary '!%ö\Õrö\ÆkXÉ¾F!¢\"7\ç1\Ý\çaš€;öùj\íUŠ\"','',0,'?'),(_binary '\î<\r6$Â‚\ÝL”\Î\à–¯i','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/template-service/class-otgs-php-template-service-loader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8Ï¸\Ê.\nA\ÉßŸ·i#',_binary '8wú\×@—Ù©]˜(8Ug\Ì#¸\ÝNIp (','',0,'?'),(_binary '\î=”FY3\íS:cº','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-rating-filter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h|‚”M‹œAÁ82<Áý',_binary 'Wš›oô\á\ÂE[iG¼ò\Ý#\r¦Å(ˆ˜\Ðkk\é®_¾','',0,'?'),(_binary '\î@†J\Êu\Æ\ÎS\Øzš0','wp-content/plugins/products-compare-for-woocommerce/loco.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' »H\ÓÀÿ,S4\ànlúo\n',_binary 'Kñ@Æ zq=”\ç\Úø0]\ç\ê\Ì\Ä%˜u+\ëÂk\á','',0,'?'),(_binary '\îB\í€\Æ9[ÌŠ˜¡F%fD','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-taxes/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ç¼±œ-±¿¿LÝ~\Ü_',_binary '\ì\"\á{\Ê\ì\Ï\ÖÐ©i_\Íi%e^\È|¦\Æ\È~\å–÷²\Ï','',0,'?'),(_binary '\îHÂžjò8¢mdž_ª0\î\æ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/hooks.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Jn\È1Z”/•\äÇª\\5È§',_binary '2ª\ÈO\à#\ZP€\Ù\Óû» &_Ë†\Åib.V\Ìg\Ó4‹”','',0,'?'),(_binary '\îL@k\âi\\=œ\Z¢º-E','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart/selectors.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³0\çIf*\Ú7f\Ûr±­\Û@',_binary '\0vª¬\ÞVDûýw)Û¸ðØ¾\çc:h?=	\Î\"€\ÓF‚','',0,'?'),(_binary '\îM¸N8ZrZ0\ßjŽ\n+','wp-content/plugins/woocommerce-currency-switcher/classes/storage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡T!\ÔÁ\é<\íC\ËÊ£“',_binary '÷!„\Å2\Ï}v;\ì\Ûöi‡£\ëúÔŽ…\Åc \ì¢ùT','',0,'?'),(_binary '\îT@þ\ÑÖ\Õn\Ó+F 3Á\ç','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/css/admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹’ï‹³\ä¿Å¼	\Ò\Ú\ì.\Û ',_binary '\nEûH/\0„I\Ìn”:\ä`7Ë³µ‡UA>!‘ ¯‘±$$','',0,'?'),(_binary '\îU„©‚:/rfúT¹öj\æ','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Handler/WhitespaceHandler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°š\Íñ\ÝZ±¾“¤Aÿ',_binary '\îß°±L½Ow\n}¤<÷\åÙ©{±Žeº~\Ë\É\Ê_Z\Ðl','',0,'?'),(_binary '\î\\UK“\Øô:‚\ày\Ý]x«','wp-content/plugins/ti-woocommerce-wishlist/views/section-general.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸“uá“3Ô‘	O÷\Õ',_binary 'OÆž7-P¸ ’\×OVŠO©ÿ\Îå´¿µ¿¤”Eh\Êh ','',0,'?'),(_binary '\î`§ðÎ»Ä¨\ç\â¨+\àb','wp-content/plugins/woocommerce-currency-switcher/views/plugin_options_1.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z­3­hþ¤)O\Øv³ylúV',_binary 'û¼yñ•=õ3\ë\Ép`¨úLÍ©óc³\êT±¶v¢\Êp','',0,'?'),(_binary '\îe“ôŸ\î›†\Zû\Ù&[\Î','wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-sortable.php',0,_binary '@øoyºœ<Rq\ÜRv÷™',_binary '@øoyºœ<Rq\ÜRv÷™',_binary 'tekîŸg\0fGÂ½›û\ÐsDe\Æ)¹u\Ì\ÆXþ‹\Â\Õ','',0,'?'),(_binary '\îi\Ì\çú®›|…Š\É0ÿ\ë','wp-content/themes/flatsome/template-parts/portfolio/portfolio-related.php',0,_binary '©PZ£4`Ñ»™t\É*Z',_binary '©PZ£4`Ñ»™t\É*Z',_binary '\Þã°–S¦$†b\Ôl\È\à`^\Æ\Ý\Ô*«Qù€Ï¢Xp8','',0,'?'),(_binary '\îo\ï4E>-Œ\î\Ð\ÍÊ¸1³','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/media-center.svg',0,_binary '¼ñ­°m\ìŽ2™=\âÊŒ°',_binary '¼ñ­°m\ìŽ2™=\âÊŒ°',_binary 'ŽVGžI^?…ÿúŽ\Ét«†{‚ü’[“3pò\æAözLf','',0,'?'),(_binary '\îtEhnÀ}6\ÔÀ\ì1','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/js/save-components-setting.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '†=›/pmj…\ÍNó¢hte',_binary 'Z{þ‹î¾Ÿ\Ã‚l~…\Ñq2SF?Ô¯@ûüb#¢¡w','',0,'?'),(_binary '\îv\ìn›»‰‹\re­“J]¯','wp-content/plugins/woocommerce/src/Admin/Overrides/ThemeUpgrader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™Z\ä{wš¬/2TUúI\n',_binary 'QV•O+$ýç¹¯ûƒùÉŽõ‰l#{Ñ–‡ˆÓ¡O‡\âb','',0,'?'),(_binary '\îwù\ÈC“c¡¯)diz\ï\Ú','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-list/no-matching-products.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*!.œ”E«a\ãó+³O',_binary '{\Õ\íâ‰›þ–«ó@G²h”°¸ªpG&\Æ\àó4/Ÿp','',0,'?'),(_binary '\îyÑ¼5\Ï\Ç!*¦\ã ¨±','wp-content/themes/twentytwentyone/searchform.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?·\Ì¾Žµ\r_±1û¡•\Å',_binary 'E™u)ù½l°¯E¼4²ù\Ò\ëè§˜ç¯“\èW¨\Ö\ÐzF','',0,'?'),(_binary '\îz¢ŸÎ¥V(”\ÏÏ\Íüô%','wp-content/themes/flatsome/inc/builder/shortcodes/ux_portfolio.php',0,_binary 'Œ6e­q¿³þ1.Q¦º',_binary 'Œ6e­q¿³þ1.Q¦º',_binary 'Õƒ`\Û\ÜdŸD\Þl\ÂA¡Ž¹h÷qd\ÈWŠŠf:','',0,'?'),(_binary '\î|÷\'*\ÕBÐ¼Ó”Fr\é','wp-content/plugins/ti-woocommerce-wishlist/includes/api.class.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q£¥D¶\Ñ\ê}:¡9\è4AÏ',_binary '‚5$­\Û\Ê5€\Ô\ÍG“¥²H\Âc©„~`U_\0!','',0,'?'),(_binary '\î‹}¡/\âúm,VTTwV','wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/payment-method-promotions.js.LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘\'\ÉE\0[üµ\íýS',_binary '¾8\Ì/*‰H\nÀ\ÚI#‘=ŒÇ§A5\æŒ¢\ÃÅ\Äù','',0,'?'),(_binary 'î´I¬9‡¸,³Ô™Çªõ','wp-content/plugins/woocommerce-multilingual/classes/Reports/Orders/Hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·+eœ)\Â÷S\ßc:$yu',_binary '”x¬Q½ÅK¼>\êv¯’MNÃž\æ\Õ\'*Ê“µe‹Ló£\È','',0,'?'),(_binary '\î‘;IŠ|1\Î()\È\ïH','wp-content/plugins/products-compare-for-woocommerce/style_templates/separate-footer/separate-footer.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’†U\ÔÌ¸JŒ\Ï!˜øÊ‚„',_binary ':ƒ_/ûÀt¢Ú\ÚýZO|µ\'À\ÑI°ÂŸ\Ø\"û','',0,'?'),(_binary '\î•0\×Ï¾\Ïú¶ñ\ã\Õ5$¼','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/classic-template/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\ÒhbE	Jô¯S§z™<¸¢',_binary 'þ`\Þ™Á\Ô\ÄðH\ÅYµ“9žQ¨v9¯ÀÀüGI©','',0,'?'),(_binary '\î–\Æ\Ó2B-]¦‚©B1\åð\Ð','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hocs/with-scroll-to-top/test/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜Ï»·Ž=“\Ò\å~¡²½†Ÿ²',_binary '\ï \Ë\ß1¾´-Æ\Â\×B\×\Õ\ÓT\æU´r¶€‡§Ž\r\ß8\Z','',0,'?'),(_binary '\îžj¦\ß/ñ\nú\ãA\ëgEš','wp-content/plugins/woocommerce/packages/action-scheduler/classes/migration/ActionMigrator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[+¥X¢iQ„j&ö8p\Ë',_binary '¨ö-¿ìªªVûœ{n1ƒ\ÚH%F¨1\Ê\ï\ÇW\ß','',0,'?'),(_binary 'î¨´Ü·#\Ê\Û\"ˆm‚3\Z&','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/downloads-list-compact.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ù`.µ“\æ\â‰—»‡!e',_binary '\ì\ÙÓºüð$÷ˆTv–Ö¶§\0jJAøóŒ9M\Éw\Õ','',0,'?'),(_binary '\î«è‚–©8G>ü)\à¥','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-category.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P\Õi2\ÛòbEn\Ù$\Êö',_binary 'Â›p29¢\ÄQ¿>]©¶¿x\ê|\0 Ä_?§PÚ¸','',0,'?'),(_binary '\î«.ü\íß‚iðµ6§\"\ê…','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/PluginVersionRuleProcessor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8\æi\à¿¹‘“H]Ø«ÑŠ+',_binary 'R˜7žY\'veò˜y\àhl¢N+\\¾F_\è\Ëdñô','',0,'?'),(_binary 'î®· U}VCCo\É9\Êhˆ	','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/repository-registered-buttons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÄœñÁ\Üy–£,}·2\Â,',_binary '\ï`¢\ì\ÃÌ•†¤±:GT]\0rOcµ—\Ç8´\ë‚,I','',0,'?'),(_binary '\î®\Ã\Zdºó¹\í½7üU\Ê&ž','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Õ\ÞUò«3\áÒ¾\ÉP¨m',_binary 'o\Úa\Ë\å/jnuø\Ý\ÚFõX]¾òS{\Ìu¥\á','',0,'?'),(_binary '\î¯\Ôúo\é_6\à$z\æ3o','wp-content/plugins/ti-woocommerce-wishlist/public/widget/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ð™ .ƒ‹J5n>k«w.',_binary 'õŸ\ÏÞ2£”\êüD’l“<ˆ©\Ôhõ¸MZVk ','',0,'?'),(_binary '\î¸c\ÙÀ¥Yi¶{\r>œt—\Ï','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/css/abstracts/_variables.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œ={ÃªbW\Ñwãœ³ôŽ¿A',_binary '´4<\Ïf2@¯“\n»Ó‡\Ú;ƒ\ÕPtQ• ô°p','',0,'?'),(_binary '\î¾<„7vº\ÍY6?\é\à\Ñ','wp-includes/blocks/separator/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­\Ïv]³\Å\ê¾ ,8¹\Ç\ç',_binary '™­’oy»\Ê\äòg2\Å\é\ï{\Ä\0±8)O{U}','',0,'?'),(_binary '\î\ÄúwÝ ÿZ7\Ò\ê\ß,r','wp-content/plugins/yith-woocommerce-wishlist/assets/css/jquery.selectBox.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ê\Þ1¾\Ù	dg\ßúV@f8',_binary 'ÿ\ÉBU \Ø9\ÖôøóDvW\Éþ;[-@\Õ4&\äùq™','',0,'?'),(_binary '\î\Î8E\n\ï\â÷\è‰','wp-content/plugins/ti-woocommerce-wishlist/languages/ti-woocommerce-wishlist.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ƒE –÷bto2‡aøj',_binary 'ZCc\àý\"\r4%\0ŠmÁB\Í\Ê\ÕÏž\"³½\Û\ç\Ò\'\ç','',0,'?'),(_binary '\îÎ¯¾\Û?ñ¹gW„õ÷9','wp-includes/blocks/embed/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '45m`†‘?\äÚ–‹	®%',_binary '’\ÃÂ§Py…\"b÷t\r…d_6o÷M\\†\ë\ì“	+ÁÀ\â','',0,'?'),(_binary '\î\àðÓŠòjP$M\ãVc','wp-includes/blocks/post-comments/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'dõ”z\ï½g9)ô`€\ß&\r¿',_binary '\Ô½,Å¬Á\Ñbf¨†\æ`)A.?qŽ\í¾_L1¶ž£\Ót','',0,'?'),(_binary '\î\á;/Z—vº{~ |ü[','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--cart-blocks/order-summary-shipping--checkout-blocks/billing-address--checkout-blocks/order--decc3dc6-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©?|h\æfr*=ÍœJ\í\Î',_binary '“\Å{d…¿>Ë¢C›¼¬<\î>\r\ì=x°ÓŽh—Ðµ|','',0,'?'),(_binary '\î\á²N–”\ç¦F¦V\ïY\ìC','wp-includes/blocks/shortcode.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ó0t\â	\í£Ú¨.™j²',_binary '{Ž…bw\n~ªŒ4øn\"‚—\"þ\Ó\Í÷\ê#.m¿/#1','',0,'?'),(_binary '\î\çXO¥z-\Þl9Æ·\á0Ž`','wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Roman.otf.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÒAy\nY£n2ù!ú\Ë',_binary 'ShVýZt^\Ô~Í›·Œº\n#$Ö’\r¡5ðV\Ñ‚»','',0,'?'),(_binary '\î\çuyªØŸúuV‘û@/‚ó','wp-includes/class-wp-block-patterns-registry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':À€6”¡È¦\ëþ‘–eV',_binary 'i–ŽhQƒ†þŒt\ç°ý\ÄU\r\Ú\"5\Ý\à\\\Ìl£¾ø\Õ}\Å','',0,'?'),(_binary '\îô\ãÑ5\ZÔ ·\îB°ò','wp-content/plugins/woocommerce/legacy/css/woocommerce.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'š\Ðkl	\Ñ)‚†^x£\Ð/õ',_binary '¥!58cg\Ä\Ý,jK0‰ˆ|WŒ\ÞPU¢+\êMž\"‡ô2M','',0,'?'),(_binary '\îù¦—\×ò²ž\Ë\î6ú\Ê','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/vi.js',0,_binary 'd“›Í°›?¦8Ck¬G\ï',_binary 'd“›Í°›?¦8Ck¬G\ï',_binary 'Žo¤\æ2Ïš¸Tœ\Ïnü˜b{¾¼Ñ‚\å\æx)×','',0,'?'),(_binary '\ï¦ö‰D\É\Ænk\ÉÿÁÀ','wp-content/themes/twentytwentyone/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\é\Z_ŽS(Åº(l\Öþ,',_binary '$ø™`j0›É’úcö1-»K@\rf\æž\ÜnýRˆ3T•','',0,'?'),(_binary '\ïF7Á¬ßšA•¬\ëT','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/all-reviews/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}€·\Ù^\Ë÷>w=\Ì\ê”2\ç',_binary '…ÃªA\Ý:,¢%ek}¤š\Úxq\á\"i¯\ÛŽ\àKß¹g','',0,'?'),(_binary '\ïx#Vhx E‰iK\Ü\ìH#','wp-content/plugins/woocommerce/includes/tracks/events/class-wc-coupons-tracking.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Uw«óÐgúð»,sac',_binary '>Kô{ŒO\Ûõ¬”2\Ó~\Ê\ìm~õ™\ÔI_\ë\Ô2uHl','',0,'?'),(_binary '\ï@}&£J~\ÏÂ¾&ó\è\0','wp-includes/customize/class-wp-customize-new-menu-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«\ÈN‘\àp‰\ÅaC\Çq k',_binary '„F¾\Ì0”Hyce\åLuQ¬«\Î&§\ä˜LiH\n©DÅ©K','',0,'?'),(_binary '\ï`\Ñófš˜¶>bXz/t','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ó…uÌŽ¢¯#!?5—',_binary '£˜\à©ÿpiž\Ë=’\Þ\Þz+#±8\Â„=\×\íný~±½§}‚','',0,'?'),(_binary '\ï¼A}‹Ì±nÝ‘˜\ë\Ò\é','wp-content/plugins/woocommerce-multilingual/classes/Rest/Wrapper/Composite.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\ÂzÛ‰\Ä\Õì¶€y~“',_binary '…õ}9oÒ‰qD?;\Ù0Œ(\å!2\ß\ìÝžhy','',0,'?'),(_binary '\ï)W\rn,Ý“UõGV&','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/state-input/shipping-state-input.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':§ß™è› \ç\'{',_binary '_*m˜C\Õ\Ø —£}ª•\àŒ\Ð\ïP\Ñ8Rò§*\Öa\Ç\nª','',0,'?'),(_binary '\ï0Ì¸‚9\Z\âù¤§üT','wp-content/plugins/woocommerce/src/Internal/DependencyManagement/ServiceProviders/AssignDefaultCategoryServiceProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õM&Rv¦\Æjª\0¥üQ',_binary 'E\Ñke_#3\ÙòHB\0\Â\Èšª\ã\Æqg‹/•\Ý\Ø#D¼o\Ö','',0,'?'),(_binary '\ï3ú»\ë7_9¤¯bú¯','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/el.js',0,_binary '\×\Ç\çm[\'Z»5G\ïVÕ‡',_binary '\×\Ç\çm[\'Z»5G\ïVÕ‡',_binary '\è\Ý3@ƒ\Ôs\Õ\ç‰õ\ÃÔ™MlöK•±\à ¾tyT´','',0,'?'),(_binary '\ï5*j†¹¹\Ö7t!@Ñ½','wp-content/plugins/woocommerce-multilingual/compatibility/res/js/wcml-product-addons.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '**\É¯ùVc›°ž(›I\Ü',_binary '\èSý”:ô\â½YM5-¥@$6ô\ï“=D$”²þ','',0,'?'),(_binary '\ï6K+‹E|&¥)4\äˆö\ÈW','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/filled-cart-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '÷JCwk³ùQ\æXÆ{l',_binary '¦(\æ°\"\Çzy—¦1y_5r\Ïaˆ\ì\äE\Õ\ä2`Cô´','',0,'?'),(_binary '\ï;L\át‰×¬C°ƒ”É£','wp-content/plugins/wordfence/tmp/.htaccess',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·I z~\Òi¶,Lžÿ\è',_binary '	ù¦HQI\éqz¼Ú¤øp\Æ9ŸC4>Hü€\Â3¨‰„G','',0,'?'),(_binary '\ïY^~5~‘¨pŸG-ŠŒŠ','wp-includes/js/customize-views.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸HÓ·¬-\\Me•ˆ\ï',_binary '\íbõ ‚½Lýþ-¦‰9wlo\ê\ßyŽ$+\ÓY\ZÞ˜\ÔN','',0,'?'),(_binary '\ï\\ÿ|C]G\Ó|\ì#hM','wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/components/accordion.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–uõ\Z¦\ìk\â}Ió2|J',_binary 'CQ.;m\äq‘(‡p0qvX³+\\2ÅœI7h.ÁÊº+','',0,'?'),(_binary '\ï]\ç%tSÁ®3e/ij\î\È','wp-content/themes/flatsome/template-parts/header/partials/element-checkout.php',0,_binary '+t™P¯ª(E{ ]U2\Ý',_binary '+t™P¯ª(E{ ]U2\Ý',_binary '\ËWd·¯b „Dp~ù\êP\n¡A\r~™ñ«¨¼´,ú/','',0,'?'),(_binary '\ïjU \Ç3\ê0<\Ìg\é\Ýb','wp-includes/blocks/paragraph/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(Š¡Ÿ:\Ìt\àMe&©>',_binary '\ÃÊŸ\×Ï‰\Ñ\ÙP\ÏXw\Ë\ä»P¥\0\ÃÞ¤opƒ±‚l\×ûÒ¶','',0,'?'),(_binary '\ïrI‚\å\í\ê–É€5 ÁF','wp-includes/Requests/Exception/Transport.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«»lø\Úz\è\ê J«^\Ñ',_binary '¦ºû\îÄº¶ÌŒ»\ã&Œù¶Ö³–†\Ý4@78\á\íôp','',0,'?'),(_binary '\ïu_ô‹‹ÿ\Â\Ê~!\0\Ä','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y=\nY\à´99š2­ø',_binary 'ý—û6©‘°\Z/ˆˆùp\ây5\îÁœ\ÒEð”Ø­½©­O±E','',0,'?'),(_binary '\ïzúÀœ\Øö\×ò|”zûxv','wp-includes/js/jquery/ui/droppable.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L€]¯H	%´‹•q\Ë\Ä\à¢7',_binary 'lt\Ä~ÿ¹e\Ò{\\`¥\Ý\Ó~~=4§\Ó\Ê\ÓûsqKm\×','',0,'?'),(_binary '\ï{gI[Y\à†²—\ç','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/date-format.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'bS½Æ­…Š\0¨{M¿ð\Æ',_binary 'úF´¼$ }“F\æ\Ññ„Fœ\Ç\ÛúŽ’šñk\×\")‚†_ÿ','',0,'?'),(_binary '\ï\Z§…0¬ˆWNŽ¡õq','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/payment-methods/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡§»»#\å@L7Dp\å/',_binary '\Zªp®DJ‹uªÝ”\Ðþ\à‰ŠŽ!bL\Ëu\â¸Åb}VÀ\Ä','',0,'?'),(_binary '\ïú¶\ÕË•§³r&\Õq\ÇFi','wp-content/plugins/wordfence/crypto/vendor/composer/installed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'K:\ÍÿQ‰)úË¸\è¾:-*',_binary '†\Ö8}ôÞª\â]£\ß\"1´úž&(¡\æä™„³‹¡\É','',0,'?'),(_binary 'ï¦¦\é&¿\ïlYŽ4š@\Zšw','wp-content/plugins/woocommerce/templates/cart/mini-cart.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿuj\\û6¶V\r_\à :0',_binary '4\Ôhõ•P1î€¥I¬ÔŸ÷‘\Ú6qL©Vd\Z9_`\à`¿','',0,'?'),(_binary '\ï´\ï:^‡,\ÓE¤\Õ0tø','wp-content/plugins/woocommerce-multilingual/res/css/wcml-setup-wizard-notice.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ø\Ïd\ê¡ý¥\áC†–·ª\\\ÃG',_binary '¬}´Ÿ5\Ã8gŒ- *\ËõN»6˜Ã¶Z\re\Æ\â','',0,'?'),(_binary '\ï¾\ã\ÐlU\ã·_\Ñ?\Ê@-','wp-content/plugins/woocommerce/legacy/js/frontend/woocommerce.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿«ûhº\ÝVx\Ù\î%$',_binary 'Ÿ‘8y0’NÀô\ÚôO«\Ü]!µ\Í;9az•x¶+','',0,'?'),(_binary 'ï¾˜QŒ¹©÷´)B\n\ë,','wp-content/plugins/wordfence/images/loading_large.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚Y¼®{Ob‰UW~¼YË™',_binary 'p8ñ\'—÷™	t—\Ï\ß:„Q\ßo]{5G1\å\è\ã»\ÅE¾\Ç','',0,'?'),(_binary '\ïÀûP†‰a`Xuî¥¡','wp-admin/css/color-picker-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž\"ý:ô@Ü˜^J¶Š\à',_binary '\×Eº\ã‹\Õ_wü«†¹¶\ì1:\ç\æ\Å\Ð\Ó\Â-\ÄE','',0,'?'),(_binary '\ïÁ=ZX•s-\á]Z¥Œõ\æ','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž\Í+š©z{i»\êI\ê\Ù“',_binary 'À®WWB\Í\Æ\ï¡\âY(\nsk\Ü/»@À\ÒlÝ€L\0','',0,'?'),(_binary '\ïÃ¶lyk!\ÆÌ²\Îzh\Ä','wp-content/plugins/woocommerce/assets/js/stupidtable/stupidtable.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÐbÅ±\\AEH\Æyï¢½‚f',_binary '\Ú\Ûþ¯\ÏöR†ƒ¦\r,´aø\ÓÁ\Ê\ÊÜµ(8e?$­wDb','',0,'?'),(_binary '\ï\ÄJö‚VE2´\Z¦R\Ù\È','wp-content/plugins/nextend-facebook-connect/providers/slack/slack.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÉðJrð=ˆ)a\Ì5u„£',_binary 'ö\Éd¸£H\ë³\ç–\ë\Îq¹\ÃqIòÉ­“Ï†\Ûù\ÏÈv','',0,'?'),(_binary '\ï\Å{´ú \rðSlÅ¿\é	','wp-content/plugins/wordfence/views/.htaccess',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£E\"xK\Ê\ê{\Ç8ödS³',_binary 'C‡¾ö½\'r…9½\ì@\âK¡Þ†t¡ª™ö\â§w#@kº','',0,'?'),(_binary '\ï\ÈwT+šU¶D£°\ì£','wp-content/plugins/woocommerce/templates/single-product/meta.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\â¡DŒµ\ÅKŠ:\Ã\n\ì\à}',_binary '¿ô€H§ôo\è\éE\Ýø`\0wTj¨‡Èª_…›n;§,$1','',0,'?'),(_binary '\ï\Ð\Ñ[\ëG»H®§\n/\áqG\×','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-url-translation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\ãx?š>\na4F|ñ\Ð',_binary 'E¦­£Ÿm[]\Ù\Ög7•„#þ™\Í¬ð7¸I\Ô\ÝwŠ2','',0,'?'),(_binary '\ï\ÑX=U¡pfp¾€ÁZ','wp-includes/taxonomy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\Ê:ö|\ãw\ç\É!\Ñ|\ï',_binary 'CTˆšC Ñ™\Ð\n€˜w{BD@¨\êŽúÐ” \ã{®i4','',0,'?'),(_binary '\ï\Ö\ÌÖª‘\É	\0gWi\\Ÿ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/active-filters/frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼kEUŸ¢“\ÈòNùxM',_binary 'Y\Î9\á\ß&\Ä{\æ~‡!Km*®ð·\Ë\Î7£S!®…7¤','',0,'?'),(_binary '\ï\Ù\È4…~§Ž^U1Ex\æƒ','wp-includes/blocks/site-title/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\â\"X¼\"OK\Ç‰9\0š',_binary '}	®þ\Ð‡k_[3\è?_ðFx\âa\é–™ü‡þ','',0,'?'),(_binary '\ïÞŒt+\é\\õ+\ÆXa†ZU','wp-content/plugins/wordfence/lib/wfScan.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Qdb\r\ì`ä¿·ƒŠÀ¥',_binary 'ƒŽM)žHMXhn¯\×\É\'TD¾h\é«ð`…','',0,'?'),(_binary '\ïã¯©\è	\'¯\æ¶Þ¨‹÷V','wp-includes/images/smilies/icon_biggrin.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'üK²ñJr§½:¿]kI\Ø|',_binary ':š²«\ÖÙ”\ë\Æ\ÅMœ›\Ó\ÛX%	\Ì<8½g4Ÿ','',0,'?'),(_binary '\ï\îþ./› \Øs\åÃª\çú','wp-content/plugins/woocommerce-currency-switcher/classes/reports.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘.£O&3;«Áh¥4',_binary '1rhfõh	,……žý\å€\r¯Tº0C|ÀuM-','',0,'?'),(_binary '\ï\ï6X‡Ôª4ñ\ã[_‡=t','wp-content/plugins/wordfence/lib/wfScanEngine.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ.¦•÷?vô¬I8‹\Ø0',_binary '#Ñ±ó‚Jüø„ffh»†”w.(\è\æj[\Ã\0ŒüF','',0,'?'),(_binary '\ï\ï‰y\ç\ÂzÛŒB\Ó\'ÀhO\ï','wp-content/themes/flatsome/inc/builder/shortcodes/commons/position.php',0,_binary 'ªD#­b‹*bŽk©öl2^',_binary 'ªD#­b‹*bŽk©öl2^',_binary '¨\ì4º¸Í 9¬œÎ¸\Ür8ôO@­”í³`\è','',0,'?'),(_binary '\ïô±¨cµ\ÐG¼¶¸(`E»•','wp-content/plugins/wordfence/views/scanner/issue-configReadable.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"Xjozˆo\Â\ÍðY²–\Ë',_binary 'œ\Ò{ñ—g“k{aK\à\Õ\ç*¼¤õ\ìý…Wõ\Ì×…\Ç$×£','',0,'?'),(_binary '\ïö,Q©\íP\Úpƒù6t	Œ\Ì','wp-content/plugins/woocommerce/src/Internal/Admin/Notes/OrderMilestones.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6<)6‚^ \ì{l`',_binary 'Ÿ»©½\ÛS‹`”Ew…Ž.MU\Òñ|\ÊñÿBï¿£/„\"','',0,'?'),(_binary '\ïü*\È7|™]k+\Â	†X´','wp-content/plugins/yith-woocommerce-wishlist/assets/css/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&ùªK~v¦O)ºŽC*',_binary 'öbPe\Ú\ãóÎ¯»Yvh¦\ÅMRiû—\ãHó@ø£ZNýO','',0,'?'),(_binary '\ïÿ€\É9‡\ÊrÀMÔ§\Ä\è','wp-includes/js/customize-preview-widgets.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'óT-Ÿ6€P)Hôù=\î\í¬',_binary '¸¸¼˜6Âª\Üe¦\×\ÕyÐ¼bdf}‘ˆ5 \Ùþ','',0,'?'),(_binary 'ðC€\È=…	T¿\äKHŽ2q','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/SingleProduct.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\È(\îx\à»mEA\"döCe$',_binary '! ½<c>\Þ\ïXùLôö*SÚ œ\×ú»\Î\á¹ýM\çœ','',0,'?'),(_binary 'ð¹`­‰\ä\Ñ\å\ãz\rÎ­','wp-content/plugins/woocommerce-multilingual/classes/media/class-wcml-update-product-gallery-translation.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ü\É\Èõ©Y\îŽ	Mùµ',_binary '>î£»\"\ï÷(…>‚\röõ—F0\'ôH\ìzpö\×hŠ\\%J','',0,'?'),(_binary 'ð\r‚øvŸ¼†\Éc`ð¢\Ü(ü','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é‡Ï¦¹^9xN\Ã7\ãl\Í',_binary '\Å\Í–yhB/¿~®¼†®\\«\ÖÇ‘‹ù\Ë\ètŽ\Ô:¦','',0,'?'),(_binary 'ð ÀÞ<:9\Î|\Â\Î6','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/H.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-_\Ðûb\ÊÁ->OŒ¥\\è‹ƒ',_binary '¤sÉ”g\á%û½riC¯ùP˜\ëw†«%’\å{\Ö\ÆJ¥\Î','',0,'?'),(_binary 'ð¸\Ê6)Jo*Š§Nn+','wp-includes/js/dist/vendor/wp-polyfill-object-fit.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/ÉŠz,\ØØ«cm¿-\á|}1',_binary '\â;>‘Á‹™;\é³\\\ç\Þ\Z€p;\Ø÷»^ñGš?_ƒ\n6','',0,'?'),(_binary 'ð$ŸÄ«¥Iˆ^ý“3·”\Ñ','wp-admin/menu-header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\éPÁj\ÙÁv…Ë¨!Ò£µ',_binary 'w\Íñ9=Ì F5dñðoU¸\Ê\Ö\\_–k[•','',0,'?'),(_binary 'ð+l·ÒŸ;`zB{\é','wp-content/plugins/woocommerce-currency-switcher/classes/fixed/fixed_coupon.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ¥Ž\ZX-£F¶ƒû\Z\Þ\ìˆY',_binary 'ö–\ÚOW9\êf¤g>^N\ÝOQB\Ùi\"¸~¿òñUùUŒk','',0,'?'),(_binary 'ð3@š\ìRÛˆ®Š\Èk¶','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-express-payment-block/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6³\ä’S/•I-ƒS\á<',_binary '\ê\Ý6,LHF¢>œ\åŠ6_P‚ÿ¢B\0¢´\Ëù\Ø\Å\0’','',0,'?'),(_binary 'ð7ª\×i¶ô~‘³þ¥\â]','wp-content/plugins/yith-woocommerce-wishlist/assets/js/jquery.yith-wcwl.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P,¢%yq“\ìÀQ\Ð\Ã#\Ë\Ý',_binary 'Un\èÖ¯,\'ª³õð©\×E\Z\Â\Å\rL­¼kj\\2‘','',0,'?'),(_binary 'ð8)ú\n@õ“‰q\Ñô‰!.','wp-content/themes/flatsome/inc/shortcodes/ux_gallery.php',0,_binary 'ü³7AnA\æ(xõn…\Þ\ë³>',_binary 'ü³7AnA\æ(xõn…\Þ\ë³>',_binary 'N]À‘6š\Ùÿšºk]\Ó\â\Z\Ùyƒ¸Ÿ\àjýWd•ž³7\à','',0,'?'),(_binary 'ð;º\ÑpÂ¦8ÀÎƒ¾\å\é','wp-content/plugins/woocommerce-currency-switcher/js/auto_switcher/round_select.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆðü:\Ðn\Å(3Š1µ',_binary 'µ€\'4\è1MƒG!®©\éƒ%r\áL{Â§\êŠ!2\"¥4Š\ß','',0,'?'),(_binary 'ð<\nô\Üy°fD_\ÚXŠK','wp-content/themes/flatsome/inc/admin/customizer/header-builder.php',0,_binary 'º\0@F²s Vó˜h«>\ã4',_binary 'º\0@F²s Vó˜h«>\ã4',_binary '\á¡[\×[\Ê6CµÁ\Ø\'ñ! \Ú\Ïj³o”]‰\Â\åx,\\','',0,'?'),(_binary 'ð>“iøo\ï\Ã\ÔJÙf','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-de_DE.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž\nœAÐ¨¡\Ù\Äü]1Šd',_binary '7‡\Øwt«òºg~C!½D÷>7ušÏ´Cô\"ð}','',0,'?'),(_binary 'ð>¬-hWp.73¸¢|\ëX','wp-content/plugins/woocommerce-multilingual/res/css/admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­\ì\É\ÂÁ\ê\æ[§€Ô²›',_binary 'g2QrI]úºø„\Ê0THøƒ\Û4\êÂ±\×7±Î¨S¨','',0,'?'),(_binary 'ðDV‡º\ëK\ÛGÿY','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-actions-block/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>Š”|^q¼\ÖZAB¨\Ê',_binary 'Ç z<üv6D>Úµä²•L[µ´c•Á.ß€$','',0,'?'),(_binary 'ðEüô–)ÿÏª»pµ¯£¯û','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-settings-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Fw\ã\á\ÞÆ™lõ·m:£}ß‹',_binary '¼N«£Ó‡}®&L\Ñç €R4…A»b$ò•uõ¨NÊœh','',0,'?'),(_binary 'ðI/\Z³N\ç2\é÷ö\á\Éñp','wp-includes/sodium_compat/src/Core32/Ed25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':\Ü0³	h‘mNP´…³',_binary 'Ÿ÷LH$G/…bd\ä…+ž\0ZP5õ¼Y~ªb·\Ì20p','',0,'?'),(_binary 'ðI\é\Ëõm¤¼q`M\í’\âò','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/button/edit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\"H˜\r¶`~¢Ž„¸‰',_binary 'V¹Y\évo(?0\ï„Zó±\Zl|º—+=\Ò\ÇÀ’YV','',0,'?'),(_binary 'ðK\ÑL6%¹hmÎ½|5\ï;','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/active-filters/edit.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰y§bg9|F\èý4e›I',_binary '\ê\Ï÷\Ùlš\ã0J¼ª»hqÒ¨4h\×m¼¢:ñr`cÉ¤m','',0,'?'),(_binary 'ðL\r\â\ÈT´B\äp\á‚\ìã«¾','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/cart-line-items--mini-cart-contents-block/products-table-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§\Ï\"\ï\Ã\â\ß-kð4–\"\Ð',_binary '\é\é\nòzý¾û8-a²\ÚRû²¡¶°CC|¼\ÄÀ%+','',0,'?'),(_binary 'ðT%1´‚„\çKG\Â\ÇÀõ','wp-content/plugins/woocommerce/templates/myaccount/my-account.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S±Q®œfŽ7›Y\î\ÅW¹ó',_binary 'È¹«#|Z\0$\é\ß::ˆ\ÚT\í\èú\Çî² 6\Úm~~L´ö','',0,'?'),(_binary 'ðZoOIY\ZÁ3kÆ¢pl','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-cpt-unlimited.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€†‰537Ó·Q\'~\ïƒýy¤',_binary 'i2‹\år3¦!2ºø±\0Àˆ\nWUSsJö\Â..¿Ÿ\nµ','',0,'?'),(_binary 'ðf6\×\Òn©—!í›±)9kó','wp-content/themes/flatsome/assets/js/admin/customizer-admin.js',0,_binary '&²\àó\àšŠ\ÇIpK¤ñuF',_binary '&²\àó\àšŠ\ÇIpK¤ñuF',_binary '{{…ù\æ\ë¹\Ùpž\Â\Ê=U\Æ\Ò\ßuo•ž(Ai\Æ\Ï','',0,'?'),(_binary 'ðrVuº\ï}db¬Kt„J\Æ','wp-content/plugins/woocommerce-multilingual/res/font/otgs-icons.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9|‘\Ò\Îs‘>„O¶\ÆVù',_binary 'Z´L9ž©”ò\Ó\\Y?ï­´æ«—O¢µ\æ¼õ\ã­m\0ˆ\Ü','',0,'?'),(_binary 'ð{\ì	-(\åš\Ì£Ò‚2','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô\\¢&d	gòæ¯„3\"',_binary 'À#ó¤’Ö³0\\3\Å\ÞBó¥À¨lgF°½¨ß§˜','',0,'?'),(_binary 'ð~À³UuŸgº\à|ÿ\0û','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/lightbox.svg',0,_binary 'ú\îÊ«›7ò—¡nŸ¾\Û=',_binary 'ú\îÊ«›7ò—¡nŸ¾\Û=',_binary '¤h’,ˆ\ÇT\Z\Òû6U?ª²¬÷–\Ï8‚„}?\ïWD\Ð>Ã¸','',0,'?'),(_binary 'ð>#\"\åFTû\Í!££','wp-content/plugins/woocommerce/assets/js/admin/wc-clipboard.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›Ï\Ú\\\í‡N¸\ÈRuŠª',_binary '	ƒ(‹òi×“©%FÙ†Q›°‰—±k\r\ß\á”1','',0,'?'),(_binary 'ðƒ-3¿\Ç\Ç;t\æ\Ñ\ÖÆ¶¹','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/payment-method-extensions/payment-methods/cheque/constants.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Š°p!ú\Û\â¼r`´ò4',_binary 'k,´\Ô\Âû£(b“…©Sú&œð$\Õ=Ù«y»¦e¬Ð¿™','',0,'?'),(_binary 'ðˆ\ÞZ	½9e÷‡C\ã\Þ&','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/maps/icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'žx±E¹vR«9\Å\Í\â¡ÿ',_binary '\\Á\ÂV}\ì\è%\ë “\ê\n\Ù\Â_Ÿ\ÌK\Øõ\nð‰Õ ¦','',0,'?'),(_binary 'ð”\Þvóß–\é¡1\â%f³','wp-content/themes/flatsome/woocommerce/single-product/headers/header-product-featured.php',0,_binary 'ö\îý¶,\Æø<Ú‘\Îl',_binary 'ö\îý¶,\Æø<Ú‘\Îl',_binary '“©IA]€Þˆy2¢ha$‹š|\ÐÍˆ*\çžm\î\'lC\Í','',0,'?'),(_binary 'ð¡N ¶¢ûiiÚ­ù','wp-includes/random_compat/random_bytes_libsodium_legacy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Üø[q7d\âv¸\í\×z\í¨',_binary '\'Öª•±*	[\0EE*J‹rüV€s\í\æ\Ä\á\ãcž?','',0,'?'),(_binary 'ð©·\Öw$\ì¯\å\Ìi\æ','wp-content/plugins/woocommerce/src/Internal/Admin/RemoteFreeExtensions/DefaultFreeExtensions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿX\"„\Ý\ë\Ì\Ú\è\ïõ\Î\Ã\0F',_binary '™Õ‘\âT^ŸÓ¨)M.q\é\ÈK]®	ô”\Ù}žû°°(','',0,'?'),(_binary 'ð­\á—9\éBÏ ÷3…ú','wp-content/plugins/wordfence/images/icons/check-care.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'š@“\Ûn?du\äÇ¡os°?',_binary 'J\ï\å\çõX\Ý;¡W\í`i¹\"¶™[*ø\âõ&`K°>r4\Ð	','',0,'?'),(_binary 'ð¯Y\çœø	\Å\ÇJ¥q_Qi\Ò','wp-content/plugins/woocommerce-multilingual/inc/currencies/currency-switcher/class-wcml-currency-switcher-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\Å\ì\Ä4\È`VˆŸ ,™2T',_binary '+b“CB]\Ä\åªE\Çû†˜RU\Û\Ò\Ì\áZ´šNq\r','',0,'?'),(_binary 'ð´|\ìM\ëP\ì\È\å¼n','wp-content/themes/flatsome/inc/woocommerce/structure-wc-checkout.php',0,_binary '£uF]n\Ç\Ì8£\Êý\ï5\Ñi',_binary '£uF]n\Ç\Ì8£\Êý\ï5\Ñi',_binary 'Ù“ŒÈ†ŽU1\íY´\Õ-¢ªƒ!\Zl¡ú~7/žÝ®œy','',0,'?'),(_binary 'ð¾¤óN{g –\Úÿ','wp-content/plugins/woocommerce/vendor/composer/installers/src/bootstrap.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Þ¨™Æ\n%\0\å\ï‘',_binary '\îõŠg&Agpª\çI\è84\Ý\Z\á\ç\Çœ\ÛB\Íùj ÷','',0,'?'),(_binary 'ðÁÊœð±bQB|(','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/ux_gallery.svg',0,_binary 'ˆ N}ƒi\Ç[øµ•©\Ö3',_binary 'ˆ N}ƒi\Ç[øµ•©\Ö3',_binary '\Éõ(OV›7¯\çž\Îoqõ£E„(µŽ\Ô]¦]&£\Úm\r±u','',0,'?'),(_binary 'ð\Éy\Ìþu\ènµ\Ûc[Ù§','wp-includes/sitemaps.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç`S ¥³˜òE¾X»^YA´',_binary '\Å%\Öø\àªS\äiù¬úx3’k®™½O\Ûñnz]ö¿¤','',0,'?'),(_binary 'ð\É\Î>UBiÛ¶°úÁ³s','wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/klarna.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2y\á+þ\n£iAt¢7\â',_binary '\ç8\ÙT‘\Êâ•¥´º\ÑJòÃ™¦­wA\'¬s\Ä\Ýe¾ ²©\à','',0,'?'),(_binary 'ð\Ì.£\Í!i\Å\ã>\íÓžkó','wp-content/themes/flatsome/inc/admin/options/shop/options-shop.php',0,_binary '\Ðqœ\Ü^`Ž\Ê\ä\\¡Œˆó',_binary '\Ðqœ\Ü^`Ž\Ê\ä\\¡Œˆó',_binary 'Ü?\îfºx\ÂE–K¥n_gJb®Ts§ ý`ó›_','',0,'?'),(_binary 'ðÐ·&§LÛ½Â¨\ãVNŠ','wp-includes/css/buttons.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'a¬»n½\ÒG\Ëf\äg\ãñ\Ø',_binary 'k!L4>H–iAF‰»f•BR¶eR@ù±¹\ìW\Ð','',0,'?'),(_binary 'ð\Ñ[\å_ö¦²B\Å	Ó”L','wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-manifest-reader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<tRÌ²TI\å\Þe\éz',_binary 'UZo	™_Up\Ü7¼\ÔnPWB0us¿³\ëòñ“£Š“E','',0,'?'),(_binary 'ð\áù–\Ö\é…VR˜X\î9\Ø','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/repository/class-otgs-installer-repositories-factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þª\×*\å\Ï\Ü\î\ç\äë¸°¼ð',_binary '3( A\Ã\ÙÞž¡\Â{I!ònl<Ø€&\Ë1™s¬|(úú&','',0,'?'),(_binary 'ð\è‡2ZÞµA®Ïš\\y·@\Ù','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Exceptions/OutOfStockException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't\íf„ˆ}(ÁEP™€',_binary 'S_Jñ0‡‘2T\r…ŒÿWM±¥\ÅPc7h(P\Òý\Ãò','',0,'?'),(_binary 'ð\éE¢l–¢7\'?,£Št','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/Transformers/ArraySearch.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X¯\àd‚’±ô#\ÎM$',_binary 'Â“•Ÿ¼\Ý\'\àûoCÌ¤˜¢d^¦¥n7÷54•\è\ãY…','',0,'?'),(_binary 'ð\ê;\Ìbø(˜.ª\çÁ(S‘','wp-content/themes/twentytwentytwo/templates/single-no-separators.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\å\ÛI}kj^\Úh·§>€v¬°',_binary '#\ÔW¶\ÈV\ÙCPdv’ü»\ÏJ\nø³B–o4˜\Þ,Q;','',0,'?'),(_binary 'ðö´øü•ø6$[£ª®OÀ','wp-admin/css/customize-widgets.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'x\âh¶\ï\édM\ç*’E\ã‰y',_binary '\äZ\ëš0Ú€”#]\ß*\Ï\ÐœÔ¯\r\â=\Ò\Ñ}ªi-','',0,'?'),(_binary 'ðøh¯±‰ý1\"H~W\É','wp-content/themes/flatsome/inc/admin/customizer/img/category-title-title.svg',0,_binary '\êQ_¯0\åY‚Cœb\ÇD',_binary '\êQ_¯0\åY‚Cœb\ÇD',_binary '\é®S\ÝzûÒÃgÙ¾\æ­0$øl\ï]MnsLp:','',0,'?'),(_binary 'ðûÇ­Lq\ÎZ¶i°÷¢\äº ','wp-content/themes/flatsome/assets/js/builder/custom/editor.asset.php',0,_binary 'w\è€@h\×þ¥E€ýw¥\Û',_binary 'w\è€@h\×þ¥E€ýw¥\Û',_binary '\0\Ø\Ãz%,jð`¸@ý}Ä ÷Ec\Ò\'\Zkl«·¡6','',0,'?'),(_binary 'ñø\å“rp.u…3zx€','wp-admin/includes/class-ftp.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Úü±\ã\Õc\ÞZ*l3\âñ$\Ê',_binary '¢Bù1Ã´\Î	Í¥Á†5 ¢Q«“\È\Ù\í\å•9\ËJ','',0,'?'),(_binary 'ñ&\Ê?.\r\åþs·\Æ;±=9','wp-content/themes/twentynineteen/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ï¸\nþA QnM}ÿÊ¥c',_binary '\Ð!§1³0ô)SGe\Ã	5h½šCG1\èo\Üh\Û0!','',0,'?'),(_binary 'ñVÛŽj_kk\Ê>\Zo·£	','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/price-slider/constrain-range-slider-values.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®ÜŠ\Ë =\\E‹µ½\ì·',_binary 'õ\Ë\ß\ØP,\Øl¸‘…C30\ß\á\ÜXU³µ†tÓR\Ý%\Ø','',0,'?'),(_binary 'ñõB`B:]\Ù\rÙšY\Æ','wp-content/plugins/woocommerce-multilingual/classes/Rest/Exceptions/InvalidProduct.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'šô“¥\Æ^A‘†:°7¬ÿ4',_binary '\â\ÖYø!K¨—2*P†Ka\æŽ\ãr\Û\r’AZð\\†Ü\r','',0,'?'),(_binary 'ñ\Z³\í§h)“µÏ¡ý\0ö','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/block-components/registered-block-components-init.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'aÒ³yH•uQ†N¾c\'™ö',_binary 'Ü‹N\Ægk|(º»ùLD\Z=^ x\Ê\ÕD÷sD\Í6™','',0,'?'),(_binary 'ñb†\åP¼\íƒþ3¨‘\Ôh','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/Installer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o	`r6ú¿\\ÿ[‹5}',_binary '_?ižm27ƒjjf\ïÐ»Ay³giŽA!Ó“d\0.€-‡','',0,'?'),(_binary 'ñ$×œ[\ÞkŠ.CM´|:\Ç\Ý','wp-content/plugins/woocommerce-multilingual/res/js/wpml_tm.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ø,2òˆ¹\î\ÇQ!\å@¼¶\Z',_binary '\â²\\:‚÷\çS¥½}®~ü€[J\Çk ’ú.’<v°$¾\Ì','',0,'?'),(_binary 'ñ%LÀ1Ä\ä ûJ\Ò\ÒÙž·','wp-content/themes/twentytwentytwo/inc/block-patterns.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|Æµ£‘’\í\ÃV‚@',_binary 'B?§I°Ó¢©c©ð¤\È1‰.P¶&{v	öR\ëH\Ôs','',0,'?'),(_binary 'ñ&[¦Á>jþ\Ò\Ü/\Ö\â¶GU','wp-includes/js/dist/token-list.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q\à	œ²PJ\å\\_§¶kž',_binary '\î.FP¹¹\\1“–±º£ó}Lˆq,¡ª\\r}ú¢[’','',0,'?'),(_binary 'ñ+`¿Ä»\Í$\rX„µC\å\r','wp-content/plugins/woocommerce/assets/client/admin/chunks/2397.style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pŸO{ß¯ƒ\'EY.X \"õ',_binary '¦öò™øp¡‚ª¾c#À¯¯UÀñ{_\Ý\Ûo °+ã™»','',0,'?'),(_binary 'ñ.€I\Ú7\r–\Ðj,Ò©\Åû','wp-content/plugins/woocommerce/assets/js/admin/wc-status-widget.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F§ºXB\é¢Xü-ø\î\Û',_binary ')²[®Kõ_ƒ†R;]\æ\Û\èÝ¤Nsu›dÿ«ö\×/£u','',0,'?'),(_binary 'ñ7sþ\\]\Ô}ˆAAùwe1·','wp-admin/tools.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	`tb\Üt~†	F\"W¸u',_binary '|p9‚k”²ü\Ýô\ÚÕ§ó\Ä\Þó0ötK£õƒþ:','',0,'?'),(_binary 'ñGÿ,\Î^s\Ù\rjüÅ«\Å!','wp-content/plugins/ti-woocommerce-wishlist/assets/css/webfont.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”1Áœ8Q®¿Nº\á­',_binary '“ìª¿\ZQ0D`V¤û)e_	,•õ‡¬ô= WgŸBK','',0,'?'),(_binary 'ñLÿ\×*\Ë\'\\÷£sÓIÑ‡','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/tr.js',0,_binary '\àsv‚À8Qƒƒ„·©O–P',_binary '\àsv‚À8Qƒƒ„·©O–P',_binary 'þû˜uÂ±”°c>HÍ´} \Ó%ó^<r0\Û\å©y‹3º`','',0,'?'),(_binary 'ñW•ö•\íð_N“]¥-ŒK','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-wpb-vc.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\Üð!\Ö\Í\ê4H¼\ÚU',_binary '1Bsœ™\É\ß-,\ÅF ½’)Úº\èŸr¿Ñ«Wá‘¿\Ò','',0,'?'),(_binary 'ñZ/¥¼û{Lt\åÕ®F$€','wp-admin/js/svg-painter.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ú\Ì \àV,\È~\Í\ËH\ï]‘d',_binary '\â\"s¯€W\Ë\á\å`qa\Ý8\É4\ÙPÙ¢Vùuí˜§ÀM:º','',0,'?'),(_binary 'ñ\\\Ö\Í7oÄ¾¥–Yuo','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/with-attributes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!?¦ù€y\0”6Aa',_binary 'øi§ó2­™UU›\Úñ›ð7y\Õ\"’–‘(\êIg±rN¾','',0,'?'),(_binary 'ñ`c%œ#’@\Û]¦X+a¿','wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks/Tax.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '&b_BýŸ“\Â\æ1T´',_binary '\Â+¥³0«±kh}®\Ôúz‘\ã\é ¼ù]	\ØÞ‡\Ê-\ß‹','',0,'?'),(_binary 'ñf{ý#\'£rÀj®\èu','wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/core/fontwatcher.js',0,_binary 'n/–Ë«8‘\ÍE¿¥\Ä',_binary 'n/–Ë«8‘\ÍE¿¥\Ä',_binary 'ü\Ë\Ç[k\Î^‹|\éeDü&4	ó®Îƒ2iY­ˆþ','',0,'?'),(_binary 'ñi\ÖÕŠ/\Ã!ûÕ´(\Ï','wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/modules/google/fontapiurlbuilder.js',0,_binary '(0ó¸\Õ\æ\à·2n®:m\Ì',_binary '(0ó¸\Õ\æ\à·2n®:m\Ì',_binary '–\ÙdD¡ÊŒ‡¾R³^³}½²ñº7@\ï\ÎÙŸ','',0,'?'),(_binary 'ñn÷l\nmŒ\ã\âBÀ\ØH','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-assets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^*dŸ\r—\Ø\î>G*†#s\ì',_binary '\Ö\Î\âB\ë Ã¶õþÀa†\"BN€]±²V\Îs!Ö£\Î','',0,'?'),(_binary 'ñp¼Ù¼¤&\Ê5c·\à–,µs','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader/class-path-processor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ã”\ØÊd\Ús‚2&óð\Å',_binary 'ò\àÀ\ëy\î‡¥é‚–…	¹hxb(]\n‚Æ£H^\Ò?‰\Ä','',0,'?'),(_binary 'ñx\Ïñ¾SˆY?‡jJ¼a€m','wp-content/plugins/yith-woocommerce-compare/assets/images/04-bg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘¥v$£\rdÆ¾Md\Ë¢F',_binary '0¿Å½ð\ÈE©þ\Ã h‹?\Û=y>\Ñö_–e¢\á\\¾\Ç\n‹','',0,'?'),(_binary 'ñyœ8“\\Ž4—“*\äw\åh\Í','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-actions-block/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜sûþ\Û<^0\ãf4¬\n\â',_binary '6=·§bŠ@±a…\r\ä@²7\Ù?¾\× òMc…™¢‹^*','',0,'?'),(_binary 'ñ†€\r\Ìgù\nýŸ«\áŸ','wp-content/plugins/woocommerce/legacy/css/jquery-ui/images/ui-icons_888888_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0Øƒ\í#_£û•5E%{ø',_binary '\Ýz07Xñ–I“\Ó0\Î%g\n6VaqDP‡<òÀÚ¤W\"ö','',0,'?'),(_binary 'ñ‰ô“\ÐTŸ¢‚XñÖ»J','wp-content/themes/flatsome/inc/admin/customizer/img/cart-icon-plain.svg',0,_binary '¶¬\ÅO¬9\Æ*-Ó z->',_binary '¶¬\ÅO¬9\Æ*-Ó z->',_binary 's+\"3\çšTië“³`DRµð©\è\Â$:q¼™g8e‰','',0,'?'),(_binary 'ñŠ¢vŒ:¹D¸Y\ìG','wp-includes/js/plupload/plupload.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ¸\Ë6‹JJ’7¡+\Ö',_binary '·+\"\ìˆQ\Ï\Ü\ã/N:‚T$\à\ß\"§ƒ\áÈ¯\r8v_3','',0,'?'),(_binary 'ñšÍ¨Þ¹À\Â0É§ä·‘\Ù','wp-includes/blocks/video/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o^TûŽ´\Í\ê\Ñ+RZ—1',_binary 'Þ•Gû\é\ëN¾\å —ŒZ\Ú\ÎW\Å}\Ö\Û^5}~§U6°v','',0,'?'),(_binary 'ñ£ƒ.\Ò\Ç-÷F’\nh±%d\ä','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/ux_image.svg',0,_binary 'QMqbˆÀ5þY‹±Q',_binary 'QMqbˆÀ5þY‹±Q',_binary '\åùÅ ®²‹X.\'³!þ?\Î5©@§H&·`ù˜MJJUR','',0,'?'),(_binary 'ñ¥Õ€\ën+—úÏ•w)\Â','wp-content/plugins/woocommerce/assets/images/marketing/hubspot.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¢\ç…G?”O¼yK“À—',_binary 'w_¬Ž¿ðN»\Ì\â*¨\Ë^«\ãH±e\Ü;\Ó<Xy¯Ê¼','',0,'?'),(_binary 'ñ¬gò\Ãœ A\ß†·Ò«e','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductCategory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6s0\æ…\ìN‘Q¼X]		',_binary '¾njšªZÍ›yL=wt/Úº\r\âr\Ñ\ìÁ&\Ë*\ÊbJk','',0,'?'),(_binary 'ñ®d^ƒÁ\ØYŽ\ë1ò3H\É^','wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-assets.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^*dŸ\r—\Ø\î>G*†#s\ì',_binary '\Ö\Î\âB\ë Ã¶õþÀa†\"BN€]±²V\Îs!Ö£\Î','',0,'?'),(_binary 'ñ®\ÂtÂ“J6‹3?/\ì\"','wp-content/plugins/woocommerce-currency-switcher/languages/woocommerce-currency-switcher-ru_RU.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\×\'í¥–1+\êV',_binary '	\Þ6CU\Z¾\\I\îS…¹M59\ÍüTrö{&Yh‡K ','',0,'?'),(_binary 'ñ°¹öŸ¯CÿD\ãª\Â\çA','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/metaboxes.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zT§®\Â[¶8OË“',_binary '_°#7€®Jð\È\Õ\á;eÀýµ~\Û.\Å\Ô\Ó\Íû$\æô','',0,'?'),(_binary 'ñ±TY\ÛPpEñw†“','wp-includes/widgets/class-wp-widget-archives.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•Þ¾J\Öºp\Ø\ZDŒAx',_binary 'º@ o\èŠ[¶“\Ãj\ÞS©*°£W}7\ä\'`\r–3®\å','',0,'?'),(_binary 'ñ´‹‡”š=­heú°òöœ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/taxes.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'â‘½žø{.\É\ãA¤¥$²ø9',_binary 't¦\ï\Æ[AÆ†fHfò\Óû¯óJº\ØY%¨\àƒðX5@','',0,'?'),(_binary 'ñ¾D\å/:.Ÿ~\çÈ®®—+–','wp-content/themes/flatsome/inc/builder/shortcodes/values/nav-styles.php',0,_binary 'š¾D²Ù´q	-©½IN',_binary 'š¾D²Ù´q	-©½IN',_binary '7ÿŒ9kùQW ÀŽÿ˜¯¾\ÇúösÈ\Å\â','',0,'?'),(_binary 'ñÀmSh.¤\ß!†­\ërY','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/textarea.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÄÑž\Ý*—©ýjdý±™H',_binary 'ù\Æ|ñ!)ô¼œZþ¬Atª<[5³\\“…n<»\Ì','',0,'?'),(_binary 'ñ\ÂðqˆeDO6´4iM—','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/dist/js/expired-notice/app.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õ…¤‘~A®1­\ÍH”\Æþ+',_binary ';X¤JpÀL?õso\ç\ï/V\ßd¡üü\ïd›\"‹ª0—','',0,'?'),(_binary 'ñ\Æ4‘\ì\ï\Û$êŽª','wp-content/plugins/wordfence/views/scanner/scan-scheduling.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ö&©J¤þHN\Ä\ïÔ‘',_binary 'rªh,Ð˜Q\ÃU\ç\Ó2 Vñ†J¸„\à6}N\'3\ÙiuK','',0,'?'),(_binary 'ñ\Ïù4w`\Â\Ã›ø\"˜‚','wp-content/themes/flatsome/functions.php',0,_binary '\Ý\Ç.a\ã\È}º(ž\ËQT',_binary '\Ý\Ç.a\ã\È}º(ž\ËQT',_binary '•\Ö\ç\Öi½\r·ú’Y^‡e\ë¹)bµ½\âú\àZ\á\Ò','',0,'?'),(_binary 'ñïª¯¾zy´\Õ\È>_+”t','wp-includes/class-wp-user-meta-session-tokens.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›8/\'\0¹\0¸¥vSL-G\0',_binary '\Ö\Ó\×Ž8\îb\íYB&?\Ù6—\ío\Ì\ß\Ô>','',0,'?'),(_binary 'ò”QN2q10SPw\í$','wp-content/themes/flatsome/inc/woocommerce/structure-wc-cart.php',0,_binary 'ð„ºmý\ï¬wk/X\Ð\Éul',_binary 'ð„ºmý\ï¬wk/X\Ð\Éul',_binary '\Ù5ñª¨ôb·Š·\åö¤e3I^…\Þù\Îò;rz&Ó¸e¸','',0,'?'),(_binary 'ò\î6>7TYg–®','wp-content/themes/flatsome/inc/builder/core/server/src/Options/Custom/SelectOption.php',0,_binary '\ï[—yÀ™Ga¤g\ã\Ë;\ÞD',_binary '\ï[—yÀ™Ga¤g\ã\Ë;\ÞD',_binary ';ƒ\0Ç¤ \'E\å\Ê\Äþ/¸l°Ëµcöö\Å=À\Ã/W\åk','',0,'?'),(_binary 'ò»\Ùú>¨‚Bpð/…','wp-content/plugins/contact-form-7/modules/constant-contact/doi.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T	\éô	¤v\ÞøØ¼',_binary '1¢\Õ\Îyh4\ÒÂ¹°‚\')x¼gnQÅŽˆ©WB1h!\ë','',0,'?'),(_binary 'ò\nÀ‰& º­\Äd-[\ÇA','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/TransformerService.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'REú*x»ÅY\Ã;¸û^',_binary '’\Å\í\êRC÷\ÎK\Í\Èj’\ÈM\ÓQüÿ=Ö²\Ã`ôQM¹½','',0,'?'),(_binary 'ò\ã\ÝHör #\âw/“:4','wp-includes/js/dist/plugins.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ùw\ÍH¥¢.	\íS¿\Ç',_binary 'ŠWM\Ñ#´óAü\"Ñš™\Ç\Û\r0žúhü&\'\ÑN\É¸Œ','',0,'?'),(_binary 'ò\í­ Ú‘üJ™W\æx','wp-content/plugins/woocommerce-multilingual/classes/multi-currency/payment-gateways/class-wcml-currencies-payment-gateways.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LÒ«rYP‘jÿ¼¾ž„};',_binary 'q#)6\Î]\â˜\äZ’ôº_\ì]Ø‡óŸ\Ô\"•cfqn\ä»','',0,'?'),(_binary 'ò.+ÿ‹·\ß\Ó\Ç\Øýx7ð,#','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/tabs/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?—Lqytƒe™Ÿ’ß³',_binary 'g*óúÕ©t\Öÿ«Üº§+Ò¸\Ü/\n³\äÁ\Ô!?¢0ûA‰','',0,'?'),(_binary 'ò/—Gy9Çš\éx\ìX›','wp-content/plugins/woocommerce/assets/js/select2/select2.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6—=\Ò1\ØG\Ø\ì@¥ye…',_binary '\í\Êüöd´&qóqþp&“¦FaY\Ð\ÂhŸný%]ƒb­Y','',0,'?'),(_binary 'ò1\nò\ç\ÏÁÁ¡x¾¿¬\Ù','wp-includes/blocks/latest-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '’r*9Ž‹‰Ÿ‹ln…',_binary '\Ì\Â‡QK\×=÷G\é~ƒ€Bö!w~÷b\Ö_¹½Z','',0,'?'),(_binary 'ò2n%Ž¶/©\Ä\åòƒOj','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist.pot',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\×\ÜÏ©\ÅúÝƒw\Â(cT',_binary ' •‘†?5v‚o½õ+»²\ÛlCž \ä\Ö\\\áþ+9\Í;%','',0,'?'),(_binary 'ò7$ðñbU\ØH\'\ácõˆ4=','wp-content/plugins/woocommerce/templates/emails/email-downloads.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´Ÿ÷%H†V\É\Óíº˜)cx\é',_binary '¦¡1Y³6žkçœ¨‡\Ù÷†\ßFEŒ§?\Õ	t¾V\âÚ°','',0,'?'),(_binary 'ò8ù [\î\ï1¸õŸª<	<','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/colorbox/border1.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þbû,Þžšb\Ð$ ˜³t',_binary '\å[\Åo´\â\é<\È?Á\ÚY%—y\Õ\ÙBr¾V‹o\×hQˆX','',0,'?'),(_binary 'ò?²\âE_\Ï)ŠxÚ…$ž','wp-admin/includes/deprecated.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's0‚µž\"ù=Ó¨%°ñ>±',_binary 'k…\ÌIª\ÍHý„°ƒ\'Œ\'¸õy\Ã\é ýÈ®\â\Èu#\è','',0,'?'),(_binary 'òDd¡\Ñø.\È\Å_¤¸','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/attribute-filter/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»\Òi;dþÃ­*¦J(\æ',_binary 's\Ó)¬v‹š\ãÁŽ„š¶œ&;Æ…@§ž\Z·\ÜXøÝ¤','',0,'?'),(_binary 'òG/6:‹£³²øW¢QŒW/','wp-content/themes/flatsome/inc/builder/core/server/helpers/helpers.php',0,_binary '\nž™[\r\à\ï\n\æhŽ\æ/«\Ç',_binary '\nž™[\r\à\ï\n\æhŽ\æ/«\Ç',_binary 'WR\Ù0¤Âœ6\ä¢õÛ¯@ªÊª3Â´ýG`…	H','',0,'?'),(_binary 'òH\Z«4ÿdŸD`”¢\Ð','wp-content/plugins/woocommerce/src/Admin/Features/TransientNotices.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\É\ËðŸÍšG¿¢^‚\Ô',_binary '{vŸ™!\\hKµŽnÀ—\'…\Ö¨;\ÃÞƒª<¹°','',0,'?'),(_binary 'òL>\Ë;µ*	ª¹YÛžm','wp-includes/blocks/preformatted/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E9,ƒGµr\×p»i\é_',_binary 'cSnmqr:¢hNe²W¦ª{(w\ÌD’~n\'\ä+¸','',0,'?'),(_binary 'òMþ\éÉ®i‚Y\Ð\ÏY\íÒ–','wp-content/plugins/woocommerce/src/Admin/API/Reports/TimeInterval.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`‰È›OÆ¼„¶vW&š=',_binary 'e\Ù\nðŠÒžEjI\ZeÑ¤[50Ù•]°q\Þn­','',0,'?'),(_binary 'òP@C Æ–þ.‡p§~\Ê','wp-content/plugins/woocommerce-multilingual/classes/privacy/class-wcml-privacy-content-factory.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡Pc¥RT	¸Zè²™W‹',_binary 'ƒpaQ*¶&õ\î\Þ\éñ·mù\Å\ÆQ&1\ËH\ÚY 4\æ\ìq','',0,'?'),(_binary 'òW¢ýò<ù\"û’_\ä[š','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘öØ¥øgƒ \î\ç\é]b\â',_binary 'gD>IB9\é·¯šLI\Ó	*œ\Â\îð1\Ûó16Ž\Ù0\îC|','',0,'?'),(_binary 'òde\'\åR:Zm k•','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-customize.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ºK\ÅeJ˜›™›Mû[4\Û/',_binary '®\ë˜0Y\îG$1)›\ÚT=Ÿô:¸Ÿf\çÁ\nŸƒ<}','',0,'?'),(_binary 'òd\íTo\Èf‹öÒ·\ÜbS','wp-content/plugins/wordfence/lib/menu_dashboard.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…h\éGo2±«œ©\rT~¹',_binary '³\0p\æ”{dMô]{\Ï”\àâª¥ \×]ž·\çó\ÉT- ÷K','',0,'?'),(_binary 'òjñ\nj<Àcª@B‰X','wp-content/plugins/wordfence/modules/login-security/views/options/option-textarea.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3\Üq\Û×˜w‰Uó\ßÍ°RÁ',_binary 'úJwYw¯u¢nø–[Š\Ä\Î&D\×FLV-ó2Lò\Ë\Ö','',0,'?'),(_binary 'òjüzÐ­Xd\'†ø\Z§µp','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-guards/error.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+Ø€L\Æ\íq–5±õ\Í',_binary '?$kP\è\Ú{¶¼\Ü\îdq”ý+.\ÍZ\Ìø€Î©y™','',0,'?'),(_binary 'òm¦»I:¿õið š*v~','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/licence-error.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r_-KWB¶\\Úœ“†^ýþv',_binary 'e¥ªc‰Fõ[@\\ö\çH}d›\Ý\Ù\Îg\ÏÝ»|>)','',0,'?'),(_binary 'òpo‚´X0%÷¢\Ç\í\Ï\ë','wp-includes/css/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Á1\ËXÕ´…\Õþ¦ýƒ†',_binary 'A•+Ž¡€\ÅP—\Î“Š®*šdÕù‘®JDÑ¿ð†(\0','',0,'?'),(_binary 'òu;ÈŒ0\åq”wªœ=\à\ß','wp-content/plugins/wordfence/lib/dashboard/widget_networkattacks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ï+6 ð±Î€J\Âhþ',_binary '),olžR’\Ï\Ì\ÊZJÿ\ÒeT›(y \ë5ª¾‹²+','',0,'?'),(_binary 'ò‰\íN\í=,5>G\Ã\n¢','wp-content/plugins/products-compare-for-woocommerce/style_templates/simple-and-nice/simple-and-nice.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'þ=žJ\Ê\ÃÁ&5ˆ±',_binary '\0!]™¸ß–¬F±´¿÷\r«„[\Ëq¯ƒWPi1x¨À','',0,'?'),(_binary 'ò¸¹=p¦C\ïJš¯','wp-content/themes/flatsome/assets/js/builder/vendors/vendors.asset.php',0,_binary 'ÊµŽ‚jyô|6£[!±',_binary 'ÊµŽ‚jyô|6£[!±',_binary 'ûW%‚úfs\ïap\Ýp›ŸÑ—ð´_½\æ\"{8¹','',0,'?'),(_binary 'ò”\çwÿað`¾º\ëÂ†','wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-hu_HU.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ãø›e\ã\Ê\Ó;œþB\0oJ',_binary '\èóO½¼+ö\Ó\Üg\Ä\è\Ýy\Å6\ä¶BÊ·¦o\Öò\â®xJX','',0,'?'),(_binary 'ò–\Ý\ÕjK\é&·…\í\ÖY','wp-content/plugins/akismet/class.akismet-admin.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\Ø\Ñ#ýÿFq÷šy\r3\Å',_binary '®_p\\\Ë\ÈJ¯„\ì\Ö›œ\Zh*Xµx­\æ\Ï6› ','',0,'?'),(_binary 'ò™E\ÝjªS.˜„ûÙ¤{0','wp-content/plugins/products-compare-for-woocommerce/berocket/includes/updater.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç\æV,/~CCúŽT.H',_binary '\ä<\Ý&Œ\r\n\Üû‡ÿþ\Ðf”vy 7vO”a$\Ñ!-\Þ¨\å','',0,'?'),(_binary 'ò¥]ó$\æ1\Zªúüq\å É«','wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/modules/fontdeck.js',0,_binary '\æoÀJ…cu\Ð\ÂP\Ëú`¬¤',_binary '\æoÀJ…cu\Ð\ÂP\Ëú`¬¤',_binary 'ð\éJÿH5\âS/•ž\Ú\ÚkÇ«.º‘¾\È\î\à^\È\Õj','',0,'?'),(_binary 'ò¨$c{±97^Ð†\È÷J\Øg','wp-includes/js/dist/server-side-render.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ùk÷\Ô}\æ\á\ÈÖ’<fP',_binary '&\ãâº™ú§6«™U \Ï	³o\åœ\Ý5¸÷\ê½y\Þƒ)p','',0,'?'),(_binary 'ò®ò…Å•\î‚oi|}\È\ã','wp-includes/block-supports/custom-classname.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­›Z\ã0ÿ\Í~÷ž¸',_binary 'E»\ì§\ÞY\â\Ù ¶C•5ùf\ìtÀ…A%Bý†W\ê†\0ó','',0,'?'),(_binary 'ò°–üM\ÂÙ¦M\Æ/`¼','wp-includes/js/swfupload/handlers.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÂÁ\ì*\Ã#\Í0‹-\ÆÕƒpõ',_binary 'H³#ý¯¥Ÿa:š‡1ú‰À\Õöð\í—ß¯orrj\ìuz\àzV','',0,'?'),(_binary 'ò± ­ü²B\ÉR\Ôz‡‡Y','wp-includes/js/jquery/jquery.table-hotkeys.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\åogo·¿“~i¦I	ú',_binary '„<²Š=¸¤;’:Át_,w«ÄƒI·\ÊÁ,Š,™œ','',0,'?'),(_binary 'ò±¬‚mQ&Ï¡\r\"\ì\'Z\ÓZ','wp-content/themes/flatsome/inc/extensions/flatsome-lazy-load/flatsome-lazy-load.js',0,_binary '0¾÷olVxt\nK|K£µ',_binary '0¾÷olVxt\nK|K£µ',_binary '|šD\Î\×=ñ¡ÈŒ3Œ™\î”6­Õ –\"€YCQÿ\çró','',0,'?'),(_binary 'ò¶?{o_±°µ\'»n\Ö','wp-admin/images/resize-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ{3VV´\íFV¬f\ä%K',_binary 'æ‡´y2q™þZðo ¦~´¢([—‚`\0`C¸i\ZL\'','',0,'?'),(_binary 'ò»<¥\ã$Ô†\è÷˜\Î\Ì','wp-content/themes/flatsome/inc/admin/customizer/img/text-bottom.svg',0,_binary 'ñš{\ë\î•zØ t\È',_binary 'ñš{\ë\î•zØ t\È',_binary '&1Ä°ú™7©\ÃXöÜ´\"4˜\ÞKY%\Òtd—L«Eó\Ì/','',0,'?'),(_binary 'ò¾\è÷\ÜÒ 8‹c½\í¤\Ïü','wp-content/plugins/woocommerce/lib/packages/League/Container/ContainerAwareInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ý\Å6ÄýT\Ã”BUºbš',_binary 'e@´B¥e\"y€¾`†Ö¢&\ß%ba|b\àŠR-ú\ç\ÆO','',0,'?'),(_binary 'ò\Â\Ì_fÂ $ÁO<o','wp-admin/js/common.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\rˆ“a§û€¤2‚•û!',_binary '*š\ëšIþ›\èMP%0iTµ\Ú0sÀR¹s\Èo‘/E','',0,'?'),(_binary 'ò\Èø\ÒlL”ó\nš]Ð®½ ','wp-content/plugins/yith-woocommerce-wishlist/README.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Cô\Å\ã[<tT_\æ\ëö\ê',_binary 'vÒ»TcƒW$wZŠ-išBªN¬µÏŒ›,.¾ñ¡\î\Ý','',0,'?'),(_binary 'ò\ÊZ©!:\Õ\Â r\î\Ëe\ä','wp-content/themes/flatsome/woocommerce/checkout/layouts/checkout-simple.php',0,_binary 'ö2¿¢\áX\á¹\ê\Ð\áwŸ9',_binary 'ö2¿¢\áX\á¹\ê\Ð\áwŸ9',_binary '6{À°\ÍÕªµTƒE²ðHý^*a£&ð—\Ö\àM;N','',0,'?'),(_binary 'ò\Ò%¯\0ú\Êz”fÀN\ÈpS','wp-includes/js/tinymce/plugins/wpemoji/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'SE­\îx=d¯¨~Á±«eM',_binary '\"ƒw”%%{Ž˜\å=L(°¸\ÅhK\â\rÆ¢H\êP','',0,'?'),(_binary 'ò\Úw\Î+\"+ú$\ã¬^¸','wp-content/plugins/wordfence/lib/wfLog.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡£\"W¯~\äSMÀ\Ç\Ü\ã!',_binary 'R2h\Î/rOr\Ûk”´_+l–fR‰>ªk¾‹,R','',0,'?'),(_binary 'ò\è¼\nosÍµc\Z#\Ún\Ø','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--mini-cart-contents-block/footer-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ã7\àtð=VEv¿]\æ£\é}ž',_binary '{\×[·ci\Æô–\0W\ÊÙ°ƒF1\ÞJLlŸù\'\ÈkÀe','',0,'?'),(_binary 'ò\ï6U\Þ*)u1@)\0Pó\è','wp-includes/blocks/navigation-link/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':ö\Ó\Ð\Î\Í\ï\èCŽ‰”Y2',_binary '>úHoƒN^Œ<°\éiaG[Ñ›í‹še\â—`{žC','',0,'?'),(_binary 'òòw(\ç\'\Ðs\ßy\Ò\Ã:6','wp-content/themes/twentynineteen/template-parts/content/content-single.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'I,\ç\ÖI¬\Ø\ëÇSuº\\¬',_binary '\roh}\Ò}i†‡V\èA¿Ô\ÐH\Ô!v\ï>4}\í–\ãŸM','',0,'?'),(_binary 'òô¯\å—t.<d*Rk','wp-content/plugins/woocommerce-multilingual/classes/order-property-filter/class-wcml-payment-method-filter.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E\Ý}•ñ€+\Â\í³luö©',_binary '\ÖpŸ#DYC\ç}zFa\ÂdY<Ó¿S\ík¤¿\ë\Ów¥\à¿«','',0,'?'),(_binary 'òõfƒVŒ\rÿ\Ói³¼\Õ;!','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/button/supports.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥É·\Ç\ê”“	\Ï)E¸¢±',_binary '\ÕtŒUþ“²„7–]g´%ŽEs\\u9kÎ†\âpÍ†','',0,'?'),(_binary 'ó\Ôº<øfÃƒ÷y\0¬Y','wp-content/themes/twentytwentyone/assets/sass/04-elements/media.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸\ä„D\' Bt	#ƒ\ã\èh<',_binary '\"¼eÛ°¼}€)s¼\áÀÑ“Ê«t[¼\"¡iž·\Æ\ë/Vô','',0,'?'),(_binary 'ó]ü‚:ñ’œ,¶´„B\Ó','wp-content/plugins/woocommerce-multilingual/inc/template-classes/status/class-wcml-status-media-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4r\×Ã±\í¥\â\ÃeKš1<\'',_binary '7†Øˆ…—vdü±ÿqj|±“\Â\í@\Ú\Å\0Æ¸uX‹Pª°','',0,'?'),(_binary 'ó\íA0°\Ãß½¼õ\ÃþªŸ','wp-content/themes/flatsome/inc/builder/core/server/tests.php',0,_binary '´Š]aA\â\Î\ëG\ÞV‡,CZ¡',_binary '´Š]aA\â\Î\ëG\ÞV‡,CZ¡',_binary 'Y;w\n\ÖR?Tt4=bòD\Ó“\rH„g\'€Å¯H‘™wš','',0,'?'),(_binary 'ó\"-‡q²5.v‚%mOm7V','wp-content/plugins/woocommerce/templates/emails/customer-new-account.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ý|\è\Æ2•™d€\ç:\Ù',_binary '\ë)€÷öã‰².¹\îºÂÎ‰Wu—Áçª‰\ÔU','',0,'?'),(_binary 'ó\"\î2.\ÕI>òþ‘‘xö\é’','wp-content/plugins/woocommerce/assets/client/admin/chunks/customizable-dashboard.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*“ò\Þ9&\×þ\ÃP\Â.Ò£',_binary 'U\ÑvŠ9¡B5H»¥~Û³¸ý>ô\Ó\'q)\ß\â0\ç1À¦','',0,'?'),(_binary 'ó#\\ú·\â¨/‡vXR','wp-admin/js/theme.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\æú•3Ö¥\Ó4À©\ÔW(',_binary '›Ä„0Õ¨M¡\ÔøK\ÃU‹‡¢\Ô\Êú¨ÿ\ßW}£òe‚','',0,'?'),(_binary 'ó$ó\â\Þ\éúOvašª¸8\ï%','wp-includes/blocks/text-columns/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.%\çQ¼\ìÊ¯vúv~\Z,',_binary '¤¥—™}Ã²Ó³¸\ÊlV\Ñ_÷œ\á\í g\Ï$q#3	\çÇ¹\È\ê','',0,'?'),(_binary 'ó)]\æŸ\É);_}¸\ÝUQH\Þ','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/tabs.svg',0,_binary '.<“o»\r¸p‹˜C\×_\Ó',_binary '.<“o»\r¸p‹˜C\×_\Ó',_binary 'Ù€_SœG¯\Ï\æT†\å[\\(¥o¸Ÿ\ni\Î{\ÕQ–N¨','',0,'?'),(_binary 'ó)\Ú\Û\Êl\è\æñO\Ôv\Ãar','wp-content/plugins/ti-woocommerce-wishlist/assets/css/theme-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@iQ\ë\ÅÊŠ4¹30Š\Î\Ì',_binary '§&©þV4Y\Íú\Ôý\ãO~¥&Ñƒõ”\â\Þc!óñM.','',0,'?'),(_binary 'ó*N«\ÂÞ³\æF\è6\Ì2DK\Ü','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/repository-listing.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'aWOXDµÃ+/ŠÁ¢’n',_binary 'ý\ÊÓcÁ\Ûç·‰CA\ÓRn\â\\bwa<»!ù\ZKý­M','',0,'?'),(_binary 'ó-¤\Â5nÊ«®-\ä‹\â—','wp-content/plugins/yith-woocommerce-wishlist/assets/images/logo.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…Hi‡\Û:·3\×\Ö\Õ ',_binary '=ô\Ö\"\ç\Z\âöšJö\";\ä£uWÀ,N”<ø}B¥\'²\Éö&','',0,'?'),(_binary 'ó2\Ô\ÚAü+É™\Êk\Ë£','wp-content/plugins/woocommerce-multilingual/res/js/dialogs.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<‹À‡\ËS1\î‰Cb_F§\Z',_binary '¤ƒ\È/\äg§\Ô\Ï\×0c\Äkµ#\r²ÿ)FúVx…¿','',0,'?'),(_binary 'óV¡<\ßþ\Ãr\nQµ]jvXP','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/ProviderInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z¿\Íø*Nf\ÇÙ¼{„',_binary 'iš”Ë¶|1…\Ò\âv.4[ª(¶ «ô\Öm@f>ô½\Û','',0,'?'),(_binary 'óV\Ò\Ú`?wI®yl^5ª÷','wp-content/plugins/wordfence/modules/login-security/js/jquery.tmpl.min.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€\\}\Ã\"£†‹7Ú·’•DZ',_binary '\ß.IôH\Z„g\0óH!7`‘£gÞ ZøzÈ„ƒÅ¾6|','',0,'?'),(_binary 'óYhF‘Ú†T\Ã˜{’','wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p=o «zd\ã#‡\×\ï5Œ',_binary '_\ÇI\â\ÝTF™XI[¯\é\Í@¶ô¢®þòInñû7‡\ë\æ¬a','',0,'?'),(_binary 'ó[\ê\ÆJ.UfG\Æe$Ï›(','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sale-badge/attributes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Uÿ‘gfZ\Óº‹\ç¨',_binary '^¢ý°º9”av–1…\â=ŠFò\áZºS¡]K@O\Ö\ï\"','',0,'?'),(_binary 'ó_,E!\ÎøJO#hnZ\Çt','wp-content/themes/flatsome/inc/structure/structure-header.php',0,_binary '6;\Â\Ëý\'ù¹W\Ôû(;',_binary '6;\Â\Ëý\'ù¹W\Ôû(;',_binary '¸©\ìtÑ¯…\ä\ï+S \Æ7<I…lp\Ü{¢f\í%\Ù\ZN','',0,'?'),(_binary 'ó_ž­œñ…\æ<D¤Áhg\È\å','wp-includes/block-patterns/query-offset-posts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<HžH):\ìb\ÏŸ™\Ë-',_binary '\É\Ó2Ž¶Û°–HOUGH\ì`\ïûT\É\ïU[¿av²•','',0,'?'),(_binary 'óc\ÚE%Dö\á\ç	¥ºé›©','wp-content/themes/twentynineteen/sass/blocks/_blocks.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œõm\ç!w\îË]9ŒópöA',_binary 'bxÍ—ß‡™JžNeªº\Æ\î¾\î\é½\çý•@RP','',0,'?'),(_binary 'ód©?{Ö‡’(¶¦™³õ ','wp-includes/blocks/post-comments/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#×š`\Ý×·1õ\ÇZ}.‹(\å',_binary 'ž\ÎtóN\çÉ€\ÝÜ»õ•†HÛ»‘»§\Ü%kH\\¦Zƒ\à','',0,'?'),(_binary 'ólF‘®¾\Ücë’•\ÒLÁ€ø','wp-admin/js/iris.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰2\à2¨?Þ¡š{\Ä\Ã',_binary 'ƒdU\ÂD£2òð\Ì\Î\ÓG\Ó\Êý\Èþ#¹™\ëlk^[\Z°','',0,'?'),(_binary 'óuE1?yø¯u\åÿõO™','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/SchemaController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tø\ÝÇ˜\ê7\ÛE•A“\ër\è',_binary '®.”\Ê\É%ƒXûWü*(Œ[pO¡± @;Ø£\r\Ï\â','',0,'?'),(_binary 'ów»M>Á/\ÌÈ}»\Ð','wp-content/plugins/woocommerce/legacy/js/frontend/password-strength-meter.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A°+x.h–\r…\íV\ïU',_binary 'F©\ïLÁüÑ‡eCù2J¦(2£.qžpU\Éeõü\ïÒ¸\ä','',0,'?'),(_binary 'ó~,yW0\ëûZ“.\Ó[','wp-content/plugins/woocommerce/includes/class-wc-shortcodes.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b7w+·S^H•¬Ï½4€',_binary '8£\éC°É¾\êm¯²b|ó[2	ŒU³¡:\às>’o\Å\ïÁ','',0,'?'),(_binary 'ó…¡eè¥“nÎžc‚t\áÀ€','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/order-summary-heading-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1‰\Ú8Q\Ýù‡õª\ÆZò',_binary 'bG-\Ü\r\å\Í\Û\Ù\"\Ê$³f.<G¶7\×\ÉMÜ¼or','',0,'?'),(_binary 'ó‡\ç,·o\Ù!\Âz¾j\"ó','wp-admin/css/edit.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_£kMi1·0“‰ð)øŸ',_binary 'øO”A\Ê)\Zb’’\×\ÂLE\Óy…õ\Íx\Õ\Â ³5\ÙSœ','',0,'?'),(_binary 'óŠØ ]\Ôf•ˆðPô¢†ƒ','wp-content/plugins/wordfence/lib/wfLockedOut.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'º\Z\ÊÀ6/N…\ï\á‡',_binary '\'$—ò{\Èø–\ïi\ÈP\'\ZTBPô<ŠPp·\ÈÁúW’\Þ','',0,'?'),(_binary 'ó‹VP\Ç.,8ý÷g;,¨O','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Reader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÜNú[Q\àCC®\0D\è‘',_binary 'å³´=\Åt¦˜€ ^–” ©°ÖŒ®›>Î)\Ðø\é\í\é','',0,'?'),(_binary 'óG\Ïz z{\nªW\Óòu','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-ko_KR.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2¼‘;\Ó\'¥‰DÎ¾:\Ïø',_binary 'Kð„_p\Î9\Ð/L##––2M°ú\Î\ÊÖ—xl»÷\Ï*n\Î(','',0,'?'),(_binary 'ó\ÚV\íŸ.`Jxbe\Õyø¢','wp-content/themes/twentytwentyone/inc/custom-css.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ZzDB÷‡@Jþ{Rô\è\ä\Ô',_binary 'žW:7BŽ`\å\'\ä\Ì\Ýd¢¸®öÍ½Ýº\èt»k?uÁ·\Ï','',0,'?'),(_binary 'ó¬~óÿ¤¥+µú~wv‰©','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/hooks.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ýh¸ôÁ\0E\Ñó-\'',_binary 'šý²DSZV	DùÅ€Å¸7üR»·q\ì\Ý÷\æ\ÒÈŸž','',0,'?'),(_binary 'ó¯\ZÀkD–°Ó–aL=[V','wp-content/themes/twentytwentyone/template-parts/content/content-excerpt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yþPô\åCZý)1H\×',_binary '«ž\ß\ÆLJ\ÂÕ¬@~“ö¨\")¼±•?A\äˆ\Ë<','',0,'?'),(_binary 'ó·Q,é€µ·Ž“—{\Ä','wp-content/plugins/yith-woocommerce-wishlist/templates/wishlist-view-footer-mobile.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0Ž\ÒIµGNú\î3vW',_binary 'nŠK\ÝAM\ÙÊŠ2L»‡ž‰€434”‡Þ¶ž¼\åøO','',0,'?'),(_binary 'ó½³Nò³\Ëô„ü«ó\Ïs\Âù','wp-includes/customize/class-wp-customize-custom-css-setting.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '?\ã®H(t\è\Ö\Ð)…G9œ',_binary 'O/`d;º®]\é\Úz\ì\á#\È®òÎlQ¤g–f\í	','',0,'?'),(_binary 'ó½Ìµ\ê•\ãÿ%„0i2\Ò','wp-content/themes/twentynineteen/sass/mixins/_utilities.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '6$\Ä=(d\ÖL§s“\ßC`c',_binary '\àöˆ\ê”/CñÜ°\ë\Î/Åò°@\Ü\ïX¼\åY!C\Ë','',0,'?'),(_binary 'ó\Ã\0L\ë\á‹\Æ6\Â','wp-includes/blocks/latest-posts/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r7\é¦ê·ˆ½™Óxø®P',_binary 'â§d\Ù{¶ø=d²\ßn8¬§\ï\"„1˜n*\Ê#\Ö','',0,'?'),(_binary 'óÍ\â\Öy|\Ù\×kŠò1õ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/store-notices/components/store-notices-container.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ó„?Ù²®LIU9aÚ‰¼\à',_binary '<#@8qC®xPZ€¶S™(\Óö¬s=\æú\É6U\'þŽZH','',0,'?'),(_binary 'ó\ä9A\á\ï+-ž\àIG™•','wp-content/plugins/woocommerce-multilingual/templates/currency-switchers/legacy-dropdown/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ]¢Ž\Ñ\ì2oš§=ü°.\Ô',_binary '_q(–W?ø\Ù\'À$j\íû\ìô\Û\íuö¿Ô¯Ž®+2£\é','',0,'?'),(_binary 'ó\è\ßÅ£}rwv-\'1\ØÌ½','wp-content/plugins/woocommerce/legacy/css/jquery-ui/jquery-ui-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Õp\Ç\Ó\Òy‹´[{i,°\á©',_binary 'B}”K%\É79\Õ#sˆ4?žt‡\á-Ž»§U\Â\ãúõ\Ém','',0,'?'),(_binary 'óó\Ò\Í\Ñâžžùª^Õ˜R\Û','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\É\Þo”…\å—¹\å§h€g[',_binary '€\àÀß.\Ö-h4`9S _\r\è“)I\Í(†\íW\Óò','',0,'?'),(_binary 'óÿV¬“k9Û´\îs¿»€Ö¿','wp-admin/css/customize-controls-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µo½&Ëµ¢À\0o°Ô‹ps',_binary '§!\ê\Å\ËN\çë™…Õ›E\nûP^˜r\ì)X½sR','',0,'?'),(_binary 'ô‚Ž;\ê¢^ð©¸´8c„','wp-includes/css/buttons.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ê©\Ý\è[ýÁ\\\á›\É\å†.\é',_binary 'LÛŽ¾\Ìb˜\Ã\Ðñ3¥Šy½Ÿ®\Ü~—>I\çt¹–Á','',0,'?'),(_binary 'ôa\í\è8Ž{ú¢\Í%z(','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/express-payment/checkout-express-payment.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ïq&ünÈ¬F\ì·À¶ûzŽ>',_binary '\ÐS\Û\ÄO\Ü3ñªä§˜T\ã\æ¹\èô¤anñ\è*ðü','',0,'?'),(_binary 'ô\"c°5óº‰q–¥#\0¤«i','wp-content/plugins/woocommerce-multilingual/inc/template-classes/setup/class-wcml-setup-ready-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ö…GCVwº\Ðø2‡¶Q',_binary 'i¬\ß\n¸\\r“©\ç\æ\Ý\n\ÙÄ†	´ôd\Î.>','',0,'?'),(_binary 'ô%m4|\æoCM[}ŠH¥Œ}','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/order-summary-subtotal-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±\"A\ßL$Á%X\"B',_binary 't‰–~Gòg\rŠùPóq‰\Ø\íBðb•°]FðU¢','',0,'?'),(_binary 'ô(\ÓÔ¿£\íÉ¶Û¾\âè¶®','wp-includes/js/dist/edit-widgets.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Å“f¹+M;\â\ïl\ì\Z\ì\Ð',_binary '˜#\àZ\Þ(k\î¤\nÆ¹¦›\\Y2f\ÃH«Ä®Q<$&ú`','',0,'?'),(_binary 'ô4˜CÏ¦\ÄT6–7#Ë®','wp-content/themes/flatsome/inc/shortcodes/portfolio.php',0,_binary '\å\ÜQ¶\å\Õ#¸\éþj±\Ú',_binary '\å\ÜQ¶\å\Õ#¸\éþj±\Ú',_binary 'ü¢Il\ì¯\áe\æ@¹l{\â:HZdsp6»r0j‘ÿÁ\r%','',0,'?'),(_binary 'ô=©\èo€<—w}ä¯–’À','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±\Ä\éˆ\Ì\ÃeSu-µ\ÑÕ˜ú}',_binary 'ix\Ê\Ê\â_Kn¡¤ð¾”&¤F\Ê\à¾\à:r‚„a\í0','',0,'?'),(_binary 'ôC ·­\í‰S)¸=™)','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart/reducers.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œ\êˆ™Ot\ÕÐ€û\×a\Íó\r',_binary '»‡õ\Z\Ös\á²\ÂR\ì\×,zyë”¿\Ù ­@‘˜J5\ê¦','',0,'?'),(_binary 'ôJ\'#‰‚rN„0a\r\È','wp-includes/images/crystal/audio.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™nVñ:\ÉÏ‰óG\Ø\Ô-#k',_binary '¢~B\Z-×¼of|W¢x\\þª|¨M\ë)\å\ß‰Ë¢','',0,'?'),(_binary 'ôY´ªR‰Yi/µ·l@HX\Ó','wp-includes/js/media-grid.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '´yAa\ß\Ûþ4\æ0®\Õk\Z¡',_binary 'eQ‹¹\Ø?öbt\'\Üu+S\Íü\0\î¹phI\Øñ\Íf Å¦›7ª','',0,'?'),(_binary 'ôZ\Í\ë–Qµ!\Õ\Ðúö®* ','wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xGIzQXKMnyrYk.woff',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`y\0#x\ÄsúG\ìJ¶\Öt°\ä',_binary '\ÛA\ár\ë\Ð\Äx?jŽ’\Ò#‡\ÂCõF\ËO‚G-¢S\Ö÷$','',0,'?'),(_binary 'ô]»Ð˜\nž(ª?W&\\\ì´','wp-includes/blocks/audio/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n=m.«b¦.l-lko',_binary 'Õ¼³C00\r\à\Ù=º«ñª\åTf‹tc_\Ä5Ÿæ º£','',0,'?'),(_binary 'ô_l\Ý\éV\Ó8ƒ\çK,a\ã','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-pt_BR.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æ)d\Þ/uQŒ‰ïŽ\æ/–\ï',_binary '5\ì¬uë††»ˆ‹T‘´·#@â­²c\ï\Ô_¾>Z\ÒLkg','',0,'?'),(_binary 'ôo\rM\ä©\Z¸hˆC\rK­\á','wp-content/plugins/woocommerce/lib/packages/League/Container/Definition/DefinitionAggregate.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ò–\ä\rQ1VpV#@¾ ',_binary 'a>l¬=XžBø\Ò\ïX\Ê>x÷>~•\æøö¢\Ø','',0,'?'),(_binary 'ôw\ß>d\ÂŒ?d…','wp-includes/blocks/post-featured-image/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Î\Õ>\Ý}i@\ØÓ”…\Ø',_binary '&‚Tjy“\Z\Ï¸ZýqNN‘x÷\á\ß\æ±\à\Öõ=w”ô','',0,'?'),(_binary 'ô€>JS\Ñ\é¤	6’\0','wp-content/plugins/woocommerce-multilingual/classes/url-filters/class-wcml-url-filters-redirect-location.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Þ\Ão\áõû2HVJž“C‡',_binary 'Zö\àÓ’¥Ä†ô\Ô\rÁ<J¿N\æ\0ç´„\r´kQy','',0,'?'),(_binary 'ô€°v!Ÿ!\ã\Z\Ïuym','wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/basketball.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C%!Pù\àÏ‹\É2Ø–',_binary 'm\î;!¬\nš6\Û/Aü~\êš\êv#’?\Æ\ã\É\ãyD','',0,'?'),(_binary 'ô‚¦\Ð½\Õ\à\\ºFùt¿Ž','wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ž\ÊebXh3C¥\Åa\ï+Q',_binary '\\Á,\åPErxÿ\Ì\0KÀúˆ\"VgÈŒ;„?„¡h','',0,'?'),(_binary 'ô„ª\áetÏŠøWZ“\ÚVJ\0','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/external-link-card/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'zC‘q!¹\Ù\ä\áD¢BþÀ',_binary 'kxfQ\Ë>1Œª\"¤ A·Ûˆ¨\È-s§½°Ô\\dWþƒ','',0,'?'),(_binary 'ô‡­¸q9r&>’DŠ.k','wp-content/themes/flatsome/inc/admin/kirki/modules/custom-sections/sections/class-kirki-sections-link-section.php',0,_binary '%/‰IQ!B@ò\ÝhÆ—ð',_binary '%/‰IQ!B@ò\ÝhÆ—ð',_binary '¡\ÎMÈ•\å‘\×cG©‚Áð\à\r·`k\Ð5Ú¶·¯Eò	','',0,'?'),(_binary 'ôˆ7:”bü\Ë\r,\Ýjaø','wp-includes/js/dist/blocks.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô®±\Ý×¼|ŒÁK‘\ä\n¼',_binary '=Œ7ð\ÃvC\Î\Ú\Öˆ=\íUV OW•‚\ãxª?y\ì\ÜG\nZ','',0,'?'),(_binary 'ôœˆŒŽ\ÇI\Ì*Ÿ:o\Í','wp-content/plugins/akismet/LICENSE.txt',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²4\îMiõü\äHj€ý¯JBc',_binary '¼ÿ\0v1£\ês\ÔN\í>cIDÙ¦¾\Ö„I\é­0ÿ-','',0,'?'),(_binary 'ô /3¯,¬ˆ³/Þ”·;','wp-content/plugins/woocommerce-multilingual/classes/Rest/Functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹i˜\Ñ,C5‡‚U+\â¤\Ú',_binary '… ô‰¬Ê‰y²Å˜Lð+aƒ\Ûo\Ï\äÁ,ð”‘Â‰qP\ì','',0,'?'),(_binary 'ô¤\Õfˆ	W5\ra\ãR\Ñ\nK','wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­\Ü.\çnG¥s\èJ–\ïª\ê',_binary 'k\ëþ\"Az:€\ã\×¯LB^HFV\Ð]4¡X;%N','',0,'?'),(_binary 'ô¥zZ»f\Å\Ì\èip^‰2×Ž','wp-includes/js/mediaelement/mediaelement.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘ð‹a\0’£Á\Z^2-!]',_binary ' ®+	M*a)N#kq\ÂDm]\Ê§{\åø=_b\ç?','',0,'?'),(_binary 'ô¦UÁ\Í\"dj\ã\Ú\â\r—','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/stories/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e\×h°öm“%i&zk',_binary '=g\Ý\êe‚i½¢6|Tl\î<¿±l\×\ê¾5Š\ÖWüûF','',0,'?'),(_binary 'ô¨+8š~9 nuƒk„\ä\Í','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/on.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rÁ\\YŽóe…\èú',_binary 'r¼;g«¹å½µ3þ0M\Äñ?MT$\Û6,\ß\è\ÙVñZ¬','',0,'?'),(_binary 'ô¨m¸\nþ#„X‚\nKj­*','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/computer.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VgV{t,ûV\0kýJ‹€',_binary 'šQ#<\"¨Ì²\ÖCqf_w¬\ì|\Ûf \ä™\Ô\Å=\ë˜Á','',0,'?'),(_binary 'ô©’Œ‚°yš2žþªhþ','wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks/WooCommercePayments.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'È¾+\Ëý{\Ë7Á\îªo.Lf',_binary 'f\"ýh™?z\ÔDl¢ýxw\":0\Ã	\í-ùJ™\rñ…žX','',0,'?'),(_binary 'ô­j\å8úœ\ÈÄ\Ã\Z¬±ó','wp-includes/js/wp-backbone.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯\×JŒ®T	»\âl\ÙQ\Ë\Â1',_binary '\nT•óx´öN‡@£¨s_¾“L`\ÍE*ødÀ€\íH”c?','',0,'?'),(_binary 'ô¯;u½©~^\î;Š\ï…','wp-content/plugins/woocommerce/assets/css/twenty-twenty-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±Âƒv,\n\âe,Ï–\Ï\Ê*<',_binary 'n¢X34E³ ^\Ùx‚`NGJ€@·™ual†¤B','',0,'?'),(_binary 'ô²‰$$\Å9C\â•Mª}O','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7´\ïù\å`¦e|5\Õ1ˆ\ä',_binary '\ÖÓƒ°µ\Z+oº\ÐØ¨`ó‹\ZNtý•¨\Ï\ën+D¦\Ô\ã','',0,'?'),(_binary 'ô\Ö1jªŠ‡£ˆ9U\â\Ç','wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-ru_RU.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p/(=c	\èÿ^\Î[u\ä}F',_binary 'øò\\1\æô×£ôv™¶rŠ»&½(:qa¨\Ö3#v\Ê\ÆJ\é','',0,'?'),(_binary 'ô×„\Új\Ù\Ö\rºÖš”…\Ë','wp-content/plugins/woocommerce-multilingual/inc/class-wcml-compatibility.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…\Ó\îZ”A±v”\Ä®ð<\í',_binary '…Q¾¤©Ž‹\à#Ú®\ÙU¿lg2K\íü¤\ßVj›2','',0,'?'),(_binary 'ô\á†tbm7—\'ƒùê¡¤öz','wp-content/plugins/woocommerce/includes/data-stores/class-wc-customer-download-data-store.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ì\â¼¿û·¬ñVSrµƒ®—',_binary '{@ƒdj‚\ÛmÂ¿o¼\ï+Œt<óò¯¦{\ÉH²0“H“','',0,'?'),(_binary 'ô\â†GY\Þ<x\í#XX: ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/featured-product.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯¹V%\Â\ãP&µ|°%“',_binary 'ƒ{yR\æ’n¼Œ±¢s º\â¿:6¨Ö½ó½ÿ^ù$¡¨','',0,'?'),(_binary 'ô\ãÙ®]W\ïG\å\Ðið§ø','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/toolset-core/icon-256x256.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'xc÷4Idš=§4$ý…R',_binary '†\Ú8\ë|µ\Æð·\Ä<Y¬>‘@”ô[ÿ´c²šzHV ²ˆ\Ý','',0,'?'),(_binary 'ô\ê•dl:bÀx©¥fùF','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '76\ëµ\'\r†Ÿ<#z=\Ò',_binary '‘S\Â~8\ÃÛ\ë\Ô\×qZ¶g•©\Ò\Ú#cÒŸ˜.:oy\É','',0,'?'),(_binary 'ôò©„­ðozUx€»?\Ù','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/class-shutdown-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Kwú9;\rR+\"…ûN§\ëó…',_binary 'y6™!‚[Ž1ûdQÝŽ,r:Ze\Þö)p¨Nó\È\Ø\Ä','',0,'?'),(_binary 'ôÿö\Ï\ß]¨R>\Üw.’EQ','wp-includes/sodium_compat/src/Core/Curve25519/README.md',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Y¢ªÏ›\ÑvjŸ\×\nÀ…\Ï',_binary '\ãS\Óx–^öV>m\Ð!-ªq\ì÷\ÌñD\ÙeV\Ñ\ß\Î\È\è','',0,'?'),(_binary 'õ(T/Iûƒˆ‹e\êvB','wp-includes/blocks/table/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬g>± ]\ÃM:h·ð\É0ÿ',_binary '¾·\Ã\ç\Ú0®6\ÞÿŒ;\ÊIþi¿©3` 6\Ò4µ=bƒ','',0,'?'),(_binary 'õ\àÑ„E˜÷a­Á­7','wp-content/plugins/woocommerce-multilingual/res/js/scripts.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿\ã\ÆOª¬€\ì\æòò\r\È\Þ\n÷',_binary 'ô,\É\ï„ð}Ý×ºžUe7¤rú\ßL\Ð<\Î\Ïö³A- :\ã}','',0,'?'),(_binary 'õ›,Ø¢í©—ƒ>r\å{','wp-content/plugins/woocommerce/legacy/css/_animation.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2!.P\É6\ßXk\Ó\ÙðIjR',_binary '’±Žk\ì\Ðútë“§G[›H¯U½\ãŠ\Ü\Z“K‰Ž\Ä.','',0,'?'),(_binary 'õ	€J¬2\nE\é.IŒ¶_','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/simple-buttons.svg',0,_binary '_\ïvµ\ì‰À«y‡Ÿ>\å',_binary '_\ïvµ\ì‰À«y‡Ÿ>\å',_binary '¢\î\Üj—D\09[©t#@Z[Õš¹§™œR×–GJ\"','',0,'?'),(_binary 'õ\áN\"\Ö\æ\Üd,\Öc0”|‰','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/TransformerInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž\ÏË \Ä%ºHov!½\ä®',_binary '¶³†J\Ä#µ<«¨¤N\ÏEmµœôú†Qö—V','',0,'?'),(_binary 'õö&\'“,´pÅ¿ˆ¹~\Ò','wp-content/themes/flatsome/inc/admin/customizer/img/cart-icon-outline-round.svg',0,_binary '*µ\Þ\Ç:h¶™xdf%\Í@',_binary '*µ\Þ\Ç:h¶™xdf%\Í@',_binary '\\Á\Þ•©´±\ÚQŠ™÷KüTˆÀÛ±\ÉÀ&*f±\Z\ë\íŒ\Î','',0,'?'),(_binary 'õ!¥Ö(yJo*\È\îJ\Ø','wp-content/plugins/wordfence/vendor/composer/autoload_static.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆB¹\\BH+—±\ß)	',_binary '‰ö84E¨3I6-¸–£‡9ü¼\ß!zŒÀGLº5','',0,'?'),(_binary 'õ\"Wq>gðB‹ùô‘\æ*','wp-content/plugins/woocommerce/assets/css/photoswipe/default-skin/default-skin.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ã÷™\Æ\ÞÉ¯L†\Þ\Í÷9$',_binary 'A_C {þ\Å.ö:h\Û«Q¶{Ž‚¾\Ã\ã¹\Ä2N˜\æ','',0,'?'),(_binary 'õ)—#jñdš§S¸¶\îeÊ‹','wp-includes/js/jquery/ui/effect-shake.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Kh\Ø\ï¥%V«€d|ú\Ì',_binary 'Á+vt(\Ñ>¨\ÌA›\ëš\Í¹IV¡q´M\É » Ÿ','',0,'?'),(_binary 'õ*÷1¶Gé«v\íLßŸnŒ','wp-includes/sodium_compat/src/Compat.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']²9â›U@8R/óº\Ò\á',_binary 'D=ˆÁ£&j\ÌNfžŽ\Î658\ìü€ß†¨±[Z0¶G','',0,'?'),(_binary 'õ-\"D\í\ÊÊ¹D²5a\Ð/','wp-includes/cron.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '®[\ï\ÝjE1\Âyv”­UýÆŠ',_binary ')\ÔK³\çQÓ…\Z\Ô@\ê\Ü\r\ÏT¥ºn\Â\"OZ\0þðùfh','',0,'?'),(_binary 'õ1LY\0\É\èue óõ/','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/elementor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\æ¦Q¿/z\'	°aAóºk&L',_binary '%-ò¦‰\çþ´õ7H¾ý\ÐD: \ßòA Æ‡‘v+tM$','',0,'?'),(_binary 'õA4eø\ê\Ç{¹^š†\ÒZ','wp-includes/js/wpdialog.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Æ·y\n	\î½ ep\ÜÔ©f',_binary '\Õ\Ã!/òŽAŸƒf\Ó0=“ˆG\Ó7Šh•/†uU\ï&gŒž','',0,'?'),(_binary 'õD\Õ\Æ\Ï\n\n|MÁKh\Ï-','wp-content/themes/flatsome/template-parts/portfolio/single-portfolio-sidebar-right.php',0,_binary '¼öˆ{[¤\Ðô’Gª [',_binary '¼öˆ{[¤\Ðô’Gª [',_binary ')v?\àþ\î÷ü»‘$ Mµ¨/J‹ýmQ\Èÿ	>\Ñ\Þ)	’C','',0,'?'),(_binary 'õF¤\ë\ZÁ“\ç®Cü\ì1®P','wp-content/plugins/wordfence/lib/wfDict.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y\ß Lü\ê\ïZ!bE±\Ôl\Ú',_binary 'óµ\Ê.{0Jeú\Â{\×5-\Æò\ì~[Tš$Äž','',0,'?'),(_binary 'õ[\Çf«\\\Ïƒ»X˜V(”','wp-content/plugins/woocommerce/src/Admin/API/NoteActions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½–)s%¬½„žœt³y ©ø',_binary '\ÝÀLä T\îC@…‹\â\n\ä8\Çv\\4Èª¯ù','',0,'?'),(_binary 'õ\\·\Ú\Î.ú}ø½u8ó§','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-block/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼ô£R\ß1Ü†\Ëú¼\æRšQ',_binary 'š§PÔ­¿)ºÀ-. 31>”\ÎX][Dþ`8[[¨”\Ôx“','',0,'?'),(_binary 'õq˜{Èƒ7cµµ•{Y','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'OEeôZ\ÃY‡ÀûE\Ìù&',_binary 'ö³\ÊWs\ê¾Gr(ÀQ9Aª_Â©>+„‡‚\Ã\Ç\'·¬','',0,'?'),(_binary 'õuôN\âƒ.A_\Ù_\Ï','wp-includes/js/media-editor.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“¨@4VaˆË£‚›ò\Åð†\á',_binary '¸›¬9™R—\Ö‡®\r‡ Æ²o[\ÇN†K–\ÏÅ¡*h‹\ï','',0,'?'),(_binary 'õ€({¶J¶jý\Ñ\è8•ù@T','wp-content/plugins/woocommerce/includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '|%C4*\ÆN“ø\0\ÝCu',_binary 'Ë§\r\Ü\â[2­\Ñ6\æž\Â\Ô\røýü\Ý;w\ÜÁ‚Þ¹\Êbª','',0,'?'),(_binary 'õ\éE~n+GMš6\n\ÖS 2','wp-content/plugins/products-compare-for-woocommerce/berocket/templates/premium.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#á†Œ\ß#¨\ìM¯',_binary '\á\Ý\0dnõ²[tfª\ßP·\á\\\×Á7ü)¥þ\"/– E','',0,'?'),(_binary 'õŒ\ê²\éY\Í\Û!šû\Ø\ÈW','wp-content/themes/flatsome/inc/admin/customizer/img/layout-right.svg',0,_binary '7\Ý\å?®Oñ€\æ\î<$4§\ï,',_binary '7\Ý\å?®Oñ€\æ\î<$4§\ï,',_binary 'U`\Î\ì>&	\î;(sa¨\\ðP¾±\Ï2\ãü+V5l˜ù`','',0,'?'),(_binary 'õ“»&›`\â—;ôi„','wp-content/plugins/wordfence/css/wf-global.1647958122.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€ADmqc\í\èv\Å˜d9',_binary '’(OÀ÷Ó›Ë€ÔŸMAW\ÖD\ã0Þ³Œ\\\å\Û5LG¹','',0,'?'),(_binary 'õ :µûHžA?|´','wp-content/plugins/nextend-facebook-connect/providers/vk/vk.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·=Ê¤\Â\nRutaòH”w',_binary '®\çOÕ™\ZH\â=ým5ªYô\ÓW™Ao*&(iky','',0,'?'),(_binary 'õ¥†\Â\Ø\Þ>+ÜžL[\îm','wp-includes/js/tinymce/skins/lightgray/img/anchor.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«\Óa5q€\ÜÈ‘_4ø@',_binary '(afo\Ñ\Òx\ÔD™paQ6\Ðmtk\é»,ù\ÈóV^','',0,'?'),(_binary 'õ¥\Ûý(\ë\Åø%ž#€9yn','wp-admin/css/forms.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¢Œ}P\Ýµ*Æ†UF',_binary '7,»\í\rGžš=Ïƒzb\æ)²ŸEo”ÐƒVHkd\ç','',0,'?'),(_binary 'õ¦o¼bBr\Ïj3#\r¼—','wp-content/plugins/wordfence/waf/pomo/entry.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';Â²iGQŒ’A\Ô\ê®w',_binary '79]“ù§#Œ/–\Ã÷rùbCte\\cõ’˜ßžƒP','',0,'?'),(_binary 'õ­nöÁJ\ÈÄœý@eQG','wp-content/themes/twentytwentytwo/templates/blank.html',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\ÇO³NÀK\è\Zg:Tó',_binary 'vx1Õ»¥}€\é0‹/w3¼\Þ\àc\Ç‘g\ë(p\Ý','',0,'?'),(_binary 'õ·D°µª6\íSÿ/\ÈcQ‚?','wp-includes/customize/class-wp-customize-background-position-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ì+	]\r-W\ÌùÒ½¡Àµ',_binary '2j´\ÙË¿üjB‰\Ø\\‘Cv‰¬ùq´\ï,\Ø\'\ÓÁ\ëF\ï','',0,'?'),(_binary 'õ\Â{Z\n\Ç0D\rO‹M*Ut\Ú','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/GeoIp2Exception.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±N	¸S\ÒX\Ù?z\Õ±\Ó',_binary '\å¿\à\æÔ¦\n\ÛÙ²LK\ç”Y¢•Š1\Ó%ùX7\Ù~\Ò*','',0,'?'),(_binary 'õ\Æö\ï¦,õ\É2w!)\Ø','wp-content/plugins/ti-woocommerce-wishlist/views/wizard/step-social.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B‰[\á!>ž6‰\Ãõ\Ö‹ª•',_binary '}\Ç?lH˜\á)¢—IU™2ù«oUXU6\Ø\íÁê¶·','',0,'?'),(_binary 'õÉ»\Ï?\êW†\Û\×	F\ÐG6','wp-content/plugins/woocommerce-multilingual/res/js/wcml-multi-currency.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·¼]:\í\ê\ãEf\Ò(I¾',_binary '„\Ô,g¤ýZõ­ÀrSj\Óœ—\É\ÒP\Í^4|j9\Ø}=','',0,'?'),(_binary 'õ\ÏB\Í\ÆK\'h§\Þ\nš4£','wp-content/themes/flatsome/inc/admin/customizer/img/portfolio-sidebar-right.svg',0,_binary 'b‡LO\äù¤\\Sº}úù',_binary 'b‡LO\äù¤\\Sº}úù',_binary 'ˆp\Âr„¦\×Ô°\ì\Çõ£\ï\í\É]\âYt_²\êcOñTuC','',0,'?'),(_binary 'õ\Ð\Ù|ò$!\å$\ÔþYO ƒ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/order-summary-fee-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\É39\Ê\îz®gaŒEº´x',_binary '6d‹#C@„\ÕAr3¾Êœ\í{<\È\â\'›‚„Ú°9qˆa','',0,'?'),(_binary 'õ\Ø\Ëswf\ã1‡\Ý\Ð;\\','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/payment-method-label/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÊÇ§\äß »’\Ö|§`\Ö',_binary '®Zö>ŽúDs?y»,\í0Äœu5s‰ûºW\Ë\'”3','',0,'?'),(_binary 'õ\Û|\Ëe¬\æ\å\ï4EŠ­	','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/image/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'RoFÖ¿’_r§ø8¯g¨ ',_binary '€>%\îPUxö\'½Ar’Ÿ\ì\æÅ‡EÖ¾kt}|\á(\É','',0,'?'),(_binary 'õ\â\à9\×|òt\Ý\é{IOðû','wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_DataController.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÜM‹4w?S%q2kW\îqP',_binary '«\ë•p[L£q{õYjª­t|¼½¸Šd=\Ët|\Ý\ì\Ûÿ','',0,'?'),(_binary 'õ\æ\Øõ£y ø\0º\"¬\îQ','wp-admin/user/menu.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ùz\ãV\Ò›¬¾‡¥‰¿ý\á',_binary '’\ïm˜\r\Ý)¿”h0\ÒE¹C§¤\ÃN¶`\ßD[	$3','',0,'?'),(_binary 'õ\ê1õ¢Oð‘&\n&ý\Ê','wp-content/themes/flatsome/inc/extensions/flatsome-shortcode-insert/shortcode_insert.js',0,_binary ';\ÙÈ¸¡‘L\×YÂ¯M	¨',_binary ';\ÙÈ¸¡‘L\×YÂ¯M	¨',_binary 'ñ\Ñ@14À.D\í(G¸9²V©\ÝB\í\ÕO«whYÙ®£¹³','',0,'?'),(_binary 'õ\ïW—Ž\ê(>\æg™5H(','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MiaoxingInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ó*HœRA\Ñ&š’h?Àž',_binary 'w\é\n\á@´u€H~sTW†™…=\ëIw@”PnÖ·º','',0,'?'),(_binary 'õô–Ì¥¥9y^a›Ô¨\Û\\','wp-content/themes/flatsome/inc/builder/shortcodes/templates/button.html',0,_binary '\Ô\ç\ØN\ç\ßV]\Ë\Ò\nÈš:!',_binary '\Ô\ç\ØN\ç\ßV]\Ë\Ò\nÈš:!',_binary '[\Ó±¹	0]xs®RGY¯\Ñ.Ø¶©\ÞÎ¢eüù\ë°\Ò','',0,'?'),(_binary 'öTñ¥\ã-\"}¬úy¤\Õ@','wp-content/plugins/woocommerce/src/Admin/Composer/Package.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Õ5J\ÚVnµj°£WNF',_binary 'jÿbs±ñchõ:¿Í´oóeòp\Âk Bñ„»','',0,'?'),(_binary 'ö\Ä!\'@¸÷¶\ËÔ¹¬¨ÿ','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Exception/ExceptionInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>ƒÎ”\é\ÓO¨S\È®V‚1§',_binary '\é¹\å3,<º\ê°$¿º¹,\'\ìœ\Þ*VsA§Œ§k{„','',0,'?'),(_binary 'ö€~¡‘\ä\â»\âr„C›ž','wp-admin/link-parse-opml.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤¯¥¡xaÛ”2\Ì\ÓF',_binary '\É÷%¥vP|X†\Ó:\ïx¯>ò]|Ÿ\Ãy|”’:\Èø\æó','',0,'?'),(_binary 'ö\\,&†Ÿ»\ë¿\â÷†!ð','wp-content/plugins/woocommerce-multilingual/locale/woocommerce-multilingual-nl_NL.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±ûµJ\á5\Úa&¯\'\î ',_binary 'of	¯[\âM\\°\ÇœTe$^Z\ím\Æe°—ª”\æ«&','',0,'?'),(_binary 'öj\Ø\æ²Z·;\nlÐ“¼','wp-includes/random_compat/random.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ5&}k\Ò\ë\é!6»$“',_binary 'X8°P©ö\Ô_9õþ®kQ\Åa[\è\ç-mS\'<‘@\Ì!V:','',0,'?'),(_binary 'ö/´H”ÇŒ†\Èiñ[\Úv[','wp-content/themes/twentytwentytwo/inc/patterns/footer-title-tagline-social.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ë\æ²4Yµë¤•… 1ô\È3',_binary 'ôLˆô—øÎ‡ÿ®Nd³g\Ïg\ÉQxô¹> ’pB†Äº','',0,'?'),(_binary 'ö2\ípqÛ1ô„\ÅÁñ…÷F','wp-content/plugins/woocommerce/src/Internal/DependencyManagement/ServiceProviders/DownloadPermissionsAdjusterServiceProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£\ÂÕ‘–\ÊÏ¬^g–\ç|',_binary '‘3e\Ü\ÃBÜ½ö\Ï\nŒR\áU+\Û>¿\ìFÄ¯}Hc\Ö','',0,'?'),(_binary 'ö2úh<\â˜i\ÏIš‚\n\Év','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zones-controller-base.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'qÖ¼\Äyl•\ày&/\Ù',_binary '|§}W\È\â‰Àf8/ü¢·¶v”L§Ô£T˜ª›\'\Í\åC','',0,'?'),(_binary 'ö:Ó±`Jœýi¦L„¤ñ','wp-content/plugins/contact-form-7/includes/integration.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V)2|j*9\Ó\á\Ñ¨«lñ',_binary 'Óµ1J†Ý¦òô*EªJC7-\Í\ÅD«\ÊOŒ H\æ¦÷\î','',0,'?'),(_binary 'öC{Œ\åk\Ø\Ù\Ëf\Èø_¾','wp-content/plugins/wordfence/js/admin.liveTraffic.1647958122.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ú—U–_|ò$>²¶’7',_binary 'wRŽu\åsXqñ€\ìs\Úa–OFvQ—y\ä‹Å#\Å\Í\Ü','',0,'?'),(_binary 'öCüþ/–S2€€¨ó®¶','wp-content/plugins/woocommerce-multilingual/classes/Rest/Wrapper/Reports/ProductsSales.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŽHFM\í\rô\Z×¥y÷’»',_binary 'ñ¯LVÁFSþ\Õ#\ê\Î\ÛeŽ¡QFi<s?\n¹abJ','',0,'?'),(_binary 'öI\×gQø¢Ú¤\'\Ì,\í\Ï0\é','wp-content/plugins/woocommerce/vendor/maxmind-db/reader/ext/php_maxminddb.h',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ü3\nnX\ë\Ù\áEºÆ±.J',_binary '}-lõ/žÌ›œ\Ü\Û\Ý97[G6\ÚV\ÈYx\'\Âš\Ú\é\Ã','',0,'?'),(_binary 'öKF\nOòiñ},\íö‘w\Ç','wp-includes/random_compat/byte_safe_strings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ä[BÒ£\ÈJ\ÚÔˆ\Â;',_binary ']²Q\ì€Ë„=PÝµu\ÐQ\ìÁ{>Ï‘¸ó','',0,'?'),(_binary 'öV9´\ÔK±\á\ÄgoX±¹7\Ó','wp-admin/images/align-left-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i…8±O¹ƒš\ì\Ð^—\Æc',_binary '$kb¶>¶\à\Î\Íñk&ž:	Ú‚a¬7¹¶Zcdm‚´%','',0,'?'),(_binary 'öVl\Ú-Œžk™b\Í\ãT','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Utils/BlocksWpQuery.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Îr¡/bª:ó\Í\å± \ì\Þ\Ç\Ì',_binary '\Æq\ê\Õ_d\ÆùxJMq\ë\Ìù-[¸Z¤`Ì¸Œ(Æ‡û','',0,'?'),(_binary 'öW#:\æ\áV¸ó¦šü^H3X','wp-includes/blocks/nextpage/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7\á`¨\ZJ˜…õ­£\ç$¯',_binary 'Oð\Êõ1ÇŠ8ø\î›\ä#°ÀûCð\\({xSzW\'L\Þ','',0,'?'),(_binary 'öZÿ*2s\Ã¥~@PŸ:t*','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/proceed-to-checkout-block/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>Š”|^q¼\ÖZAB¨\Ê',_binary 'Ç z<üv6D>Úµä²•L[µ´c•Á.ß€$','',0,'?'),(_binary 'ö^ž>/¯ã±ŽJjB\ï\ì','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-help.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^’!\å2RJ¾\ê¡ûXŸŒ',_binary '\ÓD\ç]û±4ªw85\Îó\Æ\Ðo(¹Xf\Äc\äÝ¥—„KR','',0,'?'),(_binary 'öc\\¥I\Î\Ñ\Î]\îzglt','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/section.svg',0,_binary '-¸1\'…¶j\Ò_\á.û\ï',_binary '-¸1\'…¶j\Ò_\á.û\ï',_binary 'c\r\ÏðƒÙ¥<kf³«ö;N´‡P1~4­\Â\nk','',0,'?'),(_binary 'öj4P\âø¥›Q\ê\ÒúDR*','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'L‘øò©Q\09§mšM˜',_binary '|3¥\Ù,ÿUx›ö®`ió\Ë@?\åf.@F/xŠ}h#…','',0,'?'),(_binary 'öq@ZGl¼úß¡qHv','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/Installer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o	`r6ú¿\\ÿ[‹5}',_binary '_?ižm27ƒjjf\ïÐ»Ay³giŽA!Ó“d\0.€-‡','',0,'?'),(_binary 'özÀ+]þ€T\\-«\îo\Ê','wp-content/plugins/woocommerce/vendor/composer/ClassLoader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€\ã{¶0\Å\Ä,ûQ6nÀœ',_binary '\í` ‰\Õ\ê\è\çs›N\áü.\Î-Ú‰ó¼GDTú‹¶¸-\nt\Ô','',0,'?'),(_binary 'öœ·dq-R¯\ëlzƒ{\á','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/with-product-variations.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'YŸ]¢Í)\'Z	”¹)`',_binary '•dJ\ègùi(ºú>¼÷óC¤0™#]&)¨MZÜ¨¨÷','',0,'?'),(_binary 'öŸTr\ê\å«~˜<q\ãõ ‹\Õ','wp-content/themes/flatsome/single-featured_item.php',0,_binary 'VõŽ\Î¸³•²ZU3Ÿz',_binary 'VõŽ\Î¸³•²ZU3Ÿz',_binary '…\é,“VŸ\Ìñº\á2²(\ÈvgK–®PQ‚2ðöû\ÒQ4','',0,'?'),(_binary 'ö¨£’\ÂþH©S!;ø ó–','wp-admin/js/user-profile.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9¡\â“\í9z¦\è\î´<aü',_binary 'M„©,F“>óV\Þ6¯ß¹\Ý5\Ãâ£“;²´l!˜\ÍY','',0,'?'),(_binary 'ö­hlË®MÁ{\áY¥ú','wp-content/plugins/woocommerce-multilingual/templates/currency-switchers/legacy-dropdown/config.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µZ=oa…Ó\É`¢\Ù\ß0y',_binary '\Î\ë“g¿¿-jm\Þ\Ã\0C\Ð`üô¬úÖ‘¼;u\å\ÜÕ»v','',0,'?'),(_binary 'ö¯œ²\â\Îmb=73C”\Ø','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-data-currencies-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ç5%\è\Ç\á\Ð\Õ\åŸjT8',_binary 'cð2\Ý+û`€$\ÞG\åG™ºL\ï>\É\æ„\Ã:2d','',0,'?'),(_binary 'ö·¸\ZYv™\æ`\ZjqW<','wp-content/plugins/woocommerce-multilingual/classes/Reports/Hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¾“ ¨\ßò\Ñ{$	€†\ë\ÍN:',_binary 'Ä£;ƒHšWs¾Ã¦)\î\Í	YK\0¥’E pnWbk','',0,'?'),(_binary 'ö¾F5iŒ\ã=\Âs:ýýS\ï','wp-content/plugins/woocommerce-multilingual/res/js/bacs-accounts-currencies.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ñ¥™[+\í\rA\ZF‚}\î',_binary 'W×…¾\çô\å\"ž¨¾i\ZVQR³¬\é\Øð—¥\á\Çð\Ó*\Þ','',0,'?'),(_binary 'öÃ³K\Ã8û-:52\ÞJ','wp-content/plugins/ti-woocommerce-wishlist/assets/img/color_icon@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-ZV¸¸!\ä\Þi›Y	‚óe#',_binary '³F)Tls\Ó\Å\ÝS„\Ô\ì@Gf\ìÖ¼¨\ç_þûð\ß:[Po','',0,'?'),(_binary 'ö\Ä_÷dM\ç\×Ý‡ˆ\ßn','wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/razorpay.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ!\ÌW’i\Ö\ïa\Èb^µšL¸',_binary '³ús<¿„«\ÓÛ—Š»õ½“‚ªÅ³‡$ûZtN•\0¤','',0,'?'),(_binary 'ö\È@\æ}Ÿ~¥4G‘v<‚m','wp-includes/sodium_compat/src/Core32/X25519.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\é¥bñf>Ž•\ë½=™²·',_binary '¬¾“šßº\×`\Ï\'¸‹ƒç›±“\ÍÐ–x#i§\Ô\Å#ª','',0,'?'),(_binary 'ö\Ê\í†+¢š\Çq\ÉpW£\Ã','wp-includes/update.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '9’u6\ÊÌ´vZ£‰µg\í',_binary 'h\îúe\ì\Ç\áS!B7]ðI<c‡r	x\Í\í£Sv*þ','',0,'?'),(_binary 'öË¡\ÝM\ä\ÑE\Â>l&‹','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-pointers.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':Q\Ð\0\ß\ÑWž”{S+«š~À',_binary 'Nž6b¯»\Ã8W\ß%u˜\"\ÕÙ“sM\î•‰i\ìXŒn','',0,'?'),(_binary 'ö\ÍýŸo~. F¡>¶!ßµ','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-top-rated-products.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡	sBœ_\ã\å7Q:‰\Ø\Ú',_binary 'âŠš¸\Z¼c\ç\Ð\ÊôIG8¦QJñ\ë\rÞ°F\Ð:Q„0€ø','',0,'?'),(_binary 'öÒ–}hÒ‹\Éa°¢(´ˆ…','wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart-variation.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤š`\àop_i2y˜Sq\Ú ',_binary 'h\æƒAÖò\ÖfþvP(—\'DŽs…/N¢h±\Ð :›','',0,'?'),(_binary 'ö\Ó\ã­`\×&X<\ÄaQŸVh\\','wp-admin/user/profile.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ÿ¶x8 \Ì!¨µƒx–S\×j',_binary '\ì\ÉJ€\í\Åf–v^÷D\ÓwôÛ¦\n\Æ\ÆsðBu¦/¥žŒL','',0,'?'),(_binary 'ö\Ùt¼\Ùß‚›Zv¤¹8¹h','wp-content/themes/flatsome/inc/admin/options/pages/meta/meta_box_framework.php',0,_binary 'pÕ­…s8x˜h\ZÿÀ9',_binary 'pÕ­…s8x˜h\ZÿÀ9',_binary '\Ã-…{¼#É\ì)m1\Ïg\Ìý\ÚV¼ž´£ŸF5þ\"\'h\r','',0,'?'),(_binary 'ö\çyY)h¯•N¿úÃ\Ó','wp-includes/js/dist/customize-widgets.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '.‚.\ÔNø\Æ^\îGG\ÔA',_binary 'šž-³+·_*£…„!\å¤\ÍML_,[š¾>€H\ä¦Š','',0,'?'),(_binary 'ö\ëu\æ“-JŒ\È&ñ8K\î','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-product.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '˜eùu%\")ý\ÐyÎ‘²\r',_binary '\çacôÁª\ë¦ót=E\ê‡¡nùƒœ™8•±ú','',0,'?'),(_binary 'öó ]Xô¿j¾J\Ú|\\\ß\Äl','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ö¤Ù¢júú@±›\nN­',_binary 'p\Év¶\Ð$ŽLòÎ‹­\Þ,*\æðÊ¸/\à\ã;øR\ÎË¥','',0,'?'),(_binary 'öý\åÀPq-³tó¹@l\Ê','wp-includes/images/wlw/wp-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1	ŽÊš‰7w3K™*',_binary '5 ·¡}\ìx(\Ú\Ór\Ü:a,zmKƒH1|/\ã†\Ñ+ò©ñ','',0,'?'),(_binary '÷‡Â‹t¿QRôÿ\Þ\Ñ\Î','wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/archery.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S˜\Í$¤b¥|wk§%“',_binary '	752›\å\Ü6~:S¦S±\é\r\ég–!\âTjû^·lž','',0,'?'),(_binary '÷\ÞhJ±h\ÕŒz\Þ…','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/add-to-cart-form/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'cˆ\èB¶XõT[\ØhG}²',_binary '\ÙúÐ§\ÈwŸ~pþ¹•ñ¹˜<z¶)ÁB%‚þ‘¯õR\ß?\"','',0,'?'),(_binary '÷…J¹¸Àt¶–\Ìg\0','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-payment-method-paypal.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A&}·ù\ã¹Ñ¦<©\Åy\Í',_binary 'ßŒI…=\ÈX.\É\Z@3 —f\Ç\Ûa^¸\Ùr¨®I\Óù\æš','',0,'?'),(_binary '÷\r\ÖV\ïô2P\ï¦ý-+x@\Ô','wp-content/themes/twentynineteen/template-parts/header/site-branding.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$\â}V”y\Ûn\ÓY”¿Š“',_binary '}žDûuØº²™i‚ºI|\çÿ{ÿ&™»Þ‰¢ûgö\Â0\Å\ã\È','',0,'?'),(_binary '÷¶gxƒA‰È¢}¡g¢','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XChaCha20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™\é½]áŠ®\é\Â\ìÈ£&',_binary '‘™K”ò#ò@JU°}F—„ŽÁÁ,üþ\å![','',0,'?'),(_binary '÷ @\ï;€ú*\ÏÁ|¨°','wp-includes/Text/Diff/Engine/string.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ':±“=üM©\Ã\0¬\ïi)',_binary 'Á¤\á\Æd™¾[«%\ê‡nZR¹\×`ó”²…\é\Ð','',0,'?'),(_binary '÷!\ïx‘f²aú3°½™\Ü','wp-content/plugins/nextend-facebook-connect/providers/github/github.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œk†£²\ã¼#q¬<\èY<',_binary '£\æ\Îwûñù¬©Asˆ§ˆ\Ê*¹>e\'sVÀ—÷{xñÔŸ8','',0,'?'),(_binary '÷8L­rIq\ØUò³®`','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-enhanced-select.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<*FŽ)ˆ\Ù\ÏÙ—\n+	ª',_binary 'ö´‹dS’®WYF¦,i¶_€\'Á¦\Í\Ñ\é1\é	µÀ','',0,'?'),(_binary '÷@[	Mac\Ó\Ô(\äQ%|','wp-content/plugins/woocommerce-multilingual/res/js/bacs-accounts-currencies.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Š3Mt$\Ëñ‚‰U\Â\ÜF',_binary '\äÚªµ%‚1h\Ïv“»#ý[Gø•1¯ÿ]\ÉGLkQñ^','',0,'?'),(_binary '÷Ppñ®Ew0>¯	˜^\Ô','wp-content/plugins/woocommerce/assets/css/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…&•\íVc”jö–ôª2CD',_binary 'X/LÊ¹jYŸEB“xtºd³¶\Î3÷\íß¶b½·­Tj³','',0,'?'),(_binary '÷V£\â$ò\ì\n„\Íñ`\Å\é9)','wp-content/plugins/woocommerce/client/admin/config/development.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!Çª;GZ†5a`4\ç\Å@',_binary '‰l¹8ú£Ð€t\ìB\Ìj78\ËY2yÑ–þ=›\ì\Ì','',0,'?'),(_binary '÷VÀU‹¥„\Ö\Ì1F','wp-content/plugins/woocommerce/packages/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z¿hÒ•\ÑV( ”m4„{',_binary 'ØŽt]C»\à^6\Ð@—$)§\âO¸H\ã‰:¦\æJ\Ùœ','',0,'?'),(_binary '÷`\Ò\ÆÄ­f¨†ªB±','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-wp-components-storage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+¬‡›û«U.–{\Ç\ÒqT',_binary '»&D‹\áº&s\ì/úbnwÿ¤g£\Ü(÷‰pag&•6','',0,'?'),(_binary '÷g\Õ^2ñÿ¡\ÅÄŽ\ãJ','wp-content/plugins/woocommerce/legacy/css/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…&•\íVc”jö–ôª2CD',_binary 'X/LÊ¹jYŸEB“xtºd³¶\Î3÷\íß¶b½·­Tj³','',0,'?'),(_binary '÷iñŸ‹þ‘/m\é\å—','wp-content/plugins/woocommerce-currency-switcher/classes/compatibility/compatibility.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Zq@È¡oõ÷}\ëÐ§PŸ',_binary '>ü\ÛRüR&ö®÷rB`\Ãù\"YHt½ðl\Çh;\Ý)\ä\àf','',0,'?'),(_binary '÷j\\¼¬£N\Z›\Ù\'3\Úÿ','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/box-left.svg',0,_binary '}\Ðnhd\ê|¢nŠFÍ¼´¶',_binary '}\Ðnhd\ê|¢nŠFÍ¼´¶',_binary '#n\Úù[•{0œ\ZE\ì3*HgxŠÿ\Û[Á½\å€','',0,'?'),(_binary '÷mr8òª3‹®3}ò‚W','wp-content/plugins/woocommerce/assets/images/placeholder-attachment.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆ…Ÿ%d‹±©³\î9^m\Þd',_binary '\Ò\çEv\ïp¾‡««(\ìƒbŒÖŒ\\/O¾\r\ÂEr0ÿ&','',0,'?'),(_binary '÷pƒ€T‡|ULè“›¤ü¦','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hooks/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\îi\ç]ã†¨³Wñc¡\Ô=\å',_binary '&uXÆ¦\îYg}\á§p­l’\ç°\é*™c=Šs‡:ñT\\','',0,'?'),(_binary '÷(&*wuBZÀNG,—8i','wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/TaskListSection.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¸boT\ï]J–Pß£zð®',_binary '5®kOQ;›ñ]\Å\É_¡Roú=„ÀOCo\Ù/’\Ô\ê','',0,'?'),(_binary '÷]p\ÝRŸ/$¸1ö','wp-content/plugins/wordfence/views/common/page-fixed-tabbar.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Á+„$B`w\äÆ•´‘\á',_binary 'ÿaº\Ä\Ý\â6\ã\ì\ÍÎŸª\Ë\îv]z5Œ’\ÚÁ”¾\rpñc ','',0,'?'),(_binary '÷•\Â\äôJ÷\ÚAji\é!™‹','wp-content/plugins/ti-woocommerce-wishlist/assets/img/logo_heart@2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”\Ï_R\Ã1\Ëòø[H#™',_binary '>>5·,¶ö‰\çf/\Â{ð\"±‡•]\Êcÿ6\"¯\Ë?\Z','',0,'?'),(_binary '÷›)Å¢|‰\Ä=\í\ç\åbX¯¦','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/php/support/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤x%vð\Ö\ÍiŽ\ÑX$,',_binary 'e\ïIT„Pƒ\Ï3J¼\î\èyñÞ¿†Pr:m‡','',0,'?'),(_binary '÷ªh	Qn90kø@2bv’T','wp-content/plugins/yith-woocommerce-compare/assets/images/08-bg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÎT1w\Õ Lta¬;y&`',_binary 'Íª\Å\Ã,\Ã›\Ã1	ŒÄµ$Ã›\0a&oI_¿Lz*\Îò±','',0,'?'),(_binary '÷²n\"tCg\Ìkÿ®Œœ»x*','wp-content/themes/flatsome/inc/admin/options/header/options-header-wishlist.php',0,_binary '\\%÷ÿˆ\åÙ·»Crÿý ',_binary '\\%÷ÿˆ\åÙ·»Crÿý ',_binary '-´.Œ¯f\ìÆ•[û\Í9L¢=5.\åT¿—\Ök;i~»','',0,'?'),(_binary '÷¶¥7,d<“–»&g©õ','wp-content/plugins/woocommerce/vendor/composer/autoload_namespaces.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'MÎ–Aöw8\Ë_¡\Üj\ä',_binary 'cg™\ÞBsu\ß\Â5\Ö\n™éŒŽ…\ÈAE+#\'=ú:iÿŒ','',0,'?'),(_binary '÷Á\Î\æßÛ”\å$','wp-content/plugins/woocommerce/assets/js/accounting/accounting.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>~ò‡z»)\Ôÿ\Ë\ÑB7ú',_binary 'Š®9QJò;„vñ¬gˆ1i\èEý·\È\0@\ÜK\ÎO','',0,'?'),(_binary '÷\Æ_w\ïÆŒ\è›\ßž\Ð','wp-includes/widgets/class-wp-widget-media-video.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '}â—·>yò‹O\ËG›',_binary '10*\çu­°ŠÛ¤¦ùy[\\,\áý÷/ §7õ¸6¨\r','',0,'?'),(_binary '÷ÆºO{\ê5¨\î\Ç7\Ã\'w\×','wp-content/themes/flatsome/woocommerce/myaccount/form-login-lightbox-left-panel.php',0,_binary '\äQTŽ{–\Û\Ý*Ÿ¾•¥',_binary '\äQTŽ{–\Û\Ý*Ÿ¾•¥',_binary 'bp<ø±µÞ—$‘³š¼7ÿ\Ý.H¬\ZU\ä¼\ØmT\Ýö','',0,'?'),(_binary '÷Ô±\ì:\'\'V\rb\ä2’ñM','wp-content/plugins/woocommerce/lib/packages/League/Container/Argument/ClassNameInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '2\"\äri!;•\"±™\æI[;',_binary '\àIM\âýP\çöªœ?j†\ç>\Î\àr–Z\Û\Z9çž\ÔËª','',0,'?'),(_binary '÷Ú™XoÊ¼Wceÿ–\í6','wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/abstracts/normalize.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ü„/#\Ã\éh\ÐJR+™ƒft',_binary '¢mÿ\âÏ©B\\\Ó2	\Ú\á«Á_\à™*\Õ\â\Þ69½CTl\Æ','',0,'?'),(_binary '÷\Ý\ïÐ³\Ù\Þú¹Ð’yw','wp-content/themes/twentytwentytwo/inc/patterns/footer-logo.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0b›‰Ë£g‹\ÒdC\Ó',_binary '%>\ÃN¥¾‘mCùÁsP\ÂC|\ç\Â`	Ó¹L\ZŸ\Ï','',0,'?'),(_binary '÷ÝŽœi~\éª\ÐÄ§ŒB€8•','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 't—&\ïr@;…\ì\æf\à€',_binary 'Ÿiifz÷Î°P\\ŸB<WÙ´p‡\Ì2£®,ªT\ï\Ã\Ð','',0,'?'),(_binary '÷\è%.7;$\ä¥\Þ\ÂI¼','wp-content/plugins/woocommerce/templates/emails/email-footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ºƒ\Å\Øw×œÏ©œ\Ï\íZn',_binary 'N.\Z$\Êô¾È‚[ZŠ²\ÈÖ²d´®D€)\ÂZ%4“6','',0,'?'),(_binary '÷ó§\åð;½@š\Þ)ñ\Æþ','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/upgrade/error.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¨œ]/¹óuõi€‚[Ek',_binary '´1põœ3ˆ¶Ò®w¢û¤w¡YúÒŒ€±Ž´PQô\Ò','',0,'?'),(_binary '÷ö‹À°”°ß’\êú}@=','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/shipping-rates-control/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ó?EK40Dt8*\Ý-áµ¦',_binary '\åH\Ëý\nJg\ÄpzÑ™\ç\ÉÛ—\rjÒŠÖ†Û–KpP\Ï','',0,'?'),(_binary 'ø©A-\ëŸzNù\ì’…','wp-content/themes/twentynineteen/inc/helper-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‡³–ñ\æ`Ož\ÈW:%',_binary 'øÖ„\Ý\Û8¶J\Ðˆj\è\ç¿\n­€ ‹î¯¯Ÿg“^\'Á','',0,'?'),(_binary 'ø\íñuÜ¬VP¤^P_ý\Þ','wp-content/plugins/woocommerce/includes/interfaces/class-wc-product-variable-data-store-interface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Â2Ž#ø¤®Tq<Y“',_binary '\È\å%#¹“­fEv,l\\Cv\0‘³¦$l:\"Yø$\ãj','',0,'?'),(_binary 'ø-|Vñûû™\ÄH\Û%„ª','wp-admin/site-health.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\á&T7—…¡ ?Ó¢¹',_binary '#Vú\Ü\Ù\Ó(\ïÁ¸ƒ;„\Õ \Ïbfš‘f\æò@\Ó¢\ã±','',0,'?'),(_binary 'øPÃXÒ \èBw\ç\ê','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[—}û\Ó_ðÛ•µ¤XŒ',_binary ';¨\äúÜ¶Úi¬–Kxå¥½[\ì\0¯Ü¥\Øü}*3 ','',0,'?'),(_binary 'ø\èÇ¢½BÕ´(\Ö\\½0J','wp-includes/class-wp-text-diff-renderer-inline.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\è8³l´²_\r\î²uÿŒ©',_binary '¶ò×¤meôý,–\ÍV„„\ë\Î9ó˜}ƒ\Ñ\æó	y”»\ív—','',0,'?'),(_binary 'ø!»­š1\0v<&nwß³','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-express-payment-block/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ëg~°z\èW?þÈz4a',_binary 'G¢©\0\\\nˆIf\'€nüÛ§\Â\n’¾v‹ˆB”•¬','',0,'?'),(_binary 'ø\'œ¨ÿs\á«\Âtž\Ñru','wp-content/plugins/yith-woocommerce-compare/plugin-fw/languages/yith-plugin-fw-it_IT.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ä&GN%\ÞÕ‹½c\áÍ­&',_binary '÷N¿\è\ïÁoÒ„JU²H »\Än\Îq‰\àIJ\'¡','',0,'?'),(_binary 'ø,²Iªž3)“’„¥|','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/woo_title.svg',0,_binary '©J\Ç=”–C\ÜÐ–\ÈÈ†¥',_binary '©J\Ç=”–C\ÜÐ–\ÈÈ†¥',_binary '#]?\ï(\Æ\Ä\Ú<A‡9`A\î¶4i°Rlõp‘o‡Q','',0,'?'),(_binary 'ø03\r›pð\Ô:ð¸\åŠE½','wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yith-debug.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'e§E«‚}q\áRòy ¤t\è',_binary '÷U^±@\"T:s\çÿý^\r5GÁ>c¢J·`±\Þ\Þ$G','',0,'?'),(_binary 'ø6N]bN«\íRø‰„“ƒÀ','wp-content/plugins/wordfence/vendor/geoip2/geoip2/.gitmodules',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡Ú„ \âqö?s1šµ\Ô\åU',_binary '\çREkks&]!iª_‹¤š‰\"ü\Éþ\êy~œøÁùKa‡','',0,'?'),(_binary 'ø;	\ÚDŒ\æEŽ\à^c›','wp-content/plugins/woocommerce/src/Internal/ProductAttributesLookup/DataRegenerator.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œ‹\àø\âQ6#¬4¢\Ô\Ë}',_binary '\à™‚õú@2M!²…`9S¦\ËÄ—a\ß\Þ\ÐZ]¸\ìŸÈˆ','',0,'?'),(_binary 'ø;\Ç%N!9\nL&N„\Þ\çž','wp-content/plugins/wordfence/views/onboarding/modal-final-attempt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C\Ð\Çó¸„Î²¨\Ó§À´­J',_binary '\Û!\Äfc,BžR\"9,\ÊûV<š\â™	F#¨ì ˆK','',0,'?'),(_binary 'ø>\ÏóI7mª›ñ>–ê£','wp-includes/blocks/embed/editor-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'm,Ÿñ¿-u\ÔmõüÔª',_binary 'H±\ÎfUgqP›\É\Æý— ar2üä¥¬{~„±–?ó','',0,'?'),(_binary 'ø@¨\Ò\êsB0<€{l¶3Ÿ\Ñ','wp-includes/wlwmanifest.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ßÔ¶óƒ\ê¢ið^ˆ–',_binary '\ÕÆ¤JÄ¾**X|i» \Ïcy-‡u6p\èÀC-\æ$*\n¼','',0,'?'),(_binary 'øD=Ÿ\Ë÷‡Š\è\ÖSº\ÛC','wp-includes/sodium_compat/src/Core/Curve25519/Ge/Cached.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ù%ôX¤ö°•\Ð`Ð¹KZ',_binary 'SµW ð,ª\è´f¤\Ã\×K{®ÿ\\™\Ðþ\Õ\Ø\àŽò\×^Y/¨','',0,'?'),(_binary 'øXBõœ”1MW\Õw+','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@y¦[c)$fq<f[Ùˆ',_binary '\ê °Èˆ!j¡3¶\0»Ä·\É1\ÂU\Å*\ß','',0,'?'),(_binary 'øk\æ\Þº”e<F\ê\Ú4','wp-admin/js/revisions.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆvV\É:øÏ¹Q²œDÁ',_binary '\\›v  \Æ0¶‘ýÿ”°R\ë’TCsFû\ÛDGL(\Â\ÕW!','',0,'?'),(_binary 'øo*(\ËB\ÍuLdÁ\ä\Ù\ZZ†','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/AglInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\í\àCcŒ=W*\Îò±‹Dg',_binary '3\Ó(üW¶«\ê~;M\Ñ<\Ìd\Ë\Ñƒz4£\Ó„\Þó\Ë\Ã\Íþ','',0,'?'),(_binary 'øpÀ\è\ã\ã>­\Ò\ÌC\\=º\0','wp-content/plugins/woocommerce-currency-switcher/img/woobe_banner.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…±O‘žhS³jˆ)ÿ!x',_binary 'P~KýÓ¡]Ttk‚\ÍÿKKŽþYTˆz…\Ó`Á\ã1ôL','',0,'?'),(_binary 'øv¨›F9¨\Ð\ÌT¼<bi','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•<T‚•ñŒW<l0Óµ',_binary 'Û¡¦-öON~*úþ_\å£³Ž>´\îg\Þ<¡†\Óð¾','',0,'?'),(_binary 'øzO¶¨w\Þ\Ñs!K–\Ü','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/woo_add_to_cart.svg',0,_binary '¬†ØµÓ‹‰›eÁª\çðP\Ö',_binary '¬†ØµÓ‹‰›eÁª\çðP\Ö',_binary 'N®)ª€3)‚j¿¸7´Mÿ6¬ qJð½J0ÿL','',0,'?'),(_binary 'ø~,eu¨­yFœM\á\è','wp-content/plugins/woocommerce/includes/class-wc-autoloader.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Äddª\ê–\í\îsd5K<',_binary '²kú®¯/ø•-|—‹/²¾•\Ãa³¨ñ²\Â\ï>','',0,'?'),(_binary 'øƒ{füµµt°U÷V¼G\æ\0','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/text-input/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'i±j\nrx|®8§\ä‰',_binary '\ÐTò\î\ç¡\0Ÿ˜F‹ZÃ”Šh\èU&\ØƒüIû\Ì','',0,'?'),(_binary 'ø‹¢D\Ú\Í=Kô49œ’\Ð','wp-includes/js/codemirror/codemirror.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦23j·\í1À(D\Äúóµ',_binary '\á¹ÎŒ\á,a\ÂÀu\ä\íÀ@ºsñY%Ký–\Ë-o¼\Çn\r¦','',0,'?'),(_binary 'ø’÷\Þ\âg:H\éu>”Dº','wp-content/plugins/woocommerce/templates/single-product/stock.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³9\ÔÀaØ‚¢\â)U.uf',_binary '\Çz¬Æ·œ<õô>¢fu„\Ìm\å>\àúO\ÍN¢y','',0,'?'),(_binary 'ø™E”ƒª;9Ùƒ\Üô\âb†','wp-content/plugins/woocommerce/assets/js/admin/system-status.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡ \é§Y³„‚Va¢¬\0\Ü',_binary '¾p\rÙ…\Èi8ñ\Ñi\èv$*ð^\Z#\n~\'°­ll\É\ä®','',0,'?'),(_binary 'ø›*©{pz$ªô\Èqu\\>s','wp-content/plugins/yith-woocommerce-wishlist/includes/legacy/functions-yith-wcwl-legacy.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÊV^\á#E—¡bF\Ê\0}02K',_binary '-s\ÙQ8ó+žw\\»0\á+­\Å@H;–=Í•(X/@ö','',0,'?'),(_binary 'øœAó[\ì{ýøÿ=\êD','wp-content/plugins/nextend-facebook-connect/providers/facebook/facebook.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ü\Ò\r\Ò=CicS\ÎO¦²\É3V',_binary 'ñ:xuR«\n¦µ6\ÕFx\Ñ\r\Úþ\í\Ì\æ‡þó \Ç','',0,'?'),(_binary 'ø¡oGp\ÔZñgpˆj§I','wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/previews/collection.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤v)$®\æ©ß†ñx¶º­',_binary 'a\ån¬¶<‰>O|I¿²¿¤µõ ³¶gA91u ','',0,'?'),(_binary 'ø¦¯ ú\ßCMp<E\æ','wp-includes/class-wp-oembed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ªd(ú©3\ì\r6\ç/ŠD\\ô=',_binary '¸K?]\\¾	\é¶2Ç’˜´È¡ˆ¸rT2¸\âA\Â\ÓN','',0,'?'),(_binary 'ø¶_ý/§Y\\S&)\\/','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-subtotal/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'pvB‘O`9ŒO˜g\Ñ\ÞY',_binary 'y^E\ÄI \íÏ½.<6Œ¬˜¨\ìx\à\î2¾\Åy\ê-‰\ÌÏ‹','',0,'?'),(_binary 'ø¸D\ÐÛœO\ãBÂ S%›¡','wp-content/themes/twentytwentyone/assets/css/style-dark-mode.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F¢<Ýºø\rXlˆEeª•',_binary '\È\ÖIx+‰b\Éy\'¼r½v—]\Ìk6h·\"+~\ì¤','',0,'?'),(_binary 'ø\Â6K1ýþ›(\îö\Ý}/AX','wp-admin/network/user-new.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'yô`Š.^*û°‡€\ÙÐ‰\ïM',_binary '\àRÎ´©\à“ƒ§õ\î`\å\Û÷ºžt0)½´\ßž>Ÿõ+','',0,'?'),(_binary 'øÄ¼\r\ëÝ“#\ß}i³\ê','wp-content/themes/flatsome/inc/builder/core/server/helpers/posts.php',0,_binary 'œ+`ô!¥	B»Š­þ\Û',_binary 'œ+`ô!¥	B»Š­þ\Û',_binary '3öf„p’z”L4A½[[b\Ã\Ý\è\ÉVŸ´Ã®A„…u¨','',0,'?'),(_binary 'ø\Ø\"ó+J\Î\ËÁÿ9‘u¼ô','wp-content/plugins/woocommerce/assets/js/admin/users.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '<Ñ€R\Z\rÀ\ãd\Ú\\\Ñv',_binary 'ŽC\è¼\ÕðvJ}2¥G£PO0ý…BDT÷\â³','',0,'?'),(_binary 'ø\Ü3‹´À›R\îC”µ\ÍV','wp-includes/blocks/calendar/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z\n±‚Œõ³Uz¹PU\Ò\á',_binary 'ý\âöŠ\é2aC•[[\Ù­n\ØkŒ2!\ZR3LŸ.6l\äRü','',0,'?'),(_binary 'øÝ§lpøS*LST$­8/','wp-content/themes/twentytwentyone/assets/sass/01-settings/file-header.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\ÜK\Ç\Òä¹Ÿ‹dÞŽñþ¹ ',_binary 'ð«\ìR_\à1W\áû©\"¶dg\Õ\Ó/\n\\v’d>IµŽW[','',0,'?'),(_binary 'øôŸÄ©\Ï}x\ì™(T½œ','wp-includes/js/dist/block-library.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\è.%A>}*€\èw^¶7',_binary '¡µCjI\Ñ %gP$¸Uëœ°	L \ÞFÈŠD>A&wH\ä','',0,'?'),(_binary 'øô\ÎM:3y\Å	îš¸Ž\íP','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/products/commercial-tab/SectionsManager.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“V\"B‡7~‡ù\\ût›',_binary '0ð&©òù=R6£¯QF\àR2žv`Ø¦ þf','',0,'?'),(_binary 'øúñüTh\ç\á^MˆHóVs','wp-content/themes/twentytwentytwo/inc/patterns/footer-navigation-copyright.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©$\Ü\åó“‡˜6\\H\Ó2Ö¸',_binary '{¹“\×Ü’Ñ©–l…\r™­Ó°\æÿ\ÔF^ F=X95d™i','',0,'?'),(_binary 'øýUšk¯¦\ë\Õ\Æ\Í\r{','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sku/attributes.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Uÿ‘gfZ\Óº‹\ç¨',_binary '^¢ý°º9”av–1…\â=ŠFò\áZºS¡]K@O\Ö\ï\"','',0,'?'),(_binary 'ù˜wA\Ì(÷¦4ôò«Z\Ü','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/jquery-ui/images/ui-icons_2e83ff_256x240.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ä<QJñ\É,yÓ£ð»R\Ô',_binary 'B¢j¤0=\Åb\éW]F\è|þ\åh	Ÿ\ïø\ä\Ò5Rn³ö‡','',0,'?'),(_binary 'ù^Q6l„\ÏJ! 	\âÍ¦','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/json.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ü\É\\›\æoN\ä.’Ž',_binary '>4\ßi3®|Œ‹v1µN\é¦ò6‡wD¨)Mü\äjr','',0,'?'),(_binary 'ù¬þ+f\Ò\Þy\é','wp-content/plugins/ti-woocommerce-wishlist/views/wizard/step-button.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ì\Í~|é¾”\í‘÷\àAj³o',_binary '}R\î\ÕcuPP_|3¿5}\Éq»\Û\Ú\ÌUpq\Ý0\Ö%','',0,'?'),(_binary 'ù¼+\Çx\Ð~\î¨ yi&\0Q','wp-content/themes/twentytwentyone/template-parts/header/site-nav.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\êž<[\0Ï€\\˜?ò+¤­¢',_binary '\Äum›v.)Ù’¡}an#X²†pÀÿ\ÒE\á\êQ\r÷n\à','',0,'?'),(_binary 'ù Å„1šr}mJGW\ßR¨\Ù','wp-content/plugins/wordfence/views/scanner/options-group-performance.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ö\àõPÀ=\ÝPÒ¤­\Ö\Ó ',_binary '\Æ-9þ›\0t\Ï\ÊD\\6¤9s]² \\e\0R²r¼ƒñ','',0,'?'),(_binary 'ù#°±v6\Ø¥={´','wp-content/plugins/nextend-facebook-connect/providers/google/google.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚\Îa2G~u{L\n\Ô@Á',_binary 'r O³D¢”»E¼\ï\çES>	{\ÄD^@=?øDõ^D,','',0,'?'),(_binary 'ù\'\ÝóiŸ\Æ8\Ù\Ùm-j','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-on-sale.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '©.>˜\r\0qXU\Ùû\í\ÑDV',_binary 'Ï´>\Í\Ü\\‡¶ƒ|“scò\"Æ‘S*4Š”°¥\æAòd','',0,'?'),(_binary 'ù,wR\Øõ¥±ýXÀ(\Ä','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/src/js/component-settings-reports/app.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A\Ð\Æ\à\'\Óy8 !›\äŸ<\ì',_binary 'Ì¥Š™¹\ÕöVòj}’%™¤\èÝ±T;{@]“;‹e\É\Ë','',0,'?'),(_binary 'ù/£v¨iÿ¢ B÷\Ä\É','wp-content/plugins/yith-woocommerce-wishlist/assets/fonts/fontawesome-webfont.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯z\å©\î\Õø¸\æ˜ 6‡>',_binary '­\ß@â£‚©L\ëEQññ‰(ieº–q[N|&°\ãùÃ÷','',0,'?'),(_binary 'ù0\å$…\'`¬Ã•\ín\å\\','wp-content/themes/twentynineteen/sass/site/header/_site-featured-image.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×ôtªhc\èy£1ün=\ËA',_binary '\ëI\áÊŒ\É?’(5\Ò]]F·róA\Ã~ü{tJ?”¼','',0,'?'),(_binary 'ù1o;U\åwž~­ñ\Ð)&k-','wp-content/plugins/woocommerce/assets/images/paypal-braintree.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘c\í/“…$¦gKÿK\\\ä¯',_binary 'ô¡XB\ì\ì€½¥?\Æq\Ê)c\Ñ\Üö«À\æSxbv%','',0,'?'),(_binary 'ù5\r†rŸ5ÝŒQ\ì‰Lú;','wp-content/themes/flatsome/inc/admin/customizer/img/portfolio-bottom.svg',0,_binary '=b\\\Ï=7ü\á2qd‘a°',_binary '=b\\\Ï=7ü\á2qd‘a°',_binary 'ºg\î‰-=©\ç¡\Ò„¬\íÀaól–J\0\Ô\Æ\'=2','',0,'?'),(_binary 'ù?ƒi\Ýp\ë¥QµJ\ÉX®-x','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/test/with-product.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Â0\Þ\Å)¥š]\ØV´',_binary 'ø¨?\È\åÊº\Ô_S2ù%?\Ú\àE\Æx[|b2ô\ì\ã¥ô¨>','',0,'?'),(_binary 'ùE7ˆ8ìœµw‡\ÉZ=…´\ê','wp-content/plugins/woocommerce/assets/images/eway-logo.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª-e¯“Íº\ã%\ÚGýcZI¿',_binary '}•8Rƒ!§Š!*\æu»»Å¨k|½#bÓ·òr]\Õ','',0,'?'),(_binary 'ùJ–m/=fS‹œ´','wp-content/themes/flatsome/inc/builder/core/server/helpers/paths.php',0,_binary ']?q¬*¸|¡›s%?&\í',_binary ']?q¬*¸|¡›s%?&\í',_binary '6e(ò»St¿\â\ÈÝ³i{©p>–ŸJ+\0QÙ»\Ür','',0,'?'),(_binary 'ùT‘‘”P’%\"UG\ÆH\ân4','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/reviews/review-list/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y—V\\ºlL)3ø\Ñ\Ær§',_binary '[ \\G\ï\Óódºøœ£F\ã/6:F\"?ý	Žðl\0\Ø','',0,'?'),(_binary 'ùV	ëµWžky‚	³','wp-includes/blocks/navigation-link.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ë>µ‚W°d\á\ìek(Ëœ',_binary '\ï\Æ¶¯¯À\Ï5…6]Nõ\äD\ë‚NU©ËŸUws½0*','',0,'?'),(_binary 'ùV\Æ\Ä\ÐT³²Ä™ºG\ç\â','wp-content/plugins/yith-woocommerce-compare/assets/images/09-bg.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'X:Û‚MzN\ÛS\Ó\Z\×,',_binary '¶Ò°‚©‡H£‘BªYp,¸…ù\Ê$¼¹z\ìAIc\ÏK9e¾','',0,'?'),(_binary 'ù\\\Z}µ\âd™qP0G','wp-content/themes/twentytwentytwo/inc/patterns/query-simple-blog.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J:ZG\ãC÷‘\Ódì½‘Iu',_binary 'FW°*ª\ë#a\0¡€\à;Œ+¢ÁG\"{\É9\"‹Šnk®A\Ú','',0,'?'),(_binary 'ùc¯W1#AÖº\æ¦H\Þ%u','wp-content/plugins/ti-woocommerce-wishlist/assets/css/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'XBF\Ó\Î\éYÆ‘­4Õ¶À',_binary 'Wm;F´\'d]‚¡’˜«dõ6[Fx\ç\Êöº~š­nð ','',0,'?'),(_binary 'ùiK_|B©º¡¥X7›','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-billing-address-block/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ë\Ì˜ø\Åÿ?æ•ƒ Ø‚÷7',_binary 'u9˜\È0²\×\É\Æ9ˆ\ÜN¡\×0y‰,¦¤¥°\â\"\Ò','',0,'?'),(_binary 'ùo\äÁ•\n q |˜\Þ\Z¹\n\Û','wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-plugin-gradients.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÐG\áð³½úýe\Ì5c%fy',_binary 'S?~ó3\Øb“˜eivœ°H’•m£¹\0“b*3_·T\Êó','',0,'?'),(_binary 'ùt\ë:—WÜ²sö¾ó\ÄEùò','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library/folder-starred.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '`C/\Î \ä\Z&†\Ü\Ò\Ï',_binary 'e\é<\ã\ê\Z‰Y´\0öF\r£ ûD\Í_+\ä6\ê\á˜e\"u','',0,'?'),(_binary 'ùv\Î J16\é=¿jÜ™\ØKª','wp-content/plugins/woocommerce/src/Database/Migrations/MigrationHelper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\áHe»\È\ZŠ\ÅÁ:x\â­',_binary 'À¥Vp¼¶!\Ô\Ð`,ÿ¯’\Ð@\ç-[\×sz¿¹—°!H»','',0,'?'),(_binary 'ù„É±%›¹a{Z¼j	%¿','wp-includes/class-wp-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '	e3pN_on0\Ý\Ô}ô°',_binary '´šù\Z¦ƒ„xŠP‡\Ö­´‡±\×\æ\ä\Òxü','',0,'?'),(_binary 'ù‡†óI™:4PúU\Ò\ÙÀ','wp-includes/SimplePie/Cache/Memcache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹ò—\ãu„\Å\Í5uyS‚¤',_binary '\á/ºµM¬[®Qt\Ãn.?Ï‡IqA?Tj<œ\åªwoRI','',0,'?'),(_binary 'ù“,ü¦¡`\Ïùt÷\àt\Üb7','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/i18n.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '€MP\Ø<^f\ë§Gñž\Ô C',_binary 'V“$oBÞžj\Å\Èf0‘Ö«‚Qx\ËuøT\Ä=a¨\Æ`í ’K','',0,'?'),(_binary 'ù“\è‡Á4\ã$Gè«¾—\ë¼','wp-content/plugins/woocommerce/assets/client/admin/chunks/analytics-report.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%­°b£¯\n6\ài|ž',_binary ')\ÆP\Ës glˆ\îš\çSß‚²\ÎÖ¥ŽVœý¨_C','',0,'?'),(_binary 'ù–\æ²D\ßø„§|G,‡¸','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/search.svg',0,_binary '°\ÑðÛ[Œ¦µr…\ì¿ÿ',_binary '°\ÑðÛ[Œ¦µr…\ì¿ÿ',_binary 'n=\n»“\Ïg*n\Û\Ù4^Aw3\Z5–©\Z¢D2¤:','',0,'?'),(_binary 'ù—8K°\ç ?O]Ê¹Y','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/rules.key',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'º§\ZlY^[F\r\È2xÊ»',_binary '\Ï6=““\ØS“q®-5 )¸«E¿L}A¤ViA]ŸŸŽ','',0,'?'),(_binary 'ùžè‹¼‰­–\Ó3÷ú²','wp-includes/blocks/shortcode/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1V\Ã\æ\Ñ\ÛtL,–²®k_¡,',_binary 'ÿ\nšÀz#\íC\áUh\Æ\Ä4®7\È\ë)S«\ÛXÕµ¿e” ','',0,'?'),(_binary 'ù¢¸pöl4[²þ°e›\Ûû','wp-admin/js/inline-edit-tax.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u¸ô,2 /b3S‹îº¡ù',_binary '¹F\Äc{\Ã+\Õo\Ê>\n\É\Ð4…¸þP\ÓÀ¼÷T,Šš\ÈS\è','',0,'?'),(_binary 'ù£:°ŠÁÑ†*\Øq¯\Ü','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartUpdateCustomer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'IW?v 3x·c\Æ9\r]ª',_binary 'Ò°¦µ\\=£Œ¨t·¶\áŠv´÷L™<\Ë\î[”=\â\Ë?x','',0,'?'),(_binary 'ù©¶T¢9´4¾Ð\ß','wp-content/plugins/woocommerce/assets/client/admin/leaderboards/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '%—+eÑ¦¾a\ÕFºŒ\Íü…\â',_binary '8r:aÿ£K\\m!\ÃK	\ê\ÛÖ–¬\æ©#u‹^±g','',0,'?'),(_binary 'ù±/ù3\Ï7ò3eN´™N-','wp-content/themes/flatsome/searchform.php',0,_binary 'F w¥¶-tq¯^%fÐ‚+%',_binary 'F w¥¶-tq¯^%fÐ‚+%',_binary 'Á\Èþe\îŒû*\Î<®ƒU(VbT•\î\ÏV\ç>h²46º','',0,'?'),(_binary 'ùºŒT\èH½»¡+Œy©\ì','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/fonts/otgs-icons.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\à\Ç$|\ÄKü3\È@k',_binary '\Úc}Ä¦¸\\¾†\ÞYª6«D#¢\Ë6Yúö\Ø\Üc‚q¦‚','',0,'?'),(_binary 'ù\Êl]Š¾g	SD®n','wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'à½–K95\âT$“Kk%n',_binary 'n–‡\é\ã\ë¼T\ëX\Â\ÅÕº’™2\ÅÁ/Ê‹}–3\\^','',0,'?'),(_binary 'ù\Ñÿšô\ßÐ3ø>#¼.û','wp-includes/rest-api/class-wp-rest-request.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ðŒQ…\êu!_m\Ô,\ÊN]',_binary '^\Z€&O½\Z:nÊ³ñ\ëþù…`n=|rL‘\çœ1†‡m','',0,'?'),(_binary 'ù\×\Â>0\æ\èf¢ƒ\Î\Ò\à³','wp-content/themes/flatsome/inc/shortcodes/scroll_to.php',0,_binary '÷\ÇQbçœ—M\îwè¦\ÚS',_binary '÷\ÇQbçœ—M\îwè¦\ÚS',_binary 'Ä•\\+,¨R{…Rw/?0Ÿ_\åW‰Y_^\Í!:\Ùa','',0,'?'),(_binary 'ù\äK|H\Â#\Õ[›ûxŒ\É','wp-includes/blocks/tag-cloud/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'lŽt¨\Åe\"cŒ5n Yº‚',_binary 'ªd*q5§y9ñ\Í\îø]\ëe=1«\"ñ«¤¦\ë\rü™','',0,'?'),(_binary 'ùä¬Ž\ïej\Öö”\ÝS\Î\à','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-contents-block/footer-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õž\Û\èp\ë|²·\à+¦	¥\æ§',_binary 'r\ï<&Ø¸~\à\æa\í¥M\'pF*2õ\ÇpF\ÂL‡N%hnN±','',0,'?'),(_binary 'ù\ä\æM\â\'d|\äÁãª¯’','wp-content/themes/flatsome/inc/admin/customizer/img/portfolio-top.svg',0,_binary 'H	š0\ÜkÄ‚\Í|\Z\îš?¨',_binary 'H	š0\ÜkÄ‚\Í|\Z\îš?¨',_binary 'Y\Æ\é™Yw\r·R¤;q\Õ\î\Èm®\â$-¦\éÚ²i\Õ\Þ','',0,'?'),(_binary 'ù\ë3°k‰6W(ŠŸ^þË´','wp-content/plugins/woocommerce/lib/packages/League/Container/Argument/ClassName.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž°Z…\î\ËK:\î)þ-øS',_binary 'G?À>€\Ø\\Žù1ôµr\ÆCC…YC>³\r©K\ÞUº','',0,'?'),(_binary 'ùðLý|‡-±ŸOMX\Ö\Äc','wp-content/plugins/yith-woocommerce-compare/assets/js/imagesloaded.pkgd.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Qòö\îu\Ü2»\\]2N~',_binary '·k3Y_“Uþmõ\Õ\í/P»¡\Ð\Ü!>®O/JoŒ','',0,'?'),(_binary 'ùñ\î93\Þntt¶uŒ•','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/category-list/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(q\ÙdŸ.Q\Å>\å|M\Ï',_binary '/•¨;¹£\ä:Xg\Ôø]\ÞÁì¨¨Ãª\ÌQ«‘	š‘','',0,'?'),(_binary 'ùñ@\05}\äÀ\r|­iK\ZþS','wp-content/themes/flatsome/assets/img/payment-icons/icon-cashcloud.svg.php',0,_binary ']¯rºþ\ÓQ\ÑLJˆ\äu',_binary ']¯rºþ\ÓQ\ÑLJˆ\äu',_binary '\Ôe!·\Ëdd²ú|ûû\ï8T–>#³\Þ)i@M\Ôÿ«Á&','',0,'?'),(_binary 'ù÷z›©Mj`å·‚*µ','wp-content/plugins/contact-form-7/modules/stripe/stripe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u\"\ànðŠ\Û\"\Îi\ê*\Ûl',_binary '½I¼U\\\"W «\Ü5²)µRŠQHzv9(ö•a,˜u\0‘a','',0,'?'),(_binary 'ùÿ\Ô\r r;¨4qÖŽUƒ','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-vi.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ú\Ø\ÑtÔœ½\Z\å\Âø@[­!',_binary 'd\ZøtO\ËJùM\é\èý\ÔöZÀ“¢¹öþTU\Ä\Å-\"õ','',0,'?'),(_binary 'úRœ\Þ=ú\Ý*\Édò\Õn','wp-admin/includes/media.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[‘gKb£0V\ÔNlö¿tò',_binary '?˜•UñŒ$b\êÊ€\Ü\0\ëb[u\Ó¯J»F«Gº','',0,'?'),(_binary 'úe5ö¿X©¾\ïÒ·žA','wp-content/themes/flatsome/template-parts/posts/content-single.php',0,_binary '•6×–Z‰\ãˆNj¹	',_binary '•6×–Z‰\ãˆNj¹	',_binary 'hÈ ü•£RLò„(Þ¨$š\ÍzŠ=»ûIù¤ŸH\ìÔ‘','',0,'?'),(_binary 'ú†8\î=šº‘\Ç[Õ±ƒ','wp-content/plugins/wordfence/modules/login-security/views/page/manage.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Aý‘öö€iYn$\Ôq©G»',_binary 'v_ÿŠeI»Ü‘‡ý¡ª¶‡z\"\Ñýª[ö1\no¬\Ç\ÂF','',0,'?'),(_binary 'ú¶AŒ‹\Í\Ë)Í¹D4\Í','wp-includes/pomo/plural-forms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's_7\È;Œ	]­LvlÉŸ',_binary '\Ë\ÊT\ÆU#:`B=\Õ\Ö\Û\ÃÛ™Ny3­þ·Ž\æ›J\í','',0,'?'),(_binary 'ú\"(§ø\Âb?\Zg‚s\áq\Ç','wp-includes/css/dist/reusable-blocks/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Þgky\ïÈ½\ËimV¬˜›',_binary '˜F4ð®¨B@Rž jŠ×•±¯NŒÎ„\ãSHù¾7…','',0,'?'),(_binary 'ú-^gÿˆÌº@\0/÷“†','wp-content/index.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gD,V\ë§=\\\ÆbP',_binary 'k‰À—~	¶½UH\Z¥\ÖxƒP\ê\ÛAÌ„¢ú<¡ž;X¨','',0,'?'),(_binary 'ú.Õ¶»\ÕñZg{\Ú=ñš\Ì','wp-admin/css/customize-controls.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹n‘\n[:¥ˆ¢¼+\íl',_binary 'ÁX´\Ãlgù\ä}ª,ö­03§\Ë9%&(Bh\à±œ)šl','',0,'?'),(_binary 'ú/zY+\Æ s`y','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-footer-block/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹;ZA\ÖW¨ö\Çnü\Åô\å¼',_binary '¼]\ßXr§GF\0\é\0‚¨™ýÃ±š\ãmy@LeF}C','',0,'?'),(_binary 'ú1BjnýDøüœq£P','wp-content/plugins/yith-woocommerce-compare/assets/css/colorbox.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4ó\Ü0\Ð-_›½\ÚZ¶',_binary 'Ž£±¦z8Ñ¬]P\n©C-¤Xs8?¢\ík8 J','',0,'?'),(_binary 'ú4/\Ö\áÙ»~±\é<+®','wp-includes/blocks/post-excerpt/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rš>¤\\XJ_W#\ÖZD%',_binary '\æÈ¶B\ä?@¡\ÊgñY\ã\ã+.ƒ/÷ò>\Ý2mVšp³”\Ø','',0,'?'),(_binary 'ú9v,,ªj\ëL\àHÖŒw','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-pl_PL.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$#•Ú‰kX\ëhDðq\ÎH@²',_binary '+AÅŒŠøOtøw°‹\Å‰\Ý\ÍT0@\ê©øÓ®q÷©','',0,'?'),(_binary 'ú:S»8t\Ï\Ê\ÔL:F#Q','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/cart/use-store-cart-event-listeners.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '£(\å4;\îˆ2\ÔB 3o\Ä{M',_binary '\ÍKl]Uœeª\ÙPigBOù·\å&P0rûqn','',0,'?'),(_binary 'ú:Y\ß\×–Ÿ>ô½¡\â\×=','wp-includes/blocks/media-text/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'nö\É\Þû;›ðPˆLsŒˆ\à',_binary '}“@’ \în|{\ìKW./²\ØWMÀ\Ò\î§8\ëviÛ©gkù','',0,'?'),(_binary 'ú;øF½\Õ%Â®„*ž+','wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/button/index.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Æ·™³yÿMW_\ÆQlÚ™|',_binary '\æ\ê`•œm:Way\Z—ôq”IžµW\égKb°1ÿŽ’‹','',0,'?'),(_binary 'ú@\ç1œ3föˆ\Ñn?ã«š\'','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-product-variations-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯¥\á¸Š3g6uŠ}3\Ó',_binary '¤€`<I\Ãè‰‘+¨eó\ÛF\ÎEv\Ñ\Ö-#5O\nñSÃ£\Í','',0,'?'),(_binary 'úJ/\è\Ô\Ûa½u‹€#b„3Q','wp-content/themes/flatsome/inc/admin/customizer/img/icon-fill.svg',0,_binary '\è®.ú\Ò\Ã\n†\n\"\Ý1$¨\è',_binary '\è®.ú\Ò\Ã\n†\n\"\Ý1$¨\è',_binary 'C\Â\Ó\ØQ„Kx7¤0M„*7·Kž\Í1‰«1À¦','',0,'?'),(_binary 'úRy\ÔqTúI\ä•ßªWeQ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/chip/chip.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\èQ\Ö6SÁLöø\"¶\Ó	',_binary '\æ´d‘ÜŸŸô\Ó\Ê\r’zó•|C\îµzYJ%Xy\'»','',0,'?'),(_binary 'úa<*\ít—¼û\ÒfEó4ù','wp-content/plugins/woocommerce/assets/js/admin/reports.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\":k¯-\ã3ŽÍ,Ï¹b\ê',_binary 'F|\Ì9ù¨¹®\êG„üÞ‘û²±7ñ§ï “T‰*\ëŒ','',0,'?'),(_binary 'úk0\îkâŸ†ñ\ãV\ÄXƒ†','wp-includes/blocks/file/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '3…).û÷\Äm6M\"\Å\ã;b\É',_binary '¡²³¨<~»q8\îoŒa*´i\Ô§f¡2`i\í\ê	.›','',0,'?'),(_binary 'ún:\ÑzW_\ÃB›SùR¬Š','wp-includes/js/jquery/ui/resizable.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'n§”Ó‘Ež\0Û‚\äŠ',_binary '[\à÷‹\Ë!F\ÃKP±M•¾\Å›S´¡\ZVýÓ’¢\Æ','',0,'?'),(_binary 'úoŒ,¡l{\ëh“ë¤•Tû','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/footer-item/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'h\Å<žùmƒü@u!g®',_binary 'qXªw÷l«•€3M\Ì|S\ï\ã\ÇL¾j·n\Zü\àM','',0,'?'),(_binary 'úw	¥š+»j\ì¤ûÀ','wp-content/plugins/wordfence/views/common/status-circular.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ð\â\ßº)\ß.=£·¥g',_binary 'q4^\"-ú9†\æ‡\á\í\nd1q¬‘ˆ\èO,\íù\Ç','',0,'?'),(_binary 'úw˜\ÖY¥»B«ŒqM\ã','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-product-variation.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'T\éGu…Á¹\Ô:p\ä¯Zf/',_binary '®C¹\È\ÓöHS@qÃ†±9}”nGc-®\é#¡Y8R2‡','',0,'?'),(_binary 'úš­><§È¥„\î\Ý\è\r³N','wp-content/plugins/woocommerce/src/Internal/Admin/ShippingLabelBannerDisplayRules.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Áÿý\Õ@Œ[ºg\é\r)\ÏVM',_binary '´ö€”\ÙÙ’ÔŒì¬¤.W²6n\ï`yO\Ç	iŽ¡^t\Ù','',0,'?'),(_binary 'úƒ$*\ß-\ÌÙ‹\Æ\ì\Ç','wp-includes/blocks/quote/theme.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰¿3öÃ›¥\r\ç\Ç>³Œy',_binary '•Ï„\ê\ë¬]W\Ú\Õ\á®þª—‡·¦\Â\Ô\ËD®~V3©º','',0,'?'),(_binary 'úˆ7Ú”!õ2¦x%’XNú3','wp-content/plugins/wordfence/views/options/option-token.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '·x¯EJRÁ`›ù5\Z\êC\n',_binary 'óˆ_ú—›N–R±Ï¦g\îNŽr™\Ä{ÿŽoXÓ®','',0,'?'),(_binary 'úŠ˜W•47›r½B°ó7','wp-content/plugins/woocommerce/assets/client/admin/chunks/two-column-tasks-extended.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½ˆV_\á~1—\ç1C:¡',_binary '&Qa•&cº\Ê÷ž\Zšˆ\×gaI²i¼)igq0\Û','',0,'?'),(_binary 'úŠ­~…‹a%¡\ë!»P','wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '{\Î6¿#UQ:÷‘|>#\ë\Ö',_binary '\Ò(\Ý\î[\n\×Ì»\â‰oŸRAo‘3¤¼^\æ¡\Æý','',0,'?'),(_binary 'ú˜”\ç\ÙL?@§š.~O¯','wp-admin/css/colors/midnight/colors-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'š”ë¯¢\0\ä\ïõ%\ÅÁ”',_binary 'Aj²÷Ê–ª?•¶\Ñ\ä¬O/Úœðˆ*\Ê\"\ã}i‹','',0,'?'),(_binary 'úšg&\Ñý\íñS\Ì5V\Zÿ&','wp-content/themes/twentytwentytwo/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ó>û~¹ô‘s9K¸8\×\ã',_binary '³º6%ó£À¶>Ô°-‹‚\Zž•‘u\Êg\Ò\Ø\Ç\í‘	','',0,'?'),(_binary 'ú³¬»T\nšˆô­e.(¼±','wp-includes/class-wp-image-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥¸·RÔ´ss‚z*õ¡X',_binary '\Ú\ÕM\\2ÿ¬È°c¡Ö²Pú“¡Žj!%ž\à\âOV*\î','',0,'?'),(_binary 'ú¿Ø˜\Ã-©m4)}ùù	\Î','wp-includes/js/dist/reusable-blocks.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'É€Cª–	€[°õ€<¬YQ',_binary '»T‹\'>2[ºO*#U\ÕðK²f ý¾J\äL\Ð&\ÝR\×','',0,'?'),(_binary 'úÁ,\'<<;\á-n•j1v','wp-content/plugins/woocommerce-multilingual/screenshot-2.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ål\Ý\Ï\â®\ÞCø“Á­ \ãW',_binary 'Í¯qu™÷½Ï°¤¬”˜7ó\Ì-T\Þ\èa5\Ù\Â(\ãð2|','',0,'?'),(_binary 'ú\ÍÞ¼0/Á\ÞT\Í\Þ#','wp-content/themes/flatsome/template-parts/portfolio/archive-portfolio-title-breadcrumbs.php',0,_binary '…T‡â¦¥µš‚\ÎÇ±v¶\ã',_binary '…T‡â¦¥µš‚\ÎÇ±v¶\ã',_binary '8hH\àx¥õûøV\ßs#±­f\Ñ\Ì¡*üÒ´F\\8\ì£','',0,'?'),(_binary 'ú\ÏP\Ðùd\áóv‹lœ§}M','wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8ôIÿ0¸mj@0\Ý%øUø',_binary '{¥{oª]ùvrlñSaX\Êr‚óP\ÖÎ“?‰%.\ÃùE','',0,'?'),(_binary 'ú\ÕµMU#:üN&ˆ®\Ìô','wp-content/themes/flatsome/template-parts/header/partials/element-wishlist-mobile.php',0,_binary ' \r\Ío\ákô\Ð\Ì5ƒ: \"J',_binary ' \r\Ío\ákô\Ð\Ì5ƒ: \"J',_binary '—\ÓNJ1µŸŽ!¢\è\\¶—ž`f\ï\ÒPr›9','',0,'?'),(_binary 'ú\×\î\"&\ÉPúBb\ëQá’—\Þ','wp-content/plugins/woocommerce/assets/client/admin/chunks/7708.style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™¨ñ†8Ø£\ê\ïVtWA«ª',_binary '\ïGc\ä9RV4‡\ÐP¥x#ÿx\Å\âÁ N}\â\å©','',0,'?'),(_binary 'ú\àZ–p%\'n\Z‘ªWjµ\å','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_real.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ëõ«\Äey\Õ\ç\ËB¿J',_binary '>?z\íy«¼O\ÜIncC!¢¡Y–ñ¿\á\Õ;/:Ÿ<\nJ\Î','',0,'?'),(_binary 'ú\â}‡\Û\á³PÃ›™P\\©\Z','wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=ù\â’Bª9¼$v\r	',_binary '\ÏX\Ù-Á²y°¤˜H\ÍðVKr¯V\ç\îYË´töœ\ÉX©—','',0,'?'),(_binary 'ú\æ„Fˆh1[\ÂÇ’d4dW','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-ajax.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\ZŸ¦½g]½·5\Ñ\á{c%\r',_binary '\0Ù„V\î=<XÜ´;\ç./Œ!bÐ¾¹ã§\ç\\‰¯~','',0,'?'),(_binary 'ú\èRŠ,žA§Àý\ZñGJ\'-','wp-includes/default-filters.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'S«wnÌ´X33-·',_binary '™K;Y\á\rŒ3Á\Ç\ÅÉ¡P\ÉPHM0@œK½gˆ\×k','',0,'?'),(_binary 'ú\èò\è¡\"úƒ]\×Ò˜‚Eo','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-plugin-panel.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\ÚG„¼V³NcA`a',_binary 'ËŽ^^]\Zú1u×¾	3nF7S„Ÿ¶zA\"j~µ','',0,'?'),(_binary 'ú\í\ì9]¸\ë\Ä\Î/>\Øå¯¿','wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/lv.js',0,_binary '>;ô\ÙPR<U¤ûU',_binary '>;ô\ÙPR<U¤ûU',_binary 'Þ¢Ÿ=½t´³Ì¡þn	0e»‹[\Â_±QÊ·x=\Ú%ò•','',0,'?'),(_binary 'úñ¡ze¾’Q5\í<}‡','wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/layout/basic.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1ù`ki9‚ª¼:\Ã3Ÿ\åi',_binary 'Š\æ\èšÑ§5c\Ïþ#¬J‘\Âh¦?Iˆ`©F','',0,'?'),(_binary 'úôpÔ”ûRÛ \"ð…°©','wp-content/plugins/woocommerce/includes/admin/importers/mappings/mappings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '4qŽ£‰DR9÷|\íý',_binary '€©0«ýÁm¼\Å\\\âÃ–â·˜¶¼\Çõ‘ùÒ©B³‹\É','',0,'?'),(_binary 'ú÷gŠ(¯35\Ñ\Ò5\ík†(','wp-includes/blocks/heading/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '0\ÙmHðvoÓ±\å´kN\Ó',_binary 'z]3Í¨˜‘Œ¹b\Âù’&jô\Ï\å\È$L½\Íb©÷\×B»—','',0,'?'),(_binary 'úû¾\ß\Ý\Ðo\Ñ>÷{L’','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/form-step/index.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\è\nÍŒu²¶\Ór\ÓM\êDû',_binary 'l*VuÐ¼½c\é\ÃXUuK÷Ež[\'a\×TË®@š','',0,'?'),(_binary 'úý\Ê\n\\\ÔûÉ¶.5úŽš','wp-includes/images/xit.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”\ì«	3X—Ä«9+\ï–6n~',_binary 'ü\Öü s²¯¹”\É\ÛÛ¨“ S,md\ïŸ\\Yb’Æ‡\ï\Âo','',0,'?'),(_binary 'û\Ôbˆµ\ë¦GR\ÔeA','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-payment-block/block.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ì\åÔ”Ÿ/^\×%EOò›²q',_binary 'þñ\ìk\î¡#¢+\éb£N\ÎÀÉ£c“\î/©!¾‹ \Ê_\"','',0,'?'),(_binary 'û€¶Ð¬\çpšI\Ò\ÆYR','wp-includes/sodium_compat/src/Core32/BLAKE2b.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'F\éKŠžy\ä\"\ïJø\Ú\Ï',_binary '~T\Ó»)_º¡€Ô‡ÀˆYH+\Õ´\ÑÉ\'û	;','',0,'?'),(_binary 'ûV	¥¯Œ˜2ª\ì™\Ø(','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';÷J\É;\á`Æ’ nH¿',_binary '\rÁ~$š#\Æ,˜[¡\Ç5§g\àt\à\ØW]I¶\Â{8rþ(','',0,'?'),(_binary 'û/^\ÃÔ‘Wˆ\Û4\×\È}ý','wp-content/plugins/products-compare-for-woocommerce/templates/new-compare.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ñ£¯q˜¬o¦\ØE\Þ',_binary '—ã±««	z—Ÿ<Tôo[’@k€rTÅ´ù½«Z­\Ì\'','',0,'?'),(_binary 'û¢:V—«—\ì×¬=i¡¯','wp-content/plugins/woocommerce/assets/client/admin/analytics-settings/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ùH¸·\"ø^ZE !Ê·',_binary 't@—°\è™T\Â@!\Õ\èh@,ýÁm*\Ø)ƒ—¬','',0,'?'),(_binary 'û cðO\ÍñÀ\Ç\à4Ä¨Ç–M','wp-includes/blocks/post-terms/style.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\á\ÑÎ=ýv©sN~',_binary '8Ä¡ò¬Ržpœ`e\×\Å\í°FMC3®|\í¯E¸w\Õj‹´','',0,'?'),(_binary 'û$BJó/«~±X®9@\às/','wp-content/plugins/woocommerce/vendor/psr/container/src/ContainerInterface.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÔY9PCB\ný\âl”P[f',_binary 'Š?qº¡G²-\Ú<\\—\Ú6\×4§¡\Û1ð\'\Ä3¶\éxÀ\Ñ','',0,'?'),(_binary 'û$®‰™\Éo\ã\é0\ï\ßH','wp-content/plugins/woocommerce/legacy/css/_mixins.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•8£5…Ÿ|—\ÂdÚ°\r\Þ',_binary 'Ñ³®µ58(¿<z°v{R8\ÞAb5P>Â­µ\Å\ä>','',0,'?'),(_binary 'û&\ÞÔšÜ‡ªNµr®ûŸ','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\×\Ðö\çÕ\âVo5€\ìÚ\\',_binary '\Ü\×\Ô>‘9\ÚùY\rYO´­C4h²‹\í\Ù\î™\ä\ÐužG\Û[','',0,'?'),(_binary 'û(ÐŠ»QB&¦€ŒöQ?\éŸ','wp-includes/blocks/categories.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'UŸpJ¢^ÿË‡\âòò\0Kž',_binary 'A›‘·Œñ¦\ÙÌ’ö‘®\0`µ«\íN\î\äéŸ¼÷ÖŒ','',0,'?'),(_binary 'û(\âAð@\Ó\ÚÿŒ\0¦q','wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-form-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'fDFöö“‰)¦f”\'',_binary 'Gö¢\É\Î\Èß #e,~\í|.¯Ž7ñ\Þø_SƒÂªJCDž','',0,'?'),(_binary 'û+`šŸ\Åw¸\Ê)²À','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-badge/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ö/\é£>¬é¦ª.\ØJš=',_binary 'ö¶í•¹•¢£™: ,0(üA\è…<E¼o†ä¤¬','',0,'?'),(_binary 'û,ŸgE\Ô]\ã–j€M„À','wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-toolkit.php',0,_binary '–-)45mH\Ô\ÐQR¶žý',_binary '–-)45mH\Ô\ÐQR¶žý',_binary 'xœ}\çW\È<Qq\í8¿¦\ÖW\Ã°\ág±L•mw§','',0,'?'),(_binary 'û-q\íÆ£—·\ãžZ0\ç	u','wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Italic.otf.woff2',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŽW¹’¦º&hE5†Ox¸\ê',_binary '1\rŠ\éû*–h\\\äBöo\Õ–\ÐB®}ÿù_ù„XD7','',0,'?'),(_binary 'û/–ûúù\Ô7”?²\'¶\ÍY','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader/class-plugins-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8l\ê±GPX;®[« \"°',_binary 's¤øD\Ê\Û\Ñ;¹ù 	BÏžª$“ú\ç€\Îlb†rÿ²rp','',0,'?'),(_binary 'û;K„œ\Î3ö\ë\Z‚0÷\ë','wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-languages-upgrade-notice.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'J\Þ:r\ìi¨Ü•\Ö\ÐÜ¶',_binary '\î0\Ìcu±¡·¼no\Â3fÂ©ôA˜I}Š‰¸`ƒ\â\æ¬','',0,'?'),(_binary 'ûC}0%iù‰p7•\Z\å/?','wp-content/plugins/woocommerce/assets/js/prettyPhoto/jquery.prettyPhoto.init.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÏQý#†\ä\ÕN\êŸ\ìs\áþ',_binary 'Md	7‰\Äu\Ò\È\Z\Ú+i\æÓ\Ãd\Ø\åŠ\Ï\Â*#','',0,'?'),(_binary 'ûD\Ï\á\ê]\æŸ|ß¼ª$™','wp-includes/js/mediaelement/wp-mediaelement.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ò(D\Ûq£|«\Þ\Ê€\î',_binary 'P\ÑE+#Á®M±s;agL«½ùeøõSð•MN…\År=','',0,'?'),(_binary 'ûPh\Ü\È³·¤rV\â','wp-admin/css/revisions-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o³$o \Î|¯\Í{‘±\æZ\'',_binary 'jUˆ¥ö§zªM\å\Å\Ý\ØÉ¸g;Ü²eg<1u`•p','',0,'?'),(_binary 'ûSš\"Kú\æl<\ãHÓ°Z','wp-content/plugins/woocommerce-multilingual/inc/currencies/currency-switcher/class-wcml-currency-switcher-ajax.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'eG%/j¨\é‚\Ô%%ƒ',_binary '@©t>P¦\Þ!\ï|w±\"ñŠ‰\Èr4²pP?žŠN½','',0,'?'),(_binary 'ûX»\È,a6%S£%p˜n','wp-content/plugins/woocommerce/packages/action-scheduler/deprecated/functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\'‹÷\æ˜){b\\\È\Ñt!\0',_binary 'Ë‚~+b\\IeQ\â9ø‚\ê’À‚i®úl¾9{™­\Â6œ9','',0,'?'),(_binary 'ûg0× Ñµº/0','wp-content/plugins/woocommerce/assets/client/admin/navigation/index.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õ\Ù0º1\Õ\ÉpWI²',_binary '½Œ•	\Äœ;\Ò÷¦{\Ù\Ûúþ\äHs\æ3^\ìBx<\Ä\æ','',0,'?'),(_binary 'ûg\â\\„@¡¥\\ˆ…š','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/context.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Z\ë\Ç\'x»xl\ÇÀ~\ÆPeA',_binary 'fšE—Ö†E˜f`ƒ´\à¢\ì\Úu\ì5õ\Âò¼¸»\ç™M\Þ\Û','',0,'?'),(_binary 'ûh3_sV;SRf\ç-‡G\"','wp-content/plugins/woocommerce/src/Admin/API/ProductAttributeTerms.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'A%;g(\É7$_\à3¢,',_binary 'B½\Ý\Í=W«,!0•\Â\Ú2A\Ë\æ=\Ç÷S½¤\Ø	=4','',0,'?'),(_binary 'ûo\Óð\êO¼$²\ÛT¼ltGV','wp-content/plugins/nextend-facebook-connect/providers/discord/discord.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NfpÁŸae\Ï•£´@',_binary 'hI\ì¬j©\×S[¯)\î)³3\Åb\â\'|\Ð\ÜV´_1G','',0,'?'),(_binary 'ûp\ï–*¯µ°‡z\Ö\É\Ú','wp-content/plugins/woocommerce-multilingual/classes/Rest/Exceptions/Generic.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'g\ïñ/hQX\êF¤\Ü1',_binary '\ÍeRb\á@-Š§‘®žO\ÙZ\ÅG1~m÷¡,‹\0½','',0,'?'),(_binary 'ûr‚ö\Ùk÷\Ô\ã+ü•R‰\É\ê','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/cart/use-store-cart.ts',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '…¸GA£Àæ²Œ>c²y”þ',_binary '\ìT«	§\ÍÑ­•Z#‘¯‹‚šHBñ«?€ÿ\nó','',0,'?'),(_binary 'ûztð[ \Óþ¢À ›Ž“','wp-includes/blocks/heading/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ž.:¢\ÇjK…=V\Â\"O^',_binary '6\ã\á*\Ðc\ç,l\ë\çm@ñ&\Ï.oa„Ä‹{\"n\0\Úø÷¦Åœ','',0,'?'),(_binary 'û•2\ÈçŒ¼Ñ²a\ß\à\Ô','wp-content/plugins/woocommerce/src/Admin/API/Reports/Variations/DataStore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\Ý.ajÀT5ó‹Op\'R',_binary ':õ(Q„¿¦IkW|%¡³’¦l\Øi\î$Y\È(','',0,'?'),(_binary 'û—x»=#ƒ\Ô=\0{KŒ’ ','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-network-orders-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\îÄ”M\Ù’þNl·\Åv',_binary 'hB\ÕjqT\n\ê¢s’p\0K\ïõú%™£\Z;Xúp\"<ð—¸','',0,'?'),(_binary 'ûŸ@\Ó%\Õ\Î\Ý<©R¸ô<•','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/drawer/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '•²‘\á¼\Æ\ÞNgwVD',_binary '{‡ù4\È0\ÄZJ@\"Öƒ\ÄjI¡°\Ã\ë?bþU','',0,'?'),(_binary 'ûŸOûD‹i…W†R\ß)Ð±','wp-content/plugins/nextend-facebook-connect/admin/templates-provider/buttons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '8>%´p÷Â z\05&U{¸',_binary '×±r¢©\äþŸ\È;\Ê)¾\ÈHJZù3\ÍR=ÿWõQ','',0,'?'),(_binary 'û¡r\Õ\Ïe:Œ\ã\åg¥>','wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/abstracts/variables.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'C7A\ä1Wð¨\íyY¡_\Üy½',_binary '\èo‚$®\ÙQBQ\Éü6\Ó:¿P\ÖF\Ð6‘cB¸`\Í\Üñ\ÕP','',0,'?'),(_binary 'û¬=zg 9?lññe5K','wp-content/themes/flatsome/assets/img/payment-icons/icon-jcb.svg.php',0,_binary 'Â¾Õœ\Ïƒý¡ˆ\åøÿ',_binary 'Â¾Õœ\Ïƒý¡ˆ\åøÿ',_binary 'SÚ7-Z¼P\âó§«û´ÿ7\ÉhU%2ú¼‰ ³¢[†','',0,'?'),(_binary 'û²¶H¨WŸ u\ì\rºÁl','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-methods-block/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o}Ú†¸—ü\Ò)0*u™º',_binary '\0 û‰“öô²YXjŽ¤[PšN‚#y\0§z\n?[W\æƒ','',0,'?'),(_binary 'û¶\ÉÁ\'\Í\ßVBÁ~þw','wp-includes/blocks/query-pagination/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÖG`[Ws/¹\ÅØ¤–…\Â',_binary 'N\ã°\å˜SUnÃ½5‹±{¾®lL©\í€\ê¢\èÁ\ÈÆ©xM\ã','',0,'?'),(_binary 'û·ˆb ;\â±*4Cd–¾','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/icon-refresh.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'š»Pÿô‹•ùÿ÷	qÊ³',_binary 'FS´.÷ƒ^¥Èƒñ\ßT\îƒ ß©\æ|Œ¯‹\ìªœ','',0,'?'),(_binary 'ûÁ2]&Ö”#“ñ\Ø^F\ÙqŒ','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/PermissionRequiredException.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ø2Î¢ñ	®/úE!\á<s\Ñ',_binary '\\\Ð=©«ô5—©3	®ÏŽv\Ì\á„_%ñ2½ÿA¶?$','',0,'?'),(_binary 'ûÅ¸W_Jc\îZ\ä\êBœÁ\Â','wp-content/plugins/woocommerce/includes/wc-attribute-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ý^>\0\çV@C”»…÷ú)',_binary 'u?‘¨}\ÂôC«\Î\ÇñR\Û\ë¶÷\Ôò™òmÛ™”{=À\ÝñW','',0,'?'),(_binary 'û\Èpb#»ðG£:ƒ\0t\Íi','wp-content/plugins/woocommerce-currency-switcher/css/orders.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±IZ/i\ë\å-¨ØŒ„C\ß',_binary '”wbš\0Ùz!÷\ë¶*:b°ŠôjS\ÈÌ«^%4ƒ\Ó','',0,'?'),(_binary 'ûÌµÑª³\Úu•õ\Í:´\è','wp-content/plugins/yith-woocommerce-compare/plugin-options/general-options.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÂªþŒJS¸Œ¦\ë[]n',_binary '991iœ£?R!)÷*9+\×v\è\æŸ|bTÚ„{¦\Ö\ã','',0,'?'),(_binary 'û\Ñ÷\ëS\ãK5Á47\ÊÁ“S','wp-includes/css/dist/block-library/style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿*\'j= Àqz\áe\êû²¿',_binary 'fñ}Ixòfn\ë1¼š6<vnOt­O[Bœ¨\âm\Öû\'9\Î','',0,'?'),(_binary 'û\Õ_\Óþ.©u\Ðk£;\Ô:h','wp-content/plugins/woocommerce/includes/admin/views/html-notice-maxmind-license-key.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\T«2h\Ì´\çDnMkJÀƒ',_binary '\É\nU\Z\í]·\\£¦¡²¢\nO¬a\ÅÓ˜\Å<û^øó\ì\0','',0,'?'),(_binary 'ûÙ«XM«Ž£®\än“\à_ø','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wcml/icon.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Uf\Ò=þ(Ÿ£ú“‚¢\0¾f',_binary '¢}Oˆš\\¤Dy25\Û&¿©\à(y¶zbÌŠ\Ä\Ê5)”','',0,'?'),(_binary 'ûåƒ’?ý©À	‚²ï–›','wp-content/plugins/woocommerce-multilingual/res/images/edit.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‘·•þ?P!T\ÉB\È\Ä\Å',_binary 'e½lAc“\ëô¿y¨¥\àë¶˜Ý [±±µr¤©@9Pg©ô','',0,'?'),(_binary 'û\î\Õ\Ô\ê+f6Q\áúüy9','wp-includes/js/jquery/ui/selectmenu.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³˜0.s\Îös@ {ÿv[p',_binary 'W¨Ñ¤]##Ä‘H!QqH¯1G*wþ/×™%Ž8\Ï','',0,'?'),(_binary 'ûðˆÏX€n\r÷\æ?ƒ\È','wp-includes/sodium_compat/src/Core/XSalsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p÷¦Æ®¹u¯„o7;~z',_binary '™¥¯\Ú\È %lòy½\'#[‰ö€_ò{E½]8%\Ü','',0,'?'),(_binary 'ûó/Ø²©–“(÷Ä¡>\ÑN','wp-content/themes/flatsome/inc/builder/shortcodes/values/align-v.php',0,_binary 'p~%E\Û`šNvò`)=X\Ì',_binary 'p~%E\Û`šNvò`)=X\Ì',_binary '\ÎS»°\\‹\ë$*±wùþ«;6ß¤»\è¥ŠÁ—¦9','',0,'?'),(_binary 'ûôCƒù¬üø\ÄZ®þ/îŒ','wp-content/themes/flatsome/assets/img/payment-icons/icon-applepay.svg.php',0,_binary '\ÆX<³\Ã\çÁú]ù»3)‰.K',_binary '\ÆX<³\Ã\çÁú]ù»3)‰.K',_binary '\ÊGVa\Õõ§Œ¨m@?«¼¤N›N‘®mÊˆ\Í*Ýº','',0,'?'),(_binary 'ûÿ\î\á?i.Q¿[ ŽE\á','wp-includes/blocks/post-navigation-link.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'E~)“¾m/ob¿:â„µr}',_binary 'kR\×%\Z\æ\Ëó£k\î\åOx5¿kˆC\ï“\Ìx\È\Þ\àX…£F','',0,'?'),(_binary 'üÂ°hˆ\Ø\nh¸}	„ø]','wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-compatibility-helper.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Œ¤hw-|‘€¾!¾¾2',_binary '£f\ßT~ŠžsJ±“\â\ÔDùÇ‹\"†ú\ÛBµZ°9\Â','',0,'?'),(_binary 'üÛ¤…D\î\Ú\àñ©T3`','wp-content/themes/flatsome/woocommerce/single-product/layouts/product-stacked-right.php',0,_binary '\æ|¹l\Âl4©I† ”¾',_binary '\æ|¹l\Âl4©I† ”¾',_binary 'o\Ü\ê‰^`±Ý“[\Â…\êœ\â~Cš\ê–\àIxT|RÆ˜$','',0,'?'),(_binary 'üV´\Â\ç2€B\ÃØ¶pB…‡','wp-content/plugins/woocommerce/legacy/js/stupidtable/stupidtable.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±ýy¹R\ÐN\Ë5\çH@s',_binary '/BË¸Á§{\ãú–ˆY¥zªPý\ÎõÁkGL‡yom\nH\è','',0,'?'),(_binary 'ü\á\ßj~\É6¸¹_;','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-coupon-form/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¡vi5òƒv÷ZXUkW¼Ó¡',_binary '\0kÌ¡\ÑÚµ\Z0x¥¼ž”|´!\Êkc´.E1F\Ù\äA','',0,'?'),(_binary 'ü\ã½\á¤Å±Q,4pEeM','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-hr.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#\É:%Å\ÄóÃ…­{|',_binary '\0x_B1{\â~\ruhõP¿ Àg-‡n	“\ËJP†\Ü?','',0,'?'),(_binary 'ü])\é\é	¹ƒó{—?R}','wp-includes/feed-rss.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'iJ­?YC–>^‘\îf¸',_binary 'fl’P»\ßf5‰2tY3‹x\ËÿõDÀ\Ñ×„\Ì','',0,'?'),(_binary 'ü)lUICVÁCa¯ÎŽR','wp-content/themes/flatsome/assets/img/payment-icons/icon-rupay.svg.php',0,_binary '\Ð	‹Ï°¿·\é\ß0\Î4;½›',_binary '\Ð	‹Ï°¿·\é\ß0\Î4;½›',_binary 'oI=6@_\Í>õ\Ò\Òt\Ö\ã2u\á\\gh:z\â‘Ô–¯›ú','',0,'?'),(_binary 'ü0<Ps\Éñ×žH—\ÑÁ22','wp-includes/js/jquery/jquery.table-hotkeys.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7?\ÒF5ýsS5\Ã7“ÿ,(',_binary 'J<Š\Í?Y‚ø°”½\×SuÅª¯U&Š\nNy´`TkL\ç','',0,'?'),(_binary 'ü0z\Ñ\\µxü«˜]Ž','wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-pl_PL.po',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÓX§n–¶o\çIðjÒMÓ•',_binary '¬¹x2‡/¦—4w¨1L—`•\àÆ°Ìº°³$2EB\ÏAŠ','',0,'?'),(_binary 'ü3‘ú\ä\é\í\Ê9`w\ìq','wp-content/themes/twentynineteen/style-editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ê\Í^€6s1\ÔeòH´',_binary 'õMX§XPŸ2½\â(m‚{ž0->ˆO\í›{\Ò93_','',0,'?'),(_binary 'ü8úz‚€Ž\"`=nš²','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/categories.svg',0,_binary 'ùf\Ã&õh\Ù\Çýˆ¸~õ\Ï\Ú',_binary 'ùf\Ã&õh\Ù\Çýˆ¸~õ\Ï\Ú',_binary '\âqé¯ˆ\Ë\æ\Ç\ÕE\ÊE\ÅÊ¾\áu~i\à˜\Ä\ÉJ\ÚR\Þg','',0,'?'),(_binary 'ü9(FŒRj2¹n6]Š','wp-admin/css/colors/light/colors.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ï3ûø|\ì™.%\ã«X',_binary '*5 ®¸OJ\è6\ê?_!Jño\áRpl\îož\Î?Oe','',0,'?'),(_binary 'ü<½‘m›ˆ`5—\ãEr\ÍR','wp-content/plugins/woocommerce/lib/packages/League/Container/ContainerAwareTrait.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹ðÕ†EšA1d¦i%DP´',_binary '¼œD\Ù?bþ\Ý\ÍT\Æžd\Øv\é\ßõ”ÿyšu·òl','',0,'?'),(_binary 'ü>[x+¦`F¯˜eªz	','wp-content/themes/flatsome/inc/admin/customizer/img/account-icon-image.svg',0,_binary '\Çýõ¾.YE+\Ý·\\iÁ',_binary '\Çýõ¾.YE+\Ý·\\iÁ',_binary 'Ž{‡š\"f\Ãó5X­}kŽ\ê\0óSE\Ý\Ý{\ç›r‚\Ú_','',0,'?'),(_binary 'üC\ä\î\"%W‚iáˆž\Øñˆ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-fee/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Qˆ\É\ë\é\àC\Î\"þ§‘ò1',_binary '%ü‡\'\Ð$4œ\âöqu·%¯M„añ\×\âz_x2(0','',0,'?'),(_binary 'üI½@Fÿÿ\çŸwµþW','wp-content/plugins/woocommerce/src/Admin/API/Reports/Variations/Stats/Query.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '^eA	\Éð\Õ\Zsa0O¸4°',_binary 'ú\è_\\8 û\ïfH×›še´`\n\í\ËVž\Îó3\ëX÷+¯#','',0,'?'),(_binary 'üJ’§ó!2 ¨\Ü\0­€Áü','wp-admin/css/about.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ä\\°µi¯?1ð¼?L\È`÷',_binary '\é\Ìcø^\Å\Ñõ©Ú²±–É&\Ôaó\ê’URO¹ÿX','',0,'?'),(_binary 'üS\ã°\Ç,¡…_%×h(pZ','wp-content/plugins/woocommerce/src/Admin/API/Reports/Coupons/DataStore.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\È+‹>°þ‡e\'*Y–',_binary '\0TQY¨Á	\î‚\\†x\ÄB’ð%½-1u\ÏÖ‘2\Å','',0,'?'),(_binary 'ü]	±©¯n_¦Ë¤[l\ê\Ô\Ý','wp-content/themes/twentytwentyone/assets/sass/05-blocks/media-text/_editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*]™í¯€c\Ï\ß\Ï*·\Í1\ï',_binary 'Z€Ž\n›\r~YW†m«\Ë\éU\è\Øô\Ñ9Ft\ÚQ¢ú','',0,'?'),(_binary 'ü^„÷N4Ó,ba§¦D','wp-includes/css/dist/widgets/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=\ÑWˆô•øÍ™ª[¨#.%\ï',_binary '´PIKƒg\"V²\nA»/\Ä\ä8š_pg—ò\Îö4','',0,'?'),(_binary 'ü^ùO|\':QÇ™E\ç\Ýð','wp-content/plugins/wordfence/views/common/status-critical.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÜR¦/C[€¶\å…]—u%ý',_binary '®W\çª\í\ëB&6˜9õgžk_¢ ŸEFý6\ÉI','',0,'?'),(_binary 'üc‘•‡8B:o§ºÎ²ù\à','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-taxes/frontend.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\é‡Ï¦¹^9xN\Ã7\ãl\Í',_binary '\Å\Í–yhB/¿~®¼†®\\«\ÖÇ‘‹ù\Ë\ètŽ\Ô:¦','',0,'?'),(_binary 'üg\"š}_¿7¸½¦\ÜJ5','wp-includes/js/jcrop/jquery.Jcrop.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'VÌž¢\Ü/K‘x¿¬¬’',_binary '\Ý2¬SŸ[±6Dv‰5bsô\Ù=‹\Ó\ÇNL¥wõ¾‘·','',0,'?'),(_binary 'ülH7\Â\'÷j›cox?/L','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/utils/index.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';\Ò¼\\/\Ö\î‰Z\Ëx',_binary 'þ¼ÿœ$mš[<8@&B\ÊN\ê\É\Ï\Úw¤±«,lq','',0,'?'),(_binary 'üm÷•%*ª\ë\ÞcœO\Ãn\r:','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b½K\"Å¤\íi[F14\Ó',_binary '\0j“}\âùÀ8Á²p\Ê£\î\Ðô™ ‰´óˆ\åW\åý\ëŠ','',0,'?'),(_binary 'üo5ƒ+°®\ï†I\Ä\Þ\ËJP','wp-admin/site-editor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ì …¥?6Þ¿¸Y(¡\îý\És',_binary '1$\åV†X~¤ Ã‚\Øv¾8\ì\Ý)¡þ_>™\nòv\ã','',0,'?'),(_binary 'üpÏƒ‘je—”\Ýà¾µ¿ò\Î','wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-a.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P†£¯7ƒvxr¥²?z \Ê',_binary 'hZ\Ô¥\Z\\\è°\é>\à\ä\Ð{%4¿¤F\n\ÓÔ’wŸË®ñ','',0,'?'),(_binary 'üsZXz\n\ï\Öl[\ÒDz\â','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/previews/grid-block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°*\Z¾™º†óTg²e\æ\ç¸',_binary '=%NZ\å[\çðsˆIÿ{Jq_+Xa\Ä\ìH.>þ³‰:†','',0,'?'),(_binary 'ütX¿\Ú0l\Ê\È?”Weô\á','wp-content/plugins/woocommerce/src/Internal/DependencyManagement/AbstractServiceProvider.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ö\Ô4Q¥Y\Ì\ín=üt',_binary '†\âIžú-¨šý\ÅˆCŸ“\Ö7Em‡Dš÷•ƒdA¿','',0,'?'),(_binary 'üu~m“@eý(\ÂVö_‚û','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-taxes-v2-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª‰û\Ó&£…þÙ½{=—8¼À',_binary 'í¾š2\ì§W\ã Ë™‡\Í\Ì|¸\Ä\"ƒ&ý—ÿ9\é7¼7t','',0,'?'),(_binary 'üv6Zþ\'õOñIL\"Ý•M\Ö','wp-includes/js/dist/block-editor.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'tµüX†F\ìe2\è÷e™\Ä',_binary 'ú\ëMn\Ôç‰¼\Ä\âuª^Œ\ånl\Ý}VUð0R:W','',0,'?'),(_binary 'ü}Ž\Z\àF?©Fs\çv›¬#','wp-content/themes/twentynineteen/print.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'u²Ž˜j%þ3wlL1*ñ',_binary '„.\\«¾J† ¯\ÅTC~0ÿ\Ùòö=¸/‘¸\Ù\×ñ','',0,'?'),(_binary 'ü„\ä{>¶\ä:±ò•\èw¬¦','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-actions-block/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'D¸\íXGõ þ\ÅJ\\ðò\Ì\ï',_binary '‘<3þ®†a\à€ý\ÞWþFºzŸf4\ì•%b5\'O','',0,'?'),(_binary 'ü‰p·Š9½6Ã¨\åR\æ','wp-admin/css/common.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Z¬cØ»9“­\Ø<\Ð<÷',_binary '^‚+¯\è{\ZÍ–wd—\Z¥”5\Â=\ØP´x‡Œ¬P¯X>','',0,'?'),(_binary 'üˆ£!ÀJV-û‰\Ì\×r®\Ã','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-footer-block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§¾Þ’¬óõÿaÈŠOqY[',_binary 'á® ŸüV|k¥z«\n¢h´ÿzL\äqk\à\ï\Þ‡P÷c ','',0,'?'),(_binary 'ü˜•ŒµÆªq¥æ‚³‹\Ð','wp-includes/js/tinymce/plugins/paste/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ë^\Ë\Þ\Îs×¶‹{°ûÞ‰2',_binary 'Œ\Z\ÅX8Ÿc+ˆxˆÎ· \á–ó­&Wgñœ`m†Ë´','',0,'?'),(_binary 'üšlxyý\Z\Âù\Ô\Ä\"–‘','wp-content/plugins/wordfence/views/scanner/options-group-scan-schedule.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'EU.7®\Ä\ïñH>iš\à;\Å',_binary '™\Ó,\åò+x>¯\Ì\× VˆŽý7r™LKs&Š¶G\íŽ','',0,'?'),(_binary 'ü é¸»x\ê\à+ø=V\é\ë\Ý','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-metabox.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'o,ŸŽq \Ìå¬¥27•\"ô',_binary '_¦uLùñO)*Á#-(÷½dyóŒ¶D·ø{\à','',0,'?'),(_binary 'ü¨ž¡Z™Ù€2\ÎB\åö','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!{\ÖhÈ¡R2Ëªí€¨6',_binary '»(\í1qKC©¥ö˜\Ð\àD?\ç~Ô¨\ë~OT\Ä\Ú $&~#>\à','',0,'?'),(_binary 'üª_½\Öà©‰’\Õ;…\Þ','wp-content/plugins/woocommerce-multilingual/inc/template-classes/multi-currency/class-wcml-multi-currency-ui.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'wŽ:˜	Ù¯\Óò‘\ZŽC²',_binary '\ÓJ³5fÚŸ	ùŒc\Ð}«\n¾ZøÂ€fC‰4\Ý^\Æ','',0,'?'),(_binary 'ü·qóLøó>\Ô\Æ#Q\Ä\0','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/Ctx.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñ•úŒ\ÅôôB˜\ì¨\âgYð\é',_binary 'ûõ‘:\âIZ®\íCý¢Z•\Ú8ÁÈ°ô›Lš\å]\é™m©','',0,'?'),(_binary 'ü»<l\æa¬€,›bX,³²','wp-admin/images/xit-2x.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'œÓ\Æu:@4\r…\â\Åz<5\È',_binary '¨S\r\Î}@½~Q÷:€Scµ±§\ê*d+\åZ\Î_¾{¬R','',0,'?'),(_binary 'ü¼\Ì>@\ë.\\`AŒô','wp-content/plugins/woocommerce/src/Internal/Admin/Onboarding/OnboardingSync.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Šx\Ýv%‡ü6\Âa\Ñù³',_binary 'Ë‹ ˜$\ã›š»³e	c\Z+U\ÚC¨ŸôÍ£\Ç»\é‘','',0,'?'),(_binary 'ü¾²‚>ˆ.;¬²‡b¸\è\Ë','wp-content/themes/flatsome/inc/builder/shortcodes/ux_logo.php',0,_binary '\í\Zck\Ô\í\êA:»\æ\èÿ',_binary '\í\Zck\Ô\í\êA:»\æ\èÿ',_binary '&3E\nº\èt˜òn\ÄnVF \Ø\ß¤ÿ\É\á6\æó*›&µ\Â','',0,'?'),(_binary 'ü¿šY.z\È¶ùV','wp-content/plugins/woocommerce/templates/emails/plain/customer-new-account.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r\×ö˜»>ƒ\Ãf\ÐW\Ì\Z',_binary '!¬ƒ\ÑF\ï>\ÔGQ\àø!\ÂM…™÷\'¶þWù}\n¦‰Ž(','',0,'?'),(_binary 'üÁ¯™\ä\ß4\ÔK9?\'Ò†','wp-content/themes/twentytwentyone/assets/sass/06-components/404.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Vz¶)TR\ÍÎ½\Å\Ä\Õ)\Õ',_binary '‹Gc3I½\ê>Î­¶\Ïj°\Üü§\Æð_/*‡D\Ó','',0,'?'),(_binary 'üÈŒ\Õ\\\æm\Â{’YK‰ñM','wp-content/plugins/contact-form-7/modules/stripe/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ö\äút^¼Þ§3Š\É\ëM',_binary '=ƒ\ìÕ¬8€\Ýx)/óß“õ™}œ \ÂÑ»Áz@öA±','',0,'?'),(_binary 'ü\ÍG­<\Ûh®d\ZW\r\ë','wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/OptionRuleProcessor.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¼„S\é,Yéž—ó\Ó\ZÓ¶Ó³',_binary 'ç—\Ë\Ç3ÁPñƒ  ·‹Ü´j|‘˜‚g\æð‹C','',0,'?'),(_binary 'ü\Ó\\ò­}€ý®eûmH\'\ç','wp-content/themes/twentynineteen/inc/template-tags.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\è8w\ã\Å\ïAœ]\Ú\áoU³p\Ö',_binary 'ðF®’¨}O\Ô\Ø\Êe\çùS>K*õ¿õ¹–F1“Œ+T\á','',0,'?'),(_binary 'ü\ß\Âb¸\Éh\ä(™-a]','wp-content/plugins/woocommerce-multilingual/res/js/currency-switcher-settings.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'q1IÈž<¢\Ó^>ñ\å²\á',_binary '¿L¥o®Ás²€]/© Oº3¤\í„mL\É~*±Y`\Æ2','',0,'?'),(_binary 'ü\ä>\Êq ~mò3\î=\í1›','wp-content/plugins/woocommerce-multilingual/inc/translation-editor/class-wcml-editor-ui-product-job.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ón\0›);™~¬%iœ˜',_binary '\ß\Ív+V$;\ÇVûˆlGGBž\é\ï94+t\Ôþ','',0,'?'),(_binary 'ü\äñfbú\Ç\×býKJ¢ü¨','wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ß#üý)A\ÄV\ÎÚ€¦',_binary 'Vó\Ü\\cú8´z\ÒT\Ï+³±\Ð\\š?v¹8}¾5±\Å<WÑ¿','',0,'?'),(_binary 'ü\ëd\ËqU­Icr+ª\Ý\Ðò','wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks/Products.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¥^\Ú\Å\è\ÖE\àfÆƒ¯³\â',_binary '…˜ZVuò+_u^H\é¯R\ß\Ë6\Â@³\ä\ì~‘:Q','',0,'?'),(_binary 'ý$is\Z\íÝš\Ô g\Ü]5','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-widget.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'r8/6¾1ü\í	1g­\Ù',_binary 'F\n\Ê3\æ}>n\Ø\Äþ]¨A\Ð!\ê2\ê=W\Ì\Äüº','',0,'?'),(_binary 'ý+q^e·•\é\ãgu\ÏF6\n','wp-includes/theme-compat/embed.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÈÅ¢s¾^\Ðô»q¢cbÿ',_binary 'Wõ\Üô5T¦pÁª;-¥n¬ˆ0»a‹•º©O\n\Óô¦’','',0,'?'),(_binary 'ý2¤¸\Ú(‚;f\Î\Ê:Q¿²','wp-content/plugins/woocommerce/includes/admin/views/html-quick-edit-product.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'c\0-ˆ\Ã\ë6£\í©xO\ÜWŠF',_binary ')¢\Æ<\ÊöŸ²À.¾$QN$\ç\"<‹°¾nÖ‡Z¦XqU','',0,'?'),(_binary 'ý<?#\àZl~|\è°d‹','wp-content/plugins/woocommerce-multilingual/classes/multi-currency/payment-gateways/class-wcml-payment-gateway-stripe.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'y+ô8\ã\åN&Šþ•4Ö¤½ö',_binary '™\Ú;Ei²ó \Ç\Û]8|u\Ùv”Ü¯µµ•q~\ng”\Â)','',0,'?'),(_binary 'ý=¼N´k\ÈÈ¢	¡\'o¬¬','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-middleware.asset.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f_’D1¦K³XP.å˜',_binary '$©}f‡RMÁ\Û?£K§\ïüIÌ‚{8j`µ\é}¾1','',0,'?'),(_binary 'ýGþ²!#h\Ô9	„ò&','wp-includes/js/tinymce/plugins/wordpress/plugin.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '/\Òc“± \î\Ù\á £Yº',_binary 'Ÿ£\í-‰›[´P\Ùg\n\èbª .\Z¿\æ\îf³-$\ç%\í:','',0,'?'),(_binary 'ýKjò\âªhº‘\èù','wp-content/plugins/wordfence/images/loading_background.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¬ô\'\é2û”p\nK‹X´\ì',_binary '\ÍÎŽ%X\ïÅ–F¼ÿ\ç\Üò1s\Ï;À\ÎL\ëzrç’»','',0,'?'),(_binary 'ýPð\Þ¾:ûv´¿Qw','wp-includes/blocks/list/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Dù°\íuhÞ½‡Œ¨t!8(\Ü',_binary '\Ú(0qDÅv‚.°\Ö²B¶\â\æ	û\ä‚\í?†Ÿ(kc)Äª','',0,'?'),(_binary 'ýXš7Ày»î³Sbw\Ï','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-products-table-block/block.json',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'è§¬ÿ\Þ5I\Å(w=\î¡\à¹\Þ',_binary '©Ô£½hÿ\Ð\Ç+¯\Ý#HZ–šòP\å^~c\ÝY5Z','',0,'?'),(_binary 'ý\\û–¯\æ3\0h]??\é','wp-content/themes/twentytwentyone/assets/sass/05-blocks/gallery/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ëÕ†\Ë*\\ü@pª<\Éjµ\Ò',_binary 'ÿ˜É˜´\è\Ü@‘©¼‹l“+X•­\îÁ\ÝSZjÇ›að','',0,'?'),(_binary 'ý^|\'@º…×Œ”˜›%','wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-order-refunds-controller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»t(’\\\Ý\Ð\Í\Äý\Ð\Ñ@n',_binary '\Ôý\î\Å\Ðad«n\Îô\ß\Ý÷\é\â[+­ù¦\Óó\ã\Ð\Í\×ü','',0,'?'),(_binary 'ý_\\9U›_³•b\0ÀõŽ}','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/single-product-frontend.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '«F\ï‡]S\ãú\r†¼\"d\ÕI',_binary 'Y*yŸ£ŸX?½b\ÙMtôp\Ì;\Ý{tj‚×¾6Ž','',0,'?'),(_binary 'ý`Sk\å\Å7Tt\àv¹ X½','wp-includes/class-wp-list-util.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²“\Z+vn\"uø‚½…\Ý',_binary '©±\Î\çà¶‘‰+Dc˜h9ô\\]-¹Ÿ8T•q9$\Æ\í¬','',0,'?'),(_binary 'ýeCÙ¼\âŸ…rV\Zÿ„!m','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-vendors-style-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\äC· ø%Ó o§3ûˆ†',_binary '»*	…©ôE>€<qñf\ç\íÂ¤*~¦½#E+€\Û','',0,'?'),(_binary 'ýfWœ>ÿ\ê\é+¶96*','wp-content/plugins/yith-woocommerce-wishlist/includes/class-yith-wcwl-wishlist.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'z9m\Í\è$Ó¸´',_binary '*¨}\Är\Ø\r„\Äk0&ú¼\ì©O]g\Ôõ²%Vy\Ð{','',0,'?'),(_binary 'ýfW\âH—4m&Ÿ…\è@¼','wp-content/plugins/ti-woocommerce-wishlist/assets/css/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '»\Æ\rEZKT,+Qœ»}',_binary 'H(ˆ9†mF™`øLy/üZ´ô¦<¼\×ú{\Ê8\Èf\Çd','',0,'?'),(_binary 'ýla\'\êP_b—m	!«·\Äp','wp-includes/blocks/audio/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'LY\è\ë(5?\ìpÍ¨\ëa ',_binary '\Ï=œUñ\Ö&6¥\Õñ;½5[¿\'³y\È+L¸?ZCW]’ƒ','',0,'?'),(_binary 'ýr°\"·-¥\0 E˜w‰¢X','wp-content/plugins/contact-form-7/modules/textarea.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'õ¬Ð®¢²)7ö!]“n\ÜXV',_binary 'oñÇµ\Òøò8÷t\'™O-Ÿyüøý\Éÿ;¥	®\'Ã¯','',0,'?'),(_binary 'ýus\ÛTÂ­B\âúµ\ä¬B','wp-content/plugins/wordfence/images/sort_desc_disabled.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '½¥J%{O•Z\"/\Öo',_binary '^*\Çn^\×\0m+¦‹!Nk\ÊÉŒóŸ\Ï/©¿Ô¯^k','',0,'?'),(_binary 'ý|\ÅõšMW«…\àj(ªÞ»','wp-content/themes/twentytwentyone/assets/js/polyfills.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'GI•^a\ã\"ê‚»\èf',_binary 'Oô]2¾‰‡\Ø<2\Ù\Î\nQx}ø•\ÃQ78\Ï\á@','',0,'?'),(_binary 'ý*¤\æ\Í\à3A¥Ÿ±±\Ùp','wp-content/plugins/products-compare-for-woocommerce/berocket/languages/BeRocket_domain-ru_RU.mo',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¤\Û\'CùZ‹{“Þ¼Á\Æ',_binary 'HG4aT¼g\çGDXú¢ñ×³‹`DFs=Rv\ê\êüð\ÛL','',0,'?'),(_binary 'ýŽy\Õœ²ÁhÃ½_lk\Ó','wp-content/plugins/woocommerce/assets/client/admin/experimental/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¯\Ò\á4 u0cFY¬½MN]¦',_binary 'S\äï¼°ÿº²\">\Öøôh5ŽL ²6ÐŠ)5H‹‚\Ç','',0,'?'),(_binary 'ý’ZL‹O’l\Ö\á','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Xsalsa20.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¦Cí¢•ðF\æ–hôz',_binary 'oÅ‘\nw¦n¾\ËpL”+;\Ð\Ì\í\ß~‹¨t2´P*Æƒ6ø','',0,'?'),(_binary 'ýxÍR‘\ÑQø†®S–','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/single-product/edit/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²i³ —v\Î5q÷ûO‚\Z½',_binary '·\Ïö!GT\å\Ï-^w\é»9F—¬¥‡“<\ÔzL\éS@‚f','',0,'?'),(_binary 'ý©\Õ\'\æ€B\âŠ­7S\Â','wp-includes/js/zxcvbn-async.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=$a\Ô[ZF)^\nŸñ~',_binary '\Öuîº¼Q9Ò«{½¼7o}ù€\í¶\î\æ`\ß-nW\Æ','',0,'?'),(_binary 'ý­{ 	\n|p£Ù¤','wp-includes/customize/class-wp-customize-nav-menu-item-setting.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ŒN‡=\\&m¼³|qBM`',_binary '‰nP@\Ü˜C\Ã³˜ˆ\0\08;‘¸„‹o(NÁ=\È','',0,'?'),(_binary 'ý³™Ÿ\ÏSR:Û¨8t\Ý\"­','wp-content/plugins/woocommerce/sample-data/sample_products.xml',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‰§‘=z>\âW¢\Î7fª*+',_binary 'jUXñ½w\Ù\'š\Þ\Ï0ƒ¾ÀœE\ÕÞš_œ\\µ#bFX\Ê','',0,'?'),(_binary 'ý´÷n×žJ’-~\ëø;','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ª\å\Èý\ÐE­®ÍŽ˜þ8a\Ð',_binary 'õH(\ÎËƒ¥\Z$\Í\ÄKs\ØsCùfR\×Cy¡$/\\»1','',0,'?'),(_binary 'ý´ö\×øõ)\Ý(¤\Ð<\Ù\Ý','wp-includes/js/json2.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ã\Ñ\Ê\ï\Æx\Ç}\'¸-¯·8',_binary '?	\à\Ðs¾s¥˜(q¦¬ c!~a\ÃÐ¶\ìHœ\\y','',0,'?'),(_binary 'ý»/=/?†\r‚\r\Ë2\éýJ','wp-content/themes/flatsome/inc/admin/options/shop/options-shop-my-account.php',0,_binary '\æ,\Ç\ßð€Â¡Nø\Ö2_\è',_binary '\æ,\Ç\ßð€Â¡Nø\Ö2_\è',_binary '‚±/õ	g\ÓEºo08]—\Í/=ø©p\Z\Ò/Ä‘\àe\Õy','',0,'?'),(_binary 'ý½\Ïl›®%\ê:š6{w©','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/query-state/utils.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v\Çv§2ü	6\ÑO\Èri',_binary 'Ãš \ê\Zwš’7¹.\\\ê\êSùkŸ§‚²+ô\ãN•Œ4','',0,'?'),(_binary 'ý¾[I,=›e&\Î6*¡V','wp-content/plugins/ti-woocommerce-wishlist/assets/img/upgrade_to_pro.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ZŒ\ÈõµÉ‚\å\"¸|P… ',_binary 'žzXðLƒ¥Q\Ú\ËÁ£\é¡À?_[U¿\èe:bþ\×¹\Ð','',0,'?'),(_binary 'ýÀvhy2\Ê\æ%\Â\Ë(±»)','wp-includes/blocks/code/theme.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\\\àYW |¡`©+[T}@@',_binary 'ºÐ¿\ÅO	\Ò8j’\Ûøo¢\Ñ@D6V\nL¦¦cvC¦','',0,'?'),(_binary 'ý\Ä\Ð	’*\àO}w>c','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-cpt-unlimited.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Å°\Ò\Ùn¾\ë-(\Ñvñ™…',_binary '©DF\îs\Ð\Ãþå¢©gö—õ€z¡\Òój\ÆYo?4ó¸8','',0,'?'),(_binary 'ýÄ„\Ø\Ä9Aš0\Æ\Û(ÀF','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/single-product/edit/shared-product-control.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '*þ\ç<~\Î\n€òU—uò\Õ',_binary 'ò²‡q\Ø\r\ì\î\Û.’£‘£\Ü<¸\ÐJµ½y\rX!x\Ó+^','',0,'?'),(_binary 'ý\É\Ú!|MWk¡òpr³','wp-includes/blocks/query/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ìølzi™7\î½(D±¬Œ',_binary '”ó$\î\ÒÜ—R+›¾ø¥\Ùj]ò•g®K]q-„\êDU`','',0,'?'),(_binary 'ý\Ía„\í\'@Tç‘“‰õ\Ö\Ê','wp-admin/images/date-button.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'v!0Ï$\Ç\n-æ½®L\å\ÌT',_binary 'h\ÉÅµÎ´ä˜¼ù\ïn$°†\Ûó\Ï\ê£¹‹\èq!I#ú','',0,'?'),(_binary 'ý\Ù6>&‹kø0\×É¾','wp-content/plugins/yith-woocommerce-wishlist/includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ñÍ‹IXeè¦™9üÄ€‘;',_binary 'i0\å\rN&ûÎ²ƒCºUMr­(þµ±´Ý‡\êcF','',0,'?'),(_binary 'ý\åµ°\â·\ÈXƒ?s‹','wp-content/plugins/woocommerce-multilingual/res/images/placeholder.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ê/˜\Ð1I\Ôcžªfü',_binary 'µ\Ø{·ã¿“\ÖÙ¶!¾ 8({*x´+z“y\î\ëa—·','',0,'?'),(_binary 'ýñ@\Þy­\ã\ÛÐ7\\\r¨\Zø','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '±\Ä\éˆ\Ì\ÃeSu-µ\ÑÕ˜ú}',_binary 'ix\Ê\Ê\â_Kn¡¤ð¾”&¤F\Ê\à¾\à:r‚„a\í0','',0,'?'),(_binary 'ýøµ=Ò»ý˜\Ëqp\ï)','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-taxes/edit.tsx',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Qg¸°WƒVcu‡6=',_binary '¨‰g8mÉŽ‘üL\ï:Gù\0¤\Í\à\ÖkÌžwÁWr^','',0,'?'),(_binary 'ýøñ–mBC„1\ÏóÃ¥\Ó)','wp-content/plugins/yith-woocommerce-compare/assets/css/jquery.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ä\îb\ÅJ\Õ\ÉY\ÎZP\Ý\ÒM',_binary 'Ÿw.n\\1 	°0ò\\Ú³žP\ã\Û\îH3›Í®P','',0,'?'),(_binary 'þútŒ7_|«\í…','wp-content/plugins/woocommerce-currency-switcher/js/chosen/chosen.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ë\\‰\èB¢|Wïœ“%iA',_binary 'e\Ä\Ò#Àa^\'c©—IK\ãd\ào!uk\âŠ\0œ®Öƒ','',0,'?'),(_binary 'þ#+\Û`¹²¦\Ç&þ/‡','wp-content/themes/flatsome/inc/admin/advanced/classes/class.options_machine.php',0,_binary '‘™r\Û›\Z,o.n\î\ã¯',_binary '‘™r\Û›\Z,o.n\î\ã¯',_binary 'cO‘vDÿ}ž•‹£W£n\'ß½~is9\Êó)\"·\Åø\Âj9','',0,'?'),(_binary 'þ\n†‘ø»ÿ\Çù#[\Øþ€n†','wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-shutdown-handler.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'µ\ËÓˆ\äŠ.µ\ì\Ï\'¹;',_binary '(¥˜m\äŒ8:¢ˆ²\Ø\ÜIw\ÑËº\Æ\ç\Û{XõG©ª	H','',0,'?'),(_binary 'þªYi€8y\ÒL„­\Õ','wp-content/plugins/ti-woocommerce-wishlist/integrations/woo-payment-gateway.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Í\áJ\ïg\nÒ¼–\Õp\ã',_binary '®:¬ú†\ÜnJ—\Ä\Ï|d6©?	\ß;\\…S‘q&$œðH','',0,'?'),(_binary 'þë‚\r?8[9€kQ\'s','wp-content/plugins/wordfence/modules/login-security/views/options/option-select.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ˆõ!7ôrõ\Þeyùs…\Z',_binary '@\çú}µ\n²y.\'w°,\ë5öe\"FïˆƒE½Yb\Êv@\Ñ.','',0,'?'),(_binary 'þ\'TúŸ\åôÌ­\éY²Ç™','wp-includes/customize/class-wp-customize-cropped-image-control.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'G\áp[\äq}yýª1‡',_binary 'Žx\r:šœó‚ö\Í}¯šgR)\ê`Ÿš‚\×k’M%','',0,'?'),(_binary 'þýþœ)z]!?»±aÀ','wp-admin/images/media-button-video.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Â\Ò\ß>ýÀ\Ûu‹€e­wðJ',_binary 'Y¢e¸—\Ü\"n+ò#@¬õ¾Æ¼†Z‚†\Äg\áVPþ\é\'','',0,'?'),(_binary 'þ%|Ý½°>?v{j\Ê·','wp-content/plugins/wordfence/views/scanner/issue-checkHowGetIPs.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'V\Ä\ß=\àl¬\à\ï	2\âXÿ•',_binary '×´µ0\Ë\ÊªM\"—¹r,_\ÑÆŽ>)G”þ\Íñ\éwg?','',0,'?'),(_binary 'þ,ƒ\çmð»A\Öqß¸:\åø','wp-content/themes/flatsome/inc/shortcodes/row.php',0,_binary '[˜	\ç\ÚÁ2J¿´Î…‰D',_binary '[˜	\ç\ÚÁ2J¿´Î…‰D',_binary 'ýû0OkAcz\ßÂ­Q­“5ž˜ù22\ÈQ¶©+t3xŒ	','',0,'?'),(_binary 'þ.\Ù\\f¿>!‡+ŒöŒŽ©','wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/woo_related.svg',0,_binary '½Uõ®sƒ\Ý1­mru7‡ýa',_binary '½Uõ®sƒ\Ý1­mru7‡ýa',_binary '\n{\Þ$Tî§œ‚™q¸[\ï\É7´‡\ÖTX\Æ\î\'\ï/Ÿ','',0,'?'),(_binary 'þ/e\n•¬o†?}m‰bK','wp-includes/blocks/page-list/editor-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ßv&ó\Ñ¼_»\'ô‰\r',_binary ' ƒŠ\Ø<\çiJš\Z\nq*s#\îù“\ì	–p¯’\Î\Ìe','',0,'?'),(_binary 'þ1˜<†sö*Q¼hk\n','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/notices/Texts.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b^\ä\ï–{¯Ÿ[h¿¸C<A',_binary '\ã*\rÇ€6ø8\r\ØÒ™”ë¾†ˆDs\Í|‡:d‚	ó­}Ž','',0,'?'),(_binary 'þ5.”»\ÅrE~y\'•&­','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-tag/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N‚’7ß†õLÁ˜uC1­',_binary 'kw`C\é\ã-\ëjd’ô\âª\\È¶š\ß7>“v\ÌS^Áb¬','',0,'?'),(_binary 'þ?Ò›8LšÁ\Ür†xv8:','wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/styles/style-3/actions.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ËvŒ\îŸþC\å\ÍôUBoˆ',_binary '%ž\rj\Ã /6ö·\r˜•¡\Ì¹\ÒIBp¾\Èh','',0,'?'),(_binary 'þF\Ï%­³C\Â\Ô0»£¡,','wp-admin/css/list-tables-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1À2\æ\Æþðšq¶\är9',_binary '\"¯s¾\ïJŽ\î\ÝDù¥\ÇÂ«œ\é3~ E1³’ý\éq','',0,'?'),(_binary 'þI\"\íp¢\Ðt\ÊQ¹\É[Z6x','wp-includes/css/admin-bar.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '§vx\Ê-~S<†û¥z‹\Z',_binary '\ÐU,\Z‰…¸¿X5=\"ôû¬d¸<ð\Ðñ—,[Å™¦ð~','',0,'?'),(_binary 'þLJb;\Ç{QªF¨(S»÷','wp-content/plugins/woocommerce-multilingual/res/css/currency-switcher.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-ñib4\Ür=Ü”¸%:ÇœF',_binary 'žhøŠP-hƒõ/õ¶A–f¶5C¦ñ’\Û\ä%q	¬7','',0,'?'),(_binary 'þL‰oA7Ÿñÿev	','wp-includes/blocks/loginout.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\í\à ¾\êaG*qc:\ØB{',_binary '\ÅK\í\ærŠMµm8n\êJK€¨»>`Š­A\ËÜ…÷¼j\î','',0,'?'),(_binary 'þWzY!­a˜\ÊvwQ^Þ±','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ý\Ö_ÿŠu¦	´!´\ã#~ø',_binary '¡aoJ¹W?ý\ç(¬~1#u(ý±NSV\ës;c\äy¬ƒ','',0,'?'),(_binary 'þZÁú\Ê\ÌP]ó\ZW¡À','wp-content/plugins/ti-woocommerce-wishlist/integrations/litespeed-cache.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'À8mD·¿°!øa?¨óf',_binary 'X\Ë[ý1œrÉ­\ØU1º\Òûº±u\r\å\Ñó&\Öý¸‹\å!R8','',0,'?'),(_binary 'þcµ\Ôwk(”‘ø43\Ã','wp-admin/includes/list-table.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '(\ï¿¦3û·|\êca\ï–\Ø',_binary 'bºüF|{s4sœ˜.& ;\r^Šý´\ä\íf¿€û','',0,'?'),(_binary 'þgV\Ü\à\ÖHIwž\Ó!µ’À','wp-includes/css/customize-preview.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '1ig`¨\Âoù¦ÓÙ·1>',_binary 'Ÿ>kdUŸ†œ\Ú÷…³§‰\ç=@Rµû\ç\r¥‰\ä\Ëù;\Ú','',0,'?'),(_binary 'þhœ¡\Öz¾\ÜfõsðYr³','wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/cred/icon-128x128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­iñÎ½b	Ê•}\Â\ÐÅ”¯',_binary 'ñ2h÷\0¡ö g–>3\ãÒ·µŽXaM?œ–;óÎ«\Ä','',0,'?'),(_binary 'þojdy…f÷_b&xNüK\Ò','wp-content/themes/twentytwenty/classes/class-twentytwenty-svg-icons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ']T§\Ã@\å¹wF‘\Ð[ñ$\Ô',_binary '¤Á.·\Ä\"a´qš|\Ø2?±š£¤=0w…€ ô:Ž¦¢','',0,'?'),(_binary 'þy.{üuJß 5ý[\Z.','wp-includes/blocks/more/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Sþê¦—+®H)š6“û',_binary '-d7¼—øŸ\Ñ\Õv[p£Î½\È\ÐPk4Ý\Ðñ±šs\"','',0,'?'),(_binary 'þ};\ä1£òj7‹2­\Ì\rñ','wp-content/themes/twentytwentyone/assets/images/Daffodils.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '”#0QY—pËš”AO\Úe#',_binary '4d­¬\×SHÞ˜4²ˆ2pâ¦¿×•\çˆ/\à•?õ	±Gª1','',0,'?'),(_binary 'þ}€\æA©\î5\í PÔ†\Îô','wp-includes/blocks/gallery/style-rtl.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\É\Å\êÿ\ë‹i“\'c\çQ6ý',_binary 'ci$LŒL\\C¹>¡‚\Î/3Š(nh5\Ë\ërŠz=s','',0,'?'),(_binary 'þQÖ¿6“\Èyq\ä¢88','wp-includes/theme-compat/footer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'f\Ë8ó\ÍyÌ»\Û@ó£Bò5',_binary '][ü—ùÛ­\â’}ŠßŸv{“c¡vÒ§{P»¶K1~¦ò','',0,'?'),(_binary 'þ†\ë[ÍŒqq¢Ì¬T¢d»','wp-content/plugins/woocommerce/templates/order/order-details-customer.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '™\Zq\êŠ\ä^3[KJ	_\"',_binary '¹òÓ€f§“ŸDI\rº\Ó\Ó^®¬’|8¸ý…\ìvO·JRu','',0,'?'),(_binary 'þ‡—N\ëF\éd\Þª“ñ¾\Ó','wp-content/plugins/woocommerce-multilingual/classes/Rest/Hooks.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N\r‹l„ð·ýYdòm\Ñ)n\Ù',_binary '\ãF\Ñ~m9R\ÂNk\ì\ÏMW¹\Åd\Ü7gYÁv÷\í\Æ','',0,'?'),(_binary 'þ“˜\Ôy±\á/q/7Ž\å÷','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/price-filter/block.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '=\ì|æ’©<;\Î\ïiO',_binary 'º\Þ\Ò\'\ÔŒz\æÜ‘À\ë/Ž\"‹\ä¾ü³¼E¥T,-','',0,'?'),(_binary 'þž\è\Â+•g\ÅQ)iƒ\äi\Ø','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartAddItem.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'NrÀ§\áGVsƒ\Ü’',_binary '\ÌmOAœj\nÏ~ŽD³c[Y‰`°­O\Ú&','',0,'?'),(_binary 'þ¡\Öû;‰LzOMü\'UT','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/products/commercial-tab/DownloadsList.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '$:À\àôjóc¬\Íõ\â—',_binary '¤\ì\ÉV‹h\'´[W}_—óy\ÞY¾´\r%\Ä~\éŸcV\n—ˆ\Ö','',0,'?'),(_binary 'þ¤™=\Úøk\Ù1m\æò\Ò','wp-content/themes/twentynineteen/image.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '-\"/‚I\ê—ØU9\ê<\Ý',_binary '\Òó\rOK’÷û\ïRÆ©eœD°\íÚ“8Ýƒÿj¶œ0@','',0,'?'),(_binary 'þ§ýß¤œ.\Ú?\Ã`gY®µX','wp-content/themes/twentytwentyone/header.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '_A£€õ3“cI\ÌsœV9V',_binary 'õyˆC8\á\î\ÄQ\å~\çC\Û\"\Ý	 \ì\Ý;k\Ý\Í\âR\Ør','',0,'?'),(_binary 'þ¬\ÍGk|x­‹hDOk\æY\è','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/feedback-prompt/style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '–\ê\æG:©*­´\Ë.\ï°°',_binary 'ú„\îV¡=¯«…ZUü\å\Æjöûx\r´¡òVðøL³\ÇÀ','',0,'?'),(_binary 'þµ¦€\ßÃ¨?\ÙR“\×ór—','wp-content/themes/flatsome/woocommerce/single-product.php',0,_binary '›¦u\ãEQŠ„\ä\rŽ‹\ê\'\á',_binary '›¦u\ãEQŠ„\ä\rŽ‹\ê\'\á',_binary ']K’´8m\×R\'©\Ê\'5þ,¢tw\Ê \èØŽ©}(Uÿ','',0,'?'),(_binary 'þ½þ“û=•„´H`/Ö³\ë','wp-content/plugins/woocommerce-multilingual/inc/translation-editor/class-wcml-wc-admin-duplicate-product.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ôÿž=€\Ë0¯f Á·\Æ',_binary '–9ÀC\ç\Í\à{‰§5\âM\ÆP²ú—kW\ÚØD7i7º—ð','',0,'?'),(_binary 'þ\ÈrA|Æ‹\îø\ÄdƒOì¨°','wp-includes/blocks/image/theme-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ç\î«eD5P/BB\ï4,\Æ',_binary 'óA‡ø-„\âkÜ²…úBk\Â:÷SQšg\Ó)s“ž@c','',0,'?'),(_binary 'þ\Ï+\íqL3·Á\å¤lu','wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-plugin-panel-wc.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Únõü_\'=ÅµJ&š\rû¥',_binary 'L9;\æ9Ü½÷\è\Ü @¶eÔ‰\Ídò@Œr\ì\'<Sot','',0,'?'),(_binary 'þ\ße\Í2¡U:\Ì2¢½\æ','wp-content/plugins/woocommerce/sample-data/sample_tax_rates.csv',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';Bõ‚ªtÃ¹o›J\åt',_binary 'üs\Úp@R¿˜$1ó@M­e«•ËŒ\ë\Å2Š|Wi0•L¿','',0,'?'),(_binary 'þ\à¢¿w›ñ\'¢6)','wp-includes/rss-functions.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' xrþ6\ï2¾\'Œ]Ÿe\àl#',_binary '\ä~^ÉŽf}nú\ÞBhý\Þi=F˜\nƒ	¸\Ð^\é,','',0,'?'),(_binary 'þ\ê\Æö\ÕNº·9¥{®;','wp-includes/js/mediaelement/wp-mediaelement.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ',m;V*H\à\ßTt™\Ô~Xû',_binary 'œ©a„Ô‹RYå“\Ûñ\Öaž­ö³<þn[G{=y3\Ê? ','',0,'?'),(_binary 'þ\î.ˆ ”I\î\nfqñM9','wp-includes/sodium_compat/src/Core/Poly1305.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '!ðiœ\ÑL³V=X+²	v0~',_binary '4\ç\Î-<4®,\"V²È±XÊ˜Ã®\ÊhR—	KþF\ëk¡','',0,'?'),(_binary 'þômŽ85B\0\åþ™tEK','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/schema/test/utils.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\"tª¬™k/lz<—Rü',_binary ']ƒ\ëÀgY§„u ý-bŒ\Ì(\Ü4›\Æ,s5õ°*ôñ!','',0,'?'),(_binary 'þùj®?ýC<^õ,Œ\Ý','wp-content/themes/flatsome/inc/admin/options/header/img/header-cart-top.svg',0,_binary 'ò\ÆS\×\Ü^ºwuŸB5ÿ',_binary 'ò\ÆS\×\Ü^ºwuŸB5ÿ',_binary 'ý$±®4wª\×(ú	«¦<\Ç\Â%\ZÀ&Z‰žxGAD\Ñ\æ†','',0,'?'),(_binary 'þþSöÀ4Ÿ¹œk\ÑG\Ú','wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/password.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'R.ûfÀ1šI\Ú\Ú\Õ',_binary '–¸Œ\ãe4\ÊG´x\ç\è¸A\è#°B?\"°—Í¯\nG\n\æ;','',0,'?'),(_binary 'ÿ	\0\Å])2£ù\Ü\Ýö\â>F','wp-content/plugins/woocommerce/assets/css/wc-setup-rtl.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '­œ¦%v—\á\Þ\Íô|¯t{',_binary '“wS°#ƒ¾,Wy\Í{Á–CñŒ¶Žhvt\Æ\nÈ6','',0,'?'),(_binary 'ÿ\ZM\ëƒ-<\'†^\æ¦ü©','wp-content/plugins/woocommerce/assets/css/wc-setup.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '°:Ñ\îw$³lCöj²®Q',_binary 'h–mi\Ã@b\×ÞŸ§UýüDþ«YÍž³w\'\ã%\Í#','',0,'?'),(_binary 'ÿ\Z\ì\Ìï‚›¾õ\ßbµÞ‘y–','wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/dn2.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'øX\Í7!®!TÀ–½.«\Í',_binary 'ó¯\Ú\íIÖ’¥ú\ÅzÀY©£¿¥|.ªŽ_IN>&wZ/','',0,'?'),(_binary 'ÿ £\Úk\×^4:ú\0\ïüŽ\×','wp-content/themes/flatsome/page-my-account.php',0,_binary '\nHŸ.l@ôscL\Ç\Ú0`\\',_binary '\nHŸ.l@ôscL\Ç\Ú0`\\',_binary '\Û1‘\í£ï¡—Ç­F³\Ìx\Ò\ã\Ò\ÃS\ÈIwQ¬3r\ê','',0,'?'),(_binary 'ÿ\"U\ÕF~B‡.\è\ÜS','wp-includes/blocks/video/editor.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'gv¶’\ÖB“\ÍpHðµ=¹',_binary '\Ý\Ä,¼TD]\Ç»\Û Œ¿•¨œBM‰¼\Ý6ê—Ž\Ò5Q\ç”','',0,'?'),(_binary 'ÿ)w\Ñ2\æ3YFsm\ìô\Ñ<','wp-content/plugins/ti-woocommerce-wishlist/views/admin/export-import-settings.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Ú€\î®ôªÔ•ì®œQ±\\\é',_binary '&÷(¾&7\Æu;—¶\Èešdv ›O\âô%\îV¹F\ÔþMº','',0,'?'),(_binary 'ÿ7¿ód„ˆÆ˜%0\")—*','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/DframeInstaller.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ';<J»¾\ÔE&$óô”d§c',_binary 'q%>D·$$¥‘‚\å:üŠ\ãjúõŽž\â\Òk ¤z\Â;\á“','',0,'?'),(_binary 'ÿ;`º$r\çŸ\Ë\Ñ$³ž¦=','wp-content/plugins/wordfence/images/icons/warning128.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'p\ÏGÀI\×t*ö“\Æ\ÊNp=',_binary 'ù¹\ä\Þ*“/‚\Ø\äÈ¾s›øt\èAþˆ¸\Ò}.b\'\\','',0,'?'),(_binary 'ÿA\Z\ç!\Âý\0´Ë¸Ã¸·^\Ï','wp-content/plugins/woocommerce/includes/tracks/events/class-wc-orders-tracking.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¿Yü¸#\'À›­C§¼Y\Äôñ',_binary '´oò\ßYÿõ\ÐY\\\Æ£H\åÁI\Ð!\Ü\ê\Ìö°[’zŠy','',0,'?'),(_binary 'ÿAú£a‡K\Ôoùƒô¯+O','wp-includes/blocks/post-author.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 's#ûºZ\Éx\éåª¦lU\Ó',_binary 'Š¿Õ˜Hô(6g\Ú\\¾\ïŸ$\ÌZ\ëT\Ù<¨\í7+P\Ö8»','',0,'?'),(_binary 'ÿBù¨-¹/f$Ÿ\"\ÊÀ','wp-content/themes/flatsome/inc/builder/shortcodes/templates/ux_hotspot.html',0,_binary '\'-‰¤·Q]4%\É:',_binary '\'-‰¤·Q]4%\É:',_binary 'R~’òš·lÔ£2R\n­\êG%\Ùy9=þ\Ço\Å\ÄQ\å“','',0,'?'),(_binary 'ÿE58¾ùyª\ä\ÔWs\ÖOº\Õ','wp-admin/css/admin-menu.min.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'W\\P\nŠ\"owÿ\Ü|ª!«',_binary '÷…ûtK8t\Þ\Ð\Ý\Ùð\rYÞŸ?_<¤ƒû6\Çr›','',0,'?'),(_binary 'ÿGL\Z:\èÃ•\âG\ä}·ô\Å','wp-content/themes/flatsome/woocommerce/notices/error.php',0,_binary '\×lj…®ö»©­UJ2œ8\Ô',_binary '\×lj…®ö»©­UJ2œ8\Ô',_binary 'þ`\ïSpÖŸü1\ê|E9u:\\/‹·Á\Ût\Æ\í/0«…ó','',0,'?'),(_binary 'ÿG\\H\Ü™’5;¥\ÈZˆn','wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/mixins/_grid.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'uz:DU/Y¯ˆ@o—\".',_binary '™˜lõ§\ÜŠ\r˜©Tu\ê@þ\×_•y™½¿M>šò\Ðù','',0,'?'),(_binary 'ÿLTûò.](Ô…uþ_³õ','wp-content/plugins/nextend-facebook-connect/NSL/REST.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@j‘P3¿RQ¼^yK',_binary '~\é\0‹°\êÊ‘:ò0\n­\ë>pk\ÊNŽ’ö“Du8R','',0,'?'),(_binary 'ÿL\Ùó\êóe5x?e=\æˆ&','wp-includes/js/plupload/wp-plupload.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '@¾³ŠnXÇ‘Ÿºi)',_binary '\Þ>\å#Àci¢5\á\Óct6\ãø\"\à\Ç©ðwº)½','',0,'?'),(_binary 'ÿM\ZJœ°‘YÙºØ¾i\Ù','wp-content/plugins/woocommerce/assets/js/frontend/price-slider.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '#>Lª½\ä²ôÀ«ªŸl\á|',_binary 'Z7vF¨\ìÌ¿‘\ß\ÄQj\ß‹ßž;\r÷KbW°\"	\n','',0,'?'),(_binary 'ÿQS¾2õ#\Í\ÃÁ]¸srt\Ô','wp-includes/sodium_compat/src/Core/BLAKE2b.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '>\ÄŠ\ÃÍ¯\ZHdy£›4',_binary '-œÚ£¸ªÀ|A\rc¾€w÷H4¨Up’»\Ûc\Ñ','',0,'?'),(_binary 'ÿ^M\r\Èh\ë;k¸ð\å\È','wp-content/plugins/woocommerce/legacy/css/twenty-twenty.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\0\î )\r[\æ‚÷D³¯8\Ì',_binary 'ž¬´\Z–Ö¡Q/hWžƒÁ¢\æ‘\"u¸«¢&ú\éó©?zð','',0,'?'),(_binary 'ÿ_\á\Ñ#LG\êÀ\'\í™\\B\ï+','wp-content/plugins/woocommerce/assets/css/marketplace-suggestions.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '›‰T1W\àõ/21yC\â\Ü',_binary '-\ã»û\ÒÌŸ,¿¦ø°²“£Fºó¶²@\ZÁù-þF\Ñ','',0,'?'),(_binary 'ÿkŒùþ\ÏPP™˜1<\Ã','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_files.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\êou\Íl\ç\Û_›4@«¦',_binary '6b% \"\ÄÊ´s\ÑJ\ëp3°¿·\ç8Ó·ƒSÇ™:ú±ƒ‘','',0,'?'),(_binary 'ÿm¬³\Þ ¯¶ñx\Ê%ˆ\'{','wp-content/plugins/yith-woocommerce-compare/assets/images/03-icon.png',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'B\ÄNû»\êøÈ“x+-gX\Þ',_binary 'ª¾\'^\'Æ¤”)\Ô<A\á·2g…®D¸\Örz˜”ðÏ”','',0,'?'),(_binary 'ÿq0 \ÔöSÇ‹\Ëk/µJ','wp-content/themes/flatsome/inc/admin/kirki/modules/css/field/class-kirki-output-field-multicolor.php',0,_binary 'êª\Z‰t]}iö’\'\Ç',_binary 'êª\Z‰t]}iö’\'\Ç',_binary '8pŠ;öý°qšW\ï©Š¯)”÷|¿\ÌÆºd\Ç8çª‹','',0,'?'),(_binary 'ÿ|\å}¸Ft8\ç°h\è\'·','wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Shortcut/ClassParser.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ÿVü’Ž=\åd¥~´5¤\Ä',_binary '¿\íVVñ³ß“efª—E\åvßš§6KB0;\Õ?\Â2\\~','',0,'?'),(_binary 'ÿ€kn‰+\åZö1\âÎ¾nb','wp-content/themes/flatsome/inc/admin/customizer/img/portfolio-title.svg',0,_binary 'l\æ¤_ÈŠh7§¤+ü\Ù\à4',_binary 'l\æ¤_ÈŠh7§¤+ü\Ù\à4',_binary 'J2X?}8~ž‚›º1 ¸DF\ÇGñ«s?†+@%B)!w','',0,'?'),(_binary 'ÿ€r‚)E\å»-7-‚ƒ’.','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/dropdown-selector/selected-value.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“µ<e\Ô\Ùw	€1ú”L\æ',_binary '’VZá‹¹”#w\Zñ\Æ\å\ÅE\ç+S\'µõ*zý\Æ\Ýeq','',0,'?'),(_binary 'ÿ‚<\Åfú¯8\ÌYò)‹\ÞV¾','wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/laser.svg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÑNƒb…ôW “õf\ê›@¿',_binary '\"ia^…e«ûD(\Ý\çñY—†²!­‰DHˆ”','',0,'?'),(_binary 'ÿ“HF)\\\çÁ,‘bôý','wp-includes/js/jquery/ui/controlgroup.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '³€\Z8¿\×vòwµs{\ëo',_binary 'o„‘\î\å9z—6\é9o2öh\É*%UuU@Ó§\ËZÛ²N','',0,'?'),(_binary 'ÿ—~%B—\0ƒz˜\îõ?o','wp-includes/IXR/class-IXR-message.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ÚJ£/\ãz\Ä*ùzÍ·ù;',_binary 'lG\'\á\ír5¹\Ñ\ï›+¸Ì”Mh\ÊShq>\ë\â­	\0Ï¦','',0,'?'),(_binary 'ÿš´p½\ÞKS_e\ÖeJq9','wp-content/themes/twentytwentyone/assets/images/self-portrait-1885.jpg',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '²$­Y\ã®gs|Á\ØBMj',_binary '®©¼£›Â–‹ƒ\Òòõ%*¬kb$¯ZR\ê‘ñfŠi\î–`¡','',0,'?'),(_binary 'ÿ¨a5[4ü5¼MepC','wp-includes/js/jquery/ui/effect-bounce.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'rmt²xLª’4_\'¼\ÞJ',_binary '‹A™§\â\ç\ê \Ì$`»\îL®¸¸^X$H^\ã\Å*ù','',0,'?'),(_binary 'ÿ¨\ÔÝ¼jr`§—Ì™×¦\ï','wp-content/themes/flatsome/inc/builder/core/server/src/Ajax/Posts.php',0,_binary '\Ø\'*%ª1í‰¢©¡Ž',_binary '\Ø\'*%ª1í‰¢©¡Ž',_binary '\Ã\ÝÕ•xÍ#\áR\\|A\Ï\Éø\é«\Ù\Êx\Í$¬(s´\ÏpŒ','',0,'?'),(_binary 'ÿ¯|\Ù\ÛÚ“Mó–­¡9“','wp-content/plugins/woocommerce/assets/js/prettyPhoto/jquery.prettyPhoto.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ð\á=e´Çš\"¤«žk\Íö',_binary '\çe‰Œ\ÚJŠR.(70œð¿ 	Õ’¸uLQ&\âð\à)r§\Í','',0,'?'),(_binary 'ÿµS©CRCþül¸\Å','wp-admin/css/colors/sunrise/colors.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‹\å\ç$lY­\×FÀ\ÜR¨',_binary 'k©—vžY\êŽß\ÈR\Ñ\ßTR\á÷‹N*!\Ï:¦aH','',0,'?'),(_binary 'ÿ»\æ¸ß¹u7õÀ\à[)\äh','wp-includes/blocks/embed/editor.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary ' ~\âs-ŸBsVXd x–\ã9',_binary '8Z\ÑÁÌ¹²Q£¯v|¢5VÌ«ÿzVR³2\á-¬†e±¸a','',0,'?'),(_binary 'ÿ»þ¯öÿ\ÇD½^\É','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-icons.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\ë)Püi¼_‡¡)¦²GS\Ü',_binary '\nsm•Dªp\è•Äh\Ï\Ü5XQ¼™ô’õ…\ãe\Ñ8','',0,'?'),(_binary 'ÿ½\ÆeuvE<ôÿ»‹`','wp-content/plugins/ti-woocommerce-wishlist/integrations/hide-price-add-to-cart-button.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'P05\'Õƒþ‡q½ö\Æ',_binary 'rz©Yi1<$Ë“Cf¼—*y¼\Öoô	3÷ož\Ï7œ','',0,'?'),(_binary 'ÿ\Ä\êkµ\Ëi\î\Ð.¼¥¸\\¥“','wp-includes/images/smilies/icon_neutral.gif',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '\Ø\æVM3HU1!\á˜v',_binary 'ž¤\ëOis8\0ù|zó÷6\Ç]e¨™@Yˆm49','',0,'?'),(_binary 'ÿ\Åh¦k\Ícù¼7“\0\\\ì\å÷','wp-content/plugins/woocommerce/legacy/js/flexslider/jquery.flexslider.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '“A;n¹£ómC¯«Å‡',_binary '¡&/eƒg†”·n@ZhòŸ\ßH53»=˜6\ë	\×\àù­N','',0,'?'),(_binary 'ÿ\Å|µ·-{\Ëù\á\ÃÝ­,','wp-content/plugins/ti-woocommerce-wishlist/integrations/wp-multilang.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '7Ò§$	GŠVx¹Þ±0	d',_binary '“µS\ÅF¢³ü\nþØ«µ\Ôr» ß ~ôÀT34ù%','',0,'?'),(_binary 'ÿ\ÌÈ¸ò\Zy„S‰<ÿ%R\0','wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-setup.css.map',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹p•mIyÅ½@\ÍðÞ–\Ù',_binary '}_\Ü\Ô°3K]‰\ÔûPRö8õöÉ›·	<6p€WØ¤=','',0,'?'),(_binary 'ÿ\Ì8dº/5J6Ó±þø/','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-add-to-cart--product-button--product-image--product-title.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'Î—\Ó\Ê\äm)ˆ\Ñ\Õ5ó\Ù\n\ç',_binary 'vV\åó\Þ”LR+Ò\ZB5\ï\Ý \ÌN\Ð{Þ©y','',0,'?'),(_binary 'ÿ\ÑlsðW=;¯§\Ú!ºV','wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/admin.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'ô\\¢&d	gòæ¯„3\"',_binary 'À#ó¤’Ö³0\\3\Å\ÞBó¥À¨lgF°½¨ß§˜','',0,'?'),(_binary 'ÿÓ¦òBÐ½¸¸q\Ë|ð','wp-content/themes/flatsome/assets/img/payment-icons/icon-clickandbuy.svg.php',0,_binary '¹«òðH~\å€teE;/<',_binary '¹«òðH~\å€teE;/<',_binary '’\Åþ ƒÆ”\ê\ìcM§{]\ç\ØWn\Ì\ÔT@B\ê 8J\ä\ê>','',0,'?'),(_binary 'ÿ\Ø4\Û5±µq-«\Êp,÷¿','wp-includes/blocks/file/style.css',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'N3@ÀÚ•“D¶!m\æ\Zˆ',_binary '\à¼[=r›Uª´\ß9\àžË„@BŒ\ì\àQk\Õ\îú2z±3','',0,'?'),(_binary 'ÿ\ÚÂ©6þõ<\×\Õ\09ZiR','wp-includes/js/jquery/ui/effect-fade.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'š?ÓŠIv.¾\ÑPƒe\ïö(',_binary '\n¡\0d¤q¤š;{\Ò0¼@%]R^\rû@\àño;\Ìvi\Â','',0,'?'),(_binary 'ÿ\Û\ï@~}c‡„\ØQ\Ý\'ƒ¿J','wp-content/plugins/wordfence/modules/login-security/views/common/modal-prompt.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '‚†%\âý9ô\á;%†òmM6Z',_binary '6ù-\Ì2žXjÝ’[\Èlª\ãÃ†LïŒ°	\'8FJ','',0,'?'),(_binary 'ÿ\é\Ø)vw8sJ«±\Ú¦j','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/editor.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary 'b1û¢K\éO˜¼»¿´\\3',_binary '\æg\ÎŒ0x\ØE\Â[Œ\ÚÌ¼°m·¬š\Ûwp<(\nD5\ç‡','',0,'?'),(_binary 'ÿ\íBþ¼\ë\ï©Áh‡8´','wp-content/plugins/woocommerce/includes/class-woocommerce.php',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '+ô\Ö\ï4\Ùý) \ì\å\ÌS‚',_binary '\æËš>ýœW×¡-z¡Z½§ów*\ïµ3˜\êe¼ž\ålø\É','',0,'?'),(_binary 'ÿ÷HŽ2\ïM8$®I¾','wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-date-format.min.js',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '[\ÛH¥§ñÈ	¥ˆct\Ñ\î\Å',_binary 'v\Ï\ä¯ÿú\îÙ¤º/?Ý¾ƒ7´Ü¢Œ\ÎÁ)\ï$H—m','',0,'?'),(_binary 'ÿ÷°YŠa@;\ÛioÊ»','wp-content/themes/twentytwentyone/assets/sass/05-blocks/cover/_style.scss',1,_binary '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',_binary '¹Š’t‘\0.™^¾À',_binary 'v\È6$¬-¡–È“ø¢k\íZ\Ã\ÌOp‚\è]\Ê\"šr5','',0,'?');
/*!40000 ALTER TABLE `wp_wffilemods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfhits`
--

DROP TABLE IF EXISTS `wp_wfhits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfhits` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `attackLogTime` double(17,6) unsigned NOT NULL,
  `ctime` double(17,6) unsigned NOT NULL,
  `IP` binary(16) DEFAULT NULL,
  `jsRun` tinyint(4) DEFAULT '0',
  `statusCode` int(11) NOT NULL DEFAULT '200',
  `isGoogle` tinyint(4) NOT NULL,
  `userID` int(10) unsigned NOT NULL,
  `newVisit` tinyint(3) unsigned NOT NULL,
  `URL` text,
  `referer` text,
  `UA` text,
  `action` varchar(64) NOT NULL DEFAULT '',
  `actionDescription` text,
  `actionData` text,
  PRIMARY KEY (`id`),
  KEY `k1` (`ctime`),
  KEY `k2` (`IP`,`ctime`),
  KEY `attackLogTime` (`attackLogTime`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfhits`
--

LOCK TABLES `wp_wfhits` WRITE;
/*!40000 ALTER TABLE `wp_wfhits` DISABLE KEYS */;
INSERT INTO `wp_wfhits` VALUES (1,0.000000,1652698349.711008,_binary '$	@s_l\à&4C±8\Ì',1,200,0,1,0,'https://demoweblinks.in/padmini/wp-login.php?action=logout&_wpnonce=9dee89ec34','https://demoweblinks.in/padmini/wp-admin/admin.php?page=WordfenceScan','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36','logout',NULL,NULL),(2,0.000000,1652698364.730483,_binary '$	@s_l\à&4C±8\Ì',0,302,0,1,0,'https://demoweblinks.in/padmini/wp-login.php','https://demoweblinks.in/padmini/wp-login.php?loggedout=true&wp_lang=en_US','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36','loginOK',NULL,NULL);
/*!40000 ALTER TABLE `wp_wfhits` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfhoover`
--

DROP TABLE IF EXISTS `wp_wfhoover`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfhoover` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `owner` text,
  `host` text,
  `path` text,
  `hostKey` varbinary(124) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `k2` (`hostKey`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfhoover`
--

LOCK TABLES `wp_wfhoover` WRITE;
/*!40000 ALTER TABLE `wp_wfhoover` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfhoover` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfissues`
--

DROP TABLE IF EXISTS `wp_wfissues`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfissues` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `time` int(10) unsigned NOT NULL,
  `lastUpdated` int(10) unsigned NOT NULL,
  `status` varchar(10) NOT NULL,
  `type` varchar(20) NOT NULL,
  `severity` tinyint(3) unsigned NOT NULL,
  `ignoreP` char(32) NOT NULL,
  `ignoreC` char(32) NOT NULL,
  `shortMsg` varchar(255) NOT NULL,
  `longMsg` text,
  `data` text,
  PRIMARY KEY (`id`),
  KEY `lastUpdated` (`lastUpdated`),
  KEY `status` (`status`),
  KEY `ignoreP` (`ignoreP`),
  KEY `ignoreC` (`ignoreC`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfissues`
--

LOCK TABLES `wp_wfissues` WRITE;
/*!40000 ALTER TABLE `wp_wfissues` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfissues` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfknownfilelist`
--

DROP TABLE IF EXISTS `wp_wfknownfilelist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfknownfilelist` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `path` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11140 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfknownfilelist`
--

LOCK TABLES `wp_wfknownfilelist` WRITE;
/*!40000 ALTER TABLE `wp_wfknownfilelist` DISABLE KEYS */;
INSERT INTO `wp_wfknownfilelist` VALUES (1,'index.php'),(2,'license.txt'),(3,'readme.html'),(4,'wp-activate.php'),(5,'wp-admin/about.php'),(6,'wp-admin/admin-ajax.php'),(7,'wp-admin/admin-footer.php'),(8,'wp-admin/admin-functions.php'),(9,'wp-admin/admin-header.php'),(10,'wp-admin/admin-post.php'),(11,'wp-admin/admin.php'),(12,'wp-admin/async-upload.php'),(13,'wp-admin/authorize-application.php'),(14,'wp-admin/comment.php'),(15,'wp-admin/credits.php'),(16,'wp-admin/css/about-rtl.css'),(17,'wp-admin/css/about-rtl.min.css'),(18,'wp-admin/css/about.css'),(19,'wp-admin/css/about.min.css'),(20,'wp-admin/css/admin-menu-rtl.css'),(21,'wp-admin/css/admin-menu-rtl.min.css'),(22,'wp-admin/css/admin-menu.css'),(23,'wp-admin/css/admin-menu.min.css'),(24,'wp-admin/css/code-editor-rtl.css'),(25,'wp-admin/css/code-editor-rtl.min.css'),(26,'wp-admin/css/code-editor.css'),(27,'wp-admin/css/code-editor.min.css'),(28,'wp-admin/css/color-picker-rtl.css'),(29,'wp-admin/css/color-picker-rtl.min.css'),(30,'wp-admin/css/color-picker.css'),(31,'wp-admin/css/color-picker.min.css'),(32,'wp-admin/css/colors/_admin.scss'),(33,'wp-admin/css/colors/_mixins.scss'),(34,'wp-admin/css/colors/_variables.scss'),(35,'wp-admin/css/colors/blue/colors-rtl.css'),(36,'wp-admin/css/colors/blue/colors-rtl.min.css'),(37,'wp-admin/css/colors/blue/colors.css'),(38,'wp-admin/css/colors/blue/colors.min.css'),(39,'wp-admin/css/colors/blue/colors.scss'),(40,'wp-admin/css/colors/coffee/colors-rtl.css'),(41,'wp-admin/css/colors/coffee/colors-rtl.min.css'),(42,'wp-admin/css/colors/coffee/colors.css'),(43,'wp-admin/css/colors/coffee/colors.min.css'),(44,'wp-admin/css/colors/coffee/colors.scss'),(45,'wp-admin/css/colors/ectoplasm/colors-rtl.css'),(46,'wp-admin/css/colors/ectoplasm/colors-rtl.min.css'),(47,'wp-admin/css/colors/ectoplasm/colors.css'),(48,'wp-admin/css/colors/ectoplasm/colors.min.css'),(49,'wp-admin/css/colors/ectoplasm/colors.scss'),(50,'wp-admin/css/colors/light/colors-rtl.css'),(51,'wp-admin/css/colors/light/colors-rtl.min.css'),(52,'wp-admin/css/colors/light/colors.css'),(53,'wp-admin/css/colors/light/colors.min.css'),(54,'wp-admin/css/colors/light/colors.scss'),(55,'wp-admin/css/colors/midnight/colors-rtl.css'),(56,'wp-admin/css/colors/midnight/colors-rtl.min.css'),(57,'wp-admin/css/colors/midnight/colors.css'),(58,'wp-admin/css/colors/midnight/colors.min.css'),(59,'wp-admin/css/colors/midnight/colors.scss'),(60,'wp-admin/css/colors/modern/colors-rtl.css'),(61,'wp-admin/css/colors/modern/colors-rtl.min.css'),(62,'wp-admin/css/colors/modern/colors.css'),(63,'wp-admin/css/colors/modern/colors.min.css'),(64,'wp-admin/css/colors/modern/colors.scss'),(65,'wp-admin/css/colors/ocean/colors-rtl.css'),(66,'wp-admin/css/colors/ocean/colors-rtl.min.css'),(67,'wp-admin/css/colors/ocean/colors.css'),(68,'wp-admin/css/colors/ocean/colors.min.css'),(69,'wp-admin/css/colors/ocean/colors.scss'),(70,'wp-admin/css/colors/sunrise/colors-rtl.css'),(71,'wp-admin/css/colors/sunrise/colors-rtl.min.css'),(72,'wp-admin/css/colors/sunrise/colors.css'),(73,'wp-admin/css/colors/sunrise/colors.min.css'),(74,'wp-admin/css/colors/sunrise/colors.scss'),(75,'wp-admin/css/common-rtl.css'),(76,'wp-admin/css/common-rtl.min.css'),(77,'wp-admin/css/common.css'),(78,'wp-admin/css/common.min.css'),(79,'wp-admin/css/customize-controls-rtl.css'),(80,'wp-admin/css/customize-controls-rtl.min.css'),(81,'wp-admin/css/customize-controls.css'),(82,'wp-admin/css/customize-controls.min.css'),(83,'wp-admin/css/customize-nav-menus-rtl.css'),(84,'wp-admin/css/customize-nav-menus-rtl.min.css'),(85,'wp-admin/css/customize-nav-menus.css'),(86,'wp-admin/css/customize-nav-menus.min.css'),(87,'wp-admin/css/customize-widgets-rtl.css'),(88,'wp-admin/css/customize-widgets-rtl.min.css'),(89,'wp-admin/css/customize-widgets.css'),(90,'wp-admin/css/customize-widgets.min.css'),(91,'wp-admin/css/dashboard-rtl.css'),(92,'wp-admin/css/dashboard-rtl.min.css'),(93,'wp-admin/css/dashboard.css'),(94,'wp-admin/css/dashboard.min.css'),(95,'wp-admin/css/deprecated-media-rtl.css'),(96,'wp-admin/css/deprecated-media-rtl.min.css'),(97,'wp-admin/css/deprecated-media.css'),(98,'wp-admin/css/deprecated-media.min.css'),(99,'wp-admin/css/edit-rtl.css'),(100,'wp-admin/css/edit-rtl.min.css'),(101,'wp-admin/css/edit.css'),(102,'wp-admin/css/edit.min.css'),(103,'wp-admin/css/farbtastic-rtl.css'),(104,'wp-admin/css/farbtastic-rtl.min.css'),(105,'wp-admin/css/farbtastic.css'),(106,'wp-admin/css/farbtastic.min.css'),(107,'wp-admin/css/forms-rtl.css'),(108,'wp-admin/css/forms-rtl.min.css'),(109,'wp-admin/css/forms.css'),(110,'wp-admin/css/forms.min.css'),(111,'wp-admin/css/install-rtl.css'),(112,'wp-admin/css/install-rtl.min.css'),(113,'wp-admin/css/install.css'),(114,'wp-admin/css/install.min.css'),(115,'wp-admin/css/l10n-rtl.css'),(116,'wp-admin/css/l10n-rtl.min.css'),(117,'wp-admin/css/l10n.css'),(118,'wp-admin/css/l10n.min.css'),(119,'wp-admin/css/list-tables-rtl.css'),(120,'wp-admin/css/list-tables-rtl.min.css'),(121,'wp-admin/css/list-tables.css'),(122,'wp-admin/css/list-tables.min.css'),(123,'wp-admin/css/login-rtl.css'),(124,'wp-admin/css/login-rtl.min.css'),(125,'wp-admin/css/login.css'),(126,'wp-admin/css/login.min.css'),(127,'wp-admin/css/media-rtl.css'),(128,'wp-admin/css/media-rtl.min.css'),(129,'wp-admin/css/media.css'),(130,'wp-admin/css/media.min.css'),(131,'wp-admin/css/nav-menus-rtl.css'),(132,'wp-admin/css/nav-menus-rtl.min.css'),(133,'wp-admin/css/nav-menus.css'),(134,'wp-admin/css/nav-menus.min.css'),(135,'wp-admin/css/revisions-rtl.css'),(136,'wp-admin/css/revisions-rtl.min.css'),(137,'wp-admin/css/revisions.css'),(138,'wp-admin/css/revisions.min.css'),(139,'wp-admin/css/site-health-rtl.css'),(140,'wp-admin/css/site-health-rtl.min.css'),(141,'wp-admin/css/site-health.css'),(142,'wp-admin/css/site-health.min.css'),(143,'wp-admin/css/site-icon-rtl.css'),(144,'wp-admin/css/site-icon-rtl.min.css'),(145,'wp-admin/css/site-icon.css'),(146,'wp-admin/css/site-icon.min.css'),(147,'wp-admin/css/themes-rtl.css'),(148,'wp-admin/css/themes-rtl.min.css'),(149,'wp-admin/css/themes.css'),(150,'wp-admin/css/themes.min.css'),(151,'wp-admin/css/widgets-rtl.css'),(152,'wp-admin/css/widgets-rtl.min.css'),(153,'wp-admin/css/widgets.css'),(154,'wp-admin/css/widgets.min.css'),(155,'wp-admin/css/wp-admin-rtl.css'),(156,'wp-admin/css/wp-admin-rtl.min.css'),(157,'wp-admin/css/wp-admin.css'),(158,'wp-admin/css/wp-admin.min.css'),(159,'wp-admin/custom-background.php'),(160,'wp-admin/custom-header.php'),(161,'wp-admin/customize.php'),(162,'wp-admin/edit-comments.php'),(163,'wp-admin/edit-form-advanced.php'),(164,'wp-admin/edit-form-blocks.php'),(165,'wp-admin/edit-form-comment.php'),(166,'wp-admin/edit-link-form.php'),(167,'wp-admin/edit-tag-form.php'),(168,'wp-admin/edit-tags.php'),(169,'wp-admin/edit.php'),(170,'wp-admin/erase-personal-data.php'),(171,'wp-admin/error_log'),(172,'wp-admin/export-personal-data.php'),(173,'wp-admin/export.php'),(174,'wp-admin/freedoms.php'),(175,'wp-admin/images/about-header-about.svg'),(176,'wp-admin/images/about-header-credits.svg'),(177,'wp-admin/images/about-header-freedoms.svg'),(178,'wp-admin/images/about-header-privacy.svg'),(179,'wp-admin/images/about-texture.png'),(180,'wp-admin/images/align-center-2x.png'),(181,'wp-admin/images/align-center.png'),(182,'wp-admin/images/align-left-2x.png'),(183,'wp-admin/images/align-left.png'),(184,'wp-admin/images/align-none-2x.png'),(185,'wp-admin/images/align-none.png'),(186,'wp-admin/images/align-right-2x.png'),(187,'wp-admin/images/align-right.png'),(188,'wp-admin/images/arrows-2x.png'),(189,'wp-admin/images/arrows.png'),(190,'wp-admin/images/browser-rtl.png'),(191,'wp-admin/images/browser.png'),(192,'wp-admin/images/bubble_bg-2x.gif'),(193,'wp-admin/images/bubble_bg.gif'),(194,'wp-admin/images/comment-grey-bubble-2x.png'),(195,'wp-admin/images/comment-grey-bubble.png'),(196,'wp-admin/images/date-button-2x.gif'),(197,'wp-admin/images/date-button.gif'),(198,'wp-admin/images/freedom-1.svg'),(199,'wp-admin/images/freedom-2.svg'),(200,'wp-admin/images/freedom-3.svg'),(201,'wp-admin/images/freedom-4.svg'),(202,'wp-admin/images/generic.png'),(203,'wp-admin/images/icons32-2x.png'),(204,'wp-admin/images/icons32-vs-2x.png'),(205,'wp-admin/images/icons32-vs.png'),(206,'wp-admin/images/icons32.png'),(207,'wp-admin/images/imgedit-icons-2x.png'),(208,'wp-admin/images/imgedit-icons.png'),(209,'wp-admin/images/list-2x.png'),(210,'wp-admin/images/list.png'),(211,'wp-admin/images/loading.gif'),(212,'wp-admin/images/marker.png'),(213,'wp-admin/images/mask.png'),(214,'wp-admin/images/media-button-2x.png'),(215,'wp-admin/images/media-button-image.gif'),(216,'wp-admin/images/media-button-music.gif'),(217,'wp-admin/images/media-button-other.gif'),(218,'wp-admin/images/media-button-video.gif'),(219,'wp-admin/images/media-button.png'),(220,'wp-admin/images/menu-2x.png'),(221,'wp-admin/images/menu-vs-2x.png'),(222,'wp-admin/images/menu-vs.png'),(223,'wp-admin/images/menu.png'),(224,'wp-admin/images/no.png'),(225,'wp-admin/images/post-formats-vs.png'),(226,'wp-admin/images/post-formats.png'),(227,'wp-admin/images/post-formats32-vs.png'),(228,'wp-admin/images/post-formats32.png'),(229,'wp-admin/images/privacy.svg'),(230,'wp-admin/images/resize-2x.gif'),(231,'wp-admin/images/resize-rtl-2x.gif'),(232,'wp-admin/images/resize-rtl.gif'),(233,'wp-admin/images/resize.gif'),(234,'wp-admin/images/se.png'),(235,'wp-admin/images/sort-2x.gif'),(236,'wp-admin/images/sort.gif'),(237,'wp-admin/images/spinner-2x.gif'),(238,'wp-admin/images/spinner.gif'),(239,'wp-admin/images/stars-2x.png'),(240,'wp-admin/images/stars.png'),(241,'wp-admin/images/w-logo-blue.png'),(242,'wp-admin/images/w-logo-white.png'),(243,'wp-admin/images/wheel.png'),(244,'wp-admin/images/wordpress-logo-white.svg'),(245,'wp-admin/images/wordpress-logo.png'),(246,'wp-admin/images/wordpress-logo.svg'),(247,'wp-admin/images/wpspin_light-2x.gif'),(248,'wp-admin/images/wpspin_light.gif'),(249,'wp-admin/images/xit-2x.gif'),(250,'wp-admin/images/xit.gif'),(251,'wp-admin/images/yes.png'),(252,'wp-admin/import.php'),(253,'wp-admin/includes/admin-filters.php'),(254,'wp-admin/includes/admin.php'),(255,'wp-admin/includes/ajax-actions.php'),(256,'wp-admin/includes/bookmark.php'),(257,'wp-admin/includes/class-automatic-upgrader-skin.php'),(258,'wp-admin/includes/class-bulk-plugin-upgrader-skin.php'),(259,'wp-admin/includes/class-bulk-theme-upgrader-skin.php'),(260,'wp-admin/includes/class-bulk-upgrader-skin.php'),(261,'wp-admin/includes/class-core-upgrader.php'),(262,'wp-admin/includes/class-custom-background.php'),(263,'wp-admin/includes/class-custom-image-header.php'),(264,'wp-admin/includes/class-file-upload-upgrader.php'),(265,'wp-admin/includes/class-ftp-pure.php'),(266,'wp-admin/includes/class-ftp-sockets.php'),(267,'wp-admin/includes/class-ftp.php'),(268,'wp-admin/includes/class-language-pack-upgrader-skin.php'),(269,'wp-admin/includes/class-language-pack-upgrader.php'),(270,'wp-admin/includes/class-pclzip.php'),(271,'wp-admin/includes/class-plugin-installer-skin.php'),(272,'wp-admin/includes/class-plugin-upgrader-skin.php'),(273,'wp-admin/includes/class-plugin-upgrader.php'),(274,'wp-admin/includes/class-theme-installer-skin.php'),(275,'wp-admin/includes/class-theme-upgrader-skin.php'),(276,'wp-admin/includes/class-theme-upgrader.php'),(277,'wp-admin/includes/class-walker-category-checklist.php'),(278,'wp-admin/includes/class-walker-nav-menu-checklist.php'),(279,'wp-admin/includes/class-walker-nav-menu-edit.php'),(280,'wp-admin/includes/class-wp-ajax-upgrader-skin.php'),(281,'wp-admin/includes/class-wp-application-passwords-list-table.php'),(282,'wp-admin/includes/class-wp-automatic-updater.php'),(283,'wp-admin/includes/class-wp-comments-list-table.php'),(284,'wp-admin/includes/class-wp-community-events.php'),(285,'wp-admin/includes/class-wp-debug-data.php'),(286,'wp-admin/includes/class-wp-filesystem-base.php'),(287,'wp-admin/includes/class-wp-filesystem-direct.php'),(288,'wp-admin/includes/class-wp-filesystem-ftpext.php'),(289,'wp-admin/includes/class-wp-filesystem-ftpsockets.php'),(290,'wp-admin/includes/class-wp-filesystem-ssh2.php'),(291,'wp-admin/includes/class-wp-importer.php'),(292,'wp-admin/includes/class-wp-internal-pointers.php'),(293,'wp-admin/includes/class-wp-links-list-table.php'),(294,'wp-admin/includes/class-wp-list-table-compat.php'),(295,'wp-admin/includes/class-wp-list-table.php'),(296,'wp-admin/includes/class-wp-media-list-table.php'),(297,'wp-admin/includes/class-wp-ms-sites-list-table.php'),(298,'wp-admin/includes/class-wp-ms-themes-list-table.php'),(299,'wp-admin/includes/class-wp-ms-users-list-table.php'),(300,'wp-admin/includes/class-wp-plugin-install-list-table.php'),(301,'wp-admin/includes/class-wp-plugins-list-table.php'),(302,'wp-admin/includes/class-wp-post-comments-list-table.php'),(303,'wp-admin/includes/class-wp-posts-list-table.php'),(304,'wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php'),(305,'wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php'),(306,'wp-admin/includes/class-wp-privacy-policy-content.php'),(307,'wp-admin/includes/class-wp-privacy-requests-table.php'),(308,'wp-admin/includes/class-wp-screen.php'),(309,'wp-admin/includes/class-wp-site-health-auto-updates.php'),(310,'wp-admin/includes/class-wp-site-health.php'),(311,'wp-admin/includes/class-wp-site-icon.php'),(312,'wp-admin/includes/class-wp-terms-list-table.php'),(313,'wp-admin/includes/class-wp-theme-install-list-table.php'),(314,'wp-admin/includes/class-wp-themes-list-table.php'),(315,'wp-admin/includes/class-wp-upgrader-skin.php'),(316,'wp-admin/includes/class-wp-upgrader-skins.php'),(317,'wp-admin/includes/class-wp-upgrader.php'),(318,'wp-admin/includes/class-wp-users-list-table.php'),(319,'wp-admin/includes/comment.php'),(320,'wp-admin/includes/continents-cities.php'),(321,'wp-admin/includes/credits.php'),(322,'wp-admin/includes/dashboard.php'),(323,'wp-admin/includes/deprecated.php'),(324,'wp-admin/includes/edit-tag-messages.php'),(325,'wp-admin/includes/export.php'),(326,'wp-admin/includes/file.php'),(327,'wp-admin/includes/image-edit.php'),(328,'wp-admin/includes/image.php'),(329,'wp-admin/includes/import.php'),(330,'wp-admin/includes/list-table.php'),(331,'wp-admin/includes/media.php'),(332,'wp-admin/includes/menu.php'),(333,'wp-admin/includes/meta-boxes.php'),(334,'wp-admin/includes/misc.php'),(335,'wp-admin/includes/ms-admin-filters.php'),(336,'wp-admin/includes/ms-deprecated.php'),(337,'wp-admin/includes/ms.php'),(338,'wp-admin/includes/nav-menu.php'),(339,'wp-admin/includes/network.php'),(340,'wp-admin/includes/noop.php'),(341,'wp-admin/includes/options.php'),(342,'wp-admin/includes/plugin-install.php'),(343,'wp-admin/includes/plugin.php'),(344,'wp-admin/includes/post.php'),(345,'wp-admin/includes/privacy-tools.php'),(346,'wp-admin/includes/revision.php'),(347,'wp-admin/includes/schema.php'),(348,'wp-admin/includes/screen.php'),(349,'wp-admin/includes/taxonomy.php'),(350,'wp-admin/includes/template.php'),(351,'wp-admin/includes/theme-install.php'),(352,'wp-admin/includes/theme.php'),(353,'wp-admin/includes/translation-install.php'),(354,'wp-admin/includes/update-core.php'),(355,'wp-admin/includes/update.php'),(356,'wp-admin/includes/upgrade.php'),(357,'wp-admin/includes/user.php'),(358,'wp-admin/includes/widgets.php'),(359,'wp-admin/index.php'),(360,'wp-admin/install-helper.php'),(361,'wp-admin/install.php'),(362,'wp-admin/js/accordion.js'),(363,'wp-admin/js/accordion.min.js'),(364,'wp-admin/js/application-passwords.js'),(365,'wp-admin/js/application-passwords.min.js'),(366,'wp-admin/js/auth-app.js'),(367,'wp-admin/js/auth-app.min.js'),(368,'wp-admin/js/code-editor.js'),(369,'wp-admin/js/code-editor.min.js'),(370,'wp-admin/js/color-picker.js'),(371,'wp-admin/js/color-picker.min.js'),(372,'wp-admin/js/comment.js'),(373,'wp-admin/js/comment.min.js'),(374,'wp-admin/js/common.js'),(375,'wp-admin/js/common.min.js'),(376,'wp-admin/js/custom-background.js'),(377,'wp-admin/js/custom-background.min.js'),(378,'wp-admin/js/custom-header.js'),(379,'wp-admin/js/customize-controls.js'),(380,'wp-admin/js/customize-controls.min.js'),(381,'wp-admin/js/customize-nav-menus.js'),(382,'wp-admin/js/customize-nav-menus.min.js'),(383,'wp-admin/js/customize-widgets.js'),(384,'wp-admin/js/customize-widgets.min.js'),(385,'wp-admin/js/dashboard.js'),(386,'wp-admin/js/dashboard.min.js'),(387,'wp-admin/js/edit-comments.js'),(388,'wp-admin/js/edit-comments.min.js'),(389,'wp-admin/js/editor-expand.js'),(390,'wp-admin/js/editor-expand.min.js'),(391,'wp-admin/js/editor.js'),(392,'wp-admin/js/editor.min.js'),(393,'wp-admin/js/farbtastic.js'),(394,'wp-admin/js/gallery.js'),(395,'wp-admin/js/gallery.min.js'),(396,'wp-admin/js/image-edit.js'),(397,'wp-admin/js/image-edit.min.js'),(398,'wp-admin/js/inline-edit-post.js'),(399,'wp-admin/js/inline-edit-post.min.js'),(400,'wp-admin/js/inline-edit-tax.js'),(401,'wp-admin/js/inline-edit-tax.min.js'),(402,'wp-admin/js/iris.min.js'),(403,'wp-admin/js/language-chooser.js'),(404,'wp-admin/js/language-chooser.min.js'),(405,'wp-admin/js/link.js'),(406,'wp-admin/js/link.min.js'),(407,'wp-admin/js/media-gallery.js'),(408,'wp-admin/js/media-gallery.min.js'),(409,'wp-admin/js/media-upload.js'),(410,'wp-admin/js/media-upload.min.js'),(411,'wp-admin/js/media.js'),(412,'wp-admin/js/media.min.js'),(413,'wp-admin/js/nav-menu.js'),(414,'wp-admin/js/nav-menu.min.js'),(415,'wp-admin/js/password-strength-meter.js'),(416,'wp-admin/js/password-strength-meter.min.js'),(417,'wp-admin/js/plugin-install.js'),(418,'wp-admin/js/plugin-install.min.js'),(419,'wp-admin/js/post.js'),(420,'wp-admin/js/post.min.js'),(421,'wp-admin/js/postbox.js'),(422,'wp-admin/js/postbox.min.js'),(423,'wp-admin/js/privacy-tools.js'),(424,'wp-admin/js/privacy-tools.min.js'),(425,'wp-admin/js/revisions.js'),(426,'wp-admin/js/revisions.min.js'),(427,'wp-admin/js/set-post-thumbnail.js'),(428,'wp-admin/js/set-post-thumbnail.min.js'),(429,'wp-admin/js/site-health.js'),(430,'wp-admin/js/site-health.min.js'),(431,'wp-admin/js/svg-painter.js'),(432,'wp-admin/js/svg-painter.min.js'),(433,'wp-admin/js/tags-box.js'),(434,'wp-admin/js/tags-box.min.js'),(435,'wp-admin/js/tags-suggest.js'),(436,'wp-admin/js/tags-suggest.min.js'),(437,'wp-admin/js/tags.js'),(438,'wp-admin/js/tags.min.js'),(439,'wp-admin/js/theme-plugin-editor.js'),(440,'wp-admin/js/theme-plugin-editor.min.js'),(441,'wp-admin/js/theme.js'),(442,'wp-admin/js/theme.min.js'),(443,'wp-admin/js/updates.js'),(444,'wp-admin/js/updates.min.js'),(445,'wp-admin/js/user-profile.js'),(446,'wp-admin/js/user-profile.min.js'),(447,'wp-admin/js/user-suggest.js'),(448,'wp-admin/js/user-suggest.min.js'),(449,'wp-admin/js/widgets/custom-html-widgets.js'),(450,'wp-admin/js/widgets/custom-html-widgets.min.js'),(451,'wp-admin/js/widgets/media-audio-widget.js'),(452,'wp-admin/js/widgets/media-audio-widget.min.js'),(453,'wp-admin/js/widgets/media-gallery-widget.js'),(454,'wp-admin/js/widgets/media-gallery-widget.min.js'),(455,'wp-admin/js/widgets/media-image-widget.js'),(456,'wp-admin/js/widgets/media-image-widget.min.js'),(457,'wp-admin/js/widgets/media-video-widget.js'),(458,'wp-admin/js/widgets/media-video-widget.min.js'),(459,'wp-admin/js/widgets/media-widgets.js'),(460,'wp-admin/js/widgets/media-widgets.min.js'),(461,'wp-admin/js/widgets/text-widgets.js'),(462,'wp-admin/js/widgets/text-widgets.min.js'),(463,'wp-admin/js/widgets.js'),(464,'wp-admin/js/widgets.min.js'),(465,'wp-admin/js/word-count.js'),(466,'wp-admin/js/word-count.min.js'),(467,'wp-admin/js/xfn.js'),(468,'wp-admin/js/xfn.min.js'),(469,'wp-admin/link-add.php'),(470,'wp-admin/link-manager.php'),(471,'wp-admin/link-parse-opml.php'),(472,'wp-admin/link.php'),(473,'wp-admin/load-scripts.php'),(474,'wp-admin/load-styles.php'),(475,'wp-admin/maint/repair.php'),(476,'wp-admin/media-new.php'),(477,'wp-admin/media-upload.php'),(478,'wp-admin/media.php'),(479,'wp-admin/menu-header.php'),(480,'wp-admin/menu.php'),(481,'wp-admin/moderation.php'),(482,'wp-admin/ms-admin.php'),(483,'wp-admin/ms-delete-site.php'),(484,'wp-admin/ms-edit.php'),(485,'wp-admin/ms-options.php'),(486,'wp-admin/ms-sites.php'),(487,'wp-admin/ms-themes.php'),(488,'wp-admin/ms-upgrade-network.php'),(489,'wp-admin/ms-users.php'),(490,'wp-admin/my-sites.php'),(491,'wp-admin/nav-menus.php'),(492,'wp-admin/network/about.php'),(493,'wp-admin/network/admin.php'),(494,'wp-admin/network/credits.php'),(495,'wp-admin/network/edit.php'),(496,'wp-admin/network/freedoms.php'),(497,'wp-admin/network/index.php'),(498,'wp-admin/network/menu.php'),(499,'wp-admin/network/plugin-editor.php'),(500,'wp-admin/network/plugin-install.php'),(501,'wp-admin/network/plugins.php'),(502,'wp-admin/network/privacy.php'),(503,'wp-admin/network/profile.php'),(504,'wp-admin/network/settings.php'),(505,'wp-admin/network/setup.php'),(506,'wp-admin/network/site-info.php'),(507,'wp-admin/network/site-new.php'),(508,'wp-admin/network/site-settings.php'),(509,'wp-admin/network/site-themes.php'),(510,'wp-admin/network/site-users.php'),(511,'wp-admin/network/sites.php'),(512,'wp-admin/network/theme-editor.php'),(513,'wp-admin/network/theme-install.php'),(514,'wp-admin/network/themes.php'),(515,'wp-admin/network/update-core.php'),(516,'wp-admin/network/update.php'),(517,'wp-admin/network/upgrade.php'),(518,'wp-admin/network/user-edit.php'),(519,'wp-admin/network/user-new.php'),(520,'wp-admin/network/users.php'),(521,'wp-admin/network.php'),(522,'wp-admin/options-discussion.php'),(523,'wp-admin/options-general.php'),(524,'wp-admin/options-head.php'),(525,'wp-admin/options-media.php'),(526,'wp-admin/options-permalink.php'),(527,'wp-admin/options-privacy.php'),(528,'wp-admin/options-reading.php'),(529,'wp-admin/options-writing.php'),(530,'wp-admin/options.php'),(531,'wp-admin/plugin-editor.php'),(532,'wp-admin/plugin-install.php'),(533,'wp-admin/plugins.php'),(534,'wp-admin/post-new.php'),(535,'wp-admin/post.php'),(536,'wp-admin/press-this.php'),(537,'wp-admin/privacy-policy-guide.php'),(538,'wp-admin/privacy.php'),(539,'wp-admin/profile.php'),(540,'wp-admin/revision.php'),(541,'wp-admin/setup-config.php'),(542,'wp-admin/site-editor.php'),(543,'wp-admin/site-health-info.php'),(544,'wp-admin/site-health.php'),(545,'wp-admin/term.php'),(546,'wp-admin/theme-editor.php'),(547,'wp-admin/theme-install.php'),(548,'wp-admin/themes.php'),(549,'wp-admin/tools.php'),(550,'wp-admin/update-core.php'),(551,'wp-admin/update.php'),(552,'wp-admin/upgrade-functions.php'),(553,'wp-admin/upgrade.php'),(554,'wp-admin/upload.php'),(555,'wp-admin/user/about.php'),(556,'wp-admin/user/admin.php'),(557,'wp-admin/user/credits.php'),(558,'wp-admin/user/freedoms.php'),(559,'wp-admin/user/index.php'),(560,'wp-admin/user/menu.php'),(561,'wp-admin/user/privacy.php'),(562,'wp-admin/user/profile.php'),(563,'wp-admin/user/user-edit.php'),(564,'wp-admin/user-edit.php'),(565,'wp-admin/user-new.php'),(566,'wp-admin/users.php'),(567,'wp-admin/widgets-form-blocks.php'),(568,'wp-admin/widgets-form.php'),(569,'wp-admin/widgets.php'),(570,'wp-blog-header.php'),(571,'wp-comments-post.php'),(572,'wp-config-sample.php'),(573,'wp-config.php'),(574,'wp-content/index.php'),(575,'wp-content/plugins/akismet/.htaccess'),(576,'wp-content/plugins/akismet/LICENSE.txt'),(577,'wp-content/plugins/akismet/_inc/akismet.css'),(578,'wp-content/plugins/akismet/_inc/akismet.js'),(579,'wp-content/plugins/akismet/_inc/img/logo-a-2x.png'),(580,'wp-content/plugins/akismet/_inc/img/logo-full-2x.png'),(581,'wp-content/plugins/akismet/akismet.php'),(582,'wp-content/plugins/akismet/changelog.txt'),(583,'wp-content/plugins/akismet/class.akismet-admin.php'),(584,'wp-content/plugins/akismet/class.akismet-cli.php'),(585,'wp-content/plugins/akismet/class.akismet-rest-api.php'),(586,'wp-content/plugins/akismet/class.akismet-widget.php'),(587,'wp-content/plugins/akismet/class.akismet.php'),(588,'wp-content/plugins/akismet/index.php'),(589,'wp-content/plugins/akismet/readme.txt'),(590,'wp-content/plugins/akismet/views/activate.php'),(591,'wp-content/plugins/akismet/views/config.php'),(592,'wp-content/plugins/akismet/views/connect-jp.php'),(593,'wp-content/plugins/akismet/views/enter.php'),(594,'wp-content/plugins/akismet/views/get.php'),(595,'wp-content/plugins/akismet/views/notice.php'),(596,'wp-content/plugins/akismet/views/predefined.php'),(597,'wp-content/plugins/akismet/views/setup.php'),(598,'wp-content/plugins/akismet/views/start.php'),(599,'wp-content/plugins/akismet/views/stats.php'),(600,'wp-content/plugins/akismet/views/title.php'),(601,'wp-content/plugins/akismet/wrapper.php'),(602,'wp-content/plugins/contact-form-7/admin/admin.php'),(603,'wp-content/plugins/contact-form-7/admin/css/styles-rtl.css'),(604,'wp-content/plugins/contact-form-7/admin/css/styles.css'),(605,'wp-content/plugins/contact-form-7/admin/edit-contact-form.php'),(606,'wp-content/plugins/contact-form-7/admin/includes/admin-functions.php'),(607,'wp-content/plugins/contact-form-7/admin/includes/class-contact-forms-list-table.php'),(608,'wp-content/plugins/contact-form-7/admin/includes/config-validator.php'),(609,'wp-content/plugins/contact-form-7/admin/includes/editor.php'),(610,'wp-content/plugins/contact-form-7/admin/includes/help-tabs.php'),(611,'wp-content/plugins/contact-form-7/admin/includes/tag-generator.php'),(612,'wp-content/plugins/contact-form-7/admin/includes/welcome-panel.php'),(613,'wp-content/plugins/contact-form-7/admin/js/scripts.js'),(614,'wp-content/plugins/contact-form-7/admin/js/tag-generator.js'),(615,'wp-content/plugins/contact-form-7/assets/icon.png'),(616,'wp-content/plugins/contact-form-7/assets/icon.svg'),(617,'wp-content/plugins/contact-form-7/includes/block-editor/block-editor.php'),(618,'wp-content/plugins/contact-form-7/includes/block-editor/index.js'),(619,'wp-content/plugins/contact-form-7/includes/capabilities.php'),(620,'wp-content/plugins/contact-form-7/includes/config-validator.php'),(621,'wp-content/plugins/contact-form-7/includes/contact-form-functions.php'),(622,'wp-content/plugins/contact-form-7/includes/contact-form-template.php'),(623,'wp-content/plugins/contact-form-7/includes/contact-form.php'),(624,'wp-content/plugins/contact-form-7/includes/controller.php'),(625,'wp-content/plugins/contact-form-7/includes/css/styles-rtl.css'),(626,'wp-content/plugins/contact-form-7/includes/css/styles.css'),(627,'wp-content/plugins/contact-form-7/includes/file.php'),(628,'wp-content/plugins/contact-form-7/includes/form-tag.php'),(629,'wp-content/plugins/contact-form-7/includes/form-tags-manager.php'),(630,'wp-content/plugins/contact-form-7/includes/formatting.php'),(631,'wp-content/plugins/contact-form-7/includes/functions.php'),(632,'wp-content/plugins/contact-form-7/includes/integration.php'),(633,'wp-content/plugins/contact-form-7/includes/js/html5-fallback.js'),(634,'wp-content/plugins/contact-form-7/includes/js/index.js'),(635,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png'),(636,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png'),(637,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png'),(638,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png'),(639,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png'),(640,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png'),(641,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_222222_256x240.png'),(642,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_2e83ff_256x240.png'),(643,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_454545_256x240.png'),(644,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png'),(645,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png'),(646,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/jquery-ui.css'),(647,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/jquery-ui.min.css'),(648,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/theme.css'),(649,'wp-content/plugins/contact-form-7/includes/l10n.php'),(650,'wp-content/plugins/contact-form-7/includes/mail.php'),(651,'wp-content/plugins/contact-form-7/includes/pipe.php'),(652,'wp-content/plugins/contact-form-7/includes/rest-api.php'),(653,'wp-content/plugins/contact-form-7/includes/shortcodes.php'),(654,'wp-content/plugins/contact-form-7/includes/special-mail-tags.php'),(655,'wp-content/plugins/contact-form-7/includes/submission.php'),(656,'wp-content/plugins/contact-form-7/includes/upgrade.php'),(657,'wp-content/plugins/contact-form-7/includes/validation-functions.php'),(658,'wp-content/plugins/contact-form-7/includes/validation.php'),(659,'wp-content/plugins/contact-form-7/languages/readme.txt'),(660,'wp-content/plugins/contact-form-7/license.txt'),(661,'wp-content/plugins/contact-form-7/load.php'),(662,'wp-content/plugins/contact-form-7/modules/acceptance.php'),(663,'wp-content/plugins/contact-form-7/modules/akismet.php'),(664,'wp-content/plugins/contact-form-7/modules/checkbox.php'),(665,'wp-content/plugins/contact-form-7/modules/constant-contact/constant-contact.php'),(666,'wp-content/plugins/contact-form-7/modules/constant-contact/contact-form-properties.php'),(667,'wp-content/plugins/contact-form-7/modules/constant-contact/contact-post-request.php'),(668,'wp-content/plugins/contact-form-7/modules/constant-contact/doi.php'),(669,'wp-content/plugins/contact-form-7/modules/constant-contact/service.php'),(670,'wp-content/plugins/contact-form-7/modules/count.php'),(671,'wp-content/plugins/contact-form-7/modules/date.php'),(672,'wp-content/plugins/contact-form-7/modules/disallowed-list.php'),(673,'wp-content/plugins/contact-form-7/modules/doi-helper.php'),(674,'wp-content/plugins/contact-form-7/modules/file.php'),(675,'wp-content/plugins/contact-form-7/modules/flamingo.php'),(676,'wp-content/plugins/contact-form-7/modules/hidden.php'),(677,'wp-content/plugins/contact-form-7/modules/listo.php'),(678,'wp-content/plugins/contact-form-7/modules/number.php'),(679,'wp-content/plugins/contact-form-7/modules/quiz.php'),(680,'wp-content/plugins/contact-form-7/modules/really-simple-captcha.php'),(681,'wp-content/plugins/contact-form-7/modules/recaptcha/index.js'),(682,'wp-content/plugins/contact-form-7/modules/recaptcha/recaptcha.php'),(683,'wp-content/plugins/contact-form-7/modules/recaptcha/service.php'),(684,'wp-content/plugins/contact-form-7/modules/response.php'),(685,'wp-content/plugins/contact-form-7/modules/select.php'),(686,'wp-content/plugins/contact-form-7/modules/sendinblue/contact-form-properties.php'),(687,'wp-content/plugins/contact-form-7/modules/sendinblue/doi.php'),(688,'wp-content/plugins/contact-form-7/modules/sendinblue/sendinblue.php'),(689,'wp-content/plugins/contact-form-7/modules/sendinblue/service.php'),(690,'wp-content/plugins/contact-form-7/modules/stripe/api.php'),(691,'wp-content/plugins/contact-form-7/modules/stripe/index.js'),(692,'wp-content/plugins/contact-form-7/modules/stripe/service.php'),(693,'wp-content/plugins/contact-form-7/modules/stripe/stripe.php'),(694,'wp-content/plugins/contact-form-7/modules/stripe/style.css'),(695,'wp-content/plugins/contact-form-7/modules/submit.php'),(696,'wp-content/plugins/contact-form-7/modules/text.php'),(697,'wp-content/plugins/contact-form-7/modules/textarea.php'),(698,'wp-content/plugins/contact-form-7/readme.txt'),(699,'wp-content/plugins/contact-form-7/uninstall.php'),(700,'wp-content/plugins/contact-form-7/wp-contact-form-7.php'),(701,'wp-content/plugins/hello.php'),(702,'wp-content/plugins/index.php'),(703,'wp-content/plugins/nextend-facebook-connect/NSL/GDPR.php'),(704,'wp-content/plugins/nextend-facebook-connect/NSL/Notices.php'),(705,'wp-content/plugins/nextend-facebook-connect/NSL/Persistent/Persistent.php'),(706,'wp-content/plugins/nextend-facebook-connect/NSL/Persistent/Storage/Abstract.php'),(707,'wp-content/plugins/nextend-facebook-connect/NSL/Persistent/Storage/Session.php'),(708,'wp-content/plugins/nextend-facebook-connect/NSL/Persistent/Storage/Transient.php'),(709,'wp-content/plugins/nextend-facebook-connect/NSL/REST.php'),(710,'wp-content/plugins/nextend-facebook-connect/admin/EditUser.php'),(711,'wp-content/plugins/nextend-facebook-connect/admin/admin.php'),(712,'wp-content/plugins/nextend-facebook-connect/admin/images/buttons/default.png'),(713,'wp-content/plugins/nextend-facebook-connect/admin/images/buttons/fullwidth.png'),(714,'wp-content/plugins/nextend-facebook-connect/admin/images/buttons/icon.png'),(715,'wp-content/plugins/nextend-facebook-connect/admin/images/error.png'),(716,'wp-content/plugins/nextend-facebook-connect/admin/images/exclamation-mark.png'),(717,'wp-content/plugins/nextend-facebook-connect/admin/images/facebook/black.png'),(718,'wp-content/plugins/nextend-facebook-connect/admin/images/facebook/dark.png'),(719,'wp-content/plugins/nextend-facebook-connect/admin/images/facebook/light.png'),(720,'wp-content/plugins/nextend-facebook-connect/admin/images/facebook/white.png'),(721,'wp-content/plugins/nextend-facebook-connect/admin/images/google/dark.png'),(722,'wp-content/plugins/nextend-facebook-connect/admin/images/google/light.png'),(723,'wp-content/plugins/nextend-facebook-connect/admin/images/google/uniform.png'),(724,'wp-content/plugins/nextend-facebook-connect/admin/images/layouts/above-separator.png'),(725,'wp-content/plugins/nextend-facebook-connect/admin/images/layouts/above.png'),(726,'wp-content/plugins/nextend-facebook-connect/admin/images/layouts/below-floating.png'),(727,'wp-content/plugins/nextend-facebook-connect/admin/images/layouts/below-separator.png'),(728,'wp-content/plugins/nextend-facebook-connect/admin/images/layouts/below.png'),(729,'wp-content/plugins/nextend-facebook-connect/admin/images/layouts/default-separator.png'),(730,'wp-content/plugins/nextend-facebook-connect/admin/images/layouts/default.png'),(731,'wp-content/plugins/nextend-facebook-connect/admin/images/notice/nslnotice.png'),(732,'wp-content/plugins/nextend-facebook-connect/admin/images/notice.png'),(733,'wp-content/plugins/nextend-facebook-connect/admin/images/nsl-logo.png'),(734,'wp-content/plugins/nextend-facebook-connect/admin/images/ok.png'),(735,'wp-content/plugins/nextend-facebook-connect/admin/images/padlock.png'),(736,'wp-content/plugins/nextend-facebook-connect/admin/images/stars-big.png'),(737,'wp-content/plugins/nextend-facebook-connect/admin/images/stars-small.png'),(738,'wp-content/plugins/nextend-facebook-connect/admin/images/test-needed.png'),(739,'wp-content/plugins/nextend-facebook-connect/admin/interim.php'),(740,'wp-content/plugins/nextend-facebook-connect/admin/notice.php'),(741,'wp-content/plugins/nextend-facebook-connect/admin/style.css'),(742,'wp-content/plugins/nextend-facebook-connect/admin/templates/debug.php'),(743,'wp-content/plugins/nextend-facebook-connect/admin/templates/fix-redirect-uri.php'),(744,'wp-content/plugins/nextend-facebook-connect/admin/templates/footer.php'),(745,'wp-content/plugins/nextend-facebook-connect/admin/templates/global-settings.php'),(746,'wp-content/plugins/nextend-facebook-connect/admin/templates/header.php'),(747,'wp-content/plugins/nextend-facebook-connect/admin/templates/menu.php'),(748,'wp-content/plugins/nextend-facebook-connect/admin/templates/pro-addon.php'),(749,'wp-content/plugins/nextend-facebook-connect/admin/templates/pro.php'),(750,'wp-content/plugins/nextend-facebook-connect/admin/templates/provider.php'),(751,'wp-content/plugins/nextend-facebook-connect/admin/templates/providers.php'),(752,'wp-content/plugins/nextend-facebook-connect/admin/templates/review.php'),(753,'wp-content/plugins/nextend-facebook-connect/admin/templates/settings/buddypress.php'),(754,'wp-content/plugins/nextend-facebook-connect/admin/templates/settings/comment.php'),(755,'wp-content/plugins/nextend-facebook-connect/admin/templates/settings/custom-actions.php'),(756,'wp-content/plugins/nextend-facebook-connect/admin/templates/settings/easy-digital-downloads.php'),(757,'wp-content/plugins/nextend-facebook-connect/admin/templates/settings/general-pro.php'),(758,'wp-content/plugins/nextend-facebook-connect/admin/templates/settings/general.php'),(759,'wp-content/plugins/nextend-facebook-connect/admin/templates/settings/login-form-pro.php'),(760,'wp-content/plugins/nextend-facebook-connect/admin/templates/settings/login-form.php'),(761,'wp-content/plugins/nextend-facebook-connect/admin/templates/settings/memberpress.php'),(762,'wp-content/plugins/nextend-facebook-connect/admin/templates/settings/privacy.php'),(763,'wp-content/plugins/nextend-facebook-connect/admin/templates/settings/ultimate-member.php'),(764,'wp-content/plugins/nextend-facebook-connect/admin/templates/settings/userpro.php'),(765,'wp-content/plugins/nextend-facebook-connect/admin/templates/settings/woocommerce.php'),(766,'wp-content/plugins/nextend-facebook-connect/admin/templates/test-connection.php'),(767,'wp-content/plugins/nextend-facebook-connect/admin/templates-provider/buttons.php'),(768,'wp-content/plugins/nextend-facebook-connect/admin/templates-provider/menu.php'),(769,'wp-content/plugins/nextend-facebook-connect/admin/templates-provider/settings-other.php'),(770,'wp-content/plugins/nextend-facebook-connect/admin/templates-provider/settings-pro.php'),(771,'wp-content/plugins/nextend-facebook-connect/admin/templates-provider/sync-data.php'),(772,'wp-content/plugins/nextend-facebook-connect/admin/templates-provider/usage.php'),(773,'wp-content/plugins/nextend-facebook-connect/admin/upgrader.php'),(774,'wp-content/plugins/nextend-facebook-connect/class-settings.php'),(775,'wp-content/plugins/nextend-facebook-connect/compat.php'),(776,'wp-content/plugins/nextend-facebook-connect/includes/auth.php'),(777,'wp-content/plugins/nextend-facebook-connect/includes/avatar.php'),(778,'wp-content/plugins/nextend-facebook-connect/includes/compat-wp-login.php'),(779,'wp-content/plugins/nextend-facebook-connect/includes/exceptions.php'),(780,'wp-content/plugins/nextend-facebook-connect/includes/oauth2.php'),(781,'wp-content/plugins/nextend-facebook-connect/includes/provider-admin.php'),(782,'wp-content/plugins/nextend-facebook-connect/includes/provider-dummy.php'),(783,'wp-content/plugins/nextend-facebook-connect/includes/provider.php'),(784,'wp-content/plugins/nextend-facebook-connect/includes/user.php'),(785,'wp-content/plugins/nextend-facebook-connect/includes/userData.php'),(786,'wp-content/plugins/nextend-facebook-connect/index.html'),(787,'wp-content/plugins/nextend-facebook-connect/js/nsl.js'),(788,'wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-de_DE.mo'),(789,'wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-de_DE.po'),(790,'wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-es_LA.mo'),(791,'wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-es_LA.po'),(792,'wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-fr_FR.mo'),(793,'wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-fr_FR.po'),(794,'wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-hu_HU.mo'),(795,'wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-hu_HU.po'),(796,'wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-it_IT.mo'),(797,'wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-it_IT.po'),(798,'wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-nl_NL.mo'),(799,'wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-nl_NL.po'),(800,'wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-pt_BR.mo'),(801,'wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-pt_BR.po'),(802,'wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-ru_RU.mo'),(803,'wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-ru_RU.po'),(804,'wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-zh_ZH.mo'),(805,'wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect-zh_ZH.po'),(806,'wp-content/plugins/nextend-facebook-connect/languages/nextend-facebook-connect.pot'),(807,'wp-content/plugins/nextend-facebook-connect/licence.txt'),(808,'wp-content/plugins/nextend-facebook-connect/nextend-facebook-connect.php'),(809,'wp-content/plugins/nextend-facebook-connect/nextend-social-login.php'),(810,'wp-content/plugins/nextend-facebook-connect/providers/amazon/amazon.php'),(811,'wp-content/plugins/nextend-facebook-connect/providers/amazon/amazon.png'),(812,'wp-content/plugins/nextend-facebook-connect/providers/apple/apple.php'),(813,'wp-content/plugins/nextend-facebook-connect/providers/apple/apple.png'),(814,'wp-content/plugins/nextend-facebook-connect/providers/discord/discord.php'),(815,'wp-content/plugins/nextend-facebook-connect/providers/discord/discord.png'),(816,'wp-content/plugins/nextend-facebook-connect/providers/disqus/disqus.php'),(817,'wp-content/plugins/nextend-facebook-connect/providers/disqus/disqus.png'),(818,'wp-content/plugins/nextend-facebook-connect/providers/facebook/admin/buttons.php'),(819,'wp-content/plugins/nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php'),(820,'wp-content/plugins/nextend-facebook-connect/providers/facebook/admin/getting-started.php'),(821,'wp-content/plugins/nextend-facebook-connect/providers/facebook/admin/settings.php'),(822,'wp-content/plugins/nextend-facebook-connect/providers/facebook/facebook-client.php'),(823,'wp-content/plugins/nextend-facebook-connect/providers/facebook/facebook.php'),(824,'wp-content/plugins/nextend-facebook-connect/providers/facebook/facebook.png'),(825,'wp-content/plugins/nextend-facebook-connect/providers/github/github.php'),(826,'wp-content/plugins/nextend-facebook-connect/providers/github/github.png'),(827,'wp-content/plugins/nextend-facebook-connect/providers/google/admin/buttons.php'),(828,'wp-content/plugins/nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php'),(829,'wp-content/plugins/nextend-facebook-connect/providers/google/admin/getting-started.php'),(830,'wp-content/plugins/nextend-facebook-connect/providers/google/admin/settings.php'),(831,'wp-content/plugins/nextend-facebook-connect/providers/google/google-client.php'),(832,'wp-content/plugins/nextend-facebook-connect/providers/google/google.php'),(833,'wp-content/plugins/nextend-facebook-connect/providers/google/google.png'),(834,'wp-content/plugins/nextend-facebook-connect/providers/line/line.php'),(835,'wp-content/plugins/nextend-facebook-connect/providers/line/line.png'),(836,'wp-content/plugins/nextend-facebook-connect/providers/linkedin/linkedin.php'),(837,'wp-content/plugins/nextend-facebook-connect/providers/linkedin/linkedin.png'),(838,'wp-content/plugins/nextend-facebook-connect/providers/microsoft/microsoft.php'),(839,'wp-content/plugins/nextend-facebook-connect/providers/microsoft/microsoft.png'),(840,'wp-content/plugins/nextend-facebook-connect/providers/paypal/paypal.php'),(841,'wp-content/plugins/nextend-facebook-connect/providers/paypal/paypal.png'),(842,'wp-content/plugins/nextend-facebook-connect/providers/slack/slack.php'),(843,'wp-content/plugins/nextend-facebook-connect/providers/slack/slack.png'),(844,'wp-content/plugins/nextend-facebook-connect/providers/tiktok/tiktok.php'),(845,'wp-content/plugins/nextend-facebook-connect/providers/tiktok/tiktok.png'),(846,'wp-content/plugins/nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php'),(847,'wp-content/plugins/nextend-facebook-connect/providers/twitter/admin/getting-started.php'),(848,'wp-content/plugins/nextend-facebook-connect/providers/twitter/admin/settings.php'),(849,'wp-content/plugins/nextend-facebook-connect/providers/twitter/twitter-client.php'),(850,'wp-content/plugins/nextend-facebook-connect/providers/twitter/twitter.php'),(851,'wp-content/plugins/nextend-facebook-connect/providers/twitter/twitter.png'),(852,'wp-content/plugins/nextend-facebook-connect/providers/vk/vk.php'),(853,'wp-content/plugins/nextend-facebook-connect/providers/vk/vk.png'),(854,'wp-content/plugins/nextend-facebook-connect/providers/wordpress/wordpress.php'),(855,'wp-content/plugins/nextend-facebook-connect/providers/wordpress/wordpress.png'),(856,'wp-content/plugins/nextend-facebook-connect/providers/yahoo/yahoo.php'),(857,'wp-content/plugins/nextend-facebook-connect/providers/yahoo/yahoo.png'),(858,'wp-content/plugins/nextend-facebook-connect/readme.txt'),(859,'wp-content/plugins/nextend-facebook-connect/template-parts/embedded-login/below.php'),(860,'wp-content/plugins/nextend-facebook-connect/template-parts/login/below.php'),(861,'wp-content/plugins/nextend-facebook-connect/template-parts/style.css'),(862,'wp-content/plugins/nextend-facebook-connect/widget.php'),(863,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/css/admin.css'),(864,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/css/colpick.css'),(865,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/css/font-awesome.min.css'),(866,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/css/fontawesome4-compat.min.css'),(867,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/css/fontawesome5.css'),(868,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/css/fontawesome5.min.css'),(869,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/css/global-admin.css'),(870,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/css/mail.png'),(871,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/fonts/FontAwesome.otf'),(872,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/fonts/fontawesome-webfont.ttf'),(873,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/fonts/fontawesome-webfont.woff'),(874,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/fonts/fontawesome-webfont.woff2'),(875,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/images/Feature-request-form-title.webp'),(876,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/images/Feature-request.webp'),(877,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/images/Thank-you.webp'),(878,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/images/ad_white_on_orange.webp'),(879,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/images/br_logo_white.webp'),(880,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/images/submenu-icon-a.png'),(881,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/images/submenu-icon.png'),(882,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/js/admin.js'),(883,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/js/colpick.js'),(884,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/popup/animate.css'),(885,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/popup/br_popup.css'),(886,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/popup/br_popup.js'),(887,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/tippy/tippy.css'),(888,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/tippy/tippy.min.js'),(889,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/webfonts/fa-regular-400.ttf'),(890,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/webfonts/fa-regular-400.woff'),(891,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/webfonts/fa-regular-400.woff2'),(892,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/webfonts/fa-solid-900.ttf'),(893,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/webfonts/fa-solid-900.woff'),(894,'wp-content/plugins/products-compare-for-woocommerce/berocket/assets/webfonts/fa-solid-900.woff2'),(895,'wp-content/plugins/products-compare-for-woocommerce/berocket/framework.php'),(896,'wp-content/plugins/products-compare-for-woocommerce/berocket/framework_version.php'),(897,'wp-content/plugins/products-compare-for-woocommerce/berocket/includes/admin_notices.php'),(898,'wp-content/plugins/products-compare-for-woocommerce/berocket/includes/conditions.php'),(899,'wp-content/plugins/products-compare-for-woocommerce/berocket/includes/custom_post/enable_disable.php'),(900,'wp-content/plugins/products-compare-for-woocommerce/berocket/includes/custom_post/sortable.php'),(901,'wp-content/plugins/products-compare-for-woocommerce/berocket/includes/custom_post.php'),(902,'wp-content/plugins/products-compare-for-woocommerce/berocket/includes/error_notices.php'),(903,'wp-content/plugins/products-compare-for-woocommerce/berocket/includes/functions.php'),(904,'wp-content/plugins/products-compare-for-woocommerce/berocket/includes/ico.png'),(905,'wp-content/plugins/products-compare-for-woocommerce/berocket/includes/information_notices.php'),(906,'wp-content/plugins/products-compare-for-woocommerce/berocket/includes/libraries.php'),(907,'wp-content/plugins/products-compare-for-woocommerce/berocket/includes/plugin-variation.php'),(908,'wp-content/plugins/products-compare-for-woocommerce/berocket/includes/settings_fields.php'),(909,'wp-content/plugins/products-compare-for-woocommerce/berocket/includes/updater.php'),(910,'wp-content/plugins/products-compare-for-woocommerce/berocket/includes/widget.php'),(911,'wp-content/plugins/products-compare-for-woocommerce/berocket/languages/BeRocket_domain-en_US.mo'),(912,'wp-content/plugins/products-compare-for-woocommerce/berocket/languages/BeRocket_domain-en_US.po'),(913,'wp-content/plugins/products-compare-for-woocommerce/berocket/languages/BeRocket_domain-ru_RU.mo'),(914,'wp-content/plugins/products-compare-for-woocommerce/berocket/languages/BeRocket_domain-ru_RU.po'),(915,'wp-content/plugins/products-compare-for-woocommerce/berocket/languages/BeRocket_domain.pot'),(916,'wp-content/plugins/products-compare-for-woocommerce/berocket/libraries/addons/addon_lib.php'),(917,'wp-content/plugins/products-compare-for-woocommerce/berocket/libraries/addons/addons.php'),(918,'wp-content/plugins/products-compare-for-woocommerce/berocket/libraries/addons/default.png'),(919,'wp-content/plugins/products-compare-for-woocommerce/berocket/libraries/check_init.php'),(920,'wp-content/plugins/products-compare-for-woocommerce/berocket/libraries/feature_tab.php'),(921,'wp-content/plugins/products-compare-for-woocommerce/berocket/libraries/popup.php'),(922,'wp-content/plugins/products-compare-for-woocommerce/berocket/libraries/templates/default.png'),(923,'wp-content/plugins/products-compare-for-woocommerce/berocket/libraries/templates/template_lib.php'),(924,'wp-content/plugins/products-compare-for-woocommerce/berocket/libraries/templates/templates.php'),(925,'wp-content/plugins/products-compare-for-woocommerce/berocket/libraries/tippy.php'),(926,'wp-content/plugins/products-compare-for-woocommerce/berocket/libraries/tutorial.php'),(927,'wp-content/plugins/products-compare-for-woocommerce/berocket/libraries/wpml_compatibility.php'),(928,'wp-content/plugins/products-compare-for-woocommerce/berocket/sale/cyber.css'),(929,'wp-content/plugins/products-compare-for-woocommerce/berocket/sale/friday.css'),(930,'wp-content/plugins/products-compare-for-woocommerce/berocket/sale/sale.php'),(931,'wp-content/plugins/products-compare-for-woocommerce/berocket/templates/conditions.php'),(932,'wp-content/plugins/products-compare-for-woocommerce/berocket/templates/premium.php'),(933,'wp-content/plugins/products-compare-for-woocommerce/berocket/templates/settings.php'),(934,'wp-content/plugins/products-compare-for-woocommerce/berocket/templates/settings_footer.php'),(935,'wp-content/plugins/products-compare-for-woocommerce/berocket/templates/widget.php'),(936,'wp-content/plugins/products-compare-for-woocommerce/css/admin.css'),(937,'wp-content/plugins/products-compare-for-woocommerce/css/products_compare.css'),(938,'wp-content/plugins/products-compare-for-woocommerce/includes/compatibility/product_preview.php'),(939,'wp-content/plugins/products-compare-for-woocommerce/includes/widget.php'),(940,'wp-content/plugins/products-compare-for-woocommerce/js/admin.js'),(941,'wp-content/plugins/products-compare-for-woocommerce/js/jquery.cookie.js'),(942,'wp-content/plugins/products-compare-for-woocommerce/js/jquery.mousewheel.min.js'),(943,'wp-content/plugins/products-compare-for-woocommerce/js/products_compare.js'),(944,'wp-content/plugins/products-compare-for-woocommerce/languages/products-compare-for-woocommerce.pot'),(945,'wp-content/plugins/products-compare-for-woocommerce/loco.xml'),(946,'wp-content/plugins/products-compare-for-woocommerce/main.php'),(947,'wp-content/plugins/products-compare-for-woocommerce/products-compare.php'),(948,'wp-content/plugins/products-compare-for-woocommerce/readme.txt'),(949,'wp-content/plugins/products-compare-for-woocommerce/style_templates/full-footer-buttons/berocket-full-footer-buttons.css'),(950,'wp-content/plugins/products-compare-for-woocommerce/style_templates/full-footer-buttons/full-footer-buttons.php'),(951,'wp-content/plugins/products-compare-for-woocommerce/style_templates/full-footer-buttons/full-footer-buttons.png'),(952,'wp-content/plugins/products-compare-for-woocommerce/style_templates/grey-gradient/berocket-grey-gradient.css'),(953,'wp-content/plugins/products-compare-for-woocommerce/style_templates/grey-gradient/grey-gradient.php'),(954,'wp-content/plugins/products-compare-for-woocommerce/style_templates/grey-gradient/grey-gradient.png'),(955,'wp-content/plugins/products-compare-for-woocommerce/style_templates/nice-blue/berocket-nice-blue.css'),(956,'wp-content/plugins/products-compare-for-woocommerce/style_templates/nice-blue/nice-blue.php'),(957,'wp-content/plugins/products-compare-for-woocommerce/style_templates/nice-blue/nice-blue.png'),(958,'wp-content/plugins/products-compare-for-woocommerce/style_templates/nice-green/berocket-nice-green.css'),(959,'wp-content/plugins/products-compare-for-woocommerce/style_templates/nice-green/nice-green.php'),(960,'wp-content/plugins/products-compare-for-woocommerce/style_templates/nice-green/nice-green.png'),(961,'wp-content/plugins/products-compare-for-woocommerce/style_templates/separate-footer/berocket-separate-footer.css'),(962,'wp-content/plugins/products-compare-for-woocommerce/style_templates/separate-footer/separate-footer.php'),(963,'wp-content/plugins/products-compare-for-woocommerce/style_templates/separate-footer/separate-footer.png'),(964,'wp-content/plugins/products-compare-for-woocommerce/style_templates/simple-and-nice/berocket-simple-and-nice.css'),(965,'wp-content/plugins/products-compare-for-woocommerce/style_templates/simple-and-nice/simple-and-nice.php'),(966,'wp-content/plugins/products-compare-for-woocommerce/style_templates/simple-and-nice/simple-and-nice.png'),(967,'wp-content/plugins/products-compare-for-woocommerce/style_templates/simple-shadow/berocket-simple-shadow.css'),(968,'wp-content/plugins/products-compare-for-woocommerce/style_templates/simple-shadow/simple-shadow.php'),(969,'wp-content/plugins/products-compare-for-woocommerce/style_templates/simple-shadow/simple-shadow.png'),(970,'wp-content/plugins/products-compare-for-woocommerce/style_templates/sweet-alert/berocket-sweet-alert.css'),(971,'wp-content/plugins/products-compare-for-woocommerce/style_templates/sweet-alert/sweet-alert.php'),(972,'wp-content/plugins/products-compare-for-woocommerce/style_templates/sweet-alert/sweet-alert.png'),(973,'wp-content/plugins/products-compare-for-woocommerce/templates/new-compare.php'),(974,'wp-content/plugins/products-compare-for-woocommerce/templates/selected_products.php'),(975,'wp-content/plugins/products-compare-for-woocommerce/templates/style_section.php'),(976,'wp-content/plugins/products-compare-for-woocommerce/wpml-config.xml'),(977,'wp-content/plugins/ti-woocommerce-wishlist/admin/base.helper.php'),(978,'wp-content/plugins/ti-woocommerce-wishlist/admin/basesection.helper.php'),(979,'wp-content/plugins/ti-woocommerce-wishlist/admin/basestyle.helper.php'),(980,'wp-content/plugins/ti-woocommerce-wishlist/admin/index.php'),(981,'wp-content/plugins/ti-woocommerce-wishlist/admin/settings/general.class.php'),(982,'wp-content/plugins/ti-woocommerce-wishlist/admin/settings/index.php'),(983,'wp-content/plugins/ti-woocommerce-wishlist/admin/settings/integrations.class.php'),(984,'wp-content/plugins/ti-woocommerce-wishlist/admin/settings/settings.class.php'),(985,'wp-content/plugins/ti-woocommerce-wishlist/admin/settings/style.class.php'),(986,'wp-content/plugins/ti-woocommerce-wishlist/admin/settings/upgrade.class.php'),(987,'wp-content/plugins/ti-woocommerce-wishlist/admin/tinvwl.class.php'),(988,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-form-rtl.css'),(989,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-form-rtl.css.map'),(990,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-form-rtl.min.css'),(991,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-form.css'),(992,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-form.css.map'),(993,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-form.min.css'),(994,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-rtl.css'),(995,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-rtl.css.map'),(996,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-rtl.min.css'),(997,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-setup-rtl.css'),(998,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-setup-rtl.css.map'),(999,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-setup-rtl.min.css'),(1000,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-setup.css'),(1001,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-setup.css.map'),(1002,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin-setup.min.css'),(1003,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin.css'),(1004,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin.css.map'),(1005,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/admin.min.css'),(1006,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/public-rtl.css'),(1007,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/public-rtl.css.map'),(1008,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/public-rtl.min.css'),(1009,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/public.css'),(1010,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/public.css.map'),(1011,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/public.min.css'),(1012,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/theme-rtl.css'),(1013,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/theme-rtl.css.map'),(1014,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/theme-rtl.min.css'),(1015,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/theme.css'),(1016,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/theme.css.map'),(1017,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/theme.min.css'),(1018,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/webfont-rtl.css'),(1019,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/webfont-rtl.css.map'),(1020,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/webfont-rtl.min.css'),(1021,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/webfont.css'),(1022,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/webfont.css.map'),(1023,'wp-content/plugins/ti-woocommerce-wishlist/assets/css/webfont.min.css'),(1024,'wp-content/plugins/ti-woocommerce-wishlist/assets/fonts/tinvwl-webfont.eot'),(1025,'wp-content/plugins/ti-woocommerce-wishlist/assets/fonts/tinvwl-webfont.svg'),(1026,'wp-content/plugins/ti-woocommerce-wishlist/assets/fonts/tinvwl-webfont.ttf'),(1027,'wp-content/plugins/ti-woocommerce-wishlist/assets/fonts/tinvwl-webfont.woff'),(1028,'wp-content/plugins/ti-woocommerce-wishlist/assets/fonts/tinvwl-webfont.woff2'),(1029,'wp-content/plugins/ti-woocommerce-wishlist/assets/img/admin-rescue.png'),(1030,'wp-content/plugins/ti-woocommerce-wishlist/assets/img/admin-rescue@2x.png'),(1031,'wp-content/plugins/ti-woocommerce-wishlist/assets/img/admin-update.png'),(1032,'wp-content/plugins/ti-woocommerce-wishlist/assets/img/admin-update@2x.png'),(1033,'wp-content/plugins/ti-woocommerce-wishlist/assets/img/chevron_down.png'),(1034,'wp-content/plugins/ti-woocommerce-wishlist/assets/img/chevron_down@2x.png'),(1035,'wp-content/plugins/ti-woocommerce-wishlist/assets/img/chevron_icon.png'),(1036,'wp-content/plugins/ti-woocommerce-wishlist/assets/img/chevron_icon@2x.png'),(1037,'wp-content/plugins/ti-woocommerce-wishlist/assets/img/color_icon.png'),(1038,'wp-content/plugins/ti-woocommerce-wishlist/assets/img/color_icon@2x.png'),(1039,'wp-content/plugins/ti-woocommerce-wishlist/assets/img/customization.png'),(1040,'wp-content/plugins/ti-woocommerce-wishlist/assets/img/heart-tinv.svg'),(1041,'wp-content/plugins/ti-woocommerce-wishlist/assets/img/icon_menu.png'),(1042,'wp-content/plugins/ti-woocommerce-wishlist/assets/img/icon_menu@2x.png'),(1043,'wp-content/plugins/ti-woocommerce-wishlist/assets/img/logo_heart.png'),(1044,'wp-content/plugins/ti-woocommerce-wishlist/assets/img/logo_heart@2x.png'),(1045,'wp-content/plugins/ti-woocommerce-wishlist/assets/img/money-back.svg'),(1046,'wp-content/plugins/ti-woocommerce-wishlist/assets/img/premium_logo.png'),(1047,'wp-content/plugins/ti-woocommerce-wishlist/assets/img/rate_us.png'),(1048,'wp-content/plugins/ti-woocommerce-wishlist/assets/img/select_caret.png'),(1049,'wp-content/plugins/ti-woocommerce-wishlist/assets/img/select_caret@2x.png'),(1050,'wp-content/plugins/ti-woocommerce-wishlist/assets/img/select_caret_t.png'),(1051,'wp-content/plugins/ti-woocommerce-wishlist/assets/img/select_caret_t@2x.png'),(1052,'wp-content/plugins/ti-woocommerce-wishlist/assets/img/upgrade_to_pro.jpg'),(1053,'wp-content/plugins/ti-woocommerce-wishlist/assets/img/wizard_logo.png'),(1054,'wp-content/plugins/ti-woocommerce-wishlist/assets/img/wizard_logo@2x.png'),(1055,'wp-content/plugins/ti-woocommerce-wishlist/assets/img/wizard_setup.png'),(1056,'wp-content/plugins/ti-woocommerce-wishlist/assets/img/wizard_setup@2x.png'),(1057,'wp-content/plugins/ti-woocommerce-wishlist/assets/js/admin.js'),(1058,'wp-content/plugins/ti-woocommerce-wishlist/assets/js/admin.min.js'),(1059,'wp-content/plugins/ti-woocommerce-wishlist/assets/js/blocks.js'),(1060,'wp-content/plugins/ti-woocommerce-wishlist/assets/js/bootstrap.js'),(1061,'wp-content/plugins/ti-woocommerce-wishlist/assets/js/bootstrap.min.js'),(1062,'wp-content/plugins/ti-woocommerce-wishlist/assets/js/clipboard.min.js'),(1063,'wp-content/plugins/ti-woocommerce-wishlist/assets/js/editor.js'),(1064,'wp-content/plugins/ti-woocommerce-wishlist/assets/js/public.js'),(1065,'wp-content/plugins/ti-woocommerce-wishlist/assets/js/public.min.js'),(1066,'wp-content/plugins/ti-woocommerce-wishlist/includes/activator.class.php'),(1067,'wp-content/plugins/ti-woocommerce-wishlist/includes/analytics.class.php'),(1068,'wp-content/plugins/ti-woocommerce-wishlist/includes/api/ajax.php'),(1069,'wp-content/plugins/ti-woocommerce-wishlist/includes/api/frontend.class.php'),(1070,'wp-content/plugins/ti-woocommerce-wishlist/includes/api/wishlist.class.php'),(1071,'wp-content/plugins/ti-woocommerce-wishlist/includes/api/yoasti18n/i18n-module-wordpressorg.php'),(1072,'wp-content/plugins/ti-woocommerce-wishlist/includes/api/yoasti18n/i18n-module.php'),(1073,'wp-content/plugins/ti-woocommerce-wishlist/includes/api/yoasti18n.class.php'),(1074,'wp-content/plugins/ti-woocommerce-wishlist/includes/api.class.php'),(1075,'wp-content/plugins/ti-woocommerce-wishlist/includes/deprecated/actions.class.php'),(1076,'wp-content/plugins/ti-woocommerce-wishlist/includes/deprecated/filters.class.php'),(1077,'wp-content/plugins/ti-woocommerce-wishlist/includes/deprecated.class.php'),(1078,'wp-content/plugins/ti-woocommerce-wishlist/includes/export.class.php'),(1079,'wp-content/plugins/ti-woocommerce-wishlist/includes/form.helper.php'),(1080,'wp-content/plugins/ti-woocommerce-wishlist/includes/index.php'),(1081,'wp-content/plugins/ti-woocommerce-wishlist/includes/notice.helper.php'),(1082,'wp-content/plugins/ti-woocommerce-wishlist/includes/pluginextend.helper.php'),(1083,'wp-content/plugins/ti-woocommerce-wishlist/includes/product/index.php'),(1084,'wp-content/plugins/ti-woocommerce-wishlist/includes/product/legacy.class.php'),(1085,'wp-content/plugins/ti-woocommerce-wishlist/includes/product/local.class.php'),(1086,'wp-content/plugins/ti-woocommerce-wishlist/includes/product.helper.php'),(1087,'wp-content/plugins/ti-woocommerce-wishlist/includes/tinvwl.class.php'),(1088,'wp-content/plugins/ti-woocommerce-wishlist/includes/update.helper.php'),(1089,'wp-content/plugins/ti-woocommerce-wishlist/includes/view.helper.php'),(1090,'wp-content/plugins/ti-woocommerce-wishlist/includes/viewsection.helper.php'),(1091,'wp-content/plugins/ti-woocommerce-wishlist/includes/wishlist.class.php'),(1092,'wp-content/plugins/ti-woocommerce-wishlist/includes/wizard.class.php'),(1093,'wp-content/plugins/ti-woocommerce-wishlist/includes/wizardsetup.helper.php'),(1094,'wp-content/plugins/ti-woocommerce-wishlist/index.php'),(1095,'wp-content/plugins/ti-woocommerce-wishlist/integrations/advanced-product-fields-for-woocommerce-pro.php'),(1096,'wp-content/plugins/ti-woocommerce-wishlist/integrations/advanced-product-fields-for-woocommerce.php'),(1097,'wp-content/plugins/ti-woocommerce-wishlist/integrations/automatewoo/trigger-wishlist-item-added-to-cart.php'),(1098,'wp-content/plugins/ti-woocommerce-wishlist/integrations/automatewoo/trigger-wishlist-item-added.php'),(1099,'wp-content/plugins/ti-woocommerce-wishlist/integrations/automatewoo/trigger-wishlist-item-purchased.php'),(1100,'wp-content/plugins/ti-woocommerce-wishlist/integrations/automatewoo/trigger-wishlist-item-removed.php'),(1101,'wp-content/plugins/ti-woocommerce-wishlist/integrations/automatewoo/trigger-wishlist-reminder.php'),(1102,'wp-content/plugins/ti-woocommerce-wishlist/integrations/automatewoo/wishlist.class.php'),(1103,'wp-content/plugins/ti-woocommerce-wishlist/integrations/automatewoo.php'),(1104,'wp-content/plugins/ti-woocommerce-wishlist/integrations/buy-now-button-for-woocommerce.php'),(1105,'wp-content/plugins/ti-woocommerce-wishlist/integrations/check-pincodezipcode-for-shipping-woocommerce.php'),(1106,'wp-content/plugins/ti-woocommerce-wishlist/integrations/cleantalk-spam-protect.php'),(1107,'wp-content/plugins/ti-woocommerce-wishlist/integrations/clever-swatches.php'),(1108,'wp-content/plugins/ti-woocommerce-wishlist/integrations/comet-cache.php'),(1109,'wp-content/plugins/ti-woocommerce-wishlist/integrations/duracelltomi-google-tag-manager.php'),(1110,'wp-content/plugins/ti-woocommerce-wishlist/integrations/elex-woocommerce-catalog-mode.php'),(1111,'wp-content/plugins/ti-woocommerce-wishlist/integrations/gift-cards-for-woocommerce.php'),(1112,'wp-content/plugins/ti-woocommerce-wishlist/integrations/hide-price-add-to-cart-button.php'),(1113,'wp-content/plugins/ti-woocommerce-wishlist/integrations/improved-variable-product-attributes.php'),(1114,'wp-content/plugins/ti-woocommerce-wishlist/integrations/litespeed-cache.php'),(1115,'wp-content/plugins/ti-woocommerce-wishlist/integrations/mycred.php'),(1116,'wp-content/plugins/ti-woocommerce-wishlist/integrations/product-extras-for-woocommerce.php'),(1117,'wp-content/plugins/ti-woocommerce-wishlist/integrations/pw-woocommerce-gift-cards.php'),(1118,'wp-content/plugins/ti-woocommerce-wishlist/integrations/show-single-variations.php'),(1119,'wp-content/plugins/ti-woocommerce-wishlist/integrations/sitepress-multilingual-cms.php'),(1120,'wp-content/plugins/ti-woocommerce-wishlist/integrations/theme-divi.php'),(1121,'wp-content/plugins/ti-woocommerce-wishlist/integrations/theme-flatsome.php'),(1122,'wp-content/plugins/ti-woocommerce-wishlist/integrations/theme-kallyas.php'),(1123,'wp-content/plugins/ti-woocommerce-wishlist/integrations/theme-oceanwp.php'),(1124,'wp-content/plugins/ti-woocommerce-wishlist/integrations/uni-woo-custom-product-options.php'),(1125,'wp-content/plugins/ti-woocommerce-wishlist/integrations/woo-advanced-qty.php'),(1126,'wp-content/plugins/ti-woocommerce-wishlist/integrations/woo-custom-product-addons.php'),(1127,'wp-content/plugins/ti-woocommerce-wishlist/integrations/woo-payment-gateway.php'),(1128,'wp-content/plugins/ti-woocommerce-wishlist/integrations/woo-product-bundle.php'),(1129,'wp-content/plugins/ti-woocommerce-wishlist/integrations/woo-variation-swatches-pro.php'),(1130,'wp-content/plugins/ti-woocommerce-wishlist/integrations/woo-variations-table-grid.php'),(1131,'wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-booking.php'),(1132,'wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-bookings.php'),(1133,'wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-composite-products.php'),(1134,'wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-custom-fields.php'),(1135,'wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-gravityforms-product-addons.php'),(1136,'wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-mix-and-match-products.php'),(1137,'wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-multilingual.php'),(1138,'wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-product-addon.php'),(1139,'wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-product-addons.php'),(1140,'wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-product-bundles.php'),(1141,'wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-product-table.php'),(1142,'wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-rental-and-booking.php'),(1143,'wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-square.php'),(1144,'wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-tm-extra-product-options.php'),(1145,'wp-content/plugins/ti-woocommerce-wishlist/integrations/woocommerce-waitlist.php'),(1146,'wp-content/plugins/ti-woocommerce-wishlist/integrations/wp-fastest-cache.php'),(1147,'wp-content/plugins/ti-woocommerce-wishlist/integrations/wp-grid-builder.php'),(1148,'wp-content/plugins/ti-woocommerce-wishlist/integrations/wp-multilang.php'),(1149,'wp-content/plugins/ti-woocommerce-wishlist/integrations/wp-rocket.php'),(1150,'wp-content/plugins/ti-woocommerce-wishlist/integrations/wpc-variations-radio-buttons.php'),(1151,'wp-content/plugins/ti-woocommerce-wishlist/integrations/yith-woocommerce-product-add-ons.php'),(1152,'wp-content/plugins/ti-woocommerce-wishlist/integrations/yith-woocommerce-product-bundles.php'),(1153,'wp-content/plugins/ti-woocommerce-wishlist/integrations/yith-woocommerce-quick-view.php'),(1154,'wp-content/plugins/ti-woocommerce-wishlist/languages/ti-woocommerce-wishlist.pot'),(1155,'wp-content/plugins/ti-woocommerce-wishlist/public/addtowishlist.class.php'),(1156,'wp-content/plugins/ti-woocommerce-wishlist/public/cart.class.php'),(1157,'wp-content/plugins/ti-woocommerce-wishlist/public/index.php'),(1158,'wp-content/plugins/ti-woocommerce-wishlist/public/tinvwl.class.php'),(1159,'wp-content/plugins/ti-woocommerce-wishlist/public/widget/index.php'),(1160,'wp-content/plugins/ti-woocommerce-wishlist/public/widget/wishlistcounter.class.php'),(1161,'wp-content/plugins/ti-woocommerce-wishlist/public/wishlist/buttons.class.php'),(1162,'wp-content/plugins/ti-woocommerce-wishlist/public/wishlist/index.php'),(1163,'wp-content/plugins/ti-woocommerce-wishlist/public/wishlist/social.class.php'),(1164,'wp-content/plugins/ti-woocommerce-wishlist/public/wishlist/view.class.php'),(1165,'wp-content/plugins/ti-woocommerce-wishlist/public/wishlistcounter.class.php'),(1166,'wp-content/plugins/ti-woocommerce-wishlist/readme.txt'),(1167,'wp-content/plugins/ti-woocommerce-wishlist/templates/ti-addedtowishlist-dialogbox.php'),(1168,'wp-content/plugins/ti-woocommerce-wishlist/templates/ti-addtowishlist.php'),(1169,'wp-content/plugins/ti-woocommerce-wishlist/templates/ti-wishlist-empty.php'),(1170,'wp-content/plugins/ti-woocommerce-wishlist/templates/ti-wishlist-header.php'),(1171,'wp-content/plugins/ti-woocommerce-wishlist/templates/ti-wishlist-item-data.php'),(1172,'wp-content/plugins/ti-woocommerce-wishlist/templates/ti-wishlist-null.php'),(1173,'wp-content/plugins/ti-woocommerce-wishlist/templates/ti-wishlist-product-counter.php'),(1174,'wp-content/plugins/ti-woocommerce-wishlist/templates/ti-wishlist-social.php'),(1175,'wp-content/plugins/ti-woocommerce-wishlist/templates/ti-wishlist-user.php'),(1176,'wp-content/plugins/ti-woocommerce-wishlist/templates/ti-wishlist.php'),(1177,'wp-content/plugins/ti-woocommerce-wishlist/ti-woocommerce-wishlist.php'),(1178,'wp-content/plugins/ti-woocommerce-wishlist/tinv-wishlists-function.php'),(1179,'wp-content/plugins/ti-woocommerce-wishlist/views/admin/export-import-settings.php'),(1180,'wp-content/plugins/ti-woocommerce-wishlist/views/admin/index.php'),(1181,'wp-content/plugins/ti-woocommerce-wishlist/views/admin/premium-features.php'),(1182,'wp-content/plugins/ti-woocommerce-wishlist/views/admin/templates-status.php'),(1183,'wp-content/plugins/ti-woocommerce-wishlist/views/admin/upgrade.php'),(1184,'wp-content/plugins/ti-woocommerce-wishlist/views/general.php'),(1185,'wp-content/plugins/ti-woocommerce-wishlist/views/header.php'),(1186,'wp-content/plugins/ti-woocommerce-wishlist/views/index.php'),(1187,'wp-content/plugins/ti-woocommerce-wishlist/views/message.php'),(1188,'wp-content/plugins/ti-woocommerce-wishlist/views/null.php'),(1189,'wp-content/plugins/ti-woocommerce-wishlist/views/section-field-html.php'),(1190,'wp-content/plugins/ti-woocommerce-wishlist/views/section-field-style.php'),(1191,'wp-content/plugins/ti-woocommerce-wishlist/views/section-field.php'),(1192,'wp-content/plugins/ti-woocommerce-wishlist/views/section-general.php'),(1193,'wp-content/plugins/ti-woocommerce-wishlist/views/section-group-style-e.php'),(1194,'wp-content/plugins/ti-woocommerce-wishlist/views/section-group-style.php'),(1195,'wp-content/plugins/ti-woocommerce-wishlist/views/section-group.php'),(1196,'wp-content/plugins/ti-woocommerce-wishlist/views/section-infoblock.php'),(1197,'wp-content/plugins/ti-woocommerce-wishlist/views/wizard/finish.php'),(1198,'wp-content/plugins/ti-woocommerce-wishlist/views/wizard/footer.php'),(1199,'wp-content/plugins/ti-woocommerce-wishlist/views/wizard/header.php'),(1200,'wp-content/plugins/ti-woocommerce-wishlist/views/wizard/index.php'),(1201,'wp-content/plugins/ti-woocommerce-wishlist/views/wizard/intro.php'),(1202,'wp-content/plugins/ti-woocommerce-wishlist/views/wizard/step-button.php'),(1203,'wp-content/plugins/ti-woocommerce-wishlist/views/wizard/step-page-field.php'),(1204,'wp-content/plugins/ti-woocommerce-wishlist/views/wizard/step-page.php'),(1205,'wp-content/plugins/ti-woocommerce-wishlist/views/wizard/step-processing.php'),(1206,'wp-content/plugins/ti-woocommerce-wishlist/views/wizard/step-social.php'),(1207,'wp-content/plugins/ti-woocommerce-wishlist/views/wizard/step-support.php'),(1208,'wp-content/plugins/ti-woocommerce-wishlist/wpm-config.json'),(1209,'wp-content/plugins/ti-woocommerce-wishlist/wpml-config.xml'),(1210,'wp-content/plugins/woocommerce/assets/client/admin/activity-panels-help/style-rtl.css'),(1211,'wp-content/plugins/woocommerce/assets/client/admin/activity-panels-inbox/style-rtl.css'),(1212,'wp-content/plugins/woocommerce/assets/client/admin/analytics-report/style-rtl.css'),(1213,'wp-content/plugins/woocommerce/assets/client/admin/analytics-report-categories/style-rtl.css'),(1214,'wp-content/plugins/woocommerce/assets/client/admin/analytics-report-coupons/style-rtl.css'),(1215,'wp-content/plugins/woocommerce/assets/client/admin/analytics-report-customers/style-rtl.css'),(1216,'wp-content/plugins/woocommerce/assets/client/admin/analytics-report-downloads/style-rtl.css'),(1217,'wp-content/plugins/woocommerce/assets/client/admin/analytics-report-orders/style-rtl.css'),(1218,'wp-content/plugins/woocommerce/assets/client/admin/analytics-report-products/style-rtl.css'),(1219,'wp-content/plugins/woocommerce/assets/client/admin/analytics-report-revenue/style-rtl.css'),(1220,'wp-content/plugins/woocommerce/assets/client/admin/analytics-report-stock/style-rtl.css'),(1221,'wp-content/plugins/woocommerce/assets/client/admin/analytics-report-taxes/style-rtl.css'),(1222,'wp-content/plugins/woocommerce/assets/client/admin/analytics-report-variations/style-rtl.css'),(1223,'wp-content/plugins/woocommerce/assets/client/admin/analytics-settings/style-rtl.css'),(1224,'wp-content/plugins/woocommerce/assets/client/admin/app/index.asset.php'),(1225,'wp-content/plugins/woocommerce/assets/client/admin/app/index.js'),(1226,'wp-content/plugins/woocommerce/assets/client/admin/app/index.js.LICENSE.txt'),(1227,'wp-content/plugins/woocommerce/assets/client/admin/app/style-rtl.css'),(1228,'wp-content/plugins/woocommerce/assets/client/admin/app/style.css'),(1229,'wp-content/plugins/woocommerce/assets/client/admin/beta-features-tracking-modal/style-rtl.css'),(1230,'wp-content/plugins/woocommerce/assets/client/admin/beta-features-tracking-modal/style.css'),(1231,'wp-content/plugins/woocommerce/assets/client/admin/ce7c51567f54d0aceb37.png'),(1232,'wp-content/plugins/woocommerce/assets/client/admin/chunks/185.style.css'),(1233,'wp-content/plugins/woocommerce/assets/client/admin/chunks/1996.style.css'),(1234,'wp-content/plugins/woocommerce/assets/client/admin/chunks/2397.style.css'),(1235,'wp-content/plugins/woocommerce/assets/client/admin/chunks/2502.style.css'),(1236,'wp-content/plugins/woocommerce/assets/client/admin/chunks/2624.style.css'),(1237,'wp-content/plugins/woocommerce/assets/client/admin/chunks/2953.style.css'),(1238,'wp-content/plugins/woocommerce/assets/client/admin/chunks/3576.style.css'),(1239,'wp-content/plugins/woocommerce/assets/client/admin/chunks/3700.style.css'),(1240,'wp-content/plugins/woocommerce/assets/client/admin/chunks/3994.style.css'),(1241,'wp-content/plugins/woocommerce/assets/client/admin/chunks/4011.style.css'),(1242,'wp-content/plugins/woocommerce/assets/client/admin/chunks/4854.style.css'),(1243,'wp-content/plugins/woocommerce/assets/client/admin/chunks/5396.style.css'),(1244,'wp-content/plugins/woocommerce/assets/client/admin/chunks/5487.js'),(1245,'wp-content/plugins/woocommerce/assets/client/admin/chunks/5502.style.css'),(1246,'wp-content/plugins/woocommerce/assets/client/admin/chunks/6125.style.css'),(1247,'wp-content/plugins/woocommerce/assets/client/admin/chunks/6637.js'),(1248,'wp-content/plugins/woocommerce/assets/client/admin/chunks/6732.style.css'),(1249,'wp-content/plugins/woocommerce/assets/client/admin/chunks/6824.style.css'),(1250,'wp-content/plugins/woocommerce/assets/client/admin/chunks/727.style.css'),(1251,'wp-content/plugins/woocommerce/assets/client/admin/chunks/7433.js'),(1252,'wp-content/plugins/woocommerce/assets/client/admin/chunks/7708.style.css'),(1253,'wp-content/plugins/woocommerce/assets/client/admin/chunks/8544.style.css'),(1254,'wp-content/plugins/woocommerce/assets/client/admin/chunks/8597.style.css'),(1255,'wp-content/plugins/woocommerce/assets/client/admin/chunks/8625.js'),(1256,'wp-content/plugins/woocommerce/assets/client/admin/chunks/8851.style.css'),(1257,'wp-content/plugins/woocommerce/assets/client/admin/chunks/9360.style.css'),(1258,'wp-content/plugins/woocommerce/assets/client/admin/chunks/9456.style.css'),(1259,'wp-content/plugins/woocommerce/assets/client/admin/chunks/9792.style.css'),(1260,'wp-content/plugins/woocommerce/assets/client/admin/chunks/9966.style.css'),(1261,'wp-content/plugins/woocommerce/assets/client/admin/chunks/activity-panels-help.js'),(1262,'wp-content/plugins/woocommerce/assets/client/admin/chunks/activity-panels-inbox.js'),(1263,'wp-content/plugins/woocommerce/assets/client/admin/chunks/analytics-report-categories.js'),(1264,'wp-content/plugins/woocommerce/assets/client/admin/chunks/analytics-report-coupons.js'),(1265,'wp-content/plugins/woocommerce/assets/client/admin/chunks/analytics-report-customers.js'),(1266,'wp-content/plugins/woocommerce/assets/client/admin/chunks/analytics-report-downloads.js'),(1267,'wp-content/plugins/woocommerce/assets/client/admin/chunks/analytics-report-orders.js'),(1268,'wp-content/plugins/woocommerce/assets/client/admin/chunks/analytics-report-products.js'),(1269,'wp-content/plugins/woocommerce/assets/client/admin/chunks/analytics-report-revenue.js'),(1270,'wp-content/plugins/woocommerce/assets/client/admin/chunks/analytics-report-stock.js'),(1271,'wp-content/plugins/woocommerce/assets/client/admin/chunks/analytics-report-taxes.js'),(1272,'wp-content/plugins/woocommerce/assets/client/admin/chunks/analytics-report-variations.js'),(1273,'wp-content/plugins/woocommerce/assets/client/admin/chunks/analytics-report.js'),(1274,'wp-content/plugins/woocommerce/assets/client/admin/chunks/analytics-settings.js'),(1275,'wp-content/plugins/woocommerce/assets/client/admin/chunks/customizable-dashboard.js'),(1276,'wp-content/plugins/woocommerce/assets/client/admin/chunks/dashboard-charts.js'),(1277,'wp-content/plugins/woocommerce/assets/client/admin/chunks/dashboard.js'),(1278,'wp-content/plugins/woocommerce/assets/client/admin/chunks/homescreen.js'),(1279,'wp-content/plugins/woocommerce/assets/client/admin/chunks/leaderboards.js'),(1280,'wp-content/plugins/woocommerce/assets/client/admin/chunks/marketing-overview.js'),(1281,'wp-content/plugins/woocommerce/assets/client/admin/chunks/payment-recommendations.js'),(1282,'wp-content/plugins/woocommerce/assets/client/admin/chunks/profile-wizard.js'),(1283,'wp-content/plugins/woocommerce/assets/client/admin/chunks/shipping-recommendations.js'),(1284,'wp-content/plugins/woocommerce/assets/client/admin/chunks/store-alerts.js'),(1285,'wp-content/plugins/woocommerce/assets/client/admin/chunks/store-performance.js'),(1286,'wp-content/plugins/woocommerce/assets/client/admin/chunks/two-column-tasks-extended.js'),(1287,'wp-content/plugins/woocommerce/assets/client/admin/chunks/two-column-tasks.js'),(1288,'wp-content/plugins/woocommerce/assets/client/admin/chunks/wcpay-payment-welcome-page.js'),(1289,'wp-content/plugins/woocommerce/assets/client/admin/components/index.asset.php'),(1290,'wp-content/plugins/woocommerce/assets/client/admin/components/index.js'),(1291,'wp-content/plugins/woocommerce/assets/client/admin/components/index.js.LICENSE.txt'),(1292,'wp-content/plugins/woocommerce/assets/client/admin/components/style-rtl.css'),(1293,'wp-content/plugins/woocommerce/assets/client/admin/components/style.css'),(1294,'wp-content/plugins/woocommerce/assets/client/admin/csv-export/index.asset.php'),(1295,'wp-content/plugins/woocommerce/assets/client/admin/csv-export/index.js'),(1296,'wp-content/plugins/woocommerce/assets/client/admin/csv-export/index.js.LICENSE.txt'),(1297,'wp-content/plugins/woocommerce/assets/client/admin/currency/index.asset.php'),(1298,'wp-content/plugins/woocommerce/assets/client/admin/currency/index.js'),(1299,'wp-content/plugins/woocommerce/assets/client/admin/customer-effort-score/index.asset.php'),(1300,'wp-content/plugins/woocommerce/assets/client/admin/customer-effort-score/index.js'),(1301,'wp-content/plugins/woocommerce/assets/client/admin/customer-effort-score/style-rtl.css'),(1302,'wp-content/plugins/woocommerce/assets/client/admin/customer-effort-score/style.css'),(1303,'wp-content/plugins/woocommerce/assets/client/admin/dashboard/style-rtl.css'),(1304,'wp-content/plugins/woocommerce/assets/client/admin/dashboard-charts/style-rtl.css'),(1305,'wp-content/plugins/woocommerce/assets/client/admin/data/index.asset.php'),(1306,'wp-content/plugins/woocommerce/assets/client/admin/data/index.js'),(1307,'wp-content/plugins/woocommerce/assets/client/admin/data/index.js.LICENSE.txt'),(1308,'wp-content/plugins/woocommerce/assets/client/admin/date/index.asset.php'),(1309,'wp-content/plugins/woocommerce/assets/client/admin/date/index.js'),(1310,'wp-content/plugins/woocommerce/assets/client/admin/experimental/index.asset.php'),(1311,'wp-content/plugins/woocommerce/assets/client/admin/experimental/index.js'),(1312,'wp-content/plugins/woocommerce/assets/client/admin/experimental/index.js.LICENSE.txt'),(1313,'wp-content/plugins/woocommerce/assets/client/admin/experimental/style-rtl.css'),(1314,'wp-content/plugins/woocommerce/assets/client/admin/experimental/style.css'),(1315,'wp-content/plugins/woocommerce/assets/client/admin/explat/index.asset.php'),(1316,'wp-content/plugins/woocommerce/assets/client/admin/explat/index.js'),(1317,'wp-content/plugins/woocommerce/assets/client/admin/explat/index.js.LICENSE.txt'),(1318,'wp-content/plugins/woocommerce/assets/client/admin/homescreen/style-rtl.css'),(1319,'wp-content/plugins/woocommerce/assets/client/admin/leaderboards/style-rtl.css'),(1320,'wp-content/plugins/woocommerce/assets/client/admin/marketing-coupons/style-rtl.css'),(1321,'wp-content/plugins/woocommerce/assets/client/admin/marketing-coupons/style.css'),(1322,'wp-content/plugins/woocommerce/assets/client/admin/marketing-overview/style-rtl.css'),(1323,'wp-content/plugins/woocommerce/assets/client/admin/navigation/index.asset.php'),(1324,'wp-content/plugins/woocommerce/assets/client/admin/navigation/index.js'),(1325,'wp-content/plugins/woocommerce/assets/client/admin/navigation-opt-out/style-rtl.css'),(1326,'wp-content/plugins/woocommerce/assets/client/admin/navigation-opt-out/style.css'),(1327,'wp-content/plugins/woocommerce/assets/client/admin/notices/index.asset.php'),(1328,'wp-content/plugins/woocommerce/assets/client/admin/notices/index.js'),(1329,'wp-content/plugins/woocommerce/assets/client/admin/number/index.asset.php'),(1330,'wp-content/plugins/woocommerce/assets/client/admin/number/index.js'),(1331,'wp-content/plugins/woocommerce/assets/client/admin/onboarding/index.asset.php'),(1332,'wp-content/plugins/woocommerce/assets/client/admin/onboarding/index.js'),(1333,'wp-content/plugins/woocommerce/assets/client/admin/onboarding/style-rtl.css'),(1334,'wp-content/plugins/woocommerce/assets/client/admin/onboarding/style.css'),(1335,'wp-content/plugins/woocommerce/assets/client/admin/payment-method-promotions/style-rtl.css'),(1336,'wp-content/plugins/woocommerce/assets/client/admin/payment-method-promotions/style.css'),(1337,'wp-content/plugins/woocommerce/assets/client/admin/payment-recommendations/style-rtl.css'),(1338,'wp-content/plugins/woocommerce/assets/client/admin/print-shipping-label-banner/style-rtl.css'),(1339,'wp-content/plugins/woocommerce/assets/client/admin/print-shipping-label-banner/style.css'),(1340,'wp-content/plugins/woocommerce/assets/client/admin/profile-wizard/style-rtl.css'),(1341,'wp-content/plugins/woocommerce/assets/client/admin/shipping-recommendations/style-rtl.css'),(1342,'wp-content/plugins/woocommerce/assets/client/admin/store-alerts/style-rtl.css'),(1343,'wp-content/plugins/woocommerce/assets/client/admin/store-performance/style-rtl.css'),(1344,'wp-content/plugins/woocommerce/assets/client/admin/tracks/index.asset.php'),(1345,'wp-content/plugins/woocommerce/assets/client/admin/tracks/index.js'),(1346,'wp-content/plugins/woocommerce/assets/client/admin/wcpay-payment-welcome-page/style-rtl.css'),(1347,'wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/beta-features-tracking-modal.asset.php'),(1348,'wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/beta-features-tracking-modal.js'),(1349,'wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/marketing-coupons.asset.php'),(1350,'wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/marketing-coupons.js'),(1351,'wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/marketing-coupons.js.LICENSE.txt'),(1352,'wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/navigation-opt-out.asset.php'),(1353,'wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/navigation-opt-out.js'),(1354,'wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/onboarding-homepage-notice.asset.php'),(1355,'wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/onboarding-homepage-notice.js'),(1356,'wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/onboarding-product-import-notice.asset.php'),(1357,'wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/onboarding-product-import-notice.js'),(1358,'wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/onboarding-product-notice.asset.php'),(1359,'wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/onboarding-product-notice.js'),(1360,'wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/onboarding-tax-notice.asset.php'),(1361,'wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/onboarding-tax-notice.js'),(1362,'wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/payment-method-promotions.asset.php'),(1363,'wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/payment-method-promotions.js'),(1364,'wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/payment-method-promotions.js.LICENSE.txt'),(1365,'wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/print-shipping-label-banner.asset.php'),(1366,'wp-content/plugins/woocommerce/assets/client/admin/wp-admin-scripts/print-shipping-label-banner.js'),(1367,'wp-content/plugins/woocommerce/assets/css/activation-rtl.css'),(1368,'wp-content/plugins/woocommerce/assets/css/activation.css'),(1369,'wp-content/plugins/woocommerce/assets/css/admin-rtl.css'),(1370,'wp-content/plugins/woocommerce/assets/css/admin.css'),(1371,'wp-content/plugins/woocommerce/assets/css/auth-rtl.css'),(1372,'wp-content/plugins/woocommerce/assets/css/auth.css'),(1373,'wp-content/plugins/woocommerce/assets/css/dashboard-rtl.css'),(1374,'wp-content/plugins/woocommerce/assets/css/dashboard-setup-rtl.css'),(1375,'wp-content/plugins/woocommerce/assets/css/dashboard-setup.css'),(1376,'wp-content/plugins/woocommerce/assets/css/dashboard.css'),(1377,'wp-content/plugins/woocommerce/assets/css/helper-rtl.css'),(1378,'wp-content/plugins/woocommerce/assets/css/helper.css'),(1379,'wp-content/plugins/woocommerce/assets/css/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png'),(1380,'wp-content/plugins/woocommerce/assets/css/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png'),(1381,'wp-content/plugins/woocommerce/assets/css/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png'),(1382,'wp-content/plugins/woocommerce/assets/css/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png'),(1383,'wp-content/plugins/woocommerce/assets/css/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png'),(1384,'wp-content/plugins/woocommerce/assets/css/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png'),(1385,'wp-content/plugins/woocommerce/assets/css/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.png'),(1386,'wp-content/plugins/woocommerce/assets/css/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png'),(1387,'wp-content/plugins/woocommerce/assets/css/jquery-ui/images/ui-icons_222222_256x240.png'),(1388,'wp-content/plugins/woocommerce/assets/css/jquery-ui/images/ui-icons_2e83ff_256x240.png'),(1389,'wp-content/plugins/woocommerce/assets/css/jquery-ui/images/ui-icons_454545_256x240.png'),(1390,'wp-content/plugins/woocommerce/assets/css/jquery-ui/images/ui-icons_888888_256x240.png'),(1391,'wp-content/plugins/woocommerce/assets/css/jquery-ui/images/ui-icons_cd0a0a_256x240.png'),(1392,'wp-content/plugins/woocommerce/assets/css/jquery-ui/jquery-ui-rtl.css'),(1393,'wp-content/plugins/woocommerce/assets/css/jquery-ui/jquery-ui.css'),(1394,'wp-content/plugins/woocommerce/assets/css/jquery-ui/jquery-ui.min.css'),(1395,'wp-content/plugins/woocommerce/assets/css/marketplace-suggestions-rtl.css'),(1396,'wp-content/plugins/woocommerce/assets/css/marketplace-suggestions.css'),(1397,'wp-content/plugins/woocommerce/assets/css/menu-rtl.css'),(1398,'wp-content/plugins/woocommerce/assets/css/menu.css'),(1399,'wp-content/plugins/woocommerce/assets/css/network-order-widget-rtl.css'),(1400,'wp-content/plugins/woocommerce/assets/css/network-order-widget.css'),(1401,'wp-content/plugins/woocommerce/assets/css/photoswipe/default-skin/default-skin.css'),(1402,'wp-content/plugins/woocommerce/assets/css/photoswipe/default-skin/default-skin.min.css'),(1403,'wp-content/plugins/woocommerce/assets/css/photoswipe/default-skin/default-skin.png'),(1404,'wp-content/plugins/woocommerce/assets/css/photoswipe/default-skin/default-skin.svg'),(1405,'wp-content/plugins/woocommerce/assets/css/photoswipe/default-skin/preloader.gif'),(1406,'wp-content/plugins/woocommerce/assets/css/photoswipe/photoswipe.css'),(1407,'wp-content/plugins/woocommerce/assets/css/photoswipe/photoswipe.min.css'),(1408,'wp-content/plugins/woocommerce/assets/css/prettyPhoto-rtl.css'),(1409,'wp-content/plugins/woocommerce/assets/css/prettyPhoto.css'),(1410,'wp-content/plugins/woocommerce/assets/css/privacy-rtl.css'),(1411,'wp-content/plugins/woocommerce/assets/css/privacy.css'),(1412,'wp-content/plugins/woocommerce/assets/css/reports-print-rtl.css'),(1413,'wp-content/plugins/woocommerce/assets/css/reports-print.css'),(1414,'wp-content/plugins/woocommerce/assets/css/select2.css'),(1415,'wp-content/plugins/woocommerce/assets/css/twenty-nineteen-rtl.css'),(1416,'wp-content/plugins/woocommerce/assets/css/twenty-nineteen.css'),(1417,'wp-content/plugins/woocommerce/assets/css/twenty-seventeen-rtl.css'),(1418,'wp-content/plugins/woocommerce/assets/css/twenty-seventeen.css'),(1419,'wp-content/plugins/woocommerce/assets/css/twenty-twenty-one-admin-rtl.css'),(1420,'wp-content/plugins/woocommerce/assets/css/twenty-twenty-one-admin.css'),(1421,'wp-content/plugins/woocommerce/assets/css/twenty-twenty-one-rtl.css'),(1422,'wp-content/plugins/woocommerce/assets/css/twenty-twenty-one.css'),(1423,'wp-content/plugins/woocommerce/assets/css/twenty-twenty-rtl.css'),(1424,'wp-content/plugins/woocommerce/assets/css/twenty-twenty-two-rtl.css'),(1425,'wp-content/plugins/woocommerce/assets/css/twenty-twenty-two.css'),(1426,'wp-content/plugins/woocommerce/assets/css/twenty-twenty.css'),(1427,'wp-content/plugins/woocommerce/assets/css/wc-setup-rtl.css'),(1428,'wp-content/plugins/woocommerce/assets/css/wc-setup.css'),(1429,'wp-content/plugins/woocommerce/assets/css/woocommerce-layout-rtl.css'),(1430,'wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css'),(1431,'wp-content/plugins/woocommerce/assets/css/woocommerce-rtl.css'),(1432,'wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen-rtl.css'),(1433,'wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.css'),(1434,'wp-content/plugins/woocommerce/assets/css/woocommerce.css'),(1435,'wp-content/plugins/woocommerce/assets/fonts/WooCommerce.eot'),(1436,'wp-content/plugins/woocommerce/assets/fonts/WooCommerce.svg'),(1437,'wp-content/plugins/woocommerce/assets/fonts/WooCommerce.ttf'),(1438,'wp-content/plugins/woocommerce/assets/fonts/WooCommerce.woff'),(1439,'wp-content/plugins/woocommerce/assets/fonts/star.eot'),(1440,'wp-content/plugins/woocommerce/assets/fonts/star.svg'),(1441,'wp-content/plugins/woocommerce/assets/fonts/star.ttf'),(1442,'wp-content/plugins/woocommerce/assets/fonts/star.woff'),(1443,'wp-content/plugins/woocommerce/assets/images/admin_notes/dashboard-widget-setup.png'),(1444,'wp-content/plugins/woocommerce/assets/images/admin_notes/filter-by-product-variations-note.svg'),(1445,'wp-content/plugins/woocommerce/assets/images/admin_notes/marketing-jetpack-2x.png'),(1446,'wp-content/plugins/woocommerce/assets/images/calendar.png'),(1447,'wp-content/plugins/woocommerce/assets/images/dashboard-widget-setup.png'),(1448,'wp-content/plugins/woocommerce/assets/images/empty-content.svg'),(1449,'wp-content/plugins/woocommerce/assets/images/eway-logo.jpg'),(1450,'wp-content/plugins/woocommerce/assets/images/help.png'),(1451,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/amex.png'),(1452,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/amex.svg'),(1453,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/diners.png'),(1454,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/diners.svg'),(1455,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/discover.png'),(1456,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/discover.svg'),(1457,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/jcb.png'),(1458,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/jcb.svg'),(1459,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/laser.png'),(1460,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/laser.svg'),(1461,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/maestro.png'),(1462,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/maestro.svg'),(1463,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/mastercard.png'),(1464,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/mastercard.svg'),(1465,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/visa.png'),(1466,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/visa.svg'),(1467,'wp-content/plugins/woocommerce/assets/images/icons/edit.png'),(1468,'wp-content/plugins/woocommerce/assets/images/icons/gridicons-checkmark.svg'),(1469,'wp-content/plugins/woocommerce/assets/images/icons/gridicons-chevron-down.svg'),(1470,'wp-content/plugins/woocommerce/assets/images/icons/loader.svg'),(1471,'wp-content/plugins/woocommerce/assets/images/icons/star-golden.svg'),(1472,'wp-content/plugins/woocommerce/assets/images/icons/star-gray.svg'),(1473,'wp-content/plugins/woocommerce/assets/images/icons/star-half-filled.svg'),(1474,'wp-content/plugins/woocommerce/assets/images/klarna-black.png'),(1475,'wp-content/plugins/woocommerce/assets/images/marketing/amazon-ebay.svg'),(1476,'wp-content/plugins/woocommerce/assets/images/marketing/automatewoo.svg'),(1477,'wp-content/plugins/woocommerce/assets/images/marketing/facebook.svg'),(1478,'wp-content/plugins/woocommerce/assets/images/marketing/google.svg'),(1479,'wp-content/plugins/woocommerce/assets/images/marketing/hubspot.svg'),(1480,'wp-content/plugins/woocommerce/assets/images/marketing/mailchimp.svg'),(1481,'wp-content/plugins/woocommerce/assets/images/marketing/mailpoet.svg'),(1482,'wp-content/plugins/woocommerce/assets/images/marketing/pinterest.svg'),(1483,'wp-content/plugins/woocommerce/assets/images/marketplace-header-bg@2x.png'),(1484,'wp-content/plugins/woocommerce/assets/images/mercadopago.png'),(1485,'wp-content/plugins/woocommerce/assets/images/onboarding/bacs.svg'),(1486,'wp-content/plugins/woocommerce/assets/images/onboarding/cod.svg'),(1487,'wp-content/plugins/woocommerce/assets/images/onboarding/creative-mail-by-constant-contact.png'),(1488,'wp-content/plugins/woocommerce/assets/images/onboarding/creativemail.png'),(1489,'wp-content/plugins/woocommerce/assets/images/onboarding/eway.png'),(1490,'wp-content/plugins/woocommerce/assets/images/onboarding/fb-woocommerce.png'),(1491,'wp-content/plugins/woocommerce/assets/images/onboarding/g-shopping.png'),(1492,'wp-content/plugins/woocommerce/assets/images/onboarding/google-listings-and-ads.png'),(1493,'wp-content/plugins/woocommerce/assets/images/onboarding/mailchimp-for-woocommerce.png'),(1494,'wp-content/plugins/woocommerce/assets/images/onboarding/mailchimp.png'),(1495,'wp-content/plugins/woocommerce/assets/images/onboarding/mailpoet.png'),(1496,'wp-content/plugins/woocommerce/assets/images/onboarding/mercadopago.png'),(1497,'wp-content/plugins/woocommerce/assets/images/onboarding/mollie.svg'),(1498,'wp-content/plugins/woocommerce/assets/images/onboarding/other-small.jpg'),(1499,'wp-content/plugins/woocommerce/assets/images/onboarding/paystack.png'),(1500,'wp-content/plugins/woocommerce/assets/images/onboarding/payu.svg'),(1501,'wp-content/plugins/woocommerce/assets/images/onboarding/pinterest.png'),(1502,'wp-content/plugins/woocommerce/assets/images/onboarding/razorpay.svg'),(1503,'wp-content/plugins/woocommerce/assets/images/onboarding/wcpay.svg'),(1504,'wp-content/plugins/woocommerce/assets/images/payfast.png'),(1505,'wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/affirm.png'),(1506,'wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/afterpay.png'),(1507,'wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/amazonpay.png'),(1508,'wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/bacs.png'),(1509,'wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/cod.png'),(1510,'wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/eway.png'),(1511,'wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/klarna.png'),(1512,'wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/mercadopago.png'),(1513,'wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/mollie.png'),(1514,'wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/payfast.png'),(1515,'wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/paypal.png'),(1516,'wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/paystack.png'),(1517,'wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/payu.png'),(1518,'wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/razorpay.png'),(1519,'wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/square.png'),(1520,'wp-content/plugins/woocommerce/assets/images/payment_methods/72x72/stripe.png'),(1521,'wp-content/plugins/woocommerce/assets/images/paypal-braintree.png'),(1522,'wp-content/plugins/woocommerce/assets/images/paypal.png'),(1523,'wp-content/plugins/woocommerce/assets/images/placeholder-attachment.png'),(1524,'wp-content/plugins/woocommerce/assets/images/placeholder.png'),(1525,'wp-content/plugins/woocommerce/assets/images/select2-spinner.gif'),(1526,'wp-content/plugins/woocommerce/assets/images/select2.png'),(1527,'wp-content/plugins/woocommerce/assets/images/select2x2.png'),(1528,'wp-content/plugins/woocommerce/assets/images/shippingillustration.svg'),(1529,'wp-content/plugins/woocommerce/assets/images/square-black.png'),(1530,'wp-content/plugins/woocommerce/assets/images/stripe.png'),(1531,'wp-content/plugins/woocommerce/assets/images/task_list/basics-section-illustration.png'),(1532,'wp-content/plugins/woocommerce/assets/images/task_list/expand-section-illustration.png'),(1533,'wp-content/plugins/woocommerce/assets/images/task_list/sales-section-illustration.png'),(1534,'wp-content/plugins/woocommerce/assets/images/wcpayments-icon-secure.png'),(1535,'wp-content/plugins/woocommerce/assets/images/woocommerce_logo.png'),(1536,'wp-content/plugins/woocommerce/assets/images/woocommerce_logo.svg'),(1537,'wp-content/plugins/woocommerce/assets/images/wpspin-2x.gif'),(1538,'wp-content/plugins/woocommerce/assets/images/wpspin.gif'),(1539,'wp-content/plugins/woocommerce/assets/js/accounting/accounting.js'),(1540,'wp-content/plugins/woocommerce/assets/js/accounting/accounting.min.js'),(1541,'wp-content/plugins/woocommerce/assets/js/admin/api-keys.js'),(1542,'wp-content/plugins/woocommerce/assets/js/admin/api-keys.min.js'),(1543,'wp-content/plugins/woocommerce/assets/js/admin/backbone-modal.js'),(1544,'wp-content/plugins/woocommerce/assets/js/admin/backbone-modal.min.js'),(1545,'wp-content/plugins/woocommerce/assets/js/admin/marketplace-suggestions.js'),(1546,'wp-content/plugins/woocommerce/assets/js/admin/marketplace-suggestions.min.js'),(1547,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-coupon.js'),(1548,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-coupon.min.js'),(1549,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-order.js'),(1550,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-order.min.js'),(1551,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-product-variation.js'),(1552,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-product-variation.min.js'),(1553,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-product.js'),(1554,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-product.min.js'),(1555,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes.js'),(1556,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes.min.js'),(1557,'wp-content/plugins/woocommerce/assets/js/admin/network-orders.js'),(1558,'wp-content/plugins/woocommerce/assets/js/admin/network-orders.min.js'),(1559,'wp-content/plugins/woocommerce/assets/js/admin/product-ordering.js'),(1560,'wp-content/plugins/woocommerce/assets/js/admin/product-ordering.min.js'),(1561,'wp-content/plugins/woocommerce/assets/js/admin/quick-edit.js'),(1562,'wp-content/plugins/woocommerce/assets/js/admin/quick-edit.min.js'),(1563,'wp-content/plugins/woocommerce/assets/js/admin/reports.js'),(1564,'wp-content/plugins/woocommerce/assets/js/admin/reports.min.js'),(1565,'wp-content/plugins/woocommerce/assets/js/admin/settings-views-html-settings-tax.js'),(1566,'wp-content/plugins/woocommerce/assets/js/admin/settings-views-html-settings-tax.min.js'),(1567,'wp-content/plugins/woocommerce/assets/js/admin/settings.js'),(1568,'wp-content/plugins/woocommerce/assets/js/admin/settings.min.js'),(1569,'wp-content/plugins/woocommerce/assets/js/admin/system-status.js'),(1570,'wp-content/plugins/woocommerce/assets/js/admin/system-status.min.js'),(1571,'wp-content/plugins/woocommerce/assets/js/admin/term-ordering.js'),(1572,'wp-content/plugins/woocommerce/assets/js/admin/term-ordering.min.js'),(1573,'wp-content/plugins/woocommerce/assets/js/admin/users.js'),(1574,'wp-content/plugins/woocommerce/assets/js/admin/users.min.js'),(1575,'wp-content/plugins/woocommerce/assets/js/admin/wc-clipboard.js'),(1576,'wp-content/plugins/woocommerce/assets/js/admin/wc-clipboard.min.js'),(1577,'wp-content/plugins/woocommerce/assets/js/admin/wc-enhanced-select.js'),(1578,'wp-content/plugins/woocommerce/assets/js/admin/wc-enhanced-select.min.js'),(1579,'wp-content/plugins/woocommerce/assets/js/admin/wc-orders.js'),(1580,'wp-content/plugins/woocommerce/assets/js/admin/wc-orders.min.js'),(1581,'wp-content/plugins/woocommerce/assets/js/admin/wc-product-export.js'),(1582,'wp-content/plugins/woocommerce/assets/js/admin/wc-product-export.min.js'),(1583,'wp-content/plugins/woocommerce/assets/js/admin/wc-product-import.js'),(1584,'wp-content/plugins/woocommerce/assets/js/admin/wc-product-import.min.js'),(1585,'wp-content/plugins/woocommerce/assets/js/admin/wc-setup.js'),(1586,'wp-content/plugins/woocommerce/assets/js/admin/wc-setup.min.js'),(1587,'wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-classes.js'),(1588,'wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-classes.min.js'),(1589,'wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-zone-methods.js'),(1590,'wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-zone-methods.min.js'),(1591,'wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-zones.js'),(1592,'wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-zones.min.js'),(1593,'wp-content/plugins/woocommerce/assets/js/admin/wc-status-widget.js'),(1594,'wp-content/plugins/woocommerce/assets/js/admin/wc-status-widget.min.js'),(1595,'wp-content/plugins/woocommerce/assets/js/admin/woocommerce_admin.js'),(1596,'wp-content/plugins/woocommerce/assets/js/admin/woocommerce_admin.min.js'),(1597,'wp-content/plugins/woocommerce/assets/js/flexslider/jquery.flexslider.js'),(1598,'wp-content/plugins/woocommerce/assets/js/flexslider/jquery.flexslider.min.js'),(1599,'wp-content/plugins/woocommerce/assets/js/frontend/add-payment-method.js'),(1600,'wp-content/plugins/woocommerce/assets/js/frontend/add-payment-method.min.js'),(1601,'wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart-variation.js'),(1602,'wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart-variation.min.js'),(1603,'wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.js'),(1604,'wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js'),(1605,'wp-content/plugins/woocommerce/assets/js/frontend/address-i18n.js'),(1606,'wp-content/plugins/woocommerce/assets/js/frontend/address-i18n.min.js'),(1607,'wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.js'),(1608,'wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.min.js'),(1609,'wp-content/plugins/woocommerce/assets/js/frontend/cart.js'),(1610,'wp-content/plugins/woocommerce/assets/js/frontend/cart.min.js'),(1611,'wp-content/plugins/woocommerce/assets/js/frontend/checkout.js'),(1612,'wp-content/plugins/woocommerce/assets/js/frontend/checkout.min.js'),(1613,'wp-content/plugins/woocommerce/assets/js/frontend/country-select.js'),(1614,'wp-content/plugins/woocommerce/assets/js/frontend/country-select.min.js'),(1615,'wp-content/plugins/woocommerce/assets/js/frontend/credit-card-form.js'),(1616,'wp-content/plugins/woocommerce/assets/js/frontend/credit-card-form.min.js'),(1617,'wp-content/plugins/woocommerce/assets/js/frontend/geolocation.js'),(1618,'wp-content/plugins/woocommerce/assets/js/frontend/geolocation.min.js'),(1619,'wp-content/plugins/woocommerce/assets/js/frontend/lost-password.js'),(1620,'wp-content/plugins/woocommerce/assets/js/frontend/lost-password.min.js'),(1621,'wp-content/plugins/woocommerce/assets/js/frontend/password-strength-meter.js'),(1622,'wp-content/plugins/woocommerce/assets/js/frontend/password-strength-meter.min.js'),(1623,'wp-content/plugins/woocommerce/assets/js/frontend/price-slider.js'),(1624,'wp-content/plugins/woocommerce/assets/js/frontend/price-slider.min.js'),(1625,'wp-content/plugins/woocommerce/assets/js/frontend/single-product.js'),(1626,'wp-content/plugins/woocommerce/assets/js/frontend/single-product.min.js'),(1627,'wp-content/plugins/woocommerce/assets/js/frontend/tokenization-form.js'),(1628,'wp-content/plugins/woocommerce/assets/js/frontend/tokenization-form.min.js'),(1629,'wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.js'),(1630,'wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min.js'),(1631,'wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.js'),(1632,'wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js'),(1633,'wp-content/plugins/woocommerce/assets/js/jquery-cookie/jquery.cookie.js'),(1634,'wp-content/plugins/woocommerce/assets/js/jquery-cookie/jquery.cookie.min.js'),(1635,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.js'),(1636,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.min.js'),(1637,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.pie.js'),(1638,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.pie.min.js'),(1639,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.resize.js'),(1640,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.resize.min.js'),(1641,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.stack.js'),(1642,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.stack.min.js'),(1643,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.time.js'),(1644,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.time.min.js'),(1645,'wp-content/plugins/woocommerce/assets/js/jquery-payment/jquery.payment.js'),(1646,'wp-content/plugins/woocommerce/assets/js/jquery-payment/jquery.payment.min.js'),(1647,'wp-content/plugins/woocommerce/assets/js/jquery-qrcode/jquery.qrcode.js'),(1648,'wp-content/plugins/woocommerce/assets/js/jquery-qrcode/jquery.qrcode.min.js'),(1649,'wp-content/plugins/woocommerce/assets/js/jquery-serializejson/jquery.serializejson.js'),(1650,'wp-content/plugins/woocommerce/assets/js/jquery-serializejson/jquery.serializejson.min.js'),(1651,'wp-content/plugins/woocommerce/assets/js/jquery-tiptip/jquery.tipTip.js'),(1652,'wp-content/plugins/woocommerce/assets/js/jquery-tiptip/jquery.tipTip.min.js'),(1653,'wp-content/plugins/woocommerce/assets/js/jquery-ui-touch-punch/jquery-ui-touch-punch.js'),(1654,'wp-content/plugins/woocommerce/assets/js/jquery-ui-touch-punch/jquery-ui-touch-punch.min.js'),(1655,'wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.js'),(1656,'wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js'),(1657,'wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe-ui-default.js'),(1658,'wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe-ui-default.min.js'),(1659,'wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe.js'),(1660,'wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe.min.js'),(1661,'wp-content/plugins/woocommerce/assets/js/prettyPhoto/jquery.prettyPhoto.init.js'),(1662,'wp-content/plugins/woocommerce/assets/js/prettyPhoto/jquery.prettyPhoto.init.min.js'),(1663,'wp-content/plugins/woocommerce/assets/js/prettyPhoto/jquery.prettyPhoto.js'),(1664,'wp-content/plugins/woocommerce/assets/js/prettyPhoto/jquery.prettyPhoto.min.js'),(1665,'wp-content/plugins/woocommerce/assets/js/round/round.js'),(1666,'wp-content/plugins/woocommerce/assets/js/round/round.min.js'),(1667,'wp-content/plugins/woocommerce/assets/js/select2/select2.full.js'),(1668,'wp-content/plugins/woocommerce/assets/js/select2/select2.full.min.js'),(1669,'wp-content/plugins/woocommerce/assets/js/select2/select2.js'),(1670,'wp-content/plugins/woocommerce/assets/js/select2/select2.min.js'),(1671,'wp-content/plugins/woocommerce/assets/js/selectWoo/selectWoo.full.js'),(1672,'wp-content/plugins/woocommerce/assets/js/selectWoo/selectWoo.full.min.js'),(1673,'wp-content/plugins/woocommerce/assets/js/selectWoo/selectWoo.js'),(1674,'wp-content/plugins/woocommerce/assets/js/selectWoo/selectWoo.min.js'),(1675,'wp-content/plugins/woocommerce/assets/js/stupidtable/stupidtable.js'),(1676,'wp-content/plugins/woocommerce/assets/js/stupidtable/stupidtable.min.js'),(1677,'wp-content/plugins/woocommerce/assets/js/zoom/jquery.zoom.js'),(1678,'wp-content/plugins/woocommerce/assets/js/zoom/jquery.zoom.min.js'),(1679,'wp-content/plugins/woocommerce/client/admin/config/core.json'),(1680,'wp-content/plugins/woocommerce/client/admin/config/development.json'),(1681,'wp-content/plugins/woocommerce/i18n/continents.php'),(1682,'wp-content/plugins/woocommerce/i18n/countries.php'),(1683,'wp-content/plugins/woocommerce/i18n/currency-info.php'),(1684,'wp-content/plugins/woocommerce/i18n/languages/woocommerce.pot'),(1685,'wp-content/plugins/woocommerce/i18n/locale-info.php'),(1686,'wp-content/plugins/woocommerce/i18n/phone.php'),(1687,'wp-content/plugins/woocommerce/i18n/states.php'),(1688,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-data.php'),(1689,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-deprecated-hooks.php'),(1690,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-integration.php'),(1691,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-log-handler.php'),(1692,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-object-query.php'),(1693,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-order.php'),(1694,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-payment-gateway.php'),(1695,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-payment-token.php'),(1696,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-privacy.php'),(1697,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-product.php'),(1698,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-session.php'),(1699,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-settings-api.php'),(1700,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-shipping-method.php'),(1701,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-widget.php'),(1702,'wp-content/plugins/woocommerce/includes/abstracts/class-wc-background-process.php'),(1703,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-addons.php'),(1704,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-api-keys-table-list.php'),(1705,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-api-keys.php'),(1706,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-assets.php'),(1707,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-attributes.php'),(1708,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-customize.php'),(1709,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-dashboard-setup.php'),(1710,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-dashboard.php'),(1711,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-duplicate-product.php'),(1712,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-exporters.php'),(1713,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-help.php'),(1714,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-importers.php'),(1715,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-log-table-list.php'),(1716,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-menus.php'),(1717,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-meta-boxes.php'),(1718,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-notices.php'),(1719,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-permalink-settings.php'),(1720,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-pointers.php'),(1721,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-post-types.php'),(1722,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-profile.php'),(1723,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-reports.php'),(1724,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-settings.php'),(1725,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-setup-wizard.php'),(1726,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-status.php'),(1727,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-taxonomies.php'),(1728,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-webhooks-table-list.php'),(1729,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-webhooks.php'),(1730,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin.php'),(1731,'wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-api.php'),(1732,'wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-compat.php'),(1733,'wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-options.php'),(1734,'wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-plugin-info.php'),(1735,'wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-updater.php'),(1736,'wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper.php'),(1737,'wp-content/plugins/woocommerce/includes/admin/helper/views/html-helper-compat.php'),(1738,'wp-content/plugins/woocommerce/includes/admin/helper/views/html-main.php'),(1739,'wp-content/plugins/woocommerce/includes/admin/helper/views/html-oauth-start.php'),(1740,'wp-content/plugins/woocommerce/includes/admin/helper/views/html-section-account.php'),(1741,'wp-content/plugins/woocommerce/includes/admin/helper/views/html-section-nav.php'),(1742,'wp-content/plugins/woocommerce/includes/admin/helper/views/html-section-notices.php'),(1743,'wp-content/plugins/woocommerce/includes/admin/importers/class-wc-product-csv-importer-controller.php'),(1744,'wp-content/plugins/woocommerce/includes/admin/importers/class-wc-tax-rate-importer.php'),(1745,'wp-content/plugins/woocommerce/includes/admin/importers/mappings/default.php'),(1746,'wp-content/plugins/woocommerce/includes/admin/importers/mappings/generic.php'),(1747,'wp-content/plugins/woocommerce/includes/admin/importers/mappings/mappings.php'),(1748,'wp-content/plugins/woocommerce/includes/admin/importers/mappings/shopify.php'),(1749,'wp-content/plugins/woocommerce/includes/admin/importers/mappings/wordpress.php'),(1750,'wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-done.php'),(1751,'wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-footer.php'),(1752,'wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-header.php'),(1753,'wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-mapping.php'),(1754,'wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-progress.php'),(1755,'wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-steps.php'),(1756,'wp-content/plugins/woocommerce/includes/admin/importers/views/html-product-csv-import-form.php'),(1757,'wp-content/plugins/woocommerce/includes/admin/list-tables/abstract-class-wc-admin-list-table.php'),(1758,'wp-content/plugins/woocommerce/includes/admin/list-tables/class-wc-admin-list-table-coupons.php'),(1759,'wp-content/plugins/woocommerce/includes/admin/list-tables/class-wc-admin-list-table-orders.php'),(1760,'wp-content/plugins/woocommerce/includes/admin/list-tables/class-wc-admin-list-table-products.php'),(1761,'wp-content/plugins/woocommerce/includes/admin/marketplace-suggestions/class-wc-marketplace-suggestions.php'),(1762,'wp-content/plugins/woocommerce/includes/admin/marketplace-suggestions/class-wc-marketplace-updater.php'),(1763,'wp-content/plugins/woocommerce/includes/admin/marketplace-suggestions/templates/html-product-data-extensions.php'),(1764,'wp-content/plugins/woocommerce/includes/admin/marketplace-suggestions/views/container.php'),(1765,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php'),(1766,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-actions.php'),(1767,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-data.php'),(1768,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-downloads.php'),(1769,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-items.php'),(1770,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-notes.php'),(1771,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-data.php'),(1772,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-images.php'),(1773,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-reviews.php'),(1774,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-short-description.php'),(1775,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-download-permission.php'),(1776,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-fee.php'),(1777,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-item-meta.php'),(1778,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-item.php'),(1779,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-items.php'),(1780,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-notes.php'),(1781,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-refund.php'),(1782,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-shipping.php'),(1783,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-attribute.php'),(1784,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-advanced.php'),(1785,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-attributes.php'),(1786,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-general.php'),(1787,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-inventory.php'),(1788,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-linked-products.php'),(1789,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-panel.php'),(1790,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-shipping.php'),(1791,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-variations.php'),(1792,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-download.php'),(1793,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-variation-download.php'),(1794,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-variation-admin.php'),(1795,'wp-content/plugins/woocommerce/includes/admin/notes/class-wc-notes-refund-returns.php'),(1796,'wp-content/plugins/woocommerce/includes/admin/notes/class-wc-notes-run-db-update.php'),(1797,'wp-content/plugins/woocommerce/includes/admin/plugin-updates/class-wc-plugin-updates.php'),(1798,'wp-content/plugins/woocommerce/includes/admin/plugin-updates/class-wc-plugins-screen-updates.php'),(1799,'wp-content/plugins/woocommerce/includes/admin/plugin-updates/class-wc-updates-screen-updates.php'),(1800,'wp-content/plugins/woocommerce/includes/admin/plugin-updates/views/html-notice-untested-extensions-inline.php'),(1801,'wp-content/plugins/woocommerce/includes/admin/plugin-updates/views/html-notice-untested-extensions-modal.php'),(1802,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-admin-report.php'),(1803,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-coupon-usage.php'),(1804,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-customer-list.php'),(1805,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-customers.php'),(1806,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-downloads.php'),(1807,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-low-in-stock.php'),(1808,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-most-stocked.php'),(1809,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-out-of-stock.php'),(1810,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-sales-by-category.php'),(1811,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-sales-by-date.php'),(1812,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-sales-by-product.php'),(1813,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-stock.php'),(1814,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-taxes-by-code.php'),(1815,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-taxes-by-date.php'),(1816,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-accounts.php'),(1817,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-advanced.php'),(1818,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-checkout.php'),(1819,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-emails.php'),(1820,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-general.php'),(1821,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-integrations.php'),(1822,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-page.php'),(1823,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-payment-gateways.php'),(1824,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-products.php'),(1825,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-shipping.php'),(1826,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-tax.php'),(1827,'wp-content/plugins/woocommerce/includes/admin/settings/views/class-wc-settings-rest-api.php'),(1828,'wp-content/plugins/woocommerce/includes/admin/settings/views/html-admin-page-shipping-classes.php'),(1829,'wp-content/plugins/woocommerce/includes/admin/settings/views/html-admin-page-shipping-zone-methods.php'),(1830,'wp-content/plugins/woocommerce/includes/admin/settings/views/html-admin-page-shipping-zones-instance.php'),(1831,'wp-content/plugins/woocommerce/includes/admin/settings/views/html-admin-page-shipping-zones.php'),(1832,'wp-content/plugins/woocommerce/includes/admin/settings/views/html-keys-edit.php'),(1833,'wp-content/plugins/woocommerce/includes/admin/settings/views/html-settings-tax.php'),(1834,'wp-content/plugins/woocommerce/includes/admin/settings/views/html-webhooks-edit.php'),(1835,'wp-content/plugins/woocommerce/includes/admin/settings/views/settings-tax.php'),(1836,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-dashboard-setup.php'),(1837,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-addons-category-nav.php'),(1838,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-addons.php'),(1839,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-product-export.php'),(1840,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-reports.php'),(1841,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status-logs-db.php'),(1842,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status-logs.php'),(1843,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status-report.php'),(1844,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status-tools.php'),(1845,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status.php'),(1846,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-settings.php'),(1847,'wp-content/plugins/woocommerce/includes/admin/views/html-bulk-edit-product.php'),(1848,'wp-content/plugins/woocommerce/includes/admin/views/html-email-template-preview.php'),(1849,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-base-table-missing.php'),(1850,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-custom.php'),(1851,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-download-dir-sync-complete.php'),(1852,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-install.php'),(1853,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-legacy-shipping.php'),(1854,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-maxmind-license-key.php'),(1855,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-no-shipping-methods.php'),(1856,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-redirect-only-download.php'),(1857,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-regenerating-lookup-table.php'),(1858,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-regenerating-thumbnails.php'),(1859,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-secure-connection.php'),(1860,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-template-check.php'),(1861,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-update.php'),(1862,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-updated.php'),(1863,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-updating.php'),(1864,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-uploads-directory-is-unprotected.php'),(1865,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-wp-php-minimum-requirements.php'),(1866,'wp-content/plugins/woocommerce/includes/admin/views/html-quick-edit-product.php'),(1867,'wp-content/plugins/woocommerce/includes/admin/views/html-report-by-date.php'),(1868,'wp-content/plugins/woocommerce/includes/admin/wc-admin-functions.php'),(1869,'wp-content/plugins/woocommerce/includes/admin/wc-meta-box-functions.php'),(1870,'wp-content/plugins/woocommerce/includes/blocks/class-wc-blocks-utils.php'),(1871,'wp-content/plugins/woocommerce/includes/class-wc-ajax.php'),(1872,'wp-content/plugins/woocommerce/includes/class-wc-api.php'),(1873,'wp-content/plugins/woocommerce/includes/class-wc-auth.php'),(1874,'wp-content/plugins/woocommerce/includes/class-wc-autoloader.php'),(1875,'wp-content/plugins/woocommerce/includes/class-wc-background-emailer.php'),(1876,'wp-content/plugins/woocommerce/includes/class-wc-background-updater.php'),(1877,'wp-content/plugins/woocommerce/includes/class-wc-breadcrumb.php'),(1878,'wp-content/plugins/woocommerce/includes/class-wc-cache-helper.php'),(1879,'wp-content/plugins/woocommerce/includes/class-wc-cart-fees.php'),(1880,'wp-content/plugins/woocommerce/includes/class-wc-cart-session.php'),(1881,'wp-content/plugins/woocommerce/includes/class-wc-cart-totals.php'),(1882,'wp-content/plugins/woocommerce/includes/class-wc-cart.php'),(1883,'wp-content/plugins/woocommerce/includes/class-wc-checkout.php'),(1884,'wp-content/plugins/woocommerce/includes/class-wc-cli.php'),(1885,'wp-content/plugins/woocommerce/includes/class-wc-comments.php'),(1886,'wp-content/plugins/woocommerce/includes/class-wc-countries.php'),(1887,'wp-content/plugins/woocommerce/includes/class-wc-coupon.php'),(1888,'wp-content/plugins/woocommerce/includes/class-wc-customer-download-log.php'),(1889,'wp-content/plugins/woocommerce/includes/class-wc-customer-download.php'),(1890,'wp-content/plugins/woocommerce/includes/class-wc-customer.php'),(1891,'wp-content/plugins/woocommerce/includes/class-wc-data-exception.php'),(1892,'wp-content/plugins/woocommerce/includes/class-wc-data-store.php'),(1893,'wp-content/plugins/woocommerce/includes/class-wc-datetime.php'),(1894,'wp-content/plugins/woocommerce/includes/class-wc-deprecated-action-hooks.php'),(1895,'wp-content/plugins/woocommerce/includes/class-wc-deprecated-filter-hooks.php'),(1896,'wp-content/plugins/woocommerce/includes/class-wc-discounts.php'),(1897,'wp-content/plugins/woocommerce/includes/class-wc-download-handler.php'),(1898,'wp-content/plugins/woocommerce/includes/class-wc-emails.php'),(1899,'wp-content/plugins/woocommerce/includes/class-wc-embed.php'),(1900,'wp-content/plugins/woocommerce/includes/class-wc-form-handler.php'),(1901,'wp-content/plugins/woocommerce/includes/class-wc-frontend-scripts.php'),(1902,'wp-content/plugins/woocommerce/includes/class-wc-geo-ip.php'),(1903,'wp-content/plugins/woocommerce/includes/class-wc-geolite-integration.php'),(1904,'wp-content/plugins/woocommerce/includes/class-wc-geolocation.php'),(1905,'wp-content/plugins/woocommerce/includes/class-wc-https.php'),(1906,'wp-content/plugins/woocommerce/includes/class-wc-install.php'),(1907,'wp-content/plugins/woocommerce/includes/class-wc-integrations.php'),(1908,'wp-content/plugins/woocommerce/includes/class-wc-log-levels.php'),(1909,'wp-content/plugins/woocommerce/includes/class-wc-logger.php'),(1910,'wp-content/plugins/woocommerce/includes/class-wc-meta-data.php'),(1911,'wp-content/plugins/woocommerce/includes/class-wc-order-factory.php'),(1912,'wp-content/plugins/woocommerce/includes/class-wc-order-item-coupon.php'),(1913,'wp-content/plugins/woocommerce/includes/class-wc-order-item-fee.php'),(1914,'wp-content/plugins/woocommerce/includes/class-wc-order-item-meta.php'),(1915,'wp-content/plugins/woocommerce/includes/class-wc-order-item-product.php'),(1916,'wp-content/plugins/woocommerce/includes/class-wc-order-item-shipping.php'),(1917,'wp-content/plugins/woocommerce/includes/class-wc-order-item-tax.php'),(1918,'wp-content/plugins/woocommerce/includes/class-wc-order-item.php'),(1919,'wp-content/plugins/woocommerce/includes/class-wc-order-query.php'),(1920,'wp-content/plugins/woocommerce/includes/class-wc-order-refund.php'),(1921,'wp-content/plugins/woocommerce/includes/class-wc-order.php'),(1922,'wp-content/plugins/woocommerce/includes/class-wc-payment-gateways.php'),(1923,'wp-content/plugins/woocommerce/includes/class-wc-payment-tokens.php'),(1924,'wp-content/plugins/woocommerce/includes/class-wc-post-data.php'),(1925,'wp-content/plugins/woocommerce/includes/class-wc-post-types.php'),(1926,'wp-content/plugins/woocommerce/includes/class-wc-privacy-background-process.php'),(1927,'wp-content/plugins/woocommerce/includes/class-wc-privacy-erasers.php'),(1928,'wp-content/plugins/woocommerce/includes/class-wc-privacy-exporters.php'),(1929,'wp-content/plugins/woocommerce/includes/class-wc-privacy.php'),(1930,'wp-content/plugins/woocommerce/includes/class-wc-product-attribute.php'),(1931,'wp-content/plugins/woocommerce/includes/class-wc-product-download.php'),(1932,'wp-content/plugins/woocommerce/includes/class-wc-product-external.php'),(1933,'wp-content/plugins/woocommerce/includes/class-wc-product-factory.php'),(1934,'wp-content/plugins/woocommerce/includes/class-wc-product-grouped.php'),(1935,'wp-content/plugins/woocommerce/includes/class-wc-product-query.php'),(1936,'wp-content/plugins/woocommerce/includes/class-wc-product-simple.php'),(1937,'wp-content/plugins/woocommerce/includes/class-wc-product-variable.php'),(1938,'wp-content/plugins/woocommerce/includes/class-wc-product-variation.php'),(1939,'wp-content/plugins/woocommerce/includes/class-wc-query.php'),(1940,'wp-content/plugins/woocommerce/includes/class-wc-rate-limiter.php'),(1941,'wp-content/plugins/woocommerce/includes/class-wc-regenerate-images-request.php'),(1942,'wp-content/plugins/woocommerce/includes/class-wc-regenerate-images.php'),(1943,'wp-content/plugins/woocommerce/includes/class-wc-register-wp-admin-settings.php'),(1944,'wp-content/plugins/woocommerce/includes/class-wc-rest-authentication.php'),(1945,'wp-content/plugins/woocommerce/includes/class-wc-rest-exception.php'),(1946,'wp-content/plugins/woocommerce/includes/class-wc-session-handler.php'),(1947,'wp-content/plugins/woocommerce/includes/class-wc-shipping-rate.php'),(1948,'wp-content/plugins/woocommerce/includes/class-wc-shipping-zone.php'),(1949,'wp-content/plugins/woocommerce/includes/class-wc-shipping-zones.php'),(1950,'wp-content/plugins/woocommerce/includes/class-wc-shipping.php'),(1951,'wp-content/plugins/woocommerce/includes/class-wc-shortcodes.php'),(1952,'wp-content/plugins/woocommerce/includes/class-wc-structured-data.php'),(1953,'wp-content/plugins/woocommerce/includes/class-wc-tax.php'),(1954,'wp-content/plugins/woocommerce/includes/class-wc-template-loader.php'),(1955,'wp-content/plugins/woocommerce/includes/class-wc-tracker.php'),(1956,'wp-content/plugins/woocommerce/includes/class-wc-validation.php'),(1957,'wp-content/plugins/woocommerce/includes/class-wc-webhook.php'),(1958,'wp-content/plugins/woocommerce/includes/class-woocommerce.php'),(1959,'wp-content/plugins/woocommerce/includes/cli/class-wc-cli-rest-command.php'),(1960,'wp-content/plugins/woocommerce/includes/cli/class-wc-cli-runner.php'),(1961,'wp-content/plugins/woocommerce/includes/cli/class-wc-cli-tool-command.php'),(1962,'wp-content/plugins/woocommerce/includes/cli/class-wc-cli-tracker-command.php'),(1963,'wp-content/plugins/woocommerce/includes/cli/class-wc-cli-update-command.php'),(1964,'wp-content/plugins/woocommerce/includes/customizer/class-wc-customizer-control-cropping.php'),(1965,'wp-content/plugins/woocommerce/includes/customizer/class-wc-shop-customizer.php'),(1966,'wp-content/plugins/woocommerce/includes/data-stores/abstract-wc-order-data-store-cpt.php'),(1967,'wp-content/plugins/woocommerce/includes/data-stores/abstract-wc-order-item-type-data-store.php'),(1968,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-coupon-data-store-cpt.php'),(1969,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-customer-data-store-session.php'),(1970,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-customer-data-store.php'),(1971,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-customer-download-data-store.php'),(1972,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-customer-download-log-data-store.php'),(1973,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-data-store-wp.php'),(1974,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-data-store-cpt.php'),(1975,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-coupon-data-store.php'),(1976,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-data-store.php'),(1977,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-fee-data-store.php'),(1978,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-product-data-store.php'),(1979,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-shipping-data-store.php'),(1980,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-tax-data-store.php'),(1981,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-refund-data-store-cpt.php'),(1982,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-payment-token-data-store.php'),(1983,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-product-data-store-cpt.php'),(1984,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-product-grouped-data-store-cpt.php'),(1985,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-product-variable-data-store-cpt.php'),(1986,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-product-variation-data-store-cpt.php'),(1987,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-shipping-zone-data-store.php'),(1988,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-webhook-data-store.php'),(1989,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-cancelled-order.php'),(1990,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-completed-order.php'),(1991,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-invoice.php'),(1992,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-new-account.php'),(1993,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-note.php'),(1994,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-on-hold-order.php'),(1995,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-processing-order.php'),(1996,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-refunded-order.php'),(1997,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-reset-password.php'),(1998,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-failed-order.php'),(1999,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-new-order.php'),(2000,'wp-content/plugins/woocommerce/includes/emails/class-wc-email.php'),(2001,'wp-content/plugins/woocommerce/includes/export/abstract-wc-csv-batch-exporter.php'),(2002,'wp-content/plugins/woocommerce/includes/export/abstract-wc-csv-exporter.php'),(2003,'wp-content/plugins/woocommerce/includes/export/class-wc-product-csv-exporter.php'),(2004,'wp-content/plugins/woocommerce/includes/gateways/bacs/class-wc-gateway-bacs.php'),(2005,'wp-content/plugins/woocommerce/includes/gateways/cheque/class-wc-gateway-cheque.php'),(2006,'wp-content/plugins/woocommerce/includes/gateways/class-wc-payment-gateway-cc.php'),(2007,'wp-content/plugins/woocommerce/includes/gateways/class-wc-payment-gateway-echeck.php'),(2008,'wp-content/plugins/woocommerce/includes/gateways/cod/class-wc-gateway-cod.php'),(2009,'wp-content/plugins/woocommerce/includes/gateways/paypal/assets/images/paypal.png'),(2010,'wp-content/plugins/woocommerce/includes/gateways/paypal/assets/js/paypal-admin.js'),(2011,'wp-content/plugins/woocommerce/includes/gateways/paypal/assets/js/paypal-admin.min.js'),(2012,'wp-content/plugins/woocommerce/includes/gateways/paypal/class-wc-gateway-paypal.php'),(2013,'wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-api-handler.php'),(2014,'wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-ipn-handler.php'),(2015,'wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-pdt-handler.php'),(2016,'wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-request.php'),(2017,'wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-response.php'),(2018,'wp-content/plugins/woocommerce/includes/gateways/paypal/includes/settings-paypal.php'),(2019,'wp-content/plugins/woocommerce/includes/import/abstract-wc-product-importer.php'),(2020,'wp-content/plugins/woocommerce/includes/import/class-wc-product-csv-importer.php'),(2021,'wp-content/plugins/woocommerce/includes/integrations/maxmind-geolocation/class-wc-integration-maxmind-database-service.php'),(2022,'wp-content/plugins/woocommerce/includes/integrations/maxmind-geolocation/class-wc-integration-maxmind-geolocation.php'),(2023,'wp-content/plugins/woocommerce/includes/integrations/maxmind-geolocation/views/html-admin-options.php'),(2024,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-abstract-order-data-store-interface.php'),(2025,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-coupon-data-store-interface.php'),(2026,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-customer-data-store-interface.php'),(2027,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-customer-download-data-store-interface.php'),(2028,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-customer-download-log-data-store-interface.php'),(2029,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-importer-interface.php'),(2030,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-log-handler-interface.php'),(2031,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-logger-interface.php'),(2032,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-object-data-store-interface.php'),(2033,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-data-store-interface.php'),(2034,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-item-data-store-interface.php'),(2035,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-item-product-data-store-interface.php'),(2036,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-item-type-data-store-interface.php'),(2037,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-refund-data-store-interface.php'),(2038,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-payment-token-data-store-interface.php'),(2039,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-product-data-store-interface.php'),(2040,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-product-variable-data-store-interface.php'),(2041,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-queue-interface.php'),(2042,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-shipping-zone-data-store-interface.php'),(2043,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-webhooks-data-store-interface.php'),(2044,'wp-content/plugins/woocommerce/includes/legacy/abstract-wc-legacy-order.php'),(2045,'wp-content/plugins/woocommerce/includes/legacy/abstract-wc-legacy-payment-token.php'),(2046,'wp-content/plugins/woocommerce/includes/legacy/abstract-wc-legacy-product.php'),(2047,'wp-content/plugins/woocommerce/includes/legacy/api/class-wc-rest-legacy-coupons-controller.php'),(2048,'wp-content/plugins/woocommerce/includes/legacy/api/class-wc-rest-legacy-orders-controller.php'),(2049,'wp-content/plugins/woocommerce/includes/legacy/api/class-wc-rest-legacy-products-controller.php'),(2050,'wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-authentication.php'),(2051,'wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-coupons.php'),(2052,'wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-customers.php'),(2053,'wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-json-handler.php'),(2054,'wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-orders.php'),(2055,'wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-products.php'),(2056,'wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-reports.php'),(2057,'wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-resource.php'),(2058,'wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-server.php'),(2059,'wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-xml-handler.php'),(2060,'wp-content/plugins/woocommerce/includes/legacy/api/v1/interface-wc-api-handler.php'),(2061,'wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-authentication.php'),(2062,'wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-coupons.php'),(2063,'wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-customers.php'),(2064,'wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-exception.php'),(2065,'wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-json-handler.php'),(2066,'wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-orders.php'),(2067,'wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-products.php'),(2068,'wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-reports.php'),(2069,'wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-resource.php'),(2070,'wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-server.php'),(2071,'wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-webhooks.php'),(2072,'wp-content/plugins/woocommerce/includes/legacy/api/v2/interface-wc-api-handler.php'),(2073,'wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-authentication.php'),(2074,'wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-coupons.php'),(2075,'wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-customers.php'),(2076,'wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-exception.php'),(2077,'wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-json-handler.php'),(2078,'wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-orders.php'),(2079,'wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-products.php'),(2080,'wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-reports.php'),(2081,'wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-resource.php'),(2082,'wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-server.php'),(2083,'wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-taxes.php'),(2084,'wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-webhooks.php'),(2085,'wp-content/plugins/woocommerce/includes/legacy/api/v3/interface-wc-api-handler.php'),(2086,'wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-api.php'),(2087,'wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-cart.php'),(2088,'wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-coupon.php'),(2089,'wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-customer.php'),(2090,'wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-shipping-zone.php'),(2091,'wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-webhook.php'),(2092,'wp-content/plugins/woocommerce/includes/libraries/class-wc-eval-math.php'),(2093,'wp-content/plugins/woocommerce/includes/libraries/wp-async-request.php'),(2094,'wp-content/plugins/woocommerce/includes/libraries/wp-background-process.php'),(2095,'wp-content/plugins/woocommerce/includes/log-handlers/class-wc-log-handler-db.php'),(2096,'wp-content/plugins/woocommerce/includes/log-handlers/class-wc-log-handler-email.php'),(2097,'wp-content/plugins/woocommerce/includes/log-handlers/class-wc-log-handler-file.php'),(2098,'wp-content/plugins/woocommerce/includes/payment-tokens/class-wc-payment-token-cc.php'),(2099,'wp-content/plugins/woocommerce/includes/payment-tokens/class-wc-payment-token-echeck.php'),(2100,'wp-content/plugins/woocommerce/includes/queue/class-wc-action-queue.php'),(2101,'wp-content/plugins/woocommerce/includes/queue/class-wc-queue.php'),(2102,'wp-content/plugins/woocommerce/includes/react-admin/class-experimental-abtest.php'),(2103,'wp-content/plugins/woocommerce/includes/react-admin/connect-existing-pages.php'),(2104,'wp-content/plugins/woocommerce/includes/react-admin/core-functions.php'),(2105,'wp-content/plugins/woocommerce/includes/react-admin/emails/html-admin-report-export-download.php'),(2106,'wp-content/plugins/woocommerce/includes/react-admin/emails/html-merchant-notification.php'),(2107,'wp-content/plugins/woocommerce/includes/react-admin/emails/plain-admin-report-export-download.php'),(2108,'wp-content/plugins/woocommerce/includes/react-admin/emails/plain-merchant-notification.php'),(2109,'wp-content/plugins/woocommerce/includes/react-admin/feature-config.php'),(2110,'wp-content/plugins/woocommerce/includes/react-admin/page-controller-functions.php'),(2111,'wp-content/plugins/woocommerce/includes/react-admin/wc-admin-update-functions.php'),(2112,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Telemetry/class-wc-rest-telemetry-controller.php'),(2113,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-coupons-v1-controller.php'),(2114,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-customer-downloads-v1-controller.php'),(2115,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-customers-v1-controller.php'),(2116,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-order-notes-v1-controller.php'),(2117,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-order-refunds-v1-controller.php'),(2118,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-orders-v1-controller.php'),(2119,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-product-attribute-terms-v1-controller.php'),(2120,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-product-attributes-v1-controller.php'),(2121,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-product-categories-v1-controller.php'),(2122,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-product-reviews-v1-controller.php'),(2123,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-product-shipping-classes-v1-controller.php'),(2124,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-product-tags-v1-controller.php'),(2125,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-products-v1-controller.php'),(2126,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-report-sales-v1-controller.php'),(2127,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-report-top-sellers-v1-controller.php'),(2128,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-reports-v1-controller.php'),(2129,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-tax-classes-v1-controller.php'),(2130,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-taxes-v1-controller.php'),(2131,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-webhook-deliveries-v1-controller.php'),(2132,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version1/class-wc-rest-webhooks-v1-controller.php'),(2133,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-coupons-v2-controller.php'),(2134,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-customer-downloads-v2-controller.php'),(2135,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-customers-v2-controller.php'),(2136,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-network-orders-v2-controller.php'),(2137,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-order-notes-v2-controller.php'),(2138,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-order-refunds-v2-controller.php'),(2139,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-orders-v2-controller.php'),(2140,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-payment-gateways-v2-controller.php'),(2141,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-product-attribute-terms-v2-controller.php'),(2142,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-product-attributes-v2-controller.php'),(2143,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-product-categories-v2-controller.php'),(2144,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-product-reviews-v2-controller.php'),(2145,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-product-shipping-classes-v2-controller.php'),(2146,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-product-tags-v2-controller.php'),(2147,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-product-variations-v2-controller.php'),(2148,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-products-v2-controller.php'),(2149,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-report-sales-v2-controller.php'),(2150,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-report-top-sellers-v2-controller.php'),(2151,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-reports-v2-controller.php'),(2152,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-setting-options-v2-controller.php'),(2153,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-settings-v2-controller.php'),(2154,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-methods-v2-controller.php'),(2155,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zone-locations-v2-controller.php'),(2156,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zone-methods-v2-controller.php'),(2157,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-shipping-zones-v2-controller.php'),(2158,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-system-status-tools-v2-controller.php'),(2159,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-system-status-v2-controller.php'),(2160,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-tax-classes-v2-controller.php'),(2161,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-taxes-v2-controller.php'),(2162,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-webhook-deliveries-v2-controller.php'),(2163,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version2/class-wc-rest-webhooks-v2-controller.php'),(2164,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-controller.php'),(2165,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-coupons-controller.php'),(2166,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-crud-controller.php'),(2167,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-customer-downloads-controller.php'),(2168,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-customers-controller.php'),(2169,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-data-continents-controller.php'),(2170,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-data-controller.php'),(2171,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-data-countries-controller.php'),(2172,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-data-currencies-controller.php'),(2173,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-network-orders-controller.php'),(2174,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-order-notes-controller.php'),(2175,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-order-refunds-controller.php'),(2176,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-orders-controller.php'),(2177,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-payment-gateways-controller.php'),(2178,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-posts-controller.php'),(2179,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-product-attribute-terms-controller.php'),(2180,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-product-attributes-controller.php'),(2181,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-product-categories-controller.php'),(2182,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-product-reviews-controller.php'),(2183,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-product-shipping-classes-controller.php'),(2184,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-product-tags-controller.php'),(2185,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-product-variations-controller.php'),(2186,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-products-controller.php'),(2187,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-report-coupons-totals-controller.php'),(2188,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-report-customers-totals-controller.php'),(2189,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-report-orders-totals-controller.php'),(2190,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-report-products-totals-controller.php'),(2191,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-report-reviews-totals-controller.php'),(2192,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-report-sales-controller.php'),(2193,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-report-top-sellers-controller.php'),(2194,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-reports-controller.php'),(2195,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-setting-options-controller.php'),(2196,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-settings-controller.php'),(2197,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-methods-controller.php'),(2198,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zone-locations-controller.php'),(2199,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zone-methods-controller.php'),(2200,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zones-controller-base.php'),(2201,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-shipping-zones-controller.php'),(2202,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-system-status-controller.php'),(2203,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-system-status-tools-controller.php'),(2204,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-tax-classes-controller.php'),(2205,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-taxes-controller.php'),(2206,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-terms-controller.php'),(2207,'wp-content/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-webhooks-controller.php'),(2208,'wp-content/plugins/woocommerce/includes/rest-api/Package.php'),(2209,'wp-content/plugins/woocommerce/includes/rest-api/Server.php'),(2210,'wp-content/plugins/woocommerce/includes/rest-api/Utilities/ImageAttachment.php'),(2211,'wp-content/plugins/woocommerce/includes/rest-api/Utilities/SingletonTrait.php'),(2212,'wp-content/plugins/woocommerce/includes/shipping/flat-rate/class-wc-shipping-flat-rate.php'),(2213,'wp-content/plugins/woocommerce/includes/shipping/flat-rate/includes/settings-flat-rate.php'),(2214,'wp-content/plugins/woocommerce/includes/shipping/free-shipping/class-wc-shipping-free-shipping.php'),(2215,'wp-content/plugins/woocommerce/includes/shipping/legacy-flat-rate/class-wc-shipping-legacy-flat-rate.php'),(2216,'wp-content/plugins/woocommerce/includes/shipping/legacy-flat-rate/includes/settings-flat-rate.php'),(2217,'wp-content/plugins/woocommerce/includes/shipping/legacy-free-shipping/class-wc-shipping-legacy-free-shipping.php'),(2218,'wp-content/plugins/woocommerce/includes/shipping/legacy-international-delivery/class-wc-shipping-legacy-international-delivery.php'),(2219,'wp-content/plugins/woocommerce/includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php'),(2220,'wp-content/plugins/woocommerce/includes/shipping/legacy-local-pickup/class-wc-shipping-legacy-local-pickup.php'),(2221,'wp-content/plugins/woocommerce/includes/shipping/local-pickup/class-wc-shipping-local-pickup.php'),(2222,'wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-cart.php'),(2223,'wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-checkout.php'),(2224,'wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-my-account.php'),(2225,'wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-order-tracking.php'),(2226,'wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-products.php'),(2227,'wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-eleven.php'),(2228,'wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-fifteen.php'),(2229,'wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-fourteen.php'),(2230,'wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-nineteen.php'),(2231,'wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-seventeen.php'),(2232,'wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-sixteen.php'),(2233,'wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-ten.php'),(2234,'wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-thirteen.php'),(2235,'wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-twelve.php'),(2236,'wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-twenty-one.php'),(2237,'wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-twenty-two.php'),(2238,'wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-twenty.php'),(2239,'wp-content/plugins/woocommerce/includes/tracks/class-wc-site-tracking.php'),(2240,'wp-content/plugins/woocommerce/includes/tracks/class-wc-tracks-client.php'),(2241,'wp-content/plugins/woocommerce/includes/tracks/class-wc-tracks-event.php'),(2242,'wp-content/plugins/woocommerce/includes/tracks/class-wc-tracks-footer-pixel.php'),(2243,'wp-content/plugins/woocommerce/includes/tracks/class-wc-tracks.php'),(2244,'wp-content/plugins/woocommerce/includes/tracks/events/class-wc-admin-setup-wizard-tracking.php'),(2245,'wp-content/plugins/woocommerce/includes/tracks/events/class-wc-coupon-tracking.php'),(2246,'wp-content/plugins/woocommerce/includes/tracks/events/class-wc-coupons-tracking.php'),(2247,'wp-content/plugins/woocommerce/includes/tracks/events/class-wc-extensions-tracking.php'),(2248,'wp-content/plugins/woocommerce/includes/tracks/events/class-wc-importer-tracking.php'),(2249,'wp-content/plugins/woocommerce/includes/tracks/events/class-wc-order-tracking.php'),(2250,'wp-content/plugins/woocommerce/includes/tracks/events/class-wc-orders-tracking.php'),(2251,'wp-content/plugins/woocommerce/includes/tracks/events/class-wc-products-tracking.php'),(2252,'wp-content/plugins/woocommerce/includes/tracks/events/class-wc-settings-tracking.php'),(2253,'wp-content/plugins/woocommerce/includes/tracks/events/class-wc-status-tracking.php'),(2254,'wp-content/plugins/woocommerce/includes/tracks/events/class-wc-theme-tracking.php'),(2255,'wp-content/plugins/woocommerce/includes/traits/trait-wc-item-totals.php'),(2256,'wp-content/plugins/woocommerce/includes/walkers/class-product-cat-dropdown-walker.php'),(2257,'wp-content/plugins/woocommerce/includes/walkers/class-product-cat-list-walker.php'),(2258,'wp-content/plugins/woocommerce/includes/walkers/class-wc-product-cat-dropdown-walker.php'),(2259,'wp-content/plugins/woocommerce/includes/walkers/class-wc-product-cat-list-walker.php'),(2260,'wp-content/plugins/woocommerce/includes/wc-account-functions.php'),(2261,'wp-content/plugins/woocommerce/includes/wc-attribute-functions.php'),(2262,'wp-content/plugins/woocommerce/includes/wc-cart-functions.php'),(2263,'wp-content/plugins/woocommerce/includes/wc-conditional-functions.php'),(2264,'wp-content/plugins/woocommerce/includes/wc-core-functions.php'),(2265,'wp-content/plugins/woocommerce/includes/wc-coupon-functions.php'),(2266,'wp-content/plugins/woocommerce/includes/wc-deprecated-functions.php'),(2267,'wp-content/plugins/woocommerce/includes/wc-formatting-functions.php'),(2268,'wp-content/plugins/woocommerce/includes/wc-notice-functions.php'),(2269,'wp-content/plugins/woocommerce/includes/wc-order-functions.php'),(2270,'wp-content/plugins/woocommerce/includes/wc-order-item-functions.php'),(2271,'wp-content/plugins/woocommerce/includes/wc-page-functions.php'),(2272,'wp-content/plugins/woocommerce/includes/wc-product-functions.php'),(2273,'wp-content/plugins/woocommerce/includes/wc-rest-functions.php'),(2274,'wp-content/plugins/woocommerce/includes/wc-stock-functions.php'),(2275,'wp-content/plugins/woocommerce/includes/wc-template-functions.php'),(2276,'wp-content/plugins/woocommerce/includes/wc-template-hooks.php'),(2277,'wp-content/plugins/woocommerce/includes/wc-term-functions.php'),(2278,'wp-content/plugins/woocommerce/includes/wc-update-functions.php'),(2279,'wp-content/plugins/woocommerce/includes/wc-user-functions.php'),(2280,'wp-content/plugins/woocommerce/includes/wc-webhook-functions.php'),(2281,'wp-content/plugins/woocommerce/includes/wc-widget-functions.php'),(2282,'wp-content/plugins/woocommerce/includes/wccom-site/class-wc-wccom-site-installer-requirements-check.php'),(2283,'wp-content/plugins/woocommerce/includes/wccom-site/class-wc-wccom-site-installer.php'),(2284,'wp-content/plugins/woocommerce/includes/wccom-site/class-wc-wccom-site.php'),(2285,'wp-content/plugins/woocommerce/includes/wccom-site/rest-api/class-wc-rest-wccom-site-installer-errors.php'),(2286,'wp-content/plugins/woocommerce/includes/wccom-site/rest-api/endpoints/class-wc-rest-wccom-site-installer-controller.php'),(2287,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-cart.php'),(2288,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-layered-nav-filters.php'),(2289,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-layered-nav.php'),(2290,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-price-filter.php'),(2291,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-product-categories.php'),(2292,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-product-search.php'),(2293,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-product-tag-cloud.php'),(2294,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-products.php'),(2295,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-rating-filter.php'),(2296,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-recent-reviews.php'),(2297,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-recently-viewed.php'),(2298,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-top-rated-products.php'),(2299,'wp-content/plugins/woocommerce/legacy/css/_animation.scss'),(2300,'wp-content/plugins/woocommerce/legacy/css/_fonts.scss'),(2301,'wp-content/plugins/woocommerce/legacy/css/_mixins.scss'),(2302,'wp-content/plugins/woocommerce/legacy/css/_variables.scss'),(2303,'wp-content/plugins/woocommerce/legacy/css/activation.scss'),(2304,'wp-content/plugins/woocommerce/legacy/css/admin.scss'),(2305,'wp-content/plugins/woocommerce/legacy/css/auth.scss'),(2306,'wp-content/plugins/woocommerce/legacy/css/dashboard-setup.scss'),(2307,'wp-content/plugins/woocommerce/legacy/css/dashboard.scss'),(2308,'wp-content/plugins/woocommerce/legacy/css/helper.scss'),(2309,'wp-content/plugins/woocommerce/legacy/css/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png'),(2310,'wp-content/plugins/woocommerce/legacy/css/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png'),(2311,'wp-content/plugins/woocommerce/legacy/css/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png'),(2312,'wp-content/plugins/woocommerce/legacy/css/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png'),(2313,'wp-content/plugins/woocommerce/legacy/css/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png'),(2314,'wp-content/plugins/woocommerce/legacy/css/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png'),(2315,'wp-content/plugins/woocommerce/legacy/css/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.png'),(2316,'wp-content/plugins/woocommerce/legacy/css/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png'),(2317,'wp-content/plugins/woocommerce/legacy/css/jquery-ui/images/ui-icons_222222_256x240.png'),(2318,'wp-content/plugins/woocommerce/legacy/css/jquery-ui/images/ui-icons_2e83ff_256x240.png'),(2319,'wp-content/plugins/woocommerce/legacy/css/jquery-ui/images/ui-icons_454545_256x240.png'),(2320,'wp-content/plugins/woocommerce/legacy/css/jquery-ui/images/ui-icons_888888_256x240.png'),(2321,'wp-content/plugins/woocommerce/legacy/css/jquery-ui/images/ui-icons_cd0a0a_256x240.png'),(2322,'wp-content/plugins/woocommerce/legacy/css/jquery-ui/jquery-ui-rtl.css'),(2323,'wp-content/plugins/woocommerce/legacy/css/jquery-ui/jquery-ui.css'),(2324,'wp-content/plugins/woocommerce/legacy/css/jquery-ui/jquery-ui.min.css'),(2325,'wp-content/plugins/woocommerce/legacy/css/marketplace-suggestions.scss'),(2326,'wp-content/plugins/woocommerce/legacy/css/menu.scss'),(2327,'wp-content/plugins/woocommerce/legacy/css/network-order-widget.scss'),(2328,'wp-content/plugins/woocommerce/legacy/css/photoswipe/default-skin/default-skin.css'),(2329,'wp-content/plugins/woocommerce/legacy/css/photoswipe/default-skin/default-skin.png'),(2330,'wp-content/plugins/woocommerce/legacy/css/photoswipe/default-skin/default-skin.svg'),(2331,'wp-content/plugins/woocommerce/legacy/css/photoswipe/default-skin/preloader.gif'),(2332,'wp-content/plugins/woocommerce/legacy/css/photoswipe/photoswipe.css'),(2333,'wp-content/plugins/woocommerce/legacy/css/prettyPhoto.scss'),(2334,'wp-content/plugins/woocommerce/legacy/css/privacy.scss'),(2335,'wp-content/plugins/woocommerce/legacy/css/reports-print.scss'),(2336,'wp-content/plugins/woocommerce/legacy/css/select2.scss'),(2337,'wp-content/plugins/woocommerce/legacy/css/twenty-nineteen.scss'),(2338,'wp-content/plugins/woocommerce/legacy/css/twenty-seventeen.scss'),(2339,'wp-content/plugins/woocommerce/legacy/css/twenty-twenty-one-admin.scss'),(2340,'wp-content/plugins/woocommerce/legacy/css/twenty-twenty-one.scss'),(2341,'wp-content/plugins/woocommerce/legacy/css/twenty-twenty-two.scss'),(2342,'wp-content/plugins/woocommerce/legacy/css/twenty-twenty.scss'),(2343,'wp-content/plugins/woocommerce/legacy/css/wc-setup.scss'),(2344,'wp-content/plugins/woocommerce/legacy/css/woocommerce-layout.scss'),(2345,'wp-content/plugins/woocommerce/legacy/css/woocommerce-smallscreen.scss'),(2346,'wp-content/plugins/woocommerce/legacy/css/woocommerce.scss'),(2347,'wp-content/plugins/woocommerce/legacy/js/accounting/accounting.js'),(2348,'wp-content/plugins/woocommerce/legacy/js/admin/api-keys.js'),(2349,'wp-content/plugins/woocommerce/legacy/js/admin/backbone-modal.js'),(2350,'wp-content/plugins/woocommerce/legacy/js/admin/marketplace-suggestions.js'),(2351,'wp-content/plugins/woocommerce/legacy/js/admin/meta-boxes-coupon.js'),(2352,'wp-content/plugins/woocommerce/legacy/js/admin/meta-boxes-order.js'),(2353,'wp-content/plugins/woocommerce/legacy/js/admin/meta-boxes-product-variation.js'),(2354,'wp-content/plugins/woocommerce/legacy/js/admin/meta-boxes-product.js'),(2355,'wp-content/plugins/woocommerce/legacy/js/admin/meta-boxes.js'),(2356,'wp-content/plugins/woocommerce/legacy/js/admin/network-orders.js'),(2357,'wp-content/plugins/woocommerce/legacy/js/admin/product-ordering.js'),(2358,'wp-content/plugins/woocommerce/legacy/js/admin/quick-edit.js'),(2359,'wp-content/plugins/woocommerce/legacy/js/admin/reports.js'),(2360,'wp-content/plugins/woocommerce/legacy/js/admin/settings-views-html-settings-tax.js'),(2361,'wp-content/plugins/woocommerce/legacy/js/admin/settings.js'),(2362,'wp-content/plugins/woocommerce/legacy/js/admin/system-status.js'),(2363,'wp-content/plugins/woocommerce/legacy/js/admin/term-ordering.js'),(2364,'wp-content/plugins/woocommerce/legacy/js/admin/users.js'),(2365,'wp-content/plugins/woocommerce/legacy/js/admin/wc-clipboard.js'),(2366,'wp-content/plugins/woocommerce/legacy/js/admin/wc-enhanced-select.js'),(2367,'wp-content/plugins/woocommerce/legacy/js/admin/wc-orders.js'),(2368,'wp-content/plugins/woocommerce/legacy/js/admin/wc-product-export.js'),(2369,'wp-content/plugins/woocommerce/legacy/js/admin/wc-product-import.js'),(2370,'wp-content/plugins/woocommerce/legacy/js/admin/wc-setup.js'),(2371,'wp-content/plugins/woocommerce/legacy/js/admin/wc-shipping-classes.js'),(2372,'wp-content/plugins/woocommerce/legacy/js/admin/wc-shipping-zone-methods.js'),(2373,'wp-content/plugins/woocommerce/legacy/js/admin/wc-shipping-zones.js'),(2374,'wp-content/plugins/woocommerce/legacy/js/admin/wc-status-widget.js'),(2375,'wp-content/plugins/woocommerce/legacy/js/admin/woocommerce_admin.js'),(2376,'wp-content/plugins/woocommerce/legacy/js/flexslider/jquery.flexslider.js'),(2377,'wp-content/plugins/woocommerce/legacy/js/frontend/add-payment-method.js'),(2378,'wp-content/plugins/woocommerce/legacy/js/frontend/add-to-cart-variation.js'),(2379,'wp-content/plugins/woocommerce/legacy/js/frontend/add-to-cart.js'),(2380,'wp-content/plugins/woocommerce/legacy/js/frontend/address-i18n.js'),(2381,'wp-content/plugins/woocommerce/legacy/js/frontend/cart-fragments.js'),(2382,'wp-content/plugins/woocommerce/legacy/js/frontend/cart.js'),(2383,'wp-content/plugins/woocommerce/legacy/js/frontend/checkout.js'),(2384,'wp-content/plugins/woocommerce/legacy/js/frontend/country-select.js'),(2385,'wp-content/plugins/woocommerce/legacy/js/frontend/credit-card-form.js'),(2386,'wp-content/plugins/woocommerce/legacy/js/frontend/geolocation.js'),(2387,'wp-content/plugins/woocommerce/legacy/js/frontend/lost-password.js'),(2388,'wp-content/plugins/woocommerce/legacy/js/frontend/password-strength-meter.js'),(2389,'wp-content/plugins/woocommerce/legacy/js/frontend/price-slider.js'),(2390,'wp-content/plugins/woocommerce/legacy/js/frontend/single-product.js'),(2391,'wp-content/plugins/woocommerce/legacy/js/frontend/tokenization-form.js'),(2392,'wp-content/plugins/woocommerce/legacy/js/frontend/woocommerce.js'),(2393,'wp-content/plugins/woocommerce/legacy/js/jquery-blockui/jquery.blockUI.js'),(2394,'wp-content/plugins/woocommerce/legacy/js/jquery-cookie/jquery.cookie.js'),(2395,'wp-content/plugins/woocommerce/legacy/js/jquery-flot/jquery.flot.js'),(2396,'wp-content/plugins/woocommerce/legacy/js/jquery-flot/jquery.flot.pie.js'),(2397,'wp-content/plugins/woocommerce/legacy/js/jquery-flot/jquery.flot.resize.js'),(2398,'wp-content/plugins/woocommerce/legacy/js/jquery-flot/jquery.flot.stack.js'),(2399,'wp-content/plugins/woocommerce/legacy/js/jquery-flot/jquery.flot.time.js'),(2400,'wp-content/plugins/woocommerce/legacy/js/jquery-payment/jquery.payment.js'),(2401,'wp-content/plugins/woocommerce/legacy/js/jquery-qrcode/jquery.qrcode.js'),(2402,'wp-content/plugins/woocommerce/legacy/js/jquery-serializejson/jquery.serializejson.js'),(2403,'wp-content/plugins/woocommerce/legacy/js/jquery-tiptip/jquery.tipTip.js'),(2404,'wp-content/plugins/woocommerce/legacy/js/jquery-ui-touch-punch/jquery-ui-touch-punch.js'),(2405,'wp-content/plugins/woocommerce/legacy/js/js-cookie/js.cookie.js'),(2406,'wp-content/plugins/woocommerce/legacy/js/photoswipe/photoswipe-ui-default.js'),(2407,'wp-content/plugins/woocommerce/legacy/js/photoswipe/photoswipe.js'),(2408,'wp-content/plugins/woocommerce/legacy/js/prettyPhoto/jquery.prettyPhoto.init.js'),(2409,'wp-content/plugins/woocommerce/legacy/js/prettyPhoto/jquery.prettyPhoto.js'),(2410,'wp-content/plugins/woocommerce/legacy/js/round/round.js'),(2411,'wp-content/plugins/woocommerce/legacy/js/select2/select2.full.js'),(2412,'wp-content/plugins/woocommerce/legacy/js/select2/select2.js'),(2413,'wp-content/plugins/woocommerce/legacy/js/selectWoo/selectWoo.full.js'),(2414,'wp-content/plugins/woocommerce/legacy/js/selectWoo/selectWoo.js'),(2415,'wp-content/plugins/woocommerce/legacy/js/stupidtable/stupidtable.js'),(2416,'wp-content/plugins/woocommerce/legacy/js/zoom/jquery.zoom.js'),(2417,'wp-content/plugins/woocommerce/lib/packages/League/Container/Argument/ArgumentResolverInterface.php'),(2418,'wp-content/plugins/woocommerce/lib/packages/League/Container/Argument/ArgumentResolverTrait.php'),(2419,'wp-content/plugins/woocommerce/lib/packages/League/Container/Argument/ClassName.php'),(2420,'wp-content/plugins/woocommerce/lib/packages/League/Container/Argument/ClassNameInterface.php'),(2421,'wp-content/plugins/woocommerce/lib/packages/League/Container/Argument/ClassNameWithOptionalValue.php'),(2422,'wp-content/plugins/woocommerce/lib/packages/League/Container/Argument/RawArgument.php'),(2423,'wp-content/plugins/woocommerce/lib/packages/League/Container/Argument/RawArgumentInterface.php'),(2424,'wp-content/plugins/woocommerce/lib/packages/League/Container/Container.php'),(2425,'wp-content/plugins/woocommerce/lib/packages/League/Container/ContainerAwareInterface.php'),(2426,'wp-content/plugins/woocommerce/lib/packages/League/Container/ContainerAwareTrait.php'),(2427,'wp-content/plugins/woocommerce/lib/packages/League/Container/Definition/Definition.php'),(2428,'wp-content/plugins/woocommerce/lib/packages/League/Container/Definition/DefinitionAggregate.php'),(2429,'wp-content/plugins/woocommerce/lib/packages/League/Container/Definition/DefinitionAggregateInterface.php'),(2430,'wp-content/plugins/woocommerce/lib/packages/League/Container/Definition/DefinitionInterface.php'),(2431,'wp-content/plugins/woocommerce/lib/packages/League/Container/Exception/ContainerException.php'),(2432,'wp-content/plugins/woocommerce/lib/packages/League/Container/Exception/NotFoundException.php'),(2433,'wp-content/plugins/woocommerce/lib/packages/League/Container/Inflector/Inflector.php'),(2434,'wp-content/plugins/woocommerce/lib/packages/League/Container/Inflector/InflectorAggregate.php'),(2435,'wp-content/plugins/woocommerce/lib/packages/League/Container/Inflector/InflectorAggregateInterface.php'),(2436,'wp-content/plugins/woocommerce/lib/packages/League/Container/Inflector/InflectorInterface.php'),(2437,'wp-content/plugins/woocommerce/lib/packages/League/Container/ReflectionContainer.php'),(2438,'wp-content/plugins/woocommerce/lib/packages/League/Container/ServiceProvider/AbstractServiceProvider.php'),(2439,'wp-content/plugins/woocommerce/lib/packages/League/Container/ServiceProvider/BootableServiceProviderInterface.php'),(2440,'wp-content/plugins/woocommerce/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregate.php'),(2441,'wp-content/plugins/woocommerce/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregateInterface.php'),(2442,'wp-content/plugins/woocommerce/lib/packages/League/Container/ServiceProvider/ServiceProviderInterface.php'),(2443,'wp-content/plugins/woocommerce/license.txt'),(2444,'wp-content/plugins/woocommerce/packages/action-scheduler/action-scheduler.php'),(2445,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_ActionClaim.php'),(2446,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_ActionFactory.php'),(2447,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_AdminView.php'),(2448,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_AsyncRequest_QueueRunner.php'),(2449,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_Compatibility.php'),(2450,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_DataController.php'),(2451,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_DateTime.php'),(2452,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_Exception.php'),(2453,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_FatalErrorMonitor.php'),(2454,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_InvalidActionException.php'),(2455,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_ListTable.php'),(2456,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_LogEntry.php'),(2457,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_NullLogEntry.php'),(2458,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_OptionLock.php'),(2459,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_QueueCleaner.php'),(2460,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_QueueRunner.php'),(2461,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_Versions.php'),(2462,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_WPCommentCleaner.php'),(2463,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/ActionScheduler_wcSystemStatus.php'),(2464,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php'),(2465,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_Scheduler_command.php'),(2466,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/WP_CLI/Migration_Command.php'),(2467,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/WP_CLI/ProgressBar.php'),(2468,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler.php'),(2469,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Abstract_ListTable.php'),(2470,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Abstract_QueueRunner.php'),(2471,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Abstract_RecurringSchedule.php'),(2472,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Abstract_Schedule.php'),(2473,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Abstract_Schema.php'),(2474,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Lock.php'),(2475,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Logger.php'),(2476,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Store.php'),(2477,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_TimezoneHelper.php'),(2478,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/actions/ActionScheduler_Action.php'),(2479,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/actions/ActionScheduler_CanceledAction.php'),(2480,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/actions/ActionScheduler_FinishedAction.php'),(2481,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/actions/ActionScheduler_NullAction.php'),(2482,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/data-stores/ActionScheduler_DBLogger.php'),(2483,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php'),(2484,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/data-stores/ActionScheduler_HybridStore.php'),(2485,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/data-stores/ActionScheduler_wpCommentLogger.php'),(2486,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php'),(2487,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostStatusRegistrar.php'),(2488,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php'),(2489,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_TaxonomyRegistrar.php'),(2490,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/migration/ActionMigrator.php'),(2491,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/migration/ActionScheduler_DBStoreMigrator.php'),(2492,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/migration/BatchFetcher.php'),(2493,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/migration/Config.php'),(2494,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/migration/Controller.php'),(2495,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/migration/DryRun_ActionMigrator.php'),(2496,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/migration/DryRun_LogMigrator.php'),(2497,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/migration/LogMigrator.php'),(2498,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/migration/Runner.php'),(2499,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/migration/Scheduler.php'),(2500,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/schedules/ActionScheduler_CanceledSchedule.php'),(2501,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/schedules/ActionScheduler_CronSchedule.php'),(2502,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/schedules/ActionScheduler_IntervalSchedule.php'),(2503,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/schedules/ActionScheduler_NullSchedule.php'),(2504,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/schedules/ActionScheduler_Schedule.php'),(2505,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/schedules/ActionScheduler_SimpleSchedule.php'),(2506,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/schema/ActionScheduler_LoggerSchema.php'),(2507,'wp-content/plugins/woocommerce/packages/action-scheduler/classes/schema/ActionScheduler_StoreSchema.php'),(2508,'wp-content/plugins/woocommerce/packages/action-scheduler/deprecated/ActionScheduler_Abstract_QueueRunner_Deprecated.php'),(2509,'wp-content/plugins/woocommerce/packages/action-scheduler/deprecated/ActionScheduler_AdminView_Deprecated.php'),(2510,'wp-content/plugins/woocommerce/packages/action-scheduler/deprecated/ActionScheduler_Schedule_Deprecated.php'),(2511,'wp-content/plugins/woocommerce/packages/action-scheduler/deprecated/ActionScheduler_Store_Deprecated.php'),(2512,'wp-content/plugins/woocommerce/packages/action-scheduler/deprecated/functions.php'),(2513,'wp-content/plugins/woocommerce/packages/action-scheduler/functions.php'),(2514,'wp-content/plugins/woocommerce/packages/action-scheduler/lib/WP_Async_Request.php'),(2515,'wp-content/plugins/woocommerce/packages/action-scheduler/lib/cron-expression/CronExpression.php'),(2516,'wp-content/plugins/woocommerce/packages/action-scheduler/lib/cron-expression/CronExpression_AbstractField.php'),(2517,'wp-content/plugins/woocommerce/packages/action-scheduler/lib/cron-expression/CronExpression_DayOfMonthField.php'),(2518,'wp-content/plugins/woocommerce/packages/action-scheduler/lib/cron-expression/CronExpression_DayOfWeekField.php'),(2519,'wp-content/plugins/woocommerce/packages/action-scheduler/lib/cron-expression/CronExpression_FieldFactory.php'),(2520,'wp-content/plugins/woocommerce/packages/action-scheduler/lib/cron-expression/CronExpression_FieldInterface.php'),(2521,'wp-content/plugins/woocommerce/packages/action-scheduler/lib/cron-expression/CronExpression_HoursField.php'),(2522,'wp-content/plugins/woocommerce/packages/action-scheduler/lib/cron-expression/CronExpression_MinutesField.php'),(2523,'wp-content/plugins/woocommerce/packages/action-scheduler/lib/cron-expression/CronExpression_MonthField.php'),(2524,'wp-content/plugins/woocommerce/packages/action-scheduler/lib/cron-expression/CronExpression_YearField.php'),(2525,'wp-content/plugins/woocommerce/packages/action-scheduler/lib/cron-expression/LICENSE'),(2526,'wp-content/plugins/woocommerce/packages/action-scheduler/license.txt'),(2527,'wp-content/plugins/woocommerce/packages/action-scheduler/readme.txt'),(2528,'wp-content/plugins/woocommerce/packages/woocommerce-admin/woocommerce-admin.php'),(2529,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/LICENSE'),(2530,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/css/abstracts/_breakpoints.scss'),(2531,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/css/abstracts/_colors.scss'),(2532,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/css/abstracts/_mixins.scss'),(2533,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/css/abstracts/_variables.scss'),(2534,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/css/editor.scss'),(2535,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/css/style.scss'),(2536,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/component-init.js'),(2537,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/index.js'),(2538,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/attributes.js'),(2539,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/block.js'),(2540,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/constants.js'),(2541,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/edit.js'),(2542,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/frontend.js'),(2543,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/index.js'),(2544,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/external.js'),(2545,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/grouped/group-list/index.js'),(2546,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/grouped/index.js'),(2547,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/index.js'),(2548,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/simple.js'),(2549,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/variable/index.js'),(2550,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/variable/variation-attributes/attribute-picker.js'),(2551,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/variable/variation-attributes/attribute-select-control.js'),(2552,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/variable/variation-attributes/index.js'),(2553,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/variable/variation-attributes/style.scss'),(2554,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/variable/variation-attributes/test/index.js'),(2555,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/product-types/variable/variation-attributes/utils.js'),(2556,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/shared/add-to-cart-button.js'),(2557,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/shared/index.js'),(2558,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/shared/product-unavailable.js'),(2559,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/shared/quantity-input.js'),(2560,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/add-to-cart/style.scss'),(2561,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/button/attributes.js'),(2562,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/button/block.js'),(2563,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/button/constants.js'),(2564,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/button/edit.js'),(2565,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/button/index.js'),(2566,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/button/save.tsx'),(2567,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/button/style.scss'),(2568,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/button/supports.ts'),(2569,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/category-list/attributes.ts'),(2570,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/category-list/block.tsx'),(2571,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/category-list/constants.tsx'),(2572,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/category-list/edit.tsx'),(2573,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/category-list/index.ts'),(2574,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/category-list/save.tsx'),(2575,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/category-list/style.scss'),(2576,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/category-list/types.ts'),(2577,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/image/attributes.js'),(2578,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/image/block.js'),(2579,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/image/constants.js'),(2580,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/image/edit.js'),(2581,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/image/frontend.js'),(2582,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/image/index.js'),(2583,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/image/save.tsx'),(2584,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/image/style.scss'),(2585,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/image/supports.ts'),(2586,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/image/test/block.test.js'),(2587,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/price/attributes.js'),(2588,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/price/block.js'),(2589,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/price/constants.js'),(2590,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/price/edit.js'),(2591,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/price/index.js'),(2592,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/price/save.tsx'),(2593,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/rating/attributes.js'),(2594,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/rating/block.js'),(2595,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/rating/constants.js'),(2596,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/rating/edit.js'),(2597,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/rating/index.js'),(2598,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/rating/save.tsx'),(2599,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/rating/style.scss'),(2600,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/rating/support.js'),(2601,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sale-badge/attributes.js'),(2602,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sale-badge/block.js'),(2603,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sale-badge/constants.js'),(2604,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sale-badge/edit.js'),(2605,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sale-badge/index.js'),(2606,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sale-badge/save.tsx'),(2607,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sale-badge/style.scss'),(2608,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/save.js'),(2609,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/shared/config.tsx'),(2610,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/shared/editor.scss'),(2611,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/shared/with-product-selector.js'),(2612,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sku/attributes.js'),(2613,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sku/block.js'),(2614,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sku/constants.js'),(2615,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sku/edit.js'),(2616,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sku/index.js'),(2617,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sku/style.scss'),(2618,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/stock-indicator/attributes.js'),(2619,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/stock-indicator/block.js'),(2620,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/stock-indicator/constants.js'),(2621,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/stock-indicator/edit.js'),(2622,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/stock-indicator/index.js'),(2623,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/stock-indicator/save.tsx'),(2624,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/stock-indicator/style.scss'),(2625,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/stock-indicator/supports.js'),(2626,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/summary/attributes.js'),(2627,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/summary/block.js'),(2628,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/summary/constants.js'),(2629,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/summary/edit.js'),(2630,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/summary/editor.scss'),(2631,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/summary/index.js'),(2632,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/summary/save.tsx'),(2633,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/summary/style.scss'),(2634,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/summary/supports.js'),(2635,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/tag-list/attributes.js'),(2636,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/tag-list/block.js'),(2637,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/tag-list/constants.js'),(2638,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/tag-list/edit.js'),(2639,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/tag-list/index.js'),(2640,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/tag-list/save.tsx'),(2641,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/tag-list/style.scss'),(2642,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/tag-list/supports.js'),(2643,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/title/attributes.ts'),(2644,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/title/block.tsx'),(2645,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/title/constants.tsx'),(2646,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/title/edit.tsx'),(2647,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/title/editor.scss'),(2648,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/title/frontend.ts'),(2649,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/title/index.ts'),(2650,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/title/save.tsx'),(2651,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/title/style.scss'),(2652,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/title/test/block.test.js'),(2653,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/title/types.ts'),(2654,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/utils/create-blocks-from-template.js'),(2655,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/utils/get-block-map.ts'),(2656,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/utils/index.js'),(2657,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/utils/render-parent-block.tsx'),(2658,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/atomic/utils/render-standalone-blocks.js'),(2659,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/block-error-boundary/block-error.tsx'),(2660,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/block-error-boundary/index.tsx'),(2661,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/block-error-boundary/style.scss'),(2662,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/block-error-boundary/types.ts'),(2663,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/button/index.tsx'),(2664,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/button/stories/index.tsx'),(2665,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/button/style.scss'),(2666,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/address-form/address-form.tsx'),(2667,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/address-form/index.ts'),(2668,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/address-form/prepare-address-fields.ts'),(2669,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/address-form/test/index.js'),(2670,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/form-step/index.tsx'),(2671,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/form-step/style.scss'),(2672,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/form-step/test/__snapshots__/index.js.snap'),(2673,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/form-step/test/index.js'),(2674,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/index.js'),(2675,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/order-summary/index.tsx'),(2676,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/order-summary/order-summary-item.tsx'),(2677,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/order-summary/style.scss'),(2678,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/order-summary/test/index.js'),(2679,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/payment-method-icons/common-icons.ts'),(2680,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/payment-method-icons/index.tsx'),(2681,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/payment-method-icons/payment-method-icon.tsx'),(2682,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/payment-method-icons/style.scss'),(2683,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/payment-method-icons/utils.ts'),(2684,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/payment-method-label/index.tsx'),(2685,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/payment-method-label/style.scss'),(2686,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/place-order-button/index.tsx'),(2687,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/policies/index.tsx'),(2688,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/policies/style.scss'),(2689,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-backorder-badge/index.tsx'),(2690,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-badge/index.tsx'),(2691,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-badge/style.scss'),(2692,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-details/index.tsx'),(2693,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-details/style.scss'),(2694,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-details/test/__snapshots__/index.js.snap'),(2695,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-details/test/index.js'),(2696,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-image/index.tsx'),(2697,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-image/style.scss'),(2698,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-low-stock-badge/index.tsx'),(2699,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-metadata/index.tsx'),(2700,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-metadata/style.scss'),(2701,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-sale-badge/index.tsx'),(2702,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/product-summary/index.tsx'),(2703,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/return-to-cart-button/index.tsx'),(2704,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/return-to-cart-button/style.scss'),(2705,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/shipping-calculator/address.tsx'),(2706,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/shipping-calculator/index.tsx'),(2707,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/shipping-calculator/style.scss'),(2708,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/shipping-location/index.tsx'),(2709,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/shipping-rates-control/index.tsx'),(2710,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/shipping-rates-control-package/index.tsx'),(2711,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/shipping-rates-control-package/package-rates.tsx'),(2712,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/shipping-rates-control-package/render-package-rate-option.tsx'),(2713,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/shipping-rates-control-package/style.scss'),(2714,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/coupon/index.tsx'),(2715,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/coupon/stories/index.tsx'),(2716,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/coupon/style.scss'),(2717,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/discount/index.tsx'),(2718,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/discount/stories/index.tsx'),(2719,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/discount/style.scss'),(2720,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/footer-item/index.tsx'),(2721,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/footer-item/stories/index.tsx'),(2722,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/footer-item/style.scss'),(2723,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/footer-item/test/__snapshots__/index.tsx.snap'),(2724,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/footer-item/test/index.tsx'),(2725,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/index.ts'),(2726,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/shipping/has-shipping-rate.js'),(2727,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/shipping/index.tsx'),(2728,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/shipping/shipping-rate-selector.js'),(2729,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/shipping/shipping-via.tsx'),(2730,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/cart-checkout/totals/shipping/style.scss'),(2731,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/checkbox-list/index.tsx'),(2732,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/checkbox-list/style.scss'),(2733,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/chip/chip.tsx'),(2734,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/chip/index.ts'),(2735,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/chip/removable-chip.tsx'),(2736,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/chip/stories/chip.stories.tsx'),(2737,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/chip/stories/removable-chip.stories.tsx'),(2738,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/chip/style.scss'),(2739,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/chip/test/__snapshots__/index.js.snap'),(2740,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/chip/test/index.js'),(2741,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/combobox/index.tsx'),(2742,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/combobox/style.scss'),(2743,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/country-input/CountryInputProps.ts'),(2744,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/country-input/billing-country-input.tsx'),(2745,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/country-input/country-input.tsx'),(2746,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/country-input/index.ts'),(2747,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/country-input/shipping-country-input.tsx'),(2748,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/country-input/stories/countries-filler.ts'),(2749,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/country-input/stories/index.tsx'),(2750,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/country-input/style.scss'),(2751,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/drawer/index.tsx'),(2752,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/drawer/style.scss'),(2753,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/dropdown-selector/index.js'),(2754,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/dropdown-selector/input-wrapper.js'),(2755,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/dropdown-selector/input.js'),(2756,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/dropdown-selector/menu.js'),(2757,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/dropdown-selector/selected-chip.js'),(2758,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/dropdown-selector/selected-value.js'),(2759,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/dropdown-selector/style.scss'),(2760,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/filter-element-label/index.tsx'),(2761,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/filter-element-label/style.scss'),(2762,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/filter-submit-button/index.tsx'),(2763,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/filter-submit-button/style.scss'),(2764,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/form/index.tsx'),(2765,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/formatted-monetary-amount/index.tsx'),(2766,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/formatted-monetary-amount/style.scss'),(2767,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/label/index.tsx'),(2768,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/label/test/__snapshots__/index.js.snap'),(2769,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/label/test/index.js'),(2770,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/load-more-button/index.tsx'),(2771,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/load-more-button/style.scss'),(2772,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/loading-mask/index.tsx'),(2773,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/loading-mask/style.scss'),(2774,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/noninteractive/index.tsx'),(2775,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/pagination/index.tsx'),(2776,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/pagination/style.scss'),(2777,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/pagination/test/index.js'),(2778,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/pagination/utils.ts'),(2779,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/price-slider/constrain-range-slider-values.ts'),(2780,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/price-slider/index.tsx'),(2781,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/price-slider/stories/index.tsx'),(2782,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/price-slider/style.scss'),(2783,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/price-slider/test/constrain-range-slider-values.js'),(2784,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/price-slider/utils.ts'),(2785,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-list/container.tsx'),(2786,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-list/index.ts'),(2787,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-list/no-matching-products.tsx'),(2788,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-list/no-products.tsx'),(2789,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-list/product-list-item/index.tsx'),(2790,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-list/product-list-item/utils.tsx'),(2791,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-list/product-list.tsx'),(2792,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-list/product-sort-select/index.tsx'),(2793,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-list/product-sort-select/style.scss'),(2794,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-list/style.scss'),(2795,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-list/types.ts'),(2796,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-name/index.tsx'),(2797,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-name/stories/index.tsx'),(2798,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-name/style.scss'),(2799,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-name/test/__snapshots__/index.js.snap'),(2800,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-name/test/index.js'),(2801,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-price/index.tsx'),(2802,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-price/stories/index.tsx'),(2803,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-price/style.scss'),(2804,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-price/test/__snapshots__/index.js.snap'),(2805,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/product-price/test/index.js'),(2806,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/quantity-selector/index.tsx'),(2807,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/quantity-selector/stories/index.tsx'),(2808,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/quantity-selector/style.scss'),(2809,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/radio-control/index.tsx'),(2810,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/radio-control/option-layout.tsx'),(2811,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/radio-control/option.tsx'),(2812,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/radio-control/style.scss'),(2813,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/radio-control/types.ts'),(2814,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/radio-control-accordion/index.js'),(2815,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/read-more/index.tsx'),(2816,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/read-more/stories/index.tsx'),(2817,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/read-more/test/index.ts'),(2818,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/read-more/utils.ts'),(2819,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/reviews/index.js'),(2820,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/reviews/review-list/index.js'),(2821,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/reviews/review-list/style.scss'),(2822,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/reviews/review-list-item/index.js'),(2823,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/reviews/review-list-item/style.scss'),(2824,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/reviews/review-sort-select/index.js'),(2825,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/reviews/review-sort-select/style.scss'),(2826,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/sidebar-layout/index.js'),(2827,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/sidebar-layout/main.js'),(2828,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/sidebar-layout/sidebar-layout.js'),(2829,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/sidebar-layout/sidebar.js'),(2830,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/sidebar-layout/style.scss'),(2831,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/sort-select/index.tsx'),(2832,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/sort-select/style.scss'),(2833,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/spinner/index.tsx'),(2834,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/spinner/style.scss'),(2835,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/state-input/StateInputProps.ts'),(2836,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/state-input/billing-state-input.tsx'),(2837,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/state-input/index.ts'),(2838,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/state-input/shipping-state-input.tsx'),(2839,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/state-input/state-input.tsx'),(2840,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/state-input/style.scss'),(2841,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/summary/index.tsx'),(2842,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/summary/test/index.js'),(2843,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/summary/utils.js'),(2844,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/tabs/index.js'),(2845,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/tabs/style.scss'),(2846,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/text-input/index.ts'),(2847,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/text-input/style.scss'),(2848,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/text-input/text-input.tsx'),(2849,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/text-input/validated-text-input.tsx'),(2850,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/textarea/index.tsx'),(2851,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/textarea/style.scss'),(2852,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/title/index.tsx'),(2853,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/title/style.scss'),(2854,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/event-emit/emitter-callback.ts'),(2855,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/event-emit/emitters.ts'),(2856,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/event-emit/index.ts'),(2857,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/event-emit/reducer.ts'),(2858,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/event-emit/test/emitters.js'),(2859,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/event-emit/types.ts'),(2860,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/event-emit/utils.ts'),(2861,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/cart/index.ts'),(2862,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/cart/test/use-store-cart-item-quantity.js'),(2863,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/cart/test/use-store-cart.js'),(2864,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/cart/use-store-cart-coupons.ts'),(2865,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/cart/use-store-cart-event-listeners.ts'),(2866,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/cart/use-store-cart-item-quantity.ts'),(2867,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/cart/use-store-cart.ts'),(2868,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/collections/index.js'),(2869,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/collections/test/use-collection.js'),(2870,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/collections/use-collection-data.js'),(2871,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/collections/use-collection-header.ts'),(2872,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/collections/use-collection.ts'),(2873,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/index.js'),(2874,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/payment-methods/index.js'),(2875,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/payment-methods/test/use-payment-method-interface.js'),(2876,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/payment-methods/use-payment-method-interface.ts'),(2877,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/payment-methods/use-payment-methods.ts'),(2878,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/payment-methods/utils.ts'),(2879,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/shipping/index.js'),(2880,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/shipping/use-select-shipping-rate.ts'),(2881,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/shipping/use-shipping-data.ts'),(2882,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/test/use-checkout-submit.js'),(2883,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/test/use-query-state.js'),(2884,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/test/use-store-products.js'),(2885,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/test/use-store-snackbar-notices.js'),(2886,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/use-checkout-address.ts'),(2887,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/use-checkout-extension-data.ts'),(2888,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/use-checkout-notices.js'),(2889,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/use-checkout-submit.js'),(2890,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/use-customer-data.ts'),(2891,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/use-emit-response.ts'),(2892,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/use-query-state.js'),(2893,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/use-store-add-to-cart.ts'),(2894,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/use-store-events.ts'),(2895,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/use-store-products.ts'),(2896,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/use-store-snackbar-notices.js'),(2897,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/hooks/use-validation.ts'),(2898,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/index.ts'),(2899,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/add-to-cart-form/form/index.js'),(2900,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/add-to-cart-form/form/submit/index.js'),(2901,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/add-to-cart-form/form-state/actions.js'),(2902,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/add-to-cart-form/form-state/constants.js'),(2903,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/add-to-cart-form/form-state/event-emit.js'),(2904,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/add-to-cart-form/form-state/index.js'),(2905,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/add-to-cart-form/form-state/reducer.js'),(2906,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/add-to-cart-form/index.js'),(2907,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/cart/index.js'),(2908,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/checkout-processor.js'),(2909,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/checkout-provider.js'),(2910,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/checkout-state/actions.ts'),(2911,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/checkout-state/constants.ts'),(2912,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/checkout-state/event-emit.ts'),(2913,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/checkout-state/index.tsx'),(2914,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/checkout-state/reducer.ts'),(2915,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/checkout-state/types.ts'),(2916,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/checkout-state/utils.ts'),(2917,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/customer/constants.ts'),(2918,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/customer/index.tsx'),(2919,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/index.js'),(2920,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/payment-methods/actions.ts'),(2921,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/payment-methods/constants.ts'),(2922,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/payment-methods/event-emit.ts'),(2923,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/payment-methods/index.ts'),(2924,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/payment-methods/payment-method-data-context.tsx'),(2925,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/payment-methods/reducer.ts'),(2926,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/payment-methods/test/payment-method-data-context.js'),(2927,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/payment-methods/types.ts'),(2928,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/payment-methods/use-payment-method-dispatchers.ts'),(2929,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/payment-methods/use-payment-method-registration.ts'),(2930,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/payment-methods/utils.ts'),(2931,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/shipping/constants.js'),(2932,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/shipping/event-emit.js'),(2933,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/shipping/index.js'),(2934,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/shipping/reducers.js'),(2935,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/shipping/utils.js'),(2936,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/cart-checkout/utils.ts'),(2937,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/container-width-context.js'),(2938,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/editor-context.js'),(2939,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/index.js'),(2940,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/query-state-context.js'),(2941,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/store-notices/components/store-notices-container.js'),(2942,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/store-notices/components/style.scss'),(2943,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/store-notices/context.js'),(2944,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/store-notices/index.js'),(2945,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/store-snackbar-notices/components/snackbar-notices-container.js'),(2946,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/store-snackbar-notices/components/style.scss'),(2947,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/store-snackbar-notices/context.js'),(2948,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/store-snackbar-notices/index.ts'),(2949,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/validation/components/index.js'),(2950,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/validation/components/validation-input-error/index.js'),(2951,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/validation/components/validation-input-error/style.scss'),(2952,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/validation/context.js'),(2953,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/providers/validation/index.js'),(2954,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/test/utils.js'),(2955,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/context/utils.js'),(2956,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hocs/test/with-reviews.js'),(2957,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hocs/with-reviews.js'),(2958,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hocs/with-scroll-to-top/index.tsx'),(2959,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hocs/with-scroll-to-top/style.scss'),(2960,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hocs/with-scroll-to-top/test/index.js'),(2961,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hooks/index.js'),(2962,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hooks/test/use-position-relative-to-viewport.js'),(2963,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hooks/test/use-previous.js'),(2964,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hooks/test/use-shallow-equal.js'),(2965,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hooks/use-container-queries.ts'),(2966,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hooks/use-local-storage-state.ts'),(2967,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hooks/use-position-relative-to-viewport.js'),(2968,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hooks/use-previous.ts'),(2969,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hooks/use-shallow-equal.ts'),(2970,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/hooks/use-throw-error.ts'),(2971,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/address.ts'),(2972,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/derive-selected-shipping-rates.ts'),(2973,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/errors.js'),(2974,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/get-icons-from-payment-methods.ts'),(2975,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/get-valid-block-attributes.js'),(2976,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/index.js'),(2977,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/lazy-load-script.ts'),(2978,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/legacy-events.ts'),(2979,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/preload-script.ts'),(2980,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/product-data.js'),(2981,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/render-frontend.tsx'),(2982,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/shipping-rates.js'),(2983,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/test/address.ts'),(2984,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/test/errors.js'),(2985,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/active-filters/active-attribute-filters.js'),(2986,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/active-filters/block.js'),(2987,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/active-filters/edit.js'),(2988,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/active-filters/frontend.js'),(2989,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/active-filters/index.js'),(2990,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/active-filters/style.scss'),(2991,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/active-filters/utils.js'),(2992,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/attribute-filter/block.js'),(2993,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/attribute-filter/edit.js'),(2994,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/attribute-filter/editor.scss'),(2995,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/attribute-filter/frontend.js'),(2996,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/attribute-filter/index.js'),(2997,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/attribute-filter/preview.js'),(2998,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/attribute-filter/style.scss'),(2999,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/attributes.js'),(3000,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/block.js'),(3001,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/cart-line-items-table/cart-line-item-row.tsx'),(3002,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/cart-line-items-table/index.tsx'),(3003,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/context.ts'),(3004,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/edit.js'),(3005,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/editor.scss'),(3006,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/frontend.js'),(3007,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/index.js'),(3008,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-accepted-payment-methods-block/block.json'),(3009,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-accepted-payment-methods-block/block.tsx'),(3010,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-accepted-payment-methods-block/edit.tsx'),(3011,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-accepted-payment-methods-block/frontend.tsx'),(3012,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-accepted-payment-methods-block/index.tsx'),(3013,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-express-payment-block/block.json'),(3014,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-express-payment-block/block.tsx'),(3015,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-express-payment-block/edit.tsx'),(3016,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-express-payment-block/editor.scss'),(3017,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-express-payment-block/frontend.tsx'),(3018,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-express-payment-block/index.tsx'),(3019,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-items-block/block.json'),(3020,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-items-block/edit.tsx'),(3021,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-items-block/frontend.tsx'),(3022,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-items-block/index.tsx'),(3023,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-line-items-block/block.json'),(3024,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-line-items-block/block.tsx'),(3025,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-line-items-block/edit.tsx'),(3026,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-line-items-block/frontend.tsx'),(3027,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-line-items-block/index.tsx'),(3028,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-block/block.json'),(3029,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-block/edit.tsx'),(3030,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-block/frontend.tsx'),(3031,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-block/index.tsx'),(3032,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-block/slotfills.tsx'),(3033,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-coupon-form/block.json'),(3034,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-coupon-form/block.tsx'),(3035,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-coupon-form/edit.tsx'),(3036,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-coupon-form/frontend.tsx'),(3037,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-coupon-form/index.tsx'),(3038,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-discount/block.json'),(3039,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-discount/block.tsx'),(3040,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-discount/edit.tsx'),(3041,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-discount/frontend.tsx'),(3042,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-discount/index.tsx'),(3043,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-fee/block.json'),(3044,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-fee/block.tsx'),(3045,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-fee/edit.tsx'),(3046,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-fee/frontend.tsx'),(3047,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-fee/index.tsx'),(3048,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-heading/attributes.ts'),(3049,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-heading/block.json'),(3050,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-heading/block.tsx'),(3051,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-heading/edit.tsx'),(3052,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-heading/editor.scss'),(3053,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-heading/frontend.tsx'),(3054,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-heading/index.tsx'),(3055,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-shipping/attributes.tsx'),(3056,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-shipping/block.json'),(3057,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-shipping/block.tsx'),(3058,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-shipping/edit.tsx'),(3059,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-shipping/frontend.tsx'),(3060,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-shipping/index.tsx'),(3061,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-subtotal/block.json'),(3062,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-subtotal/block.tsx'),(3063,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-subtotal/edit.tsx'),(3064,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-subtotal/frontend.tsx'),(3065,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-subtotal/index.tsx'),(3066,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-taxes/attributes.tsx'),(3067,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-taxes/block.json'),(3068,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-taxes/block.tsx'),(3069,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-taxes/edit.tsx'),(3070,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-taxes/frontend.tsx'),(3071,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-order-summary-taxes/index.tsx'),(3072,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-totals-block/block.json'),(3073,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-totals-block/edit.tsx'),(3074,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-totals-block/frontend.tsx'),(3075,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-totals-block/index.tsx'),(3076,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/cart-totals-block/style.scss'),(3077,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/component-metadata.ts'),(3078,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/empty-cart-block/block.json'),(3079,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/empty-cart-block/edit.tsx'),(3080,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/empty-cart-block/frontend.tsx'),(3081,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/empty-cart-block/icon-data-uri.js'),(3082,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/empty-cart-block/index.tsx'),(3083,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/empty-cart-block/style.scss'),(3084,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/filled-cart-block/block.json'),(3085,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/filled-cart-block/edit.tsx'),(3086,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/filled-cart-block/editor.scss'),(3087,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/filled-cart-block/frontend.tsx'),(3088,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/filled-cart-block/index.tsx'),(3089,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/index.tsx'),(3090,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/proceed-to-checkout-block/attributes.tsx'),(3091,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/proceed-to-checkout-block/block.json'),(3092,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/proceed-to-checkout-block/block.tsx'),(3093,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/proceed-to-checkout-block/edit.tsx'),(3094,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/proceed-to-checkout-block/frontend.tsx'),(3095,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/proceed-to-checkout-block/index.tsx'),(3096,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/proceed-to-checkout-block/style.scss'),(3097,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/inner-blocks/register-components.ts'),(3098,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/style.scss'),(3099,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/test/block.js'),(3100,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart/types.ts'),(3101,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/editor-utils.ts'),(3102,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/hacks.ts'),(3103,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/index.js'),(3104,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/express-payment/cart-express-payment.js'),(3105,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/express-payment/checkout-express-payment.js'),(3106,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/express-payment/index.js'),(3107,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/express-payment/style.scss'),(3108,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/express-payment-methods.js'),(3109,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/index.js'),(3110,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/no-payment-methods/index.js'),(3111,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/no-payment-methods/style.scss'),(3112,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/payment-method-card.js'),(3113,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/payment-method-error-boundary.js'),(3114,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/payment-method-options.js'),(3115,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/payment-methods.js'),(3116,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/saved-payment-method-options.js'),(3117,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/style.scss'),(3118,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/payment-methods/test/payment-methods.js'),(3119,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/use-forced-layout.ts'),(3120,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/cart-checkout-shared/use-view-switcher.tsx'),(3121,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/attributes.ts'),(3122,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/block.json'),(3123,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/block.tsx'),(3124,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/checkout-order-error/constants.js'),(3125,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/checkout-order-error/index.js'),(3126,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/checkout-order-error/style.scss'),(3127,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/context.ts'),(3128,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/edit.tsx'),(3129,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/empty-cart/index.js'),(3130,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/empty-cart/style.scss'),(3131,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/form-step/additional-fields.tsx'),(3132,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/form-step/attributes.ts'),(3133,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/form-step/editor.scss'),(3134,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/form-step/form-step-block.tsx'),(3135,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/form-step/form-step-heading.tsx'),(3136,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/form-step/index.tsx'),(3137,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/frontend.tsx'),(3138,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/index.tsx'),(3139,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-actions-block/attributes.tsx'),(3140,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-actions-block/block.json'),(3141,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-actions-block/block.tsx'),(3142,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-actions-block/edit.tsx'),(3143,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-actions-block/frontend.tsx'),(3144,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-actions-block/index.tsx'),(3145,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-actions-block/style.scss'),(3146,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-billing-address-block/attributes.tsx'),(3147,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-billing-address-block/block.json'),(3148,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-billing-address-block/block.tsx'),(3149,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-billing-address-block/edit.tsx'),(3150,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-billing-address-block/frontend.tsx'),(3151,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-billing-address-block/index.tsx'),(3152,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-contact-information-block/attributes.tsx'),(3153,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-contact-information-block/block.json'),(3154,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-contact-information-block/block.tsx'),(3155,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-contact-information-block/edit.tsx'),(3156,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-contact-information-block/frontend.tsx'),(3157,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-contact-information-block/index.tsx'),(3158,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-contact-information-block/login-prompt.js'),(3159,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-express-payment-block/block.json'),(3160,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-express-payment-block/block.tsx'),(3161,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-express-payment-block/edit.tsx'),(3162,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-express-payment-block/editor.scss'),(3163,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-express-payment-block/index.tsx'),(3164,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-fields-block/block.json'),(3165,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-fields-block/edit.tsx'),(3166,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-fields-block/frontend.tsx'),(3167,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-fields-block/index.tsx'),(3168,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-fields-block/style.scss'),(3169,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-note-block/block.json'),(3170,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-note-block/block.tsx'),(3171,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-note-block/edit.tsx'),(3172,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-note-block/editor.scss'),(3173,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-note-block/index.tsx'),(3174,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-block/attributes.tsx'),(3175,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-block/block.json'),(3176,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-block/edit.tsx'),(3177,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-block/frontend.tsx'),(3178,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-block/index.tsx'),(3179,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-block/slotfills.tsx'),(3180,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-block/test/block.js'),(3181,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-cart-items/block.json'),(3182,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-cart-items/block.tsx'),(3183,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-cart-items/edit.tsx'),(3184,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-cart-items/frontend.tsx'),(3185,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-cart-items/index.tsx'),(3186,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-coupon-form/block.json'),(3187,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-coupon-form/block.tsx'),(3188,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-coupon-form/edit.tsx'),(3189,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-coupon-form/frontend.tsx'),(3190,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-coupon-form/index.tsx'),(3191,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-discount/block.json'),(3192,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-discount/block.tsx'),(3193,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-discount/edit.tsx'),(3194,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-discount/frontend.tsx'),(3195,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-discount/index.tsx'),(3196,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-fee/block.json'),(3197,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-fee/block.tsx'),(3198,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-fee/edit.tsx'),(3199,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-fee/frontend.tsx'),(3200,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-fee/index.tsx'),(3201,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-shipping/block.json'),(3202,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-shipping/block.tsx'),(3203,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-shipping/edit.tsx'),(3204,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-shipping/frontend.tsx'),(3205,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-shipping/index.tsx'),(3206,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-subtotal/block.json'),(3207,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-subtotal/block.tsx'),(3208,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-subtotal/edit.tsx'),(3209,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-subtotal/frontend.tsx'),(3210,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-subtotal/index.tsx'),(3211,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-taxes/attributes.tsx'),(3212,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-taxes/block.json'),(3213,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-taxes/block.tsx'),(3214,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-taxes/edit.tsx'),(3215,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-taxes/frontend.tsx'),(3216,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-order-summary-taxes/index.tsx'),(3217,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-payment-block/attributes.tsx'),(3218,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-payment-block/block.json'),(3219,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-payment-block/block.tsx'),(3220,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-payment-block/edit.tsx'),(3221,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-payment-block/frontend.tsx'),(3222,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-payment-block/index.tsx'),(3223,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-address-block/attributes.tsx'),(3224,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-address-block/block.json'),(3225,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-address-block/block.tsx'),(3226,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-address-block/edit.tsx'),(3227,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-address-block/frontend.tsx'),(3228,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-address-block/index.tsx'),(3229,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-methods-block/attributes.tsx'),(3230,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-methods-block/block.json'),(3231,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-methods-block/block.tsx'),(3232,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-methods-block/edit.tsx'),(3233,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-methods-block/frontend.tsx'),(3234,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-methods-block/index.tsx'),(3235,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-methods-block/no-shipping-placeholder/index.js'),(3236,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-methods-block/no-shipping-placeholder/style.scss'),(3237,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-shipping-methods-block/style.scss'),(3238,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-terms-block/block.json'),(3239,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-terms-block/constants.js'),(3240,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-terms-block/edit.tsx'),(3241,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-terms-block/editor.scss'),(3242,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-terms-block/frontend.tsx'),(3243,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-terms-block/index.tsx'),(3244,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-terms-block/style.scss'),(3245,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-terms-block/test/edit.js'),(3246,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-terms-block/test/frontend.js'),(3247,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-totals-block/block.json'),(3248,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-totals-block/edit.tsx'),(3249,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-totals-block/frontend.tsx'),(3250,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-totals-block/index.tsx'),(3251,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-totals-block/style.scss'),(3252,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/component-metadata.ts'),(3253,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/index.tsx'),(3254,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/register-components.ts'),(3255,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/order-notes/index.tsx'),(3256,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/order-notes/style.scss'),(3257,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/order-notes/test/index.js'),(3258,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/phone-number/index.tsx'),(3259,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/phone-number/test/index.js'),(3260,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/styles/editor.scss'),(3261,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/styles/style.scss'),(3262,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/types.ts'),(3263,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/utils.ts'),(3264,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/classic-template/assets/doc-image-single-product-classic-block.png'),(3265,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/classic-template/constants.ts'),(3266,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/classic-template/editor.scss'),(3267,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/classic-template/index.tsx'),(3268,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-category/block.js'),(3269,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-category/edit.tsx'),(3270,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-category/editor.scss'),(3271,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-category/example.js'),(3272,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-category/index.js'),(3273,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-category/style.scss'),(3274,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-category/utils.js'),(3275,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-product/block.js'),(3276,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-product/edit.tsx'),(3277,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-product/editor.scss'),(3278,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-product/example.js'),(3279,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-product/index.js'),(3280,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-product/style.scss'),(3281,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-product/utils.js'),(3282,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/handpicked-products/block.js'),(3283,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/handpicked-products/editor.scss'),(3284,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/handpicked-products/index.js'),(3285,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/block.tsx'),(3286,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/component-frontend.tsx'),(3287,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/edit.tsx'),(3288,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/frontend.ts'),(3289,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/index.tsx'),(3290,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/attributes.ts'),(3291,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/block.tsx'),(3292,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/edit.tsx'),(3293,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/editor.scss'),(3294,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/index.tsx'),(3295,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/allowed-blocks.ts'),(3296,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/empty-mini-cart-contents-block/block.json'),(3297,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/empty-mini-cart-contents-block/edit.tsx'),(3298,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/empty-mini-cart-contents-block/frontend.tsx'),(3299,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/empty-mini-cart-contents-block/index.tsx'),(3300,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/filled-mini-cart-contents-block/block.json'),(3301,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/filled-mini-cart-contents-block/block.tsx'),(3302,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/filled-mini-cart-contents-block/edit.tsx'),(3303,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/filled-mini-cart-contents-block/frontend.tsx'),(3304,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/filled-mini-cart-contents-block/index.tsx'),(3305,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/index.tsx'),(3306,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-footer-block/block.json'),(3307,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-footer-block/block.tsx'),(3308,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-footer-block/edit.tsx'),(3309,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-footer-block/index.tsx'),(3310,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-items-block/block.json'),(3311,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-items-block/edit.tsx'),(3312,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-items-block/frontend.tsx'),(3313,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-items-block/index.tsx'),(3314,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-products-table-block/block.json'),(3315,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-products-table-block/block.tsx'),(3316,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-products-table-block/edit.tsx'),(3317,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-products-table-block/index.tsx'),(3318,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-shopping-button-block/block.json'),(3319,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-shopping-button-block/block.tsx'),(3320,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-shopping-button-block/edit.tsx'),(3321,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-shopping-button-block/index.tsx'),(3322,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-title-block/block.json'),(3323,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-title-block/block.tsx'),(3324,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-title-block/edit.tsx'),(3325,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/mini-cart-title-block/index.tsx'),(3326,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks/register-components.ts'),(3327,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/mini-cart-contents/inner-blocks-style.tsx'),(3328,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/quantity-badge/index.tsx'),(3329,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/quantity-badge/style.scss'),(3330,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/style.scss'),(3331,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/mini-cart/test/block.js'),(3332,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/price-filter/block.js'),(3333,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/price-filter/constants.js'),(3334,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/price-filter/edit.js'),(3335,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/price-filter/editor.scss'),(3336,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/price-filter/frontend.js'),(3337,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/price-filter/index.js'),(3338,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/price-filter/style.scss'),(3339,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/price-filter/test/use-price-constraints.js'),(3340,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/price-filter/use-price-constraints.js'),(3341,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-best-sellers/block.js'),(3342,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-best-sellers/index.js'),(3343,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-categories/block.js'),(3344,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-categories/editor.scss'),(3345,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-categories/index.js'),(3346,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-categories/style.scss'),(3347,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-category/block.js'),(3348,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-category/editor.scss'),(3349,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-category/index.js'),(3350,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-new/block.js'),(3351,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-new/index.js'),(3352,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-on-sale/block.js'),(3353,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-on-sale/editor.scss'),(3354,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-on-sale/index.js'),(3355,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-search/block.js'),(3356,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-search/edit.js'),(3357,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-search/editor.scss'),(3358,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-search/index.js'),(3359,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-search/style.scss'),(3360,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-tag/block.js'),(3361,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-tag/editor.scss'),(3362,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-tag/index.js'),(3363,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-top-rated/block.js'),(3364,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-top-rated/index.js'),(3365,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products/all-products/block.js'),(3366,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products/all-products/edit.js'),(3367,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products/all-products/editor.scss'),(3368,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products/all-products/frontend.js'),(3369,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products/all-products/index.js'),(3370,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products/attributes.js'),(3371,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products/base-utils.js'),(3372,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products/edit-utils.js'),(3373,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products/edit.js'),(3374,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products/utils.js'),(3375,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products-by-attribute/block.js'),(3376,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products-by-attribute/editor.scss'),(3377,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products-by-attribute/index.js'),(3378,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/all-reviews/edit.js'),(3379,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/all-reviews/index.js'),(3380,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/all-reviews/no-reviews-placeholder.js'),(3381,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/attributes.js'),(3382,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/edit-utils.js'),(3383,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/editor-block.js'),(3384,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/editor-container-block.js'),(3385,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/editor.scss'),(3386,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/example.js'),(3387,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/frontend-block.js'),(3388,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/frontend-container-block.js'),(3389,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/frontend.js'),(3390,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/reviews-by-category/edit.js'),(3391,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/reviews-by-category/index.js'),(3392,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/reviews-by-category/no-reviews-placeholder.js'),(3393,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/reviews-by-product/edit.js'),(3394,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/reviews-by-product/editor.scss'),(3395,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/reviews-by-product/index.js'),(3396,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/reviews-by-product/no-reviews-placeholder.js'),(3397,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/save.js'),(3398,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/reviews/utils.js'),(3399,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/single-product/attributes.js'),(3400,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/single-product/block.js'),(3401,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/single-product/constants.js'),(3402,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/single-product/edit/api-error.js'),(3403,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/single-product/edit/editor-block-controls.js'),(3404,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/single-product/edit/editor.scss'),(3405,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/single-product/edit/index.js'),(3406,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/single-product/edit/layout-editor.js'),(3407,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/single-product/edit/shared-product-control.js'),(3408,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/single-product/frontend.js'),(3409,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/single-product/index.js'),(3410,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/single-product/save.js'),(3411,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/stock-filter/block.js'),(3412,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/stock-filter/edit.js'),(3413,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/stock-filter/editor.scss'),(3414,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/stock-filter/frontend.js'),(3415,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/stock-filter/index.js'),(3416,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/stock-filter/preview.js'),(3417,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/stock-filter/style.scss'),(3418,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/stock-filter/test/__snapshots__/block.js.snap'),(3419,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/stock-filter/test/block.js'),(3420,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/block-components/get-registered-block-components.ts'),(3421,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/block-components/index.js'),(3422,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/block-components/register-block-component.js'),(3423,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/block-components/registered-block-components-init.ts'),(3424,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/block-components/test/index.js'),(3425,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/index.js'),(3426,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/payment-methods/assertions.ts'),(3427,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/payment-methods/express-payment-method-config.ts'),(3428,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/payment-methods/extensions-config.ts'),(3429,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/payment-methods/index.ts'),(3430,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/payment-methods/payment-method-config-helper.ts'),(3431,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/payment-methods/payment-method-config.tsx'),(3432,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/payment-methods/registry.ts'),(3433,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/payment-methods/test/payment-method-config-helper.ts'),(3434,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/payment-methods/test/payment-method-config.tsx'),(3435,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks-registry/payment-methods/test/registry.ts'),(3436,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart/action-types.ts'),(3437,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart/actions.ts'),(3438,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart/constants.ts'),(3439,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart/controls.js'),(3440,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart/index.ts'),(3441,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart/push-changes.ts'),(3442,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart/reducers.ts'),(3443,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart/resolvers.ts'),(3444,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart/selectors.ts'),(3445,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart/test/reducers.js'),(3446,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart/test/resolvers.js'),(3447,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart/test/selectors.js'),(3448,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/collections/action-types.js'),(3449,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/collections/actions.js'),(3450,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/collections/constants.js'),(3451,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/collections/index.js'),(3452,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/collections/reducers.js'),(3453,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/collections/resolvers.js'),(3454,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/collections/selectors.js'),(3455,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/collections/test/reducers.js'),(3456,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/collections/test/resolvers.js'),(3457,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/collections/test/selectors.js'),(3458,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/constants.ts'),(3459,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/default-states.ts'),(3460,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/index.ts'),(3461,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/mapped-types.ts'),(3462,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/query-state/action-types.js'),(3463,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/query-state/actions.js'),(3464,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/query-state/constants.js'),(3465,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/query-state/index.js'),(3466,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/query-state/reducers.js'),(3467,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/query-state/selectors.js'),(3468,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/query-state/test/reducers.js'),(3469,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/query-state/test/selectors.js'),(3470,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/query-state/utils.js'),(3471,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/schema/action-types.js'),(3472,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/schema/actions.js'),(3473,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/schema/constants.js'),(3474,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/schema/index.js'),(3475,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/schema/reducers.js'),(3476,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/schema/resolvers.js'),(3477,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/schema/selectors.js'),(3478,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/schema/test/reducers.js'),(3479,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/schema/test/resolvers.js'),(3480,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/schema/test/selectors.js'),(3481,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/schema/test/utils.js'),(3482,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/schema/utils.js'),(3483,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/shared-controls.ts'),(3484,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/types.ts'),(3485,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/utils/has-in-state.js'),(3486,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/utils/index.js'),(3487,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/utils/update-state.js'),(3488,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/block-title/editor.scss'),(3489,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/block-title/index.js'),(3490,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/compatibility-notices/cart-checkout-compatibility-notice.tsx'),(3491,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/compatibility-notices/index.tsx'),(3492,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/compatibility-notices/style.scss'),(3493,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/compatibility-notices/use-compatibility-notice.ts'),(3494,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/compatibility-notices/woo-image.js'),(3495,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/edit-product-link/index.js'),(3496,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/error-placeholder/editor.scss'),(3497,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/error-placeholder/error-message.tsx'),(3498,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/error-placeholder/index.tsx'),(3499,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/error-placeholder/stories/error-message.tsx'),(3500,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/error-placeholder/stories/error-placeholder.tsx'),(3501,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/expandable-search-list-item/expandable-search-list-item.tsx'),(3502,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/external-link-card/editor.scss'),(3503,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/external-link-card/index.tsx'),(3504,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/external-link-card/stories/index.tsx'),(3505,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/feedback-prompt/index.js'),(3506,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/feedback-prompt/style.scss'),(3507,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js'),(3508,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/grid-layout-control/index.js'),(3509,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/heading-toolbar/heading-level-icon.js'),(3510,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/heading-toolbar/index.js'),(3511,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/page-selector/index.js'),(3512,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-attribute-term-control/index.js'),(3513,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-attribute-term-control/style.scss'),(3514,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-category-control/index.js'),(3515,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-category-control/style.scss'),(3516,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-control/index.js'),(3517,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-control/style.scss'),(3518,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-orderby-control/index.js'),(3519,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-stock-control/index.tsx'),(3520,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-tag-control/index.js'),(3521,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/product-tag-control/style.scss'),(3522,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/products-control/index.js'),(3523,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/search-list-control/index.ts'),(3524,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/search-list-control/item.tsx'),(3525,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/search-list-control/search-list-control.tsx'),(3526,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/search-list-control/style.scss'),(3527,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/search-list-control/test/__snapshots__/index.js.snap'),(3528,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/search-list-control/test/hierarchy.js'),(3529,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/search-list-control/test/index.js'),(3530,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/search-list-control/types.ts'),(3531,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/search-list-control/utils.tsx'),(3532,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/tag/index.tsx'),(3533,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/tag/style.scss'),(3534,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/tag/test/__snapshots__/index.js.snap'),(3535,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/tag/test/index.js'),(3536,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/text-toolbar-button/index.js'),(3537,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/text-toolbar-button/style.scss'),(3538,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/utils/index.js'),(3539,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/view-switcher/editor.scss'),(3540,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/editor-components/view-switcher/index.js'),(3541,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/google-analytics/constants.ts'),(3542,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/google-analytics/index.ts'),(3543,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/extensions/google-analytics/utils.ts'),(3544,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/filters/block-list-block.js'),(3545,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/filters/exclude-draft-status-from-analytics.js'),(3546,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/filters/get-block-attributes.js'),(3547,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/global.d.ts'),(3548,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/index.js'),(3549,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/test/with-categories.js'),(3550,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/test/with-category.js'),(3551,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/test/with-product-variations.js'),(3552,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/test/with-product.js'),(3553,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/test/with-searched-products.js'),(3554,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/test/with-transform-single-select-to-multiple-select.js'),(3555,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/with-attributes.js'),(3556,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/with-categories.js'),(3557,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/with-category.js'),(3558,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/with-product-variations.js'),(3559,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/with-product.js'),(3560,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/with-searched-products.tsx'),(3561,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hocs/with-transform-single-select-to-multiple-select.js'),(3562,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/hooks/style-attributes.ts'),(3563,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/index.js'),(3564,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library/barcode.tsx'),(3565,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library/cart.tsx'),(3566,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library/check-payment.tsx'),(3567,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library/eye.tsx'),(3568,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library/fields.tsx'),(3569,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library/filled-cart.tsx'),(3570,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library/folder-starred.tsx'),(3571,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library/mini-cart.tsx'),(3572,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library/remove-cart.tsx'),(3573,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library/thumb-up.tsx'),(3574,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library/toggle.tsx'),(3575,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library/totals.tsx'),(3576,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/library/woo.tsx'),(3577,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/icons/stories/index.tsx'),(3578,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/index.js'),(3579,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/middleware/index.js'),(3580,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/middleware/store-api-nonce.js'),(3581,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/payment-method-extensions/payment-methods/bacs/constants.js'),(3582,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/payment-method-extensions/payment-methods/bacs/index.js'),(3583,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/payment-method-extensions/payment-methods/cheque/constants.js'),(3584,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/payment-method-extensions/payment-methods/cheque/index.js'),(3585,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/payment-method-extensions/payment-methods/cod/constants.js'),(3586,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/payment-method-extensions/payment-methods/cod/index.js'),(3587,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/payment-method-extensions/payment-methods/paypal/constants.js'),(3588,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/payment-method-extensions/payment-methods/paypal/index.js'),(3589,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/previews/cart.ts'),(3590,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/previews/categories.js'),(3591,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/previews/grid-block.js'),(3592,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/previews/index.js'),(3593,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/previews/products.js'),(3594,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/previews/reviews.js'),(3595,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/previews/saved-payment-methods.js'),(3596,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/previews/shipping-rates.ts'),(3597,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/previews/single-product-block.js'),(3598,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings/blocks/constants.ts'),(3599,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings/blocks/feature-flags.ts'),(3600,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings/blocks/index.ts'),(3601,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings/shared/default-address-fields.ts'),(3602,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings/shared/default-constants.ts'),(3603,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings/shared/index.ts'),(3604,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings/shared/settings-init.ts'),(3605,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings/shared/test/compare-with-wp-version.js'),(3606,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings/shared/test/get-setting-with-coercion.ts'),(3607,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings/shared/test/get-setting.js'),(3608,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/settings/shared/utils.ts'),(3609,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/shared/context/index.js'),(3610,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/shared/context/inner-block-layout-context.js'),(3611,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/shared/context/product-data-context.js'),(3612,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/shared/hocs/index.js'),(3613,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/shared/hocs/with-filtered-attributes.js'),(3614,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/shared/hocs/with-product-data-context.js'),(3615,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/index.ts'),(3616,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/add-to-cart-form.js'),(3617,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/address-fields.js'),(3618,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/billing.js'),(3619,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/blocks.ts'),(3620,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/cart-response.ts'),(3621,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/cart.js'),(3622,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/cart.ts'),(3623,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/contexts.js'),(3624,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/contexts.ts'),(3625,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/currency.ts'),(3626,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/events.ts'),(3627,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/hooks.js'),(3628,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/hooks.ts'),(3629,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/index.ts'),(3630,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/objects.ts'),(3631,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/payment-method-interface.ts'),(3632,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/payments.ts'),(3633,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/product-response.ts'),(3634,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/settings.js'),(3635,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/shipping.js'),(3636,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/shipping.ts'),(3637,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/taxes.ts'),(3638,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/trim-html.d.ts'),(3639,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-defs/utils.ts'),(3640,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-guards/boolean.ts'),(3641,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-guards/cart-response-totals.ts'),(3642,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-guards/error.ts'),(3643,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-guards/function.ts'),(3644,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-guards/index.ts'),(3645,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-guards/null.ts'),(3646,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-guards/number.ts'),(3647,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-guards/object.ts'),(3648,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-guards/string.ts'),(3649,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/types/type-guards/test/index.ts'),(3650,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/attributes-query.js'),(3651,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/attributes.js'),(3652,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/global-style.js'),(3653,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/notices.ts'),(3654,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/products.js'),(3655,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/shared-attributes.js'),(3656,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/test/notices.js'),(3657,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/test/products.js'),(3658,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/active-filters-frontend.asset.php'),(3659,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/active-filters-frontend.js'),(3660,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/active-filters.asset.php'),(3661,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/active-filters.js'),(3662,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/all-products-frontend.asset.php'),(3663,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/all-products-frontend.js'),(3664,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/all-products.asset.php'),(3665,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/all-products.js'),(3666,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/all-reviews.asset.php'),(3667,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/all-reviews.js'),(3668,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/attribute-filter-frontend.asset.php'),(3669,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/attribute-filter-frontend.js'),(3670,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/attribute-filter.asset.php'),(3671,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/attribute-filter.js'),(3672,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/blocks-checkout.asset.php'),(3673,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/blocks-checkout.js'),(3674,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/cart-accepted-payment-methods-frontend.js'),(3675,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/cart-express-payment-frontend.js'),(3676,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/cart-items-frontend.js'),(3677,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/cart-line-items--mini-cart-contents-block/products-table-frontend.js'),(3678,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/cart-line-items-frontend.js'),(3679,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/cart-order-summary-frontend.js'),(3680,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/cart-totals-frontend.js'),(3681,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/empty-cart-frontend.js'),(3682,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/filled-cart-frontend.js'),(3683,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/order-summary-coupon-form-frontend.js'),(3684,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/order-summary-discount-frontend.js'),(3685,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/order-summary-fee-frontend.js'),(3686,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/order-summary-heading-frontend.js'),(3687,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/order-summary-shipping--checkout-blocks/order-summary-shipping-frontend.js'),(3688,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/order-summary-shipping-frontend.js'),(3689,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/order-summary-subtotal-frontend.js'),(3690,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/order-summary-taxes-frontend.js'),(3691,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-blocks/proceed-to-checkout-frontend.js'),(3692,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-frontend.asset.php'),(3693,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart-frontend.js'),(3694,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart.asset.php'),(3695,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/cart.js'),(3696,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout/block.json'),(3697,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/actions-frontend.js'),(3698,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/billing-address--checkout-blocks/shipping-address-frontend.js'),(3699,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/billing-address-frontend.js'),(3700,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/contact-information-frontend.js'),(3701,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/express-payment-frontend.js'),(3702,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/fields-frontend.js'),(3703,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/order-note-frontend.js'),(3704,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/order-summary-cart-items-frontend.js'),(3705,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/order-summary-coupon-form-frontend.js'),(3706,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/order-summary-discount-frontend.js'),(3707,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/order-summary-fee-frontend.js'),(3708,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/order-summary-frontend.js'),(3709,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/order-summary-shipping-frontend.js'),(3710,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/order-summary-subtotal-frontend.js'),(3711,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/order-summary-taxes-frontend.js'),(3712,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/payment-frontend.js'),(3713,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/shipping-address-frontend.js'),(3714,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/shipping-methods-frontend.js'),(3715,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/terms-frontend.js'),(3716,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-blocks/totals-frontend.js'),(3717,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-frontend.asset.php'),(3718,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout-frontend.js'),(3719,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout.asset.php'),(3720,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/checkout.js'),(3721,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/featured-category.asset.php'),(3722,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/featured-category.js'),(3723,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/featured-product.asset.php'),(3724,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/featured-product.js'),(3725,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/handpicked-products.asset.php'),(3726,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/handpicked-products.js'),(3727,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/legacy-template.asset.php'),(3728,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/legacy-template.js'),(3729,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-component-frontend.asset.php'),(3730,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-component-frontend.js'),(3731,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-contents-block/empty-cart-frontend.js'),(3732,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-contents-block/filled-cart-frontend.js'),(3733,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-contents-block/footer--mini-cart-contents-block/products-table-frontend.js'),(3734,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-contents-block/footer-frontend.js'),(3735,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-contents-block/items-frontend.js'),(3736,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-contents-block/products-table-frontend.js'),(3737,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-contents-block/shopping-button-frontend.js'),(3738,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-contents-block/title-frontend.js'),(3739,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-contents.asset.php'),(3740,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-contents.js'),(3741,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-frontend.asset.php'),(3742,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart-frontend.js'),(3743,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart.asset.php'),(3744,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/mini-cart.js'),(3745,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/price-filter-frontend.asset.php'),(3746,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/price-filter-frontend.js'),(3747,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/price-filter.asset.php'),(3748,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/price-filter.js'),(3749,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/price-format.asset.php'),(3750,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/price-format.js'),(3751,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-add-to-cart--product-button--product-category-list--product-image--product-price--product-r--a0326d00.js'),(3752,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-add-to-cart--product-button--product-image--product-title.js'),(3753,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-add-to-cart--product-button.js'),(3754,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-add-to-cart-frontend.js'),(3755,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-add-to-cart.js'),(3756,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-best-sellers.asset.php'),(3757,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-best-sellers.js'),(3758,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-button--product-category-list--product-image--product-price--product-rating--product-sale-b--e17c7c01.js'),(3759,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-button-frontend.js'),(3760,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-button.js'),(3761,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-categories.asset.php'),(3762,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-categories.js'),(3763,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-category-list-frontend.js'),(3764,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-category-list.js'),(3765,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-category.asset.php'),(3766,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-category.js'),(3767,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-image-frontend.js'),(3768,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-image.js'),(3769,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-new.asset.php'),(3770,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-new.js'),(3771,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-on-sale.asset.php'),(3772,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-on-sale.js'),(3773,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-price-frontend.js'),(3774,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-price.js'),(3775,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-rating-frontend.js'),(3776,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-rating.js'),(3777,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-sale-badge-frontend.js'),(3778,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-sale-badge.js'),(3779,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-search.asset.php'),(3780,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-search.js'),(3781,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-sku-frontend.js'),(3782,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-sku.js'),(3783,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-stock-indicator-frontend.js'),(3784,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-stock-indicator.js'),(3785,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-summary-frontend.js'),(3786,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-summary.js'),(3787,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-tag-list-frontend.js'),(3788,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-tag-list.js'),(3789,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-tag.asset.php'),(3790,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-tag.js'),(3791,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-title-frontend.js'),(3792,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-title.js'),(3793,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-top-rated.asset.php'),(3794,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-top-rated.js'),(3795,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/products-by-attribute.asset.php'),(3796,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/products-by-attribute.js'),(3797,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/reviews-by-category.asset.php'),(3798,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/reviews-by-category.js'),(3799,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/reviews-by-product.asset.php'),(3800,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/reviews-by-product.js'),(3801,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/reviews-frontend.asset.php'),(3802,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/reviews-frontend.js'),(3803,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/single-product-frontend.asset.php'),(3804,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/single-product-frontend.js'),(3805,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/single-product.asset.php'),(3806,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/single-product.js'),(3807,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/stock-filter-frontend.asset.php'),(3808,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/stock-filter-frontend.js'),(3809,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/stock-filter.asset.php'),(3810,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/stock-filter.js'),(3811,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--cart-blocks/cart-line-items--cart-blocks/cart-order-summary--cart-blocks/order-summary-shi--c02aad66-frontend.js'),(3812,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--cart-blocks/cart-line-items--checkout-blocks/order-summary-cart-items--mini-cart-contents---233ab542-frontend.js'),(3813,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--cart-blocks/order-summary-shipping--checkout-blocks/billing-address--checkout-blocks/order--5b8feb0b-frontend.js'),(3814,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--cart-blocks/order-summary-shipping--checkout-blocks/billing-address--checkout-blocks/order--decc3dc6-frontend.js'),(3815,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--mini-cart-contents-block/footer-frontend.js'),(3816,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors--product-add-to-cart-frontend.js'),(3817,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-data.asset.php'),(3818,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-data.js'),(3819,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-editor-style-rtl.css'),(3820,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-editor-style.css'),(3821,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-google-analytics.asset.php'),(3822,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-google-analytics.js'),(3823,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-middleware.asset.php'),(3824,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-middleware.js'),(3825,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-registry.asset.php'),(3826,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-registry.js'),(3827,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-shared-context.asset.php'),(3828,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-shared-context.js'),(3829,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-shared-hocs.asset.php'),(3830,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-shared-hocs.js'),(3831,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-style-rtl.css'),(3832,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-style.css'),(3833,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-vendors-style-rtl.css'),(3834,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-vendors-style.css'),(3835,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-vendors.js'),(3836,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks.asset.php'),(3837,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks.js'),(3838,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-payment-method-bacs.asset.php'),(3839,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-payment-method-bacs.js'),(3840,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-payment-method-cheque.asset.php'),(3841,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-payment-method-cheque.js'),(3842,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-payment-method-cod.asset.php'),(3843,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-payment-method-cod.js'),(3844,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-payment-method-paypal.asset.php'),(3845,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-payment-method-paypal.js'),(3846,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-settings.asset.php'),(3847,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-settings.js'),(3848,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/global.d.ts'),(3849,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/block-error.svg'),(3850,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/alipay.svg'),(3851,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/amex.svg'),(3852,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/bancontact.svg'),(3853,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/diners.svg'),(3854,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/discover.svg'),(3855,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/eps.svg'),(3856,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/giropay.svg'),(3857,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/ideal.svg'),(3858,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/jcb.svg'),(3859,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/laser.svg'),(3860,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/maestro.svg'),(3861,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/mastercard.svg'),(3862,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/multibanco.svg'),(3863,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/p24.svg'),(3864,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/sepa.svg'),(3865,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/sofort.svg'),(3866,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/unionpay.svg'),(3867,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/visa.svg'),(3868,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/payment-methods/wechat.svg'),(3869,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/previews/beanie.jpg'),(3870,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/previews/cap.jpg'),(3871,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/previews/collection.jpg'),(3872,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/previews/pennant.jpg'),(3873,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/template-placeholders/archive-product.svg'),(3874,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/template-placeholders/fallback.svg'),(3875,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/images/template-placeholders/single-product.svg'),(3876,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/blocks-registry/get-registered-blocks.ts'),(3877,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/blocks-registry/index.ts'),(3878,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/blocks-registry/inserter.png'),(3879,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/blocks-registry/register-checkout-block.ts'),(3880,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/blocks-registry/registered-blocks.ts'),(3881,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/blocks-registry/test/index.js'),(3882,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/blocks-registry/types.ts'),(3883,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/blocks-registry/utils.ts'),(3884,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/button/index.ts'),(3885,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/checkbox-control/index.tsx'),(3886,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/checkbox-control/stories/index.tsx'),(3887,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/checkbox-control/style.scss'),(3888,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/discounts-meta/index.js'),(3889,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/error-boundary/index.js'),(3890,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/index.js'),(3891,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/label/index.ts'),(3892,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/order-meta/index.js'),(3893,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/order-shipping-packages/index.js'),(3894,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/panel/index.tsx'),(3895,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/panel/style.scss'),(3896,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/fees/index.tsx'),(3897,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/fees/stories/index.tsx'),(3898,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/index.js'),(3899,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/item/index.tsx'),(3900,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/item/stories/index.tsx'),(3901,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/item/style.scss'),(3902,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/subtotal/index.tsx'),(3903,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/subtotal/stories/index.tsx'),(3904,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/taxes/index.tsx'),(3905,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals/taxes/stories/index.tsx'),(3906,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals-wrapper/index.tsx'),(3907,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/components/totals-wrapper/style.scss'),(3908,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/filter-registry/index.ts'),(3909,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/filter-registry/test/admin.js'),(3910,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/filter-registry/test/index.js'),(3911,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/index.js'),(3912,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/slot/index.js'),(3913,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/style.scss'),(3914,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/utils/extension-cart-update.ts'),(3915,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/utils/index.js'),(3916,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/utils/validation/index.ts'),(3917,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/prices/index.js'),(3918,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/prices/utils/index.js'),(3919,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/prices/utils/price.ts'),(3920,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/packages/prices/utils/test/price.js'),(3921,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/patches/wordpress-components+14.2.0.patch'),(3922,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/readme.txt'),(3923,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Assets/Api.php'),(3924,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Assets/AssetDataRegistry.php'),(3925,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Assets.php'),(3926,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/AssetsController.php'),(3927,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTemplatesController.php'),(3928,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/AbstractBlock.php'),(3929,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/AbstractDynamicBlock.php'),(3930,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/AbstractProductGrid.php'),(3931,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ActiveFilters.php'),(3932,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/AllProducts.php'),(3933,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/AllReviews.php'),(3934,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/AtomicBlock.php'),(3935,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/AttributeFilter.php'),(3936,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/Cart.php'),(3937,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/Checkout.php'),(3938,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ClassicTemplate.php'),(3939,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/FeaturedCategory.php'),(3940,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/FeaturedProduct.php'),(3941,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/HandpickedProducts.php'),(3942,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/MiniCart.php'),(3943,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/MiniCartContents.php'),(3944,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/PriceFilter.php'),(3945,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductAddToCart.php'),(3946,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductBestSellers.php'),(3947,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductButton.php'),(3948,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductCategories.php'),(3949,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductCategory.php'),(3950,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductCategoryList.php'),(3951,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductImage.php'),(3952,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductNew.php'),(3953,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductOnSale.php'),(3954,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductPrice.php'),(3955,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductRating.php'),(3956,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductSKU.php'),(3957,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductSaleBadge.php'),(3958,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductSearch.php'),(3959,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductStockIndicator.php'),(3960,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductSummary.php'),(3961,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductTag.php'),(3962,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductTagList.php'),(3963,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductTitle.php'),(3964,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductTopRated.php'),(3965,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductsByAttribute.php'),(3966,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ReviewsByCategory.php'),(3967,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ReviewsByProduct.php'),(3968,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/SingleProduct.php'),(3969,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/StockFilter.php'),(3970,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypesController.php'),(3971,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Domain/Bootstrap.php'),(3972,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Domain/Package.php'),(3973,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Domain/Services/CreateAccount.php'),(3974,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Domain/Services/DraftOrders.php'),(3975,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Domain/Services/Email/CustomerNewAccount.php'),(3976,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Domain/Services/FeatureGating.php'),(3977,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Domain/Services/GoogleAnalytics.php'),(3978,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/InboxNotifications.php'),(3979,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Installer.php'),(3980,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Integrations/IntegrationInterface.php'),(3981,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Integrations/IntegrationRegistry.php'),(3982,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Library.php'),(3983,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Package.php'),(3984,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Payments/Api.php'),(3985,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Payments/Integrations/AbstractPaymentMethodType.php'),(3986,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Payments/Integrations/BankTransfer.php'),(3987,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Payments/Integrations/CashOnDelivery.php'),(3988,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Payments/Integrations/Cheque.php'),(3989,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Payments/Integrations/PayPal.php'),(3990,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Payments/PaymentMethodRegistry.php'),(3991,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Payments/PaymentMethodTypeInterface.php'),(3992,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Registry/AbstractDependencyType.php'),(3993,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Registry/Container.php'),(3994,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Registry/FactoryType.php'),(3995,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Registry/SharedType.php'),(3996,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Authentication.php'),(3997,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Exceptions/InvalidCartException.php'),(3998,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Exceptions/InvalidStockLevelsInCartException.php'),(3999,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Exceptions/NotPurchasableException.php'),(4000,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Exceptions/OutOfStockException.php'),(4001,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Exceptions/PartialOutOfStockException.php'),(4002,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Exceptions/RouteException.php'),(4003,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Exceptions/StockAvailabilityException.php'),(4004,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Exceptions/TooManyInCartException.php'),(4005,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Formatters/CurrencyFormatter.php'),(4006,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Formatters/DefaultFormatter.php'),(4007,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Formatters/FormatterInterface.php'),(4008,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Formatters/HtmlFormatter.php'),(4009,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Formatters/MoneyFormatter.php'),(4010,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Formatters.php'),(4011,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Payments/PaymentContext.php'),(4012,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Payments/PaymentResult.php'),(4013,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/RouteInterface.php'),(4014,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/AbstractCartRoute.php'),(4015,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/AbstractRoute.php'),(4016,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/AbstractTermsRoute.php'),(4017,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/Batch.php'),(4018,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/Cart.php'),(4019,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartAddItem.php'),(4020,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartApplyCoupon.php'),(4021,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartCoupons.php'),(4022,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartCouponsByCode.php'),(4023,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartExtensions.php'),(4024,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartItems.php'),(4025,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartItemsByKey.php'),(4026,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartRemoveCoupon.php'),(4027,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartRemoveItem.php'),(4028,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartSelectShippingRate.php'),(4029,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartUpdateCustomer.php'),(4030,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartUpdateItem.php'),(4031,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/Checkout.php'),(4032,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductAttributeTerms.php'),(4033,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductAttributes.php'),(4034,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductAttributesById.php'),(4035,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductCategories.php'),(4036,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductCategoriesById.php'),(4037,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductCollectionData.php'),(4038,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductReviews.php'),(4039,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductTags.php'),(4040,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/Products.php'),(4041,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductsById.php'),(4042,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/RoutesController.php'),(4043,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/SchemaController.php'),(4044,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/ExtendSchema.php'),(4045,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/AbstractAddressSchema.php'),(4046,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/AbstractSchema.php'),(4047,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/BatchSchema.php'),(4048,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/BillingAddressSchema.php'),(4049,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartCouponSchema.php'),(4050,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartExtensionsSchema.php'),(4051,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartFeeSchema.php'),(4052,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartItemSchema.php'),(4053,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartSchema.php'),(4054,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartShippingRateSchema.php'),(4055,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CheckoutSchema.php'),(4056,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ErrorSchema.php'),(4057,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ImageAttachmentSchema.php'),(4058,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/OrderCouponSchema.php'),(4059,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ProductAttributeSchema.php'),(4060,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ProductCategorySchema.php'),(4061,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ProductCollectionDataSchema.php'),(4062,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ProductReviewSchema.php'),(4063,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ProductSchema.php'),(4064,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ShippingAddressSchema.php'),(4065,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/TermSchema.php'),(4066,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/StoreApi.php'),(4067,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Utilities/ArrayUtils.php'),(4068,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Utilities/CartController.php'),(4069,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Utilities/DraftOrderTrait.php'),(4070,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Utilities/NoticeHandler.php'),(4071,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Utilities/OrderController.php'),(4072,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Utilities/Pagination.php'),(4073,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Utilities/ProductQuery.php'),(4074,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Utilities/ProductQueryFilters.php'),(4075,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Utilities/QuantityLimits.php'),(4076,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/deprecated.php'),(4077,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/functions.php'),(4078,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Utils/BlockTemplateUtils.php'),(4079,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Utils/BlocksWpQuery.php'),(4080,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Utils/StyleAttributesUtils.php'),(4081,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/templates/emails/customer-new-account-blocks.php'),(4082,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/templates/emails/plain/customer-new-account-blocks.php'),(4083,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/templates/parts/mini-cart.html'),(4084,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/templates/templates/archive-product.html'),(4085,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/templates/templates/single-product.html'),(4086,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/templates/templates/taxonomy-product_cat.html'),(4087,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/templates/templates/taxonomy-product_tag.html'),(4088,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/autoload.php'),(4089,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/autoload_packages.php'),(4090,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/LICENSE.txt'),(4091,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/AutoloadFileWriter.php'),(4092,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/AutoloadGenerator.php'),(4093,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/AutoloadProcessor.php'),(4094,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/CustomAutoloaderPlugin.php'),(4095,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/ManifestGenerator.php'),(4096,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/autoload.php'),(4097,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/class-autoloader-handler.php'),(4098,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/class-autoloader-locator.php'),(4099,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/class-autoloader.php'),(4100,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/class-container.php'),(4101,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/class-hook-manager.php'),(4102,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/class-latest-autoloader-guard.php'),(4103,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/class-manifest-reader.php'),(4104,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/class-path-processor.php'),(4105,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/class-php-autoloader.php'),(4106,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/class-plugin-locator.php'),(4107,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/class-plugins-handler.php'),(4108,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/class-shutdown-handler.php'),(4109,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/class-version-loader.php'),(4110,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/class-version-selector.php'),(4111,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/ClassLoader.php'),(4112,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/InstalledVersions.php'),(4113,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/LICENSE'),(4114,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/autoload_classmap.php'),(4115,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/autoload_files.php'),(4116,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/autoload_namespaces.php'),(4117,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/autoload_psr4.php'),(4118,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/autoload_real.php'),(4119,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/autoload_static.php'),(4120,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installed.json'),(4121,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installed.php'),(4122,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/LICENSE'),(4123,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/phpstan.neon.dist'),(4124,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/AglInstaller.php'),(4125,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php'),(4126,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php'),(4127,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php'),(4128,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php'),(4129,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php'),(4130,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php'),(4131,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php'),(4132,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php'),(4133,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php'),(4134,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php'),(4135,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php'),(4136,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php'),(4137,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php'),(4138,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php'),(4139,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php'),(4140,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php'),(4141,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php'),(4142,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/DframeInstaller.php'),(4143,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php'),(4144,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php'),(4145,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php'),(4146,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php'),(4147,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php'),(4148,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php'),(4149,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php'),(4150,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php'),(4151,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php'),(4152,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/GravInstaller.php'),(4153,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php'),(4154,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php'),(4155,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/Installer.php'),(4156,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php'),(4157,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php'),(4158,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php'),(4159,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php'),(4160,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/KnownInstaller.php'),(4161,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php'),(4162,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php'),(4163,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php'),(4164,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php'),(4165,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php'),(4166,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php'),(4167,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php'),(4168,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php'),(4169,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php'),(4170,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php'),(4171,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php'),(4172,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MantisBTInstaller.php'),(4173,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php'),(4174,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php'),(4175,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php'),(4176,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MiaoxingInstaller.php'),(4177,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php'),(4178,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php'),(4179,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php'),(4180,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php'),(4181,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php'),(4182,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php'),(4183,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php'),(4184,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php'),(4185,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PantheonInstaller.php'),(4186,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php'),(4187,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php'),(4188,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php'),(4189,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php'),(4190,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php'),(4191,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/Plugin.php'),(4192,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php'),(4193,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php'),(4194,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ProcessWireInstaller.php'),(4195,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php'),(4196,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php'),(4197,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php'),(4198,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php'),(4199,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/Redaxo5Installer.php'),(4200,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php'),(4201,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php'),(4202,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php'),(4203,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php'),(4204,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php'),(4205,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php'),(4206,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/StarbugInstaller.php'),(4207,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php'),(4208,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/SyliusInstaller.php'),(4209,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php'),(4210,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php'),(4211,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php'),(4212,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/TaoInstaller.php'),(4213,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/TastyIgniterInstaller.php'),(4214,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php'),(4215,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php'),(4216,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php'),(4217,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php'),(4218,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php'),(4219,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php'),(4220,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/WinterInstaller.php'),(4221,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php'),(4222,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php'),(4223,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php'),(4224,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php'),(4225,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php'),(4226,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/bootstrap.php'),(4227,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/jetpack_autoload_classmap.php'),(4228,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/jetpack_autoload_filemap.php'),(4229,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/jetpack_autoload_psr4.php'),(4230,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader/class-autoloader-handler.php'),(4231,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader/class-autoloader-locator.php'),(4232,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader/class-autoloader.php'),(4233,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader/class-container.php'),(4234,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader/class-hook-manager.php'),(4235,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader/class-latest-autoloader-guard.php'),(4236,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader/class-manifest-reader.php'),(4237,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader/class-path-processor.php'),(4238,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader/class-php-autoloader.php'),(4239,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader/class-plugin-locator.php'),(4240,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader/class-plugins-handler.php'),(4241,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader/class-shutdown-handler.php'),(4242,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader/class-version-loader.php'),(4243,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/jetpack-autoloader/class-version-selector.php'),(4244,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/woocommerce-gutenberg-products-block.php'),(4245,'wp-content/plugins/woocommerce/readme.txt'),(4246,'wp-content/plugins/woocommerce/sample-data/sample_products.csv'),(4247,'wp-content/plugins/woocommerce/sample-data/sample_products.xml'),(4248,'wp-content/plugins/woocommerce/sample-data/sample_tax_rates.csv'),(4249,'wp-content/plugins/woocommerce/src/Admin/API/Coupons.php'),(4250,'wp-content/plugins/woocommerce/src/Admin/API/CustomAttributeTraits.php'),(4251,'wp-content/plugins/woocommerce/src/Admin/API/Customers.php'),(4252,'wp-content/plugins/woocommerce/src/Admin/API/Data.php'),(4253,'wp-content/plugins/woocommerce/src/Admin/API/DataCountries.php'),(4254,'wp-content/plugins/woocommerce/src/Admin/API/DataDownloadIPs.php'),(4255,'wp-content/plugins/woocommerce/src/Admin/API/Experiments.php'),(4256,'wp-content/plugins/woocommerce/src/Admin/API/Features.php'),(4257,'wp-content/plugins/woocommerce/src/Admin/API/Init.php'),(4258,'wp-content/plugins/woocommerce/src/Admin/API/Leaderboards.php'),(4259,'wp-content/plugins/woocommerce/src/Admin/API/Marketing.php'),(4260,'wp-content/plugins/woocommerce/src/Admin/API/MarketingOverview.php'),(4261,'wp-content/plugins/woocommerce/src/Admin/API/NavigationFavorites.php'),(4262,'wp-content/plugins/woocommerce/src/Admin/API/NoteActions.php'),(4263,'wp-content/plugins/woocommerce/src/Admin/API/Notes.php'),(4264,'wp-content/plugins/woocommerce/src/Admin/API/OnboardingFreeExtensions.php'),(4265,'wp-content/plugins/woocommerce/src/Admin/API/OnboardingProductTypes.php'),(4266,'wp-content/plugins/woocommerce/src/Admin/API/OnboardingProfile.php'),(4267,'wp-content/plugins/woocommerce/src/Admin/API/OnboardingTasks.php'),(4268,'wp-content/plugins/woocommerce/src/Admin/API/OnboardingThemes.php'),(4269,'wp-content/plugins/woocommerce/src/Admin/API/Options.php'),(4270,'wp-content/plugins/woocommerce/src/Admin/API/Orders.php'),(4271,'wp-content/plugins/woocommerce/src/Admin/API/PaymentGatewaySuggestions.php'),(4272,'wp-content/plugins/woocommerce/src/Admin/API/Plugins.php'),(4273,'wp-content/plugins/woocommerce/src/Admin/API/ProductAttributeTerms.php'),(4274,'wp-content/plugins/woocommerce/src/Admin/API/ProductAttributes.php'),(4275,'wp-content/plugins/woocommerce/src/Admin/API/ProductCategories.php'),(4276,'wp-content/plugins/woocommerce/src/Admin/API/ProductReviews.php'),(4277,'wp-content/plugins/woocommerce/src/Admin/API/ProductVariations.php'),(4278,'wp-content/plugins/woocommerce/src/Admin/API/Products.php'),(4279,'wp-content/plugins/woocommerce/src/Admin/API/ProductsLowInStock.php'),(4280,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Cache.php'),(4281,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Categories/Controller.php'),(4282,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Categories/DataStore.php'),(4283,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Categories/Query.php'),(4284,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Controller.php'),(4285,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Coupons/Controller.php'),(4286,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Coupons/DataStore.php'),(4287,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Coupons/Query.php'),(4288,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Coupons/Stats/Controller.php'),(4289,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Coupons/Stats/DataStore.php'),(4290,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Coupons/Stats/Query.php'),(4291,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Coupons/Stats/Segmenter.php'),(4292,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Customers/Controller.php'),(4293,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Customers/DataStore.php'),(4294,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Customers/Query.php'),(4295,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Customers/Stats/Controller.php'),(4296,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Customers/Stats/DataStore.php'),(4297,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Customers/Stats/Query.php'),(4298,'wp-content/plugins/woocommerce/src/Admin/API/Reports/DataStore.php'),(4299,'wp-content/plugins/woocommerce/src/Admin/API/Reports/DataStoreInterface.php'),(4300,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Downloads/Controller.php'),(4301,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Downloads/DataStore.php'),(4302,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Downloads/Files/Controller.php'),(4303,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Downloads/Query.php'),(4304,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Downloads/Stats/Controller.php'),(4305,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Downloads/Stats/DataStore.php'),(4306,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Downloads/Stats/Query.php'),(4307,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Export/Controller.php'),(4308,'wp-content/plugins/woocommerce/src/Admin/API/Reports/ExportableInterface.php'),(4309,'wp-content/plugins/woocommerce/src/Admin/API/Reports/ExportableTraits.php'),(4310,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Import/Controller.php'),(4311,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Orders/Controller.php'),(4312,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Orders/DataStore.php'),(4313,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Orders/Query.php'),(4314,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Orders/Stats/Controller.php'),(4315,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Orders/Stats/DataStore.php'),(4316,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Orders/Stats/Query.php'),(4317,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Orders/Stats/Segmenter.php'),(4318,'wp-content/plugins/woocommerce/src/Admin/API/Reports/ParameterException.php'),(4319,'wp-content/plugins/woocommerce/src/Admin/API/Reports/PerformanceIndicators/Controller.php'),(4320,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Products/Controller.php'),(4321,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Products/DataStore.php'),(4322,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Products/Query.php'),(4323,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Products/Stats/Controller.php'),(4324,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Products/Stats/DataStore.php'),(4325,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Products/Stats/Query.php'),(4326,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Products/Stats/Segmenter.php'),(4327,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Query.php'),(4328,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Revenue/Query.php'),(4329,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Revenue/Stats/Controller.php'),(4330,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Segmenter.php'),(4331,'wp-content/plugins/woocommerce/src/Admin/API/Reports/SqlQuery.php'),(4332,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Stock/Controller.php'),(4333,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Stock/Stats/Controller.php'),(4334,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Stock/Stats/DataStore.php'),(4335,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Stock/Stats/Query.php'),(4336,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Taxes/Controller.php'),(4337,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Taxes/DataStore.php'),(4338,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Taxes/Query.php'),(4339,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Taxes/Stats/Controller.php'),(4340,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Taxes/Stats/DataStore.php'),(4341,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Taxes/Stats/Query.php'),(4342,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Taxes/Stats/Segmenter.php'),(4343,'wp-content/plugins/woocommerce/src/Admin/API/Reports/TimeInterval.php'),(4344,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Variations/Controller.php'),(4345,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Variations/DataStore.php'),(4346,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Variations/Query.php'),(4347,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Variations/Stats/Controller.php'),(4348,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Variations/Stats/DataStore.php'),(4349,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Variations/Stats/Query.php'),(4350,'wp-content/plugins/woocommerce/src/Admin/API/Reports/Variations/Stats/Segmenter.php'),(4351,'wp-content/plugins/woocommerce/src/Admin/API/SettingOptions.php'),(4352,'wp-content/plugins/woocommerce/src/Admin/API/Taxes.php'),(4353,'wp-content/plugins/woocommerce/src/Admin/API/Templates/digital_product.csv'),(4354,'wp-content/plugins/woocommerce/src/Admin/API/Templates/physical_product.csv'),(4355,'wp-content/plugins/woocommerce/src/Admin/API/Templates/variable_product.csv'),(4356,'wp-content/plugins/woocommerce/src/Admin/API/Themes.php'),(4357,'wp-content/plugins/woocommerce/src/Admin/Composer/Package.php'),(4358,'wp-content/plugins/woocommerce/src/Admin/DataSourcePoller.php'),(4359,'wp-content/plugins/woocommerce/src/Admin/DateTimeProvider/CurrentDateTimeProvider.php'),(4360,'wp-content/plugins/woocommerce/src/Admin/DateTimeProvider/DateTimeProviderInterface.php'),(4361,'wp-content/plugins/woocommerce/src/Admin/DeprecatedClassFacade.php'),(4362,'wp-content/plugins/woocommerce/src/Admin/FeaturePlugin.php'),(4363,'wp-content/plugins/woocommerce/src/Admin/Features/Features.php'),(4364,'wp-content/plugins/woocommerce/src/Admin/Features/Navigation/CoreMenu.php'),(4365,'wp-content/plugins/woocommerce/src/Admin/Features/Navigation/Favorites.php'),(4366,'wp-content/plugins/woocommerce/src/Admin/Features/Navigation/Init.php'),(4367,'wp-content/plugins/woocommerce/src/Admin/Features/Navigation/Menu.php'),(4368,'wp-content/plugins/woocommerce/src/Admin/Features/Navigation/Screen.php'),(4369,'wp-content/plugins/woocommerce/src/Admin/Features/Onboarding.php'),(4370,'wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/DeprecatedExtendedTask.php'),(4371,'wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/DeprecatedOptions.php'),(4372,'wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Init.php'),(4373,'wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Task.php'),(4374,'wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/TaskList.php'),(4375,'wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/TaskListSection.php'),(4376,'wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/TaskLists.php'),(4377,'wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/TaskTraits.php'),(4378,'wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks/AdditionalPayments.php'),(4379,'wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks/Appearance.php'),(4380,'wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks/Marketing.php'),(4381,'wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks/Payments.php'),(4382,'wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks/Products.php'),(4383,'wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks/Purchase.php'),(4384,'wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks/Shipping.php'),(4385,'wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks/StoreCreation.php'),(4386,'wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks/StoreDetails.php'),(4387,'wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks/Tax.php'),(4388,'wp-content/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks/WooCommercePayments.php'),(4389,'wp-content/plugins/woocommerce/src/Admin/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php'),(4390,'wp-content/plugins/woocommerce/src/Admin/Features/PaymentGatewaySuggestions/EvaluateSuggestion.php'),(4391,'wp-content/plugins/woocommerce/src/Admin/Features/PaymentGatewaySuggestions/Init.php'),(4392,'wp-content/plugins/woocommerce/src/Admin/Features/PaymentGatewaySuggestions/PaymentGatewaySuggestionsDataSourcePoller.php'),(4393,'wp-content/plugins/woocommerce/src/Admin/Features/PaymentGatewaySuggestions/PaymentGatewaysController.php'),(4394,'wp-content/plugins/woocommerce/src/Admin/Features/TransientNotices.php'),(4395,'wp-content/plugins/woocommerce/src/Admin/Loader.php'),(4396,'wp-content/plugins/woocommerce/src/Admin/Marketing/InstalledExtensions.php'),(4397,'wp-content/plugins/woocommerce/src/Admin/Notes/DataStore.php'),(4398,'wp-content/plugins/woocommerce/src/Admin/Notes/DeprecatedNotes.php'),(4399,'wp-content/plugins/woocommerce/src/Admin/Notes/Note.php'),(4400,'wp-content/plugins/woocommerce/src/Admin/Notes/NoteTraits.php'),(4401,'wp-content/plugins/woocommerce/src/Admin/Notes/Notes.php'),(4402,'wp-content/plugins/woocommerce/src/Admin/Notes/NotesUnavailableException.php'),(4403,'wp-content/plugins/woocommerce/src/Admin/Overrides/Order.php'),(4404,'wp-content/plugins/woocommerce/src/Admin/Overrides/OrderRefund.php'),(4405,'wp-content/plugins/woocommerce/src/Admin/Overrides/OrderTraits.php'),(4406,'wp-content/plugins/woocommerce/src/Admin/Overrides/ThemeUpgrader.php'),(4407,'wp-content/plugins/woocommerce/src/Admin/Overrides/ThemeUpgraderSkin.php'),(4408,'wp-content/plugins/woocommerce/src/Admin/PageController.php'),(4409,'wp-content/plugins/woocommerce/src/Admin/PluginsHelper.php'),(4410,'wp-content/plugins/woocommerce/src/Admin/PluginsInstaller.php'),(4411,'wp-content/plugins/woocommerce/src/Admin/PluginsProvider/PluginsProvider.php'),(4412,'wp-content/plugins/woocommerce/src/Admin/PluginsProvider/PluginsProviderInterface.php'),(4413,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/BaseLocationCountryRuleProcessor.php'),(4414,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/BaseLocationStateRuleProcessor.php'),(4415,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/ComparisonOperation.php'),(4416,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/DataSourcePoller.php'),(4417,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/EvaluateAndGetStatus.php'),(4418,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/EvaluationLogger.php'),(4419,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/FailRuleProcessor.php'),(4420,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/GetRuleProcessor.php'),(4421,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/IsEcommerceRuleProcessor.php'),(4422,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/NotRuleProcessor.php'),(4423,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/NoteStatusRuleProcessor.php'),(4424,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/OnboardingProfileRuleProcessor.php'),(4425,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/OptionRuleProcessor.php'),(4426,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/OrRuleProcessor.php'),(4427,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/OrderCountRuleProcessor.php'),(4428,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/OrdersProvider.php'),(4429,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/PassRuleProcessor.php'),(4430,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/PluginVersionRuleProcessor.php'),(4431,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/PluginsActivatedRuleProcessor.php'),(4432,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/ProductCountRuleProcessor.php'),(4433,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/PublishAfterTimeRuleProcessor.php'),(4434,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/PublishBeforeTimeRuleProcessor.php'),(4435,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/RemoteInboxNotificationsEngine.php'),(4436,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/RuleEvaluator.php'),(4437,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/RuleProcessorInterface.php'),(4438,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/SpecRunner.php'),(4439,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/StoredStateRuleProcessor.php'),(4440,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/StoredStateSetupForProducts.php'),(4441,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/TransformerInterface.php'),(4442,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/TransformerService.php'),(4443,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/Transformers/ArrayColumn.php'),(4444,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/Transformers/ArrayFlatten.php'),(4445,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/Transformers/ArrayKeys.php'),(4446,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/Transformers/ArraySearch.php'),(4447,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/Transformers/ArrayValues.php'),(4448,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/Transformers/Count.php'),(4449,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/Transformers/DotNotation.php'),(4450,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/WCAdminActiveForProvider.php'),(4451,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/WCAdminActiveForRuleProcessor.php'),(4452,'wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/WooCommerceAdminUpdatedRuleProcessor.php'),(4453,'wp-content/plugins/woocommerce/src/Admin/ReportCSVEmail.php'),(4454,'wp-content/plugins/woocommerce/src/Admin/ReportCSVExporter.php'),(4455,'wp-content/plugins/woocommerce/src/Admin/ReportExporter.php'),(4456,'wp-content/plugins/woocommerce/src/Admin/ReportsSync.php'),(4457,'wp-content/plugins/woocommerce/src/Admin/Schedulers/SchedulerTraits.php'),(4458,'wp-content/plugins/woocommerce/src/Admin/WCAdminHelper.php'),(4459,'wp-content/plugins/woocommerce/src/Autoloader.php'),(4460,'wp-content/plugins/woocommerce/src/Checkout/Helpers/ReserveStock.php'),(4461,'wp-content/plugins/woocommerce/src/Checkout/Helpers/ReserveStockException.php'),(4462,'wp-content/plugins/woocommerce/src/Container.php'),(4463,'wp-content/plugins/woocommerce/src/Database/Migrations/CustomOrderTable/MetaToCustomTableMigrator.php'),(4464,'wp-content/plugins/woocommerce/src/Database/Migrations/CustomOrderTable/MetaToMetaTableMigrator.php'),(4465,'wp-content/plugins/woocommerce/src/Database/Migrations/CustomOrderTable/WPPostToCOTMigrator.php'),(4466,'wp-content/plugins/woocommerce/src/Database/Migrations/CustomOrderTable/WPPostToOrderAddressTableMigrator.php'),(4467,'wp-content/plugins/woocommerce/src/Database/Migrations/CustomOrderTable/WPPostToOrderOpTableMigrator.php'),(4468,'wp-content/plugins/woocommerce/src/Database/Migrations/CustomOrderTable/WPPostToOrderTableMigrator.php'),(4469,'wp-content/plugins/woocommerce/src/Database/Migrations/MigrationErrorLogger.php'),(4470,'wp-content/plugins/woocommerce/src/Database/Migrations/MigrationHelper.php'),(4471,'wp-content/plugins/woocommerce/src/Internal/Admin/ActivityPanels.php'),(4472,'wp-content/plugins/woocommerce/src/Internal/Admin/Analytics.php'),(4473,'wp-content/plugins/woocommerce/src/Internal/Admin/CategoryLookup.php'),(4474,'wp-content/plugins/woocommerce/src/Internal/Admin/Coupons.php'),(4475,'wp-content/plugins/woocommerce/src/Internal/Admin/CouponsMovedTrait.php'),(4476,'wp-content/plugins/woocommerce/src/Internal/Admin/CustomerEffortScoreTracks.php'),(4477,'wp-content/plugins/woocommerce/src/Internal/Admin/Events.php'),(4478,'wp-content/plugins/woocommerce/src/Internal/Admin/FeaturePlugin.php'),(4479,'wp-content/plugins/woocommerce/src/Internal/Admin/Homescreen.php'),(4480,'wp-content/plugins/woocommerce/src/Internal/Admin/Loader.php'),(4481,'wp-content/plugins/woocommerce/src/Internal/Admin/Marketing.php'),(4482,'wp-content/plugins/woocommerce/src/Internal/Admin/MobileAppBanner.php'),(4483,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/AddFirstProduct.php'),(4484,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/AddingAndManangingProducts.php'),(4485,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/ChoosingTheme.php'),(4486,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/CompleteStoreDetails.php'),(4487,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/CouponPageMoved.php'),(4488,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/CustomizeStoreWithBlocks.php'),(4489,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/CustomizingProductCatalog.php'),(4490,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/EUVATNumber.php'),(4491,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/EditProductsOnTheMove.php'),(4492,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/EmailNotification.php'),(4493,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/FirstDownlaodableProduct.php'),(4494,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/FirstProduct.php'),(4495,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/GivingFeedbackNotes.php'),(4496,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/InsightFirstProductAndPayment.php'),(4497,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/InsightFirstSale.php'),(4498,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/InstallJPAndWCSPlugins.php'),(4499,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/LaunchChecklist.php'),(4500,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/MagentoMigration.php'),(4501,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/ManageOrdersOnTheGo.php'),(4502,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/ManageStoreActivityFromHomeScreen.php'),(4503,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/MarketingJetpack.php'),(4504,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/MerchantEmailNotifications.php'),(4505,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/MigrateFromShopify.php'),(4506,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/MobileApp.php'),(4507,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/NavigationNudge.php'),(4508,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/NewSalesRecord.php'),(4509,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/OnboardingPayments.php'),(4510,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/OnlineClothingStore.php'),(4511,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/OrderMilestones.php'),(4512,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/PaymentsRemindMeLater.php'),(4513,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/PerformanceOnMobile.php'),(4514,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/PersonalizeStore.php'),(4515,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/RealTimeOrderAlerts.php'),(4516,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/SellingOnlineCourses.php'),(4517,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/SetUpAdditionalPaymentTypes.php'),(4518,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/TestCheckout.php'),(4519,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/TrackingOptIn.php'),(4520,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/UnsecuredReportFiles.php'),(4521,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/UpdateStoreDetails.php'),(4522,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/WelcomeToWooCommerceForStoreUsers.php'),(4523,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/WooCommercePayments.php'),(4524,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/WooCommerceSubscriptions.php'),(4525,'wp-content/plugins/woocommerce/src/Internal/Admin/Notes/WooSubscriptionsNotes.php'),(4526,'wp-content/plugins/woocommerce/src/Internal/Admin/Onboarding/Onboarding.php'),(4527,'wp-content/plugins/woocommerce/src/Internal/Admin/Onboarding/OnboardingHelper.php'),(4528,'wp-content/plugins/woocommerce/src/Internal/Admin/Onboarding/OnboardingIndustries.php'),(4529,'wp-content/plugins/woocommerce/src/Internal/Admin/Onboarding/OnboardingJetpack.php'),(4530,'wp-content/plugins/woocommerce/src/Internal/Admin/Onboarding/OnboardingMailchimp.php'),(4531,'wp-content/plugins/woocommerce/src/Internal/Admin/Onboarding/OnboardingProducts.php'),(4532,'wp-content/plugins/woocommerce/src/Internal/Admin/Onboarding/OnboardingProfile.php'),(4533,'wp-content/plugins/woocommerce/src/Internal/Admin/Onboarding/OnboardingSetupWizard.php'),(4534,'wp-content/plugins/woocommerce/src/Internal/Admin/Onboarding/OnboardingSync.php'),(4535,'wp-content/plugins/woocommerce/src/Internal/Admin/Onboarding/OnboardingThemes.php'),(4536,'wp-content/plugins/woocommerce/src/Internal/Admin/RemoteFreeExtensions/DefaultFreeExtensions.php'),(4537,'wp-content/plugins/woocommerce/src/Internal/Admin/RemoteFreeExtensions/EvaluateExtension.php'),(4538,'wp-content/plugins/woocommerce/src/Internal/Admin/RemoteFreeExtensions/Init.php'),(4539,'wp-content/plugins/woocommerce/src/Internal/Admin/RemoteFreeExtensions/RemoteFreeExtensionsDataSourcePoller.php'),(4540,'wp-content/plugins/woocommerce/src/Internal/Admin/RemoteInboxNotifications.php'),(4541,'wp-content/plugins/woocommerce/src/Internal/Admin/Schedulers/CustomersScheduler.php'),(4542,'wp-content/plugins/woocommerce/src/Internal/Admin/Schedulers/ImportInterface.php'),(4543,'wp-content/plugins/woocommerce/src/Internal/Admin/Schedulers/ImportScheduler.php'),(4544,'wp-content/plugins/woocommerce/src/Internal/Admin/Schedulers/MailchimpScheduler.php'),(4545,'wp-content/plugins/woocommerce/src/Internal/Admin/Schedulers/OrdersScheduler.php'),(4546,'wp-content/plugins/woocommerce/src/Internal/Admin/Settings.php'),(4547,'wp-content/plugins/woocommerce/src/Internal/Admin/SettingsNavigationFeature.php'),(4548,'wp-content/plugins/woocommerce/src/Internal/Admin/ShippingLabelBanner.php'),(4549,'wp-content/plugins/woocommerce/src/Internal/Admin/ShippingLabelBannerDisplayRules.php'),(4550,'wp-content/plugins/woocommerce/src/Internal/Admin/Survey.php'),(4551,'wp-content/plugins/woocommerce/src/Internal/Admin/Translations.php'),(4552,'wp-content/plugins/woocommerce/src/Internal/Admin/WCAdminAssets.php'),(4553,'wp-content/plugins/woocommerce/src/Internal/Admin/WCAdminSharedSettings.php'),(4554,'wp-content/plugins/woocommerce/src/Internal/Admin/WCAdminUser.php'),(4555,'wp-content/plugins/woocommerce/src/Internal/Admin/WCPayPromotion/Init.php'),(4556,'wp-content/plugins/woocommerce/src/Internal/Admin/WCPayPromotion/WCPayPromotionDataSourcePoller.php'),(4557,'wp-content/plugins/woocommerce/src/Internal/Admin/WCPayPromotion/WCPaymentGatewayPreInstallWCPayPromotion.php'),(4558,'wp-content/plugins/woocommerce/src/Internal/Admin/WcPayWelcomePage.php'),(4559,'wp-content/plugins/woocommerce/src/Internal/AssignDefaultCategory.php'),(4560,'wp-content/plugins/woocommerce/src/Internal/DataStores/Orders/CustomOrdersTableController.php'),(4561,'wp-content/plugins/woocommerce/src/Internal/DataStores/Orders/DataSynchronizer.php'),(4562,'wp-content/plugins/woocommerce/src/Internal/DataStores/Orders/OrdersTableDataStore.php'),(4563,'wp-content/plugins/woocommerce/src/Internal/DependencyManagement/AbstractServiceProvider.php'),(4564,'wp-content/plugins/woocommerce/src/Internal/DependencyManagement/ContainerException.php'),(4565,'wp-content/plugins/woocommerce/src/Internal/DependencyManagement/Definition.php'),(4566,'wp-content/plugins/woocommerce/src/Internal/DependencyManagement/ExtendedContainer.php'),(4567,'wp-content/plugins/woocommerce/src/Internal/DependencyManagement/ServiceProviders/AssignDefaultCategoryServiceProvider.php'),(4568,'wp-content/plugins/woocommerce/src/Internal/DependencyManagement/ServiceProviders/COTMigrationServiceProvider.php'),(4569,'wp-content/plugins/woocommerce/src/Internal/DependencyManagement/ServiceProviders/DownloadPermissionsAdjusterServiceProvider.php'),(4570,'wp-content/plugins/woocommerce/src/Internal/DependencyManagement/ServiceProviders/OrdersDataStoreServiceProvider.php'),(4571,'wp-content/plugins/woocommerce/src/Internal/DependencyManagement/ServiceProviders/ProductAttributesLookupServiceProvider.php'),(4572,'wp-content/plugins/woocommerce/src/Internal/DependencyManagement/ServiceProviders/ProductDownloadsServiceProvider.php'),(4573,'wp-content/plugins/woocommerce/src/Internal/DependencyManagement/ServiceProviders/ProxiesServiceProvider.php'),(4574,'wp-content/plugins/woocommerce/src/Internal/DependencyManagement/ServiceProviders/RestockRefundedItemsAdjusterServiceProvider.php'),(4575,'wp-content/plugins/woocommerce/src/Internal/DependencyManagement/ServiceProviders/UtilsClassesServiceProvider.php'),(4576,'wp-content/plugins/woocommerce/src/Internal/DownloadPermissionsAdjuster.php'),(4577,'wp-content/plugins/woocommerce/src/Internal/ProductAttributesLookup/DataRegenerator.php'),(4578,'wp-content/plugins/woocommerce/src/Internal/ProductAttributesLookup/Filterer.php'),(4579,'wp-content/plugins/woocommerce/src/Internal/ProductAttributesLookup/LookupDataStore.php'),(4580,'wp-content/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories/Admin/SyncUI.php'),(4581,'wp-content/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories/Admin/Table.php'),(4582,'wp-content/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories/Admin/UI.php'),(4583,'wp-content/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories/ApprovedDirectoriesException.php'),(4584,'wp-content/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories/Register.php'),(4585,'wp-content/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories/StoredUrl.php'),(4586,'wp-content/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories/Synchronize.php'),(4587,'wp-content/plugins/woocommerce/src/Internal/RestApiUtil.php'),(4588,'wp-content/plugins/woocommerce/src/Internal/RestockRefundedItemsAdjuster.php'),(4589,'wp-content/plugins/woocommerce/src/Internal/Utilities/URL.php'),(4590,'wp-content/plugins/woocommerce/src/Internal/Utilities/URLException.php'),(4591,'wp-content/plugins/woocommerce/src/Internal/Utilities/Users.php'),(4592,'wp-content/plugins/woocommerce/src/Internal/WCCom/ConnectionHelper.php'),(4593,'wp-content/plugins/woocommerce/src/Packages.php'),(4594,'wp-content/plugins/woocommerce/src/Proxies/ActionsProxy.php'),(4595,'wp-content/plugins/woocommerce/src/Proxies/LegacyProxy.php'),(4596,'wp-content/plugins/woocommerce/src/Utilities/ArrayUtil.php'),(4597,'wp-content/plugins/woocommerce/src/Utilities/DatabaseUtil.php'),(4598,'wp-content/plugins/woocommerce/src/Utilities/NumberUtil.php'),(4599,'wp-content/plugins/woocommerce/src/Utilities/StringUtil.php'),(4600,'wp-content/plugins/woocommerce/templates/archive-product.php'),(4601,'wp-content/plugins/woocommerce/templates/auth/footer.php'),(4602,'wp-content/plugins/woocommerce/templates/auth/form-grant-access.php'),(4603,'wp-content/plugins/woocommerce/templates/auth/form-login.php'),(4604,'wp-content/plugins/woocommerce/templates/auth/header.php'),(4605,'wp-content/plugins/woocommerce/templates/cart/cart-empty.php'),(4606,'wp-content/plugins/woocommerce/templates/cart/cart-item-data.php'),(4607,'wp-content/plugins/woocommerce/templates/cart/cart-shipping.php'),(4608,'wp-content/plugins/woocommerce/templates/cart/cart-totals.php'),(4609,'wp-content/plugins/woocommerce/templates/cart/cart.php'),(4610,'wp-content/plugins/woocommerce/templates/cart/cross-sells.php'),(4611,'wp-content/plugins/woocommerce/templates/cart/mini-cart.php'),(4612,'wp-content/plugins/woocommerce/templates/cart/proceed-to-checkout-button.php'),(4613,'wp-content/plugins/woocommerce/templates/cart/shipping-calculator.php'),(4614,'wp-content/plugins/woocommerce/templates/checkout/cart-errors.php'),(4615,'wp-content/plugins/woocommerce/templates/checkout/form-billing.php'),(4616,'wp-content/plugins/woocommerce/templates/checkout/form-checkout.php'),(4617,'wp-content/plugins/woocommerce/templates/checkout/form-coupon.php'),(4618,'wp-content/plugins/woocommerce/templates/checkout/form-login.php'),(4619,'wp-content/plugins/woocommerce/templates/checkout/form-pay.php'),(4620,'wp-content/plugins/woocommerce/templates/checkout/form-shipping.php'),(4621,'wp-content/plugins/woocommerce/templates/checkout/order-receipt.php'),(4622,'wp-content/plugins/woocommerce/templates/checkout/payment-method.php'),(4623,'wp-content/plugins/woocommerce/templates/checkout/payment.php'),(4624,'wp-content/plugins/woocommerce/templates/checkout/review-order.php'),(4625,'wp-content/plugins/woocommerce/templates/checkout/terms.php'),(4626,'wp-content/plugins/woocommerce/templates/checkout/thankyou.php'),(4627,'wp-content/plugins/woocommerce/templates/content-product-cat.php'),(4628,'wp-content/plugins/woocommerce/templates/content-product.php'),(4629,'wp-content/plugins/woocommerce/templates/content-single-product.php'),(4630,'wp-content/plugins/woocommerce/templates/content-widget-price-filter.php'),(4631,'wp-content/plugins/woocommerce/templates/content-widget-product.php'),(4632,'wp-content/plugins/woocommerce/templates/content-widget-reviews.php'),(4633,'wp-content/plugins/woocommerce/templates/emails/admin-cancelled-order.php'),(4634,'wp-content/plugins/woocommerce/templates/emails/admin-failed-order.php'),(4635,'wp-content/plugins/woocommerce/templates/emails/admin-new-order.php'),(4636,'wp-content/plugins/woocommerce/templates/emails/customer-completed-order.php'),(4637,'wp-content/plugins/woocommerce/templates/emails/customer-invoice.php'),(4638,'wp-content/plugins/woocommerce/templates/emails/customer-new-account.php'),(4639,'wp-content/plugins/woocommerce/templates/emails/customer-note.php'),(4640,'wp-content/plugins/woocommerce/templates/emails/customer-on-hold-order.php'),(4641,'wp-content/plugins/woocommerce/templates/emails/customer-processing-order.php'),(4642,'wp-content/plugins/woocommerce/templates/emails/customer-refunded-order.php'),(4643,'wp-content/plugins/woocommerce/templates/emails/customer-reset-password.php'),(4644,'wp-content/plugins/woocommerce/templates/emails/email-addresses.php'),(4645,'wp-content/plugins/woocommerce/templates/emails/email-customer-details.php'),(4646,'wp-content/plugins/woocommerce/templates/emails/email-downloads.php'),(4647,'wp-content/plugins/woocommerce/templates/emails/email-footer.php'),(4648,'wp-content/plugins/woocommerce/templates/emails/email-header.php'),(4649,'wp-content/plugins/woocommerce/templates/emails/email-order-details.php'),(4650,'wp-content/plugins/woocommerce/templates/emails/email-order-items.php'),(4651,'wp-content/plugins/woocommerce/templates/emails/email-styles.php'),(4652,'wp-content/plugins/woocommerce/templates/emails/plain/admin-cancelled-order.php'),(4653,'wp-content/plugins/woocommerce/templates/emails/plain/admin-failed-order.php'),(4654,'wp-content/plugins/woocommerce/templates/emails/plain/admin-new-order.php'),(4655,'wp-content/plugins/woocommerce/templates/emails/plain/customer-completed-order.php'),(4656,'wp-content/plugins/woocommerce/templates/emails/plain/customer-invoice.php'),(4657,'wp-content/plugins/woocommerce/templates/emails/plain/customer-new-account.php'),(4658,'wp-content/plugins/woocommerce/templates/emails/plain/customer-note.php'),(4659,'wp-content/plugins/woocommerce/templates/emails/plain/customer-on-hold-order.php'),(4660,'wp-content/plugins/woocommerce/templates/emails/plain/customer-processing-order.php'),(4661,'wp-content/plugins/woocommerce/templates/emails/plain/customer-refunded-order.php'),(4662,'wp-content/plugins/woocommerce/templates/emails/plain/customer-reset-password.php'),(4663,'wp-content/plugins/woocommerce/templates/emails/plain/email-addresses.php'),(4664,'wp-content/plugins/woocommerce/templates/emails/plain/email-customer-details.php'),(4665,'wp-content/plugins/woocommerce/templates/emails/plain/email-downloads.php'),(4666,'wp-content/plugins/woocommerce/templates/emails/plain/email-order-details.php'),(4667,'wp-content/plugins/woocommerce/templates/emails/plain/email-order-items.php'),(4668,'wp-content/plugins/woocommerce/templates/global/breadcrumb.php'),(4669,'wp-content/plugins/woocommerce/templates/global/form-login.php'),(4670,'wp-content/plugins/woocommerce/templates/global/quantity-input.php'),(4671,'wp-content/plugins/woocommerce/templates/global/sidebar.php'),(4672,'wp-content/plugins/woocommerce/templates/global/wrapper-end.php'),(4673,'wp-content/plugins/woocommerce/templates/global/wrapper-start.php'),(4674,'wp-content/plugins/woocommerce/templates/loop/add-to-cart.php'),(4675,'wp-content/plugins/woocommerce/templates/loop/loop-end.php'),(4676,'wp-content/plugins/woocommerce/templates/loop/loop-start.php'),(4677,'wp-content/plugins/woocommerce/templates/loop/no-products-found.php'),(4678,'wp-content/plugins/woocommerce/templates/loop/orderby.php'),(4679,'wp-content/plugins/woocommerce/templates/loop/pagination.php'),(4680,'wp-content/plugins/woocommerce/templates/loop/price.php'),(4681,'wp-content/plugins/woocommerce/templates/loop/rating.php'),(4682,'wp-content/plugins/woocommerce/templates/loop/result-count.php'),(4683,'wp-content/plugins/woocommerce/templates/loop/sale-flash.php'),(4684,'wp-content/plugins/woocommerce/templates/myaccount/dashboard.php'),(4685,'wp-content/plugins/woocommerce/templates/myaccount/downloads.php'),(4686,'wp-content/plugins/woocommerce/templates/myaccount/form-add-payment-method.php'),(4687,'wp-content/plugins/woocommerce/templates/myaccount/form-edit-account.php'),(4688,'wp-content/plugins/woocommerce/templates/myaccount/form-edit-address.php'),(4689,'wp-content/plugins/woocommerce/templates/myaccount/form-login.php'),(4690,'wp-content/plugins/woocommerce/templates/myaccount/form-lost-password.php'),(4691,'wp-content/plugins/woocommerce/templates/myaccount/form-reset-password.php'),(4692,'wp-content/plugins/woocommerce/templates/myaccount/lost-password-confirmation.php'),(4693,'wp-content/plugins/woocommerce/templates/myaccount/my-account.php'),(4694,'wp-content/plugins/woocommerce/templates/myaccount/my-address.php'),(4695,'wp-content/plugins/woocommerce/templates/myaccount/my-downloads.php'),(4696,'wp-content/plugins/woocommerce/templates/myaccount/my-orders.php'),(4697,'wp-content/plugins/woocommerce/templates/myaccount/navigation.php'),(4698,'wp-content/plugins/woocommerce/templates/myaccount/orders.php'),(4699,'wp-content/plugins/woocommerce/templates/myaccount/payment-methods.php'),(4700,'wp-content/plugins/woocommerce/templates/myaccount/view-order.php'),(4701,'wp-content/plugins/woocommerce/templates/notices/error.php'),(4702,'wp-content/plugins/woocommerce/templates/notices/notice.php'),(4703,'wp-content/plugins/woocommerce/templates/notices/success.php'),(4704,'wp-content/plugins/woocommerce/templates/order/form-tracking.php'),(4705,'wp-content/plugins/woocommerce/templates/order/order-again.php'),(4706,'wp-content/plugins/woocommerce/templates/order/order-details-customer.php'),(4707,'wp-content/plugins/woocommerce/templates/order/order-details-item.php'),(4708,'wp-content/plugins/woocommerce/templates/order/order-details.php'),(4709,'wp-content/plugins/woocommerce/templates/order/order-downloads.php'),(4710,'wp-content/plugins/woocommerce/templates/order/tracking.php'),(4711,'wp-content/plugins/woocommerce/templates/product-searchform.php'),(4712,'wp-content/plugins/woocommerce/templates/single-product/add-to-cart/external.php'),(4713,'wp-content/plugins/woocommerce/templates/single-product/add-to-cart/grouped.php'),(4714,'wp-content/plugins/woocommerce/templates/single-product/add-to-cart/simple.php'),(4715,'wp-content/plugins/woocommerce/templates/single-product/add-to-cart/variable.php'),(4716,'wp-content/plugins/woocommerce/templates/single-product/add-to-cart/variation-add-to-cart-button.php'),(4717,'wp-content/plugins/woocommerce/templates/single-product/add-to-cart/variation.php'),(4718,'wp-content/plugins/woocommerce/templates/single-product/meta.php'),(4719,'wp-content/plugins/woocommerce/templates/single-product/photoswipe.php'),(4720,'wp-content/plugins/woocommerce/templates/single-product/price.php'),(4721,'wp-content/plugins/woocommerce/templates/single-product/product-attributes.php'),(4722,'wp-content/plugins/woocommerce/templates/single-product/product-image.php'),(4723,'wp-content/plugins/woocommerce/templates/single-product/product-thumbnails.php'),(4724,'wp-content/plugins/woocommerce/templates/single-product/rating.php'),(4725,'wp-content/plugins/woocommerce/templates/single-product/related.php'),(4726,'wp-content/plugins/woocommerce/templates/single-product/review-meta.php'),(4727,'wp-content/plugins/woocommerce/templates/single-product/review-rating.php'),(4728,'wp-content/plugins/woocommerce/templates/single-product/review.php'),(4729,'wp-content/plugins/woocommerce/templates/single-product/sale-flash.php'),(4730,'wp-content/plugins/woocommerce/templates/single-product/share.php'),(4731,'wp-content/plugins/woocommerce/templates/single-product/short-description.php'),(4732,'wp-content/plugins/woocommerce/templates/single-product/stock.php'),(4733,'wp-content/plugins/woocommerce/templates/single-product/tabs/additional-information.php'),(4734,'wp-content/plugins/woocommerce/templates/single-product/tabs/description.php'),(4735,'wp-content/plugins/woocommerce/templates/single-product/tabs/tabs.php'),(4736,'wp-content/plugins/woocommerce/templates/single-product/title.php'),(4737,'wp-content/plugins/woocommerce/templates/single-product/up-sells.php'),(4738,'wp-content/plugins/woocommerce/templates/single-product-reviews.php'),(4739,'wp-content/plugins/woocommerce/templates/single-product.php'),(4740,'wp-content/plugins/woocommerce/templates/taxonomy-product-cat.php'),(4741,'wp-content/plugins/woocommerce/templates/taxonomy-product-tag.php'),(4742,'wp-content/plugins/woocommerce/uninstall.php'),(4743,'wp-content/plugins/woocommerce/vendor/autoload.php'),(4744,'wp-content/plugins/woocommerce/vendor/autoload_packages.php'),(4745,'wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/AutoloadFileWriter.php'),(4746,'wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/AutoloadGenerator.php'),(4747,'wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/AutoloadProcessor.php'),(4748,'wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/CustomAutoloaderPlugin.php'),(4749,'wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/ManifestGenerator.php'),(4750,'wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/autoload.php'),(4751,'wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/class-autoloader-handler.php'),(4752,'wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/class-autoloader-locator.php'),(4753,'wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/class-autoloader.php'),(4754,'wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/class-container.php'),(4755,'wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/class-hook-manager.php'),(4756,'wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/class-latest-autoloader-guard.php'),(4757,'wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/class-manifest-reader.php'),(4758,'wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/class-path-processor.php'),(4759,'wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/class-php-autoloader.php'),(4760,'wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/class-plugin-locator.php'),(4761,'wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/class-plugins-handler.php'),(4762,'wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/class-shutdown-handler.php'),(4763,'wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/class-version-loader.php'),(4764,'wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/class-version-selector.php'),(4765,'wp-content/plugins/woocommerce/vendor/automattic/jetpack-constants/src/class-constants.php'),(4766,'wp-content/plugins/woocommerce/vendor/bin/export-plural-rules'),(4767,'wp-content/plugins/woocommerce/vendor/bin/mozart'),(4768,'wp-content/plugins/woocommerce/vendor/bin/phpcbf'),(4769,'wp-content/plugins/woocommerce/vendor/bin/phpcs'),(4770,'wp-content/plugins/woocommerce/vendor/bin/wp'),(4771,'wp-content/plugins/woocommerce/vendor/bin/wp.bat'),(4772,'wp-content/plugins/woocommerce/vendor/composer/ClassLoader.php'),(4773,'wp-content/plugins/woocommerce/vendor/composer/InstalledVersions.php'),(4774,'wp-content/plugins/woocommerce/vendor/composer/LICENSE'),(4775,'wp-content/plugins/woocommerce/vendor/composer/autoload_classmap.php'),(4776,'wp-content/plugins/woocommerce/vendor/composer/autoload_files.php'),(4777,'wp-content/plugins/woocommerce/vendor/composer/autoload_namespaces.php'),(4778,'wp-content/plugins/woocommerce/vendor/composer/autoload_psr4.php'),(4779,'wp-content/plugins/woocommerce/vendor/composer/autoload_real.php'),(4780,'wp-content/plugins/woocommerce/vendor/composer/autoload_static.php'),(4781,'wp-content/plugins/woocommerce/vendor/composer/installed.json'),(4782,'wp-content/plugins/woocommerce/vendor/composer/installed.php'),(4783,'wp-content/plugins/woocommerce/vendor/composer/installers/LICENSE'),(4784,'wp-content/plugins/woocommerce/vendor/composer/installers/phpstan.neon.dist'),(4785,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/AglInstaller.php'),(4786,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php'),(4787,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php'),(4788,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php'),(4789,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php'),(4790,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php'),(4791,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php'),(4792,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php'),(4793,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php'),(4794,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php'),(4795,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php'),(4796,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php'),(4797,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php'),(4798,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php'),(4799,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php'),(4800,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php'),(4801,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php'),(4802,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php'),(4803,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/DframeInstaller.php'),(4804,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php'),(4805,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php'),(4806,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php'),(4807,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php'),(4808,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php'),(4809,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php'),(4810,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php'),(4811,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php'),(4812,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php'),(4813,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/GravInstaller.php'),(4814,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php'),(4815,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php'),(4816,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/Installer.php'),(4817,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php'),(4818,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php'),(4819,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php'),(4820,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php'),(4821,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/KnownInstaller.php'),(4822,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php'),(4823,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php'),(4824,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php'),(4825,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php'),(4826,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php'),(4827,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php'),(4828,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php'),(4829,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php'),(4830,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php'),(4831,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php'),(4832,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php'),(4833,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MantisBTInstaller.php'),(4834,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php'),(4835,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php'),(4836,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php'),(4837,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MiaoxingInstaller.php'),(4838,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php'),(4839,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php'),(4840,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php'),(4841,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php'),(4842,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php'),(4843,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php'),(4844,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php'),(4845,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php'),(4846,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PantheonInstaller.php'),(4847,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php'),(4848,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php'),(4849,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php'),(4850,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php'),(4851,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php'),(4852,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/Plugin.php'),(4853,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php'),(4854,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php'),(4855,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ProcessWireInstaller.php'),(4856,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php'),(4857,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php'),(4858,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php'),(4859,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php'),(4860,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/Redaxo5Installer.php'),(4861,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php'),(4862,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php'),(4863,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php'),(4864,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php'),(4865,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php'),(4866,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php'),(4867,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/StarbugInstaller.php'),(4868,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php'),(4869,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/SyliusInstaller.php'),(4870,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php'),(4871,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php'),(4872,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php'),(4873,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/TaoInstaller.php'),(4874,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/TastyIgniterInstaller.php'),(4875,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php'),(4876,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php'),(4877,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php'),(4878,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php'),(4879,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php'),(4880,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php'),(4881,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/WinterInstaller.php'),(4882,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php'),(4883,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php'),(4884,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php'),(4885,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php'),(4886,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php'),(4887,'wp-content/plugins/woocommerce/vendor/composer/installers/src/bootstrap.php'),(4888,'wp-content/plugins/woocommerce/vendor/composer/jetpack_autoload_classmap.php'),(4889,'wp-content/plugins/woocommerce/vendor/composer/jetpack_autoload_filemap.php'),(4890,'wp-content/plugins/woocommerce/vendor/composer/platform_check.php'),(4891,'wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-autoloader-handler.php'),(4892,'wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-autoloader-locator.php'),(4893,'wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-autoloader.php'),(4894,'wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-container.php'),(4895,'wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-hook-manager.php'),(4896,'wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-latest-autoloader-guard.php'),(4897,'wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-manifest-reader.php'),(4898,'wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-path-processor.php'),(4899,'wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-php-autoloader.php'),(4900,'wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-plugin-locator.php'),(4901,'wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-plugins-handler.php'),(4902,'wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-shutdown-handler.php'),(4903,'wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-version-loader.php'),(4904,'wp-content/plugins/woocommerce/vendor/jetpack-autoloader/class-version-selector.php'),(4905,'wp-content/plugins/woocommerce/vendor/maxmind-db/reader/LICENSE'),(4906,'wp-content/plugins/woocommerce/vendor/maxmind-db/reader/autoload.php'),(4907,'wp-content/plugins/woocommerce/vendor/maxmind-db/reader/ext/config.m4'),(4908,'wp-content/plugins/woocommerce/vendor/maxmind-db/reader/ext/config.w32'),(4909,'wp-content/plugins/woocommerce/vendor/maxmind-db/reader/ext/maxminddb.c'),(4910,'wp-content/plugins/woocommerce/vendor/maxmind-db/reader/ext/php_maxminddb.h'),(4911,'wp-content/plugins/woocommerce/vendor/maxmind-db/reader/ext/tests/001-load.phpt'),(4912,'wp-content/plugins/woocommerce/vendor/maxmind-db/reader/ext/tests/002-final.phpt'),(4913,'wp-content/plugins/woocommerce/vendor/maxmind-db/reader/ext/tests/003-open-basedir.phpt'),(4914,'wp-content/plugins/woocommerce/vendor/maxmind-db/reader/package.xml'),(4915,'wp-content/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php'),(4916,'wp-content/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php'),(4917,'wp-content/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Metadata.php'),(4918,'wp-content/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php'),(4919,'wp-content/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db/Reader.php'),(4920,'wp-content/plugins/woocommerce/vendor/pelago/emogrifier/LICENSE'),(4921,'wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src/Caching/SimpleStringCache.php'),(4922,'wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src/Css/CssDocument.php'),(4923,'wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src/Css/StyleRule.php'),(4924,'wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src/CssInliner.php'),(4925,'wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src/HtmlProcessor/AbstractHtmlProcessor.php'),(4926,'wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src/HtmlProcessor/CssToAttributeConverter.php'),(4927,'wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src/HtmlProcessor/HtmlNormalizer.php'),(4928,'wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src/HtmlProcessor/HtmlPruner.php'),(4929,'wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src/Utilities/ArrayIntersector.php'),(4930,'wp-content/plugins/woocommerce/vendor/pelago/emogrifier/src/Utilities/CssConcatenator.php'),(4931,'wp-content/plugins/woocommerce/vendor/psr/container/LICENSE'),(4932,'wp-content/plugins/woocommerce/vendor/psr/container/src/ContainerExceptionInterface.php'),(4933,'wp-content/plugins/woocommerce/vendor/psr/container/src/ContainerInterface.php'),(4934,'wp-content/plugins/woocommerce/vendor/psr/container/src/NotFoundExceptionInterface.php'),(4935,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/LICENSE'),(4936,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/CSSList/AtRuleBlockList.php'),(4937,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/CSSList/CSSBlockList.php'),(4938,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/CSSList/CSSList.php'),(4939,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/CSSList/Document.php'),(4940,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/CSSList/KeyFrame.php'),(4941,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Comment/Comment.php'),(4942,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Comment/Commentable.php'),(4943,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/OutputFormat.php'),(4944,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/OutputFormatter.php'),(4945,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Parser.php'),(4946,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Parsing/OutputException.php'),(4947,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Parsing/ParserState.php'),(4948,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Parsing/SourceException.php'),(4949,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Parsing/UnexpectedEOFException.php'),(4950,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Parsing/UnexpectedTokenException.php'),(4951,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Property/AtRule.php'),(4952,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Property/CSSNamespace.php'),(4953,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Property/Charset.php'),(4954,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Property/Import.php'),(4955,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Property/KeyframeSelector.php'),(4956,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Property/Selector.php'),(4957,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Renderable.php'),(4958,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Rule/Rule.php'),(4959,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/RuleSet/AtRuleSet.php'),(4960,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/RuleSet/DeclarationBlock.php'),(4961,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/RuleSet/RuleSet.php'),(4962,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Settings.php'),(4963,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value/CSSFunction.php'),(4964,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value/CSSString.php'),(4965,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value/CalcFunction.php'),(4966,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value/CalcRuleValueList.php'),(4967,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value/Color.php'),(4968,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value/LineName.php'),(4969,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value/PrimitiveValue.php'),(4970,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value/RuleValueList.php'),(4971,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value/Size.php'),(4972,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value/URL.php'),(4973,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value/Value.php'),(4974,'wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value/ValueList.php'),(4975,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/CssSelectorConverter.php'),(4976,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Exception/ExceptionInterface.php'),(4977,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Exception/ExpressionErrorException.php'),(4978,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Exception/InternalErrorException.php'),(4979,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Exception/ParseException.php'),(4980,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Exception/SyntaxErrorException.php'),(4981,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/LICENSE'),(4982,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Node/AbstractNode.php'),(4983,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Node/AttributeNode.php'),(4984,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Node/ClassNode.php'),(4985,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Node/CombinedSelectorNode.php'),(4986,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Node/ElementNode.php'),(4987,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Node/FunctionNode.php'),(4988,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Node/HashNode.php'),(4989,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Node/NegationNode.php'),(4990,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Node/NodeInterface.php'),(4991,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Node/PseudoNode.php'),(4992,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Node/SelectorNode.php'),(4993,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Node/Specificity.php'),(4994,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Handler/CommentHandler.php'),(4995,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Handler/HandlerInterface.php'),(4996,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Handler/HashHandler.php'),(4997,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Handler/IdentifierHandler.php'),(4998,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Handler/NumberHandler.php'),(4999,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Handler/StringHandler.php'),(5000,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Handler/WhitespaceHandler.php'),(5001,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Parser.php'),(5002,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/ParserInterface.php'),(5003,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Reader.php'),(5004,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Shortcut/ClassParser.php'),(5005,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Shortcut/ElementParser.php'),(5006,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Shortcut/EmptyStringParser.php'),(5007,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Shortcut/HashParser.php'),(5008,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Token.php'),(5009,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/TokenStream.php'),(5010,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Tokenizer/Tokenizer.php'),(5011,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Tokenizer/TokenizerEscaping.php'),(5012,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/Parser/Tokenizer/TokenizerPatterns.php'),(5013,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/XPath/Extension/AbstractExtension.php'),(5014,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/XPath/Extension/AttributeMatchingExtension.php'),(5015,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/XPath/Extension/CombinationExtension.php'),(5016,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/XPath/Extension/ExtensionInterface.php'),(5017,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/XPath/Extension/FunctionExtension.php'),(5018,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/XPath/Extension/HtmlExtension.php'),(5019,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/XPath/Extension/NodeExtension.php'),(5020,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/XPath/Extension/PseudoClassExtension.php'),(5021,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/XPath/Translator.php'),(5022,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/XPath/TranslatorInterface.php'),(5023,'wp-content/plugins/woocommerce/vendor/symfony/css-selector/XPath/XPathExpr.php'),(5024,'wp-content/plugins/woocommerce/vendor/symfony/polyfill-php80/LICENSE'),(5025,'wp-content/plugins/woocommerce/vendor/symfony/polyfill-php80/Php80.php'),(5026,'wp-content/plugins/woocommerce/vendor/symfony/polyfill-php80/PhpToken.php'),(5027,'wp-content/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php'),(5028,'wp-content/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php'),(5029,'wp-content/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php'),(5030,'wp-content/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php'),(5031,'wp-content/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php'),(5032,'wp-content/plugins/woocommerce/vendor/symfony/polyfill-php80/bootstrap.php'),(5033,'wp-content/plugins/woocommerce/woocommerce.php'),(5034,'wp-content/plugins/woocommerce-currency-switcher/classes/alert.php'),(5035,'wp-content/plugins/woocommerce-currency-switcher/classes/auto_switcher.php'),(5036,'wp-content/plugins/woocommerce-currency-switcher/classes/compatibility/compatibility.php'),(5037,'wp-content/plugins/woocommerce-currency-switcher/classes/cron.php'),(5038,'wp-content/plugins/woocommerce-currency-switcher/classes/dashboard_stat.php'),(5039,'wp-content/plugins/woocommerce-currency-switcher/classes/fixed/fixed_amount.php'),(5040,'wp-content/plugins/woocommerce-currency-switcher/classes/fixed/fixed_coupon.php'),(5041,'wp-content/plugins/woocommerce-currency-switcher/classes/fixed/fixed_price.php'),(5042,'wp-content/plugins/woocommerce-currency-switcher/classes/fixed/fixed_shipping.php'),(5043,'wp-content/plugins/woocommerce-currency-switcher/classes/fixed/fixed_shipping_free.php'),(5044,'wp-content/plugins/woocommerce-currency-switcher/classes/fixed/fixed_user_role.php'),(5045,'wp-content/plugins/woocommerce-currency-switcher/classes/profiles.php'),(5046,'wp-content/plugins/woocommerce-currency-switcher/classes/rate_alert.php'),(5047,'wp-content/plugins/woocommerce-currency-switcher/classes/reports.php'),(5048,'wp-content/plugins/woocommerce-currency-switcher/classes/smart-designer.php'),(5049,'wp-content/plugins/woocommerce-currency-switcher/classes/statistic.php'),(5050,'wp-content/plugins/woocommerce-currency-switcher/classes/storage.php'),(5051,'wp-content/plugins/woocommerce-currency-switcher/classes/widgets/widget-currency-converter.php'),(5052,'wp-content/plugins/woocommerce-currency-switcher/classes/widgets/widget-currency-rates.php'),(5053,'wp-content/plugins/woocommerce-currency-switcher/classes/widgets/widget-woocs-selector.php'),(5054,'wp-content/plugins/woocommerce-currency-switcher/classes/woocs.php'),(5055,'wp-content/plugins/woocommerce-currency-switcher/css/admin.css'),(5056,'wp-content/plugins/woocommerce-currency-switcher/css/auto_switcher/classic_blocks.css'),(5057,'wp-content/plugins/woocommerce-currency-switcher/css/auto_switcher/roll_blocks.css'),(5058,'wp-content/plugins/woocommerce-currency-switcher/css/auto_switcher/round_chain.css'),(5059,'wp-content/plugins/woocommerce-currency-switcher/css/auto_switcher/round_select.css'),(5060,'wp-content/plugins/woocommerce-currency-switcher/css/data-table-23.css'),(5061,'wp-content/plugins/woocommerce-currency-switcher/css/fixed.css'),(5062,'wp-content/plugins/woocommerce-currency-switcher/css/fontello.css'),(5063,'wp-content/plugins/woocommerce-currency-switcher/css/front.css'),(5064,'wp-content/plugins/woocommerce-currency-switcher/css/images/ui-bg_flat_0_aaaaaa_40x100.png'),(5065,'wp-content/plugins/woocommerce-currency-switcher/css/images/ui-bg_flat_75_ffffff_40x100.png'),(5066,'wp-content/plugins/woocommerce-currency-switcher/css/images/ui-bg_glass_55_fbf9ee_1x400.png'),(5067,'wp-content/plugins/woocommerce-currency-switcher/css/images/ui-bg_glass_65_ffffff_1x400.png'),(5068,'wp-content/plugins/woocommerce-currency-switcher/css/images/ui-bg_glass_75_dadada_1x400.png'),(5069,'wp-content/plugins/woocommerce-currency-switcher/css/images/ui-bg_glass_75_e6e6e6_1x400.png'),(5070,'wp-content/plugins/woocommerce-currency-switcher/css/images/ui-bg_glass_95_fef1ec_1x400.png'),(5071,'wp-content/plugins/woocommerce-currency-switcher/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png'),(5072,'wp-content/plugins/woocommerce-currency-switcher/css/images/ui-icons_222222_256x240.png'),(5073,'wp-content/plugins/woocommerce-currency-switcher/css/images/ui-icons_2e83ff_256x240.png'),(5074,'wp-content/plugins/woocommerce-currency-switcher/css/images/ui-icons_454545_256x240.png'),(5075,'wp-content/plugins/woocommerce-currency-switcher/css/images/ui-icons_888888_256x240.png'),(5076,'wp-content/plugins/woocommerce-currency-switcher/css/images/ui-icons_cd0a0a_256x240.png'),(5077,'wp-content/plugins/woocommerce-currency-switcher/css/jquery-ui.css'),(5078,'wp-content/plugins/woocommerce-currency-switcher/css/jquery.scrollbar.css'),(5079,'wp-content/plugins/woocommerce-currency-switcher/css/options-style-1/options.css'),(5080,'wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/options.css'),(5081,'wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/options.css.map'),(5082,'wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/options2.css.map'),(5083,'wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/abstracts/forms.scss'),(5084,'wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/abstracts/mixins.scss'),(5085,'wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/abstracts/normalize.scss'),(5086,'wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/abstracts/variables.scss'),(5087,'wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/components/accordion.scss'),(5088,'wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/components/alert.scss'),(5089,'wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/components/buttons.scss'),(5090,'wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/components/datepicker.scss'),(5091,'wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/components/lightbox.scss'),(5092,'wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/components/table.scss'),(5093,'wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/components/tabs.scss'),(5094,'wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/layout/_grid.scss'),(5095,'wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/layout/basic.scss'),(5096,'wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/layout/content.scss'),(5097,'wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/layout/framework.scss'),(5098,'wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/main.scss'),(5099,'wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/mixins/_breakpoints.scss'),(5100,'wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/mixins/_grid-framework.scss'),(5101,'wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/mixins/_grid.scss'),(5102,'wp-content/plugins/woocommerce-currency-switcher/css/options-style-2/stylesheets/vendors/select2.scss'),(5103,'wp-content/plugins/woocommerce-currency-switcher/css/options.css'),(5104,'wp-content/plugins/woocommerce-currency-switcher/css/orders.css'),(5105,'wp-content/plugins/woocommerce-currency-switcher/css/sd/ranger-23.css'),(5106,'wp-content/plugins/woocommerce-currency-switcher/css/sd/selectron23.css'),(5107,'wp-content/plugins/woocommerce-currency-switcher/css/sd/styles.css'),(5108,'wp-content/plugins/woocommerce-currency-switcher/css/switcher23.css'),(5109,'wp-content/plugins/woocommerce-currency-switcher/fonts/fontello.eot'),(5110,'wp-content/plugins/woocommerce-currency-switcher/fonts/fontello.svg'),(5111,'wp-content/plugins/woocommerce-currency-switcher/fonts/fontello.ttf'),(5112,'wp-content/plugins/woocommerce-currency-switcher/fonts/fontello.woff'),(5113,'wp-content/plugins/woocommerce-currency-switcher/img/admin_preloader.gif'),(5114,'wp-content/plugins/woocommerce-currency-switcher/img/arrow-right.png'),(5115,'wp-content/plugins/woocommerce-currency-switcher/img/envato-mid-sale-2020.png'),(5116,'wp-content/plugins/woocommerce-currency-switcher/img/help.png'),(5117,'wp-content/plugins/woocommerce-currency-switcher/img/icon/bookmarking.svg'),(5118,'wp-content/plugins/woocommerce-currency-switcher/img/icon/clean-code.svg'),(5119,'wp-content/plugins/woocommerce-currency-switcher/img/icon/features.svg'),(5120,'wp-content/plugins/woocommerce-currency-switcher/img/icon/site-structure-optimization.svg'),(5121,'wp-content/plugins/woocommerce-currency-switcher/img/loading_large.gif'),(5122,'wp-content/plugins/woocommerce-currency-switcher/img/move.png'),(5123,'wp-content/plugins/woocommerce-currency-switcher/img/no_flag.png'),(5124,'wp-content/plugins/woocommerce-currency-switcher/img/off40sale-590x60.jpg'),(5125,'wp-content/plugins/woocommerce-currency-switcher/img/side-switcher.png'),(5126,'wp-content/plugins/woocommerce-currency-switcher/img/woobe_banner-old.png'),(5127,'wp-content/plugins/woocommerce-currency-switcher/img/woobe_banner.png'),(5128,'wp-content/plugins/woocommerce-currency-switcher/img/woocs-options-1.png'),(5129,'wp-content/plugins/woocommerce-currency-switcher/img/woocs_banner-old.jpg'),(5130,'wp-content/plugins/woocommerce-currency-switcher/img/woocs_banner-old.png'),(5131,'wp-content/plugins/woocommerce-currency-switcher/img/woocs_banner.png'),(5132,'wp-content/plugins/woocommerce-currency-switcher/img/woocs_price_info_icon.png'),(5133,'wp-content/plugins/woocommerce-currency-switcher/img/woocs_price_info_icon_old.png'),(5134,'wp-content/plugins/woocommerce-currency-switcher/img/woof_banner.png'),(5135,'wp-content/plugins/woocommerce-currency-switcher/img/woof_banner_old.png'),(5136,'wp-content/plugins/woocommerce-currency-switcher/img/woot_banner-old.png'),(5137,'wp-content/plugins/woocommerce-currency-switcher/img/woot_banner.png'),(5138,'wp-content/plugins/woocommerce-currency-switcher/index.php'),(5139,'wp-content/plugins/woocommerce-currency-switcher/js/admin.js'),(5140,'wp-content/plugins/woocommerce-currency-switcher/js/alert.js'),(5141,'wp-content/plugins/woocommerce-currency-switcher/js/auto_switcher/round_select.js'),(5142,'wp-content/plugins/woocommerce-currency-switcher/js/chosen/chosen-dark.css'),(5143,'wp-content/plugins/woocommerce-currency-switcher/js/chosen/chosen-sprite-dark.png'),(5144,'wp-content/plugins/woocommerce-currency-switcher/js/chosen/chosen-sprite.png'),(5145,'wp-content/plugins/woocommerce-currency-switcher/js/chosen/chosen-sprite@2x.png'),(5146,'wp-content/plugins/woocommerce-currency-switcher/js/chosen/chosen.css'),(5147,'wp-content/plugins/woocommerce-currency-switcher/js/chosen/chosen.jquery.js'),(5148,'wp-content/plugins/woocommerce-currency-switcher/js/chosen/chosen.jquery.min.js'),(5149,'wp-content/plugins/woocommerce-currency-switcher/js/chosen/chosen.min.css'),(5150,'wp-content/plugins/woocommerce-currency-switcher/js/fixed.js'),(5151,'wp-content/plugins/woocommerce-currency-switcher/js/front.js'),(5152,'wp-content/plugins/woocommerce-currency-switcher/js/jquery.ddslick.min.js'),(5153,'wp-content/plugins/woocommerce-currency-switcher/js/jquery.scrollbar.min.js'),(5154,'wp-content/plugins/woocommerce-currency-switcher/js/meta-box.js'),(5155,'wp-content/plugins/woocommerce-currency-switcher/js/options-1.js'),(5156,'wp-content/plugins/woocommerce-currency-switcher/js/options-2.js'),(5157,'wp-content/plugins/woocommerce-currency-switcher/js/orders.js'),(5158,'wp-content/plugins/woocommerce-currency-switcher/js/price-slider.js'),(5159,'wp-content/plugins/woocommerce-currency-switcher/js/price-slider_33.js'),(5160,'wp-content/plugins/woocommerce-currency-switcher/js/sd/controllers/drop-down.js'),(5161,'wp-content/plugins/woocommerce-currency-switcher/js/sd/front-cache.js'),(5162,'wp-content/plugins/woocommerce-currency-switcher/js/sd/front.js'),(5163,'wp-content/plugins/woocommerce-currency-switcher/js/sd/options.js'),(5164,'wp-content/plugins/woocommerce-currency-switcher/js/sd/ranger-23.js'),(5165,'wp-content/plugins/woocommerce-currency-switcher/js/sd/selectron23.js'),(5166,'wp-content/plugins/woocommerce-currency-switcher/js/sd/smart-designer.js'),(5167,'wp-content/plugins/woocommerce-currency-switcher/js/sd/switcher23.js'),(5168,'wp-content/plugins/woocommerce-currency-switcher/js/statistic.js'),(5169,'wp-content/plugins/woocommerce-currency-switcher/js/world-currencies.js'),(5170,'wp-content/plugins/woocommerce-currency-switcher/js/wselect/README__.md'),(5171,'wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/AU.png'),(5172,'wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/CA.png'),(5173,'wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/PL.png'),(5174,'wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/TH.png'),(5175,'wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/UK.png'),(5176,'wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/US.png'),(5177,'wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/archery.png'),(5178,'wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/arrow-down-black.png'),(5179,'wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/arrow-down.png'),(5180,'wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/baseball.png'),(5181,'wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/basketball.png'),(5182,'wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/curling.png'),(5183,'wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/skiing.png'),(5184,'wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/soccer.png'),(5185,'wp-content/plugins/woocommerce-currency-switcher/js/wselect/img/volleyball.png'),(5186,'wp-content/plugins/woocommerce-currency-switcher/js/wselect/wSelect.css'),(5187,'wp-content/plugins/woocommerce-currency-switcher/js/wselect/wSelect.js'),(5188,'wp-content/plugins/woocommerce-currency-switcher/js/wselect/wSelect.min.js'),(5189,'wp-content/plugins/woocommerce-currency-switcher/languages/woocommerce-currency-switcher-es_ES.mo'),(5190,'wp-content/plugins/woocommerce-currency-switcher/languages/woocommerce-currency-switcher-es_ES.po'),(5191,'wp-content/plugins/woocommerce-currency-switcher/languages/woocommerce-currency-switcher-ru_RU.mo'),(5192,'wp-content/plugins/woocommerce-currency-switcher/languages/woocommerce-currency-switcher-ru_RU.po'),(5193,'wp-content/plugins/woocommerce-currency-switcher/languages/woocommerce-currency-switcher.po'),(5194,'wp-content/plugins/woocommerce-currency-switcher/readme.txt'),(5195,'wp-content/plugins/woocommerce-currency-switcher/views/auto_switcher/classic_blocks.php'),(5196,'wp-content/plugins/woocommerce-currency-switcher/views/auto_switcher/roll_blocks.php'),(5197,'wp-content/plugins/woocommerce-currency-switcher/views/auto_switcher/round_chain.php'),(5198,'wp-content/plugins/woocommerce-currency-switcher/views/auto_switcher/round_select.php'),(5199,'wp-content/plugins/woocommerce-currency-switcher/views/fixed/product_coupon_data.php'),(5200,'wp-content/plugins/woocommerce-currency-switcher/views/fixed/product_coupon_restriction_data.php'),(5201,'wp-content/plugins/woocommerce-currency-switcher/views/fixed/product_price_data.php'),(5202,'wp-content/plugins/woocommerce-currency-switcher/views/fixed/product_user_role_data.php'),(5203,'wp-content/plugins/woocommerce-currency-switcher/views/plugin_options.php'),(5204,'wp-content/plugins/woocommerce-currency-switcher/views/plugin_options_1.php'),(5205,'wp-content/plugins/woocommerce-currency-switcher/views/plugin_options_2.php'),(5206,'wp-content/plugins/woocommerce-currency-switcher/views/plugin_options_data.php'),(5207,'wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/styles/for-menu/actions.js'),(5208,'wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/styles/for-menu/styles.css'),(5209,'wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/styles/style-1/actions.js'),(5210,'wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/styles/style-1/index.php'),(5211,'wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/styles/style-1/styles.css'),(5212,'wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/styles/style-2/actions.js'),(5213,'wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/styles/style-2/index.php'),(5214,'wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/styles/style-2/styles.css'),(5215,'wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/styles/style-3/actions.js'),(5216,'wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/styles/style-3/index.php'),(5217,'wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/styles/style-3/styles.css'),(5218,'wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/woocs.php'),(5219,'wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/woocs_converter.php'),(5220,'wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/woocs_rates.php'),(5221,'wp-content/plugins/woocommerce-currency-switcher/views/shortcodes/woocs_show_current_currency.php'),(5222,'wp-content/plugins/woocommerce-currency-switcher/views/widgets/converter.php'),(5223,'wp-content/plugins/woocommerce-currency-switcher/views/widgets/converter_form.php'),(5224,'wp-content/plugins/woocommerce-currency-switcher/views/widgets/rates.php'),(5225,'wp-content/plugins/woocommerce-currency-switcher/views/widgets/rates_form.php'),(5226,'wp-content/plugins/woocommerce-currency-switcher/views/widgets/selector.php'),(5227,'wp-content/plugins/woocommerce-currency-switcher/views/widgets/selector_form.php'),(5228,'wp-content/plugins/woocommerce-currency-switcher/views/woocs_order_metabox.php'),(5229,'wp-content/plugins/woocommerce-multilingual/classes/API/VendorAddon/Hooks.php'),(5230,'wp-content/plugins/woocommerce-multilingual/classes/AdminDashboard/Hooks.php'),(5231,'wp-content/plugins/woocommerce-multilingual/classes/AdminNotices/CachePlugins.php'),(5232,'wp-content/plugins/woocommerce-multilingual/classes/AdminNotices/MultiCurrencyMissing.php'),(5233,'wp-content/plugins/woocommerce-multilingual/classes/AdminNotices/RestrictedScreens.php'),(5234,'wp-content/plugins/woocommerce-multilingual/classes/AdminNotices/Review.php'),(5235,'wp-content/plugins/woocommerce-multilingual/classes/Block/Convert/Converter/ProductsByAttributes.php'),(5236,'wp-content/plugins/woocommerce-multilingual/classes/Block/Convert/ConverterProvider.php'),(5237,'wp-content/plugins/woocommerce-multilingual/classes/Block/Convert/Hooks.php'),(5238,'wp-content/plugins/woocommerce-multilingual/classes/CLI/Hooks.php'),(5239,'wp-content/plugins/woocommerce-multilingual/classes/Container/Config.php'),(5240,'wp-content/plugins/woocommerce-multilingual/classes/Email/Settings/Hooks.php'),(5241,'wp-content/plugins/woocommerce-multilingual/classes/MO/Hooks.php'),(5242,'wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Analytics/Export.php'),(5243,'wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Analytics/Factory.php'),(5244,'wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Analytics/Hooks.php'),(5245,'wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Shipping/AdminHooks.php'),(5246,'wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Shipping/DefaultConversion.php'),(5247,'wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Shipping/FlatRateShipping.php'),(5248,'wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Shipping/FreeShipping.php'),(5249,'wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Shipping/FrontEndHooks.php'),(5250,'wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Shipping/LocalPickup.php'),(5251,'wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Shipping/ShippingClasses.php'),(5252,'wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Shipping/ShippingClassesMode.php'),(5253,'wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Shipping/ShippingHooksFactory.php'),(5254,'wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Shipping/ShippingMode.php'),(5255,'wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Shipping/ShippingModeBase.php'),(5256,'wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Shipping/ShippingModeProvider.php'),(5257,'wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Shipping/UnsupportedShipping.php'),(5258,'wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/Shipping/VariableCost.php'),(5259,'wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/UI/Factory.php'),(5260,'wp-content/plugins/woocommerce-multilingual/classes/Multicurrency/UI/Hooks.php'),(5261,'wp-content/plugins/woocommerce-multilingual/classes/Options/WPML.php'),(5262,'wp-content/plugins/woocommerce-multilingual/classes/PaymentGateways/Hooks.php'),(5263,'wp-content/plugins/woocommerce-multilingual/classes/Reports/Categories/Query.php'),(5264,'wp-content/plugins/woocommerce-multilingual/classes/Reports/Hooks.php'),(5265,'wp-content/plugins/woocommerce-multilingual/classes/Reports/Orders/Factory.php'),(5266,'wp-content/plugins/woocommerce-multilingual/classes/Reports/Orders/Hooks.php'),(5267,'wp-content/plugins/woocommerce-multilingual/classes/Reports/Products/Query.php'),(5268,'wp-content/plugins/woocommerce-multilingual/classes/Rest/Exceptions/Generic.php'),(5269,'wp-content/plugins/woocommerce-multilingual/classes/Rest/Exceptions/InvalidCurrency.php'),(5270,'wp-content/plugins/woocommerce-multilingual/classes/Rest/Exceptions/InvalidLanguage.php'),(5271,'wp-content/plugins/woocommerce-multilingual/classes/Rest/Exceptions/InvalidProduct.php'),(5272,'wp-content/plugins/woocommerce-multilingual/classes/Rest/Exceptions/InvalidTerm.php'),(5273,'wp-content/plugins/woocommerce-multilingual/classes/Rest/Exceptions/MissingLanguage.php'),(5274,'wp-content/plugins/woocommerce-multilingual/classes/Rest/Frontend/Language.php'),(5275,'wp-content/plugins/woocommerce-multilingual/classes/Rest/Functions.php'),(5276,'wp-content/plugins/woocommerce-multilingual/classes/Rest/Generic.php'),(5277,'wp-content/plugins/woocommerce-multilingual/classes/Rest/Hooks.php'),(5278,'wp-content/plugins/woocommerce-multilingual/classes/Rest/Language/Set.php'),(5279,'wp-content/plugins/woocommerce-multilingual/classes/Rest/ProductSaveActions.php'),(5280,'wp-content/plugins/woocommerce-multilingual/classes/Rest/Wrapper/Composite.php'),(5281,'wp-content/plugins/woocommerce-multilingual/classes/Rest/Wrapper/Factory.php'),(5282,'wp-content/plugins/woocommerce-multilingual/classes/Rest/Wrapper/Handler.php'),(5283,'wp-content/plugins/woocommerce-multilingual/classes/Rest/Wrapper/Orders/Languages.php'),(5284,'wp-content/plugins/woocommerce-multilingual/classes/Rest/Wrapper/Orders/Prices.php'),(5285,'wp-content/plugins/woocommerce-multilingual/classes/Rest/Wrapper/ProductTerms.php'),(5286,'wp-content/plugins/woocommerce-multilingual/classes/Rest/Wrapper/Products/Products.php'),(5287,'wp-content/plugins/woocommerce-multilingual/classes/Rest/Wrapper/Reports/ProductsCount.php'),(5288,'wp-content/plugins/woocommerce-multilingual/classes/Rest/Wrapper/Reports/ProductsSales.php'),(5289,'wp-content/plugins/woocommerce-multilingual/classes/Rest/Wrapper/Reports/TopSeller.php'),(5290,'wp-content/plugins/woocommerce-multilingual/classes/Reviews/Translations/Factory.php'),(5291,'wp-content/plugins/woocommerce-multilingual/classes/Reviews/Translations/FrontEndHooks.php'),(5292,'wp-content/plugins/woocommerce-multilingual/classes/Reviews/Translations/Mapper.php'),(5293,'wp-content/plugins/woocommerce-multilingual/classes/RewriteRules/Hooks.php'),(5294,'wp-content/plugins/woocommerce-multilingual/classes/Tax/Strings/Hooks.php'),(5295,'wp-content/plugins/woocommerce-multilingual/classes/User/Store/Cookie.php'),(5296,'wp-content/plugins/woocommerce-multilingual/classes/User/Store/Noop.php'),(5297,'wp-content/plugins/woocommerce-multilingual/classes/User/Store/Store.php'),(5298,'wp-content/plugins/woocommerce-multilingual/classes/User/Store/Strategy.php'),(5299,'wp-content/plugins/woocommerce-multilingual/classes/User/Store/WcSession.php'),(5300,'wp-content/plugins/woocommerce-multilingual/classes/Utilities/Post.php'),(5301,'wp-content/plugins/woocommerce-multilingual/classes/Utilities/Resources.php'),(5302,'wp-content/plugins/woocommerce-multilingual/classes/ate/class-wcml-ate-activate-synchronization.php'),(5303,'wp-content/plugins/woocommerce-multilingual/classes/class-wcml-admin-cookie.php'),(5304,'wp-content/plugins/woocommerce-multilingual/classes/class-wcml-tracking-link.php'),(5305,'wp-content/plugins/woocommerce-multilingual/classes/class-woocommerce-wpml.php'),(5306,'wp-content/plugins/woocommerce-multilingual/classes/currencies/class-wcml-admin-currency-selector.php'),(5307,'wp-content/plugins/woocommerce-multilingual/classes/currencies/class-wcml-currencies.php'),(5308,'wp-content/plugins/woocommerce-multilingual/classes/media/Wrapper/Factory.php'),(5309,'wp-content/plugins/woocommerce-multilingual/classes/media/Wrapper/IMedia.php'),(5310,'wp-content/plugins/woocommerce-multilingual/classes/media/Wrapper/NonTranslatable.php'),(5311,'wp-content/plugins/woocommerce-multilingual/classes/media/Wrapper/Translatable.php'),(5312,'wp-content/plugins/woocommerce-multilingual/classes/media/class-wcml-product-gallery-filter-factory.php'),(5313,'wp-content/plugins/woocommerce-multilingual/classes/media/class-wcml-product-gallery-filter.php'),(5314,'wp-content/plugins/woocommerce-multilingual/classes/media/class-wcml-product-image-filter-factory.php'),(5315,'wp-content/plugins/woocommerce-multilingual/classes/media/class-wcml-product-image-filter.php'),(5316,'wp-content/plugins/woocommerce-multilingual/classes/media/class-wcml-update-product-gallery-translation-factory.php'),(5317,'wp-content/plugins/woocommerce-multilingual/classes/media/class-wcml-update-product-gallery-translation.php'),(5318,'wp-content/plugins/woocommerce-multilingual/classes/media/class-wml-append-gallery-to-post-media-ids-factory.php'),(5319,'wp-content/plugins/woocommerce-multilingual/classes/media/class-wml-append-gallery-to-post-media-ids.php'),(5320,'wp-content/plugins/woocommerce-multilingual/classes/multi-currency/class-wcml-exchange-rates.php'),(5321,'wp-content/plugins/woocommerce-multilingual/classes/multi-currency/exchange-rate-services/CurrencyLayer.php'),(5322,'wp-content/plugins/woocommerce-multilingual/classes/multi-currency/exchange-rate-services/ExchangeRatesApi.php'),(5323,'wp-content/plugins/woocommerce-multilingual/classes/multi-currency/exchange-rate-services/Fixerio.php'),(5324,'wp-content/plugins/woocommerce-multilingual/classes/multi-currency/exchange-rate-services/OpenExchangeRates.php'),(5325,'wp-content/plugins/woocommerce-multilingual/classes/multi-currency/exchange-rate-services/Service.php'),(5326,'wp-content/plugins/woocommerce-multilingual/classes/multi-currency/geolocation/Geolocation.php'),(5327,'wp-content/plugins/woocommerce-multilingual/classes/multi-currency/geolocation/GeolocationBackendHooks.php'),(5328,'wp-content/plugins/woocommerce-multilingual/classes/multi-currency/geolocation/GeolocationFrontendHooks.php'),(5329,'wp-content/plugins/woocommerce-multilingual/classes/multi-currency/payment-gateways/class-wcml-currencies-payment-gateways.php'),(5330,'wp-content/plugins/woocommerce-multilingual/classes/multi-currency/payment-gateways/class-wcml-not-supported-payment-gateway.php'),(5331,'wp-content/plugins/woocommerce-multilingual/classes/multi-currency/payment-gateways/class-wcml-payment-gateway-bacs.php'),(5332,'wp-content/plugins/woocommerce-multilingual/classes/multi-currency/payment-gateways/class-wcml-payment-gateway-paypal.php'),(5333,'wp-content/plugins/woocommerce-multilingual/classes/multi-currency/payment-gateways/class-wcml-payment-gateway-stripe.php'),(5334,'wp-content/plugins/woocommerce-multilingual/classes/multi-currency/payment-gateways/class-wcml-payment-gateway.php'),(5335,'wp-content/plugins/woocommerce-multilingual/classes/order-property-filter/class-wcml-payment-method-filter.php'),(5336,'wp-content/plugins/woocommerce-multilingual/classes/pointers/class-wcml-pointers.php'),(5337,'wp-content/plugins/woocommerce-multilingual/classes/privacy/class-wcml-privacy-content-factory.php'),(5338,'wp-content/plugins/woocommerce-multilingual/classes/privacy/class-wcml-privacy-content.php'),(5339,'wp-content/plugins/woocommerce-multilingual/classes/product/Hooks.php'),(5340,'wp-content/plugins/woocommerce-multilingual/classes/product/class-wcml-product-data-store-cpt.php'),(5341,'wp-content/plugins/woocommerce-multilingual/classes/shortcodes/class-wcml-wc-shortcode-product-category.php'),(5342,'wp-content/plugins/woocommerce-multilingual/classes/taxonomy-translation/class-wcml-taxonomy-translation-link-filters.php'),(5343,'wp-content/plugins/woocommerce-multilingual/classes/templates/php/model.php'),(5344,'wp-content/plugins/woocommerce-multilingual/classes/url-filters/class-wcml-url-filters-redirect-location.php'),(5345,'wp-content/plugins/woocommerce-multilingual/classes/urls/class-wcml-xdomain-data.php'),(5346,'wp-content/plugins/woocommerce-multilingual/classes/wcml-setup/BeforeHooks.php'),(5347,'wp-content/plugins/woocommerce-multilingual/classes/wcml-setup/class-wcml-setup-handlers.php'),(5348,'wp-content/plugins/woocommerce-multilingual/classes/wcml-setup/class-wcml-setup-ui.php'),(5349,'wp-content/plugins/woocommerce-multilingual/classes/wcml-setup/class-wcml-setup.php'),(5350,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-accommodation-bookings.php'),(5351,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-adventure-tours.php'),(5352,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-ajax-layered-nav-widget.php'),(5353,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-aurum.php'),(5354,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-bookings.php'),(5355,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-bulk-stock-management.php'),(5356,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-checkout-addons.php'),(5357,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-checkout-field-editor.php'),(5358,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-compatibility-helper.php'),(5359,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-composite-products.php'),(5360,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-dynamic-pricing.php'),(5361,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-extra-product-options.php'),(5362,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-flatsome.php'),(5363,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-gravityforms.php'),(5364,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-jck-wssv.php'),(5365,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-klarna-gateway.php'),(5366,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-litespeed-cache.php'),(5367,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-maxstore.php'),(5368,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-mix-and-match-products.php'),(5369,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-order-status-manager.php'),(5370,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-per-product-shipping.php'),(5371,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-pip.php'),(5372,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-product-addons.php'),(5373,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-product-bundles.php'),(5374,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-relevanssi.php'),(5375,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-sensei.php'),(5376,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-tab-manager.php'),(5377,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-table-rate-shipping.php'),(5378,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-the-events-calendar.php'),(5379,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-variation-swatches-and-photos.php'),(5380,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-wc-memberships.php'),(5381,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-wc-name-your-price.php'),(5382,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-wc-product-type-column.php'),(5383,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-wc-subscriptions.php'),(5384,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-wcexporter.php'),(5385,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-woo-var-table.php'),(5386,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-woobe.php'),(5387,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-woof-woocommerce-product-filter.php'),(5388,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-wpb-vc.php'),(5389,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-wpfastest-cache.php'),(5390,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-wpseo.php'),(5391,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-yikes-custom-product-tabs.php'),(5392,'wp-content/plugins/woocommerce-multilingual/compatibility/class-wcml-yith-wcqv.php'),(5393,'wp-content/plugins/woocommerce-multilingual/compatibility/includes/class-wcml-wc-product-bundles-items.php'),(5394,'wp-content/plugins/woocommerce-multilingual/compatibility/res/css/wcml-bookings.css'),(5395,'wp-content/plugins/woocommerce-multilingual/compatibility/res/css/wcml-product-addons.css'),(5396,'wp-content/plugins/woocommerce-multilingual/compatibility/res/js/wcml-adventure-tours.js'),(5397,'wp-content/plugins/woocommerce-multilingual/compatibility/res/js/wcml-adventure-tours.min.js'),(5398,'wp-content/plugins/woocommerce-multilingual/compatibility/res/js/wcml-bookings.js'),(5399,'wp-content/plugins/woocommerce-multilingual/compatibility/res/js/wcml-bookings.min.js'),(5400,'wp-content/plugins/woocommerce-multilingual/compatibility/res/js/wcml-composite.js'),(5401,'wp-content/plugins/woocommerce-multilingual/compatibility/res/js/wcml-composite.min.js'),(5402,'wp-content/plugins/woocommerce-multilingual/compatibility/res/js/wcml-members.js'),(5403,'wp-content/plugins/woocommerce-multilingual/compatibility/res/js/wcml-members.min.js'),(5404,'wp-content/plugins/woocommerce-multilingual/compatibility/res/js/wcml-product-addons.js'),(5405,'wp-content/plugins/woocommerce-multilingual/compatibility/res/js/wcml-product-addons.min.js'),(5406,'wp-content/plugins/woocommerce-multilingual/dist/css/multicurrencyAnalytics/styles.css'),(5407,'wp-content/plugins/woocommerce-multilingual/dist/css/multicurrencyOptions/styles.css'),(5408,'wp-content/plugins/woocommerce-multilingual/dist/css/multicurrencyShippingAdmin/styles.css'),(5409,'wp-content/plugins/woocommerce-multilingual/dist/css/paymentGatewaysAdmin/styles.css'),(5410,'wp-content/plugins/woocommerce-multilingual/dist/css/reportsOrders/styles.css'),(5411,'wp-content/plugins/woocommerce-multilingual/dist/js/multicurrencyAnalytics/app.js'),(5412,'wp-content/plugins/woocommerce-multilingual/dist/js/multicurrencyOptions/app.js'),(5413,'wp-content/plugins/woocommerce-multilingual/dist/js/multicurrencyShippingAdmin/app.js'),(5414,'wp-content/plugins/woocommerce-multilingual/dist/js/paymentGatewaysAdmin/app.js'),(5415,'wp-content/plugins/woocommerce-multilingual/dist/js/reportsOrders/app.js'),(5416,'wp-content/plugins/woocommerce-multilingual/inc/admin-menus/class-wcml-admin-menus.php'),(5417,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-ajax-setup.php'),(5418,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-attributes.php'),(5419,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-capabilities.php'),(5420,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-cart-removed-items-widget.php'),(5421,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-cart-switch-lang-functions.php'),(5422,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-cart-sync-warnings.php'),(5423,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-cart.php'),(5424,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-comments.php'),(5425,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-compatibility.php'),(5426,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-coupons.php'),(5427,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-dependencies.php'),(5428,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-emails.php'),(5429,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-endpoints.php'),(5430,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-install.php'),(5431,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-languages-upgrader.php'),(5432,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-locale.php'),(5433,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-orders.php'),(5434,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-products-screen-options.php'),(5435,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-products.php'),(5436,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-reports.php'),(5437,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-requests.php'),(5438,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-resources.php'),(5439,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-store-pages.php'),(5440,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-terms.php'),(5441,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-tp-support.php'),(5442,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-troubleshooting.php'),(5443,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-upgrade.php'),(5444,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-url-translation.php'),(5445,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-wc-gateways.php'),(5446,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-wc-shipping.php'),(5447,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-wc-strings.php'),(5448,'wp-content/plugins/woocommerce-multilingual/inc/class-wcml-widgets.php'),(5449,'wp-content/plugins/woocommerce-multilingual/inc/constants.php'),(5450,'wp-content/plugins/woocommerce-multilingual/inc/currencies/class-wcml-custom-prices.php'),(5451,'wp-content/plugins/woocommerce-multilingual/inc/currencies/class-wcml-multi-currency-configuration.php'),(5452,'wp-content/plugins/woocommerce-multilingual/inc/currencies/class-wcml-multi-currency-coupons.php'),(5453,'wp-content/plugins/woocommerce-multilingual/inc/currencies/class-wcml-multi-currency-install.php'),(5454,'wp-content/plugins/woocommerce-multilingual/inc/currencies/class-wcml-multi-currency-orders.php'),(5455,'wp-content/plugins/woocommerce-multilingual/inc/currencies/class-wcml-multi-currency-prices.php'),(5456,'wp-content/plugins/woocommerce-multilingual/inc/currencies/class-wcml-multi-currency-reports.php'),(5457,'wp-content/plugins/woocommerce-multilingual/inc/currencies/class-wcml-multi-currency-resources.php'),(5458,'wp-content/plugins/woocommerce-multilingual/inc/currencies/class-wcml-multi-currency-shipping.php'),(5459,'wp-content/plugins/woocommerce-multilingual/inc/currencies/class-wcml-multi-currency-table-rate-shipping.php'),(5460,'wp-content/plugins/woocommerce-multilingual/inc/currencies/class-wcml-multi-currency.php'),(5461,'wp-content/plugins/woocommerce-multilingual/inc/currencies/class-wcml-price-filter.php'),(5462,'wp-content/plugins/woocommerce-multilingual/inc/currencies/class-wcml-w3tc-multi-currency.php'),(5463,'wp-content/plugins/woocommerce-multilingual/inc/currencies/currency-switcher/class-wcml-currency-switcher-ajax.php'),(5464,'wp-content/plugins/woocommerce-multilingual/inc/currencies/currency-switcher/class-wcml-currency-switcher-properties.php'),(5465,'wp-content/plugins/woocommerce-multilingual/inc/currencies/currency-switcher/class-wcml-currency-switcher-templates.php'),(5466,'wp-content/plugins/woocommerce-multilingual/inc/currencies/currency-switcher/class-wcml-currency-switcher-widget.php'),(5467,'wp-content/plugins/woocommerce-multilingual/inc/currencies/currency-switcher/class-wcml-currency-switcher.php'),(5468,'wp-content/plugins/woocommerce-multilingual/inc/functions.php'),(5469,'wp-content/plugins/woocommerce-multilingual/inc/installer-loader.php'),(5470,'wp-content/plugins/woocommerce-multilingual/inc/missing-php-functions.php'),(5471,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-attribute-translation-ui.php'),(5472,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-currencies-dropdown-ui.php'),(5473,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-custom-files-ui.php'),(5474,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-custom-taxonomy-translation-ui.php'),(5475,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-languages-upgrade-notice.php'),(5476,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-menus-wrap.php'),(5477,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-not-translatable-attributes.php'),(5478,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-plugins-wrap.php'),(5479,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-pointer-ui.php'),(5480,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-products-ui.php'),(5481,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-removed-cart-items-ui.php'),(5482,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-settings-ui.php'),(5483,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-st-taxonomy-ui.php'),(5484,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-sync-taxonomy.php'),(5485,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-templates-factory.php'),(5486,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/class-wcml-troubleshooting-ui.php'),(5487,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/currency-switcher/class-wcml-currency-switcher-options-dialog.php'),(5488,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/currency-switcher/class-wcml-currency-switcher-template.php'),(5489,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/multi-currency/class-wcml-custom-currency-options.php'),(5490,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/multi-currency/class-wcml-custom-prices-ui.php'),(5491,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/multi-currency/class-wcml-exchange-rates-ui.php'),(5492,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/multi-currency/class-wcml-multi-currency-ui.php'),(5493,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/setup/class-wcml-setup-attributes-ui.php'),(5494,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/setup/class-wcml-setup-footer.php'),(5495,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/setup/class-wcml-setup-header.php'),(5496,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/setup/class-wcml-setup-introduction-ui.php'),(5497,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/setup/class-wcml-setup-multi-currency-ui.php'),(5498,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/setup/class-wcml-setup-notice.php'),(5499,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/setup/class-wcml-setup-ready-ui.php'),(5500,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/setup/class-wcml-setup-store-pages-ui.php'),(5501,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/setup/class-wcml-setup-translation-options-ui.php'),(5502,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/status/class-wcml-status-config-warnings-ui.php'),(5503,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/status/class-wcml-status-media-ui.php'),(5504,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/status/class-wcml-status-multi-currencies-ui.php'),(5505,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/status/class-wcml-status-products-ui.php'),(5506,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/status/class-wcml-status-status-ui.php'),(5507,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/status/class-wcml-status-store-pages-ui.php'),(5508,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/status/class-wcml-status-taxonomies-ui.php'),(5509,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/status/class-wcml-status-ui.php'),(5510,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/store-urls/class-wcml-store-urls-edit-base-ui.php'),(5511,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/store-urls/class-wcml-store-urls-translation-statuses-ui.php'),(5512,'wp-content/plugins/woocommerce-multilingual/inc/template-classes/store-urls/class-wcml-store-urls-ui.php'),(5513,'wp-content/plugins/woocommerce-multilingual/inc/translation-editor/class-wcml-downloadable-products.php'),(5514,'wp-content/plugins/woocommerce-multilingual/inc/translation-editor/class-wcml-editor-save-filters.php'),(5515,'wp-content/plugins/woocommerce-multilingual/inc/translation-editor/class-wcml-editor-ui-product-job.php'),(5516,'wp-content/plugins/woocommerce-multilingual/inc/translation-editor/class-wcml-editor-ui-wysiwyg-field.php'),(5517,'wp-content/plugins/woocommerce-multilingual/inc/translation-editor/class-wcml-page-builders.php'),(5518,'wp-content/plugins/woocommerce-multilingual/inc/translation-editor/class-wcml-synchronize-product-data.php'),(5519,'wp-content/plugins/woocommerce-multilingual/inc/translation-editor/class-wcml-synchronize-variations-data.php'),(5520,'wp-content/plugins/woocommerce-multilingual/inc/translation-editor/class-wcml-translation-editor.php'),(5521,'wp-content/plugins/woocommerce-multilingual/inc/translation-editor/class-wcml-wc-admin-duplicate-product.php'),(5522,'wp-content/plugins/woocommerce-multilingual/inc/wcml-core-functions.php'),(5523,'wp-content/plugins/woocommerce-multilingual/inc/wcml-switch-lang-request.php'),(5524,'wp-content/plugins/woocommerce-multilingual/locale/orig/woocommerce-multilingual.po'),(5525,'wp-content/plugins/woocommerce-multilingual/locale/woocommerce-multilingual-de_DE.mo'),(5526,'wp-content/plugins/woocommerce-multilingual/locale/woocommerce-multilingual-el.mo'),(5527,'wp-content/plugins/woocommerce-multilingual/locale/woocommerce-multilingual-es_ES.mo'),(5528,'wp-content/plugins/woocommerce-multilingual/locale/woocommerce-multilingual-fr_FR.mo'),(5529,'wp-content/plugins/woocommerce-multilingual/locale/woocommerce-multilingual-he_IL.mo'),(5530,'wp-content/plugins/woocommerce-multilingual/locale/woocommerce-multilingual-it_IT.mo'),(5531,'wp-content/plugins/woocommerce-multilingual/locale/woocommerce-multilingual-ja.mo'),(5532,'wp-content/plugins/woocommerce-multilingual/locale/woocommerce-multilingual-nl_NL.mo'),(5533,'wp-content/plugins/woocommerce-multilingual/locale/woocommerce-multilingual-pl_PL.mo'),(5534,'wp-content/plugins/woocommerce-multilingual/locale/woocommerce-multilingual-pt_BR.mo'),(5535,'wp-content/plugins/woocommerce-multilingual/locale/woocommerce-multilingual-sv_SE.mo'),(5536,'wp-content/plugins/woocommerce-multilingual/readme.txt'),(5537,'wp-content/plugins/woocommerce-multilingual/res/css/admin.css'),(5538,'wp-content/plugins/woocommerce-multilingual/res/css/currency-switcher.css'),(5539,'wp-content/plugins/woocommerce-multilingual/res/css/dialogs.css'),(5540,'wp-content/plugins/woocommerce-multilingual/res/css/management.css'),(5541,'wp-content/plugins/woocommerce-multilingual/res/css/options-permalink.css'),(5542,'wp-content/plugins/woocommerce-multilingual/res/css/otgs-ico.css'),(5543,'wp-content/plugins/woocommerce-multilingual/res/css/wcml-cart-warning.css'),(5544,'wp-content/plugins/woocommerce-multilingual/res/css/wcml-files.css'),(5545,'wp-content/plugins/woocommerce-multilingual/res/css/wcml-payment-gateways.css'),(5546,'wp-content/plugins/woocommerce-multilingual/res/css/wcml-pointers.css'),(5547,'wp-content/plugins/woocommerce-multilingual/res/css/wcml-prices.css'),(5548,'wp-content/plugins/woocommerce-multilingual/res/css/wcml-setup-wizard-notice.css'),(5549,'wp-content/plugins/woocommerce-multilingual/res/css/wcml-setup.css'),(5550,'wp-content/plugins/woocommerce-multilingual/res/css/wcml-wc-integration.css'),(5551,'wp-content/plugins/woocommerce-multilingual/res/font/otgs-icons.eot'),(5552,'wp-content/plugins/woocommerce-multilingual/res/font/otgs-icons.svg'),(5553,'wp-content/plugins/woocommerce-multilingual/res/font/otgs-icons.ttf'),(5554,'wp-content/plugins/woocommerce-multilingual/res/font/otgs-icons.woff'),(5555,'wp-content/plugins/woocommerce-multilingual/res/geolocation/country-currency.json'),(5556,'wp-content/plugins/woocommerce-multilingual/res/images/ajax-loader.gif'),(5557,'wp-content/plugins/woocommerce-multilingual/res/images/alert.png'),(5558,'wp-content/plugins/woocommerce-multilingual/res/images/banner-772x120.png'),(5559,'wp-content/plugins/woocommerce-multilingual/res/images/bg-rating-notice.png'),(5560,'wp-content/plugins/woocommerce-multilingual/res/images/buttons.gif'),(5561,'wp-content/plugins/woocommerce-multilingual/res/images/delete.png'),(5562,'wp-content/plugins/woocommerce-multilingual/res/images/delete_10.png'),(5563,'wp-content/plugins/woocommerce-multilingual/res/images/edit.png'),(5564,'wp-content/plugins/woocommerce-multilingual/res/images/edit_translation.png'),(5565,'wp-content/plugins/woocommerce-multilingual/res/images/icon16.png'),(5566,'wp-content/plugins/woocommerce-multilingual/res/images/image_watermark.png'),(5567,'wp-content/plugins/woocommerce-multilingual/res/images/locked.png'),(5568,'wp-content/plugins/woocommerce-multilingual/res/images/placeholder.png'),(5569,'wp-content/plugins/woocommerce-multilingual/res/images/toolbar.gif'),(5570,'wp-content/plugins/woocommerce-multilingual/res/images/xit.gif'),(5571,'wp-content/plugins/woocommerce-multilingual/res/js/admin-currency-selector.js'),(5572,'wp-content/plugins/woocommerce-multilingual/res/js/admin-currency-selector.min.js'),(5573,'wp-content/plugins/woocommerce-multilingual/res/js/bacs-accounts-currencies.js'),(5574,'wp-content/plugins/woocommerce-multilingual/res/js/bacs-accounts-currencies.min.js'),(5575,'wp-content/plugins/woocommerce-multilingual/res/js/cart_widget.js'),(5576,'wp-content/plugins/woocommerce-multilingual/res/js/cart_widget.min.js'),(5577,'wp-content/plugins/woocommerce-multilingual/res/js/currency-switcher-settings.js'),(5578,'wp-content/plugins/woocommerce-multilingual/res/js/currency-switcher-settings.min.js'),(5579,'wp-content/plugins/woocommerce-multilingual/res/js/dialogs.js'),(5580,'wp-content/plugins/woocommerce-multilingual/res/js/dialogs.min.js'),(5581,'wp-content/plugins/woocommerce-multilingual/res/js/exchange-rates.js'),(5582,'wp-content/plugins/woocommerce-multilingual/res/js/exchange-rates.min.js'),(5583,'wp-content/plugins/woocommerce-multilingual/res/js/files.js'),(5584,'wp-content/plugins/woocommerce-multilingual/res/js/files.min.js'),(5585,'wp-content/plugins/woocommerce-multilingual/res/js/front-scripts.js'),(5586,'wp-content/plugins/woocommerce-multilingual/res/js/front-scripts.min.js'),(5587,'wp-content/plugins/woocommerce-multilingual/res/js/languages_notice.js'),(5588,'wp-content/plugins/woocommerce-multilingual/res/js/languages_notice.min.js'),(5589,'wp-content/plugins/woocommerce-multilingual/res/js/lock_fields.js'),(5590,'wp-content/plugins/woocommerce-multilingual/res/js/lock_fields.min.js'),(5591,'wp-content/plugins/woocommerce-multilingual/res/js/multi-currency.js'),(5592,'wp-content/plugins/woocommerce-multilingual/res/js/multi-currency.min.js'),(5593,'wp-content/plugins/woocommerce-multilingual/res/js/pointer.js'),(5594,'wp-content/plugins/woocommerce-multilingual/res/js/pointer.min.js'),(5595,'wp-content/plugins/woocommerce-multilingual/res/js/prices.js'),(5596,'wp-content/plugins/woocommerce-multilingual/res/js/prices.min.js'),(5597,'wp-content/plugins/woocommerce-multilingual/res/js/product-attributes.js'),(5598,'wp-content/plugins/woocommerce-multilingual/res/js/product-attributes.min.js'),(5599,'wp-content/plugins/woocommerce-multilingual/res/js/product-custom-taxonomies.js'),(5600,'wp-content/plugins/woocommerce-multilingual/res/js/product-custom-taxonomies.min.js'),(5601,'wp-content/plugins/woocommerce-multilingual/res/js/products-screen-option.js'),(5602,'wp-content/plugins/woocommerce-multilingual/res/js/products-screen-option.min.js'),(5603,'wp-content/plugins/woocommerce-multilingual/res/js/scripts.js'),(5604,'wp-content/plugins/woocommerce-multilingual/res/js/scripts.min.js'),(5605,'wp-content/plugins/woocommerce-multilingual/res/js/taxonomy_translation.js'),(5606,'wp-content/plugins/woocommerce-multilingual/res/js/taxonomy_translation.min.js'),(5607,'wp-content/plugins/woocommerce-multilingual/res/js/tooltip_init.js'),(5608,'wp-content/plugins/woocommerce-multilingual/res/js/tooltip_init.min.js'),(5609,'wp-content/plugins/woocommerce-multilingual/res/js/trnsl_interface_dialog_warning.js'),(5610,'wp-content/plugins/woocommerce-multilingual/res/js/trnsl_interface_dialog_warning.min.js'),(5611,'wp-content/plugins/woocommerce-multilingual/res/js/troubleshooting.js'),(5612,'wp-content/plugins/woocommerce-multilingual/res/js/troubleshooting.min.js'),(5613,'wp-content/plugins/woocommerce-multilingual/res/js/wcml-attributes.js'),(5614,'wp-content/plugins/woocommerce-multilingual/res/js/wcml-attributes.min.js'),(5615,'wp-content/plugins/woocommerce-multilingual/res/js/wcml-messages.js'),(5616,'wp-content/plugins/woocommerce-multilingual/res/js/wcml-messages.min.js'),(5617,'wp-content/plugins/woocommerce-multilingual/res/js/wcml-multi-currency.js'),(5618,'wp-content/plugins/woocommerce-multilingual/res/js/wcml-multi-currency.min.js'),(5619,'wp-content/plugins/woocommerce-multilingual/res/js/wcml-setup.js'),(5620,'wp-content/plugins/woocommerce-multilingual/res/js/wcml-setup.min.js'),(5621,'wp-content/plugins/woocommerce-multilingual/res/js/wcml-translation-editor.js'),(5622,'wp-content/plugins/woocommerce-multilingual/res/js/wcml-translation-editor.min.js'),(5623,'wp-content/plugins/woocommerce-multilingual/res/js/widgets.js'),(5624,'wp-content/plugins/woocommerce-multilingual/res/js/widgets.min.js'),(5625,'wp-content/plugins/woocommerce-multilingual/res/js/wpml_tm.js'),(5626,'wp-content/plugins/woocommerce-multilingual/res/js/wpml_tm.min.js'),(5627,'wp-content/plugins/woocommerce-multilingual/screenshot-1.png'),(5628,'wp-content/plugins/woocommerce-multilingual/screenshot-2.png'),(5629,'wp-content/plugins/woocommerce-multilingual/screenshot-3.png'),(5630,'wp-content/plugins/woocommerce-multilingual/screenshot-4.png'),(5631,'wp-content/plugins/woocommerce-multilingual/screenshot-5.png'),(5632,'wp-content/plugins/woocommerce-multilingual/screenshot-6.png'),(5633,'wp-content/plugins/woocommerce-multilingual/screenshot-7.png'),(5634,'wp-content/plugins/woocommerce-multilingual/screenshot-8.png'),(5635,'wp-content/plugins/woocommerce-multilingual/templates/attribute-translation.twig'),(5636,'wp-content/plugins/woocommerce-multilingual/templates/compatibility/product-addons-prices-dialog.twig'),(5637,'wp-content/plugins/woocommerce-multilingual/templates/compatibility/product-addons-prices-settings.twig'),(5638,'wp-content/plugins/woocommerce-multilingual/templates/currency-switchers/legacy-dropdown/config.json'),(5639,'wp-content/plugins/woocommerce-multilingual/templates/currency-switchers/legacy-dropdown/style.css'),(5640,'wp-content/plugins/woocommerce-multilingual/templates/currency-switchers/legacy-dropdown/template.twig'),(5641,'wp-content/plugins/woocommerce-multilingual/templates/currency-switchers/legacy-dropdown-click/config.json'),(5642,'wp-content/plugins/woocommerce-multilingual/templates/currency-switchers/legacy-dropdown-click/script.js'),(5643,'wp-content/plugins/woocommerce-multilingual/templates/currency-switchers/legacy-dropdown-click/style.css'),(5644,'wp-content/plugins/woocommerce-multilingual/templates/currency-switchers/legacy-dropdown-click/template.twig'),(5645,'wp-content/plugins/woocommerce-multilingual/templates/currency-switchers/legacy-list-horizontal/config.json'),(5646,'wp-content/plugins/woocommerce-multilingual/templates/currency-switchers/legacy-list-horizontal/style.css'),(5647,'wp-content/plugins/woocommerce-multilingual/templates/currency-switchers/legacy-list-horizontal/template.twig'),(5648,'wp-content/plugins/woocommerce-multilingual/templates/currency-switchers/legacy-list-vertical/config.json'),(5649,'wp-content/plugins/woocommerce-multilingual/templates/currency-switchers/legacy-list-vertical/style.css'),(5650,'wp-content/plugins/woocommerce-multilingual/templates/currency-switchers/legacy-list-vertical/template.twig'),(5651,'wp-content/plugins/woocommerce-multilingual/templates/custom-files.twig'),(5652,'wp-content/plugins/woocommerce-multilingual/templates/custom-taxonomy-translation.twig'),(5653,'wp-content/plugins/woocommerce-multilingual/templates/languages-notice.twig'),(5654,'wp-content/plugins/woocommerce-multilingual/templates/menus-wrap.twig'),(5655,'wp-content/plugins/woocommerce-multilingual/templates/multi-currency/currencies-dropdown.twig'),(5656,'wp-content/plugins/woocommerce-multilingual/templates/multi-currency/currency-switcher-options-dialog.twig'),(5657,'wp-content/plugins/woocommerce-multilingual/templates/multi-currency/currency-switcher-options.twig'),(5658,'wp-content/plugins/woocommerce-multilingual/templates/multi-currency/custom-prices.twig'),(5659,'wp-content/plugins/woocommerce-multilingual/templates/multi-currency/exchange-rates.twig'),(5660,'wp-content/plugins/woocommerce-multilingual/templates/multi-currency/multi-currency.twig'),(5661,'wp-content/plugins/woocommerce-multilingual/templates/php/plugins-wrap.php'),(5662,'wp-content/plugins/woocommerce-multilingual/templates/pointer-ui.twig'),(5663,'wp-content/plugins/woocommerce-multilingual/templates/products-list/filter.twig'),(5664,'wp-content/plugins/woocommerce-multilingual/templates/products-list/pagination.twig'),(5665,'wp-content/plugins/woocommerce-multilingual/templates/products-list/products.twig'),(5666,'wp-content/plugins/woocommerce-multilingual/templates/removed-cart-items.twig'),(5667,'wp-content/plugins/woocommerce-multilingual/templates/settings-ui.twig'),(5668,'wp-content/plugins/woocommerce-multilingual/templates/setup/attributes.twig'),(5669,'wp-content/plugins/woocommerce-multilingual/templates/setup/footer.twig'),(5670,'wp-content/plugins/woocommerce-multilingual/templates/setup/header.twig'),(5671,'wp-content/plugins/woocommerce-multilingual/templates/setup/introduction.twig'),(5672,'wp-content/plugins/woocommerce-multilingual/templates/setup/multi-currency.twig'),(5673,'wp-content/plugins/woocommerce-multilingual/templates/setup/notice.twig'),(5674,'wp-content/plugins/woocommerce-multilingual/templates/setup/ready.twig'),(5675,'wp-content/plugins/woocommerce-multilingual/templates/setup/store-pages.twig'),(5676,'wp-content/plugins/woocommerce-multilingual/templates/setup/translation-options.twig'),(5677,'wp-content/plugins/woocommerce-multilingual/templates/st-taxonomy-ui.twig'),(5678,'wp-content/plugins/woocommerce-multilingual/templates/status/conf-warn.twig'),(5679,'wp-content/plugins/woocommerce-multilingual/templates/status/media.twig'),(5680,'wp-content/plugins/woocommerce-multilingual/templates/status/multi_currencies.twig'),(5681,'wp-content/plugins/woocommerce-multilingual/templates/status/plugins-status.twig'),(5682,'wp-content/plugins/woocommerce-multilingual/templates/status/products.twig'),(5683,'wp-content/plugins/woocommerce-multilingual/templates/status/status.twig'),(5684,'wp-content/plugins/woocommerce-multilingual/templates/status/store-pages.twig'),(5685,'wp-content/plugins/woocommerce-multilingual/templates/status/taxonomies.twig'),(5686,'wp-content/plugins/woocommerce-multilingual/templates/store-urls/edit-base.twig'),(5687,'wp-content/plugins/woocommerce-multilingual/templates/store-urls/store-urls.twig'),(5688,'wp-content/plugins/woocommerce-multilingual/templates/store-urls/translation-statuses.twig'),(5689,'wp-content/plugins/woocommerce-multilingual/templates/sync-taxonomy.twig'),(5690,'wp-content/plugins/woocommerce-multilingual/templates/trnsl-attributes.twig'),(5691,'wp-content/plugins/woocommerce-multilingual/templates/troubleshooting.twig'),(5692,'wp-content/plugins/woocommerce-multilingual/vendor/autoload.php'),(5693,'wp-content/plugins/woocommerce-multilingual/vendor/composer/ClassLoader.php'),(5694,'wp-content/plugins/woocommerce-multilingual/vendor/composer/LICENSE'),(5695,'wp-content/plugins/woocommerce-multilingual/vendor/composer/autoload_classmap.php'),(5696,'wp-content/plugins/woocommerce-multilingual/vendor/composer/autoload_files.php'),(5697,'wp-content/plugins/woocommerce-multilingual/vendor/composer/autoload_namespaces.php'),(5698,'wp-content/plugins/woocommerce-multilingual/vendor/composer/autoload_psr4.php'),(5699,'wp-content/plugins/woocommerce-multilingual/vendor/composer/autoload_real.php'),(5700,'wp-content/plugins/woocommerce-multilingual/vendor/composer/autoload_static.php'),(5701,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/LICENSE'),(5702,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/phpstan.neon.dist'),(5703,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/AglInstaller.php'),(5704,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php'),(5705,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php'),(5706,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php'),(5707,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php'),(5708,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php'),(5709,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php'),(5710,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php'),(5711,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php'),(5712,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php'),(5713,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php'),(5714,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php'),(5715,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php'),(5716,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php'),(5717,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php'),(5718,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php'),(5719,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php'),(5720,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php'),(5721,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/DframeInstaller.php'),(5722,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php'),(5723,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php'),(5724,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php'),(5725,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php'),(5726,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php'),(5727,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php'),(5728,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php'),(5729,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php'),(5730,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php'),(5731,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/GravInstaller.php'),(5732,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php'),(5733,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php'),(5734,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/Installer.php'),(5735,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php'),(5736,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php'),(5737,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php'),(5738,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php'),(5739,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/KnownInstaller.php'),(5740,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php'),(5741,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php'),(5742,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php'),(5743,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php'),(5744,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php'),(5745,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php'),(5746,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php'),(5747,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php'),(5748,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php'),(5749,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php'),(5750,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php'),(5751,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/MantisBTInstaller.php'),(5752,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php'),(5753,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php'),(5754,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php'),(5755,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/MiaoxingInstaller.php'),(5756,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php'),(5757,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php'),(5758,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php'),(5759,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php'),(5760,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php'),(5761,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php'),(5762,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php'),(5763,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php'),(5764,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/PantheonInstaller.php'),(5765,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php'),(5766,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php'),(5767,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php'),(5768,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php'),(5769,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php'),(5770,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/Plugin.php'),(5771,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php'),(5772,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php'),(5773,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/ProcessWireInstaller.php'),(5774,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php'),(5775,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php'),(5776,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php'),(5777,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php'),(5778,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/Redaxo5Installer.php'),(5779,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php'),(5780,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php'),(5781,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php'),(5782,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php'),(5783,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php'),(5784,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php'),(5785,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/StarbugInstaller.php'),(5786,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php'),(5787,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/SyliusInstaller.php'),(5788,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php'),(5789,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php'),(5790,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php'),(5791,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/TaoInstaller.php'),(5792,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/TastyIgniterInstaller.php'),(5793,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php'),(5794,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php'),(5795,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php'),(5796,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php'),(5797,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php'),(5798,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php'),(5799,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/WinterInstaller.php'),(5800,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php'),(5801,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php'),(5802,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php'),(5803,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php'),(5804,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php'),(5805,'wp-content/plugins/woocommerce-multilingual/vendor/composer/installers/src/bootstrap.php'),(5806,'wp-content/plugins/woocommerce-multilingual/vendor/jakeasmith/http_build_url/LICENSE'),(5807,'wp-content/plugins/woocommerce-multilingual/vendor/jakeasmith/http_build_url/src/http_build_url.php'),(5808,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/css/otgs-icons.css'),(5809,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/fonts/otgs-icons.eot'),(5810,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/fonts/otgs-icons.svg'),(5811,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/fonts/otgs-icons.ttf'),(5812,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/fonts/otgs-icons.woff'),(5813,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/icons-overview.html'),(5814,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/loader.php'),(5815,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/otgs-icons.php'),(5816,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/access/icon-128x128.png'),(5817,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/access/icon-256x256.png'),(5818,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/access/icon.svg'),(5819,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/blocks/icon-128.png'),(5820,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/blocks/icon-256.png'),(5821,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/blocks/icon.svg'),(5822,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/bootstrap/icon-128x128.png'),(5823,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/bootstrap/icon-256x256.png'),(5824,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/bootstrap/icon.svg'),(5825,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/cred/icon-128x128.png'),(5826,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/cred/icon-256x256.png'),(5827,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/cred/icon.svg'),(5828,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/installer/icon-128.png'),(5829,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/installer/icon-256.png'),(5830,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/installer/icon.svg'),(5831,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/layouts/icon-128x128.png'),(5832,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/layouts/icon-256x256.png'),(5833,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/layouts/icon.svg'),(5834,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/maps/icon-128.png'),(5835,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/maps/icon-256.png'),(5836,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/maps/icon.svg'),(5837,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/module-manager/icon-128x128.png'),(5838,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/module-manager/icon-256x256.png'),(5839,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/module-manager/icon.svg'),(5840,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/packager/icon-128x128.png'),(5841,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/packager/icon-256x256.png'),(5842,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/packager/icon.svg'),(5843,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/ref-sites/icon-128x128.png'),(5844,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/ref-sites/icon-256x256.png'),(5845,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/ref-sites/icon.svg'),(5846,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/support/icon-128x128.png'),(5847,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/support/icon-256x256.png'),(5848,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/support/icon.svg'),(5849,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/toolset-core/icon-128x128.png'),(5850,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/toolset-core/icon-256x256.png'),(5851,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/toolset-core/icon.svg'),(5852,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/types/icon-128x128.png'),(5853,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/types/icon-256x256.png'),(5854,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/types/icon.svg'),(5855,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/views/icon-128x128.png'),(5856,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/views/icon-256x256.png'),(5857,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/toolset/views/icon.svg'),(5858,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/acfml/icon-128.x128.png'),(5859,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/acfml/icon-256x256.png'),(5860,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/acfml/icon.svg'),(5861,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/bpml/icon-128x128.png'),(5862,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/bpml/icon-256x256.png'),(5863,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/bpml/icon.svg'),(5864,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/gfml/icon-128x128.png'),(5865,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/gfml/icon-256x256.png'),(5866,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/gfml/icon.svg'),(5867,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wcml/icon-128x128.png'),(5868,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wcml/icon-256x256.png'),(5869,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wcml/icon.svg'),(5870,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-all-import/icon-128.x128.png'),(5871,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-all-import/icon-256x256.png'),(5872,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-all-import/icon.svg'),(5873,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-cms-nav/icon-128x128.png'),(5874,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-cms-nav/icon-256x256.png'),(5875,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-cms-nav/icon.svg'),(5876,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-core/icon-128x128.png'),(5877,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-core/icon-256x256.png'),(5878,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-core/icon.svg'),(5879,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-media/icon-128x128.png'),(5880,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-media/icon-256x256.png'),(5881,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-media/icon.svg'),(5882,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-sl/icon-128x128.png'),(5883,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-sl/icon-256x256.png'),(5884,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-sl/icon.svg'),(5885,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-st/icon-128x128.png'),(5886,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-st/icon-256x256.png'),(5887,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-st/icon.svg'),(5888,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-tm/icon-128x128.png'),(5889,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-tm/icon-256x256.png'),(5890,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/plugin-icons/wpml/wpml-tm/icon.svg'),(5891,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/icons/register.php'),(5892,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/Makefile'),(5893,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/README.md'),(5894,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/dist/css/component-settings-reports/styles.css'),(5895,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/dist/css/otgs-installer-support/styles.css'),(5896,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/dist/js/component-settings-reports/app.js'),(5897,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/dist/js/domPurify/app.js'),(5898,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/dist/js/expired-notice/app.js'),(5899,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/dist/js/otgs-installer-support/app.js'),(5900,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/Config.php'),(5901,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/Dismissed.php'),(5902,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/Display.php'),(5903,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/Loader.php'),(5904,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/MessageTexts.php'),(5905,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/PageConfig.php'),(5906,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/ScreenConfig.php'),(5907,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/Store.php'),(5908,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/config/ToolsetConfig.php'),(5909,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/config/WPMLConfig.php'),(5910,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/notices/Account.php'),(5911,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/notices/ApiConnection.php'),(5912,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/notices/Dismissions.php'),(5913,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/notices/Hooks.php'),(5914,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/notices/Notice.php'),(5915,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/notices/Recommendation.php'),(5916,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/notices/Texts.php'),(5917,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/notices/ToolsetTexts.php'),(5918,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/admin-notices/notices/WPMLTexts.php'),(5919,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/buy-url/class-otgs-installer-buy-url-hooks.php'),(5920,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-installer-dependencies.php'),(5921,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-installer-theme.php'),(5922,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-installer-upgrader-skins.php'),(5923,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-autoloader.php'),(5924,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-debug-info.php'),(5925,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-factory.php'),(5926,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-filename-hooks.php'),(5927,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-icons.php'),(5928,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-loader.php'),(5929,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-package-product-finder.php'),(5930,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-package-product.php'),(5931,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-package.php'),(5932,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-php-functions.php'),(5933,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-plugin-factory.php'),(5934,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-plugin-finder.php'),(5935,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-plugin.php'),(5936,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-plugins-page-notice.php'),(5937,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-plugins-update-cache-cleaner.php'),(5938,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-source-factory.php'),(5939,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-source.php'),(5940,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-subscription-factory.php'),(5941,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-subscription.php'),(5942,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-wp-components-hooks.php'),(5943,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-wp-components-sender.php'),(5944,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-wp-components-setting-ajax.php'),(5945,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-wp-components-setting-resources.php'),(5946,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-wp-components-storage.php'),(5947,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-wp-share-local-components-setting-hooks.php'),(5948,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-otgs-installer-wp-share-local-components-setting.php'),(5949,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-translation-service-info.php'),(5950,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-wp-installer-api.php'),(5951,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-wp-installer-channels.php'),(5952,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/class-wp-installer.php'),(5953,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/debug/class-otgs-installer-log-factory.php'),(5954,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/debug/class-otgs-installer-log.php'),(5955,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/debug/class-otgs-installer-logger-storage.php'),(5956,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/debug/class-otgs-installer-logger.php'),(5957,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/exceptions/OTGS_Installer_Products_Parsing_Exception.php'),(5958,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/exceptions/class-otgs-installer-fetch-subscription-exception.php'),(5959,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/exceptions/class-otgs-installer-site-key-exception.php'),(5960,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/functions-core.php'),(5961,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/functions-templates.php'),(5962,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/instances/class-otgs-installer-instance.php'),(5963,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/instances/class-otgs-installer-instances-factory.php'),(5964,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/instances/class-otgs-installer-instances.php'),(5965,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/loader/Config.php'),(5966,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/otgs-installer-autoload-classmap.php'),(5967,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/products/OTGS_Installer_Products_Parser.php'),(5968,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/products/OTGS_Products_Config_Db_Storage.php'),(5969,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/products/OTGS_Products_Config_Xml.php'),(5970,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/products/OTGS_Products_Manager.php'),(5971,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/products/OTGS_Products_Manager_Factory.php'),(5972,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/products/commercial-tab/DownloadsList.php'),(5973,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/products/commercial-tab/SectionsManager.php'),(5974,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/products/repository/OTGS_Products_Bucket_Repository.php'),(5975,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/products/repository/OTGS_Products_Bucket_Repository_Factory.php'),(5976,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/repository/class-otgs-installer-repositories-factory.php'),(5977,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/repository/class-otgs-installer-repositories.php'),(5978,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/repository/class-otgs-installer-repository-factory.php'),(5979,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/repository/class-otgs-installer-repository.php'),(5980,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/rest/Push.php'),(5981,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/site-key/class-otgs-installer-fetch-subscription.php'),(5982,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/site-key/class-otgs-installer-site-key-ajax.php'),(5983,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/support/class-otgs-installer-connection-test-ajax.php'),(5984,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/support/class-otgs-installer-connection-test-exception.php'),(5985,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/support/class-otgs-installer-connection-test.php'),(5986,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/support/class-otgs-installer-requirements.php'),(5987,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/support/class-otgs-installer-support-hooks.php'),(5988,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/support/class-otgs-installer-support-template-factory.php'),(5989,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/support/class-otgs-installer-support-template.php'),(5990,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/template-service/class-otgs-php-template-service-loader.php'),(5991,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/template-service/class-otgs-php-template-service.php'),(5992,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/template-service/class-otgs-template-service-factory.php'),(5993,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/template-service/class-otgs-template-service-php-model.php'),(5994,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/template-service/interface-otgs-template-service-loader.php'),(5995,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/template-service/interface-otgs-template-service.php'),(5996,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/upgrade/class-otgs-installer-upgrade-response.php'),(5997,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/utilities/Collection.php'),(5998,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/includes/utilities/FP/functions.php'),(5999,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/installer.php'),(6000,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/loader.php'),(6001,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-ar.mo'),(6002,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-de_DE.mo'),(6003,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-el.mo'),(6004,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-es_ES.mo'),(6005,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-fr_FR.mo'),(6006,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-he_IL.mo'),(6007,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-it_IT.mo'),(6008,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-ja.mo'),(6009,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-ko_KR.mo'),(6010,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-nl_NL.mo'),(6011,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-pl_PL.mo'),(6012,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-pt_BR.mo'),(6013,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-pt_PT.mo'),(6014,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-ru_RU.mo'),(6015,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-sv_SE.mo'),(6016,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-uk.mo'),(6017,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-vi.mo'),(6018,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-zh_CN.mo'),(6019,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/installer-zh_TW.mo'),(6020,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/locale/orig/installer.po'),(6021,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/phpcs.compatibility.xml'),(6022,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/phpcs.xml'),(6023,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/phpunit.xml'),(6024,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/repositories.xml'),(6025,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/css/admin-notices.css'),(6026,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/css/admin.css'),(6027,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/complete.png'),(6028,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/computer.png'),(6029,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/dn.gif'),(6030,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/dn2.gif'),(6031,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/globe.png'),(6032,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/icon-info.svg'),(6033,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/icon-notice-refresh.png'),(6034,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/icon-refresh.png'),(6035,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/icon-refund-info-notice.svg'),(6036,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/icon-refund-info.png'),(6037,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/icon-refund-refresh.png'),(6038,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/icon-white-refresh.png'),(6039,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/icon-wpml-info.svg'),(6040,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/icon-wpml-refresh.png'),(6041,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/icon_error.gif'),(6042,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/on.png'),(6043,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/img/spinner.gif'),(6044,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/js/admin.js'),(6045,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/js/channels.js'),(6046,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/js/dismiss-nag.js'),(6047,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/js/install_recommended_plugin.js'),(6048,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/js/installer_theme_install.js'),(6049,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/js/plugins.js'),(6050,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/res/js/save-components-setting.js'),(6051,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/src/Recommendations/RecommendationsManager.php'),(6052,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/src/Recommendations/Storage.php'),(6053,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/src/js/component-settings-reports/app.js'),(6054,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/src/js/domPurify/app.js'),(6055,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/src/js/expired-notice/app.js'),(6056,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/src/js/otgs-installer-support/app.js'),(6057,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/src/js/otgs-installer-support/testConnection.js'),(6058,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/channel-selector.php'),(6059,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/downloads-list-compact.php'),(6060,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/downloads-list.php'),(6061,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/php/components-setting/plugins-page.php'),(6062,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/php/components-setting/share-local-data-setting-radio.php'),(6063,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/php/components-setting/share-local-data-setting.php'),(6064,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/php/support/header-instance.php'),(6065,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/php/support/header.php'),(6066,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/php/support/installer-support.php'),(6067,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/php/support/support-link.php'),(6068,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/products-compact.php'),(6069,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/repository-end-users.php'),(6070,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/repository-expired.php'),(6071,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/repository-legacy-free.php'),(6072,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/repository-listing.php'),(6073,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/repository-refunded.php'),(6074,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/repository-register.php'),(6075,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/repository-registered-buttons.php'),(6076,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/templates/repository-registered.php'),(6077,'wp-content/plugins/woocommerce-multilingual/vendor/otgs/installer/webpack.config.js'),(6078,'wp-content/plugins/woocommerce-multilingual/vendor/wpml-shared/wpml-lib-cache/src/cache/class-wpml-cache-directory.php'),(6079,'wp-content/plugins/woocommerce-multilingual/vendor/wpml-shared/wpml-lib-dependencies/src/dependencies/class-wpml-core-version-check.php'),(6080,'wp-content/plugins/woocommerce-multilingual/vendor/wpml-shared/wpml-lib-dependencies/src/dependencies/class-wpml-dependencies.php'),(6081,'wp-content/plugins/woocommerce-multilingual/vendor/wpml-shared/wpml-lib-dependencies/src/dependencies/class-wpml-php-version-check.php'),(6082,'wp-content/plugins/woocommerce-multilingual/wpml-config.xml'),(6083,'wp-content/plugins/woocommerce-multilingual/wpml-dependencies.json'),(6084,'wp-content/plugins/woocommerce-multilingual/wpml-woocommerce.php'),(6085,'wp-content/plugins/wordfence/crypto/vendor/autoload.php'),(6086,'wp-content/plugins/wordfence/crypto/vendor/composer/ClassLoader.php'),(6087,'wp-content/plugins/wordfence/crypto/vendor/composer/InstalledVersions.php'),(6088,'wp-content/plugins/wordfence/crypto/vendor/composer/LICENSE'),(6089,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_classmap.php'),(6090,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_files.php'),(6091,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_namespaces.php'),(6092,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_psr4.php'),(6093,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_real.php'),(6094,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_static.php'),(6095,'wp-content/plugins/wordfence/crypto/vendor/composer/installed.json'),(6096,'wp-content/plugins/wordfence/crypto/vendor/composer/installed.php'),(6097,'wp-content/plugins/wordfence/crypto/vendor/composer/platform_check.php'),(6098,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/LICENSE'),(6099,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey'),(6100,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc'),(6101,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/byte_safe_strings.php'),(6102,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/cast_to_int.php'),(6103,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/error_polyfill.php'),(6104,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random.php'),(6105,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php'),(6106,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php'),(6107,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium.php'),(6108,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php'),(6109,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php'),(6110,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_int.php'),(6111,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/psalm-autoload.php'),(6112,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/LICENSE'),(6113,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-fast.php'),(6114,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-pedantic.php'),(6115,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-php7.php'),(6116,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-phpunit.php'),(6117,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload.php'),(6118,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/composer-php52.json'),(6119,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/constants.php'),(6120,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/namespaced.php'),(6121,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat.php'),(6122,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat_const.php'),(6123,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/sodium_compat.php'),(6124,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Compat.php'),(6125,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/BLAKE2b.php'),(6126,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/Ctx.php'),(6127,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php'),(6128,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20.php'),(6129,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Fe.php'),(6130,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php'),(6131,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php'),(6132,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php'),(6133,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php'),(6134,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php'),(6135,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/H.php'),(6136,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519.php'),(6137,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Ed25519.php'),(6138,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HChaCha20.php'),(6139,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HSalsa20.php'),(6140,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305/State.php'),(6141,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305.php'),(6142,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Salsa20.php'),(6143,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/SipHash.php'),(6144,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Util.php'),(6145,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/X25519.php'),(6146,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/XChaCha20.php'),(6147,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Xsalsa20.php'),(6148,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Crypto.php'),(6149,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/File.php'),(6150,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/psalm-above-3.xml'),(6151,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/psalm-below-3.xml'),(6152,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Compat.php'),(6153,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/BLAKE2b.php'),(6154,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/Common.php'),(6155,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/Original.php'),(6156,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/UrlSafe.php'),(6157,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/Ctx.php'),(6158,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/IetfCtx.php'),(6159,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20.php'),(6160,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Fe.php'),(6161,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Cached.php'),(6162,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P1p1.php'),(6163,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P2.php'),(6164,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P3.php'),(6165,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Precomp.php'),(6166,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/H.php'),(6167,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519.php'),(6168,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ed25519.php'),(6169,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HChaCha20.php'),(6170,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HSalsa20.php'),(6171,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305/State.php'),(6172,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305.php'),(6173,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Salsa20.php'),(6174,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SecretStream/State.php'),(6175,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SipHash.php'),(6176,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Util.php'),(6177,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/X25519.php'),(6178,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XChaCha20.php'),(6179,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XSalsa20.php'),(6180,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/BLAKE2b.php'),(6181,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/Ctx.php'),(6182,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/IetfCtx.php'),(6183,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20.php'),(6184,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Fe.php'),(6185,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Cached.php'),(6186,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php'),(6187,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P2.php'),(6188,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P3.php'),(6189,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php'),(6190,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/H.php'),(6191,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519.php'),(6192,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Ed25519.php'),(6193,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HChaCha20.php'),(6194,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HSalsa20.php'),(6195,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int32.php'),(6196,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int64.php'),(6197,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305/State.php'),(6198,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305.php'),(6199,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Salsa20.php'),(6200,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SecretStream/State.php'),(6201,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SipHash.php'),(6202,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Util.php'),(6203,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/X25519.php'),(6204,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XChaCha20.php'),(6205,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XSalsa20.php'),(6206,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto.php'),(6207,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto32.php'),(6208,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/File.php'),(6209,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/PHP52/SplFixedArray.php'),(6210,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/SodiumException.php'),(6211,'wp-content/plugins/wordfence/css/activity-report-widget.1647958122.css'),(6212,'wp-content/plugins/wordfence/css/diff.1647958122.css'),(6213,'wp-content/plugins/wordfence/css/dt_table.1647958122.css'),(6214,'wp-content/plugins/wordfence/css/fullLog.1647958122.css'),(6215,'wp-content/plugins/wordfence/css/images/ui-icons_444444_256x240.png'),(6216,'wp-content/plugins/wordfence/css/images/ui-icons_555555_256x240.png'),(6217,'wp-content/plugins/wordfence/css/images/ui-icons_777620_256x240.png'),(6218,'wp-content/plugins/wordfence/css/images/ui-icons_777777_256x240.png'),(6219,'wp-content/plugins/wordfence/css/images/ui-icons_cc0000_256x240.png'),(6220,'wp-content/plugins/wordfence/css/images/ui-icons_ffffff_256x240.png'),(6221,'wp-content/plugins/wordfence/css/iptraf.1647958122.css'),(6222,'wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.1647958122.css'),(6223,'wp-content/plugins/wordfence/css/jquery-ui.min.1647958122.css'),(6224,'wp-content/plugins/wordfence/css/jquery-ui.structure.min.1647958122.css'),(6225,'wp-content/plugins/wordfence/css/jquery-ui.theme.min.1647958122.css'),(6226,'wp-content/plugins/wordfence/css/license/care-global.1647958122.css'),(6227,'wp-content/plugins/wordfence/css/license/care.1647958122.css'),(6228,'wp-content/plugins/wordfence/css/license/free-global.1647958122.css'),(6229,'wp-content/plugins/wordfence/css/license/free.1647958122.css'),(6230,'wp-content/plugins/wordfence/css/license/premium-global.1647958122.css'),(6231,'wp-content/plugins/wordfence/css/license/premium.1647958122.css'),(6232,'wp-content/plugins/wordfence/css/license/response-global.1647958122.css'),(6233,'wp-content/plugins/wordfence/css/license/response-variables.1647958122.css'),(6234,'wp-content/plugins/wordfence/css/license/response.1647958122.css'),(6235,'wp-content/plugins/wordfence/css/main.1647958122.css'),(6236,'wp-content/plugins/wordfence/css/phpinfo.1647958122.css'),(6237,'wp-content/plugins/wordfence/css/wf-adminbar.1647958122.css'),(6238,'wp-content/plugins/wordfence/css/wf-colorbox.1647958122.css'),(6239,'wp-content/plugins/wordfence/css/wf-font-awesome.1647958122.css'),(6240,'wp-content/plugins/wordfence/css/wf-global.1647958122.css'),(6241,'wp-content/plugins/wordfence/css/wf-ionicons.1647958122.css'),(6242,'wp-content/plugins/wordfence/css/wf-onboarding.1647958122.css'),(6243,'wp-content/plugins/wordfence/css/wf-roboto-font.1647958122.css'),(6244,'wp-content/plugins/wordfence/css/wfselect2.min.1647958122.css'),(6245,'wp-content/plugins/wordfence/css/wordfenceBox.1647958122.css'),(6246,'wp-content/plugins/wordfence/fonts/fontawesome-webfont.woff'),(6247,'wp-content/plugins/wordfence/fonts/ionicons.woff'),(6248,'wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xGIzQXKMnyrYk.woff'),(6249,'wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xIIzQXKMny.woff'),(6250,'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fBBc-AMP6lQ.woff'),(6251,'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fChc-AMP6lbBP.woff'),(6252,'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fBBc-AMP6lQ.woff'),(6253,'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fChc-AMP6lbBP.woff'),(6254,'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfBBc-AMP6lQ.woff'),(6255,'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfChc-AMP6lbBP.woff'),(6256,'wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu4mxMKTU1Kg.woff'),(6257,'wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu7GxMKTU1Kvnz.woff'),(6258,'wp-content/plugins/wordfence/images/2fa-whole.svg'),(6259,'wp-content/plugins/wordfence/images/2fa1.svg'),(6260,'wp-content/plugins/wordfence/images/2fa2.svg'),(6261,'wp-content/plugins/wordfence/images/back_disabled.jpg'),(6262,'wp-content/plugins/wordfence/images/back_enabled.jpg'),(6263,'wp-content/plugins/wordfence/images/blocking.svg'),(6264,'wp-content/plugins/wordfence/images/button-grad-grey.png'),(6265,'wp-content/plugins/wordfence/images/checkbox.png'),(6266,'wp-content/plugins/wordfence/images/flags.png'),(6267,'wp-content/plugins/wordfence/images/forward_disabled.jpg'),(6268,'wp-content/plugins/wordfence/images/forward_enabled.jpg'),(6269,'wp-content/plugins/wordfence/images/help.png'),(6270,'wp-content/plugins/wordfence/images/icons/ajax24.gif'),(6271,'wp-content/plugins/wordfence/images/icons/ajax3.gif'),(6272,'wp-content/plugins/wordfence/images/icons/ajaxRed16.gif'),(6273,'wp-content/plugins/wordfence/images/icons/ajaxScan.gif'),(6274,'wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif'),(6275,'wp-content/plugins/wordfence/images/icons/arrow_refresh.png'),(6276,'wp-content/plugins/wordfence/images/icons/bullet_yellow.png'),(6277,'wp-content/plugins/wordfence/images/icons/check-care.svg'),(6278,'wp-content/plugins/wordfence/images/icons/check-premium.svg'),(6279,'wp-content/plugins/wordfence/images/icons/check-response.svg'),(6280,'wp-content/plugins/wordfence/images/icons/check.svg'),(6281,'wp-content/plugins/wordfence/images/icons/email_go.png'),(6282,'wp-content/plugins/wordfence/images/icons/error128.png'),(6283,'wp-content/plugins/wordfence/images/icons/magnifier.png'),(6284,'wp-content/plugins/wordfence/images/icons/tick128.png'),(6285,'wp-content/plugins/wordfence/images/icons/warning128.png'),(6286,'wp-content/plugins/wordfence/images/icons/working-indicator.gif'),(6287,'wp-content/plugins/wordfence/images/lightbox-controls.png'),(6288,'wp-content/plugins/wordfence/images/loading.gif'),(6289,'wp-content/plugins/wordfence/images/loading_background.png'),(6290,'wp-content/plugins/wordfence/images/loading_large.gif'),(6291,'wp-content/plugins/wordfence/images/logo.png'),(6292,'wp-content/plugins/wordfence/images/logos/shield-care.svg'),(6293,'wp-content/plugins/wordfence/images/logos/shield-free.svg'),(6294,'wp-content/plugins/wordfence/images/logos/shield-premium.svg'),(6295,'wp-content/plugins/wordfence/images/logos/shield-response.svg'),(6296,'wp-content/plugins/wordfence/images/logos/shield-white.svg'),(6297,'wp-content/plugins/wordfence/images/options.svg'),(6298,'wp-content/plugins/wordfence/images/ratelimiting.svg'),(6299,'wp-content/plugins/wordfence/images/sort_asc.gif'),(6300,'wp-content/plugins/wordfence/images/sort_asc.png'),(6301,'wp-content/plugins/wordfence/images/sort_asc_disabled.gif'),(6302,'wp-content/plugins/wordfence/images/sort_asc_disabled.png'),(6303,'wp-content/plugins/wordfence/images/sort_both.gif'),(6304,'wp-content/plugins/wordfence/images/sort_both.png'),(6305,'wp-content/plugins/wordfence/images/sort_desc.gif'),(6306,'wp-content/plugins/wordfence/images/sort_desc.png'),(6307,'wp-content/plugins/wordfence/images/sort_desc_disabled.gif'),(6308,'wp-content/plugins/wordfence/images/sort_desc_disabled.png'),(6309,'wp-content/plugins/wordfence/images/support.svg'),(6310,'wp-content/plugins/wordfence/images/tools.svg'),(6311,'wp-content/plugins/wordfence/images/wf-central-logo.svg'),(6312,'wp-content/plugins/wordfence/images/wf-error-badge.svg'),(6313,'wp-content/plugins/wordfence/images/wf-horizontal.svg'),(6314,'wp-content/plugins/wordfence/images/wordfence-logo.svg'),(6315,'wp-content/plugins/wordfence/index.php'),(6316,'wp-content/plugins/wordfence/js/Chart.bundle.min.1647958122.js'),(6317,'wp-content/plugins/wordfence/js/admin.1647958122.js'),(6318,'wp-content/plugins/wordfence/js/admin.ajaxWatcher.1647958122.js'),(6319,'wp-content/plugins/wordfence/js/admin.liveTraffic.1647958122.js'),(6320,'wp-content/plugins/wordfence/js/date.1647958122.js'),(6321,'wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.1647958122.js'),(6322,'wp-content/plugins/wordfence/js/jquery.colorbox-min.1647958122.js'),(6323,'wp-content/plugins/wordfence/js/jquery.colorbox.1647958122.js'),(6324,'wp-content/plugins/wordfence/js/jquery.dataTables.min.1647958122.js'),(6325,'wp-content/plugins/wordfence/js/jquery.qrcode.min.1647958122.js'),(6326,'wp-content/plugins/wordfence/js/jquery.tmpl.min.1647958122.js'),(6327,'wp-content/plugins/wordfence/js/jquery.tools.min.1647958122.js'),(6328,'wp-content/plugins/wordfence/js/knockout-3.5.1.1647958122.js'),(6329,'wp-content/plugins/wordfence/js/wfdashboard.1647958122.js'),(6330,'wp-content/plugins/wordfence/js/wfdropdown.1647958122.js'),(6331,'wp-content/plugins/wordfence/js/wfglobal.1647958122.js'),(6332,'wp-content/plugins/wordfence/js/wfi18n.1647958122.js'),(6333,'wp-content/plugins/wordfence/js/wfpopover.1647958122.js'),(6334,'wp-content/plugins/wordfence/js/wfselect2.min.1647958122.js'),(6335,'wp-content/plugins/wordfence/languages/wordfence.mo'),(6336,'wp-content/plugins/wordfence/languages/wordfence.po'),(6337,'wp-content/plugins/wordfence/lib/.htaccess'),(6338,'wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php'),(6339,'wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php'),(6340,'wp-content/plugins/wordfence/lib/Diff/Renderer/Html/SideBySide.php'),(6341,'wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php'),(6342,'wp-content/plugins/wordfence/lib/Diff.php'),(6343,'wp-content/plugins/wordfence/lib/GeoLite2-Country.mmdb'),(6344,'wp-content/plugins/wordfence/lib/IPTraf.php'),(6345,'wp-content/plugins/wordfence/lib/IPTrafList.php'),(6346,'wp-content/plugins/wordfence/lib/WFLSPHP52Compatability.php'),(6347,'wp-content/plugins/wordfence/lib/compat.php'),(6348,'wp-content/plugins/wordfence/lib/dashboard/widget_content_countries.php'),(6349,'wp-content/plugins/wordfence/lib/dashboard/widget_content_ips.php'),(6350,'wp-content/plugins/wordfence/lib/dashboard/widget_content_logins.php'),(6351,'wp-content/plugins/wordfence/lib/dashboard/widget_countries.php'),(6352,'wp-content/plugins/wordfence/lib/dashboard/widget_ips.php'),(6353,'wp-content/plugins/wordfence/lib/dashboard/widget_localattacks.php'),(6354,'wp-content/plugins/wordfence/lib/dashboard/widget_logins.php'),(6355,'wp-content/plugins/wordfence/lib/dashboard/widget_networkattacks.php'),(6356,'wp-content/plugins/wordfence/lib/dashboard/widget_notifications.php'),(6357,'wp-content/plugins/wordfence/lib/diffResult.php'),(6358,'wp-content/plugins/wordfence/lib/email_genericAlert.php'),(6359,'wp-content/plugins/wordfence/lib/email_newIssues.php'),(6360,'wp-content/plugins/wordfence/lib/email_unlockRequest.php'),(6361,'wp-content/plugins/wordfence/lib/email_unsubscribeRequest.php'),(6362,'wp-content/plugins/wordfence/lib/flags.php'),(6363,'wp-content/plugins/wordfence/lib/live_activity.php'),(6364,'wp-content/plugins/wordfence/lib/menu_dashboard.php'),(6365,'wp-content/plugins/wordfence/lib/menu_dashboard_options.php'),(6366,'wp-content/plugins/wordfence/lib/menu_firewall.php'),(6367,'wp-content/plugins/wordfence/lib/menu_firewall_blocking.php'),(6368,'wp-content/plugins/wordfence/lib/menu_firewall_blocking_options.php'),(6369,'wp-content/plugins/wordfence/lib/menu_firewall_waf.php'),(6370,'wp-content/plugins/wordfence/lib/menu_firewall_waf_options.php'),(6371,'wp-content/plugins/wordfence/lib/menu_options.php'),(6372,'wp-content/plugins/wordfence/lib/menu_scanner.php'),(6373,'wp-content/plugins/wordfence/lib/menu_scanner_credentials.php'),(6374,'wp-content/plugins/wordfence/lib/menu_scanner_options.php'),(6375,'wp-content/plugins/wordfence/lib/menu_support.php'),(6376,'wp-content/plugins/wordfence/lib/menu_tools.php'),(6377,'wp-content/plugins/wordfence/lib/menu_tools_diagnostic.php'),(6378,'wp-content/plugins/wordfence/lib/menu_tools_importExport.php'),(6379,'wp-content/plugins/wordfence/lib/menu_tools_livetraffic.php'),(6380,'wp-content/plugins/wordfence/lib/menu_tools_twoFactor.php'),(6381,'wp-content/plugins/wordfence/lib/menu_tools_whois.php'),(6382,'wp-content/plugins/wordfence/lib/menu_wordfence_central.php'),(6383,'wp-content/plugins/wordfence/lib/noc1.key'),(6384,'wp-content/plugins/wordfence/lib/rest-api/wfRESTAuthenticationController.php'),(6385,'wp-content/plugins/wordfence/lib/rest-api/wfRESTBaseController.php'),(6386,'wp-content/plugins/wordfence/lib/rest-api/wfRESTConfigController.php'),(6387,'wp-content/plugins/wordfence/lib/rest-api/wfRESTScanController.php'),(6388,'wp-content/plugins/wordfence/lib/sysinfo.php'),(6389,'wp-content/plugins/wordfence/lib/viewFullActivityLog.php'),(6390,'wp-content/plugins/wordfence/lib/wf503.php'),(6391,'wp-content/plugins/wordfence/lib/wfAPI.php'),(6392,'wp-content/plugins/wordfence/lib/wfActivityReport.php'),(6393,'wp-content/plugins/wordfence/lib/wfAdminNoticeQueue.php'),(6394,'wp-content/plugins/wordfence/lib/wfAlerts.php'),(6395,'wp-content/plugins/wordfence/lib/wfArray.php'),(6396,'wp-content/plugins/wordfence/lib/wfBrowscap.php'),(6397,'wp-content/plugins/wordfence/lib/wfBrowscapCache.php'),(6398,'wp-content/plugins/wordfence/lib/wfBulkCountries.php'),(6399,'wp-content/plugins/wordfence/lib/wfCache.php'),(6400,'wp-content/plugins/wordfence/lib/wfCentralAPI.php'),(6401,'wp-content/plugins/wordfence/lib/wfConfig.php'),(6402,'wp-content/plugins/wordfence/lib/wfCrawl.php'),(6403,'wp-content/plugins/wordfence/lib/wfCredentialsController.php'),(6404,'wp-content/plugins/wordfence/lib/wfCrypt.php'),(6405,'wp-content/plugins/wordfence/lib/wfDB.php'),(6406,'wp-content/plugins/wordfence/lib/wfDashboard.php'),(6407,'wp-content/plugins/wordfence/lib/wfDateLocalization.php'),(6408,'wp-content/plugins/wordfence/lib/wfDiagnostic.php'),(6409,'wp-content/plugins/wordfence/lib/wfDict.php'),(6410,'wp-content/plugins/wordfence/lib/wfDirectoryIterator.php'),(6411,'wp-content/plugins/wordfence/lib/wfHelperBin.php'),(6412,'wp-content/plugins/wordfence/lib/wfHelperString.php'),(6413,'wp-content/plugins/wordfence/lib/wfIPWhitelist.php'),(6414,'wp-content/plugins/wordfence/lib/wfImportExportController.php'),(6415,'wp-content/plugins/wordfence/lib/wfIssues.php'),(6416,'wp-content/plugins/wordfence/lib/wfJWT.php'),(6417,'wp-content/plugins/wordfence/lib/wfLicense.php'),(6418,'wp-content/plugins/wordfence/lib/wfLockedOut.php'),(6419,'wp-content/plugins/wordfence/lib/wfLog.php'),(6420,'wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php'),(6421,'wp-content/plugins/wordfence/lib/wfModuleController.php'),(6422,'wp-content/plugins/wordfence/lib/wfNotification.php'),(6423,'wp-content/plugins/wordfence/lib/wfOnboardingController.php'),(6424,'wp-content/plugins/wordfence/lib/wfPersistenceController.php'),(6425,'wp-content/plugins/wordfence/lib/wfRESTAPI.php'),(6426,'wp-content/plugins/wordfence/lib/wfScan.php'),(6427,'wp-content/plugins/wordfence/lib/wfScanEngine.php'),(6428,'wp-content/plugins/wordfence/lib/wfSchema.php'),(6429,'wp-content/plugins/wordfence/lib/wfStyle.php'),(6430,'wp-content/plugins/wordfence/lib/wfSupportController.php'),(6431,'wp-content/plugins/wordfence/lib/wfUnlockMsg.php'),(6432,'wp-content/plugins/wordfence/lib/wfUpdateCheck.php'),(6433,'wp-content/plugins/wordfence/lib/wfUtils.php'),(6434,'wp-content/plugins/wordfence/lib/wfVersionCheckController.php'),(6435,'wp-content/plugins/wordfence/lib/wfView.php'),(6436,'wp-content/plugins/wordfence/lib/wfViewResult.php'),(6437,'wp-content/plugins/wordfence/lib/wordfenceClass.php'),(6438,'wp-content/plugins/wordfence/lib/wordfenceConstants.php'),(6439,'wp-content/plugins/wordfence/lib/wordfenceHash.php'),(6440,'wp-content/plugins/wordfence/lib/wordfenceScanner.php'),(6441,'wp-content/plugins/wordfence/lib/wordfenceURLHoover.php'),(6442,'wp-content/plugins/wordfence/license.txt'),(6443,'wp-content/plugins/wordfence/models/.htaccess'),(6444,'wp-content/plugins/wordfence/models/block/wfBlock.php'),(6445,'wp-content/plugins/wordfence/models/block/wfRateLimit.php'),(6446,'wp-content/plugins/wordfence/models/common/wfGeoIP2.php'),(6447,'wp-content/plugins/wordfence/models/common/wfTab.php'),(6448,'wp-content/plugins/wordfence/models/firewall/wfFirewall.php'),(6449,'wp-content/plugins/wordfence/models/page/wfPage.php'),(6450,'wp-content/plugins/wordfence/models/scanner/wfScanner.php'),(6451,'wp-content/plugins/wordfence/modules/login-security/classes/.htaccess'),(6452,'wp-content/plugins/wordfence/modules/login-security/classes/controller/ajax.php'),(6453,'wp-content/plugins/wordfence/modules/login-security/classes/controller/captcha.php'),(6454,'wp-content/plugins/wordfence/modules/login-security/classes/controller/cron.php'),(6455,'wp-content/plugins/wordfence/modules/login-security/classes/controller/db.php'),(6456,'wp-content/plugins/wordfence/modules/login-security/classes/controller/notices.php'),(6457,'wp-content/plugins/wordfence/modules/login-security/classes/controller/permissions.php'),(6458,'wp-content/plugins/wordfence/modules/login-security/classes/controller/settings.php'),(6459,'wp-content/plugins/wordfence/modules/login-security/classes/controller/support.php'),(6460,'wp-content/plugins/wordfence/modules/login-security/classes/controller/time.php'),(6461,'wp-content/plugins/wordfence/modules/login-security/classes/controller/totp.php'),(6462,'wp-content/plugins/wordfence/modules/login-security/classes/controller/users.php'),(6463,'wp-content/plugins/wordfence/modules/login-security/classes/controller/whitelist.php'),(6464,'wp-content/plugins/wordfence/modules/login-security/classes/controller/wordfencels.php'),(6465,'wp-content/plugins/wordfence/modules/login-security/classes/model/asset.php'),(6466,'wp-content/plugins/wordfence/modules/login-security/classes/model/compat.php'),(6467,'wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/base2n.php'),(6468,'wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/jwt.php'),(6469,'wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/symmetric.php'),(6470,'wp-content/plugins/wordfence/modules/login-security/classes/model/crypto.php'),(6471,'wp-content/plugins/wordfence/modules/login-security/classes/model/ip.php'),(6472,'wp-content/plugins/wordfence/modules/login-security/classes/model/notice.php'),(6473,'wp-content/plugins/wordfence/modules/login-security/classes/model/request.php'),(6474,'wp-content/plugins/wordfence/modules/login-security/classes/model/settings/db.php'),(6475,'wp-content/plugins/wordfence/modules/login-security/classes/model/settings/wpoptions.php'),(6476,'wp-content/plugins/wordfence/modules/login-security/classes/model/settings.php'),(6477,'wp-content/plugins/wordfence/modules/login-security/classes/model/text/html.php'),(6478,'wp-content/plugins/wordfence/modules/login-security/classes/model/text/javascript.php'),(6479,'wp-content/plugins/wordfence/modules/login-security/classes/model/tokenbucket.php'),(6480,'wp-content/plugins/wordfence/modules/login-security/classes/model/view/tab.php'),(6481,'wp-content/plugins/wordfence/modules/login-security/classes/model/view/title.php'),(6482,'wp-content/plugins/wordfence/modules/login-security/classes/model/view.php'),(6483,'wp-content/plugins/wordfence/modules/login-security/css/admin-global.1647958122.css'),(6484,'wp-content/plugins/wordfence/modules/login-security/css/admin.1647958122.css'),(6485,'wp-content/plugins/wordfence/modules/login-security/css/colorbox.1647958122.css'),(6486,'wp-content/plugins/wordfence/modules/login-security/css/font-awesome.1647958122.css'),(6487,'wp-content/plugins/wordfence/modules/login-security/css/ionicons.1647958122.css'),(6488,'wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.min.1647958122.css'),(6489,'wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.structure.min.1647958122.css'),(6490,'wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.theme.min.1647958122.css'),(6491,'wp-content/plugins/wordfence/modules/login-security/css/login.1647958122.css'),(6492,'wp-content/plugins/wordfence/modules/login-security/img/header.svg'),(6493,'wp-content/plugins/wordfence/modules/login-security/img/lightbox-controls.png'),(6494,'wp-content/plugins/wordfence/modules/login-security/img/loading.gif'),(6495,'wp-content/plugins/wordfence/modules/login-security/img/loading_background.png'),(6496,'wp-content/plugins/wordfence/modules/login-security/img/menu.svg'),(6497,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_444444_256x240.png'),(6498,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_555555_256x240.png'),(6499,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777620_256x240.png'),(6500,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777777_256x240.png'),(6501,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_cc0000_256x240.png'),(6502,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_ffffff_256x240.png'),(6503,'wp-content/plugins/wordfence/modules/login-security/js/admin-global.1647958122.js'),(6504,'wp-content/plugins/wordfence/modules/login-security/js/admin.1647958122.js'),(6505,'wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.1647958122.js'),(6506,'wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.min.1647958122.js'),(6507,'wp-content/plugins/wordfence/modules/login-security/js/jquery.qrcode.min.1647958122.js'),(6508,'wp-content/plugins/wordfence/modules/login-security/js/jquery.tmpl.min.1647958122.js'),(6509,'wp-content/plugins/wordfence/modules/login-security/js/login.1647958122.js'),(6510,'wp-content/plugins/wordfence/modules/login-security/views/.htaccess'),(6511,'wp-content/plugins/wordfence/modules/login-security/views/common/modal-prompt.php'),(6512,'wp-content/plugins/wordfence/modules/login-security/views/common/reset-grace-period.php'),(6513,'wp-content/plugins/wordfence/modules/login-security/views/common/revoke-grace-period.php'),(6514,'wp-content/plugins/wordfence/modules/login-security/views/email/login-verification.php'),(6515,'wp-content/plugins/wordfence/modules/login-security/views/manage/activate.php'),(6516,'wp-content/plugins/wordfence/modules/login-security/views/manage/code.php'),(6517,'wp-content/plugins/wordfence/modules/login-security/views/manage/deactivate.php'),(6518,'wp-content/plugins/wordfence/modules/login-security/views/manage/grace-period.php'),(6519,'wp-content/plugins/wordfence/modules/login-security/views/manage/regenerate.php'),(6520,'wp-content/plugins/wordfence/modules/login-security/views/onboarding/standalone-header.php'),(6521,'wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha-threshold.php'),(6522,'wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha.php'),(6523,'wp-content/plugins/wordfence/modules/login-security/views/options/option-ip-source.php'),(6524,'wp-content/plugins/wordfence/modules/login-security/views/options/option-label.php'),(6525,'wp-content/plugins/wordfence/modules/login-security/views/options/option-ntp.php'),(6526,'wp-content/plugins/wordfence/modules/login-security/views/options/option-roles.php'),(6527,'wp-content/plugins/wordfence/modules/login-security/views/options/option-select.php'),(6528,'wp-content/plugins/wordfence/modules/login-security/views/options/option-switch.php'),(6529,'wp-content/plugins/wordfence/modules/login-security/views/options/option-text.php'),(6530,'wp-content/plugins/wordfence/modules/login-security/views/options/option-textarea.php'),(6531,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-boolean-switch.php'),(6532,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-multiple.php'),(6533,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-segmented.php'),(6534,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-select.php'),(6535,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-sub.php'),(6536,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-textarea.php'),(6537,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled.php'),(6538,'wp-content/plugins/wordfence/modules/login-security/views/options/option-token.php'),(6539,'wp-content/plugins/wordfence/modules/login-security/views/page/manage.php'),(6540,'wp-content/plugins/wordfence/modules/login-security/views/page/page.php'),(6541,'wp-content/plugins/wordfence/modules/login-security/views/page/role.php'),(6542,'wp-content/plugins/wordfence/modules/login-security/views/page/section-title.php'),(6543,'wp-content/plugins/wordfence/modules/login-security/views/page/settings.php'),(6544,'wp-content/plugins/wordfence/modules/login-security/views/page/tabbar.php'),(6545,'wp-content/plugins/wordfence/modules/login-security/views/settings/options.php'),(6546,'wp-content/plugins/wordfence/modules/login-security/views/settings/user-stats.php'),(6547,'wp-content/plugins/wordfence/modules/login-security/views/user/grace-period-toggle.php'),(6548,'wp-content/plugins/wordfence/modules/login-security/wordfence-login-security.php'),(6549,'wp-content/plugins/wordfence/readme.txt'),(6550,'wp-content/plugins/wordfence/tmp/.htaccess'),(6551,'wp-content/plugins/wordfence/vendor/.htaccess'),(6552,'wp-content/plugins/wordfence/vendor/autoload.php'),(6553,'wp-content/plugins/wordfence/vendor/composer/ClassLoader.php'),(6554,'wp-content/plugins/wordfence/vendor/composer/LICENSE'),(6555,'wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php'),(6556,'wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php'),(6557,'wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php'),(6558,'wp-content/plugins/wordfence/vendor/composer/autoload_real.php'),(6559,'wp-content/plugins/wordfence/vendor/composer/autoload_static.php'),(6560,'wp-content/plugins/wordfence/vendor/composer/ca-bundle/LICENSE'),(6561,'wp-content/plugins/wordfence/vendor/composer/ca-bundle/res/cacert.pem'),(6562,'wp-content/plugins/wordfence/vendor/composer/ca-bundle/src/CaBundle.php'),(6563,'wp-content/plugins/wordfence/vendor/composer/installed.json'),(6564,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/.gitmodules'),(6565,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/.php_cs'),(6566,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/LICENSE'),(6567,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Database/Reader.php'),(6568,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/AddressNotFoundException.php'),(6569,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/AuthenticationException.php'),(6570,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/GeoIp2Exception.php'),(6571,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/HttpException.php'),(6572,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/InvalidRequestException.php'),(6573,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/OutOfQueriesException.php'),(6574,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/AbstractModel.php'),(6575,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/AnonymousIp.php'),(6576,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Asn.php'),(6577,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/City.php'),(6578,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/ConnectionType.php'),(6579,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Country.php'),(6580,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Domain.php'),(6581,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Enterprise.php'),(6582,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Insights.php'),(6583,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Isp.php'),(6584,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/ProviderInterface.php'),(6585,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/AbstractPlaceRecord.php'),(6586,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/AbstractRecord.php'),(6587,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/City.php'),(6588,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Continent.php'),(6589,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Country.php'),(6590,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Location.php'),(6591,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/MaxMind.php'),(6592,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Postal.php'),(6593,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/RepresentedCountry.php'),(6594,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Subdivision.php'),(6595,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Traits.php'),(6596,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/WebService/Client.php'),(6597,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/LICENSE'),(6598,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/AuthenticationException.php'),(6599,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/HttpException.php'),(6600,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InsufficientFundsException.php'),(6601,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InvalidInputException.php'),(6602,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InvalidRequestException.php'),(6603,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/IpAddressNotFoundException.php'),(6604,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/PermissionRequiredException.php'),(6605,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/WebServiceException.php'),(6606,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Client.php'),(6607,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/CurlRequest.php'),(6608,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/Request.php'),(6609,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/RequestFactory.php'),(6610,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/LICENSE'),(6611,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/autoload.php'),(6612,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php'),(6613,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php'),(6614,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Metadata.php'),(6615,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php'),(6616,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader.php'),(6617,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem'),(6618,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/falsepositive.key'),(6619,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php'),(6620,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php'),(6621,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php'),(6622,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/i18n.php'),(6623,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/json.php'),(6624,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/lexer.php'),(6625,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/parser.php'),(6626,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php'),(6627,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php'),(6628,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php'),(6629,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php'),(6630,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/mysql.php'),(6631,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php'),(6632,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php'),(6633,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/view.php'),(6634,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php'),(6635,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/xmlrpc.php'),(6636,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/rules.key'),(6637,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-blacklist.php'),(6638,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php'),(6639,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php'),(6640,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503-lockout.php'),(6641,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php'),(6642,'wp-content/plugins/wordfence/views/.htaccess'),(6643,'wp-content/plugins/wordfence/views/blocking/block-list.php'),(6644,'wp-content/plugins/wordfence/views/blocking/blocking-create.php'),(6645,'wp-content/plugins/wordfence/views/blocking/blocking-status.php'),(6646,'wp-content/plugins/wordfence/views/blocking/country-block-map.php'),(6647,'wp-content/plugins/wordfence/views/blocking/country-modal.php'),(6648,'wp-content/plugins/wordfence/views/blocking/option-bypass-cookie.php'),(6649,'wp-content/plugins/wordfence/views/blocking/option-bypass-redirect.php'),(6650,'wp-content/plugins/wordfence/views/blocking/options-group-advanced-country.php'),(6651,'wp-content/plugins/wordfence/views/common/block-navigation-option.php'),(6652,'wp-content/plugins/wordfence/views/common/indeterminate-progress.php'),(6653,'wp-content/plugins/wordfence/views/common/license.php'),(6654,'wp-content/plugins/wordfence/views/common/modal-prompt.php'),(6655,'wp-content/plugins/wordfence/views/common/page-fixed-tabbar.php'),(6656,'wp-content/plugins/wordfence/views/common/page-help.php'),(6657,'wp-content/plugins/wordfence/views/common/page-tabbar.php'),(6658,'wp-content/plugins/wordfence/views/common/page-title.php'),(6659,'wp-content/plugins/wordfence/views/common/section-subtitle.php'),(6660,'wp-content/plugins/wordfence/views/common/section-title.php'),(6661,'wp-content/plugins/wordfence/views/common/status-circular.php'),(6662,'wp-content/plugins/wordfence/views/common/status-critical.php'),(6663,'wp-content/plugins/wordfence/views/common/status-detail.php'),(6664,'wp-content/plugins/wordfence/views/common/status-tooltip.php'),(6665,'wp-content/plugins/wordfence/views/common/status-warning.php'),(6666,'wp-content/plugins/wordfence/views/common/unsubscribe.php'),(6667,'wp-content/plugins/wordfence/views/dashboard/global-status.php'),(6668,'wp-content/plugins/wordfence/views/dashboard/option-howgetips.php'),(6669,'wp-content/plugins/wordfence/views/dashboard/options-group-alert.php'),(6670,'wp-content/plugins/wordfence/views/dashboard/options-group-dashboard.php'),(6671,'wp-content/plugins/wordfence/views/dashboard/options-group-email-summary.php'),(6672,'wp-content/plugins/wordfence/views/dashboard/options-group-general.php'),(6673,'wp-content/plugins/wordfence/views/dashboard/options-group-import.php'),(6674,'wp-content/plugins/wordfence/views/dashboard/options-group-license.php'),(6675,'wp-content/plugins/wordfence/views/dashboard/options-group-view-customization.php'),(6676,'wp-content/plugins/wordfence/views/dashboard/status-payment-expiring.php'),(6677,'wp-content/plugins/wordfence/views/dashboard/status-renewing.php'),(6678,'wp-content/plugins/wordfence/views/diagnostics/text.php'),(6679,'wp-content/plugins/wordfence/views/gdpr/banner.php'),(6680,'wp-content/plugins/wordfence/views/gdpr/disabled-overlay.php'),(6681,'wp-content/plugins/wordfence/views/onboarding/banner.php'),(6682,'wp-content/plugins/wordfence/views/onboarding/disabled-overlay.php'),(6683,'wp-content/plugins/wordfence/views/onboarding/fresh-install.php'),(6684,'wp-content/plugins/wordfence/views/onboarding/modal-final-attempt.php'),(6685,'wp-content/plugins/wordfence/views/onboarding/overlay.php'),(6686,'wp-content/plugins/wordfence/views/onboarding/plugin-header.php'),(6687,'wp-content/plugins/wordfence/views/onboarding/tour-overlay.php'),(6688,'wp-content/plugins/wordfence/views/options/block-all-options-controls.php'),(6689,'wp-content/plugins/wordfence/views/options/block-controls.php'),(6690,'wp-content/plugins/wordfence/views/options/option-label.php'),(6691,'wp-content/plugins/wordfence/views/options/option-select.php'),(6692,'wp-content/plugins/wordfence/views/options/option-switch.php'),(6693,'wp-content/plugins/wordfence/views/options/option-text.php'),(6694,'wp-content/plugins/wordfence/views/options/option-textarea.php'),(6695,'wp-content/plugins/wordfence/views/options/option-toggled-boolean-switch.php'),(6696,'wp-content/plugins/wordfence/views/options/option-toggled-multiple.php'),(6697,'wp-content/plugins/wordfence/views/options/option-toggled-segmented.php'),(6698,'wp-content/plugins/wordfence/views/options/option-toggled-select.php'),(6699,'wp-content/plugins/wordfence/views/options/option-toggled-sub.php'),(6700,'wp-content/plugins/wordfence/views/options/option-toggled-textarea.php'),(6701,'wp-content/plugins/wordfence/views/options/option-toggled.php'),(6702,'wp-content/plugins/wordfence/views/options/option-token.php'),(6703,'wp-content/plugins/wordfence/views/options/options-title.php'),(6704,'wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php'),(6705,'wp-content/plugins/wordfence/views/reports/activity-report.php'),(6706,'wp-content/plugins/wordfence/views/scanner/issue-base.php'),(6707,'wp-content/plugins/wordfence/views/scanner/issue-checkGSB.php'),(6708,'wp-content/plugins/wordfence/views/scanner/issue-checkHowGetIPs.php'),(6709,'wp-content/plugins/wordfence/views/scanner/issue-checkSpamIP.php'),(6710,'wp-content/plugins/wordfence/views/scanner/issue-commentBadURL.php'),(6711,'wp-content/plugins/wordfence/views/scanner/issue-configReadable.php'),(6712,'wp-content/plugins/wordfence/views/scanner/issue-control-edit-comment.php'),(6713,'wp-content/plugins/wordfence/views/scanner/issue-control-edit-post.php'),(6714,'wp-content/plugins/wordfence/views/scanner/issue-control-edit-user.php'),(6715,'wp-content/plugins/wordfence/views/scanner/issue-control-hide-file.php'),(6716,'wp-content/plugins/wordfence/views/scanner/issue-control-ignore.php'),(6717,'wp-content/plugins/wordfence/views/scanner/issue-control-repair.php'),(6718,'wp-content/plugins/wordfence/views/scanner/issue-control-show-details.php'),(6719,'wp-content/plugins/wordfence/views/scanner/issue-coreUnknown.php'),(6720,'wp-content/plugins/wordfence/views/scanner/issue-database.php'),(6721,'wp-content/plugins/wordfence/views/scanner/issue-diskSpace.php'),(6722,'wp-content/plugins/wordfence/views/scanner/issue-easyPassword.php'),(6723,'wp-content/plugins/wordfence/views/scanner/issue-file.php'),(6724,'wp-content/plugins/wordfence/views/scanner/issue-geoipSupport.php'),(6725,'wp-content/plugins/wordfence/views/scanner/issue-knownfile.php'),(6726,'wp-content/plugins/wordfence/views/scanner/issue-optionBadURL.php'),(6727,'wp-content/plugins/wordfence/views/scanner/issue-postBadTitle.php'),(6728,'wp-content/plugins/wordfence/views/scanner/issue-postBadURL.php'),(6729,'wp-content/plugins/wordfence/views/scanner/issue-publiclyAccessible.php'),(6730,'wp-content/plugins/wordfence/views/scanner/issue-skippedPaths.php'),(6731,'wp-content/plugins/wordfence/views/scanner/issue-spamvertizeCheck.php'),(6732,'wp-content/plugins/wordfence/views/scanner/issue-suspiciousAdminUsers.php'),(6733,'wp-content/plugins/wordfence/views/scanner/issue-timelimit.php'),(6734,'wp-content/plugins/wordfence/views/scanner/issue-wafStatus.php'),(6735,'wp-content/plugins/wordfence/views/scanner/issue-wfPluginAbandoned.php'),(6736,'wp-content/plugins/wordfence/views/scanner/issue-wfPluginRemoved.php'),(6737,'wp-content/plugins/wordfence/views/scanner/issue-wfPluginUpgrade.php'),(6738,'wp-content/plugins/wordfence/views/scanner/issue-wfPluginVulnerable.php'),(6739,'wp-content/plugins/wordfence/views/scanner/issue-wfThemeUpgrade.php'),(6740,'wp-content/plugins/wordfence/views/scanner/issue-wfUpgrade.php'),(6741,'wp-content/plugins/wordfence/views/scanner/issue-wpscan_directoryList.php'),(6742,'wp-content/plugins/wordfence/views/scanner/issue-wpscan_fullPathDiscl.php'),(6743,'wp-content/plugins/wordfence/views/scanner/no-issues.php'),(6744,'wp-content/plugins/wordfence/views/scanner/option-scan-signatures.php'),(6745,'wp-content/plugins/wordfence/views/scanner/options-group-advanced.php'),(6746,'wp-content/plugins/wordfence/views/scanner/options-group-basic.php'),(6747,'wp-content/plugins/wordfence/views/scanner/options-group-general.php'),(6748,'wp-content/plugins/wordfence/views/scanner/options-group-performance.php'),(6749,'wp-content/plugins/wordfence/views/scanner/options-group-scan-schedule.php'),(6750,'wp-content/plugins/wordfence/views/scanner/scan-failed.php'),(6751,'wp-content/plugins/wordfence/views/scanner/scan-progress-detailed.php'),(6752,'wp-content/plugins/wordfence/views/scanner/scan-progress-element.php'),(6753,'wp-content/plugins/wordfence/views/scanner/scan-progress.php'),(6754,'wp-content/plugins/wordfence/views/scanner/scan-results.php'),(6755,'wp-content/plugins/wordfence/views/scanner/scan-scheduling.php'),(6756,'wp-content/plugins/wordfence/views/scanner/scan-starter.php'),(6757,'wp-content/plugins/wordfence/views/scanner/scan-type.php'),(6758,'wp-content/plugins/wordfence/views/scanner/scanner-status.php'),(6759,'wp-content/plugins/wordfence/views/scanner/site-cleaning-beta-sigs.php'),(6760,'wp-content/plugins/wordfence/views/scanner/site-cleaning-bottom.php'),(6761,'wp-content/plugins/wordfence/views/scanner/site-cleaning-high-sense.php'),(6762,'wp-content/plugins/wordfence/views/scanner/site-cleaning.php'),(6763,'wp-content/plugins/wordfence/views/tools/options-group-2fa.php'),(6764,'wp-content/plugins/wordfence/views/tools/options-group-live-traffic.php'),(6765,'wp-content/plugins/wordfence/views/tours/login-security.php'),(6766,'wp-content/plugins/wordfence/views/unsupported-php/admin-message.php'),(6767,'wp-content/plugins/wordfence/views/user/disabled-application-passwords.php'),(6768,'wp-content/plugins/wordfence/views/waf/debug.php'),(6769,'wp-content/plugins/wordfence/views/waf/firewall-status.php'),(6770,'wp-content/plugins/wordfence/views/waf/option-rate-limit.php'),(6771,'wp-content/plugins/wordfence/views/waf/option-rules.php'),(6772,'wp-content/plugins/wordfence/views/waf/option-whitelist.php'),(6773,'wp-content/plugins/wordfence/views/waf/options-group-advanced-firewall.php'),(6774,'wp-content/plugins/wordfence/views/waf/options-group-basic-firewall.php'),(6775,'wp-content/plugins/wordfence/views/waf/options-group-brute-force.php'),(6776,'wp-content/plugins/wordfence/views/waf/options-group-rate-limiting.php'),(6777,'wp-content/plugins/wordfence/views/waf/options-group-whitelisted.php'),(6778,'wp-content/plugins/wordfence/views/waf/status-tooltip-learning-mode.php'),(6779,'wp-content/plugins/wordfence/views/waf/waf-install-manual.php'),(6780,'wp-content/plugins/wordfence/views/waf/waf-install-success.php'),(6781,'wp-content/plugins/wordfence/views/waf/waf-install.php'),(6782,'wp-content/plugins/wordfence/views/waf/waf-modal-wrapper.php'),(6783,'wp-content/plugins/wordfence/views/waf/waf-uninstall-success.php'),(6784,'wp-content/plugins/wordfence/views/waf/waf-uninstall.php'),(6785,'wp-content/plugins/wordfence/waf/.htaccess'),(6786,'wp-content/plugins/wordfence/waf/bootstrap.php'),(6787,'wp-content/plugins/wordfence/waf/pomo/entry.php'),(6788,'wp-content/plugins/wordfence/waf/pomo/mo.php'),(6789,'wp-content/plugins/wordfence/waf/pomo/plural-forms.php'),(6790,'wp-content/plugins/wordfence/waf/pomo/po.php'),(6791,'wp-content/plugins/wordfence/waf/pomo/streams.php'),(6792,'wp-content/plugins/wordfence/waf/pomo/translations.php'),(6793,'wp-content/plugins/wordfence/waf/wfWAFGeoIP2.php'),(6794,'wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php'),(6795,'wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php'),(6796,'wp-content/plugins/wordfence/wordfence.php'),(6797,'wp-content/plugins/yith-woocommerce-compare/assets/css/admin.css'),(6798,'wp-content/plugins/yith-woocommerce-compare/assets/css/admin.min.css'),(6799,'wp-content/plugins/yith-woocommerce-compare/assets/css/colorbox.css'),(6800,'wp-content/plugins/yith-woocommerce-compare/assets/css/colorbox.min.css'),(6801,'wp-content/plugins/yith-woocommerce-compare/assets/css/jquery.dataTables.css'),(6802,'wp-content/plugins/yith-woocommerce-compare/assets/css/jquery.min.css'),(6803,'wp-content/plugins/yith-woocommerce-compare/assets/css/style.css'),(6804,'wp-content/plugins/yith-woocommerce-compare/assets/css/style.min.css'),(6805,'wp-content/plugins/yith-woocommerce-compare/assets/css/widget.css'),(6806,'wp-content/plugins/yith-woocommerce-compare/assets/css/widget.min.css'),(6807,'wp-content/plugins/yith-woocommerce-compare/assets/images/01-bg.png'),(6808,'wp-content/plugins/yith-woocommerce-compare/assets/images/01-icon.png'),(6809,'wp-content/plugins/yith-woocommerce-compare/assets/images/01.png'),(6810,'wp-content/plugins/yith-woocommerce-compare/assets/images/02-bg.png'),(6811,'wp-content/plugins/yith-woocommerce-compare/assets/images/02-icon.png'),(6812,'wp-content/plugins/yith-woocommerce-compare/assets/images/02.png'),(6813,'wp-content/plugins/yith-woocommerce-compare/assets/images/03-bg.png'),(6814,'wp-content/plugins/yith-woocommerce-compare/assets/images/03-icon.png'),(6815,'wp-content/plugins/yith-woocommerce-compare/assets/images/03.png'),(6816,'wp-content/plugins/yith-woocommerce-compare/assets/images/04-bg.png'),(6817,'wp-content/plugins/yith-woocommerce-compare/assets/images/04-icon.png'),(6818,'wp-content/plugins/yith-woocommerce-compare/assets/images/04.png'),(6819,'wp-content/plugins/yith-woocommerce-compare/assets/images/05-bg.png'),(6820,'wp-content/plugins/yith-woocommerce-compare/assets/images/05-icon.png'),(6821,'wp-content/plugins/yith-woocommerce-compare/assets/images/05.png'),(6822,'wp-content/plugins/yith-woocommerce-compare/assets/images/06-bg.png'),(6823,'wp-content/plugins/yith-woocommerce-compare/assets/images/06-icon.png'),(6824,'wp-content/plugins/yith-woocommerce-compare/assets/images/06.png'),(6825,'wp-content/plugins/yith-woocommerce-compare/assets/images/07-bg.png'),(6826,'wp-content/plugins/yith-woocommerce-compare/assets/images/07-icon.png'),(6827,'wp-content/plugins/yith-woocommerce-compare/assets/images/07.png'),(6828,'wp-content/plugins/yith-woocommerce-compare/assets/images/08-bg.png'),(6829,'wp-content/plugins/yith-woocommerce-compare/assets/images/08-icon.png'),(6830,'wp-content/plugins/yith-woocommerce-compare/assets/images/08.png'),(6831,'wp-content/plugins/yith-woocommerce-compare/assets/images/09-bg.png'),(6832,'wp-content/plugins/yith-woocommerce-compare/assets/images/09-icon.png'),(6833,'wp-content/plugins/yith-woocommerce-compare/assets/images/09.png'),(6834,'wp-content/plugins/yith-woocommerce-compare/assets/images/10-bg.png'),(6835,'wp-content/plugins/yith-woocommerce-compare/assets/images/10-icon.png'),(6836,'wp-content/plugins/yith-woocommerce-compare/assets/images/10.png'),(6837,'wp-content/plugins/yith-woocommerce-compare/assets/images/11-bg.png'),(6838,'wp-content/plugins/yith-woocommerce-compare/assets/images/11-icon.png'),(6839,'wp-content/plugins/yith-woocommerce-compare/assets/images/11.png'),(6840,'wp-content/plugins/yith-woocommerce-compare/assets/images/12-bg.png'),(6841,'wp-content/plugins/yith-woocommerce-compare/assets/images/12-icon.png'),(6842,'wp-content/plugins/yith-woocommerce-compare/assets/images/12.png'),(6843,'wp-content/plugins/yith-woocommerce-compare/assets/images/bg-pattern.png'),(6844,'wp-content/plugins/yith-woocommerce-compare/assets/images/box-bottom.png'),(6845,'wp-content/plugins/yith-woocommerce-compare/assets/images/colorbox/border.png'),(6846,'wp-content/plugins/yith-woocommerce-compare/assets/images/colorbox/controls.png'),(6847,'wp-content/plugins/yith-woocommerce-compare/assets/images/colorbox/loading.gif'),(6848,'wp-content/plugins/yith-woocommerce-compare/assets/images/colorbox/loading_background.png'),(6849,'wp-content/plugins/yith-woocommerce-compare/assets/images/loader.gif'),(6850,'wp-content/plugins/yith-woocommerce-compare/assets/images/logo.png'),(6851,'wp-content/plugins/yith-woocommerce-compare/assets/images/mascotte.png'),(6852,'wp-content/plugins/yith-woocommerce-compare/assets/images/socials/behance.png'),(6853,'wp-content/plugins/yith-woocommerce-compare/assets/images/socials/dribble.png'),(6854,'wp-content/plugins/yith-woocommerce-compare/assets/images/socials/email.png'),(6855,'wp-content/plugins/yith-woocommerce-compare/assets/images/socials/facebook.png'),(6856,'wp-content/plugins/yith-woocommerce-compare/assets/images/socials/flickr.png'),(6857,'wp-content/plugins/yith-woocommerce-compare/assets/images/socials/gplus.png'),(6858,'wp-content/plugins/yith-woocommerce-compare/assets/images/socials/instagram.png'),(6859,'wp-content/plugins/yith-woocommerce-compare/assets/images/socials/linkedin.png'),(6860,'wp-content/plugins/yith-woocommerce-compare/assets/images/socials/pinterest.png'),(6861,'wp-content/plugins/yith-woocommerce-compare/assets/images/socials/rss.png'),(6862,'wp-content/plugins/yith-woocommerce-compare/assets/images/socials/skype.png'),(6863,'wp-content/plugins/yith-woocommerce-compare/assets/images/socials/tumblr.png'),(6864,'wp-content/plugins/yith-woocommerce-compare/assets/images/socials/twitter.png'),(6865,'wp-content/plugins/yith-woocommerce-compare/assets/images/socials/youtube.png'),(6866,'wp-content/plugins/yith-woocommerce-compare/assets/images/upgrade.png'),(6867,'wp-content/plugins/yith-woocommerce-compare/assets/js/FixedColumns.min.js'),(6868,'wp-content/plugins/yith-woocommerce-compare/assets/js/imagesloaded.pkgd.min.js'),(6869,'wp-content/plugins/yith-woocommerce-compare/assets/js/jquery.colorbox-min.js'),(6870,'wp-content/plugins/yith-woocommerce-compare/assets/js/jquery.dataTables.min.js'),(6871,'wp-content/plugins/yith-woocommerce-compare/assets/js/jquery.min.js'),(6872,'wp-content/plugins/yith-woocommerce-compare/assets/js/woocompare-admin.js'),(6873,'wp-content/plugins/yith-woocommerce-compare/assets/js/woocompare-admin.min.js'),(6874,'wp-content/plugins/yith-woocommerce-compare/assets/js/woocompare.js'),(6875,'wp-content/plugins/yith-woocommerce-compare/assets/js/woocompare.min.js'),(6876,'wp-content/plugins/yith-woocommerce-compare/includes/class.yith-woocompare-admin.php'),(6877,'wp-content/plugins/yith-woocommerce-compare/includes/class.yith-woocompare-frontend.php'),(6878,'wp-content/plugins/yith-woocommerce-compare/includes/class.yith-woocompare-helper.php'),(6879,'wp-content/plugins/yith-woocommerce-compare/includes/class.yith-woocompare.php'),(6880,'wp-content/plugins/yith-woocommerce-compare/init.php'),(6881,'wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-bg_BG.mo'),(6882,'wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-bg_BG.po'),(6883,'wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-es_ES.mo'),(6884,'wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-es_ES.po'),(6885,'wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-fa_IR.mo'),(6886,'wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-fa_IR.po'),(6887,'wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-fr_FR.mo'),(6888,'wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-fr_FR.po'),(6889,'wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-it_IT.mo'),(6890,'wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-it_IT.po'),(6891,'wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-nl_NL.mo'),(6892,'wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-nl_NL.po'),(6893,'wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-pt_BR.mo'),(6894,'wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-pt_BR.po'),(6895,'wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-ru_RU.mo'),(6896,'wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-ru_RU.po'),(6897,'wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-sk_SK.mo'),(6898,'wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-sk_SK.po'),(6899,'wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-sl_SI.mo'),(6900,'wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-sl_SI.po'),(6901,'wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-tr_TR.mo'),(6902,'wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare-tr_TR.po'),(6903,'wp-content/plugins/yith-woocommerce-compare/languages/yith-woocommerce-compare.pot'),(6904,'wp-content/plugins/yith-woocommerce-compare/license.txt'),(6905,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/admin.css'),(6906,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/codemirror/codemirror.css'),(6907,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/colorbox.css'),(6908,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/elementor.css'),(6909,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png'),(6910,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png'),(6911,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png'),(6912,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png'),(6913,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png'),(6914,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png'),(6915,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.png'),(6916,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png'),(6917,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/jquery-ui/images/ui-icons_222222_256x240.png'),(6918,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/jquery-ui/images/ui-icons_2e83ff_256x240.png'),(6919,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/jquery-ui/images/ui-icons_454545_256x240.png'),(6920,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/jquery-ui/images/ui-icons_888888_256x240.png'),(6921,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/jquery-ui/images/ui-icons_cd0a0a_256x240.png'),(6922,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/jquery-ui/jquery-ui.min.css'),(6923,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/metaboxes.css'),(6924,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/yit-plugin-panel.css'),(6925,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/yit-upgrade-to-pro.css'),(6926,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/yit-upgrader.css'),(6927,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/yith-fields.css'),(6928,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/yith-icon.css'),(6929,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/yith-plugin-ui.css'),(6930,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/css/yith-select2-no-wc.css'),(6931,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/fonts/font-awesome/font-awesome.min.css'),(6932,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/fonts/font-awesome/fontawesome-webfont.eot'),(6933,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/fonts/font-awesome/fontawesome-webfont.svg'),(6934,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/fonts/font-awesome/fontawesome-webfont.ttf'),(6935,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/fonts/font-awesome/fontawesome-webfont.woff'),(6936,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/fonts/font-awesome/fontawesome-webfont.woff2'),(6937,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/fonts/yith-icon.eot'),(6938,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/fonts/yith-icon.ttf'),(6939,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/fonts/yith-icon.woff2'),(6940,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/arrow.svg'),(6941,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/arrow_down.svg'),(6942,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/banner-premium.png'),(6943,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/colorbox/border1.png'),(6944,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/colorbox/border2.png'),(6945,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/colorbox/loading.gif'),(6946,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/double-sidebar.png'),(6947,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/licence-error.png'),(6948,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/no-sidebar.png'),(6949,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/sidebar-left.png'),(6950,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/sidebar-right.png'),(6951,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/sleep.png'),(6952,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/spinner.png'),(6953,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/ui-icons_222222_256x240.png'),(6954,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/ui-icons_2e83ff_256x240.png'),(6955,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/ui-icons_454545_256x240.png'),(6956,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/ui-icons_888888_256x240.png'),(6957,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/x.png'),(6958,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/yith-icon.svg'),(6959,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/images/yithemes-icon.png'),(6960,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/codemirror/codemirror.js'),(6961,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/codemirror/javascript.js'),(6962,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/how-to.js'),(6963,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/how-to.min.js'),(6964,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/jquery-tiptip/jquery.tipTip.js'),(6965,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/jquery-tiptip/jquery.tipTip.min.js'),(6966,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/jquery.colorbox.js'),(6967,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/jquery.colorbox.min.js'),(6968,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/metabox.js'),(6969,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/metabox.min.js'),(6970,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/multisite-updater.js'),(6971,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/multisite-updater.min.js'),(6972,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/select2/select2.min.js'),(6973,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/wp-pages.js'),(6974,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/wp-pages.min.js'),(6975,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yit-cpt-unlimited.js'),(6976,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yit-cpt-unlimited.min.js'),(6977,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yit-plugin-panel.js'),(6978,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yit-plugin-panel.min.js'),(6979,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yit-wp-pointer.js'),(6980,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yit-wp-pointer.min.js'),(6981,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-colorpicker.min.js'),(6982,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-dashboard.js'),(6983,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-dashboard.min.js'),(6984,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-date-format.js'),(6985,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-date-format.min.js'),(6986,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-enhanced-select-wc-2.6.js'),(6987,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-enhanced-select-wc-2.6.min.js'),(6988,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-enhanced-select.js'),(6989,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-enhanced-select.min.js'),(6990,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-fields.js'),(6991,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-fields.min.js'),(6992,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-promo.js'),(6993,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-promo.min.js'),(6994,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-system-info.js'),(6995,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-system-info.min.js'),(6996,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-ui.js'),(6997,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-ui.min.js'),(6998,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-update-plugins.js'),(6999,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-update-plugins.min.js'),(7000,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/dist/gutenberg/index.asset.php'),(7001,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/dist/gutenberg/index.js'),(7002,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/dist/gutenberg/style-index.css'),(7003,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/builders/elementor/class-yith-elementor-widget.php'),(7004,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/builders/elementor/class-yith-elementor.php'),(7005,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/builders/gutenberg/class-yith-gutenberg.php'),(7006,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-ajax.php'),(7007,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-assets.php'),(7008,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-cpt-unlimited.php'),(7009,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-gradients.php'),(7010,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-help-desk.php'),(7011,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-icons.php'),(7012,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-metabox.php'),(7013,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-plugin-common.php'),(7014,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-plugin-licence.php'),(7015,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-plugin-panel-woocommerce.php'),(7016,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-plugin-panel.php'),(7017,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-plugin-subpanel.php'),(7018,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-pointers.php'),(7019,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-theme-licence.php'),(7020,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-upgrade.php'),(7021,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yit-video.php'),(7022,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yith-dashboard.php'),(7023,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yith-debug.php'),(7024,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yith-post-type-admin.php'),(7025,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/class-yith-system-status.php'),(7026,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/privacy/class-yith-privacy-plugin-abstract.php'),(7027,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/includes/privacy/class-yith-privacy.php'),(7028,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/init.php'),(7029,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/languages/yith-plugin-fw-el.mo'),(7030,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/languages/yith-plugin-fw-el.po'),(7031,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/languages/yith-plugin-fw-es_ES.mo'),(7032,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/languages/yith-plugin-fw-es_ES.po'),(7033,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/languages/yith-plugin-fw-it_IT.mo'),(7034,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/languages/yith-plugin-fw-it_IT.po'),(7035,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/languages/yith-plugin-fw-nl_NL.mo'),(7036,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/languages/yith-plugin-fw-nl_NL.po'),(7037,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/languages/yith-plugin-fw.pot'),(7038,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/privacy/yit-privacy-plugin-abstract.php'),(7039,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/privacy/yit-privacy.php'),(7040,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-ajax.php'),(7041,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-assets.php'),(7042,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-cpt-unlimited.php'),(7043,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-debug.php'),(7044,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-icons.php'),(7045,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-metabox.php'),(7046,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-plugin-common.php'),(7047,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-plugin-gradients.php'),(7048,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-plugin-licence.php'),(7049,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-plugin-panel-wc.php'),(7050,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-plugin-panel.php'),(7051,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-plugin-subpanel.php'),(7052,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-pointers.php'),(7053,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-theme-licence.php'),(7054,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-upgrade.php'),(7055,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yit-video.php'),(7056,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yith-dashboard.php'),(7057,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yith-gutenberg.php'),(7058,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/lib/yith-system-status.php'),(7059,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/license.txt'),(7060,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/phpcs.xml'),(7061,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/components/action-button.php'),(7062,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/components/list-table-blank-state.php'),(7063,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/components/resources/action-button-menu.php'),(7064,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/ajax-customers.php'),(7065,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/ajax-posts.php'),(7066,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/ajax-products.php'),(7067,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/ajax-terms.php'),(7068,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/buttons.php'),(7069,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/checkbox-array.php'),(7070,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/checkbox.php'),(7071,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/colorpicker.php'),(7072,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/copy-to-clipboard.php'),(7073,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/country-select.php'),(7074,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/custom.php'),(7075,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/customtabs.php'),(7076,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/date-format.php'),(7077,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/datepicker.php'),(7078,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/dimensions.php'),(7079,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/hidden.php'),(7080,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/html.php'),(7081,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/icons.php'),(7082,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/image-dimensions.php'),(7083,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/image-gallery.php'),(7084,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/inline-fields.php'),(7085,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/list-table.php'),(7086,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/multi-colorpicker.php'),(7087,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/multi-select.php'),(7088,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/number.php'),(7089,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/onoff.php'),(7090,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/password.php'),(7091,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/preview.php'),(7092,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/radio.php'),(7093,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/resources/select2-wc-2.6.php'),(7094,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/resources/select2.php'),(7095,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/select-buttons.php'),(7096,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/select-images.php'),(7097,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/select-mailchimp.php'),(7098,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/select.php'),(7099,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/sep.php'),(7100,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/sidebarlist.php'),(7101,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/sidebars.php'),(7102,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/simple-text.php'),(7103,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/slider.php'),(7104,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/text-array.php'),(7105,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/text-button.php'),(7106,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/text.php'),(7107,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/textarea-codemirror.php'),(7108,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/textarea-editor.php'),(7109,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/textarea.php'),(7110,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/title.php'),(7111,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/toggle-element-fixed.php'),(7112,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/toggle-element.php'),(7113,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/fields/upload.php'),(7114,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/metaboxes/field-row.php'),(7115,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/metaboxes/tab.php'),(7116,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/panel/custom-tab.php'),(7117,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/panel/help-tab.php'),(7118,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/panel/infobox.php'),(7119,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/panel/panel-field-container.php'),(7120,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/panel/premium-tab.php'),(7121,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/panel/sub-tabs-nav.php'),(7122,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/panel/woocommerce/woocommerce-form.php'),(7123,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/panel/woocommerce/woocommerce-option-row.php'),(7124,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/panel/woocommerce/woocommerce-panel.php'),(7125,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/panel/woocommerce/woocommerce-upload.php'),(7126,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/privacy/html-policy-content.php'),(7127,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/sysinfo/system-information-panel.php'),(7128,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/sysinfo/tabs/error-log.php'),(7129,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/sysinfo/tabs/main.php'),(7130,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/sysinfo/tabs/php-info.php'),(7131,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/upgrade/changelog.php'),(7132,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/templates/upgrade/error.php'),(7133,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/yit-deactive-plugin.php'),(7134,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/yit-functions.php'),(7135,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/yit-plugin-registration-hook.php'),(7136,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/yit-plugin.php'),(7137,'wp-content/plugins/yith-woocommerce-compare/plugin-fw/yit-woocommerce-compatibility.php'),(7138,'wp-content/plugins/yith-woocommerce-compare/plugin-options/general-options.php'),(7139,'wp-content/plugins/yith-woocommerce-compare/plugin-options/premium-options.php'),(7140,'wp-content/plugins/yith-woocommerce-compare/readme.txt'),(7141,'wp-content/plugins/yith-woocommerce-compare/templates/admin/premium.php'),(7142,'wp-content/plugins/yith-woocommerce-compare/templates/compare.php'),(7143,'wp-content/plugins/yith-woocommerce-compare/widgets/class.yith-woocompare-widget.php'),(7144,'wp-content/plugins/yith-woocommerce-compare/wpml-config.xml'),(7145,'wp-content/plugins/yith-woocommerce-wishlist/README.md'),(7146,'wp-content/plugins/yith-woocommerce-wishlist/README.txt'),(7147,'wp-content/plugins/yith-woocommerce-wishlist/assets/css/admin.css'),(7148,'wp-content/plugins/yith-woocommerce-wishlist/assets/css/font-awesome.css'),(7149,'wp-content/plugins/yith-woocommerce-wishlist/assets/css/jquery.selectBox.css'),(7150,'wp-content/plugins/yith-woocommerce-wishlist/assets/css/style.css'),(7151,'wp-content/plugins/yith-woocommerce-wishlist/assets/css/themes/oceanwp.css'),(7152,'wp-content/plugins/yith-woocommerce-wishlist/assets/css/themes/storefront.css'),(7153,'wp-content/plugins/yith-woocommerce-wishlist/assets/css/themes/twentytwenty.css'),(7154,'wp-content/plugins/yith-woocommerce-wishlist/assets/css/unminified/admin.css'),(7155,'wp-content/plugins/yith-woocommerce-wishlist/assets/css/unminified/font-awesome.css'),(7156,'wp-content/plugins/yith-woocommerce-wishlist/assets/css/unminified/jquery.selectBox.css'),(7157,'wp-content/plugins/yith-woocommerce-wishlist/assets/css/unminified/style.css'),(7158,'wp-content/plugins/yith-woocommerce-wishlist/assets/css/unminified/themes/oceanwp.css'),(7159,'wp-content/plugins/yith-woocommerce-wishlist/assets/css/unminified/themes/storefront.css'),(7160,'wp-content/plugins/yith-woocommerce-wishlist/assets/css/unminified/themes/twentytwenty.css'),(7161,'wp-content/plugins/yith-woocommerce-wishlist/assets/fonts/FontAwesome.otf'),(7162,'wp-content/plugins/yith-woocommerce-wishlist/assets/fonts/fontawesome-webfont.eot'),(7163,'wp-content/plugins/yith-woocommerce-wishlist/assets/fonts/fontawesome-webfont.svg'),(7164,'wp-content/plugins/yith-woocommerce-wishlist/assets/fonts/fontawesome-webfont.ttf'),(7165,'wp-content/plugins/yith-woocommerce-wishlist/assets/fonts/fontawesome-webfont.woff'),(7166,'wp-content/plugins/yith-woocommerce-wishlist/assets/fonts/fontawesome-webfont.woff2'),(7167,'wp-content/plugins/yith-woocommerce-wishlist/assets/images/ajax-loader-alt.svg'),(7168,'wp-content/plugins/yith-woocommerce-wishlist/assets/images/ajax-loader.gif'),(7169,'wp-content/plugins/yith-woocommerce-wishlist/assets/images/email.jpg'),(7170,'wp-content/plugins/yith-woocommerce-wishlist/assets/images/facebook.png'),(7171,'wp-content/plugins/yith-woocommerce-wishlist/assets/images/get-premium-wishlist.jpg'),(7172,'wp-content/plugins/yith-woocommerce-wishlist/assets/images/googleplus.jpg'),(7173,'wp-content/plugins/yith-woocommerce-wishlist/assets/images/jquery.selectBox-arrow.gif'),(7174,'wp-content/plugins/yith-woocommerce-wishlist/assets/images/jquery.selectBox-arrow.png'),(7175,'wp-content/plugins/yith-woocommerce-wishlist/assets/images/logo.png'),(7176,'wp-content/plugins/yith-woocommerce-wishlist/assets/images/pinterest.jpg'),(7177,'wp-content/plugins/yith-woocommerce-wishlist/assets/images/twitter.png'),(7178,'wp-content/plugins/yith-woocommerce-wishlist/assets/images/video-thumb.jpg'),(7179,'wp-content/plugins/yith-woocommerce-wishlist/assets/images/whatsapp.png'),(7180,'wp-content/plugins/yith-woocommerce-wishlist/assets/images/wpspin_light.gif'),(7181,'wp-content/plugins/yith-woocommerce-wishlist/assets/js/admin/yith-wcwl-icons.json'),(7182,'wp-content/plugins/yith-woocommerce-wishlist/assets/js/admin/yith-wcwl.min.js'),(7183,'wp-content/plugins/yith-woocommerce-wishlist/assets/js/jquery.selectBox.min.js'),(7184,'wp-content/plugins/yith-woocommerce-wishlist/assets/js/jquery.yith-wcwl.min.js'),(7185,'wp-content/plugins/yith-woocommerce-wishlist/assets/js/unminified/admin/yith-wcwl.js'),(7186,'wp-content/plugins/yith-woocommerce-wishlist/assets/js/unminified/jquery.selectBox.js'),(7187,'wp-content/plugins/yith-woocommerce-wishlist/assets/js/unminified/jquery.yith-wcwl.js'),(7188,'wp-content/plugins/yith-woocommerce-wishlist/includes/class-yith-wcwl-admin.php'),(7189,'wp-content/plugins/yith-woocommerce-wishlist/includes/class-yith-wcwl-ajax-handler.php'),(7190,'wp-content/plugins/yith-woocommerce-wishlist/includes/class-yith-wcwl-cron.php'),(7191,'wp-content/plugins/yith-woocommerce-wishlist/includes/class-yith-wcwl-exception.php'),(7192,'wp-content/plugins/yith-woocommerce-wishlist/includes/class-yith-wcwl-form-handler.php'),(7193,'wp-content/plugins/yith-woocommerce-wishlist/includes/class-yith-wcwl-frontend.php'),(7194,'wp-content/plugins/yith-woocommerce-wishlist/includes/class-yith-wcwl-install.php'),(7195,'wp-content/plugins/yith-woocommerce-wishlist/includes/class-yith-wcwl-privacy.php'),(7196,'wp-content/plugins/yith-woocommerce-wishlist/includes/class-yith-wcwl-session.php'),(7197,'wp-content/plugins/yith-woocommerce-wishlist/includes/class-yith-wcwl-shortcode.php'),(7198,'wp-content/plugins/yith-woocommerce-wishlist/includes/class-yith-wcwl-wishlist-factory.php'),(7199,'wp-content/plugins/yith-woocommerce-wishlist/includes/class-yith-wcwl-wishlist-item.php'),(7200,'wp-content/plugins/yith-woocommerce-wishlist/includes/class-yith-wcwl-wishlist.php'),(7201,'wp-content/plugins/yith-woocommerce-wishlist/includes/class-yith-wcwl.php'),(7202,'wp-content/plugins/yith-woocommerce-wishlist/includes/data-stores/class-yith-wcwl-wishlist-data-store.php'),(7203,'wp-content/plugins/yith-woocommerce-wishlist/includes/data-stores/class-yith-wcwl-wishlist-item-data-store.php'),(7204,'wp-content/plugins/yith-woocommerce-wishlist/includes/functions-yith-wcwl.php'),(7205,'wp-content/plugins/yith-woocommerce-wishlist/includes/legacy/functions-yith-wcwl-legacy.php'),(7206,'wp-content/plugins/yith-woocommerce-wishlist/includes/widgets/elementor/class-yith-wcwl-elementor-add-to-wishlist.php'),(7207,'wp-content/plugins/yith-woocommerce-wishlist/includes/widgets/elementor/class-yith-wcwl-elementor-wishlist.php'),(7208,'wp-content/plugins/yith-woocommerce-wishlist/init.php'),(7209,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-da_DK.mo'),(7210,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-da_DK.po'),(7211,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-de_DE.mo'),(7212,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-de_DE.po'),(7213,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-es_AR.mo'),(7214,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-es_AR.po'),(7215,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-es_ES.mo'),(7216,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-es_ES.po'),(7217,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-es_MX.mo'),(7218,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-es_MX.po'),(7219,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-fa_IR.mo'),(7220,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-fa_IR.po'),(7221,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-fr_FR.mo'),(7222,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-fr_FR.po'),(7223,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-he_IL.mo'),(7224,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-he_IL.po'),(7225,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-hr.mo'),(7226,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-hr.po'),(7227,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-it_IT.mo'),(7228,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-it_IT.po'),(7229,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-ko_KR.mo'),(7230,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-ko_KR.po'),(7231,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-nl_NL.mo'),(7232,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-nl_NL.po'),(7233,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-pl_PL.mo'),(7234,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-pl_PL.po'),(7235,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-pt_BR.mo'),(7236,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-pt_BR.po'),(7237,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-pt_PT.mo'),(7238,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-pt_PT.po'),(7239,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-ru_RU.mo'),(7240,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-ru_RU.po'),(7241,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-sv_SE.mo'),(7242,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-sv_SE.po'),(7243,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-tr_TR.mo'),(7244,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-tr_TR.po'),(7245,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-uk_UA.mo'),(7246,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-uk_UA.po'),(7247,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-zh_CN.mo'),(7248,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-zh_CN.po'),(7249,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-zh_TW.mo'),(7250,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist-zh_TW.po'),(7251,'wp-content/plugins/yith-woocommerce-wishlist/languages/yith-woocommerce-wishlist.pot'),(7252,'wp-content/plugins/yith-woocommerce-wishlist/license.txt'),(7253,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/LICENSE.txt'),(7254,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/admin.css'),(7255,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/codemirror/codemirror.css'),(7256,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/colorbox.css'),(7257,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/elementor.css'),(7258,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png'),(7259,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png'),(7260,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png'),(7261,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png'),(7262,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png'),(7263,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png'),(7264,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.png'),(7265,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png'),(7266,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/images/ui-icons_222222_256x240.png'),(7267,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/images/ui-icons_2e83ff_256x240.png'),(7268,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/images/ui-icons_454545_256x240.png'),(7269,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/images/ui-icons_888888_256x240.png'),(7270,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/images/ui-icons_cd0a0a_256x240.png'),(7271,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/jquery-ui/jquery-ui.min.css'),(7272,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/metaboxes.css'),(7273,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/yit-plugin-panel.css'),(7274,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/yit-upgrade-to-pro.css'),(7275,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/yit-upgrader.css'),(7276,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/yith-fields.css'),(7277,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/yith-icon.css'),(7278,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/yith-plugin-ui.css'),(7279,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/css/yith-select2-no-wc.css'),(7280,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/fonts/font-awesome/font-awesome.min.css'),(7281,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/fonts/font-awesome/fontawesome-webfont.eot'),(7282,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/fonts/font-awesome/fontawesome-webfont.svg'),(7283,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/fonts/font-awesome/fontawesome-webfont.ttf'),(7284,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/fonts/font-awesome/fontawesome-webfont.woff'),(7285,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/fonts/font-awesome/fontawesome-webfont.woff2'),(7286,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/fonts/yith-icon.eot'),(7287,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/fonts/yith-icon.ttf'),(7288,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/fonts/yith-icon.woff2'),(7289,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/arrow.svg'),(7290,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/arrow_down.svg'),(7291,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/banner-premium.png'),(7292,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/colorbox/border1.png'),(7293,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/colorbox/border2.png'),(7294,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/colorbox/loading.gif'),(7295,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/double-sidebar.png'),(7296,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/licence-error.png'),(7297,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/no-sidebar.png'),(7298,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/sidebar-left.png'),(7299,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/sidebar-right.png'),(7300,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/sleep.png'),(7301,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/spinner.png'),(7302,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/ui-icons_222222_256x240.png'),(7303,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/ui-icons_2e83ff_256x240.png'),(7304,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/ui-icons_454545_256x240.png'),(7305,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/ui-icons_888888_256x240.png'),(7306,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/x.png'),(7307,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/yith-icon.svg'),(7308,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/images/yithemes-icon.png'),(7309,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/codemirror/codemirror.js'),(7310,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/codemirror/javascript.js'),(7311,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/how-to.js'),(7312,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/how-to.min.js'),(7313,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/jquery-tiptip/jquery.tipTip.js'),(7314,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/jquery-tiptip/jquery.tipTip.min.js'),(7315,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/jquery.colorbox.js'),(7316,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/jquery.colorbox.min.js'),(7317,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/metabox.js'),(7318,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/metabox.min.js'),(7319,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/multisite-updater.js'),(7320,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/multisite-updater.min.js'),(7321,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/select2/select2.min.js'),(7322,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/wp-pages.js'),(7323,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/wp-pages.min.js'),(7324,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yit-cpt-unlimited.js'),(7325,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yit-cpt-unlimited.min.js'),(7326,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yit-plugin-panel.js'),(7327,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yit-plugin-panel.min.js'),(7328,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yit-wp-pointer.js'),(7329,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yit-wp-pointer.min.js'),(7330,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-colorpicker.min.js'),(7331,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-dashboard.js'),(7332,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-dashboard.min.js'),(7333,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-date-format.js'),(7334,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-date-format.min.js'),(7335,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-enhanced-select-wc-2.6.js'),(7336,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-enhanced-select-wc-2.6.min.js'),(7337,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-enhanced-select.js'),(7338,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-enhanced-select.min.js'),(7339,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-fields.js'),(7340,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-fields.min.js'),(7341,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-promo.js'),(7342,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-promo.min.js'),(7343,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-system-info.js'),(7344,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-system-info.min.js'),(7345,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-ui.js'),(7346,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-ui.min.js'),(7347,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-update-plugins.js'),(7348,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/assets/js/yith-update-plugins.min.js'),(7349,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/dist/gutenberg/index.asset.php'),(7350,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/dist/gutenberg/index.js'),(7351,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/dist/gutenberg/style-index.css'),(7352,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/builders/elementor/class-yith-elementor-widget.php'),(7353,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/builders/elementor/class-yith-elementor.php'),(7354,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/builders/gutenberg/class-yith-gutenberg.php'),(7355,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-ajax.php'),(7356,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-assets.php'),(7357,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-cpt-unlimited.php'),(7358,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-gradients.php'),(7359,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-help-desk.php'),(7360,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-icons.php'),(7361,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-metabox.php'),(7362,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-plugin-common.php'),(7363,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-plugin-licence.php'),(7364,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-plugin-panel-woocommerce.php'),(7365,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-plugin-panel.php'),(7366,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-plugin-subpanel.php'),(7367,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-pointers.php'),(7368,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-theme-licence.php'),(7369,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-upgrade.php'),(7370,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yit-video.php'),(7371,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yith-dashboard.php'),(7372,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yith-debug.php'),(7373,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yith-post-type-admin.php'),(7374,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/class-yith-system-status.php'),(7375,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/privacy/class-yith-privacy-plugin-abstract.php'),(7376,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/includes/privacy/class-yith-privacy.php'),(7377,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/init.php'),(7378,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/languages/yith-plugin-fw-el.mo'),(7379,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/languages/yith-plugin-fw-el.po'),(7380,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/languages/yith-plugin-fw-es_ES.mo'),(7381,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/languages/yith-plugin-fw-es_ES.po'),(7382,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/languages/yith-plugin-fw-it_IT.mo'),(7383,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/languages/yith-plugin-fw-it_IT.po'),(7384,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/languages/yith-plugin-fw-nl_NL.mo'),(7385,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/languages/yith-plugin-fw-nl_NL.po'),(7386,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/languages/yith-plugin-fw.pot'),(7387,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/privacy/yit-privacy-plugin-abstract.php'),(7388,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/privacy/yit-privacy.php'),(7389,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-ajax.php'),(7390,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-assets.php'),(7391,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-cpt-unlimited.php'),(7392,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-debug.php'),(7393,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-icons.php'),(7394,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-metabox.php'),(7395,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-plugin-common.php'),(7396,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-plugin-gradients.php'),(7397,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-plugin-licence.php'),(7398,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-plugin-panel-wc.php'),(7399,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-plugin-panel.php'),(7400,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-plugin-subpanel.php'),(7401,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-pointers.php'),(7402,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-theme-licence.php'),(7403,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-upgrade.php'),(7404,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yit-video.php'),(7405,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yith-dashboard.php'),(7406,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yith-gutenberg.php'),(7407,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/lib/yith-system-status.php'),(7408,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/phpcs.xml'),(7409,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/components/action-button.php'),(7410,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/components/list-table-blank-state.php'),(7411,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/components/resources/action-button-menu.php'),(7412,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/ajax-customers.php'),(7413,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/ajax-posts.php'),(7414,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/ajax-products.php'),(7415,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/ajax-terms.php'),(7416,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/buttons.php'),(7417,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/checkbox-array.php'),(7418,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/checkbox.php'),(7419,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/colorpicker.php'),(7420,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/copy-to-clipboard.php'),(7421,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/country-select.php'),(7422,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/custom.php'),(7423,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/customtabs.php'),(7424,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/date-format.php'),(7425,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/datepicker.php'),(7426,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/dimensions.php'),(7427,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/hidden.php'),(7428,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/html.php'),(7429,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/icons.php'),(7430,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/image-dimensions.php'),(7431,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/image-gallery.php'),(7432,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/inline-fields.php'),(7433,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/list-table.php'),(7434,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/multi-colorpicker.php'),(7435,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/multi-select.php'),(7436,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/number.php'),(7437,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/onoff.php'),(7438,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/password.php'),(7439,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/preview.php'),(7440,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/radio.php'),(7441,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/resources/select2-wc-2.6.php'),(7442,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/resources/select2.php'),(7443,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/select-buttons.php'),(7444,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/select-images.php'),(7445,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/select-mailchimp.php'),(7446,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/select.php'),(7447,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/sep.php'),(7448,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/sidebarlist.php'),(7449,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/sidebars.php'),(7450,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/simple-text.php'),(7451,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/slider.php'),(7452,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/text-array.php'),(7453,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/text-button.php'),(7454,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/text.php'),(7455,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/textarea-codemirror.php'),(7456,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/textarea-editor.php'),(7457,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/textarea.php'),(7458,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/title.php'),(7459,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/toggle-element-fixed.php'),(7460,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/toggle-element.php'),(7461,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/fields/upload.php'),(7462,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/metaboxes/field-row.php'),(7463,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/metaboxes/tab.php'),(7464,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/custom-tab.php'),(7465,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/help-tab.php'),(7466,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/infobox.php'),(7467,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/panel-field-container.php'),(7468,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/premium-tab.php'),(7469,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/sub-tabs-nav.php'),(7470,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/woocommerce/woocommerce-form.php'),(7471,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/woocommerce/woocommerce-option-row.php'),(7472,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/woocommerce/woocommerce-panel.php'),(7473,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/panel/woocommerce/woocommerce-upload.php'),(7474,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/privacy/html-policy-content.php'),(7475,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/sysinfo/system-information-panel.php'),(7476,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/sysinfo/tabs/error-log.php'),(7477,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/sysinfo/tabs/main.php'),(7478,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/sysinfo/tabs/php-info.php'),(7479,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/upgrade/changelog.php'),(7480,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/templates/upgrade/error.php'),(7481,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/yit-deactive-plugin.php'),(7482,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/yit-functions.php'),(7483,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/yit-plugin-registration-hook.php'),(7484,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/yit-plugin.php'),(7485,'wp-content/plugins/yith-woocommerce-wishlist/plugin-fw/yit-woocommerce-compatibility.php'),(7486,'wp-content/plugins/yith-woocommerce-wishlist/plugin-options/add_to_wishlist-options.php'),(7487,'wp-content/plugins/yith-woocommerce-wishlist/plugin-options/lists-options.php'),(7488,'wp-content/plugins/yith-woocommerce-wishlist/plugin-options/settings-options.php'),(7489,'wp-content/plugins/yith-woocommerce-wishlist/plugin-options/wishlist_page-options.php'),(7490,'wp-content/plugins/yith-woocommerce-wishlist/templates/add-to-wishlist-added.php'),(7491,'wp-content/plugins/yith-woocommerce-wishlist/templates/add-to-wishlist-browse.php'),(7492,'wp-content/plugins/yith-woocommerce-wishlist/templates/add-to-wishlist-button.php'),(7493,'wp-content/plugins/yith-woocommerce-wishlist/templates/add-to-wishlist-remove.php'),(7494,'wp-content/plugins/yith-woocommerce-wishlist/templates/add-to-wishlist.php'),(7495,'wp-content/plugins/yith-woocommerce-wishlist/templates/share.php'),(7496,'wp-content/plugins/yith-woocommerce-wishlist/templates/wishlist-view-footer-mobile.php'),(7497,'wp-content/plugins/yith-woocommerce-wishlist/templates/wishlist-view-footer.php'),(7498,'wp-content/plugins/yith-woocommerce-wishlist/templates/wishlist-view-header.php'),(7499,'wp-content/plugins/yith-woocommerce-wishlist/templates/wishlist-view-mobile.php'),(7500,'wp-content/plugins/yith-woocommerce-wishlist/templates/wishlist-view.php'),(7501,'wp-content/plugins/yith-woocommerce-wishlist/templates/wishlist.php'),(7502,'wp-content/plugins/yith-woocommerce-wishlist/uninstall.php'),(7503,'wp-content/plugins/yith-woocommerce-wishlist/wpml-config.xml'),(7504,'wp-content/themes/flatsome/404.php'),(7505,'wp-content/themes/flatsome/archive-featured_item.php'),(7506,'wp-content/themes/flatsome/assets/css/icons/fl-icons.svg'),(7507,'wp-content/themes/flatsome/assets/img/logo-icon.svg'),(7508,'wp-content/themes/flatsome/assets/img/payment-icons/icon-afterpay-2.svg.php'),(7509,'wp-content/themes/flatsome/assets/img/payment-icons/icon-afterpay.svg.php'),(7510,'wp-content/themes/flatsome/assets/img/payment-icons/icon-alipay.svg.php'),(7511,'wp-content/themes/flatsome/assets/img/payment-icons/icon-amazon.svg.php'),(7512,'wp-content/themes/flatsome/assets/img/payment-icons/icon-americanexpress.svg.php'),(7513,'wp-content/themes/flatsome/assets/img/payment-icons/icon-applepay.svg.php'),(7514,'wp-content/themes/flatsome/assets/img/payment-icons/icon-atm.svg.php'),(7515,'wp-content/themes/flatsome/assets/img/payment-icons/icon-bancontact.svg.php'),(7516,'wp-content/themes/flatsome/assets/img/payment-icons/icon-bankomat.svg.php'),(7517,'wp-content/themes/flatsome/assets/img/payment-icons/icon-banktransfer.svg.php'),(7518,'wp-content/themes/flatsome/assets/img/payment-icons/icon-belfius.svg.php'),(7519,'wp-content/themes/flatsome/assets/img/payment-icons/icon-bitcoin.svg.php'),(7520,'wp-content/themes/flatsome/assets/img/payment-icons/icon-braintree.svg.php'),(7521,'wp-content/themes/flatsome/assets/img/payment-icons/icon-cartasi.svg.php'),(7522,'wp-content/themes/flatsome/assets/img/payment-icons/icon-cashcloud.svg.php'),(7523,'wp-content/themes/flatsome/assets/img/payment-icons/icon-cashondelivery.svg.php'),(7524,'wp-content/themes/flatsome/assets/img/payment-icons/icon-cashonpickup.svg.php'),(7525,'wp-content/themes/flatsome/assets/img/payment-icons/icon-cbc.svg.php'),(7526,'wp-content/themes/flatsome/assets/img/payment-icons/icon-cirrus.svg.php'),(7527,'wp-content/themes/flatsome/assets/img/payment-icons/icon-clickandbuy.svg.php'),(7528,'wp-content/themes/flatsome/assets/img/payment-icons/icon-creditcard.svg.php'),(7529,'wp-content/themes/flatsome/assets/img/payment-icons/icon-creditcard2.svg.php'),(7530,'wp-content/themes/flatsome/assets/img/payment-icons/icon-dancard.svg.php'),(7531,'wp-content/themes/flatsome/assets/img/payment-icons/icon-dinnersclub.svg.php'),(7532,'wp-content/themes/flatsome/assets/img/payment-icons/icon-discover.svg.php'),(7533,'wp-content/themes/flatsome/assets/img/payment-icons/icon-elo.svg.php'),(7534,'wp-content/themes/flatsome/assets/img/payment-icons/icon-eps.svg.php'),(7535,'wp-content/themes/flatsome/assets/img/payment-icons/icon-facture.svg.php'),(7536,'wp-content/themes/flatsome/assets/img/payment-icons/icon-fattura.svg.php'),(7537,'wp-content/themes/flatsome/assets/img/payment-icons/icon-flattr.svg.php'),(7538,'wp-content/themes/flatsome/assets/img/payment-icons/icon-giropay.svg.php'),(7539,'wp-content/themes/flatsome/assets/img/payment-icons/icon-googlepay.svg.php'),(7540,'wp-content/themes/flatsome/assets/img/payment-icons/icon-googlewallet.svg.php'),(7541,'wp-content/themes/flatsome/assets/img/payment-icons/icon-hiper.svg.php'),(7542,'wp-content/themes/flatsome/assets/img/payment-icons/icon-ideal.svg.php'),(7543,'wp-content/themes/flatsome/assets/img/payment-icons/icon-interac.svg.php'),(7544,'wp-content/themes/flatsome/assets/img/payment-icons/icon-invoice.svg.php'),(7545,'wp-content/themes/flatsome/assets/img/payment-icons/icon-jcb.svg.php'),(7546,'wp-content/themes/flatsome/assets/img/payment-icons/icon-kbc.svg.php'),(7547,'wp-content/themes/flatsome/assets/img/payment-icons/icon-klarna.svg.php'),(7548,'wp-content/themes/flatsome/assets/img/payment-icons/icon-maestro.svg.php'),(7549,'wp-content/themes/flatsome/assets/img/payment-icons/icon-mastercard-2.svg.php'),(7550,'wp-content/themes/flatsome/assets/img/payment-icons/icon-mastercard.svg.php'),(7551,'wp-content/themes/flatsome/assets/img/payment-icons/icon-mir.svg.php'),(7552,'wp-content/themes/flatsome/assets/img/payment-icons/icon-moip.svg.php'),(7553,'wp-content/themes/flatsome/assets/img/payment-icons/icon-mollie.svg.php'),(7554,'wp-content/themes/flatsome/assets/img/payment-icons/icon-ogone.svg.php'),(7555,'wp-content/themes/flatsome/assets/img/payment-icons/icon-paybox.svg.php'),(7556,'wp-content/themes/flatsome/assets/img/payment-icons/icon-paylife.svg.php'),(7557,'wp-content/themes/flatsome/assets/img/payment-icons/icon-paymill.svg.php'),(7558,'wp-content/themes/flatsome/assets/img/payment-icons/icon-paypal-2.svg.php'),(7559,'wp-content/themes/flatsome/assets/img/payment-icons/icon-paypal.svg.php'),(7560,'wp-content/themes/flatsome/assets/img/payment-icons/icon-paysafe.svg.php'),(7561,'wp-content/themes/flatsome/assets/img/payment-icons/icon-payshop.svg.php'),(7562,'wp-content/themes/flatsome/assets/img/payment-icons/icon-paytm.svg.php'),(7563,'wp-content/themes/flatsome/assets/img/payment-icons/icon-payu.svg.php'),(7564,'wp-content/themes/flatsome/assets/img/payment-icons/icon-postepay.svg.php'),(7565,'wp-content/themes/flatsome/assets/img/payment-icons/icon-quick.svg.php'),(7566,'wp-content/themes/flatsome/assets/img/payment-icons/icon-rechung.svg.php'),(7567,'wp-content/themes/flatsome/assets/img/payment-icons/icon-ripple.svg.php'),(7568,'wp-content/themes/flatsome/assets/img/payment-icons/icon-rupay.svg.php'),(7569,'wp-content/themes/flatsome/assets/img/payment-icons/icon-sage.svg.php'),(7570,'wp-content/themes/flatsome/assets/img/payment-icons/icon-sepa.svg.php'),(7571,'wp-content/themes/flatsome/assets/img/payment-icons/icon-six.svg.php'),(7572,'wp-content/themes/flatsome/assets/img/payment-icons/icon-skrill.svg.php'),(7573,'wp-content/themes/flatsome/assets/img/payment-icons/icon-sofort.svg.php'),(7574,'wp-content/themes/flatsome/assets/img/payment-icons/icon-square.svg.php'),(7575,'wp-content/themes/flatsome/assets/img/payment-icons/icon-stripe.svg.php'),(7576,'wp-content/themes/flatsome/assets/img/payment-icons/icon-swish.svg.php'),(7577,'wp-content/themes/flatsome/assets/img/payment-icons/icon-truste.svg.php'),(7578,'wp-content/themes/flatsome/assets/img/payment-icons/icon-twint.svg.php'),(7579,'wp-content/themes/flatsome/assets/img/payment-icons/icon-unionpay.svg.php'),(7580,'wp-content/themes/flatsome/assets/img/payment-icons/icon-venmo.svg.php'),(7581,'wp-content/themes/flatsome/assets/img/payment-icons/icon-verisign.svg.php'),(7582,'wp-content/themes/flatsome/assets/img/payment-icons/icon-vipps.svg.php'),(7583,'wp-content/themes/flatsome/assets/img/payment-icons/icon-visa.svg.php'),(7584,'wp-content/themes/flatsome/assets/img/payment-icons/icon-visa1.svg.php'),(7585,'wp-content/themes/flatsome/assets/img/payment-icons/icon-visaelectron.svg.php'),(7586,'wp-content/themes/flatsome/assets/img/payment-icons/icon-westernunion.svg.php'),(7587,'wp-content/themes/flatsome/assets/img/payment-icons/icon-wirecard.svg.php'),(7588,'wp-content/themes/flatsome/assets/js/admin/admin-menu.asset.php'),(7589,'wp-content/themes/flatsome/assets/js/admin/admin-menu.js'),(7590,'wp-content/themes/flatsome/assets/js/admin/customizer-admin.asset.php'),(7591,'wp-content/themes/flatsome/assets/js/admin/customizer-admin.js'),(7592,'wp-content/themes/flatsome/assets/js/admin/customizer-frontend.asset.php'),(7593,'wp-content/themes/flatsome/assets/js/admin/customizer-frontend.js'),(7594,'wp-content/themes/flatsome/assets/js/builder/core/content.asset.php'),(7595,'wp-content/themes/flatsome/assets/js/builder/core/content.js'),(7596,'wp-content/themes/flatsome/assets/js/builder/core/editor.asset.php'),(7597,'wp-content/themes/flatsome/assets/js/builder/core/editor.js'),(7598,'wp-content/themes/flatsome/assets/js/builder/custom/content.asset.php'),(7599,'wp-content/themes/flatsome/assets/js/builder/custom/content.js'),(7600,'wp-content/themes/flatsome/assets/js/builder/custom/editor.asset.php'),(7601,'wp-content/themes/flatsome/assets/js/builder/custom/editor.js'),(7602,'wp-content/themes/flatsome/assets/js/builder/vendors/vendors.asset.php'),(7603,'wp-content/themes/flatsome/assets/js/builder/vendors/vendors.js'),(7604,'wp-content/themes/flatsome/assets/js/extensions/flatsome-swatches-admin.asset.php'),(7605,'wp-content/themes/flatsome/assets/js/extensions/flatsome-swatches-admin.js'),(7606,'wp-content/themes/flatsome/assets/js/extensions/flatsome-swatches-frontend.asset.php'),(7607,'wp-content/themes/flatsome/assets/js/extensions/flatsome-swatches-frontend.js'),(7608,'wp-content/themes/flatsome/assets/js/flatsome.asset.php'),(7609,'wp-content/themes/flatsome/assets/js/flatsome.js'),(7610,'wp-content/themes/flatsome/assets/js/woocommerce.asset.php'),(7611,'wp-content/themes/flatsome/assets/js/woocommerce.js'),(7612,'wp-content/themes/flatsome/assets/libs/float-labels.min.js'),(7613,'wp-content/themes/flatsome/assets/libs/ie-flexibility.js'),(7614,'wp-content/themes/flatsome/assets/libs/infinite-scroll.pkgd.min.js'),(7615,'wp-content/themes/flatsome/assets/libs/isotope.pkgd.min.js'),(7616,'wp-content/themes/flatsome/assets/libs/packery.pkgd.min.js'),(7617,'wp-content/themes/flatsome/comments.php'),(7618,'wp-content/themes/flatsome/footer.php'),(7619,'wp-content/themes/flatsome/functions.php'),(7620,'wp-content/themes/flatsome/header.php'),(7621,'wp-content/themes/flatsome/image.php'),(7622,'wp-content/themes/flatsome/inc/admin/admin-bar.php'),(7623,'wp-content/themes/flatsome/inc/admin/admin-init.php'),(7624,'wp-content/themes/flatsome/inc/admin/admin-notice.php'),(7625,'wp-content/themes/flatsome/inc/admin/advanced/assets/js/color-picker.min.js'),(7626,'wp-content/themes/flatsome/inc/admin/advanced/assets/js/cookie.js'),(7627,'wp-content/themes/flatsome/inc/admin/advanced/assets/js/iris.min.js'),(7628,'wp-content/themes/flatsome/inc/admin/advanced/assets/js/jquery.maskedinput-1.4.1.js'),(7629,'wp-content/themes/flatsome/inc/admin/advanced/assets/js/jquery.tipsy.js'),(7630,'wp-content/themes/flatsome/inc/admin/advanced/assets/js/min/iris.min-min.js'),(7631,'wp-content/themes/flatsome/inc/admin/advanced/assets/js/min/smof-min.js'),(7632,'wp-content/themes/flatsome/inc/admin/advanced/assets/js/smof.js'),(7633,'wp-content/themes/flatsome/inc/admin/advanced/classes/class.options_machine.php'),(7634,'wp-content/themes/flatsome/inc/admin/advanced/front-end/options.php'),(7635,'wp-content/themes/flatsome/inc/admin/advanced/functions/functions.admin.php'),(7636,'wp-content/themes/flatsome/inc/admin/advanced/functions/functions.facebook.php'),(7637,'wp-content/themes/flatsome/inc/admin/advanced/functions/functions.interface.php'),(7638,'wp-content/themes/flatsome/inc/admin/advanced/functions/functions.load.php'),(7639,'wp-content/themes/flatsome/inc/admin/advanced/functions/functions.options.php'),(7640,'wp-content/themes/flatsome/inc/admin/advanced/functions/functions.php'),(7641,'wp-content/themes/flatsome/inc/admin/advanced/index.php'),(7642,'wp-content/themes/flatsome/inc/admin/backend/menu/class-menu.php'),(7643,'wp-content/themes/flatsome/inc/admin/customizer/customizer-config.php'),(7644,'wp-content/themes/flatsome/inc/admin/customizer/customizer-reset.php'),(7645,'wp-content/themes/flatsome/inc/admin/customizer/header-builder.php'),(7646,'wp-content/themes/flatsome/inc/admin/customizer/img/account-icon-fill-round.svg'),(7647,'wp-content/themes/flatsome/inc/admin/customizer/img/account-icon-fill.svg'),(7648,'wp-content/themes/flatsome/inc/admin/customizer/img/account-icon-image.svg'),(7649,'wp-content/themes/flatsome/inc/admin/customizer/img/account-icon-outline-round.svg'),(7650,'wp-content/themes/flatsome/inc/admin/customizer/img/account-icon-outline.svg'),(7651,'wp-content/themes/flatsome/inc/admin/customizer/img/account-icon-plain.svg'),(7652,'wp-content/themes/flatsome/inc/admin/customizer/img/align-center.svg'),(7653,'wp-content/themes/flatsome/inc/admin/customizer/img/align-left.svg'),(7654,'wp-content/themes/flatsome/inc/admin/customizer/img/align-right.svg'),(7655,'wp-content/themes/flatsome/inc/admin/customizer/img/back-to-top-outline-circle.svg'),(7656,'wp-content/themes/flatsome/inc/admin/customizer/img/back-to-top-outline-square.svg'),(7657,'wp-content/themes/flatsome/inc/admin/customizer/img/badge-border.svg'),(7658,'wp-content/themes/flatsome/inc/admin/customizer/img/badge-circle-inside.svg'),(7659,'wp-content/themes/flatsome/inc/admin/customizer/img/badge-circle.svg'),(7660,'wp-content/themes/flatsome/inc/admin/customizer/img/badge-outline.svg'),(7661,'wp-content/themes/flatsome/inc/admin/customizer/img/badge-square.svg'),(7662,'wp-content/themes/flatsome/inc/admin/customizer/img/blog-default.svg'),(7663,'wp-content/themes/flatsome/inc/admin/customizer/img/blog-inline.svg'),(7664,'wp-content/themes/flatsome/inc/admin/customizer/img/blog-list.svg'),(7665,'wp-content/themes/flatsome/inc/admin/customizer/img/blog-normal.svg'),(7666,'wp-content/themes/flatsome/inc/admin/customizer/img/blog-single-full.svg'),(7667,'wp-content/themes/flatsome/inc/admin/customizer/img/blog-single-inline.svg'),(7668,'wp-content/themes/flatsome/inc/admin/customizer/img/blog-single-top.svg'),(7669,'wp-content/themes/flatsome/inc/admin/customizer/img/blog-single.svg'),(7670,'wp-content/themes/flatsome/inc/admin/customizer/img/blog-three-col.svg'),(7671,'wp-content/themes/flatsome/inc/admin/customizer/img/blog-two-col.svg'),(7672,'wp-content/themes/flatsome/inc/admin/customizer/img/cart-icon-bag.svg'),(7673,'wp-content/themes/flatsome/inc/admin/customizer/img/cart-icon-basket.svg'),(7674,'wp-content/themes/flatsome/inc/admin/customizer/img/cart-icon-cart.svg'),(7675,'wp-content/themes/flatsome/inc/admin/customizer/img/cart-icon-default.svg'),(7676,'wp-content/themes/flatsome/inc/admin/customizer/img/cart-icon-fill-round.svg'),(7677,'wp-content/themes/flatsome/inc/admin/customizer/img/cart-icon-fill.svg'),(7678,'wp-content/themes/flatsome/inc/admin/customizer/img/cart-icon-outline-round.svg'),(7679,'wp-content/themes/flatsome/inc/admin/customizer/img/cart-icon-outline.svg'),(7680,'wp-content/themes/flatsome/inc/admin/customizer/img/cart-icon-plain.svg'),(7681,'wp-content/themes/flatsome/inc/admin/customizer/img/category-box-badge.svg'),(7682,'wp-content/themes/flatsome/inc/admin/customizer/img/category-box-bounce.svg'),(7683,'wp-content/themes/flatsome/inc/admin/customizer/img/category-box-label.svg'),(7684,'wp-content/themes/flatsome/inc/admin/customizer/img/category-box-overlay.svg'),(7685,'wp-content/themes/flatsome/inc/admin/customizer/img/category-box-push.svg'),(7686,'wp-content/themes/flatsome/inc/admin/customizer/img/category-box-shade.svg'),(7687,'wp-content/themes/flatsome/inc/admin/customizer/img/category-box.svg'),(7688,'wp-content/themes/flatsome/inc/admin/customizer/img/category-featured-title.svg'),(7689,'wp-content/themes/flatsome/inc/admin/customizer/img/category-featured.svg'),(7690,'wp-content/themes/flatsome/inc/admin/customizer/img/category-left-sidebar.svg'),(7691,'wp-content/themes/flatsome/inc/admin/customizer/img/category-no-sidebar.svg'),(7692,'wp-content/themes/flatsome/inc/admin/customizer/img/category-off-canvas.svg'),(7693,'wp-content/themes/flatsome/inc/admin/customizer/img/category-right-sidebar.svg'),(7694,'wp-content/themes/flatsome/inc/admin/customizer/img/category-style-grid.svg'),(7695,'wp-content/themes/flatsome/inc/admin/customizer/img/category-style-list.svg'),(7696,'wp-content/themes/flatsome/inc/admin/customizer/img/category-style-masonry.svg'),(7697,'wp-content/themes/flatsome/inc/admin/customizer/img/category-title-center.svg'),(7698,'wp-content/themes/flatsome/inc/admin/customizer/img/category-title-featured-center.svg'),(7699,'wp-content/themes/flatsome/inc/admin/customizer/img/category-title-featured.svg'),(7700,'wp-content/themes/flatsome/inc/admin/customizer/img/category-title-push.svg'),(7701,'wp-content/themes/flatsome/inc/admin/customizer/img/category-title-title.svg'),(7702,'wp-content/themes/flatsome/inc/admin/customizer/img/category-title.svg'),(7703,'wp-content/themes/flatsome/inc/admin/customizer/img/container.svg'),(7704,'wp-content/themes/flatsome/inc/admin/customizer/img/disabled.svg'),(7705,'wp-content/themes/flatsome/inc/admin/customizer/img/dropdown-style-1.svg'),(7706,'wp-content/themes/flatsome/inc/admin/customizer/img/dropdown-style-2.svg'),(7707,'wp-content/themes/flatsome/inc/admin/customizer/img/dropdown-style-3.svg'),(7708,'wp-content/themes/flatsome/inc/admin/customizer/img/featured-posts-top.svg'),(7709,'wp-content/themes/flatsome/inc/admin/customizer/img/featured-posts.svg'),(7710,'wp-content/themes/flatsome/inc/admin/customizer/img/form-login-lightbox-left-panel.svg'),(7711,'wp-content/themes/flatsome/inc/admin/customizer/img/form-login-lightbox-right-panel.svg'),(7712,'wp-content/themes/flatsome/inc/admin/customizer/img/form-login.svg'),(7713,'wp-content/themes/flatsome/inc/admin/customizer/img/full-width.svg'),(7714,'wp-content/themes/flatsome/inc/admin/customizer/img/header-top.svg'),(7715,'wp-content/themes/flatsome/inc/admin/customizer/img/icon-fill-round.svg'),(7716,'wp-content/themes/flatsome/inc/admin/customizer/img/icon-fill.svg'),(7717,'wp-content/themes/flatsome/inc/admin/customizer/img/icon-left.svg'),(7718,'wp-content/themes/flatsome/inc/admin/customizer/img/icon-outline-round.svg'),(7719,'wp-content/themes/flatsome/inc/admin/customizer/img/icon-outline.svg'),(7720,'wp-content/themes/flatsome/inc/admin/customizer/img/icon-plain.svg'),(7721,'wp-content/themes/flatsome/inc/admin/customizer/img/icon-right.svg'),(7722,'wp-content/themes/flatsome/inc/admin/customizer/img/icon-top.svg'),(7723,'wp-content/themes/flatsome/inc/admin/customizer/img/layout-custom.svg'),(7724,'wp-content/themes/flatsome/inc/admin/customizer/img/layout-full-gallery.svg'),(7725,'wp-content/themes/flatsome/inc/admin/customizer/img/layout-left-full.svg'),(7726,'wp-content/themes/flatsome/inc/admin/customizer/img/layout-left-small.svg'),(7727,'wp-content/themes/flatsome/inc/admin/customizer/img/layout-left.svg'),(7728,'wp-content/themes/flatsome/inc/admin/customizer/img/layout-no-sidebar.svg'),(7729,'wp-content/themes/flatsome/inc/admin/customizer/img/layout-right-full.svg'),(7730,'wp-content/themes/flatsome/inc/admin/customizer/img/layout-right-small.svg'),(7731,'wp-content/themes/flatsome/inc/admin/customizer/img/layout-right.svg'),(7732,'wp-content/themes/flatsome/inc/admin/customizer/img/layout-wide-gallery.svg'),(7733,'wp-content/themes/flatsome/inc/admin/customizer/img/logo-left.svg'),(7734,'wp-content/themes/flatsome/inc/admin/customizer/img/logo-right.svg'),(7735,'wp-content/themes/flatsome/inc/admin/customizer/img/nav-bottom-center.svg'),(7736,'wp-content/themes/flatsome/inc/admin/customizer/img/nav-bottom-left.svg'),(7737,'wp-content/themes/flatsome/inc/admin/customizer/img/nav-box.svg'),(7738,'wp-content/themes/flatsome/inc/admin/customizer/img/nav-default.svg'),(7739,'wp-content/themes/flatsome/inc/admin/customizer/img/nav-divided.svg'),(7740,'wp-content/themes/flatsome/inc/admin/customizer/img/nav-icon-fill-round.svg'),(7741,'wp-content/themes/flatsome/inc/admin/customizer/img/nav-icon-fill.svg'),(7742,'wp-content/themes/flatsome/inc/admin/customizer/img/nav-icon-left.svg'),(7743,'wp-content/themes/flatsome/inc/admin/customizer/img/nav-icon-nav-outline-round.svg'),(7744,'wp-content/themes/flatsome/inc/admin/customizer/img/nav-icon-outline-round.svg'),(7745,'wp-content/themes/flatsome/inc/admin/customizer/img/nav-icon-outline.svg'),(7746,'wp-content/themes/flatsome/inc/admin/customizer/img/nav-icon-plain.svg'),(7747,'wp-content/themes/flatsome/inc/admin/customizer/img/nav-icon-right.svg'),(7748,'wp-content/themes/flatsome/inc/admin/customizer/img/nav-left.svg'),(7749,'wp-content/themes/flatsome/inc/admin/customizer/img/nav-line-bottom.svg'),(7750,'wp-content/themes/flatsome/inc/admin/customizer/img/nav-line-grow.svg'),(7751,'wp-content/themes/flatsome/inc/admin/customizer/img/nav-line.svg'),(7752,'wp-content/themes/flatsome/inc/admin/customizer/img/nav-outline.svg'),(7753,'wp-content/themes/flatsome/inc/admin/customizer/img/nav-pills.svg'),(7754,'wp-content/themes/flatsome/inc/admin/customizer/img/nav-right.svg'),(7755,'wp-content/themes/flatsome/inc/admin/customizer/img/nav-tabs.svg'),(7756,'wp-content/themes/flatsome/inc/admin/customizer/img/nav-wide-center.svg'),(7757,'wp-content/themes/flatsome/inc/admin/customizer/img/nav-wide-left.svg'),(7758,'wp-content/themes/flatsome/inc/admin/customizer/img/overlay-center.svg'),(7759,'wp-content/themes/flatsome/inc/admin/customizer/img/overlay-left.svg'),(7760,'wp-content/themes/flatsome/inc/admin/customizer/img/overlay-right.svg'),(7761,'wp-content/themes/flatsome/inc/admin/customizer/img/portfolio-bottom-full.svg'),(7762,'wp-content/themes/flatsome/inc/admin/customizer/img/portfolio-bottom.svg'),(7763,'wp-content/themes/flatsome/inc/admin/customizer/img/portfolio-overlay.svg'),(7764,'wp-content/themes/flatsome/inc/admin/customizer/img/portfolio-shade.svg'),(7765,'wp-content/themes/flatsome/inc/admin/customizer/img/portfolio-sidebar-right.svg'),(7766,'wp-content/themes/flatsome/inc/admin/customizer/img/portfolio-simple.svg'),(7767,'wp-content/themes/flatsome/inc/admin/customizer/img/portfolio-title-breadcrumbs.svg'),(7768,'wp-content/themes/flatsome/inc/admin/customizer/img/portfolio-title-featured.svg'),(7769,'wp-content/themes/flatsome/inc/admin/customizer/img/portfolio-title.svg'),(7770,'wp-content/themes/flatsome/inc/admin/customizer/img/portfolio-top-full.svg'),(7771,'wp-content/themes/flatsome/inc/admin/customizer/img/portfolio-top.svg'),(7772,'wp-content/themes/flatsome/inc/admin/customizer/img/portfolio.svg'),(7773,'wp-content/themes/flatsome/inc/admin/customizer/img/product-box-add-to-cart-button.svg'),(7774,'wp-content/themes/flatsome/inc/admin/customizer/img/product-box-add-to-cart-icon.svg'),(7775,'wp-content/themes/flatsome/inc/admin/customizer/img/product-box-add-to-cart-tools.svg'),(7776,'wp-content/themes/flatsome/inc/admin/customizer/img/product-box-center.svg'),(7777,'wp-content/themes/flatsome/inc/admin/customizer/img/product-box-wide.svg'),(7778,'wp-content/themes/flatsome/inc/admin/customizer/img/product-box.svg'),(7779,'wp-content/themes/flatsome/inc/admin/customizer/img/product-gallery-vertical-right.svg'),(7780,'wp-content/themes/flatsome/inc/admin/customizer/img/product-gallery-vertical.svg'),(7781,'wp-content/themes/flatsome/inc/admin/customizer/img/product-gallery.svg'),(7782,'wp-content/themes/flatsome/inc/admin/customizer/img/product-page-title-center.svg'),(7783,'wp-content/themes/flatsome/inc/admin/customizer/img/product-page-title-featured-center.svg'),(7784,'wp-content/themes/flatsome/inc/admin/customizer/img/product-page-title-featured.svg'),(7785,'wp-content/themes/flatsome/inc/admin/customizer/img/product-page-title-top.svg'),(7786,'wp-content/themes/flatsome/inc/admin/customizer/img/product-page-title.svg'),(7787,'wp-content/themes/flatsome/inc/admin/customizer/img/product-stacked.svg'),(7788,'wp-content/themes/flatsome/inc/admin/customizer/img/product-swatches-stacked.svg'),(7789,'wp-content/themes/flatsome/inc/admin/customizer/img/product-swatches.svg'),(7790,'wp-content/themes/flatsome/inc/admin/customizer/img/product-title-featured-center.svg'),(7791,'wp-content/themes/flatsome/inc/admin/customizer/img/product-title-featured.svg'),(7792,'wp-content/themes/flatsome/inc/admin/customizer/img/product-title-push.svg'),(7793,'wp-content/themes/flatsome/inc/admin/customizer/img/product-title-top.svg'),(7794,'wp-content/themes/flatsome/inc/admin/customizer/img/product-title.svg'),(7795,'wp-content/themes/flatsome/inc/admin/customizer/img/search-icon-fill-round.svg'),(7796,'wp-content/themes/flatsome/inc/admin/customizer/img/search-icon-fill.svg'),(7797,'wp-content/themes/flatsome/inc/admin/customizer/img/search-icon-outline-round.svg'),(7798,'wp-content/themes/flatsome/inc/admin/customizer/img/search-icon-outline.svg'),(7799,'wp-content/themes/flatsome/inc/admin/customizer/img/search-icon-plain.svg'),(7800,'wp-content/themes/flatsome/inc/admin/customizer/img/slider-focus.svg'),(7801,'wp-content/themes/flatsome/inc/admin/customizer/img/text-bottom.svg'),(7802,'wp-content/themes/flatsome/inc/admin/customizer/img/text-dark.svg'),(7803,'wp-content/themes/flatsome/inc/admin/customizer/img/text-light.svg'),(7804,'wp-content/themes/flatsome/inc/admin/customizer/img/text-overlay.svg'),(7805,'wp-content/themes/flatsome/inc/admin/customizer/img/text-top.svg'),(7806,'wp-content/themes/flatsome/inc/admin/customizer/js/customizer-reset.js'),(7807,'wp-content/themes/flatsome/inc/admin/envato_setup/child-theme/child-theme-css.php'),(7808,'wp-content/themes/flatsome/inc/admin/envato_setup/child-theme/functions.php'),(7809,'wp-content/themes/flatsome/inc/admin/envato_setup/create_child_theme.php'),(7810,'wp-content/themes/flatsome/inc/admin/envato_setup/create_childtheme.php'),(7811,'wp-content/themes/flatsome/inc/admin/envato_setup/envato_setup.php'),(7812,'wp-content/themes/flatsome/inc/admin/envato_setup/envato_setup_init.php'),(7813,'wp-content/themes/flatsome/inc/admin/envato_setup/importer/envato-content-import.php'),(7814,'wp-content/themes/flatsome/inc/admin/envato_setup/importer/parsers.php'),(7815,'wp-content/themes/flatsome/inc/admin/envato_setup/importer/wordpress-importer.php'),(7816,'wp-content/themes/flatsome/inc/admin/envato_setup/js/envato-setup.js'),(7817,'wp-content/themes/flatsome/inc/admin/envato_setup/js/jquery.blockUI.js'),(7818,'wp-content/themes/flatsome/inc/admin/envato_setup/presets/header-reset.php'),(7819,'wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-agency.php'),(7820,'wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-architecture.php'),(7821,'wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-cute-shop.php'),(7822,'wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-explore.php'),(7823,'wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-freelancer.php'),(7824,'wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-fullscreen-fashion.php'),(7825,'wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-grid-style-1.php'),(7826,'wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-grid-style-2.php'),(7827,'wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-mega-shop.php'),(7828,'wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-parallax-shop.php'),(7829,'wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-sale-countdown.php'),(7830,'wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-simple-corporate.php'),(7831,'wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-simple-slider.php'),(7832,'wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-sport-shop.php'),(7833,'wp-content/themes/flatsome/inc/admin/envato_setup/presets/layout-vendor-shop.php'),(7834,'wp-content/themes/flatsome/inc/admin/gutenberg/assets/js/blocks.js'),(7835,'wp-content/themes/flatsome/inc/admin/gutenberg/assets/js/edit-button.js'),(7836,'wp-content/themes/flatsome/inc/admin/gutenberg/class-gutenberg.php'),(7837,'wp-content/themes/flatsome/inc/admin/kirki/assets/images/kirki-bottom.svg'),(7838,'wp-content/themes/flatsome/inc/admin/kirki/assets/images/kirki-logo.svg'),(7839,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/ar.js'),(7840,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/az.js'),(7841,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/bg.js'),(7842,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/ca.js'),(7843,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/cs.js'),(7844,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/da.js'),(7845,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/de.js'),(7846,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/el.js'),(7847,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/en.js'),(7848,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/es.js'),(7849,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/et.js'),(7850,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/eu.js'),(7851,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/fa.js'),(7852,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/fi.js'),(7853,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/fr.js'),(7854,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/gl.js'),(7855,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/he.js'),(7856,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/hi.js'),(7857,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/hr.js'),(7858,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/hu.js'),(7859,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/hy.js'),(7860,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/id.js'),(7861,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/is.js'),(7862,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/it.js'),(7863,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/ja.js'),(7864,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/km.js'),(7865,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/ko.js'),(7866,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/lt.js'),(7867,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/lv.js'),(7868,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/mk.js'),(7869,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/ms.js'),(7870,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/nb.js'),(7871,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/nl.js'),(7872,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/pl.js'),(7873,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/pt-BR.js'),(7874,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/pt.js'),(7875,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/ro.js'),(7876,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/ru.js'),(7877,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/sk.js'),(7878,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/sl.js'),(7879,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/sr-Cyrl.js'),(7880,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/sr.js'),(7881,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/sv.js'),(7882,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/th.js'),(7883,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/tr.js'),(7884,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/uk.js'),(7885,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/vi.js'),(7886,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/zh-CN.js'),(7887,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/i18n/zh-TW.js'),(7888,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/select2.full.js'),(7889,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/select2.full.min.js'),(7890,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/select2.js'),(7891,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/select2.min.js'),(7892,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/selectWoo.full.js'),(7893,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/selectWoo.full.min.js'),(7894,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/selectWoo.js'),(7895,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/selectWoo/js/selectWoo.min.js'),(7896,'wp-content/themes/flatsome/inc/admin/kirki/assets/vendor/wp-color-picker-alpha/wp-color-picker-alpha.js'),(7897,'wp-content/themes/flatsome/inc/admin/kirki/class-kirki-autoload.php'),(7898,'wp-content/themes/flatsome/inc/admin/kirki/controls/class-kirki-controls.php'),(7899,'wp-content/themes/flatsome/inc/admin/kirki/controls/js/script.js'),(7900,'wp-content/themes/flatsome/inc/admin/kirki/controls/js/script.min.js'),(7901,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-background.php'),(7902,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-base.php'),(7903,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-checkbox.php'),(7904,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-code.php'),(7905,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-color-palette.php'),(7906,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-color.php'),(7907,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-cropped-image.php'),(7908,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-custom.php'),(7909,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-dashicons.php'),(7910,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-date.php'),(7911,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-dimension.php'),(7912,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-dimensions.php'),(7913,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-editor.php'),(7914,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-generic.php'),(7915,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-image.php'),(7916,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-multicheck.php'),(7917,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-multicolor.php'),(7918,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-number.php'),(7919,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-palette.php'),(7920,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-radio-buttonset.php'),(7921,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-radio-image.php'),(7922,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-radio.php'),(7923,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-repeater.php'),(7924,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-select.php'),(7925,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-slider.php'),(7926,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-sortable.php'),(7927,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-switch.php'),(7928,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-toggle.php'),(7929,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-typography.php'),(7930,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-control-upload.php'),(7931,'wp-content/themes/flatsome/inc/admin/kirki/controls/php/class-kirki-settings-repeater-setting.php'),(7932,'wp-content/themes/flatsome/inc/admin/kirki/controls/views/code.php'),(7933,'wp-content/themes/flatsome/inc/admin/kirki/controls/views/color.php'),(7934,'wp-content/themes/flatsome/inc/admin/kirki/controls/views/generic.php'),(7935,'wp-content/themes/flatsome/inc/admin/kirki/controls/views/image.php'),(7936,'wp-content/themes/flatsome/inc/admin/kirki/controls/views/number.php'),(7937,'wp-content/themes/flatsome/inc/admin/kirki/controls/views/radio.php'),(7938,'wp-content/themes/flatsome/inc/admin/kirki/controls/views/select.php'),(7939,'wp-content/themes/flatsome/inc/admin/kirki/controls/views/textarea.php'),(7940,'wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-config.php'),(7941,'wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-control.php'),(7942,'wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-field.php'),(7943,'wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-helper.php'),(7944,'wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-init.php'),(7945,'wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-l10n.php'),(7946,'wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-modules.php'),(7947,'wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-panel.php'),(7948,'wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-sanitize-values.php'),(7949,'wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-section.php'),(7950,'wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-sections.php'),(7951,'wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-setting-site-option.php'),(7952,'wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-setting-user-meta.php'),(7953,'wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-settings.php'),(7954,'wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-toolkit.php'),(7955,'wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-util.php'),(7956,'wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki-values.php'),(7957,'wp-content/themes/flatsome/inc/admin/kirki/core/class-kirki.php'),(7958,'wp-content/themes/flatsome/inc/admin/kirki/deprecated/classes.php'),(7959,'wp-content/themes/flatsome/inc/admin/kirki/deprecated/deprecated.php'),(7960,'wp-content/themes/flatsome/inc/admin/kirki/deprecated/filters.php'),(7961,'wp-content/themes/flatsome/inc/admin/kirki/deprecated/functions.php'),(7962,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-background.php'),(7963,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-checkbox.php'),(7964,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-code.php'),(7965,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-color-alpha.php'),(7966,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-color-palette.php'),(7967,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-color.php'),(7968,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-custom.php'),(7969,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-dashicons.php'),(7970,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-date.php'),(7971,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-dimension.php'),(7972,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-dimensions.php'),(7973,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-dropdown-pages.php'),(7974,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-editor.php'),(7975,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-fontawesome.php'),(7976,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-generic.php'),(7977,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-group-title.php'),(7978,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-image.php'),(7979,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-kirki-generic.php'),(7980,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-link.php'),(7981,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-multicheck.php'),(7982,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-multicolor.php'),(7983,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-number.php'),(7984,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-palette.php'),(7985,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-preset.php'),(7986,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-radio-buttonset.php'),(7987,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-radio-image.php'),(7988,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-radio.php'),(7989,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-repeater.php'),(7990,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-select.php'),(7991,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-select2-multiple.php'),(7992,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-select2.php'),(7993,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-slider.php'),(7994,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-sortable.php'),(7995,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-spacing.php'),(7996,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-switch.php'),(7997,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-text.php'),(7998,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-textarea.php'),(7999,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-toggle.php'),(8000,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-typography.php'),(8001,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-upload.php'),(8002,'wp-content/themes/flatsome/inc/admin/kirki/field/class-kirki-field-url.php'),(8003,'wp-content/themes/flatsome/inc/admin/kirki/kirki.php'),(8004,'wp-content/themes/flatsome/inc/admin/kirki/lib/class-aricolor.php'),(8005,'wp-content/themes/flatsome/inc/admin/kirki/lib/class-kirki-color.php'),(8006,'wp-content/themes/flatsome/inc/admin/kirki/modules/css/class-kirki-modules-css-generator.php'),(8007,'wp-content/themes/flatsome/inc/admin/kirki/modules/css/class-kirki-modules-css.php'),(8008,'wp-content/themes/flatsome/inc/admin/kirki/modules/css/class-kirki-output.php'),(8009,'wp-content/themes/flatsome/inc/admin/kirki/modules/css/field/class-kirki-output-field-background.php'),(8010,'wp-content/themes/flatsome/inc/admin/kirki/modules/css/field/class-kirki-output-field-dimensions.php'),(8011,'wp-content/themes/flatsome/inc/admin/kirki/modules/css/field/class-kirki-output-field-image.php'),(8012,'wp-content/themes/flatsome/inc/admin/kirki/modules/css/field/class-kirki-output-field-multicolor.php'),(8013,'wp-content/themes/flatsome/inc/admin/kirki/modules/css/field/class-kirki-output-field-typography.php'),(8014,'wp-content/themes/flatsome/inc/admin/kirki/modules/css/property/class-kirki-output-property-background-image.php'),(8015,'wp-content/themes/flatsome/inc/admin/kirki/modules/css/property/class-kirki-output-property-background-position.php'),(8016,'wp-content/themes/flatsome/inc/admin/kirki/modules/css/property/class-kirki-output-property-font-family.php'),(8017,'wp-content/themes/flatsome/inc/admin/kirki/modules/css/property/class-kirki-output-property.php'),(8018,'wp-content/themes/flatsome/inc/admin/kirki/modules/css-vars/class-kirki-modules-css-vars.php'),(8019,'wp-content/themes/flatsome/inc/admin/kirki/modules/css-vars/script.js'),(8020,'wp-content/themes/flatsome/inc/admin/kirki/modules/custom-sections/class-kirki-modules-custom-sections.php'),(8021,'wp-content/themes/flatsome/inc/admin/kirki/modules/custom-sections/panels/class-kirki-panels-nested-panel.php'),(8022,'wp-content/themes/flatsome/inc/admin/kirki/modules/custom-sections/sections/class-kirki-sections-default-section.php'),(8023,'wp-content/themes/flatsome/inc/admin/kirki/modules/custom-sections/sections/class-kirki-sections-expanded-section.php'),(8024,'wp-content/themes/flatsome/inc/admin/kirki/modules/custom-sections/sections/class-kirki-sections-link-section.php'),(8025,'wp-content/themes/flatsome/inc/admin/kirki/modules/custom-sections/sections/class-kirki-sections-nested-section.php'),(8026,'wp-content/themes/flatsome/inc/admin/kirki/modules/custom-sections/sections.js'),(8027,'wp-content/themes/flatsome/inc/admin/kirki/modules/field-dependencies/class-kirki-modules-field-dependencies.php'),(8028,'wp-content/themes/flatsome/inc/admin/kirki/modules/field-dependencies/field-dependencies.js'),(8029,'wp-content/themes/flatsome/inc/admin/kirki/modules/gutenberg/class-kirki-modules-gutenberg.php'),(8030,'wp-content/themes/flatsome/inc/admin/kirki/modules/icons/class-kirki-modules-icons.php'),(8031,'wp-content/themes/flatsome/inc/admin/kirki/modules/icons/icons.js'),(8032,'wp-content/themes/flatsome/inc/admin/kirki/modules/loading/class-kirki-modules-loading.php'),(8033,'wp-content/themes/flatsome/inc/admin/kirki/modules/post-meta/class-kirki-modules-post-meta.php'),(8034,'wp-content/themes/flatsome/inc/admin/kirki/modules/post-meta/customize-controls.js'),(8035,'wp-content/themes/flatsome/inc/admin/kirki/modules/post-meta/customize-preview.js'),(8036,'wp-content/themes/flatsome/inc/admin/kirki/modules/postmessage/class-kirki-modules-postmessage.php'),(8037,'wp-content/themes/flatsome/inc/admin/kirki/modules/postmessage/postmessage.js'),(8038,'wp-content/themes/flatsome/inc/admin/kirki/modules/preset/class-kirki-modules-preset.php'),(8039,'wp-content/themes/flatsome/inc/admin/kirki/modules/preset/preset.js'),(8040,'wp-content/themes/flatsome/inc/admin/kirki/modules/selective-refresh/class-kirki-modules-selective-refresh.php'),(8041,'wp-content/themes/flatsome/inc/admin/kirki/modules/tooltips/class-kirki-modules-tooltips.php'),(8042,'wp-content/themes/flatsome/inc/admin/kirki/modules/tooltips/tooltip.js'),(8043,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/class-kirki-modules-webfont-loader.php'),(8044,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/closure.js'),(8045,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/core/cssclassname.js'),(8046,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/core/domhelper.js'),(8047,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/core/eventdispatcher.js'),(8048,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/core/font.js'),(8049,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/core/fontmodule.js'),(8050,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/core/fontmoduleloader.js'),(8051,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/core/fontruler.js'),(8052,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/core/fontwatcher.js'),(8053,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/core/fontwatchrunner.js'),(8054,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/core/initialize.js'),(8055,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/core/nativefontwatchrunner.js'),(8056,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/core/stylesheetwaiter.js'),(8057,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/core/webfont.js'),(8058,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/modules/custom.js'),(8059,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/modules/fontdeck.js'),(8060,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/modules/google/fontapiparser.js'),(8061,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/modules/google/fontapiurlbuilder.js'),(8062,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/modules/google/googlefontapi.js'),(8063,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/modules/monotype.js'),(8064,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/src/modules/typekit.js'),(8065,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfont-loader/vendor-typekit/webfontloader.js'),(8066,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfonts/class-kirki-fonts-downloader.php'),(8067,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfonts/class-kirki-fonts-google.php'),(8068,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfonts/class-kirki-fonts.php'),(8069,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfonts/class-kirki-modules-webfonts-async.php'),(8070,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfonts/class-kirki-modules-webfonts-embed.php'),(8071,'wp-content/themes/flatsome/inc/admin/kirki/modules/webfonts/class-kirki-modules-webfonts.php'),(8072,'wp-content/themes/flatsome/inc/admin/kirki/upgrade-notifications.php'),(8073,'wp-content/themes/flatsome/inc/admin/kirki-config.php'),(8074,'wp-content/themes/flatsome/inc/admin/options/blog/options-blog-archive.php'),(8075,'wp-content/themes/flatsome/inc/admin/options/blog/options-blog-featured.php'),(8076,'wp-content/themes/flatsome/inc/admin/options/blog/options-blog-global.php'),(8077,'wp-content/themes/flatsome/inc/admin/options/blog/options-blog-layout.php'),(8078,'wp-content/themes/flatsome/inc/admin/options/blog/options-blog-single.php'),(8079,'wp-content/themes/flatsome/inc/admin/options/blog/options-blog.php'),(8080,'wp-content/themes/flatsome/inc/admin/options/footer/options-footer.php'),(8081,'wp-content/themes/flatsome/inc/admin/options/global/options-general.php'),(8082,'wp-content/themes/flatsome/inc/admin/options/global/options-js.php'),(8083,'wp-content/themes/flatsome/inc/admin/options/header/img/header-cart-top.svg'),(8084,'wp-content/themes/flatsome/inc/admin/options/header/img/header-default-center.svg'),(8085,'wp-content/themes/flatsome/inc/admin/options/header/img/header-default-dark.svg'),(8086,'wp-content/themes/flatsome/inc/admin/options/header/img/header-default-icons.svg'),(8087,'wp-content/themes/flatsome/inc/admin/options/header/img/header-default.svg'),(8088,'wp-content/themes/flatsome/inc/admin/options/header/img/header-simple-center.svg'),(8089,'wp-content/themes/flatsome/inc/admin/options/header/img/header-simple-dark.svg'),(8090,'wp-content/themes/flatsome/inc/admin/options/header/img/header-simple-right-buttons.svg'),(8091,'wp-content/themes/flatsome/inc/admin/options/header/img/header-simple-right.svg'),(8092,'wp-content/themes/flatsome/inc/admin/options/header/img/header-simple-signup.svg'),(8093,'wp-content/themes/flatsome/inc/admin/options/header/img/header-simple.svg'),(8094,'wp-content/themes/flatsome/inc/admin/options/header/img/header-super-simple-dark.svg'),(8095,'wp-content/themes/flatsome/inc/admin/options/header/img/header-super-simple.svg'),(8096,'wp-content/themes/flatsome/inc/admin/options/header/img/header-wide-center-plain.svg'),(8097,'wp-content/themes/flatsome/inc/admin/options/header/img/header-wide-center-simple.svg'),(8098,'wp-content/themes/flatsome/inc/admin/options/header/img/header-wide-nav-dark.svg'),(8099,'wp-content/themes/flatsome/inc/admin/options/header/img/header-wide-nav-gray.svg'),(8100,'wp-content/themes/flatsome/inc/admin/options/header/img/header-wide-nav-light.svg'),(8101,'wp-content/themes/flatsome/inc/admin/options/header/img/header-wide-nav.svg'),(8102,'wp-content/themes/flatsome/inc/admin/options/header/options-header-account.php'),(8103,'wp-content/themes/flatsome/inc/admin/options/header/options-header-bottom.php'),(8104,'wp-content/themes/flatsome/inc/admin/options/header/options-header-buttons.php'),(8105,'wp-content/themes/flatsome/inc/admin/options/header/options-header-cart.php'),(8106,'wp-content/themes/flatsome/inc/admin/options/header/options-header-contact.php'),(8107,'wp-content/themes/flatsome/inc/admin/options/header/options-header-content.php'),(8108,'wp-content/themes/flatsome/inc/admin/options/header/options-header-dropdown.php'),(8109,'wp-content/themes/flatsome/inc/admin/options/header/options-header-layout.php'),(8110,'wp-content/themes/flatsome/inc/admin/options/header/options-header-logo.php'),(8111,'wp-content/themes/flatsome/inc/admin/options/header/options-header-main.php'),(8112,'wp-content/themes/flatsome/inc/admin/options/header/options-header-mobile.php'),(8113,'wp-content/themes/flatsome/inc/admin/options/header/options-header-newsletter.php'),(8114,'wp-content/themes/flatsome/inc/admin/options/header/options-header-presets.php'),(8115,'wp-content/themes/flatsome/inc/admin/options/header/options-header-refresh.php'),(8116,'wp-content/themes/flatsome/inc/admin/options/header/options-header-search.php'),(8117,'wp-content/themes/flatsome/inc/admin/options/header/options-header-sticky.php'),(8118,'wp-content/themes/flatsome/inc/admin/options/header/options-header-top.php'),(8119,'wp-content/themes/flatsome/inc/admin/options/header/options-header-wishlist.php'),(8120,'wp-content/themes/flatsome/inc/admin/options/header/options-header.php'),(8121,'wp-content/themes/flatsome/inc/admin/options/helpers/options-helpers.php'),(8122,'wp-content/themes/flatsome/inc/admin/options/layout/options-layout.php'),(8123,'wp-content/themes/flatsome/inc/admin/options/notifications/options-notifications.php'),(8124,'wp-content/themes/flatsome/inc/admin/options/options-depricated.php'),(8125,'wp-content/themes/flatsome/inc/admin/options/pages/meta/meta_box_framework.php'),(8126,'wp-content/themes/flatsome/inc/admin/options/pages/options-page-meta.php'),(8127,'wp-content/themes/flatsome/inc/admin/options/pages/options-pages.php'),(8128,'wp-content/themes/flatsome/inc/admin/options/portfolio/options-portfolio.php'),(8129,'wp-content/themes/flatsome/inc/admin/options/shop/options-shop-cart-checkout.php'),(8130,'wp-content/themes/flatsome/inc/admin/options/shop/options-shop-catalog-mode.php'),(8131,'wp-content/themes/flatsome/inc/admin/options/shop/options-shop-category.php'),(8132,'wp-content/themes/flatsome/inc/admin/options/shop/options-shop-my-account.php'),(8133,'wp-content/themes/flatsome/inc/admin/options/shop/options-shop-payments-icons.php'),(8134,'wp-content/themes/flatsome/inc/admin/options/shop/options-shop-product-page.php'),(8135,'wp-content/themes/flatsome/inc/admin/options/shop/options-shop-store-notice.php'),(8136,'wp-content/themes/flatsome/inc/admin/options/shop/options-shop.php'),(8137,'wp-content/themes/flatsome/inc/admin/options/social/options-social.php'),(8138,'wp-content/themes/flatsome/inc/admin/options/styles/options-colors.php'),(8139,'wp-content/themes/flatsome/inc/admin/options/styles/options-css.php'),(8140,'wp-content/themes/flatsome/inc/admin/options/styles/options-global.php'),(8141,'wp-content/themes/flatsome/inc/admin/options/styles/options-lightbox.php'),(8142,'wp-content/themes/flatsome/inc/admin/options/styles/options-type.php'),(8143,'wp-content/themes/flatsome/inc/admin/panel/Logo.svg'),(8144,'wp-content/themes/flatsome/inc/admin/panel/panel.js'),(8145,'wp-content/themes/flatsome/inc/admin/panel/panel.php'),(8146,'wp-content/themes/flatsome/inc/admin/panel/sections/tab-activate.php'),(8147,'wp-content/themes/flatsome/inc/admin/panel/sections/tab-changelog.php'),(8148,'wp-content/themes/flatsome/inc/admin/panel/sections/tab-guide.php'),(8149,'wp-content/themes/flatsome/inc/admin/panel/sections/tab-plugins.php'),(8150,'wp-content/themes/flatsome/inc/admin/panel/sections/tab-support.php'),(8151,'wp-content/themes/flatsome/inc/admin/panel/sections/tab-tutorials.php'),(8152,'wp-content/themes/flatsome/inc/admin/panel/sections/top.php'),(8153,'wp-content/themes/flatsome/inc/blocks/uxbuilder/index.php'),(8154,'wp-content/themes/flatsome/inc/builder/actions.php'),(8155,'wp-content/themes/flatsome/inc/builder/builder.php'),(8156,'wp-content/themes/flatsome/inc/builder/core/components/components.php'),(8157,'wp-content/themes/flatsome/inc/builder/core/server/actions/actions.php'),(8158,'wp-content/themes/flatsome/inc/builder/core/server/actions/editor.php'),(8159,'wp-content/themes/flatsome/inc/builder/core/server/actions/iframe.php'),(8160,'wp-content/themes/flatsome/inc/builder/core/server/filters/filters.php'),(8161,'wp-content/themes/flatsome/inc/builder/core/server/filters/meta-options.php'),(8162,'wp-content/themes/flatsome/inc/builder/core/server/filters/post-options.php'),(8163,'wp-content/themes/flatsome/inc/builder/core/server/filters/public.php'),(8164,'wp-content/themes/flatsome/inc/builder/core/server/helpers/breakpoints.php'),(8165,'wp-content/themes/flatsome/inc/builder/core/server/helpers/components.php'),(8166,'wp-content/themes/flatsome/inc/builder/core/server/helpers/elements.php'),(8167,'wp-content/themes/flatsome/inc/builder/core/server/helpers/helpers.php'),(8168,'wp-content/themes/flatsome/inc/builder/core/server/helpers/misc.php'),(8169,'wp-content/themes/flatsome/inc/builder/core/server/helpers/modules.php'),(8170,'wp-content/themes/flatsome/inc/builder/core/server/helpers/options.php'),(8171,'wp-content/themes/flatsome/inc/builder/core/server/helpers/page.php'),(8172,'wp-content/themes/flatsome/inc/builder/core/server/helpers/paths.php'),(8173,'wp-content/themes/flatsome/inc/builder/core/server/helpers/posts.php'),(8174,'wp-content/themes/flatsome/inc/builder/core/server/helpers/shortcodes.php'),(8175,'wp-content/themes/flatsome/inc/builder/core/server/helpers/states.php'),(8176,'wp-content/themes/flatsome/inc/builder/core/server/helpers/strings.php'),(8177,'wp-content/themes/flatsome/inc/builder/core/server/helpers/templates.php'),(8178,'wp-content/themes/flatsome/inc/builder/core/server/helpers/templating.php'),(8179,'wp-content/themes/flatsome/inc/builder/core/server/helpers/transformers.php'),(8180,'wp-content/themes/flatsome/inc/builder/core/server/helpers/urls.php'),(8181,'wp-content/themes/flatsome/inc/builder/core/server/setup.php'),(8182,'wp-content/themes/flatsome/inc/builder/core/server/src/Ajax/AjaxManager.php'),(8183,'wp-content/themes/flatsome/inc/builder/core/server/src/Ajax/Data.php'),(8184,'wp-content/themes/flatsome/inc/builder/core/server/src/Ajax/DoShortcode.php'),(8185,'wp-content/themes/flatsome/inc/builder/core/server/src/Ajax/PostSaver.php'),(8186,'wp-content/themes/flatsome/inc/builder/core/server/src/Ajax/Posts.php'),(8187,'wp-content/themes/flatsome/inc/builder/core/server/src/Ajax/Terms.php'),(8188,'wp-content/themes/flatsome/inc/builder/core/server/src/Ajax/WpAttachment.php'),(8189,'wp-content/themes/flatsome/inc/builder/core/server/src/Application.php'),(8190,'wp-content/themes/flatsome/inc/builder/core/server/src/Collections/Collection.php'),(8191,'wp-content/themes/flatsome/inc/builder/core/server/src/Collections/Components.php'),(8192,'wp-content/themes/flatsome/inc/builder/core/server/src/Collections/Elements.php'),(8193,'wp-content/themes/flatsome/inc/builder/core/server/src/Collections/PostAttributesOptions.php'),(8194,'wp-content/themes/flatsome/inc/builder/core/server/src/Collections/PostMetaOptions.php'),(8195,'wp-content/themes/flatsome/inc/builder/core/server/src/Collections/Templates.php'),(8196,'wp-content/themes/flatsome/inc/builder/core/server/src/Elements/Element.php'),(8197,'wp-content/themes/flatsome/inc/builder/core/server/src/Elements/ElementOption.php'),(8198,'wp-content/themes/flatsome/inc/builder/core/server/src/Elements/ElementOptions.php'),(8199,'wp-content/themes/flatsome/inc/builder/core/server/src/Options/Custom/GroupOption.php'),(8200,'wp-content/themes/flatsome/inc/builder/core/server/src/Options/Custom/ImageOption.php'),(8201,'wp-content/themes/flatsome/inc/builder/core/server/src/Options/Custom/SelectOption.php'),(8202,'wp-content/themes/flatsome/inc/builder/core/server/src/Options/OnChangeHandler.php'),(8203,'wp-content/themes/flatsome/inc/builder/core/server/src/Options/Option.php'),(8204,'wp-content/themes/flatsome/inc/builder/core/server/src/Options/Options.php'),(8205,'wp-content/themes/flatsome/inc/builder/core/server/src/Post/Post.php'),(8206,'wp-content/themes/flatsome/inc/builder/core/server/src/Post/PostArray.php'),(8207,'wp-content/themes/flatsome/inc/builder/core/server/src/Post/PostOptions.php'),(8208,'wp-content/themes/flatsome/inc/builder/core/server/src/Post/PostString.php'),(8209,'wp-content/themes/flatsome/inc/builder/core/server/src/Services/Container.php'),(8210,'wp-content/themes/flatsome/inc/builder/core/server/src/Transformers/ArrayToString.php'),(8211,'wp-content/themes/flatsome/inc/builder/core/server/src/Transformers/StringToArray.php'),(8212,'wp-content/themes/flatsome/inc/builder/core/server/src/Transformers/Transformer.php'),(8213,'wp-content/themes/flatsome/inc/builder/core/server/templates/editor.php'),(8214,'wp-content/themes/flatsome/inc/builder/core/server/templates/iframe-frontend.php'),(8215,'wp-content/themes/flatsome/inc/builder/core/server/templates/media.php'),(8216,'wp-content/themes/flatsome/inc/builder/core/server/templates/tinymce.php'),(8217,'wp-content/themes/flatsome/inc/builder/core/server/tests.php'),(8218,'wp-content/themes/flatsome/inc/builder/core/shortcodes/_root.php'),(8219,'wp-content/themes/flatsome/inc/builder/core/shortcodes/gallery.php'),(8220,'wp-content/themes/flatsome/inc/builder/core/shortcodes/shortcodes.php'),(8221,'wp-content/themes/flatsome/inc/builder/core/ux-builder.php'),(8222,'wp-content/themes/flatsome/inc/builder/filters.php'),(8223,'wp-content/themes/flatsome/inc/builder/helpers.php'),(8224,'wp-content/themes/flatsome/inc/builder/shortcodes/accordion.php'),(8225,'wp-content/themes/flatsome/inc/builder/shortcodes/accordion_item.php'),(8226,'wp-content/themes/flatsome/inc/builder/shortcodes/block.php'),(8227,'wp-content/themes/flatsome/inc/builder/shortcodes/blog_posts.php'),(8228,'wp-content/themes/flatsome/inc/builder/shortcodes/button.php'),(8229,'wp-content/themes/flatsome/inc/builder/shortcodes/col.php'),(8230,'wp-content/themes/flatsome/inc/builder/shortcodes/col_grid.php'),(8231,'wp-content/themes/flatsome/inc/builder/shortcodes/commons/advanced.php'),(8232,'wp-content/themes/flatsome/inc/builder/shortcodes/commons/background.php'),(8233,'wp-content/themes/flatsome/inc/builder/shortcodes/commons/border.php'),(8234,'wp-content/themes/flatsome/inc/builder/shortcodes/commons/box-styles.php'),(8235,'wp-content/themes/flatsome/inc/builder/shortcodes/commons/links.php'),(8236,'wp-content/themes/flatsome/inc/builder/shortcodes/commons/position.php'),(8237,'wp-content/themes/flatsome/inc/builder/shortcodes/commons/repeater-cats.php'),(8238,'wp-content/themes/flatsome/inc/builder/shortcodes/commons/repeater-options.php'),(8239,'wp-content/themes/flatsome/inc/builder/shortcodes/commons/repeater-posts.php'),(8240,'wp-content/themes/flatsome/inc/builder/shortcodes/commons/repeater-slider.php'),(8241,'wp-content/themes/flatsome/inc/builder/shortcodes/commons/slide.php'),(8242,'wp-content/themes/flatsome/inc/builder/shortcodes/commons/toggle-buttons.php'),(8243,'wp-content/themes/flatsome/inc/builder/shortcodes/commons/typography.php'),(8244,'wp-content/themes/flatsome/inc/builder/shortcodes/commons/video.php'),(8245,'wp-content/themes/flatsome/inc/builder/shortcodes/commons/visibility.php'),(8246,'wp-content/themes/flatsome/inc/builder/shortcodes/contactform7.php'),(8247,'wp-content/themes/flatsome/inc/builder/shortcodes/custom-product.php'),(8248,'wp-content/themes/flatsome/inc/builder/shortcodes/divider.php'),(8249,'wp-content/themes/flatsome/inc/builder/shortcodes/featured_box.php'),(8250,'wp-content/themes/flatsome/inc/builder/shortcodes/follow.php'),(8251,'wp-content/themes/flatsome/inc/builder/shortcodes/gap.php'),(8252,'wp-content/themes/flatsome/inc/builder/shortcodes/helpers/colors-overlay.php'),(8253,'wp-content/themes/flatsome/inc/builder/shortcodes/helpers/colors.php'),(8254,'wp-content/themes/flatsome/inc/builder/shortcodes/helpers/heights.php'),(8255,'wp-content/themes/flatsome/inc/builder/shortcodes/helpers/image-heights.php'),(8256,'wp-content/themes/flatsome/inc/builder/shortcodes/map.php'),(8257,'wp-content/themes/flatsome/inc/builder/shortcodes/message_box.php'),(8258,'wp-content/themes/flatsome/inc/builder/shortcodes/page_header.php'),(8259,'wp-content/themes/flatsome/inc/builder/shortcodes/page_meta.php'),(8260,'wp-content/themes/flatsome/inc/builder/shortcodes/price_table.php'),(8261,'wp-content/themes/flatsome/inc/builder/shortcodes/row.php'),(8262,'wp-content/themes/flatsome/inc/builder/shortcodes/scroll_to.php'),(8263,'wp-content/themes/flatsome/inc/builder/shortcodes/search.php'),(8264,'wp-content/themes/flatsome/inc/builder/shortcodes/section.php'),(8265,'wp-content/themes/flatsome/inc/builder/shortcodes/share.php'),(8266,'wp-content/themes/flatsome/inc/builder/shortcodes/tab.php'),(8267,'wp-content/themes/flatsome/inc/builder/shortcodes/tabgroup.php'),(8268,'wp-content/themes/flatsome/inc/builder/shortcodes/team_member.php'),(8269,'wp-content/themes/flatsome/inc/builder/shortcodes/templates/accordion.html'),(8270,'wp-content/themes/flatsome/inc/builder/shortcodes/templates/accordion_item.html'),(8271,'wp-content/themes/flatsome/inc/builder/shortcodes/templates/button.html'),(8272,'wp-content/themes/flatsome/inc/builder/shortcodes/templates/col.html'),(8273,'wp-content/themes/flatsome/inc/builder/shortcodes/templates/col_grid.html'),(8274,'wp-content/themes/flatsome/inc/builder/shortcodes/templates/divider.html'),(8275,'wp-content/themes/flatsome/inc/builder/shortcodes/templates/map.html'),(8276,'wp-content/themes/flatsome/inc/builder/shortcodes/templates/message_box.html'),(8277,'wp-content/themes/flatsome/inc/builder/shortcodes/templates/row.html'),(8278,'wp-content/themes/flatsome/inc/builder/shortcodes/templates/scroll_to.html'),(8279,'wp-content/themes/flatsome/inc/builder/shortcodes/templates/section.html'),(8280,'wp-content/themes/flatsome/inc/builder/shortcodes/templates/tab.html'),(8281,'wp-content/themes/flatsome/inc/builder/shortcodes/templates/tabgroup.html'),(8282,'wp-content/themes/flatsome/inc/builder/shortcodes/templates/text.html'),(8283,'wp-content/themes/flatsome/inc/builder/shortcodes/templates/text_box.html'),(8284,'wp-content/themes/flatsome/inc/builder/shortcodes/templates/title.html'),(8285,'wp-content/themes/flatsome/inc/builder/shortcodes/templates/ux_banner.html'),(8286,'wp-content/themes/flatsome/inc/builder/shortcodes/templates/ux_banner_grid.html'),(8287,'wp-content/themes/flatsome/inc/builder/shortcodes/templates/ux_hotspot.html'),(8288,'wp-content/themes/flatsome/inc/builder/shortcodes/templates/ux_html.html'),(8289,'wp-content/themes/flatsome/inc/builder/shortcodes/templates/ux_image.html'),(8290,'wp-content/themes/flatsome/inc/builder/shortcodes/templates/ux_menu.html'),(8291,'wp-content/themes/flatsome/inc/builder/shortcodes/templates/ux_menu_link.html'),(8292,'wp-content/themes/flatsome/inc/builder/shortcodes/templates/ux_menu_title.html'),(8293,'wp-content/themes/flatsome/inc/builder/shortcodes/templates/ux_slider.html'),(8294,'wp-content/themes/flatsome/inc/builder/shortcodes/templates/ux_stack.html'),(8295,'wp-content/themes/flatsome/inc/builder/shortcodes/testimonial.php'),(8296,'wp-content/themes/flatsome/inc/builder/shortcodes/text.php'),(8297,'wp-content/themes/flatsome/inc/builder/shortcodes/text_box.php'),(8298,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/accordion.svg'),(8299,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/badge-bubble.svg'),(8300,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/badge-simple.svg'),(8301,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/badge.svg'),(8302,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/blank.svg'),(8303,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/box-left.svg'),(8304,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/box-right.svg'),(8305,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/circle-right.svg'),(8306,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/dark-box-left.svg'),(8307,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/huge-sale.svg'),(8308,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/sime-right.svg'),(8309,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/simle-left-light.svg'),(8310,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/simple-buttons-right.svg'),(8311,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/simple-buttons.svg'),(8312,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/simple-center.svg'),(8313,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/simple-left-light.svg'),(8314,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/simple-left.svg'),(8315,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/simple-right-light.svg'),(8316,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/banners/simple-right.svg'),(8317,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/block.svg'),(8318,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/blog_posts.svg'),(8319,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/button-call-to-action-large.svg'),(8320,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/button-call-to-action.svg'),(8321,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/button-circle.svg'),(8322,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/button-link.svg'),(8323,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/button-outline-circle.svg'),(8324,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/button-outline-round.svg'),(8325,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/button-outline.svg'),(8326,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/button-round copy.svg'),(8327,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/button-round.svg'),(8328,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/button-simple.svg'),(8329,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/button-underline.svg'),(8330,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/button.svg'),(8331,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/categories.svg'),(8332,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/cateogires.svg'),(8333,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/countdown.svg'),(8334,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/divider.svg'),(8335,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/forms.svg'),(8336,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/gap.svg'),(8337,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/grid.svg'),(8338,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/grids/grid-1.svg'),(8339,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/grids/grid-2.svg'),(8340,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/grids/grid-3.svg'),(8341,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/grids/grid-4.svg'),(8342,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/grids/grid-5.svg'),(8343,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/grids/grid-6.svg'),(8344,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/grids/grid-7.svg'),(8345,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/grids/grid-8.svg'),(8346,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/grids/grid-9.svg'),(8347,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/icon_box.svg'),(8348,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/image_box.svg'),(8349,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/instagram_feed.svg'),(8350,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/lightbox.svg'),(8351,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/logo.svg'),(8352,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/map.svg'),(8353,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/message_box.svg'),(8354,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/nav.svg'),(8355,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/page_title.svg'),(8356,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/pages.svg'),(8357,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/payment-icons.svg'),(8358,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/play.svg'),(8359,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/portfolio.svg'),(8360,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/price_table.svg'),(8361,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/product.svg'),(8362,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/product_flipbook.svg'),(8363,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/product_lookbook.svg'),(8364,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/products-list.svg'),(8365,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/products.svg'),(8366,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-1-3-col.svg'),(8367,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-1-col.svg'),(8368,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-2-3-col.svg'),(8369,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-2-col-full.svg'),(8370,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-2-col.svg'),(8371,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-3-col-dashed.svg'),(8372,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-3-col-full.svg'),(8373,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-3-col.svg'),(8374,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-3-collapse-col.svg'),(8375,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-3-shadow-col.svg'),(8376,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-4-col.svg'),(8377,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-image-left-large.svg'),(8378,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-image-left.svg'),(8379,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-image-right-large.svg'),(8380,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-image-right.svg'),(8381,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-large-left.svg'),(8382,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row-large-right.svg'),(8383,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/row.svg'),(8384,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/scroll_to.svg'),(8385,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/search.svg'),(8386,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/section.svg'),(8387,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/arrow-down.svg'),(8388,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/box-left-dark.svg'),(8389,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/box-left.svg'),(8390,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/box-right-dark.svg'),(8391,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/box-right.svg'),(8392,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/image-bottom.svg'),(8393,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/image-top.svg'),(8394,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/media-bottom.svg'),(8395,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/media-center.svg'),(8396,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/media-left-dark.svg'),(8397,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/media-left-large-dark.svg'),(8398,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/media-left-large.svg'),(8399,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/media-left.svg'),(8400,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/media-right-dark.svg'),(8401,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/media-right-large-dark.svg'),(8402,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/media-right-large.svg'),(8403,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/media-right.svg'),(8404,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/media-rleft.svg'),(8405,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/media-top.svg'),(8406,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/simple-center.svg'),(8407,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/simple-light.svg'),(8408,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sections/simple-white.svg'),(8409,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/share.svg'),(8410,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/sidebar.svg'),(8411,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/slider.svg'),(8412,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/tabs.svg'),(8413,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/team_member.svg'),(8414,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/testimonials.svg'),(8415,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/text.svg'),(8416,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/text_box.svg'),(8417,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/title.svg'),(8418,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/ux_banner.svg'),(8419,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/ux_gallery.svg'),(8420,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/ux_hotspot.svg'),(8421,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/ux_html.svg'),(8422,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/ux_image.svg'),(8423,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/ux_menu.svg'),(8424,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/ux_stack.svg'),(8425,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/ux_video.svg'),(8426,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/woo_add_to_cart.svg'),(8427,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/woo_breadcrumbs.svg'),(8428,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/woo_gallery.svg'),(8429,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/woo_hooks.svg'),(8430,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/woo_meta.svg'),(8431,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/woo_next_prev.svg'),(8432,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/woo_price.svg'),(8433,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/woo_products.svg'),(8434,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/woo_rating.svg'),(8435,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/woo_related.svg'),(8436,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/woo_short_desc.svg'),(8437,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/woo_tabs.svg'),(8438,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/woo_title.svg'),(8439,'wp-content/themes/flatsome/inc/builder/shortcodes/thumbnails/woo_upsells.svg'),(8440,'wp-content/themes/flatsome/inc/builder/shortcodes/title.php'),(8441,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_badge.php'),(8442,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_banner.php'),(8443,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_banner_grid.php'),(8444,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_bestseller_products.php'),(8445,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_countdown.php'),(8446,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_gallery.php'),(8447,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_gutenberg.php'),(8448,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_hotspot.php'),(8449,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_html.php'),(8450,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_image.php'),(8451,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_image_box.php'),(8452,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_instagram_feed.php'),(8453,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_logo.php'),(8454,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_menu.php'),(8455,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_menu_link.php'),(8456,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_menu_title.php'),(8457,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_nav.php'),(8458,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_pages.php'),(8459,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_payment_icons.php'),(8460,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_portfolio.php'),(8461,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_product_categories.php'),(8462,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_product_flip.php'),(8463,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_products.php'),(8464,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_products_list.php'),(8465,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_shortcode.php'),(8466,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_sidebar.php'),(8467,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_slider.php'),(8468,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_stack.php'),(8469,'wp-content/themes/flatsome/inc/builder/shortcodes/ux_video.php'),(8470,'wp-content/themes/flatsome/inc/builder/shortcodes/values/align-h.php'),(8471,'wp-content/themes/flatsome/inc/builder/shortcodes/values/align-radios.php'),(8472,'wp-content/themes/flatsome/inc/builder/shortcodes/values/align-v.php'),(8473,'wp-content/themes/flatsome/inc/builder/shortcodes/values/animate.php'),(8474,'wp-content/themes/flatsome/inc/builder/shortcodes/values/box-layouts.php'),(8475,'wp-content/themes/flatsome/inc/builder/shortcodes/values/col-spacing.php'),(8476,'wp-content/themes/flatsome/inc/builder/shortcodes/values/color-helpers.php'),(8477,'wp-content/themes/flatsome/inc/builder/shortcodes/values/color-overlay-helpers.php'),(8478,'wp-content/themes/flatsome/inc/builder/shortcodes/values/filters.php'),(8479,'wp-content/themes/flatsome/inc/builder/shortcodes/values/grids.php'),(8480,'wp-content/themes/flatsome/inc/builder/shortcodes/values/icons.php'),(8481,'wp-content/themes/flatsome/inc/builder/shortcodes/values/image-formats.php'),(8482,'wp-content/themes/flatsome/inc/builder/shortcodes/values/image-hover.php'),(8483,'wp-content/themes/flatsome/inc/builder/shortcodes/values/line-height.php'),(8484,'wp-content/themes/flatsome/inc/builder/shortcodes/values/masks.php'),(8485,'wp-content/themes/flatsome/inc/builder/shortcodes/values/menu-labels.php'),(8486,'wp-content/themes/flatsome/inc/builder/shortcodes/values/nav-styles.php'),(8487,'wp-content/themes/flatsome/inc/builder/shortcodes/values/nav-types-radio.php'),(8488,'wp-content/themes/flatsome/inc/builder/shortcodes/values/nav-types.php'),(8489,'wp-content/themes/flatsome/inc/builder/shortcodes/values/pixels.php'),(8490,'wp-content/themes/flatsome/inc/builder/shortcodes/values/row-layouts.php'),(8491,'wp-content/themes/flatsome/inc/builder/shortcodes/values/show-hide.php'),(8492,'wp-content/themes/flatsome/inc/builder/shortcodes/values/sizes.php'),(8493,'wp-content/themes/flatsome/inc/builder/shortcodes/values/slider-nav-styles.php'),(8494,'wp-content/themes/flatsome/inc/builder/shortcodes/values/slider-styles.php'),(8495,'wp-content/themes/flatsome/inc/builder/shortcodes/values/text-hover.php'),(8496,'wp-content/themes/flatsome/inc/builder/shortcodes/values/text-sizes.php'),(8497,'wp-content/themes/flatsome/inc/builder/shortcodes/video_button.php'),(8498,'wp-content/themes/flatsome/inc/builder/shortcodes/woocommerce_cart.php'),(8499,'wp-content/themes/flatsome/inc/builder/shortcodes/woocommerce_checkout.php'),(8500,'wp-content/themes/flatsome/inc/builder/shortcodes/woocommerce_shortcodes.php'),(8501,'wp-content/themes/flatsome/inc/builder/shortcodes.php'),(8502,'wp-content/themes/flatsome/inc/builder/templates/blank.php'),(8503,'wp-content/themes/flatsome/inc/builder/templates/templates.php'),(8504,'wp-content/themes/flatsome/inc/classes/class-flatsome-base-registration.php'),(8505,'wp-content/themes/flatsome/inc/classes/class-flatsome-default.php'),(8506,'wp-content/themes/flatsome/inc/classes/class-flatsome-envato-admin.php'),(8507,'wp-content/themes/flatsome/inc/classes/class-flatsome-envato-registration.php'),(8508,'wp-content/themes/flatsome/inc/classes/class-flatsome-envato.php'),(8509,'wp-content/themes/flatsome/inc/classes/class-flatsome-options.php'),(8510,'wp-content/themes/flatsome/inc/classes/class-flatsome-registration.php'),(8511,'wp-content/themes/flatsome/inc/classes/class-flatsome-upgrade.php'),(8512,'wp-content/themes/flatsome/inc/classes/class-flatsome-wupdates-registration.php'),(8513,'wp-content/themes/flatsome/inc/classes/class-tgm-plugin-activation.php'),(8514,'wp-content/themes/flatsome/inc/classes/class-uxthemes-api.php'),(8515,'wp-content/themes/flatsome/inc/classes/class-wc-product-data-fields.php'),(8516,'wp-content/themes/flatsome/inc/extensions/extensions.php'),(8517,'wp-content/themes/flatsome/inc/extensions/flatsome-cart-refresh/flatsome-cart-refresh.js'),(8518,'wp-content/themes/flatsome/inc/extensions/flatsome-cart-refresh/flatsome-cart-refresh.php'),(8519,'wp-content/themes/flatsome/inc/extensions/flatsome-cookie-notice/flatsome-cookie-notice.js'),(8520,'wp-content/themes/flatsome/inc/extensions/flatsome-cookie-notice/flatsome-cookie-notice.php'),(8521,'wp-content/themes/flatsome/inc/extensions/flatsome-infinite-scroll/class-flatsome-infinite-scroll.php'),(8522,'wp-content/themes/flatsome/inc/extensions/flatsome-infinite-scroll/flatsome-infinite-scroll.js'),(8523,'wp-content/themes/flatsome/inc/extensions/flatsome-infinite-scroll/templates/button.php'),(8524,'wp-content/themes/flatsome/inc/extensions/flatsome-infinite-scroll/templates/image.php'),(8525,'wp-content/themes/flatsome/inc/extensions/flatsome-infinite-scroll/templates/spinner.php'),(8526,'wp-content/themes/flatsome/inc/extensions/flatsome-instant-page/flatsome-instant-page.js'),(8527,'wp-content/themes/flatsome/inc/extensions/flatsome-instant-page/flatsome-instant-page.php'),(8528,'wp-content/themes/flatsome/inc/extensions/flatsome-lazy-load/flatsome-lazy-load.js'),(8529,'wp-content/themes/flatsome/inc/extensions/flatsome-lazy-load/flatsome-lazy-load.php'),(8530,'wp-content/themes/flatsome/inc/extensions/flatsome-live-search/flatsome-live-search.js'),(8531,'wp-content/themes/flatsome/inc/extensions/flatsome-live-search/flatsome-live-search.php'),(8532,'wp-content/themes/flatsome/inc/extensions/flatsome-shortcode-insert/min/shortcode_insert-min.js'),(8533,'wp-content/themes/flatsome/inc/extensions/flatsome-shortcode-insert/shortcode_insert.js'),(8534,'wp-content/themes/flatsome/inc/extensions/flatsome-shortcode-insert/tinymce.php'),(8535,'wp-content/themes/flatsome/inc/extensions/flatsome-swatches/includes/class-swatches-admin-product.php'),(8536,'wp-content/themes/flatsome/inc/extensions/flatsome-swatches/includes/class-swatches-admin.php'),(8537,'wp-content/themes/flatsome/inc/extensions/flatsome-swatches/includes/class-swatches-frontend.php'),(8538,'wp-content/themes/flatsome/inc/extensions/flatsome-swatches/includes/class-swatches.php'),(8539,'wp-content/themes/flatsome/inc/extensions/flatsome-swatches/index.php'),(8540,'wp-content/themes/flatsome/inc/extensions/flatsome-wc-quick-view/flatsome-quick-view.php'),(8541,'wp-content/themes/flatsome/inc/functions/fl-template-functions.php'),(8542,'wp-content/themes/flatsome/inc/functions/function-conditionals.php'),(8543,'wp-content/themes/flatsome/inc/functions/function-custom-css.php'),(8544,'wp-content/themes/flatsome/inc/functions/function-defaults.php'),(8545,'wp-content/themes/flatsome/inc/functions/function-fallbacks.php'),(8546,'wp-content/themes/flatsome/inc/functions/function-fonts.php'),(8547,'wp-content/themes/flatsome/inc/functions/function-global.php'),(8548,'wp-content/themes/flatsome/inc/functions/function-maintenance.php'),(8549,'wp-content/themes/flatsome/inc/functions/function-plugins.php'),(8550,'wp-content/themes/flatsome/inc/functions/function-presets.php'),(8551,'wp-content/themes/flatsome/inc/functions/function-setup.php'),(8552,'wp-content/themes/flatsome/inc/functions/function-site-health.php'),(8553,'wp-content/themes/flatsome/inc/functions/function-theme-mods.php'),(8554,'wp-content/themes/flatsome/inc/functions/function-update.php'),(8555,'wp-content/themes/flatsome/inc/functions/function-upgrade.php'),(8556,'wp-content/themes/flatsome/inc/helpers/helpers-frontend.php'),(8557,'wp-content/themes/flatsome/inc/helpers/helpers-grid.php'),(8558,'wp-content/themes/flatsome/inc/helpers/helpers-icons.php'),(8559,'wp-content/themes/flatsome/inc/helpers/helpers-shortcode.php'),(8560,'wp-content/themes/flatsome/inc/helpers/helpers-woocommerce.php'),(8561,'wp-content/themes/flatsome/inc/init.php'),(8562,'wp-content/themes/flatsome/inc/integrations/contact-form-7/contact-form-7.php'),(8563,'wp-content/themes/flatsome/inc/integrations/integrations.php'),(8564,'wp-content/themes/flatsome/inc/integrations/rank-math/class-rank-math.php'),(8565,'wp-content/themes/flatsome/inc/integrations/sensei/sensei.php'),(8566,'wp-content/themes/flatsome/inc/integrations/ubermenu/flatsome-ubermenu.php'),(8567,'wp-content/themes/flatsome/inc/integrations/wc-composite-products/composite-products.js'),(8568,'wp-content/themes/flatsome/inc/integrations/wc-composite-products/composite-products.php'),(8569,'wp-content/themes/flatsome/inc/integrations/wc-yith-wishlist/wishlist.js'),(8570,'wp-content/themes/flatsome/inc/integrations/wc-yith-wishlist/yith-wishlist.php'),(8571,'wp-content/themes/flatsome/inc/integrations/wp-rocket/flatsome-wp-rocket.js'),(8572,'wp-content/themes/flatsome/inc/integrations/wp-rocket/wp-rocket.php'),(8573,'wp-content/themes/flatsome/inc/integrations/wp-seo/class-wp-seo.php'),(8574,'wp-content/themes/flatsome/inc/integrations/wpml/flatsome-wpml.php'),(8575,'wp-content/themes/flatsome/inc/post-types/post-type-ux-blocks.php'),(8576,'wp-content/themes/flatsome/inc/post-types/post-type-ux-portfolio.php'),(8577,'wp-content/themes/flatsome/inc/shortcodes/accordion.php'),(8578,'wp-content/themes/flatsome/inc/shortcodes/blog_posts.php'),(8579,'wp-content/themes/flatsome/inc/shortcodes/box.php'),(8580,'wp-content/themes/flatsome/inc/shortcodes/buttons.php'),(8581,'wp-content/themes/flatsome/inc/shortcodes/commons/border.php'),(8582,'wp-content/themes/flatsome/inc/shortcodes/commons/video.php'),(8583,'wp-content/themes/flatsome/inc/shortcodes/custom-product.php'),(8584,'wp-content/themes/flatsome/inc/shortcodes/elements.php'),(8585,'wp-content/themes/flatsome/inc/shortcodes/featured_box.php'),(8586,'wp-content/themes/flatsome/inc/shortcodes/gap.php'),(8587,'wp-content/themes/flatsome/inc/shortcodes/google_maps.php'),(8588,'wp-content/themes/flatsome/inc/shortcodes/lightbox.php'),(8589,'wp-content/themes/flatsome/inc/shortcodes/messages.php'),(8590,'wp-content/themes/flatsome/inc/shortcodes/page_header.php'),(8591,'wp-content/themes/flatsome/inc/shortcodes/portfolio.php'),(8592,'wp-content/themes/flatsome/inc/shortcodes/price_table.php'),(8593,'wp-content/themes/flatsome/inc/shortcodes/product_categories.php'),(8594,'wp-content/themes/flatsome/inc/shortcodes/product_flip.php'),(8595,'wp-content/themes/flatsome/inc/shortcodes/row.php'),(8596,'wp-content/themes/flatsome/inc/shortcodes/scroll_to.php'),(8597,'wp-content/themes/flatsome/inc/shortcodes/search.php'),(8598,'wp-content/themes/flatsome/inc/shortcodes/sections.php'),(8599,'wp-content/themes/flatsome/inc/shortcodes/share_follow.php'),(8600,'wp-content/themes/flatsome/inc/shortcodes/tabs.php'),(8601,'wp-content/themes/flatsome/inc/shortcodes/team_members.php'),(8602,'wp-content/themes/flatsome/inc/shortcodes/testimonials.php'),(8603,'wp-content/themes/flatsome/inc/shortcodes/text_box.php'),(8604,'wp-content/themes/flatsome/inc/shortcodes/titles_dividers.php'),(8605,'wp-content/themes/flatsome/inc/shortcodes/ux_banner.php'),(8606,'wp-content/themes/flatsome/inc/shortcodes/ux_banner_grid.php'),(8607,'wp-content/themes/flatsome/inc/shortcodes/ux_countdown/countdown-script-min.js'),(8608,'wp-content/themes/flatsome/inc/shortcodes/ux_countdown/ux-countdown.js'),(8609,'wp-content/themes/flatsome/inc/shortcodes/ux_countdown/ux-countdown.php'),(8610,'wp-content/themes/flatsome/inc/shortcodes/ux_gallery.php'),(8611,'wp-content/themes/flatsome/inc/shortcodes/ux_hotspot.php'),(8612,'wp-content/themes/flatsome/inc/shortcodes/ux_html.php'),(8613,'wp-content/themes/flatsome/inc/shortcodes/ux_image.php'),(8614,'wp-content/themes/flatsome/inc/shortcodes/ux_image_box.php'),(8615,'wp-content/themes/flatsome/inc/shortcodes/ux_instagram_feed.php'),(8616,'wp-content/themes/flatsome/inc/shortcodes/ux_logo.php'),(8617,'wp-content/themes/flatsome/inc/shortcodes/ux_menu.php'),(8618,'wp-content/themes/flatsome/inc/shortcodes/ux_menu_link.php'),(8619,'wp-content/themes/flatsome/inc/shortcodes/ux_menu_title.php'),(8620,'wp-content/themes/flatsome/inc/shortcodes/ux_nav.php'),(8621,'wp-content/themes/flatsome/inc/shortcodes/ux_pages.php'),(8622,'wp-content/themes/flatsome/inc/shortcodes/ux_payment_icons.php'),(8623,'wp-content/themes/flatsome/inc/shortcodes/ux_products.php'),(8624,'wp-content/themes/flatsome/inc/shortcodes/ux_products_list.php'),(8625,'wp-content/themes/flatsome/inc/shortcodes/ux_sidebar.php'),(8626,'wp-content/themes/flatsome/inc/shortcodes/ux_slider.php'),(8627,'wp-content/themes/flatsome/inc/shortcodes/ux_stack.php'),(8628,'wp-content/themes/flatsome/inc/shortcodes/ux_text.php'),(8629,'wp-content/themes/flatsome/inc/shortcodes/ux_translation.php'),(8630,'wp-content/themes/flatsome/inc/shortcodes/ux_video.php'),(8631,'wp-content/themes/flatsome/inc/structure/structure-admin.php'),(8632,'wp-content/themes/flatsome/inc/structure/structure-footer.php'),(8633,'wp-content/themes/flatsome/inc/structure/structure-header.php'),(8634,'wp-content/themes/flatsome/inc/structure/structure-pages.php'),(8635,'wp-content/themes/flatsome/inc/structure/structure-portfolio.php'),(8636,'wp-content/themes/flatsome/inc/structure/structure-posts.php'),(8637,'wp-content/themes/flatsome/inc/structure/structure-sidebars.php'),(8638,'wp-content/themes/flatsome/inc/widgets/widget-blocks.php'),(8639,'wp-content/themes/flatsome/inc/widgets/widget-recent-posts.php'),(8640,'wp-content/themes/flatsome/inc/widgets/widget-upsell.php'),(8641,'wp-content/themes/flatsome/inc/woocommerce/structure-wc-cart.php'),(8642,'wp-content/themes/flatsome/inc/woocommerce/structure-wc-catalog-mode.php'),(8643,'wp-content/themes/flatsome/inc/woocommerce/structure-wc-category-page-header.php'),(8644,'wp-content/themes/flatsome/inc/woocommerce/structure-wc-category-page.php'),(8645,'wp-content/themes/flatsome/inc/woocommerce/structure-wc-checkout.php'),(8646,'wp-content/themes/flatsome/inc/woocommerce/structure-wc-conditionals.php'),(8647,'wp-content/themes/flatsome/inc/woocommerce/structure-wc-global.php'),(8648,'wp-content/themes/flatsome/inc/woocommerce/structure-wc-helpers.php'),(8649,'wp-content/themes/flatsome/inc/woocommerce/structure-wc-product-box.php'),(8650,'wp-content/themes/flatsome/inc/woocommerce/structure-wc-product-page-fields.php'),(8651,'wp-content/themes/flatsome/inc/woocommerce/structure-wc-product-page-header.php'),(8652,'wp-content/themes/flatsome/inc/woocommerce/structure-wc-product-page.php'),(8653,'wp-content/themes/flatsome/inc/woocommerce/structure-wc-single-product-custom.php'),(8654,'wp-content/themes/flatsome/inc/woocommerce/structure-wc-single-product.php'),(8655,'wp-content/themes/flatsome/index.php'),(8656,'wp-content/themes/flatsome/maintenance.php'),(8657,'wp-content/themes/flatsome/page-blank-featured.php'),(8658,'wp-content/themes/flatsome/page-blank-landingpage.php'),(8659,'wp-content/themes/flatsome/page-blank-sub-nav-vertical.php'),(8660,'wp-content/themes/flatsome/page-blank-title-center.php'),(8661,'wp-content/themes/flatsome/page-blank.php'),(8662,'wp-content/themes/flatsome/page-cart.php'),(8663,'wp-content/themes/flatsome/page-checkout.php'),(8664,'wp-content/themes/flatsome/page-featured-items-3col.php'),(8665,'wp-content/themes/flatsome/page-featured-items-4col.php'),(8666,'wp-content/themes/flatsome/page-header-on-scroll.php'),(8667,'wp-content/themes/flatsome/page-left-sidebar.php'),(8668,'wp-content/themes/flatsome/page-my-account.php'),(8669,'wp-content/themes/flatsome/page-right-sidebar.php'),(8670,'wp-content/themes/flatsome/page-single-page-nav-transparent-light.php'),(8671,'wp-content/themes/flatsome/page-single-page-nav-transparent.php'),(8672,'wp-content/themes/flatsome/page-single-page-nav.php'),(8673,'wp-content/themes/flatsome/page-transparent-header-light.php'),(8674,'wp-content/themes/flatsome/page-transparent-header.php'),(8675,'wp-content/themes/flatsome/page.php'),(8676,'wp-content/themes/flatsome/search.php'),(8677,'wp-content/themes/flatsome/searchform.php'),(8678,'wp-content/themes/flatsome/sidebar.php'),(8679,'wp-content/themes/flatsome/single-blocks.php'),(8680,'wp-content/themes/flatsome/single-featured_item.php'),(8681,'wp-content/themes/flatsome/single.php'),(8682,'wp-content/themes/flatsome/taxonomy-featured_item_category.php'),(8683,'wp-content/themes/flatsome/template-parts/admin/envato/directory-warning.php'),(8684,'wp-content/themes/flatsome/template-parts/admin/envato/register-form.php'),(8685,'wp-content/themes/flatsome/template-parts/admin/envato/version-info-iframe.php'),(8686,'wp-content/themes/flatsome/template-parts/footer/back-to-top.php'),(8687,'wp-content/themes/flatsome/template-parts/footer/footer-absolute.php'),(8688,'wp-content/themes/flatsome/template-parts/footer/footer-simple.php'),(8689,'wp-content/themes/flatsome/template-parts/footer/footer-transparent.php'),(8690,'wp-content/themes/flatsome/template-parts/footer/footer.php'),(8691,'wp-content/themes/flatsome/template-parts/header/header-bottom.php'),(8692,'wp-content/themes/flatsome/template-parts/header/header-main.php'),(8693,'wp-content/themes/flatsome/template-parts/header/header-top.php'),(8694,'wp-content/themes/flatsome/template-parts/header/header-wrapper.php'),(8695,'wp-content/themes/flatsome/template-parts/header/page-loader.php'),(8696,'wp-content/themes/flatsome/template-parts/header/partials/element-account-mobile.php'),(8697,'wp-content/themes/flatsome/template-parts/header/partials/element-account-sidebar.php'),(8698,'wp-content/themes/flatsome/template-parts/header/partials/element-account.php'),(8699,'wp-content/themes/flatsome/template-parts/header/partials/element-button-1.php'),(8700,'wp-content/themes/flatsome/template-parts/header/partials/element-button-2.php'),(8701,'wp-content/themes/flatsome/template-parts/header/partials/element-cart-mobile.php'),(8702,'wp-content/themes/flatsome/template-parts/header/partials/element-cart-replace.php'),(8703,'wp-content/themes/flatsome/template-parts/header/partials/element-cart-sidebar.php'),(8704,'wp-content/themes/flatsome/template-parts/header/partials/element-cart.php'),(8705,'wp-content/themes/flatsome/template-parts/header/partials/element-checkout.php'),(8706,'wp-content/themes/flatsome/template-parts/header/partials/element-contact-mobile.php'),(8707,'wp-content/themes/flatsome/template-parts/header/partials/element-contact.php'),(8708,'wp-content/themes/flatsome/template-parts/header/partials/element-departments.php'),(8709,'wp-content/themes/flatsome/template-parts/header/partials/element-languages-sidebar.php'),(8710,'wp-content/themes/flatsome/template-parts/header/partials/element-languages.php'),(8711,'wp-content/themes/flatsome/template-parts/header/partials/element-logo.php'),(8712,'wp-content/themes/flatsome/template-parts/header/partials/element-menu-icon.php'),(8713,'wp-content/themes/flatsome/template-parts/header/partials/element-newsletter-sidebar.php'),(8714,'wp-content/themes/flatsome/template-parts/header/partials/element-newsletter.php'),(8715,'wp-content/themes/flatsome/template-parts/header/partials/element-search-form.php'),(8716,'wp-content/themes/flatsome/template-parts/header/partials/element-search.php'),(8717,'wp-content/themes/flatsome/template-parts/header/partials/element-social.php'),(8718,'wp-content/themes/flatsome/template-parts/header/partials/element-wishlist-mobile.php'),(8719,'wp-content/themes/flatsome/template-parts/header/partials/element-wishlist.php'),(8720,'wp-content/themes/flatsome/template-parts/overlays/overlay-menu.php'),(8721,'wp-content/themes/flatsome/template-parts/pages/page-title-breadcrumbs-centered.php'),(8722,'wp-content/themes/flatsome/template-parts/pages/page-title-breadcrumbs-simple.php'),(8723,'wp-content/themes/flatsome/template-parts/pages/page-title-breadcrumbs.php'),(8724,'wp-content/themes/flatsome/template-parts/pages/page-title-centered.php'),(8725,'wp-content/themes/flatsome/template-parts/pages/page-title-scroll-to-centered.php'),(8726,'wp-content/themes/flatsome/template-parts/pages/page-title-scroll-to.php'),(8727,'wp-content/themes/flatsome/template-parts/pages/page-title-sub-nav-centered.php'),(8728,'wp-content/themes/flatsome/template-parts/pages/page-title-sub-nav-simple.php'),(8729,'wp-content/themes/flatsome/template-parts/pages/page-title-sub-nav.php'),(8730,'wp-content/themes/flatsome/template-parts/pages/page-title.php'),(8731,'wp-content/themes/flatsome/template-parts/portfolio/archive-portfolio-title-breadcrumbs.php'),(8732,'wp-content/themes/flatsome/template-parts/portfolio/archive-portfolio-title-featured.php'),(8733,'wp-content/themes/flatsome/template-parts/portfolio/archive-portfolio-title.php'),(8734,'wp-content/themes/flatsome/template-parts/portfolio/archive-portfolio.php'),(8735,'wp-content/themes/flatsome/template-parts/portfolio/portfolio-content.php'),(8736,'wp-content/themes/flatsome/template-parts/portfolio/portfolio-next-prev.php'),(8737,'wp-content/themes/flatsome/template-parts/portfolio/portfolio-related.php'),(8738,'wp-content/themes/flatsome/template-parts/portfolio/portfolio-summary-full.php'),(8739,'wp-content/themes/flatsome/template-parts/portfolio/portfolio-summary.php'),(8740,'wp-content/themes/flatsome/template-parts/portfolio/portfolio-title-breadcrumbs.php'),(8741,'wp-content/themes/flatsome/template-parts/portfolio/portfolio-title-featured.php'),(8742,'wp-content/themes/flatsome/template-parts/portfolio/single-portfolio-bottom-full.php'),(8743,'wp-content/themes/flatsome/template-parts/portfolio/single-portfolio-bottom.php'),(8744,'wp-content/themes/flatsome/template-parts/portfolio/single-portfolio-sidebar-right.php'),(8745,'wp-content/themes/flatsome/template-parts/portfolio/single-portfolio-top-full.php'),(8746,'wp-content/themes/flatsome/template-parts/portfolio/single-portfolio-top.php'),(8747,'wp-content/themes/flatsome/template-parts/portfolio/single-portfolio.php'),(8748,'wp-content/themes/flatsome/template-parts/posts/archive-2-col.php'),(8749,'wp-content/themes/flatsome/template-parts/posts/archive-3-col.php'),(8750,'wp-content/themes/flatsome/template-parts/posts/archive-inline.php'),(8751,'wp-content/themes/flatsome/template-parts/posts/archive-list.php'),(8752,'wp-content/themes/flatsome/template-parts/posts/archive.php'),(8753,'wp-content/themes/flatsome/template-parts/posts/content-none.php'),(8754,'wp-content/themes/flatsome/template-parts/posts/content-search.php'),(8755,'wp-content/themes/flatsome/template-parts/posts/content-single.php'),(8756,'wp-content/themes/flatsome/template-parts/posts/content.php'),(8757,'wp-content/themes/flatsome/template-parts/posts/featured-posts.php'),(8758,'wp-content/themes/flatsome/template-parts/posts/layout-left-sidebar.php'),(8759,'wp-content/themes/flatsome/template-parts/posts/layout-right-sidebar.php'),(8760,'wp-content/themes/flatsome/template-parts/posts/layout.php'),(8761,'wp-content/themes/flatsome/template-parts/posts/loop/post-simple.php'),(8762,'wp-content/themes/flatsome/template-parts/posts/partials/archive-title.php'),(8763,'wp-content/themes/flatsome/template-parts/posts/partials/entry-footer-single.php'),(8764,'wp-content/themes/flatsome/template-parts/posts/partials/entry-footer.php'),(8765,'wp-content/themes/flatsome/template-parts/posts/partials/entry-header-bottom.php'),(8766,'wp-content/themes/flatsome/template-parts/posts/partials/entry-header.php'),(8767,'wp-content/themes/flatsome/template-parts/posts/partials/entry-image.php'),(8768,'wp-content/themes/flatsome/template-parts/posts/partials/entry-post-date.php'),(8769,'wp-content/themes/flatsome/template-parts/posts/partials/entry-title.php'),(8770,'wp-content/themes/flatsome/template-parts/posts/partials/entry-video.php'),(8771,'wp-content/themes/flatsome/template-parts/posts/partials/single-featured.php'),(8772,'wp-content/themes/flatsome/template-parts/posts/single.php'),(8773,'wp-content/themes/flatsome/template-parts/shortcodes/button.php'),(8774,'wp-content/themes/flatsome/woocommerce/archive-product.php'),(8775,'wp-content/themes/flatsome/woocommerce/cart/cart-empty.php'),(8776,'wp-content/themes/flatsome/woocommerce/cart/cart-shipping.php'),(8777,'wp-content/themes/flatsome/woocommerce/cart/cart.php'),(8778,'wp-content/themes/flatsome/woocommerce/cart/continue-shopping.php'),(8779,'wp-content/themes/flatsome/woocommerce/checkout/form-checkout.php'),(8780,'wp-content/themes/flatsome/woocommerce/checkout/form-coupon.php'),(8781,'wp-content/themes/flatsome/woocommerce/checkout/header-small.php'),(8782,'wp-content/themes/flatsome/woocommerce/checkout/header.php'),(8783,'wp-content/themes/flatsome/woocommerce/checkout/layouts/checkout-focused.php'),(8784,'wp-content/themes/flatsome/woocommerce/checkout/layouts/checkout-simple.php'),(8785,'wp-content/themes/flatsome/woocommerce/checkout/layouts/checkout.php'),(8786,'wp-content/themes/flatsome/woocommerce/checkout/social-login.php'),(8787,'wp-content/themes/flatsome/woocommerce/checkout/terms.php'),(8788,'wp-content/themes/flatsome/woocommerce/checkout/thankyou.php'),(8789,'wp-content/themes/flatsome/woocommerce/content-product-cat.php'),(8790,'wp-content/themes/flatsome/woocommerce/content-product-flipbook.php'),(8791,'wp-content/themes/flatsome/woocommerce/content-product-small.php'),(8792,'wp-content/themes/flatsome/woocommerce/content-product.php'),(8793,'wp-content/themes/flatsome/woocommerce/content-product_cat.php'),(8794,'wp-content/themes/flatsome/woocommerce/content-single-product-custom.php'),(8795,'wp-content/themes/flatsome/woocommerce/content-single-product-lightbox.php'),(8796,'wp-content/themes/flatsome/woocommerce/content-single-product.php'),(8797,'wp-content/themes/flatsome/woocommerce/content-widget-product.php'),(8798,'wp-content/themes/flatsome/woocommerce/global/breadcrumb.php'),(8799,'wp-content/themes/flatsome/woocommerce/global/quantity-input.php'),(8800,'wp-content/themes/flatsome/woocommerce/global/wrapper-end.php'),(8801,'wp-content/themes/flatsome/woocommerce/global/wrapper-start.php'),(8802,'wp-content/themes/flatsome/woocommerce/layouts/category-none.php'),(8803,'wp-content/themes/flatsome/woocommerce/layouts/category-off-canvas.php'),(8804,'wp-content/themes/flatsome/woocommerce/layouts/category-right-sidebar.php'),(8805,'wp-content/themes/flatsome/woocommerce/layouts/category.php'),(8806,'wp-content/themes/flatsome/woocommerce/layouts/headers/category-title-featured-center.php'),(8807,'wp-content/themes/flatsome/woocommerce/layouts/headers/category-title-featured.php'),(8808,'wp-content/themes/flatsome/woocommerce/layouts/headers/category-title.php'),(8809,'wp-content/themes/flatsome/woocommerce/loop/breadcrumbs.php'),(8810,'wp-content/themes/flatsome/woocommerce/loop/filter-button.php'),(8811,'wp-content/themes/flatsome/woocommerce/loop/loop-end.php'),(8812,'wp-content/themes/flatsome/woocommerce/loop/loop-start.php'),(8813,'wp-content/themes/flatsome/woocommerce/loop/pagination.php'),(8814,'wp-content/themes/flatsome/woocommerce/loop/result-count.php'),(8815,'wp-content/themes/flatsome/woocommerce/loop/sale-flash.php'),(8816,'wp-content/themes/flatsome/woocommerce/myaccount/account-links.php'),(8817,'wp-content/themes/flatsome/woocommerce/myaccount/account-user.php'),(8818,'wp-content/themes/flatsome/woocommerce/myaccount/dashboard-links.php'),(8819,'wp-content/themes/flatsome/woocommerce/myaccount/form-login-lightbox-left-panel.php'),(8820,'wp-content/themes/flatsome/woocommerce/myaccount/form-login-lightbox-right-panel.php'),(8821,'wp-content/themes/flatsome/woocommerce/myaccount/form-login.php'),(8822,'wp-content/themes/flatsome/woocommerce/myaccount/header.php'),(8823,'wp-content/themes/flatsome/woocommerce/myaccount/navigation.php'),(8824,'wp-content/themes/flatsome/woocommerce/notices/error.php'),(8825,'wp-content/themes/flatsome/woocommerce/notices/notice.php'),(8826,'wp-content/themes/flatsome/woocommerce/notices/success.php'),(8827,'wp-content/themes/flatsome/woocommerce/product-searchform.php'),(8828,'wp-content/themes/flatsome/woocommerce/share.php'),(8829,'wp-content/themes/flatsome/woocommerce/single-product/filter-button.php'),(8830,'wp-content/themes/flatsome/woocommerce/single-product/headers/header-product-featured-center.php'),(8831,'wp-content/themes/flatsome/woocommerce/single-product/headers/header-product-featured.php'),(8832,'wp-content/themes/flatsome/woocommerce/single-product/headers/header-product-top.php'),(8833,'wp-content/themes/flatsome/woocommerce/single-product/layouts/product-gallery-wide.php'),(8834,'wp-content/themes/flatsome/woocommerce/single-product/layouts/product-left-sidebar-full.php'),(8835,'wp-content/themes/flatsome/woocommerce/single-product/layouts/product-left-sidebar-small.php'),(8836,'wp-content/themes/flatsome/woocommerce/single-product/layouts/product-left-sidebar.php'),(8837,'wp-content/themes/flatsome/woocommerce/single-product/layouts/product-no-sidebar.php'),(8838,'wp-content/themes/flatsome/woocommerce/single-product/layouts/product-right-sidebar-full.php'),(8839,'wp-content/themes/flatsome/woocommerce/single-product/layouts/product-right-sidebar.php'),(8840,'wp-content/themes/flatsome/woocommerce/single-product/layouts/product-stacked-right.php'),(8841,'wp-content/themes/flatsome/woocommerce/single-product/layouts/product.php'),(8842,'wp-content/themes/flatsome/woocommerce/single-product/photoswipe.php'),(8843,'wp-content/themes/flatsome/woocommerce/single-product/price.php'),(8844,'wp-content/themes/flatsome/woocommerce/single-product/product-gallery-thumbnails.php'),(8845,'wp-content/themes/flatsome/woocommerce/single-product/product-image-default.php'),(8846,'wp-content/themes/flatsome/woocommerce/single-product/product-image-stacked.php'),(8847,'wp-content/themes/flatsome/woocommerce/single-product/product-image-vertical.php'),(8848,'wp-content/themes/flatsome/woocommerce/single-product/product-image-wide.php'),(8849,'wp-content/themes/flatsome/woocommerce/single-product/product-image.php'),(8850,'wp-content/themes/flatsome/woocommerce/single-product/product-thumbnails.php'),(8851,'wp-content/themes/flatsome/woocommerce/single-product/rating.php'),(8852,'wp-content/themes/flatsome/woocommerce/single-product/related.php'),(8853,'wp-content/themes/flatsome/woocommerce/single-product/review.php'),(8854,'wp-content/themes/flatsome/woocommerce/single-product/sale-flash.php'),(8855,'wp-content/themes/flatsome/woocommerce/single-product/share.php'),(8856,'wp-content/themes/flatsome/woocommerce/single-product/short-description.php'),(8857,'wp-content/themes/flatsome/woocommerce/single-product/tabs/accordian.php'),(8858,'wp-content/themes/flatsome/woocommerce/single-product/tabs/sections.php'),(8859,'wp-content/themes/flatsome/woocommerce/single-product/tabs/tabs.php'),(8860,'wp-content/themes/flatsome/woocommerce/single-product/title.php'),(8861,'wp-content/themes/flatsome/woocommerce/single-product/up-sells.php'),(8862,'wp-content/themes/flatsome/woocommerce/single-product-reviews.php'),(8863,'wp-content/themes/flatsome/woocommerce/single-product.php'),(8864,'wp-content/themes/index.php'),(8865,'wp-content/themes/padmini/functions.php'),(8866,'wp-content/themes/twentynineteen/404.php'),(8867,'wp-content/themes/twentynineteen/archive.php'),(8868,'wp-content/themes/twentynineteen/classes/class-twentynineteen-svg-icons.php'),(8869,'wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php'),(8870,'wp-content/themes/twentynineteen/comments.php'),(8871,'wp-content/themes/twentynineteen/fonts/NonBreakingSpaceOverride.woff'),(8872,'wp-content/themes/twentynineteen/fonts/NonBreakingSpaceOverride.woff2'),(8873,'wp-content/themes/twentynineteen/footer.php'),(8874,'wp-content/themes/twentynineteen/functions.php'),(8875,'wp-content/themes/twentynineteen/header.php'),(8876,'wp-content/themes/twentynineteen/image.php'),(8877,'wp-content/themes/twentynineteen/images/pattern_01.jpg'),(8878,'wp-content/themes/twentynineteen/images/pattern_02.jpg'),(8879,'wp-content/themes/twentynineteen/images/pattern_03.jpg'),(8880,'wp-content/themes/twentynineteen/images/pattern_04.jpg'),(8881,'wp-content/themes/twentynineteen/inc/back-compat.php'),(8882,'wp-content/themes/twentynineteen/inc/block-patterns.php'),(8883,'wp-content/themes/twentynineteen/inc/color-patterns.php'),(8884,'wp-content/themes/twentynineteen/inc/customizer.php'),(8885,'wp-content/themes/twentynineteen/inc/helper-functions.php'),(8886,'wp-content/themes/twentynineteen/inc/icon-functions.php'),(8887,'wp-content/themes/twentynineteen/inc/template-functions.php'),(8888,'wp-content/themes/twentynineteen/inc/template-tags.php'),(8889,'wp-content/themes/twentynineteen/index.php'),(8890,'wp-content/themes/twentynineteen/js/customize-controls.js'),(8891,'wp-content/themes/twentynineteen/js/customize-preview.js'),(8892,'wp-content/themes/twentynineteen/js/priority-menu.js'),(8893,'wp-content/themes/twentynineteen/js/skip-link-focus-fix.js'),(8894,'wp-content/themes/twentynineteen/js/touch-keyboard-navigation.js'),(8895,'wp-content/themes/twentynineteen/package-lock.json'),(8896,'wp-content/themes/twentynineteen/package.json'),(8897,'wp-content/themes/twentynineteen/page.php'),(8898,'wp-content/themes/twentynineteen/postcss.config.js'),(8899,'wp-content/themes/twentynineteen/print.css'),(8900,'wp-content/themes/twentynineteen/print.scss'),(8901,'wp-content/themes/twentynineteen/readme.txt'),(8902,'wp-content/themes/twentynineteen/sass/_normalize.scss'),(8903,'wp-content/themes/twentynineteen/sass/blocks/_blocks.scss'),(8904,'wp-content/themes/twentynineteen/sass/elements/_elements.scss'),(8905,'wp-content/themes/twentynineteen/sass/elements/_lists.scss'),(8906,'wp-content/themes/twentynineteen/sass/elements/_tables.scss'),(8907,'wp-content/themes/twentynineteen/sass/forms/_buttons.scss'),(8908,'wp-content/themes/twentynineteen/sass/forms/_fields.scss'),(8909,'wp-content/themes/twentynineteen/sass/forms/_forms.scss'),(8910,'wp-content/themes/twentynineteen/sass/layout/_layout.scss'),(8911,'wp-content/themes/twentynineteen/sass/media/_captions.scss'),(8912,'wp-content/themes/twentynineteen/sass/media/_galleries.scss'),(8913,'wp-content/themes/twentynineteen/sass/media/_media.scss'),(8914,'wp-content/themes/twentynineteen/sass/mixins/_mixins-master.scss'),(8915,'wp-content/themes/twentynineteen/sass/mixins/_utilities.scss'),(8916,'wp-content/themes/twentynineteen/sass/modules/_accessibility.scss'),(8917,'wp-content/themes/twentynineteen/sass/modules/_alignments.scss'),(8918,'wp-content/themes/twentynineteen/sass/modules/_clearings.scss'),(8919,'wp-content/themes/twentynineteen/sass/navigation/_links.scss'),(8920,'wp-content/themes/twentynineteen/sass/navigation/_menu-footer-navigation.scss'),(8921,'wp-content/themes/twentynineteen/sass/navigation/_menu-main-navigation.scss'),(8922,'wp-content/themes/twentynineteen/sass/navigation/_menu-social-navigation.scss'),(8923,'wp-content/themes/twentynineteen/sass/navigation/_navigation.scss'),(8924,'wp-content/themes/twentynineteen/sass/navigation/_next-previous.scss'),(8925,'wp-content/themes/twentynineteen/sass/site/_site.scss'),(8926,'wp-content/themes/twentynineteen/sass/site/footer/_site-footer.scss'),(8927,'wp-content/themes/twentynineteen/sass/site/header/_site-featured-image.scss'),(8928,'wp-content/themes/twentynineteen/sass/site/header/_site-header.scss'),(8929,'wp-content/themes/twentynineteen/sass/site/primary/_archives.scss'),(8930,'wp-content/themes/twentynineteen/sass/site/primary/_comments.scss'),(8931,'wp-content/themes/twentynineteen/sass/site/primary/_posts-and-pages.scss'),(8932,'wp-content/themes/twentynineteen/sass/site/secondary/_widgets.scss'),(8933,'wp-content/themes/twentynineteen/sass/typography/_copy.scss'),(8934,'wp-content/themes/twentynineteen/sass/typography/_headings.scss'),(8935,'wp-content/themes/twentynineteen/sass/typography/_typography.scss'),(8936,'wp-content/themes/twentynineteen/sass/variables-site/_colors.scss'),(8937,'wp-content/themes/twentynineteen/sass/variables-site/_columns.scss'),(8938,'wp-content/themes/twentynineteen/sass/variables-site/_fonts.scss'),(8939,'wp-content/themes/twentynineteen/sass/variables-site/_structure.scss'),(8940,'wp-content/themes/twentynineteen/sass/variables-site/_transitions.scss'),(8941,'wp-content/themes/twentynineteen/sass/variables-site/_variables-site.scss'),(8942,'wp-content/themes/twentynineteen/screenshot.png'),(8943,'wp-content/themes/twentynineteen/search.php'),(8944,'wp-content/themes/twentynineteen/single.php'),(8945,'wp-content/themes/twentynineteen/style-editor-customizer.css'),(8946,'wp-content/themes/twentynineteen/style-editor-customizer.scss'),(8947,'wp-content/themes/twentynineteen/style-editor.css'),(8948,'wp-content/themes/twentynineteen/style-editor.scss'),(8949,'wp-content/themes/twentynineteen/style-rtl.css'),(8950,'wp-content/themes/twentynineteen/style.css'),(8951,'wp-content/themes/twentynineteen/style.css.map'),(8952,'wp-content/themes/twentynineteen/style.scss'),(8953,'wp-content/themes/twentynineteen/template-parts/content/content-excerpt.php'),(8954,'wp-content/themes/twentynineteen/template-parts/content/content-none.php'),(8955,'wp-content/themes/twentynineteen/template-parts/content/content-page.php'),(8956,'wp-content/themes/twentynineteen/template-parts/content/content-single.php'),(8957,'wp-content/themes/twentynineteen/template-parts/content/content.php'),(8958,'wp-content/themes/twentynineteen/template-parts/footer/footer-widgets.php'),(8959,'wp-content/themes/twentynineteen/template-parts/header/entry-header.php'),(8960,'wp-content/themes/twentynineteen/template-parts/header/site-branding.php'),(8961,'wp-content/themes/twentynineteen/template-parts/post/author-bio.php'),(8962,'wp-content/themes/twentynineteen/template-parts/post/discussion-meta.php'),(8963,'wp-content/themes/twentytwenty/404.php'),(8964,'wp-content/themes/twentytwenty/assets/css/editor-style-block-rtl.css'),(8965,'wp-content/themes/twentytwenty/assets/css/editor-style-block.css'),(8966,'wp-content/themes/twentytwenty/assets/css/editor-style-classic-rtl.css'),(8967,'wp-content/themes/twentytwenty/assets/css/editor-style-classic.css'),(8968,'wp-content/themes/twentytwenty/assets/fonts/inter/Inter-italic-var.woff2'),(8969,'wp-content/themes/twentytwenty/assets/fonts/inter/Inter-upright-var.woff2'),(8970,'wp-content/themes/twentytwenty/assets/images/2020-landscape-1.png'),(8971,'wp-content/themes/twentytwenty/assets/images/2020-landscape-2.png'),(8972,'wp-content/themes/twentytwenty/assets/images/2020-square-1.png'),(8973,'wp-content/themes/twentytwenty/assets/images/2020-square-2.png'),(8974,'wp-content/themes/twentytwenty/assets/images/2020-three-quarters-1.png'),(8975,'wp-content/themes/twentytwenty/assets/images/2020-three-quarters-2.png'),(8976,'wp-content/themes/twentytwenty/assets/images/2020-three-quarters-3.png'),(8977,'wp-content/themes/twentytwenty/assets/images/2020-three-quarters-4.png'),(8978,'wp-content/themes/twentytwenty/assets/js/color-calculations.js'),(8979,'wp-content/themes/twentytwenty/assets/js/customize-controls.js'),(8980,'wp-content/themes/twentytwenty/assets/js/customize-preview.js'),(8981,'wp-content/themes/twentytwenty/assets/js/customize.js'),(8982,'wp-content/themes/twentytwenty/assets/js/editor-script-block.js'),(8983,'wp-content/themes/twentytwenty/assets/js/index.js'),(8984,'wp-content/themes/twentytwenty/assets/js/skip-link-focus-fix.js'),(8985,'wp-content/themes/twentytwenty/classes/class-twentytwenty-customize.php'),(8986,'wp-content/themes/twentytwenty/classes/class-twentytwenty-non-latin-languages.php'),(8987,'wp-content/themes/twentytwenty/classes/class-twentytwenty-script-loader.php'),(8988,'wp-content/themes/twentytwenty/classes/class-twentytwenty-separator-control.php'),(8989,'wp-content/themes/twentytwenty/classes/class-twentytwenty-svg-icons.php'),(8990,'wp-content/themes/twentytwenty/classes/class-twentytwenty-walker-comment.php'),(8991,'wp-content/themes/twentytwenty/classes/class-twentytwenty-walker-page.php'),(8992,'wp-content/themes/twentytwenty/comments.php'),(8993,'wp-content/themes/twentytwenty/footer.php'),(8994,'wp-content/themes/twentytwenty/functions.php'),(8995,'wp-content/themes/twentytwenty/header.php'),(8996,'wp-content/themes/twentytwenty/inc/block-patterns.php'),(8997,'wp-content/themes/twentytwenty/inc/custom-css.php'),(8998,'wp-content/themes/twentytwenty/inc/starter-content.php'),(8999,'wp-content/themes/twentytwenty/inc/svg-icons.php'),(9000,'wp-content/themes/twentytwenty/inc/template-tags.php'),(9001,'wp-content/themes/twentytwenty/index.php'),(9002,'wp-content/themes/twentytwenty/package-lock.json'),(9003,'wp-content/themes/twentytwenty/package.json'),(9004,'wp-content/themes/twentytwenty/print.css'),(9005,'wp-content/themes/twentytwenty/readme.txt'),(9006,'wp-content/themes/twentytwenty/screenshot.png'),(9007,'wp-content/themes/twentytwenty/searchform.php'),(9008,'wp-content/themes/twentytwenty/singular.php'),(9009,'wp-content/themes/twentytwenty/style-rtl.css'),(9010,'wp-content/themes/twentytwenty/style.css'),(9011,'wp-content/themes/twentytwenty/template-parts/content-cover.php'),(9012,'wp-content/themes/twentytwenty/template-parts/content.php'),(9013,'wp-content/themes/twentytwenty/template-parts/entry-author-bio.php'),(9014,'wp-content/themes/twentytwenty/template-parts/entry-header.php'),(9015,'wp-content/themes/twentytwenty/template-parts/featured-image.php'),(9016,'wp-content/themes/twentytwenty/template-parts/footer-menus-widgets.php'),(9017,'wp-content/themes/twentytwenty/template-parts/modal-menu.php'),(9018,'wp-content/themes/twentytwenty/template-parts/modal-search.php'),(9019,'wp-content/themes/twentytwenty/template-parts/navigation.php'),(9020,'wp-content/themes/twentytwenty/template-parts/pagination.php'),(9021,'wp-content/themes/twentytwenty/templates/template-cover.php'),(9022,'wp-content/themes/twentytwenty/templates/template-full-width.php'),(9023,'wp-content/themes/twentytwentyone/404.php'),(9024,'wp-content/themes/twentytwentyone/archive.php'),(9025,'wp-content/themes/twentytwentyone/assets/css/custom-color-overrides.css'),(9026,'wp-content/themes/twentytwentyone/assets/css/ie-editor.css'),(9027,'wp-content/themes/twentytwentyone/assets/css/ie-editor.css.map'),(9028,'wp-content/themes/twentytwentyone/assets/css/ie.css'),(9029,'wp-content/themes/twentytwentyone/assets/css/ie.css.map'),(9030,'wp-content/themes/twentytwentyone/assets/css/print.css'),(9031,'wp-content/themes/twentytwentyone/assets/css/print.css.map'),(9032,'wp-content/themes/twentytwentyone/assets/css/style-dark-mode-rtl.css'),(9033,'wp-content/themes/twentytwentyone/assets/css/style-dark-mode.css'),(9034,'wp-content/themes/twentytwentyone/assets/css/style-dark-mode.css.map'),(9035,'wp-content/themes/twentytwentyone/assets/css/style-editor-customizer.css'),(9036,'wp-content/themes/twentytwentyone/assets/css/style-editor.css'),(9037,'wp-content/themes/twentytwentyone/assets/css/style-editor.css.map'),(9038,'wp-content/themes/twentytwentyone/assets/images/Daffodils.jpg'),(9039,'wp-content/themes/twentytwentyone/assets/images/Reading.jpg'),(9040,'wp-content/themes/twentytwentyone/assets/images/in-the-bois-de-boulogne.jpg'),(9041,'wp-content/themes/twentytwentyone/assets/images/playing-in-the-sand.jpg'),(9042,'wp-content/themes/twentytwentyone/assets/images/roses-tremieres-hollyhocks-1884.jpg'),(9043,'wp-content/themes/twentytwentyone/assets/images/self-portrait-1885.jpg'),(9044,'wp-content/themes/twentytwentyone/assets/images/the-garden-at-bougival-1884.jpg'),(9045,'wp-content/themes/twentytwentyone/assets/images/villa-with-orange-trees-nice.jpg'),(9046,'wp-content/themes/twentytwentyone/assets/images/young-woman-in-mauve.jpg'),(9047,'wp-content/themes/twentytwentyone/assets/js/customize-helpers.js'),(9048,'wp-content/themes/twentytwentyone/assets/js/customize-preview.js'),(9049,'wp-content/themes/twentytwentyone/assets/js/customize.js'),(9050,'wp-content/themes/twentytwentyone/assets/js/dark-mode-toggler.js'),(9051,'wp-content/themes/twentytwentyone/assets/js/editor-dark-mode-support.js'),(9052,'wp-content/themes/twentytwentyone/assets/js/editor.js'),(9053,'wp-content/themes/twentytwentyone/assets/js/palette-colorpicker.js'),(9054,'wp-content/themes/twentytwentyone/assets/js/polyfills.js'),(9055,'wp-content/themes/twentytwentyone/assets/js/primary-navigation.js'),(9056,'wp-content/themes/twentytwentyone/assets/js/responsive-embeds.js'),(9057,'wp-content/themes/twentytwentyone/assets/js/skip-link-focus-fix.js'),(9058,'wp-content/themes/twentytwentyone/assets/sass/01-settings/file-header.scss'),(9059,'wp-content/themes/twentytwentyone/assets/sass/01-settings/fonts.scss'),(9060,'wp-content/themes/twentytwentyone/assets/sass/01-settings/global.scss'),(9061,'wp-content/themes/twentytwentyone/assets/sass/02-tools/functions.scss'),(9062,'wp-content/themes/twentytwentyone/assets/sass/02-tools/mixins.scss'),(9063,'wp-content/themes/twentytwentyone/assets/sass/03-generic/breakpoints.scss'),(9064,'wp-content/themes/twentytwentyone/assets/sass/03-generic/clearings.scss'),(9065,'wp-content/themes/twentytwentyone/assets/sass/03-generic/normalize.scss'),(9066,'wp-content/themes/twentytwentyone/assets/sass/03-generic/reset.scss'),(9067,'wp-content/themes/twentytwentyone/assets/sass/03-generic/vertical-margins.scss'),(9068,'wp-content/themes/twentytwentyone/assets/sass/04-elements/blockquote.scss'),(9069,'wp-content/themes/twentytwentyone/assets/sass/04-elements/forms-editor.scss'),(9070,'wp-content/themes/twentytwentyone/assets/sass/04-elements/forms.scss'),(9071,'wp-content/themes/twentytwentyone/assets/sass/04-elements/links.scss'),(9072,'wp-content/themes/twentytwentyone/assets/sass/04-elements/media.scss'),(9073,'wp-content/themes/twentytwentyone/assets/sass/04-elements/misc.scss'),(9074,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/_config.scss'),(9075,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/audio/_style.scss'),(9076,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/blocks-editor.scss'),(9077,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/blocks.scss'),(9078,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/button/_editor.scss'),(9079,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/button/_style.scss'),(9080,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/code/_editor.scss'),(9081,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/code/_style.scss'),(9082,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/columns/_editor.scss'),(9083,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/columns/_style.scss'),(9084,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/cover/_editor.scss'),(9085,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/cover/_style.scss'),(9086,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/file/_editor.scss'),(9087,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/file/_style.scss'),(9088,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/gallery/_editor.scss'),(9089,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/gallery/_style.scss'),(9090,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/group/_editor.scss'),(9091,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/group/_style.scss'),(9092,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/heading/_editor.scss'),(9093,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/heading/_style.scss'),(9094,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/html/_editor.scss'),(9095,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/image/_editor.scss'),(9096,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/image/_style.scss'),(9097,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/latest-comments/_editor.scss'),(9098,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/latest-comments/_style.scss'),(9099,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/latest-posts/_editor.scss'),(9100,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/latest-posts/_style.scss'),(9101,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/legacy/_editor.scss'),(9102,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/legacy/_style.scss'),(9103,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/list/_editor.scss'),(9104,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/list/_style.scss'),(9105,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/media-text/_editor.scss'),(9106,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/media-text/_style.scss'),(9107,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/navigation/_editor.scss'),(9108,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/navigation/_style.scss'),(9109,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/paragraph/_editor.scss'),(9110,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/paragraph/_style.scss'),(9111,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/preformatted/_editor.scss'),(9112,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/preformatted/_style.scss'),(9113,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/pullquote/_editor.scss'),(9114,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/pullquote/_style.scss'),(9115,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/query-loop/_editor.scss'),(9116,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/query-loop/_style.scss'),(9117,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/quote/_editor.scss'),(9118,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/quote/_style.scss'),(9119,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/rss/_editor.scss'),(9120,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/rss/_style.scss'),(9121,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/search/_editor.scss'),(9122,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/search/_style.scss'),(9123,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/separator/_editor.scss'),(9124,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/separator/_style.scss'),(9125,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/social-icons/_editor.scss'),(9126,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/social-icons/_style.scss'),(9127,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/spacer/_style.scss'),(9128,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/table/_editor.scss'),(9129,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/table/_style.scss'),(9130,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/tag-clould/_editor.scss'),(9131,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/tag-clould/_style.scss'),(9132,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/utilities/_editor.scss'),(9133,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/utilities/_font-sizes.scss'),(9134,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/utilities/_style.scss'),(9135,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/verse/_editor.scss'),(9136,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/verse/_style.scss'),(9137,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/video/_style.scss'),(9138,'wp-content/themes/twentytwentyone/assets/sass/06-components/404.scss'),(9139,'wp-content/themes/twentytwentyone/assets/sass/06-components/archives.scss'),(9140,'wp-content/themes/twentytwentyone/assets/sass/06-components/comments.scss'),(9141,'wp-content/themes/twentytwentyone/assets/sass/06-components/editor.scss'),(9142,'wp-content/themes/twentytwentyone/assets/sass/06-components/entry.scss'),(9143,'wp-content/themes/twentytwentyone/assets/sass/06-components/footer-navigation.scss'),(9144,'wp-content/themes/twentytwentyone/assets/sass/06-components/footer.scss'),(9145,'wp-content/themes/twentytwentyone/assets/sass/06-components/header.scss'),(9146,'wp-content/themes/twentytwentyone/assets/sass/06-components/navigation.scss'),(9147,'wp-content/themes/twentytwentyone/assets/sass/06-components/pagination.scss'),(9148,'wp-content/themes/twentytwentyone/assets/sass/06-components/posts-and-pages.scss'),(9149,'wp-content/themes/twentytwentyone/assets/sass/06-components/search.scss'),(9150,'wp-content/themes/twentytwentyone/assets/sass/06-components/single.scss'),(9151,'wp-content/themes/twentytwentyone/assets/sass/06-components/widgets.scss'),(9152,'wp-content/themes/twentytwentyone/assets/sass/07-utilities/a11y.scss'),(9153,'wp-content/themes/twentytwentyone/assets/sass/07-utilities/color-palette.scss'),(9154,'wp-content/themes/twentytwentyone/assets/sass/07-utilities/ie.scss'),(9155,'wp-content/themes/twentytwentyone/assets/sass/07-utilities/measure.scss'),(9156,'wp-content/themes/twentytwentyone/assets/sass/07-utilities/print.scss'),(9157,'wp-content/themes/twentytwentyone/assets/sass/style-dark-mode.scss'),(9158,'wp-content/themes/twentytwentyone/assets/sass/style-editor.scss'),(9159,'wp-content/themes/twentytwentyone/assets/sass/style.scss'),(9160,'wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-custom-colors.php'),(9161,'wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-customize-color-control.php'),(9162,'wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-customize-notice-control.php'),(9163,'wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-customize.php'),(9164,'wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-dark-mode.php'),(9165,'wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-svg-icons.php'),(9166,'wp-content/themes/twentytwentyone/comments.php'),(9167,'wp-content/themes/twentytwentyone/footer.php'),(9168,'wp-content/themes/twentytwentyone/functions.php'),(9169,'wp-content/themes/twentytwentyone/header.php'),(9170,'wp-content/themes/twentytwentyone/image.php'),(9171,'wp-content/themes/twentytwentyone/inc/back-compat.php'),(9172,'wp-content/themes/twentytwentyone/inc/block-patterns.php'),(9173,'wp-content/themes/twentytwentyone/inc/block-styles.php'),(9174,'wp-content/themes/twentytwentyone/inc/custom-css.php'),(9175,'wp-content/themes/twentytwentyone/inc/menu-functions.php'),(9176,'wp-content/themes/twentytwentyone/inc/starter-content.php'),(9177,'wp-content/themes/twentytwentyone/inc/template-functions.php'),(9178,'wp-content/themes/twentytwentyone/inc/template-tags.php'),(9179,'wp-content/themes/twentytwentyone/index.php'),(9180,'wp-content/themes/twentytwentyone/package-lock.json'),(9181,'wp-content/themes/twentytwentyone/package.json'),(9182,'wp-content/themes/twentytwentyone/page.php'),(9183,'wp-content/themes/twentytwentyone/postcss.config.js'),(9184,'wp-content/themes/twentytwentyone/readme.txt'),(9185,'wp-content/themes/twentytwentyone/screenshot.png'),(9186,'wp-content/themes/twentytwentyone/search.php'),(9187,'wp-content/themes/twentytwentyone/searchform.php'),(9188,'wp-content/themes/twentytwentyone/single.php'),(9189,'wp-content/themes/twentytwentyone/style-rtl.css'),(9190,'wp-content/themes/twentytwentyone/style.css'),(9191,'wp-content/themes/twentytwentyone/style.css.map'),(9192,'wp-content/themes/twentytwentyone/template-parts/content/content-excerpt.php'),(9193,'wp-content/themes/twentytwentyone/template-parts/content/content-none.php'),(9194,'wp-content/themes/twentytwentyone/template-parts/content/content-page.php'),(9195,'wp-content/themes/twentytwentyone/template-parts/content/content-single.php'),(9196,'wp-content/themes/twentytwentyone/template-parts/content/content.php'),(9197,'wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-aside.php'),(9198,'wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-audio.php'),(9199,'wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-chat.php'),(9200,'wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-gallery.php'),(9201,'wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-image.php'),(9202,'wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-link.php'),(9203,'wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-quote.php'),(9204,'wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-status.php'),(9205,'wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-video.php'),(9206,'wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt.php'),(9207,'wp-content/themes/twentytwentyone/template-parts/footer/footer-widgets.php'),(9208,'wp-content/themes/twentytwentyone/template-parts/header/entry-header.php'),(9209,'wp-content/themes/twentytwentyone/template-parts/header/excerpt-header.php'),(9210,'wp-content/themes/twentytwentyone/template-parts/header/site-branding.php'),(9211,'wp-content/themes/twentytwentyone/template-parts/header/site-header.php'),(9212,'wp-content/themes/twentytwentyone/template-parts/header/site-nav.php'),(9213,'wp-content/themes/twentytwentyone/template-parts/post/author-bio.php'),(9214,'wp-content/themes/twentytwentytwo/assets/fonts/LICENSE.md'),(9215,'wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Italic.otf.woff2'),(9216,'wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Italic.ttf.woff2'),(9217,'wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Roman.otf.woff2'),(9218,'wp-content/themes/twentytwentytwo/assets/fonts/SourceSerif4Variable-Roman.ttf.woff2'),(9219,'wp-content/themes/twentytwentytwo/assets/images/bird-on-black.jpg'),(9220,'wp-content/themes/twentytwentytwo/assets/images/bird-on-gray.jpg'),(9221,'wp-content/themes/twentytwentytwo/assets/images/bird-on-green.jpg'),(9222,'wp-content/themes/twentytwentytwo/assets/images/bird-on-salmon.jpg'),(9223,'wp-content/themes/twentytwentytwo/assets/images/divider-black.png'),(9224,'wp-content/themes/twentytwentytwo/assets/images/divider-white.png'),(9225,'wp-content/themes/twentytwentytwo/assets/images/ducks.jpg'),(9226,'wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-a.jpg'),(9227,'wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-b.jpg'),(9228,'wp-content/themes/twentytwentytwo/assets/images/flight-path-on-gray-c.jpg'),(9229,'wp-content/themes/twentytwentytwo/assets/images/flight-path-on-salmon.jpg'),(9230,'wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-a.png'),(9231,'wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-b.png'),(9232,'wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-c.png'),(9233,'wp-content/themes/twentytwentytwo/assets/images/flight-path-on-transparent-d.png'),(9234,'wp-content/themes/twentytwentytwo/assets/images/icon-binoculars.png'),(9235,'wp-content/themes/twentytwentytwo/assets/images/icon-bird.jpg'),(9236,'wp-content/themes/twentytwentytwo/assets/videos/birds.mp4'),(9237,'wp-content/themes/twentytwentytwo/functions.php'),(9238,'wp-content/themes/twentytwentytwo/inc/block-patterns.php'),(9239,'wp-content/themes/twentytwentytwo/inc/patterns/footer-about-title-logo.php'),(9240,'wp-content/themes/twentytwentytwo/inc/patterns/footer-blog.php'),(9241,'wp-content/themes/twentytwentytwo/inc/patterns/footer-dark.php'),(9242,'wp-content/themes/twentytwentytwo/inc/patterns/footer-default.php'),(9243,'wp-content/themes/twentytwentytwo/inc/patterns/footer-logo.php'),(9244,'wp-content/themes/twentytwentytwo/inc/patterns/footer-navigation-copyright.php'),(9245,'wp-content/themes/twentytwentytwo/inc/patterns/footer-navigation.php'),(9246,'wp-content/themes/twentytwentytwo/inc/patterns/footer-query-images-title-citation.php'),(9247,'wp-content/themes/twentytwentytwo/inc/patterns/footer-query-title-citation.php'),(9248,'wp-content/themes/twentytwentytwo/inc/patterns/footer-social-copyright.php'),(9249,'wp-content/themes/twentytwentytwo/inc/patterns/footer-title-tagline-social.php'),(9250,'wp-content/themes/twentytwentytwo/inc/patterns/general-divider-dark.php'),(9251,'wp-content/themes/twentytwentytwo/inc/patterns/general-divider-light.php'),(9252,'wp-content/themes/twentytwentytwo/inc/patterns/general-featured-posts.php'),(9253,'wp-content/themes/twentytwentytwo/inc/patterns/general-image-with-caption.php'),(9254,'wp-content/themes/twentytwentytwo/inc/patterns/general-large-list-names.php'),(9255,'wp-content/themes/twentytwentytwo/inc/patterns/general-layered-images-with-duotone.php'),(9256,'wp-content/themes/twentytwentytwo/inc/patterns/general-list-events.php'),(9257,'wp-content/themes/twentytwentytwo/inc/patterns/general-pricing-table.php'),(9258,'wp-content/themes/twentytwentytwo/inc/patterns/general-subscribe.php'),(9259,'wp-content/themes/twentytwentytwo/inc/patterns/general-two-images-text.php'),(9260,'wp-content/themes/twentytwentytwo/inc/patterns/general-video-header-details.php'),(9261,'wp-content/themes/twentytwentytwo/inc/patterns/general-video-trailer.php'),(9262,'wp-content/themes/twentytwentytwo/inc/patterns/general-wide-image-intro-buttons.php'),(9263,'wp-content/themes/twentytwentytwo/inc/patterns/header-centered-logo-black-background.php'),(9264,'wp-content/themes/twentytwentytwo/inc/patterns/header-centered-logo.php'),(9265,'wp-content/themes/twentytwentytwo/inc/patterns/header-centered-title-navigation-social.php'),(9266,'wp-content/themes/twentytwentytwo/inc/patterns/header-default.php'),(9267,'wp-content/themes/twentytwentytwo/inc/patterns/header-image-background-overlay.php'),(9268,'wp-content/themes/twentytwentytwo/inc/patterns/header-image-background.php'),(9269,'wp-content/themes/twentytwentytwo/inc/patterns/header-large-dark.php'),(9270,'wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-gray-background.php'),(9271,'wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-offset-tagline.php'),(9272,'wp-content/themes/twentytwentytwo/inc/patterns/header-logo-navigation-social-black-background.php'),(9273,'wp-content/themes/twentytwentytwo/inc/patterns/header-small-dark.php'),(9274,'wp-content/themes/twentytwentytwo/inc/patterns/header-stacked.php'),(9275,'wp-content/themes/twentytwentytwo/inc/patterns/header-text-only-green-background.php'),(9276,'wp-content/themes/twentytwentytwo/inc/patterns/header-text-only-salmon-background.php'),(9277,'wp-content/themes/twentytwentytwo/inc/patterns/header-text-only-with-tagline-black-background.php'),(9278,'wp-content/themes/twentytwentytwo/inc/patterns/header-title-and-button.php'),(9279,'wp-content/themes/twentytwentytwo/inc/patterns/header-title-navigation-social.php'),(9280,'wp-content/themes/twentytwentytwo/inc/patterns/header-with-tagline.php'),(9281,'wp-content/themes/twentytwentytwo/inc/patterns/hidden-404.php'),(9282,'wp-content/themes/twentytwentytwo/inc/patterns/hidden-bird.php'),(9283,'wp-content/themes/twentytwentytwo/inc/patterns/hidden-heading-and-bird.php'),(9284,'wp-content/themes/twentytwentytwo/inc/patterns/page-about-large-image-and-buttons.php'),(9285,'wp-content/themes/twentytwentytwo/inc/patterns/page-about-links-dark.php'),(9286,'wp-content/themes/twentytwentytwo/inc/patterns/page-about-links.php'),(9287,'wp-content/themes/twentytwentytwo/inc/patterns/page-about-media-left.php'),(9288,'wp-content/themes/twentytwentytwo/inc/patterns/page-about-media-right.php'),(9289,'wp-content/themes/twentytwentytwo/inc/patterns/page-about-simple-dark.php'),(9290,'wp-content/themes/twentytwentytwo/inc/patterns/page-about-solid-color.php'),(9291,'wp-content/themes/twentytwentytwo/inc/patterns/page-layout-image-and-text.php'),(9292,'wp-content/themes/twentytwentytwo/inc/patterns/page-layout-image-text-and-video.php'),(9293,'wp-content/themes/twentytwentytwo/inc/patterns/page-layout-two-columns.php'),(9294,'wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-blog-posts-right.php'),(9295,'wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-blog-posts.php'),(9296,'wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-grid-posts.php'),(9297,'wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-poster.php'),(9298,'wp-content/themes/twentytwentytwo/inc/patterns/query-default.php'),(9299,'wp-content/themes/twentytwentytwo/inc/patterns/query-grid.php'),(9300,'wp-content/themes/twentytwentytwo/inc/patterns/query-image-grid.php'),(9301,'wp-content/themes/twentytwentytwo/inc/patterns/query-irregular-grid.php'),(9302,'wp-content/themes/twentytwentytwo/inc/patterns/query-large-titles.php'),(9303,'wp-content/themes/twentytwentytwo/inc/patterns/query-simple-blog.php'),(9304,'wp-content/themes/twentytwentytwo/inc/patterns/query-text-grid.php'),(9305,'wp-content/themes/twentytwentytwo/index.php'),(9306,'wp-content/themes/twentytwentytwo/parts/footer.html'),(9307,'wp-content/themes/twentytwentytwo/parts/header-large-dark.html'),(9308,'wp-content/themes/twentytwentytwo/parts/header-small-dark.html'),(9309,'wp-content/themes/twentytwentytwo/parts/header.html'),(9310,'wp-content/themes/twentytwentytwo/readme.txt'),(9311,'wp-content/themes/twentytwentytwo/screenshot.png'),(9312,'wp-content/themes/twentytwentytwo/style.css'),(9313,'wp-content/themes/twentytwentytwo/templates/404.html'),(9314,'wp-content/themes/twentytwentytwo/templates/archive.html'),(9315,'wp-content/themes/twentytwentytwo/templates/blank.html'),(9316,'wp-content/themes/twentytwentytwo/templates/home.html'),(9317,'wp-content/themes/twentytwentytwo/templates/index.html'),(9318,'wp-content/themes/twentytwentytwo/templates/page-large-header.html'),(9319,'wp-content/themes/twentytwentytwo/templates/page-no-separators.html'),(9320,'wp-content/themes/twentytwentytwo/templates/page.html'),(9321,'wp-content/themes/twentytwentytwo/templates/search.html'),(9322,'wp-content/themes/twentytwentytwo/templates/single-no-separators.html'),(9323,'wp-content/themes/twentytwentytwo/templates/single.html'),(9324,'wp-content/themes/twentytwentytwo/theme.json'),(9325,'wp-content/uploads/wc-logs/index.html'),(9326,'wp-content/uploads/woocommerce_uploads/index.html'),(9327,'wp-content/wflogs/attack-data.php'),(9328,'wp-content/wflogs/config-livewaf.php'),(9329,'wp-content/wflogs/config-synced.php'),(9330,'wp-content/wflogs/config-transient.php'),(9331,'wp-content/wflogs/config.php'),(9332,'wp-content/wflogs/ips.php'),(9333,'wp-content/wflogs/rules.php'),(9334,'wp-content/wflogs/template.php'),(9335,'wp-cron.php'),(9336,'wp-includes/ID3/getid3.lib.php'),(9337,'wp-includes/ID3/getid3.php'),(9338,'wp-includes/ID3/license.commercial.txt'),(9339,'wp-includes/ID3/license.txt'),(9340,'wp-includes/ID3/module.audio-video.asf.php'),(9341,'wp-includes/ID3/module.audio-video.flv.php'),(9342,'wp-includes/ID3/module.audio-video.matroska.php'),(9343,'wp-includes/ID3/module.audio-video.quicktime.php'),(9344,'wp-includes/ID3/module.audio-video.riff.php'),(9345,'wp-includes/ID3/module.audio.ac3.php'),(9346,'wp-includes/ID3/module.audio.dts.php'),(9347,'wp-includes/ID3/module.audio.flac.php'),(9348,'wp-includes/ID3/module.audio.mp3.php'),(9349,'wp-includes/ID3/module.audio.ogg.php'),(9350,'wp-includes/ID3/module.tag.apetag.php'),(9351,'wp-includes/ID3/module.tag.id3v1.php'),(9352,'wp-includes/ID3/module.tag.id3v2.php'),(9353,'wp-includes/ID3/module.tag.lyrics3.php'),(9354,'wp-includes/ID3/readme.txt'),(9355,'wp-includes/IXR/class-IXR-base64.php'),(9356,'wp-includes/IXR/class-IXR-client.php'),(9357,'wp-includes/IXR/class-IXR-clientmulticall.php'),(9358,'wp-includes/IXR/class-IXR-date.php'),(9359,'wp-includes/IXR/class-IXR-error.php'),(9360,'wp-includes/IXR/class-IXR-introspectionserver.php'),(9361,'wp-includes/IXR/class-IXR-message.php'),(9362,'wp-includes/IXR/class-IXR-request.php'),(9363,'wp-includes/IXR/class-IXR-server.php'),(9364,'wp-includes/IXR/class-IXR-value.php'),(9365,'wp-includes/PHPMailer/Exception.php'),(9366,'wp-includes/PHPMailer/PHPMailer.php'),(9367,'wp-includes/PHPMailer/SMTP.php'),(9368,'wp-includes/Requests/Auth/Basic.php'),(9369,'wp-includes/Requests/Auth.php'),(9370,'wp-includes/Requests/Cookie/Jar.php'),(9371,'wp-includes/Requests/Cookie.php'),(9372,'wp-includes/Requests/Exception/HTTP/304.php'),(9373,'wp-includes/Requests/Exception/HTTP/305.php'),(9374,'wp-includes/Requests/Exception/HTTP/306.php'),(9375,'wp-includes/Requests/Exception/HTTP/400.php'),(9376,'wp-includes/Requests/Exception/HTTP/401.php'),(9377,'wp-includes/Requests/Exception/HTTP/402.php'),(9378,'wp-includes/Requests/Exception/HTTP/403.php'),(9379,'wp-includes/Requests/Exception/HTTP/404.php'),(9380,'wp-includes/Requests/Exception/HTTP/405.php'),(9381,'wp-includes/Requests/Exception/HTTP/406.php'),(9382,'wp-includes/Requests/Exception/HTTP/407.php'),(9383,'wp-includes/Requests/Exception/HTTP/408.php'),(9384,'wp-includes/Requests/Exception/HTTP/409.php'),(9385,'wp-includes/Requests/Exception/HTTP/410.php'),(9386,'wp-includes/Requests/Exception/HTTP/411.php'),(9387,'wp-includes/Requests/Exception/HTTP/412.php'),(9388,'wp-includes/Requests/Exception/HTTP/413.php'),(9389,'wp-includes/Requests/Exception/HTTP/414.php'),(9390,'wp-includes/Requests/Exception/HTTP/415.php'),(9391,'wp-includes/Requests/Exception/HTTP/416.php'),(9392,'wp-includes/Requests/Exception/HTTP/417.php'),(9393,'wp-includes/Requests/Exception/HTTP/418.php'),(9394,'wp-includes/Requests/Exception/HTTP/428.php'),(9395,'wp-includes/Requests/Exception/HTTP/429.php'),(9396,'wp-includes/Requests/Exception/HTTP/431.php'),(9397,'wp-includes/Requests/Exception/HTTP/500.php'),(9398,'wp-includes/Requests/Exception/HTTP/501.php'),(9399,'wp-includes/Requests/Exception/HTTP/502.php'),(9400,'wp-includes/Requests/Exception/HTTP/503.php'),(9401,'wp-includes/Requests/Exception/HTTP/504.php'),(9402,'wp-includes/Requests/Exception/HTTP/505.php'),(9403,'wp-includes/Requests/Exception/HTTP/511.php'),(9404,'wp-includes/Requests/Exception/HTTP/Unknown.php'),(9405,'wp-includes/Requests/Exception/HTTP.php'),(9406,'wp-includes/Requests/Exception/Transport/cURL.php'),(9407,'wp-includes/Requests/Exception/Transport.php'),(9408,'wp-includes/Requests/Exception.php'),(9409,'wp-includes/Requests/Hooker.php'),(9410,'wp-includes/Requests/Hooks.php'),(9411,'wp-includes/Requests/IDNAEncoder.php'),(9412,'wp-includes/Requests/IPv6.php'),(9413,'wp-includes/Requests/IRI.php'),(9414,'wp-includes/Requests/Proxy/HTTP.php'),(9415,'wp-includes/Requests/Proxy.php'),(9416,'wp-includes/Requests/Response/Headers.php'),(9417,'wp-includes/Requests/Response.php'),(9418,'wp-includes/Requests/SSL.php'),(9419,'wp-includes/Requests/Session.php'),(9420,'wp-includes/Requests/Transport/cURL.php'),(9421,'wp-includes/Requests/Transport/fsockopen.php'),(9422,'wp-includes/Requests/Transport.php'),(9423,'wp-includes/Requests/Utility/CaseInsensitiveDictionary.php'),(9424,'wp-includes/Requests/Utility/FilteredIterator.php'),(9425,'wp-includes/SimplePie/Author.php'),(9426,'wp-includes/SimplePie/Cache/Base.php'),(9427,'wp-includes/SimplePie/Cache/DB.php'),(9428,'wp-includes/SimplePie/Cache/File.php'),(9429,'wp-includes/SimplePie/Cache/Memcache.php'),(9430,'wp-includes/SimplePie/Cache/Memcached.php'),(9431,'wp-includes/SimplePie/Cache/MySQL.php'),(9432,'wp-includes/SimplePie/Cache/Redis.php'),(9433,'wp-includes/SimplePie/Cache.php'),(9434,'wp-includes/SimplePie/Caption.php'),(9435,'wp-includes/SimplePie/Category.php'),(9436,'wp-includes/SimplePie/Content/Type/Sniffer.php'),(9437,'wp-includes/SimplePie/Copyright.php'),(9438,'wp-includes/SimplePie/Core.php'),(9439,'wp-includes/SimplePie/Credit.php'),(9440,'wp-includes/SimplePie/Decode/HTML/Entities.php'),(9441,'wp-includes/SimplePie/Enclosure.php'),(9442,'wp-includes/SimplePie/Exception.php'),(9443,'wp-includes/SimplePie/File.php'),(9444,'wp-includes/SimplePie/HTTP/Parser.php'),(9445,'wp-includes/SimplePie/IRI.php'),(9446,'wp-includes/SimplePie/Item.php'),(9447,'wp-includes/SimplePie/Locator.php'),(9448,'wp-includes/SimplePie/Misc.php'),(9449,'wp-includes/SimplePie/Net/IPv6.php'),(9450,'wp-includes/SimplePie/Parse/Date.php'),(9451,'wp-includes/SimplePie/Parser.php'),(9452,'wp-includes/SimplePie/Rating.php'),(9453,'wp-includes/SimplePie/Registry.php'),(9454,'wp-includes/SimplePie/Restriction.php'),(9455,'wp-includes/SimplePie/Sanitize.php'),(9456,'wp-includes/SimplePie/Source.php'),(9457,'wp-includes/SimplePie/XML/Declaration/Parser.php'),(9458,'wp-includes/SimplePie/gzdecode.php'),(9459,'wp-includes/Text/Diff/Engine/native.php'),(9460,'wp-includes/Text/Diff/Engine/shell.php'),(9461,'wp-includes/Text/Diff/Engine/string.php'),(9462,'wp-includes/Text/Diff/Engine/xdiff.php'),(9463,'wp-includes/Text/Diff/Renderer/inline.php'),(9464,'wp-includes/Text/Diff/Renderer.php'),(9465,'wp-includes/Text/Diff.php'),(9466,'wp-includes/admin-bar.php'),(9467,'wp-includes/assets/script-loader-packages.php'),(9468,'wp-includes/atomlib.php'),(9469,'wp-includes/author-template.php'),(9470,'wp-includes/block-editor.php'),(9471,'wp-includes/block-i18n.json'),(9472,'wp-includes/block-patterns/query-grid-posts.php'),(9473,'wp-includes/block-patterns/query-large-title-posts.php'),(9474,'wp-includes/block-patterns/query-medium-posts.php'),(9475,'wp-includes/block-patterns/query-offset-posts.php'),(9476,'wp-includes/block-patterns/query-small-posts.php'),(9477,'wp-includes/block-patterns/query-standard-posts.php'),(9478,'wp-includes/block-patterns/social-links-shared-background-color.php'),(9479,'wp-includes/block-patterns.php'),(9480,'wp-includes/block-supports/align.php'),(9481,'wp-includes/block-supports/border.php'),(9482,'wp-includes/block-supports/colors.php'),(9483,'wp-includes/block-supports/custom-classname.php'),(9484,'wp-includes/block-supports/dimensions.php'),(9485,'wp-includes/block-supports/duotone.php'),(9486,'wp-includes/block-supports/elements.php'),(9487,'wp-includes/block-supports/generated-classname.php'),(9488,'wp-includes/block-supports/layout.php'),(9489,'wp-includes/block-supports/spacing.php'),(9490,'wp-includes/block-supports/typography.php'),(9491,'wp-includes/block-template-utils.php'),(9492,'wp-includes/block-template.php'),(9493,'wp-includes/blocks/archives/block.json'),(9494,'wp-includes/blocks/archives/editor-rtl.css'),(9495,'wp-includes/blocks/archives/editor-rtl.min.css'),(9496,'wp-includes/blocks/archives/editor.css'),(9497,'wp-includes/blocks/archives/editor.min.css'),(9498,'wp-includes/blocks/archives/style-rtl.css'),(9499,'wp-includes/blocks/archives/style-rtl.min.css'),(9500,'wp-includes/blocks/archives/style.css'),(9501,'wp-includes/blocks/archives/style.min.css'),(9502,'wp-includes/blocks/archives.php'),(9503,'wp-includes/blocks/audio/block.json'),(9504,'wp-includes/blocks/audio/editor-rtl.css'),(9505,'wp-includes/blocks/audio/editor-rtl.min.css'),(9506,'wp-includes/blocks/audio/editor.css'),(9507,'wp-includes/blocks/audio/editor.min.css'),(9508,'wp-includes/blocks/audio/style-rtl.css'),(9509,'wp-includes/blocks/audio/style-rtl.min.css'),(9510,'wp-includes/blocks/audio/style.css'),(9511,'wp-includes/blocks/audio/style.min.css'),(9512,'wp-includes/blocks/audio/theme-rtl.css'),(9513,'wp-includes/blocks/audio/theme-rtl.min.css'),(9514,'wp-includes/blocks/audio/theme.css'),(9515,'wp-includes/blocks/audio/theme.min.css'),(9516,'wp-includes/blocks/block/block.json'),(9517,'wp-includes/blocks/block/editor-rtl.css'),(9518,'wp-includes/blocks/block/editor-rtl.min.css'),(9519,'wp-includes/blocks/block/editor.css'),(9520,'wp-includes/blocks/block/editor.min.css'),(9521,'wp-includes/blocks/block.php'),(9522,'wp-includes/blocks/button/block.json'),(9523,'wp-includes/blocks/button/editor-rtl.css'),(9524,'wp-includes/blocks/button/editor-rtl.min.css'),(9525,'wp-includes/blocks/button/editor.css'),(9526,'wp-includes/blocks/button/editor.min.css'),(9527,'wp-includes/blocks/button/style-rtl.css'),(9528,'wp-includes/blocks/button/style-rtl.min.css'),(9529,'wp-includes/blocks/button/style.css'),(9530,'wp-includes/blocks/button/style.min.css'),(9531,'wp-includes/blocks/buttons/block.json'),(9532,'wp-includes/blocks/buttons/editor-rtl.css'),(9533,'wp-includes/blocks/buttons/editor-rtl.min.css'),(9534,'wp-includes/blocks/buttons/editor.css'),(9535,'wp-includes/blocks/buttons/editor.min.css'),(9536,'wp-includes/blocks/buttons/style-rtl.css'),(9537,'wp-includes/blocks/buttons/style-rtl.min.css'),(9538,'wp-includes/blocks/buttons/style.css'),(9539,'wp-includes/blocks/buttons/style.min.css'),(9540,'wp-includes/blocks/calendar/block.json'),(9541,'wp-includes/blocks/calendar/style-rtl.css'),(9542,'wp-includes/blocks/calendar/style-rtl.min.css'),(9543,'wp-includes/blocks/calendar/style.css'),(9544,'wp-includes/blocks/calendar/style.min.css'),(9545,'wp-includes/blocks/calendar.php'),(9546,'wp-includes/blocks/categories/block.json'),(9547,'wp-includes/blocks/categories/editor-rtl.css'),(9548,'wp-includes/blocks/categories/editor-rtl.min.css'),(9549,'wp-includes/blocks/categories/editor.css'),(9550,'wp-includes/blocks/categories/editor.min.css'),(9551,'wp-includes/blocks/categories/style-rtl.css'),(9552,'wp-includes/blocks/categories/style-rtl.min.css'),(9553,'wp-includes/blocks/categories/style.css'),(9554,'wp-includes/blocks/categories/style.min.css'),(9555,'wp-includes/blocks/categories.php'),(9556,'wp-includes/blocks/code/block.json'),(9557,'wp-includes/blocks/code/style-rtl.css'),(9558,'wp-includes/blocks/code/style-rtl.min.css'),(9559,'wp-includes/blocks/code/style.css'),(9560,'wp-includes/blocks/code/style.min.css'),(9561,'wp-includes/blocks/code/theme-rtl.css'),(9562,'wp-includes/blocks/code/theme-rtl.min.css'),(9563,'wp-includes/blocks/code/theme.css'),(9564,'wp-includes/blocks/code/theme.min.css'),(9565,'wp-includes/blocks/column/block.json'),(9566,'wp-includes/blocks/columns/block.json'),(9567,'wp-includes/blocks/columns/editor-rtl.css'),(9568,'wp-includes/blocks/columns/editor-rtl.min.css'),(9569,'wp-includes/blocks/columns/editor.css'),(9570,'wp-includes/blocks/columns/editor.min.css'),(9571,'wp-includes/blocks/columns/style-rtl.css'),(9572,'wp-includes/blocks/columns/style-rtl.min.css'),(9573,'wp-includes/blocks/columns/style.css'),(9574,'wp-includes/blocks/columns/style.min.css'),(9575,'wp-includes/blocks/cover/block.json'),(9576,'wp-includes/blocks/cover/editor-rtl.css'),(9577,'wp-includes/blocks/cover/editor-rtl.min.css'),(9578,'wp-includes/blocks/cover/editor.css'),(9579,'wp-includes/blocks/cover/editor.min.css'),(9580,'wp-includes/blocks/cover/style-rtl.css'),(9581,'wp-includes/blocks/cover/style-rtl.min.css'),(9582,'wp-includes/blocks/cover/style.css'),(9583,'wp-includes/blocks/cover/style.min.css'),(9584,'wp-includes/blocks/embed/block.json'),(9585,'wp-includes/blocks/embed/editor-rtl.css'),(9586,'wp-includes/blocks/embed/editor-rtl.min.css'),(9587,'wp-includes/blocks/embed/editor.css'),(9588,'wp-includes/blocks/embed/editor.min.css'),(9589,'wp-includes/blocks/embed/style-rtl.css'),(9590,'wp-includes/blocks/embed/style-rtl.min.css'),(9591,'wp-includes/blocks/embed/style.css'),(9592,'wp-includes/blocks/embed/style.min.css'),(9593,'wp-includes/blocks/embed/theme-rtl.css'),(9594,'wp-includes/blocks/embed/theme-rtl.min.css'),(9595,'wp-includes/blocks/embed/theme.css'),(9596,'wp-includes/blocks/embed/theme.min.css'),(9597,'wp-includes/blocks/file/block.json'),(9598,'wp-includes/blocks/file/editor-rtl.css'),(9599,'wp-includes/blocks/file/editor-rtl.min.css'),(9600,'wp-includes/blocks/file/editor.css'),(9601,'wp-includes/blocks/file/editor.min.css'),(9602,'wp-includes/blocks/file/style-rtl.css'),(9603,'wp-includes/blocks/file/style-rtl.min.css'),(9604,'wp-includes/blocks/file/style.css'),(9605,'wp-includes/blocks/file/style.min.css'),(9606,'wp-includes/blocks/file/view.asset.php'),(9607,'wp-includes/blocks/file/view.js'),(9608,'wp-includes/blocks/file/view.min.asset.php'),(9609,'wp-includes/blocks/file/view.min.js'),(9610,'wp-includes/blocks/file.php'),(9611,'wp-includes/blocks/freeform/block.json'),(9612,'wp-includes/blocks/freeform/editor-rtl.css'),(9613,'wp-includes/blocks/freeform/editor-rtl.min.css'),(9614,'wp-includes/blocks/freeform/editor.css'),(9615,'wp-includes/blocks/freeform/editor.min.css'),(9616,'wp-includes/blocks/gallery/block.json'),(9617,'wp-includes/blocks/gallery/editor-rtl.css'),(9618,'wp-includes/blocks/gallery/editor-rtl.min.css'),(9619,'wp-includes/blocks/gallery/editor.css'),(9620,'wp-includes/blocks/gallery/editor.min.css'),(9621,'wp-includes/blocks/gallery/style-rtl.css'),(9622,'wp-includes/blocks/gallery/style-rtl.min.css'),(9623,'wp-includes/blocks/gallery/style.css'),(9624,'wp-includes/blocks/gallery/style.min.css'),(9625,'wp-includes/blocks/gallery/theme-rtl.css'),(9626,'wp-includes/blocks/gallery/theme-rtl.min.css'),(9627,'wp-includes/blocks/gallery/theme.css'),(9628,'wp-includes/blocks/gallery/theme.min.css'),(9629,'wp-includes/blocks/gallery.php'),(9630,'wp-includes/blocks/group/block.json'),(9631,'wp-includes/blocks/group/editor-rtl.css'),(9632,'wp-includes/blocks/group/editor-rtl.min.css'),(9633,'wp-includes/blocks/group/editor.css'),(9634,'wp-includes/blocks/group/editor.min.css'),(9635,'wp-includes/blocks/group/style-rtl.css'),(9636,'wp-includes/blocks/group/style-rtl.min.css'),(9637,'wp-includes/blocks/group/style.css'),(9638,'wp-includes/blocks/group/style.min.css'),(9639,'wp-includes/blocks/group/theme-rtl.css'),(9640,'wp-includes/blocks/group/theme-rtl.min.css'),(9641,'wp-includes/blocks/group/theme.css'),(9642,'wp-includes/blocks/group/theme.min.css'),(9643,'wp-includes/blocks/heading/block.json'),(9644,'wp-includes/blocks/heading/style-rtl.css'),(9645,'wp-includes/blocks/heading/style-rtl.min.css'),(9646,'wp-includes/blocks/heading/style.css'),(9647,'wp-includes/blocks/heading/style.min.css'),(9648,'wp-includes/blocks/html/block.json'),(9649,'wp-includes/blocks/html/editor-rtl.css'),(9650,'wp-includes/blocks/html/editor-rtl.min.css'),(9651,'wp-includes/blocks/html/editor.css'),(9652,'wp-includes/blocks/html/editor.min.css'),(9653,'wp-includes/blocks/image/block.json'),(9654,'wp-includes/blocks/image/editor-rtl.css'),(9655,'wp-includes/blocks/image/editor-rtl.min.css'),(9656,'wp-includes/blocks/image/editor.css'),(9657,'wp-includes/blocks/image/editor.min.css'),(9658,'wp-includes/blocks/image/style-rtl.css'),(9659,'wp-includes/blocks/image/style-rtl.min.css'),(9660,'wp-includes/blocks/image/style.css'),(9661,'wp-includes/blocks/image/style.min.css'),(9662,'wp-includes/blocks/image/theme-rtl.css'),(9663,'wp-includes/blocks/image/theme-rtl.min.css'),(9664,'wp-includes/blocks/image/theme.css'),(9665,'wp-includes/blocks/image/theme.min.css'),(9666,'wp-includes/blocks/image.php'),(9667,'wp-includes/blocks/index.php'),(9668,'wp-includes/blocks/latest-comments/block.json'),(9669,'wp-includes/blocks/latest-comments/style-rtl.css'),(9670,'wp-includes/blocks/latest-comments/style-rtl.min.css'),(9671,'wp-includes/blocks/latest-comments/style.css'),(9672,'wp-includes/blocks/latest-comments/style.min.css'),(9673,'wp-includes/blocks/latest-comments.php'),(9674,'wp-includes/blocks/latest-posts/block.json'),(9675,'wp-includes/blocks/latest-posts/editor-rtl.css'),(9676,'wp-includes/blocks/latest-posts/editor-rtl.min.css'),(9677,'wp-includes/blocks/latest-posts/editor.css'),(9678,'wp-includes/blocks/latest-posts/editor.min.css'),(9679,'wp-includes/blocks/latest-posts/style-rtl.css'),(9680,'wp-includes/blocks/latest-posts/style-rtl.min.css'),(9681,'wp-includes/blocks/latest-posts/style.css'),(9682,'wp-includes/blocks/latest-posts/style.min.css'),(9683,'wp-includes/blocks/latest-posts.php'),(9684,'wp-includes/blocks/legacy-widget/block.json'),(9685,'wp-includes/blocks/legacy-widget.php'),(9686,'wp-includes/blocks/list/block.json'),(9687,'wp-includes/blocks/list/style-rtl.css'),(9688,'wp-includes/blocks/list/style-rtl.min.css'),(9689,'wp-includes/blocks/list/style.css'),(9690,'wp-includes/blocks/list/style.min.css'),(9691,'wp-includes/blocks/loginout/block.json'),(9692,'wp-includes/blocks/loginout.php'),(9693,'wp-includes/blocks/media-text/block.json'),(9694,'wp-includes/blocks/media-text/editor-rtl.css'),(9695,'wp-includes/blocks/media-text/editor-rtl.min.css'),(9696,'wp-includes/blocks/media-text/editor.css'),(9697,'wp-includes/blocks/media-text/editor.min.css'),(9698,'wp-includes/blocks/media-text/style-rtl.css'),(9699,'wp-includes/blocks/media-text/style-rtl.min.css'),(9700,'wp-includes/blocks/media-text/style.css'),(9701,'wp-includes/blocks/media-text/style.min.css'),(9702,'wp-includes/blocks/missing/block.json'),(9703,'wp-includes/blocks/more/block.json'),(9704,'wp-includes/blocks/more/editor-rtl.css'),(9705,'wp-includes/blocks/more/editor-rtl.min.css'),(9706,'wp-includes/blocks/more/editor.css'),(9707,'wp-includes/blocks/more/editor.min.css'),(9708,'wp-includes/blocks/navigation/block.json'),(9709,'wp-includes/blocks/navigation/editor-rtl.css'),(9710,'wp-includes/blocks/navigation/editor-rtl.min.css'),(9711,'wp-includes/blocks/navigation/editor.css'),(9712,'wp-includes/blocks/navigation/editor.min.css'),(9713,'wp-includes/blocks/navigation/style-rtl.css'),(9714,'wp-includes/blocks/navigation/style-rtl.min.css'),(9715,'wp-includes/blocks/navigation/style.css'),(9716,'wp-includes/blocks/navigation/style.min.css'),(9717,'wp-includes/blocks/navigation/view.asset.php'),(9718,'wp-includes/blocks/navigation/view.js'),(9719,'wp-includes/blocks/navigation/view.min.asset.php'),(9720,'wp-includes/blocks/navigation/view.min.js'),(9721,'wp-includes/blocks/navigation-link/block.json'),(9722,'wp-includes/blocks/navigation-link/editor-rtl.css'),(9723,'wp-includes/blocks/navigation-link/editor-rtl.min.css'),(9724,'wp-includes/blocks/navigation-link/editor.css'),(9725,'wp-includes/blocks/navigation-link/editor.min.css'),(9726,'wp-includes/blocks/navigation-link/style-rtl.css'),(9727,'wp-includes/blocks/navigation-link/style-rtl.min.css'),(9728,'wp-includes/blocks/navigation-link/style.css'),(9729,'wp-includes/blocks/navigation-link/style.min.css'),(9730,'wp-includes/blocks/navigation-link.php'),(9731,'wp-includes/blocks/navigation-submenu/block.json'),(9732,'wp-includes/blocks/navigation-submenu/editor-rtl.css'),(9733,'wp-includes/blocks/navigation-submenu/editor-rtl.min.css'),(9734,'wp-includes/blocks/navigation-submenu/editor.css'),(9735,'wp-includes/blocks/navigation-submenu/editor.min.css'),(9736,'wp-includes/blocks/navigation-submenu.php'),(9737,'wp-includes/blocks/navigation.php'),(9738,'wp-includes/blocks/nextpage/block.json'),(9739,'wp-includes/blocks/nextpage/editor-rtl.css'),(9740,'wp-includes/blocks/nextpage/editor-rtl.min.css'),(9741,'wp-includes/blocks/nextpage/editor.css'),(9742,'wp-includes/blocks/nextpage/editor.min.css'),(9743,'wp-includes/blocks/page-list/block.json'),(9744,'wp-includes/blocks/page-list/editor-rtl.css'),(9745,'wp-includes/blocks/page-list/editor-rtl.min.css'),(9746,'wp-includes/blocks/page-list/editor.css'),(9747,'wp-includes/blocks/page-list/editor.min.css'),(9748,'wp-includes/blocks/page-list/style-rtl.css'),(9749,'wp-includes/blocks/page-list/style-rtl.min.css'),(9750,'wp-includes/blocks/page-list/style.css'),(9751,'wp-includes/blocks/page-list/style.min.css'),(9752,'wp-includes/blocks/page-list.php'),(9753,'wp-includes/blocks/paragraph/block.json'),(9754,'wp-includes/blocks/paragraph/editor-rtl.css'),(9755,'wp-includes/blocks/paragraph/editor-rtl.min.css'),(9756,'wp-includes/blocks/paragraph/editor.css'),(9757,'wp-includes/blocks/paragraph/editor.min.css'),(9758,'wp-includes/blocks/paragraph/style-rtl.css'),(9759,'wp-includes/blocks/paragraph/style-rtl.min.css'),(9760,'wp-includes/blocks/paragraph/style.css'),(9761,'wp-includes/blocks/paragraph/style.min.css'),(9762,'wp-includes/blocks/pattern/block.json'),(9763,'wp-includes/blocks/pattern.php'),(9764,'wp-includes/blocks/post-author/block.json'),(9765,'wp-includes/blocks/post-author/style-rtl.css'),(9766,'wp-includes/blocks/post-author/style-rtl.min.css'),(9767,'wp-includes/blocks/post-author/style.css'),(9768,'wp-includes/blocks/post-author/style.min.css'),(9769,'wp-includes/blocks/post-author.php'),(9770,'wp-includes/blocks/post-comments/block.json'),(9771,'wp-includes/blocks/post-comments/style-rtl.css'),(9772,'wp-includes/blocks/post-comments/style-rtl.min.css'),(9773,'wp-includes/blocks/post-comments/style.css'),(9774,'wp-includes/blocks/post-comments/style.min.css'),(9775,'wp-includes/blocks/post-comments.php'),(9776,'wp-includes/blocks/post-content/block.json'),(9777,'wp-includes/blocks/post-content.php'),(9778,'wp-includes/blocks/post-date/block.json'),(9779,'wp-includes/blocks/post-date.php'),(9780,'wp-includes/blocks/post-excerpt/block.json'),(9781,'wp-includes/blocks/post-excerpt/editor-rtl.css'),(9782,'wp-includes/blocks/post-excerpt/editor-rtl.min.css'),(9783,'wp-includes/blocks/post-excerpt/editor.css'),(9784,'wp-includes/blocks/post-excerpt/editor.min.css'),(9785,'wp-includes/blocks/post-excerpt/style-rtl.css'),(9786,'wp-includes/blocks/post-excerpt/style-rtl.min.css'),(9787,'wp-includes/blocks/post-excerpt/style.css'),(9788,'wp-includes/blocks/post-excerpt/style.min.css'),(9789,'wp-includes/blocks/post-excerpt.php'),(9790,'wp-includes/blocks/post-featured-image/block.json'),(9791,'wp-includes/blocks/post-featured-image/editor-rtl.css'),(9792,'wp-includes/blocks/post-featured-image/editor-rtl.min.css'),(9793,'wp-includes/blocks/post-featured-image/editor.css'),(9794,'wp-includes/blocks/post-featured-image/editor.min.css'),(9795,'wp-includes/blocks/post-featured-image/style-rtl.css'),(9796,'wp-includes/blocks/post-featured-image/style-rtl.min.css'),(9797,'wp-includes/blocks/post-featured-image/style.css'),(9798,'wp-includes/blocks/post-featured-image/style.min.css'),(9799,'wp-includes/blocks/post-featured-image.php'),(9800,'wp-includes/blocks/post-navigation-link/block.json'),(9801,'wp-includes/blocks/post-navigation-link.php'),(9802,'wp-includes/blocks/post-template/block.json'),(9803,'wp-includes/blocks/post-template/editor-rtl.css'),(9804,'wp-includes/blocks/post-template/editor-rtl.min.css'),(9805,'wp-includes/blocks/post-template/editor.css'),(9806,'wp-includes/blocks/post-template/editor.min.css'),(9807,'wp-includes/blocks/post-template/style-rtl.css'),(9808,'wp-includes/blocks/post-template/style-rtl.min.css'),(9809,'wp-includes/blocks/post-template/style.css'),(9810,'wp-includes/blocks/post-template/style.min.css'),(9811,'wp-includes/blocks/post-template.php'),(9812,'wp-includes/blocks/post-terms/block.json'),(9813,'wp-includes/blocks/post-terms/style-rtl.css'),(9814,'wp-includes/blocks/post-terms/style-rtl.min.css'),(9815,'wp-includes/blocks/post-terms/style.css'),(9816,'wp-includes/blocks/post-terms/style.min.css'),(9817,'wp-includes/blocks/post-terms.php'),(9818,'wp-includes/blocks/post-title/block.json'),(9819,'wp-includes/blocks/post-title/style-rtl.css'),(9820,'wp-includes/blocks/post-title/style-rtl.min.css'),(9821,'wp-includes/blocks/post-title/style.css'),(9822,'wp-includes/blocks/post-title/style.min.css'),(9823,'wp-includes/blocks/post-title.php'),(9824,'wp-includes/blocks/preformatted/block.json'),(9825,'wp-includes/blocks/preformatted/style-rtl.css'),(9826,'wp-includes/blocks/preformatted/style-rtl.min.css'),(9827,'wp-includes/blocks/preformatted/style.css'),(9828,'wp-includes/blocks/preformatted/style.min.css'),(9829,'wp-includes/blocks/pullquote/block.json'),(9830,'wp-includes/blocks/pullquote/editor-rtl.css'),(9831,'wp-includes/blocks/pullquote/editor-rtl.min.css'),(9832,'wp-includes/blocks/pullquote/editor.css'),(9833,'wp-includes/blocks/pullquote/editor.min.css'),(9834,'wp-includes/blocks/pullquote/style-rtl.css'),(9835,'wp-includes/blocks/pullquote/style-rtl.min.css'),(9836,'wp-includes/blocks/pullquote/style.css'),(9837,'wp-includes/blocks/pullquote/style.min.css'),(9838,'wp-includes/blocks/pullquote/theme-rtl.css'),(9839,'wp-includes/blocks/pullquote/theme-rtl.min.css'),(9840,'wp-includes/blocks/pullquote/theme.css'),(9841,'wp-includes/blocks/pullquote/theme.min.css'),(9842,'wp-includes/blocks/query/block.json'),(9843,'wp-includes/blocks/query/editor-rtl.css'),(9844,'wp-includes/blocks/query/editor-rtl.min.css'),(9845,'wp-includes/blocks/query/editor.css'),(9846,'wp-includes/blocks/query/editor.min.css'),(9847,'wp-includes/blocks/query-pagination/block.json'),(9848,'wp-includes/blocks/query-pagination/editor-rtl.css'),(9849,'wp-includes/blocks/query-pagination/editor-rtl.min.css'),(9850,'wp-includes/blocks/query-pagination/editor.css'),(9851,'wp-includes/blocks/query-pagination/editor.min.css'),(9852,'wp-includes/blocks/query-pagination/style-rtl.css'),(9853,'wp-includes/blocks/query-pagination/style-rtl.min.css'),(9854,'wp-includes/blocks/query-pagination/style.css'),(9855,'wp-includes/blocks/query-pagination/style.min.css'),(9856,'wp-includes/blocks/query-pagination-next/block.json'),(9857,'wp-includes/blocks/query-pagination-next.php'),(9858,'wp-includes/blocks/query-pagination-numbers/block.json'),(9859,'wp-includes/blocks/query-pagination-numbers/editor-rtl.css'),(9860,'wp-includes/blocks/query-pagination-numbers/editor-rtl.min.css'),(9861,'wp-includes/blocks/query-pagination-numbers/editor.css'),(9862,'wp-includes/blocks/query-pagination-numbers/editor.min.css'),(9863,'wp-includes/blocks/query-pagination-numbers.php'),(9864,'wp-includes/blocks/query-pagination-previous/block.json'),(9865,'wp-includes/blocks/query-pagination-previous.php'),(9866,'wp-includes/blocks/query-pagination.php'),(9867,'wp-includes/blocks/query-title/block.json'),(9868,'wp-includes/blocks/query-title.php'),(9869,'wp-includes/blocks/query.php'),(9870,'wp-includes/blocks/quote/block.json'),(9871,'wp-includes/blocks/quote/style-rtl.css'),(9872,'wp-includes/blocks/quote/style-rtl.min.css'),(9873,'wp-includes/blocks/quote/style.css'),(9874,'wp-includes/blocks/quote/style.min.css'),(9875,'wp-includes/blocks/quote/theme-rtl.css'),(9876,'wp-includes/blocks/quote/theme-rtl.min.css'),(9877,'wp-includes/blocks/quote/theme.css'),(9878,'wp-includes/blocks/quote/theme.min.css'),(9879,'wp-includes/blocks/rss/block.json'),(9880,'wp-includes/blocks/rss/editor-rtl.css'),(9881,'wp-includes/blocks/rss/editor-rtl.min.css'),(9882,'wp-includes/blocks/rss/editor.css'),(9883,'wp-includes/blocks/rss/editor.min.css'),(9884,'wp-includes/blocks/rss/style-rtl.css'),(9885,'wp-includes/blocks/rss/style-rtl.min.css'),(9886,'wp-includes/blocks/rss/style.css'),(9887,'wp-includes/blocks/rss/style.min.css'),(9888,'wp-includes/blocks/rss.php'),(9889,'wp-includes/blocks/search/block.json'),(9890,'wp-includes/blocks/search/editor-rtl.css'),(9891,'wp-includes/blocks/search/editor-rtl.min.css'),(9892,'wp-includes/blocks/search/editor.css'),(9893,'wp-includes/blocks/search/editor.min.css'),(9894,'wp-includes/blocks/search/style-rtl.css'),(9895,'wp-includes/blocks/search/style-rtl.min.css'),(9896,'wp-includes/blocks/search/style.css'),(9897,'wp-includes/blocks/search/style.min.css'),(9898,'wp-includes/blocks/search/theme-rtl.css'),(9899,'wp-includes/blocks/search/theme-rtl.min.css'),(9900,'wp-includes/blocks/search/theme.css'),(9901,'wp-includes/blocks/search/theme.min.css'),(9902,'wp-includes/blocks/search.php'),(9903,'wp-includes/blocks/separator/block.json'),(9904,'wp-includes/blocks/separator/editor-rtl.css'),(9905,'wp-includes/blocks/separator/editor-rtl.min.css'),(9906,'wp-includes/blocks/separator/editor.css'),(9907,'wp-includes/blocks/separator/editor.min.css'),(9908,'wp-includes/blocks/separator/style-rtl.css'),(9909,'wp-includes/blocks/separator/style-rtl.min.css'),(9910,'wp-includes/blocks/separator/style.css'),(9911,'wp-includes/blocks/separator/style.min.css'),(9912,'wp-includes/blocks/separator/theme-rtl.css'),(9913,'wp-includes/blocks/separator/theme-rtl.min.css'),(9914,'wp-includes/blocks/separator/theme.css'),(9915,'wp-includes/blocks/separator/theme.min.css'),(9916,'wp-includes/blocks/shortcode/block.json'),(9917,'wp-includes/blocks/shortcode/editor-rtl.css'),(9918,'wp-includes/blocks/shortcode/editor-rtl.min.css'),(9919,'wp-includes/blocks/shortcode/editor.css'),(9920,'wp-includes/blocks/shortcode/editor.min.css'),(9921,'wp-includes/blocks/shortcode.php'),(9922,'wp-includes/blocks/site-logo/block.json'),(9923,'wp-includes/blocks/site-logo/editor-rtl.css'),(9924,'wp-includes/blocks/site-logo/editor-rtl.min.css'),(9925,'wp-includes/blocks/site-logo/editor.css'),(9926,'wp-includes/blocks/site-logo/editor.min.css'),(9927,'wp-includes/blocks/site-logo/style-rtl.css'),(9928,'wp-includes/blocks/site-logo/style-rtl.min.css'),(9929,'wp-includes/blocks/site-logo/style.css'),(9930,'wp-includes/blocks/site-logo/style.min.css'),(9931,'wp-includes/blocks/site-logo.php'),(9932,'wp-includes/blocks/site-tagline/block.json'),(9933,'wp-includes/blocks/site-tagline/editor-rtl.css'),(9934,'wp-includes/blocks/site-tagline/editor-rtl.min.css'),(9935,'wp-includes/blocks/site-tagline/editor.css'),(9936,'wp-includes/blocks/site-tagline/editor.min.css'),(9937,'wp-includes/blocks/site-tagline.php'),(9938,'wp-includes/blocks/site-title/block.json'),(9939,'wp-includes/blocks/site-title/editor-rtl.css'),(9940,'wp-includes/blocks/site-title/editor-rtl.min.css'),(9941,'wp-includes/blocks/site-title/editor.css'),(9942,'wp-includes/blocks/site-title/editor.min.css'),(9943,'wp-includes/blocks/site-title.php'),(9944,'wp-includes/blocks/social-link/block.json'),(9945,'wp-includes/blocks/social-link/editor-rtl.css'),(9946,'wp-includes/blocks/social-link/editor-rtl.min.css'),(9947,'wp-includes/blocks/social-link/editor.css'),(9948,'wp-includes/blocks/social-link/editor.min.css'),(9949,'wp-includes/blocks/social-link.php'),(9950,'wp-includes/blocks/social-links/block.json'),(9951,'wp-includes/blocks/social-links/editor-rtl.css'),(9952,'wp-includes/blocks/social-links/editor-rtl.min.css'),(9953,'wp-includes/blocks/social-links/editor.css'),(9954,'wp-includes/blocks/social-links/editor.min.css'),(9955,'wp-includes/blocks/social-links/style-rtl.css'),(9956,'wp-includes/blocks/social-links/style-rtl.min.css'),(9957,'wp-includes/blocks/social-links/style.css'),(9958,'wp-includes/blocks/social-links/style.min.css'),(9959,'wp-includes/blocks/spacer/block.json'),(9960,'wp-includes/blocks/spacer/editor-rtl.css'),(9961,'wp-includes/blocks/spacer/editor-rtl.min.css'),(9962,'wp-includes/blocks/spacer/editor.css'),(9963,'wp-includes/blocks/spacer/editor.min.css'),(9964,'wp-includes/blocks/spacer/style-rtl.css'),(9965,'wp-includes/blocks/spacer/style-rtl.min.css'),(9966,'wp-includes/blocks/spacer/style.css'),(9967,'wp-includes/blocks/spacer/style.min.css'),(9968,'wp-includes/blocks/table/block.json'),(9969,'wp-includes/blocks/table/editor-rtl.css'),(9970,'wp-includes/blocks/table/editor-rtl.min.css'),(9971,'wp-includes/blocks/table/editor.css'),(9972,'wp-includes/blocks/table/editor.min.css'),(9973,'wp-includes/blocks/table/style-rtl.css'),(9974,'wp-includes/blocks/table/style-rtl.min.css'),(9975,'wp-includes/blocks/table/style.css'),(9976,'wp-includes/blocks/table/style.min.css'),(9977,'wp-includes/blocks/table/theme-rtl.css'),(9978,'wp-includes/blocks/table/theme-rtl.min.css'),(9979,'wp-includes/blocks/table/theme.css'),(9980,'wp-includes/blocks/table/theme.min.css'),(9981,'wp-includes/blocks/tag-cloud/block.json'),(9982,'wp-includes/blocks/tag-cloud/style-rtl.css'),(9983,'wp-includes/blocks/tag-cloud/style-rtl.min.css'),(9984,'wp-includes/blocks/tag-cloud/style.css'),(9985,'wp-includes/blocks/tag-cloud/style.min.css'),(9986,'wp-includes/blocks/tag-cloud.php'),(9987,'wp-includes/blocks/template-part/block.json'),(9988,'wp-includes/blocks/template-part/editor-rtl.css'),(9989,'wp-includes/blocks/template-part/editor-rtl.min.css'),(9990,'wp-includes/blocks/template-part/editor.css'),(9991,'wp-includes/blocks/template-part/editor.min.css'),(9992,'wp-includes/blocks/template-part/theme-rtl.css'),(9993,'wp-includes/blocks/template-part/theme-rtl.min.css'),(9994,'wp-includes/blocks/template-part/theme.css'),(9995,'wp-includes/blocks/template-part/theme.min.css'),(9996,'wp-includes/blocks/template-part.php'),(9997,'wp-includes/blocks/term-description/block.json'),(9998,'wp-includes/blocks/term-description.php'),(9999,'wp-includes/blocks/text-columns/block.json'),(10000,'wp-includes/blocks/text-columns/editor-rtl.css'),(10001,'wp-includes/blocks/text-columns/editor-rtl.min.css'),(10002,'wp-includes/blocks/text-columns/editor.css'),(10003,'wp-includes/blocks/text-columns/editor.min.css'),(10004,'wp-includes/blocks/text-columns/style-rtl.css'),(10005,'wp-includes/blocks/text-columns/style-rtl.min.css'),(10006,'wp-includes/blocks/text-columns/style.css'),(10007,'wp-includes/blocks/text-columns/style.min.css'),(10008,'wp-includes/blocks/verse/block.json'),(10009,'wp-includes/blocks/verse/style-rtl.css'),(10010,'wp-includes/blocks/verse/style-rtl.min.css'),(10011,'wp-includes/blocks/verse/style.css'),(10012,'wp-includes/blocks/verse/style.min.css'),(10013,'wp-includes/blocks/video/block.json'),(10014,'wp-includes/blocks/video/editor-rtl.css'),(10015,'wp-includes/blocks/video/editor-rtl.min.css'),(10016,'wp-includes/blocks/video/editor.css'),(10017,'wp-includes/blocks/video/editor.min.css'),(10018,'wp-includes/blocks/video/style-rtl.css'),(10019,'wp-includes/blocks/video/style-rtl.min.css'),(10020,'wp-includes/blocks/video/style.css'),(10021,'wp-includes/blocks/video/style.min.css'),(10022,'wp-includes/blocks/video/theme-rtl.css'),(10023,'wp-includes/blocks/video/theme-rtl.min.css'),(10024,'wp-includes/blocks/video/theme.css'),(10025,'wp-includes/blocks/video/theme.min.css'),(10026,'wp-includes/blocks/widget-group/block.json'),(10027,'wp-includes/blocks/widget-group.php'),(10028,'wp-includes/blocks.php'),(10029,'wp-includes/bookmark-template.php'),(10030,'wp-includes/bookmark.php'),(10031,'wp-includes/cache-compat.php'),(10032,'wp-includes/cache.php'),(10033,'wp-includes/canonical.php'),(10034,'wp-includes/capabilities.php'),(10035,'wp-includes/category-template.php'),(10036,'wp-includes/category.php'),(10037,'wp-includes/certificates/ca-bundle.crt'),(10038,'wp-includes/class-IXR.php'),(10039,'wp-includes/class-feed.php'),(10040,'wp-includes/class-http.php'),(10041,'wp-includes/class-json.php'),(10042,'wp-includes/class-oembed.php'),(10043,'wp-includes/class-phpass.php'),(10044,'wp-includes/class-phpmailer.php'),(10045,'wp-includes/class-pop3.php'),(10046,'wp-includes/class-requests.php'),(10047,'wp-includes/class-simplepie.php'),(10048,'wp-includes/class-smtp.php'),(10049,'wp-includes/class-snoopy.php'),(10050,'wp-includes/class-walker-category-dropdown.php'),(10051,'wp-includes/class-walker-category.php'),(10052,'wp-includes/class-walker-comment.php'),(10053,'wp-includes/class-walker-nav-menu.php'),(10054,'wp-includes/class-walker-page-dropdown.php'),(10055,'wp-includes/class-walker-page.php'),(10056,'wp-includes/class-wp-admin-bar.php'),(10057,'wp-includes/class-wp-ajax-response.php'),(10058,'wp-includes/class-wp-application-passwords.php'),(10059,'wp-includes/class-wp-block-editor-context.php'),(10060,'wp-includes/class-wp-block-list.php'),(10061,'wp-includes/class-wp-block-parser.php'),(10062,'wp-includes/class-wp-block-pattern-categories-registry.php'),(10063,'wp-includes/class-wp-block-patterns-registry.php'),(10064,'wp-includes/class-wp-block-styles-registry.php'),(10065,'wp-includes/class-wp-block-supports.php'),(10066,'wp-includes/class-wp-block-template.php'),(10067,'wp-includes/class-wp-block-type-registry.php'),(10068,'wp-includes/class-wp-block-type.php'),(10069,'wp-includes/class-wp-block.php'),(10070,'wp-includes/class-wp-comment-query.php'),(10071,'wp-includes/class-wp-comment.php'),(10072,'wp-includes/class-wp-customize-control.php'),(10073,'wp-includes/class-wp-customize-manager.php'),(10074,'wp-includes/class-wp-customize-nav-menus.php'),(10075,'wp-includes/class-wp-customize-panel.php'),(10076,'wp-includes/class-wp-customize-section.php'),(10077,'wp-includes/class-wp-customize-setting.php'),(10078,'wp-includes/class-wp-customize-widgets.php'),(10079,'wp-includes/class-wp-date-query.php'),(10080,'wp-includes/class-wp-dependency.php'),(10081,'wp-includes/class-wp-editor.php'),(10082,'wp-includes/class-wp-embed.php'),(10083,'wp-includes/class-wp-error.php'),(10084,'wp-includes/class-wp-fatal-error-handler.php'),(10085,'wp-includes/class-wp-feed-cache-transient.php'),(10086,'wp-includes/class-wp-feed-cache.php'),(10087,'wp-includes/class-wp-hook.php'),(10088,'wp-includes/class-wp-http-cookie.php'),(10089,'wp-includes/class-wp-http-curl.php'),(10090,'wp-includes/class-wp-http-encoding.php'),(10091,'wp-includes/class-wp-http-ixr-client.php'),(10092,'wp-includes/class-wp-http-proxy.php'),(10093,'wp-includes/class-wp-http-requests-hooks.php'),(10094,'wp-includes/class-wp-http-requests-response.php'),(10095,'wp-includes/class-wp-http-response.php'),(10096,'wp-includes/class-wp-http-streams.php'),(10097,'wp-includes/class-wp-http.php'),(10098,'wp-includes/class-wp-image-editor-gd.php'),(10099,'wp-includes/class-wp-image-editor-imagick.php'),(10100,'wp-includes/class-wp-image-editor.php'),(10101,'wp-includes/class-wp-list-util.php'),(10102,'wp-includes/class-wp-locale-switcher.php'),(10103,'wp-includes/class-wp-locale.php'),(10104,'wp-includes/class-wp-matchesmapregex.php'),(10105,'wp-includes/class-wp-meta-query.php'),(10106,'wp-includes/class-wp-metadata-lazyloader.php'),(10107,'wp-includes/class-wp-network-query.php'),(10108,'wp-includes/class-wp-network.php'),(10109,'wp-includes/class-wp-object-cache.php'),(10110,'wp-includes/class-wp-oembed-controller.php'),(10111,'wp-includes/class-wp-oembed.php'),(10112,'wp-includes/class-wp-paused-extensions-storage.php'),(10113,'wp-includes/class-wp-post-type.php'),(10114,'wp-includes/class-wp-post.php'),(10115,'wp-includes/class-wp-query.php'),(10116,'wp-includes/class-wp-recovery-mode-cookie-service.php'),(10117,'wp-includes/class-wp-recovery-mode-email-service.php'),(10118,'wp-includes/class-wp-recovery-mode-key-service.php'),(10119,'wp-includes/class-wp-recovery-mode-link-service.php'),(10120,'wp-includes/class-wp-recovery-mode.php'),(10121,'wp-includes/class-wp-rewrite.php'),(10122,'wp-includes/class-wp-role.php'),(10123,'wp-includes/class-wp-roles.php'),(10124,'wp-includes/class-wp-session-tokens.php'),(10125,'wp-includes/class-wp-simplepie-file.php'),(10126,'wp-includes/class-wp-simplepie-sanitize-kses.php'),(10127,'wp-includes/class-wp-site-query.php'),(10128,'wp-includes/class-wp-site.php'),(10129,'wp-includes/class-wp-tax-query.php'),(10130,'wp-includes/class-wp-taxonomy.php'),(10131,'wp-includes/class-wp-term-query.php'),(10132,'wp-includes/class-wp-term.php'),(10133,'wp-includes/class-wp-text-diff-renderer-inline.php'),(10134,'wp-includes/class-wp-text-diff-renderer-table.php'),(10135,'wp-includes/class-wp-theme-json-resolver.php'),(10136,'wp-includes/class-wp-theme-json-schema.php'),(10137,'wp-includes/class-wp-theme-json.php'),(10138,'wp-includes/class-wp-theme.php'),(10139,'wp-includes/class-wp-user-meta-session-tokens.php'),(10140,'wp-includes/class-wp-user-query.php'),(10141,'wp-includes/class-wp-user-request.php'),(10142,'wp-includes/class-wp-user.php'),(10143,'wp-includes/class-wp-walker.php'),(10144,'wp-includes/class-wp-widget-factory.php'),(10145,'wp-includes/class-wp-widget.php'),(10146,'wp-includes/class-wp-xmlrpc-server.php'),(10147,'wp-includes/class-wp.php'),(10148,'wp-includes/class.wp-dependencies.php'),(10149,'wp-includes/class.wp-scripts.php'),(10150,'wp-includes/class.wp-styles.php'),(10151,'wp-includes/comment-template.php'),(10152,'wp-includes/comment.php'),(10153,'wp-includes/compat.php'),(10154,'wp-includes/cron.php'),(10155,'wp-includes/css/admin-bar-rtl.css'),(10156,'wp-includes/css/admin-bar-rtl.min.css'),(10157,'wp-includes/css/admin-bar.css'),(10158,'wp-includes/css/admin-bar.min.css'),(10159,'wp-includes/css/buttons-rtl.css'),(10160,'wp-includes/css/buttons-rtl.min.css'),(10161,'wp-includes/css/buttons.css'),(10162,'wp-includes/css/buttons.min.css'),(10163,'wp-includes/css/customize-preview-rtl.css'),(10164,'wp-includes/css/customize-preview-rtl.min.css'),(10165,'wp-includes/css/customize-preview.css'),(10166,'wp-includes/css/customize-preview.min.css'),(10167,'wp-includes/css/dashicons.css'),(10168,'wp-includes/css/dashicons.min.css'),(10169,'wp-includes/css/dist/block-directory/style-rtl.css'),(10170,'wp-includes/css/dist/block-directory/style-rtl.min.css'),(10171,'wp-includes/css/dist/block-directory/style.css'),(10172,'wp-includes/css/dist/block-directory/style.min.css'),(10173,'wp-includes/css/dist/block-editor/default-editor-styles-rtl.css'),(10174,'wp-includes/css/dist/block-editor/default-editor-styles-rtl.min.css'),(10175,'wp-includes/css/dist/block-editor/default-editor-styles.css'),(10176,'wp-includes/css/dist/block-editor/default-editor-styles.min.css'),(10177,'wp-includes/css/dist/block-editor/style-rtl.css'),(10178,'wp-includes/css/dist/block-editor/style-rtl.min.css'),(10179,'wp-includes/css/dist/block-editor/style.css'),(10180,'wp-includes/css/dist/block-editor/style.min.css'),(10181,'wp-includes/css/dist/block-library/common-rtl.css'),(10182,'wp-includes/css/dist/block-library/common-rtl.min.css'),(10183,'wp-includes/css/dist/block-library/common.css'),(10184,'wp-includes/css/dist/block-library/common.min.css'),(10185,'wp-includes/css/dist/block-library/editor-rtl.css'),(10186,'wp-includes/css/dist/block-library/editor-rtl.min.css'),(10187,'wp-includes/css/dist/block-library/editor.css'),(10188,'wp-includes/css/dist/block-library/editor.min.css'),(10189,'wp-includes/css/dist/block-library/reset-rtl.css'),(10190,'wp-includes/css/dist/block-library/reset-rtl.min.css'),(10191,'wp-includes/css/dist/block-library/reset.css'),(10192,'wp-includes/css/dist/block-library/reset.min.css'),(10193,'wp-includes/css/dist/block-library/style-rtl.css'),(10194,'wp-includes/css/dist/block-library/style-rtl.min.css'),(10195,'wp-includes/css/dist/block-library/style.css'),(10196,'wp-includes/css/dist/block-library/style.min.css'),(10197,'wp-includes/css/dist/block-library/theme-rtl.css'),(10198,'wp-includes/css/dist/block-library/theme-rtl.min.css'),(10199,'wp-includes/css/dist/block-library/theme.css'),(10200,'wp-includes/css/dist/block-library/theme.min.css'),(10201,'wp-includes/css/dist/components/style-rtl.css'),(10202,'wp-includes/css/dist/components/style-rtl.min.css'),(10203,'wp-includes/css/dist/components/style.css'),(10204,'wp-includes/css/dist/components/style.min.css'),(10205,'wp-includes/css/dist/customize-widgets/style-rtl.css'),(10206,'wp-includes/css/dist/customize-widgets/style-rtl.min.css'),(10207,'wp-includes/css/dist/customize-widgets/style.css'),(10208,'wp-includes/css/dist/customize-widgets/style.min.css'),(10209,'wp-includes/css/dist/edit-post/classic-rtl.css'),(10210,'wp-includes/css/dist/edit-post/classic-rtl.min.css'),(10211,'wp-includes/css/dist/edit-post/classic.css'),(10212,'wp-includes/css/dist/edit-post/classic.min.css'),(10213,'wp-includes/css/dist/edit-post/style-rtl.css'),(10214,'wp-includes/css/dist/edit-post/style-rtl.min.css'),(10215,'wp-includes/css/dist/edit-post/style.css'),(10216,'wp-includes/css/dist/edit-post/style.min.css'),(10217,'wp-includes/css/dist/edit-site/style-rtl.css'),(10218,'wp-includes/css/dist/edit-site/style-rtl.min.css'),(10219,'wp-includes/css/dist/edit-site/style.css'),(10220,'wp-includes/css/dist/edit-site/style.min.css'),(10221,'wp-includes/css/dist/edit-widgets/style-rtl.css'),(10222,'wp-includes/css/dist/edit-widgets/style-rtl.min.css'),(10223,'wp-includes/css/dist/edit-widgets/style.css'),(10224,'wp-includes/css/dist/edit-widgets/style.min.css'),(10225,'wp-includes/css/dist/editor/style-rtl.css'),(10226,'wp-includes/css/dist/editor/style-rtl.min.css'),(10227,'wp-includes/css/dist/editor/style.css'),(10228,'wp-includes/css/dist/editor/style.min.css'),(10229,'wp-includes/css/dist/format-library/style-rtl.css'),(10230,'wp-includes/css/dist/format-library/style-rtl.min.css'),(10231,'wp-includes/css/dist/format-library/style.css'),(10232,'wp-includes/css/dist/format-library/style.min.css'),(10233,'wp-includes/css/dist/list-reusable-blocks/style-rtl.css'),(10234,'wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css'),(10235,'wp-includes/css/dist/list-reusable-blocks/style.css'),(10236,'wp-includes/css/dist/list-reusable-blocks/style.min.css'),(10237,'wp-includes/css/dist/nux/style-rtl.css'),(10238,'wp-includes/css/dist/nux/style-rtl.min.css'),(10239,'wp-includes/css/dist/nux/style.css'),(10240,'wp-includes/css/dist/nux/style.min.css'),(10241,'wp-includes/css/dist/reusable-blocks/style-rtl.css'),(10242,'wp-includes/css/dist/reusable-blocks/style-rtl.min.css'),(10243,'wp-includes/css/dist/reusable-blocks/style.css'),(10244,'wp-includes/css/dist/reusable-blocks/style.min.css'),(10245,'wp-includes/css/dist/widgets/style-rtl.css'),(10246,'wp-includes/css/dist/widgets/style-rtl.min.css'),(10247,'wp-includes/css/dist/widgets/style.css'),(10248,'wp-includes/css/dist/widgets/style.min.css'),(10249,'wp-includes/css/editor-rtl.css'),(10250,'wp-includes/css/editor-rtl.min.css'),(10251,'wp-includes/css/editor.css'),(10252,'wp-includes/css/editor.min.css'),(10253,'wp-includes/css/jquery-ui-dialog-rtl.css'),(10254,'wp-includes/css/jquery-ui-dialog-rtl.min.css'),(10255,'wp-includes/css/jquery-ui-dialog.css'),(10256,'wp-includes/css/jquery-ui-dialog.min.css'),(10257,'wp-includes/css/media-views-rtl.css'),(10258,'wp-includes/css/media-views-rtl.min.css'),(10259,'wp-includes/css/media-views.css'),(10260,'wp-includes/css/media-views.min.css'),(10261,'wp-includes/css/wp-auth-check-rtl.css'),(10262,'wp-includes/css/wp-auth-check-rtl.min.css'),(10263,'wp-includes/css/wp-auth-check.css'),(10264,'wp-includes/css/wp-auth-check.min.css'),(10265,'wp-includes/css/wp-embed-template-ie.css'),(10266,'wp-includes/css/wp-embed-template-ie.min.css'),(10267,'wp-includes/css/wp-embed-template.css'),(10268,'wp-includes/css/wp-embed-template.min.css'),(10269,'wp-includes/css/wp-pointer-rtl.css'),(10270,'wp-includes/css/wp-pointer-rtl.min.css'),(10271,'wp-includes/css/wp-pointer.css'),(10272,'wp-includes/css/wp-pointer.min.css'),(10273,'wp-includes/customize/class-wp-customize-background-image-control.php'),(10274,'wp-includes/customize/class-wp-customize-background-image-setting.php'),(10275,'wp-includes/customize/class-wp-customize-background-position-control.php'),(10276,'wp-includes/customize/class-wp-customize-code-editor-control.php'),(10277,'wp-includes/customize/class-wp-customize-color-control.php'),(10278,'wp-includes/customize/class-wp-customize-cropped-image-control.php'),(10279,'wp-includes/customize/class-wp-customize-custom-css-setting.php'),(10280,'wp-includes/customize/class-wp-customize-date-time-control.php'),(10281,'wp-includes/customize/class-wp-customize-filter-setting.php'),(10282,'wp-includes/customize/class-wp-customize-header-image-control.php'),(10283,'wp-includes/customize/class-wp-customize-header-image-setting.php'),(10284,'wp-includes/customize/class-wp-customize-image-control.php'),(10285,'wp-includes/customize/class-wp-customize-media-control.php'),(10286,'wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php'),(10287,'wp-includes/customize/class-wp-customize-nav-menu-control.php'),(10288,'wp-includes/customize/class-wp-customize-nav-menu-item-control.php'),(10289,'wp-includes/customize/class-wp-customize-nav-menu-item-setting.php'),(10290,'wp-includes/customize/class-wp-customize-nav-menu-location-control.php'),(10291,'wp-includes/customize/class-wp-customize-nav-menu-locations-control.php'),(10292,'wp-includes/customize/class-wp-customize-nav-menu-name-control.php'),(10293,'wp-includes/customize/class-wp-customize-nav-menu-section.php'),(10294,'wp-includes/customize/class-wp-customize-nav-menu-setting.php'),(10295,'wp-includes/customize/class-wp-customize-nav-menus-panel.php'),(10296,'wp-includes/customize/class-wp-customize-new-menu-control.php'),(10297,'wp-includes/customize/class-wp-customize-new-menu-section.php'),(10298,'wp-includes/customize/class-wp-customize-partial.php'),(10299,'wp-includes/customize/class-wp-customize-selective-refresh.php'),(10300,'wp-includes/customize/class-wp-customize-sidebar-section.php'),(10301,'wp-includes/customize/class-wp-customize-site-icon-control.php'),(10302,'wp-includes/customize/class-wp-customize-theme-control.php'),(10303,'wp-includes/customize/class-wp-customize-themes-panel.php'),(10304,'wp-includes/customize/class-wp-customize-themes-section.php'),(10305,'wp-includes/customize/class-wp-customize-upload-control.php'),(10306,'wp-includes/customize/class-wp-sidebar-block-editor-control.php'),(10307,'wp-includes/customize/class-wp-widget-area-customize-control.php'),(10308,'wp-includes/customize/class-wp-widget-form-customize-control.php'),(10309,'wp-includes/date.php'),(10310,'wp-includes/default-constants.php'),(10311,'wp-includes/default-filters.php'),(10312,'wp-includes/default-widgets.php'),(10313,'wp-includes/deprecated.php'),(10314,'wp-includes/embed-template.php'),(10315,'wp-includes/embed.php'),(10316,'wp-includes/error-protection.php'),(10317,'wp-includes/feed-atom-comments.php'),(10318,'wp-includes/feed-atom.php'),(10319,'wp-includes/feed-rdf.php'),(10320,'wp-includes/feed-rss.php'),(10321,'wp-includes/feed-rss2-comments.php'),(10322,'wp-includes/feed-rss2.php'),(10323,'wp-includes/feed.php'),(10324,'wp-includes/fonts/dashicons.eot'),(10325,'wp-includes/fonts/dashicons.svg'),(10326,'wp-includes/fonts/dashicons.ttf'),(10327,'wp-includes/fonts/dashicons.woff'),(10328,'wp-includes/fonts/dashicons.woff2'),(10329,'wp-includes/formatting.php'),(10330,'wp-includes/functions.php'),(10331,'wp-includes/functions.wp-scripts.php'),(10332,'wp-includes/functions.wp-styles.php'),(10333,'wp-includes/general-template.php'),(10334,'wp-includes/global-styles-and-settings.php'),(10335,'wp-includes/http.php'),(10336,'wp-includes/https-detection.php'),(10337,'wp-includes/https-migration.php'),(10338,'wp-includes/images/admin-bar-sprite-2x.png'),(10339,'wp-includes/images/admin-bar-sprite.png'),(10340,'wp-includes/images/arrow-pointer-blue-2x.png'),(10341,'wp-includes/images/arrow-pointer-blue.png'),(10342,'wp-includes/images/blank.gif'),(10343,'wp-includes/images/crystal/archive.png'),(10344,'wp-includes/images/crystal/audio.png'),(10345,'wp-includes/images/crystal/code.png'),(10346,'wp-includes/images/crystal/default.png'),(10347,'wp-includes/images/crystal/document.png'),(10348,'wp-includes/images/crystal/interactive.png'),(10349,'wp-includes/images/crystal/license.txt'),(10350,'wp-includes/images/crystal/spreadsheet.png'),(10351,'wp-includes/images/crystal/text.png'),(10352,'wp-includes/images/crystal/video.png'),(10353,'wp-includes/images/down_arrow-2x.gif'),(10354,'wp-includes/images/down_arrow.gif'),(10355,'wp-includes/images/icon-pointer-flag-2x.png'),(10356,'wp-includes/images/icon-pointer-flag.png'),(10357,'wp-includes/images/media/archive.png'),(10358,'wp-includes/images/media/audio.png'),(10359,'wp-includes/images/media/code.png'),(10360,'wp-includes/images/media/default.png'),(10361,'wp-includes/images/media/document.png'),(10362,'wp-includes/images/media/interactive.png'),(10363,'wp-includes/images/media/spreadsheet.png'),(10364,'wp-includes/images/media/text.png'),(10365,'wp-includes/images/media/video.png'),(10366,'wp-includes/images/rss-2x.png'),(10367,'wp-includes/images/rss.png'),(10368,'wp-includes/images/smilies/frownie.png'),(10369,'wp-includes/images/smilies/icon_arrow.gif'),(10370,'wp-includes/images/smilies/icon_biggrin.gif'),(10371,'wp-includes/images/smilies/icon_confused.gif'),(10372,'wp-includes/images/smilies/icon_cool.gif'),(10373,'wp-includes/images/smilies/icon_cry.gif'),(10374,'wp-includes/images/smilies/icon_eek.gif'),(10375,'wp-includes/images/smilies/icon_evil.gif'),(10376,'wp-includes/images/smilies/icon_exclaim.gif'),(10377,'wp-includes/images/smilies/icon_idea.gif'),(10378,'wp-includes/images/smilies/icon_lol.gif'),(10379,'wp-includes/images/smilies/icon_mad.gif'),(10380,'wp-includes/images/smilies/icon_mrgreen.gif'),(10381,'wp-includes/images/smilies/icon_neutral.gif'),(10382,'wp-includes/images/smilies/icon_question.gif'),(10383,'wp-includes/images/smilies/icon_razz.gif'),(10384,'wp-includes/images/smilies/icon_redface.gif'),(10385,'wp-includes/images/smilies/icon_rolleyes.gif'),(10386,'wp-includes/images/smilies/icon_sad.gif'),(10387,'wp-includes/images/smilies/icon_smile.gif'),(10388,'wp-includes/images/smilies/icon_surprised.gif'),(10389,'wp-includes/images/smilies/icon_twisted.gif'),(10390,'wp-includes/images/smilies/icon_wink.gif'),(10391,'wp-includes/images/smilies/mrgreen.png'),(10392,'wp-includes/images/smilies/rolleyes.png'),(10393,'wp-includes/images/smilies/simple-smile.png'),(10394,'wp-includes/images/spinner-2x.gif'),(10395,'wp-includes/images/spinner.gif'),(10396,'wp-includes/images/toggle-arrow-2x.png'),(10397,'wp-includes/images/toggle-arrow.png'),(10398,'wp-includes/images/uploader-icons-2x.png'),(10399,'wp-includes/images/uploader-icons.png'),(10400,'wp-includes/images/w-logo-blue-white-bg.png'),(10401,'wp-includes/images/w-logo-blue.png'),(10402,'wp-includes/images/wlw/wp-comments.png'),(10403,'wp-includes/images/wlw/wp-icon.png'),(10404,'wp-includes/images/wlw/wp-watermark.png'),(10405,'wp-includes/images/wpicons-2x.png'),(10406,'wp-includes/images/wpicons.png'),(10407,'wp-includes/images/wpspin-2x.gif'),(10408,'wp-includes/images/wpspin.gif'),(10409,'wp-includes/images/xit-2x.gif'),(10410,'wp-includes/images/xit.gif'),(10411,'wp-includes/js/admin-bar.js'),(10412,'wp-includes/js/admin-bar.min.js'),(10413,'wp-includes/js/api-request.js'),(10414,'wp-includes/js/api-request.min.js'),(10415,'wp-includes/js/autosave.js'),(10416,'wp-includes/js/autosave.min.js'),(10417,'wp-includes/js/backbone.js'),(10418,'wp-includes/js/backbone.min.js'),(10419,'wp-includes/js/clipboard.js'),(10420,'wp-includes/js/clipboard.min.js'),(10421,'wp-includes/js/codemirror/codemirror.min.css'),(10422,'wp-includes/js/codemirror/codemirror.min.js'),(10423,'wp-includes/js/codemirror/csslint.js'),(10424,'wp-includes/js/codemirror/esprima.js'),(10425,'wp-includes/js/codemirror/fakejshint.js'),(10426,'wp-includes/js/codemirror/htmlhint-kses.js'),(10427,'wp-includes/js/codemirror/htmlhint.js'),(10428,'wp-includes/js/codemirror/jsonlint.js'),(10429,'wp-includes/js/colorpicker.js'),(10430,'wp-includes/js/colorpicker.min.js'),(10431,'wp-includes/js/comment-reply.js'),(10432,'wp-includes/js/comment-reply.min.js'),(10433,'wp-includes/js/crop/cropper.css'),(10434,'wp-includes/js/crop/cropper.js'),(10435,'wp-includes/js/crop/marqueeHoriz.gif'),(10436,'wp-includes/js/crop/marqueeVert.gif'),(10437,'wp-includes/js/customize-base.js'),(10438,'wp-includes/js/customize-base.min.js'),(10439,'wp-includes/js/customize-loader.js'),(10440,'wp-includes/js/customize-loader.min.js'),(10441,'wp-includes/js/customize-models.js'),(10442,'wp-includes/js/customize-models.min.js'),(10443,'wp-includes/js/customize-preview-nav-menus.js'),(10444,'wp-includes/js/customize-preview-nav-menus.min.js'),(10445,'wp-includes/js/customize-preview-widgets.js'),(10446,'wp-includes/js/customize-preview-widgets.min.js'),(10447,'wp-includes/js/customize-preview.js'),(10448,'wp-includes/js/customize-preview.min.js'),(10449,'wp-includes/js/customize-selective-refresh.js'),(10450,'wp-includes/js/customize-selective-refresh.min.js'),(10451,'wp-includes/js/customize-views.js'),(10452,'wp-includes/js/customize-views.min.js'),(10453,'wp-includes/js/dist/a11y.js'),(10454,'wp-includes/js/dist/a11y.min.js'),(10455,'wp-includes/js/dist/annotations.js'),(10456,'wp-includes/js/dist/annotations.min.js'),(10457,'wp-includes/js/dist/api-fetch.js'),(10458,'wp-includes/js/dist/api-fetch.min.js'),(10459,'wp-includes/js/dist/autop.js'),(10460,'wp-includes/js/dist/autop.min.js'),(10461,'wp-includes/js/dist/blob.js'),(10462,'wp-includes/js/dist/blob.min.js'),(10463,'wp-includes/js/dist/block-directory.js'),(10464,'wp-includes/js/dist/block-directory.min.js'),(10465,'wp-includes/js/dist/block-editor.js'),(10466,'wp-includes/js/dist/block-editor.min.js'),(10467,'wp-includes/js/dist/block-library.js'),(10468,'wp-includes/js/dist/block-library.min.js'),(10469,'wp-includes/js/dist/block-serialization-default-parser.js'),(10470,'wp-includes/js/dist/block-serialization-default-parser.min.js'),(10471,'wp-includes/js/dist/blocks.js'),(10472,'wp-includes/js/dist/blocks.min.js'),(10473,'wp-includes/js/dist/components.js'),(10474,'wp-includes/js/dist/components.min.js'),(10475,'wp-includes/js/dist/compose.js'),(10476,'wp-includes/js/dist/compose.min.js'),(10477,'wp-includes/js/dist/core-data.js'),(10478,'wp-includes/js/dist/core-data.min.js'),(10479,'wp-includes/js/dist/customize-widgets.js'),(10480,'wp-includes/js/dist/customize-widgets.min.js'),(10481,'wp-includes/js/dist/data-controls.js'),(10482,'wp-includes/js/dist/data-controls.min.js'),(10483,'wp-includes/js/dist/data.js'),(10484,'wp-includes/js/dist/data.min.js'),(10485,'wp-includes/js/dist/date.js'),(10486,'wp-includes/js/dist/date.min.js'),(10487,'wp-includes/js/dist/deprecated.js'),(10488,'wp-includes/js/dist/deprecated.min.js'),(10489,'wp-includes/js/dist/dom-ready.js'),(10490,'wp-includes/js/dist/dom-ready.min.js'),(10491,'wp-includes/js/dist/dom.js'),(10492,'wp-includes/js/dist/dom.min.js'),(10493,'wp-includes/js/dist/edit-post.js'),(10494,'wp-includes/js/dist/edit-post.min.js'),(10495,'wp-includes/js/dist/edit-site.js'),(10496,'wp-includes/js/dist/edit-site.min.js'),(10497,'wp-includes/js/dist/edit-widgets.js'),(10498,'wp-includes/js/dist/edit-widgets.min.js'),(10499,'wp-includes/js/dist/editor.js'),(10500,'wp-includes/js/dist/editor.min.js'),(10501,'wp-includes/js/dist/element.js'),(10502,'wp-includes/js/dist/element.min.js'),(10503,'wp-includes/js/dist/escape-html.js'),(10504,'wp-includes/js/dist/escape-html.min.js'),(10505,'wp-includes/js/dist/format-library.js'),(10506,'wp-includes/js/dist/format-library.min.js'),(10507,'wp-includes/js/dist/hooks.js'),(10508,'wp-includes/js/dist/hooks.min.js'),(10509,'wp-includes/js/dist/html-entities.js'),(10510,'wp-includes/js/dist/html-entities.min.js'),(10511,'wp-includes/js/dist/i18n.js'),(10512,'wp-includes/js/dist/i18n.min.js'),(10513,'wp-includes/js/dist/is-shallow-equal.js'),(10514,'wp-includes/js/dist/is-shallow-equal.min.js'),(10515,'wp-includes/js/dist/keyboard-shortcuts.js'),(10516,'wp-includes/js/dist/keyboard-shortcuts.min.js'),(10517,'wp-includes/js/dist/keycodes.js'),(10518,'wp-includes/js/dist/keycodes.min.js'),(10519,'wp-includes/js/dist/list-reusable-blocks.js'),(10520,'wp-includes/js/dist/list-reusable-blocks.min.js'),(10521,'wp-includes/js/dist/media-utils.js'),(10522,'wp-includes/js/dist/media-utils.min.js'),(10523,'wp-includes/js/dist/notices.js'),(10524,'wp-includes/js/dist/notices.min.js'),(10525,'wp-includes/js/dist/nux.js'),(10526,'wp-includes/js/dist/nux.min.js'),(10527,'wp-includes/js/dist/plugins.js'),(10528,'wp-includes/js/dist/plugins.min.js'),(10529,'wp-includes/js/dist/primitives.js'),(10530,'wp-includes/js/dist/primitives.min.js'),(10531,'wp-includes/js/dist/priority-queue.js'),(10532,'wp-includes/js/dist/priority-queue.min.js'),(10533,'wp-includes/js/dist/redux-routine.js'),(10534,'wp-includes/js/dist/redux-routine.min.js'),(10535,'wp-includes/js/dist/reusable-blocks.js'),(10536,'wp-includes/js/dist/reusable-blocks.min.js'),(10537,'wp-includes/js/dist/rich-text.js'),(10538,'wp-includes/js/dist/rich-text.min.js'),(10539,'wp-includes/js/dist/server-side-render.js'),(10540,'wp-includes/js/dist/server-side-render.min.js'),(10541,'wp-includes/js/dist/shortcode.js'),(10542,'wp-includes/js/dist/shortcode.min.js'),(10543,'wp-includes/js/dist/token-list.js'),(10544,'wp-includes/js/dist/token-list.min.js'),(10545,'wp-includes/js/dist/url.js'),(10546,'wp-includes/js/dist/url.min.js'),(10547,'wp-includes/js/dist/vendor/lodash.js'),(10548,'wp-includes/js/dist/vendor/lodash.min.js'),(10549,'wp-includes/js/dist/vendor/moment.js'),(10550,'wp-includes/js/dist/vendor/moment.min.js'),(10551,'wp-includes/js/dist/vendor/react-dom.js'),(10552,'wp-includes/js/dist/vendor/react-dom.min.js'),(10553,'wp-includes/js/dist/vendor/react.js'),(10554,'wp-includes/js/dist/vendor/react.min.js'),(10555,'wp-includes/js/dist/vendor/regenerator-runtime.js'),(10556,'wp-includes/js/dist/vendor/regenerator-runtime.min.js'),(10557,'wp-includes/js/dist/vendor/wp-polyfill-dom-rect.js'),(10558,'wp-includes/js/dist/vendor/wp-polyfill-dom-rect.min.js'),(10559,'wp-includes/js/dist/vendor/wp-polyfill-element-closest.js'),(10560,'wp-includes/js/dist/vendor/wp-polyfill-element-closest.min.js'),(10561,'wp-includes/js/dist/vendor/wp-polyfill-fetch.js'),(10562,'wp-includes/js/dist/vendor/wp-polyfill-fetch.min.js'),(10563,'wp-includes/js/dist/vendor/wp-polyfill-formdata.js'),(10564,'wp-includes/js/dist/vendor/wp-polyfill-formdata.min.js'),(10565,'wp-includes/js/dist/vendor/wp-polyfill-node-contains.js'),(10566,'wp-includes/js/dist/vendor/wp-polyfill-node-contains.min.js'),(10567,'wp-includes/js/dist/vendor/wp-polyfill-object-fit.js'),(10568,'wp-includes/js/dist/vendor/wp-polyfill-object-fit.min.js'),(10569,'wp-includes/js/dist/vendor/wp-polyfill-url.js'),(10570,'wp-includes/js/dist/vendor/wp-polyfill-url.min.js'),(10571,'wp-includes/js/dist/vendor/wp-polyfill.js'),(10572,'wp-includes/js/dist/vendor/wp-polyfill.min.js'),(10573,'wp-includes/js/dist/viewport.js'),(10574,'wp-includes/js/dist/viewport.min.js'),(10575,'wp-includes/js/dist/warning.js'),(10576,'wp-includes/js/dist/warning.min.js'),(10577,'wp-includes/js/dist/widgets.js'),(10578,'wp-includes/js/dist/widgets.min.js'),(10579,'wp-includes/js/dist/wordcount.js'),(10580,'wp-includes/js/dist/wordcount.min.js'),(10581,'wp-includes/js/heartbeat.js'),(10582,'wp-includes/js/heartbeat.min.js'),(10583,'wp-includes/js/hoverIntent.js'),(10584,'wp-includes/js/hoverIntent.min.js'),(10585,'wp-includes/js/hoverintent-js.min.js'),(10586,'wp-includes/js/imagesloaded.min.js'),(10587,'wp-includes/js/imgareaselect/border-anim-h.gif'),(10588,'wp-includes/js/imgareaselect/border-anim-v.gif'),(10589,'wp-includes/js/imgareaselect/imgareaselect.css'),(10590,'wp-includes/js/imgareaselect/jquery.imgareaselect.js'),(10591,'wp-includes/js/imgareaselect/jquery.imgareaselect.min.js'),(10592,'wp-includes/js/jcrop/Jcrop.gif'),(10593,'wp-includes/js/jcrop/jquery.Jcrop.min.css'),(10594,'wp-includes/js/jcrop/jquery.Jcrop.min.js'),(10595,'wp-includes/js/jquery/jquery-migrate.js'),(10596,'wp-includes/js/jquery/jquery-migrate.min.js'),(10597,'wp-includes/js/jquery/jquery.color.min.js'),(10598,'wp-includes/js/jquery/jquery.form.js'),(10599,'wp-includes/js/jquery/jquery.form.min.js'),(10600,'wp-includes/js/jquery/jquery.hotkeys.js'),(10601,'wp-includes/js/jquery/jquery.hotkeys.min.js'),(10602,'wp-includes/js/jquery/jquery.js'),(10603,'wp-includes/js/jquery/jquery.masonry.min.js'),(10604,'wp-includes/js/jquery/jquery.min.js'),(10605,'wp-includes/js/jquery/jquery.query.js'),(10606,'wp-includes/js/jquery/jquery.schedule.js'),(10607,'wp-includes/js/jquery/jquery.serialize-object.js'),(10608,'wp-includes/js/jquery/jquery.table-hotkeys.js'),(10609,'wp-includes/js/jquery/jquery.table-hotkeys.min.js'),(10610,'wp-includes/js/jquery/jquery.ui.touch-punch.js'),(10611,'wp-includes/js/jquery/suggest.js'),(10612,'wp-includes/js/jquery/suggest.min.js'),(10613,'wp-includes/js/jquery/ui/accordion.js'),(10614,'wp-includes/js/jquery/ui/accordion.min.js'),(10615,'wp-includes/js/jquery/ui/autocomplete.js'),(10616,'wp-includes/js/jquery/ui/autocomplete.min.js'),(10617,'wp-includes/js/jquery/ui/button.js'),(10618,'wp-includes/js/jquery/ui/button.min.js'),(10619,'wp-includes/js/jquery/ui/checkboxradio.js'),(10620,'wp-includes/js/jquery/ui/checkboxradio.min.js'),(10621,'wp-includes/js/jquery/ui/controlgroup.js'),(10622,'wp-includes/js/jquery/ui/controlgroup.min.js'),(10623,'wp-includes/js/jquery/ui/core.js'),(10624,'wp-includes/js/jquery/ui/core.min.js'),(10625,'wp-includes/js/jquery/ui/datepicker.js'),(10626,'wp-includes/js/jquery/ui/datepicker.min.js'),(10627,'wp-includes/js/jquery/ui/dialog.js'),(10628,'wp-includes/js/jquery/ui/dialog.min.js'),(10629,'wp-includes/js/jquery/ui/draggable.js'),(10630,'wp-includes/js/jquery/ui/draggable.min.js'),(10631,'wp-includes/js/jquery/ui/droppable.js'),(10632,'wp-includes/js/jquery/ui/droppable.min.js'),(10633,'wp-includes/js/jquery/ui/effect-blind.js'),(10634,'wp-includes/js/jquery/ui/effect-blind.min.js'),(10635,'wp-includes/js/jquery/ui/effect-bounce.js'),(10636,'wp-includes/js/jquery/ui/effect-bounce.min.js'),(10637,'wp-includes/js/jquery/ui/effect-clip.js'),(10638,'wp-includes/js/jquery/ui/effect-clip.min.js'),(10639,'wp-includes/js/jquery/ui/effect-drop.js'),(10640,'wp-includes/js/jquery/ui/effect-drop.min.js'),(10641,'wp-includes/js/jquery/ui/effect-explode.js'),(10642,'wp-includes/js/jquery/ui/effect-explode.min.js'),(10643,'wp-includes/js/jquery/ui/effect-fade.js'),(10644,'wp-includes/js/jquery/ui/effect-fade.min.js'),(10645,'wp-includes/js/jquery/ui/effect-fold.js'),(10646,'wp-includes/js/jquery/ui/effect-fold.min.js'),(10647,'wp-includes/js/jquery/ui/effect-highlight.js'),(10648,'wp-includes/js/jquery/ui/effect-highlight.min.js'),(10649,'wp-includes/js/jquery/ui/effect-puff.js'),(10650,'wp-includes/js/jquery/ui/effect-puff.min.js'),(10651,'wp-includes/js/jquery/ui/effect-pulsate.js'),(10652,'wp-includes/js/jquery/ui/effect-pulsate.min.js'),(10653,'wp-includes/js/jquery/ui/effect-scale.js'),(10654,'wp-includes/js/jquery/ui/effect-scale.min.js'),(10655,'wp-includes/js/jquery/ui/effect-shake.js'),(10656,'wp-includes/js/jquery/ui/effect-shake.min.js'),(10657,'wp-includes/js/jquery/ui/effect-size.js'),(10658,'wp-includes/js/jquery/ui/effect-size.min.js'),(10659,'wp-includes/js/jquery/ui/effect-slide.js'),(10660,'wp-includes/js/jquery/ui/effect-slide.min.js'),(10661,'wp-includes/js/jquery/ui/effect-transfer.js'),(10662,'wp-includes/js/jquery/ui/effect-transfer.min.js'),(10663,'wp-includes/js/jquery/ui/effect.js'),(10664,'wp-includes/js/jquery/ui/effect.min.js'),(10665,'wp-includes/js/jquery/ui/menu.js'),(10666,'wp-includes/js/jquery/ui/menu.min.js'),(10667,'wp-includes/js/jquery/ui/mouse.js'),(10668,'wp-includes/js/jquery/ui/mouse.min.js'),(10669,'wp-includes/js/jquery/ui/progressbar.js'),(10670,'wp-includes/js/jquery/ui/progressbar.min.js'),(10671,'wp-includes/js/jquery/ui/resizable.js'),(10672,'wp-includes/js/jquery/ui/resizable.min.js'),(10673,'wp-includes/js/jquery/ui/selectable.js'),(10674,'wp-includes/js/jquery/ui/selectable.min.js'),(10675,'wp-includes/js/jquery/ui/selectmenu.js'),(10676,'wp-includes/js/jquery/ui/selectmenu.min.js'),(10677,'wp-includes/js/jquery/ui/slider.js'),(10678,'wp-includes/js/jquery/ui/slider.min.js'),(10679,'wp-includes/js/jquery/ui/sortable.js'),(10680,'wp-includes/js/jquery/ui/sortable.min.js'),(10681,'wp-includes/js/jquery/ui/spinner.js'),(10682,'wp-includes/js/jquery/ui/spinner.min.js'),(10683,'wp-includes/js/jquery/ui/tabs.js'),(10684,'wp-includes/js/jquery/ui/tabs.min.js'),(10685,'wp-includes/js/jquery/ui/tooltip.js'),(10686,'wp-includes/js/jquery/ui/tooltip.min.js'),(10687,'wp-includes/js/json2.js'),(10688,'wp-includes/js/json2.min.js'),(10689,'wp-includes/js/masonry.min.js'),(10690,'wp-includes/js/mce-view.js'),(10691,'wp-includes/js/mce-view.min.js'),(10692,'wp-includes/js/media-audiovideo.js'),(10693,'wp-includes/js/media-audiovideo.min.js'),(10694,'wp-includes/js/media-editor.js'),(10695,'wp-includes/js/media-editor.min.js'),(10696,'wp-includes/js/media-grid.js'),(10697,'wp-includes/js/media-grid.min.js'),(10698,'wp-includes/js/media-models.js'),(10699,'wp-includes/js/media-models.min.js'),(10700,'wp-includes/js/media-views.js'),(10701,'wp-includes/js/media-views.min.js'),(10702,'wp-includes/js/mediaelement/mediaelement-and-player.js'),(10703,'wp-includes/js/mediaelement/mediaelement-and-player.min.js'),(10704,'wp-includes/js/mediaelement/mediaelement-migrate.js'),(10705,'wp-includes/js/mediaelement/mediaelement-migrate.min.js'),(10706,'wp-includes/js/mediaelement/mediaelement.js'),(10707,'wp-includes/js/mediaelement/mediaelement.min.js'),(10708,'wp-includes/js/mediaelement/mediaelementplayer-legacy.css'),(10709,'wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css'),(10710,'wp-includes/js/mediaelement/mediaelementplayer.css'),(10711,'wp-includes/js/mediaelement/mediaelementplayer.min.css'),(10712,'wp-includes/js/mediaelement/mejs-controls.png'),(10713,'wp-includes/js/mediaelement/mejs-controls.svg'),(10714,'wp-includes/js/mediaelement/renderers/vimeo.js'),(10715,'wp-includes/js/mediaelement/renderers/vimeo.min.js'),(10716,'wp-includes/js/mediaelement/wp-mediaelement.css'),(10717,'wp-includes/js/mediaelement/wp-mediaelement.js'),(10718,'wp-includes/js/mediaelement/wp-mediaelement.min.css'),(10719,'wp-includes/js/mediaelement/wp-mediaelement.min.js'),(10720,'wp-includes/js/mediaelement/wp-playlist.js'),(10721,'wp-includes/js/mediaelement/wp-playlist.min.js'),(10722,'wp-includes/js/plupload/handlers.js'),(10723,'wp-includes/js/plupload/handlers.min.js'),(10724,'wp-includes/js/plupload/license.txt'),(10725,'wp-includes/js/plupload/moxie.js'),(10726,'wp-includes/js/plupload/moxie.min.js'),(10727,'wp-includes/js/plupload/plupload.js'),(10728,'wp-includes/js/plupload/plupload.min.js'),(10729,'wp-includes/js/plupload/wp-plupload.js'),(10730,'wp-includes/js/plupload/wp-plupload.min.js'),(10731,'wp-includes/js/quicktags.js'),(10732,'wp-includes/js/quicktags.min.js'),(10733,'wp-includes/js/shortcode.js'),(10734,'wp-includes/js/shortcode.min.js'),(10735,'wp-includes/js/swfobject.js'),(10736,'wp-includes/js/swfupload/handlers.js'),(10737,'wp-includes/js/swfupload/handlers.min.js'),(10738,'wp-includes/js/swfupload/license.txt'),(10739,'wp-includes/js/swfupload/swfupload.js'),(10740,'wp-includes/js/thickbox/loadingAnimation.gif'),(10741,'wp-includes/js/thickbox/macFFBgHack.png'),(10742,'wp-includes/js/thickbox/thickbox.css'),(10743,'wp-includes/js/thickbox/thickbox.js'),(10744,'wp-includes/js/tinymce/langs/wp-langs-en.js'),(10745,'wp-includes/js/tinymce/license.txt'),(10746,'wp-includes/js/tinymce/plugins/charmap/plugin.js'),(10747,'wp-includes/js/tinymce/plugins/charmap/plugin.min.js'),(10748,'wp-includes/js/tinymce/plugins/colorpicker/plugin.js'),(10749,'wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js'),(10750,'wp-includes/js/tinymce/plugins/compat3x/css/dialog.css'),(10751,'wp-includes/js/tinymce/plugins/compat3x/plugin.js'),(10752,'wp-includes/js/tinymce/plugins/compat3x/plugin.min.js'),(10753,'wp-includes/js/tinymce/plugins/directionality/plugin.js'),(10754,'wp-includes/js/tinymce/plugins/directionality/plugin.min.js'),(10755,'wp-includes/js/tinymce/plugins/fullscreen/plugin.js'),(10756,'wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js'),(10757,'wp-includes/js/tinymce/plugins/hr/plugin.js'),(10758,'wp-includes/js/tinymce/plugins/hr/plugin.min.js'),(10759,'wp-includes/js/tinymce/plugins/image/plugin.js'),(10760,'wp-includes/js/tinymce/plugins/image/plugin.min.js'),(10761,'wp-includes/js/tinymce/plugins/link/plugin.js'),(10762,'wp-includes/js/tinymce/plugins/link/plugin.min.js'),(10763,'wp-includes/js/tinymce/plugins/lists/plugin.js'),(10764,'wp-includes/js/tinymce/plugins/lists/plugin.min.js'),(10765,'wp-includes/js/tinymce/plugins/media/plugin.js'),(10766,'wp-includes/js/tinymce/plugins/media/plugin.min.js'),(10767,'wp-includes/js/tinymce/plugins/paste/plugin.js'),(10768,'wp-includes/js/tinymce/plugins/paste/plugin.min.js'),(10769,'wp-includes/js/tinymce/plugins/tabfocus/plugin.js'),(10770,'wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js'),(10771,'wp-includes/js/tinymce/plugins/textcolor/plugin.js'),(10772,'wp-includes/js/tinymce/plugins/textcolor/plugin.min.js'),(10773,'wp-includes/js/tinymce/plugins/wordpress/plugin.js'),(10774,'wp-includes/js/tinymce/plugins/wordpress/plugin.min.js'),(10775,'wp-includes/js/tinymce/plugins/wpautoresize/plugin.js'),(10776,'wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js'),(10777,'wp-includes/js/tinymce/plugins/wpdialogs/plugin.js'),(10778,'wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js'),(10779,'wp-includes/js/tinymce/plugins/wpeditimage/plugin.js'),(10780,'wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js'),(10781,'wp-includes/js/tinymce/plugins/wpemoji/plugin.js'),(10782,'wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js'),(10783,'wp-includes/js/tinymce/plugins/wpgallery/plugin.js'),(10784,'wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js'),(10785,'wp-includes/js/tinymce/plugins/wplink/plugin.js'),(10786,'wp-includes/js/tinymce/plugins/wplink/plugin.min.js'),(10787,'wp-includes/js/tinymce/plugins/wptextpattern/plugin.js'),(10788,'wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js'),(10789,'wp-includes/js/tinymce/plugins/wpview/plugin.js'),(10790,'wp-includes/js/tinymce/plugins/wpview/plugin.min.js'),(10791,'wp-includes/js/tinymce/skins/lightgray/content.inline.min.css'),(10792,'wp-includes/js/tinymce/skins/lightgray/content.min.css'),(10793,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot'),(10794,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg'),(10795,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf'),(10796,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff'),(10797,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot'),(10798,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg'),(10799,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf'),(10800,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.woff'),(10801,'wp-includes/js/tinymce/skins/lightgray/img/anchor.gif'),(10802,'wp-includes/js/tinymce/skins/lightgray/img/loader.gif'),(10803,'wp-includes/js/tinymce/skins/lightgray/img/object.gif'),(10804,'wp-includes/js/tinymce/skins/lightgray/img/trans.gif'),(10805,'wp-includes/js/tinymce/skins/lightgray/skin.min.css'),(10806,'wp-includes/js/tinymce/skins/wordpress/images/audio.png'),(10807,'wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png'),(10808,'wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png'),(10809,'wp-includes/js/tinymce/skins/wordpress/images/embedded.png'),(10810,'wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png'),(10811,'wp-includes/js/tinymce/skins/wordpress/images/gallery.png'),(10812,'wp-includes/js/tinymce/skins/wordpress/images/more-2x.png'),(10813,'wp-includes/js/tinymce/skins/wordpress/images/more.png'),(10814,'wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png'),(10815,'wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png'),(10816,'wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png'),(10817,'wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png'),(10818,'wp-includes/js/tinymce/skins/wordpress/images/video.png'),(10819,'wp-includes/js/tinymce/skins/wordpress/wp-content.css'),(10820,'wp-includes/js/tinymce/themes/inlite/theme.js'),(10821,'wp-includes/js/tinymce/themes/inlite/theme.min.js'),(10822,'wp-includes/js/tinymce/themes/modern/theme.js'),(10823,'wp-includes/js/tinymce/themes/modern/theme.min.js'),(10824,'wp-includes/js/tinymce/tiny_mce_popup.js'),(10825,'wp-includes/js/tinymce/tinymce.min.js'),(10826,'wp-includes/js/tinymce/utils/editable_selects.js'),(10827,'wp-includes/js/tinymce/utils/form_utils.js'),(10828,'wp-includes/js/tinymce/utils/mctabs.js'),(10829,'wp-includes/js/tinymce/utils/validate.js'),(10830,'wp-includes/js/tinymce/wp-tinymce.js'),(10831,'wp-includes/js/tinymce/wp-tinymce.php'),(10832,'wp-includes/js/tw-sack.js'),(10833,'wp-includes/js/tw-sack.min.js'),(10834,'wp-includes/js/twemoji.js'),(10835,'wp-includes/js/twemoji.min.js'),(10836,'wp-includes/js/underscore.js'),(10837,'wp-includes/js/underscore.min.js'),(10838,'wp-includes/js/utils.js'),(10839,'wp-includes/js/utils.min.js'),(10840,'wp-includes/js/wp-ajax-response.js'),(10841,'wp-includes/js/wp-ajax-response.min.js'),(10842,'wp-includes/js/wp-api.js'),(10843,'wp-includes/js/wp-api.min.js'),(10844,'wp-includes/js/wp-auth-check.js'),(10845,'wp-includes/js/wp-auth-check.min.js'),(10846,'wp-includes/js/wp-backbone.js'),(10847,'wp-includes/js/wp-backbone.min.js'),(10848,'wp-includes/js/wp-custom-header.js'),(10849,'wp-includes/js/wp-custom-header.min.js'),(10850,'wp-includes/js/wp-embed-template.js'),(10851,'wp-includes/js/wp-embed-template.min.js'),(10852,'wp-includes/js/wp-embed.js'),(10853,'wp-includes/js/wp-embed.min.js'),(10854,'wp-includes/js/wp-emoji-loader.js'),(10855,'wp-includes/js/wp-emoji-loader.min.js'),(10856,'wp-includes/js/wp-emoji-release.min.js'),(10857,'wp-includes/js/wp-emoji.js'),(10858,'wp-includes/js/wp-emoji.min.js'),(10859,'wp-includes/js/wp-list-revisions.js'),(10860,'wp-includes/js/wp-list-revisions.min.js'),(10861,'wp-includes/js/wp-lists.js'),(10862,'wp-includes/js/wp-lists.min.js'),(10863,'wp-includes/js/wp-pointer.js'),(10864,'wp-includes/js/wp-pointer.min.js'),(10865,'wp-includes/js/wp-sanitize.js'),(10866,'wp-includes/js/wp-sanitize.min.js'),(10867,'wp-includes/js/wp-util.js'),(10868,'wp-includes/js/wp-util.min.js'),(10869,'wp-includes/js/wpdialog.js'),(10870,'wp-includes/js/wpdialog.min.js'),(10871,'wp-includes/js/wplink.js'),(10872,'wp-includes/js/wplink.min.js'),(10873,'wp-includes/js/zxcvbn-async.js'),(10874,'wp-includes/js/zxcvbn-async.min.js'),(10875,'wp-includes/js/zxcvbn.min.js'),(10876,'wp-includes/kses.php'),(10877,'wp-includes/l10n.php'),(10878,'wp-includes/link-template.php'),(10879,'wp-includes/load.php'),(10880,'wp-includes/locale.php'),(10881,'wp-includes/media-template.php'),(10882,'wp-includes/media.php'),(10883,'wp-includes/meta.php'),(10884,'wp-includes/ms-blogs.php'),(10885,'wp-includes/ms-default-constants.php'),(10886,'wp-includes/ms-default-filters.php'),(10887,'wp-includes/ms-deprecated.php'),(10888,'wp-includes/ms-files.php'),(10889,'wp-includes/ms-functions.php'),(10890,'wp-includes/ms-load.php'),(10891,'wp-includes/ms-network.php'),(10892,'wp-includes/ms-settings.php'),(10893,'wp-includes/ms-site.php'),(10894,'wp-includes/nav-menu-template.php'),(10895,'wp-includes/nav-menu.php'),(10896,'wp-includes/option.php'),(10897,'wp-includes/php-compat/readonly.php'),(10898,'wp-includes/pluggable-deprecated.php'),(10899,'wp-includes/pluggable.php'),(10900,'wp-includes/plugin.php'),(10901,'wp-includes/pomo/entry.php'),(10902,'wp-includes/pomo/mo.php'),(10903,'wp-includes/pomo/plural-forms.php'),(10904,'wp-includes/pomo/po.php'),(10905,'wp-includes/pomo/streams.php'),(10906,'wp-includes/pomo/translations.php'),(10907,'wp-includes/post-formats.php'),(10908,'wp-includes/post-template.php'),(10909,'wp-includes/post-thumbnail-template.php'),(10910,'wp-includes/post.php'),(10911,'wp-includes/query.php'),(10912,'wp-includes/random_compat/byte_safe_strings.php'),(10913,'wp-includes/random_compat/cast_to_int.php'),(10914,'wp-includes/random_compat/error_polyfill.php'),(10915,'wp-includes/random_compat/random.php'),(10916,'wp-includes/random_compat/random_bytes_com_dotnet.php'),(10917,'wp-includes/random_compat/random_bytes_dev_urandom.php'),(10918,'wp-includes/random_compat/random_bytes_libsodium.php'),(10919,'wp-includes/random_compat/random_bytes_libsodium_legacy.php'),(10920,'wp-includes/random_compat/random_bytes_mcrypt.php'),(10921,'wp-includes/random_compat/random_int.php'),(10922,'wp-includes/registration-functions.php'),(10923,'wp-includes/registration.php'),(10924,'wp-includes/rest-api/class-wp-rest-request.php'),(10925,'wp-includes/rest-api/class-wp-rest-response.php'),(10926,'wp-includes/rest-api/class-wp-rest-server.php'),(10927,'wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php'),(10928,'wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php'),(10929,'wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php'),(10930,'wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php'),(10931,'wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php'),(10932,'wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php'),(10933,'wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php'),(10934,'wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php'),(10935,'wp-includes/rest-api/endpoints/class-wp-rest-controller.php'),(10936,'wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php'),(10937,'wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php'),(10938,'wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php'),(10939,'wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php'),(10940,'wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php'),(10941,'wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php'),(10942,'wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php'),(10943,'wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php'),(10944,'wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php'),(10945,'wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php'),(10946,'wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php'),(10947,'wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php'),(10948,'wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php'),(10949,'wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php'),(10950,'wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php'),(10951,'wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php'),(10952,'wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php'),(10953,'wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php'),(10954,'wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php'),(10955,'wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php'),(10956,'wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php'),(10957,'wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php'),(10958,'wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php'),(10959,'wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php'),(10960,'wp-includes/rest-api/fields/class-wp-rest-meta-fields.php'),(10961,'wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php'),(10962,'wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php'),(10963,'wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php'),(10964,'wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php'),(10965,'wp-includes/rest-api/search/class-wp-rest-post-search-handler.php'),(10966,'wp-includes/rest-api/search/class-wp-rest-search-handler.php'),(10967,'wp-includes/rest-api/search/class-wp-rest-term-search-handler.php'),(10968,'wp-includes/rest-api.php'),(10969,'wp-includes/revision.php'),(10970,'wp-includes/rewrite.php'),(10971,'wp-includes/robots-template.php'),(10972,'wp-includes/rss-functions.php'),(10973,'wp-includes/rss.php'),(10974,'wp-includes/script-loader.php'),(10975,'wp-includes/session.php'),(10976,'wp-includes/shortcodes.php'),(10977,'wp-includes/sitemaps/class-wp-sitemaps-index.php'),(10978,'wp-includes/sitemaps/class-wp-sitemaps-provider.php'),(10979,'wp-includes/sitemaps/class-wp-sitemaps-registry.php'),(10980,'wp-includes/sitemaps/class-wp-sitemaps-renderer.php'),(10981,'wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php'),(10982,'wp-includes/sitemaps/class-wp-sitemaps.php'),(10983,'wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php'),(10984,'wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php'),(10985,'wp-includes/sitemaps/providers/class-wp-sitemaps-users.php'),(10986,'wp-includes/sitemaps.php'),(10987,'wp-includes/sodium_compat/LICENSE'),(10988,'wp-includes/sodium_compat/autoload-php7.php'),(10989,'wp-includes/sodium_compat/autoload.php'),(10990,'wp-includes/sodium_compat/composer.json'),(10991,'wp-includes/sodium_compat/lib/constants.php'),(10992,'wp-includes/sodium_compat/lib/namespaced.php'),(10993,'wp-includes/sodium_compat/lib/php72compat.php'),(10994,'wp-includes/sodium_compat/lib/php72compat_const.php'),(10995,'wp-includes/sodium_compat/lib/ristretto255.php'),(10996,'wp-includes/sodium_compat/lib/sodium_compat.php'),(10997,'wp-includes/sodium_compat/lib/stream-xchacha20.php'),(10998,'wp-includes/sodium_compat/namespaced/Compat.php'),(10999,'wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php'),(11000,'wp-includes/sodium_compat/namespaced/Core/ChaCha20/Ctx.php'),(11001,'wp-includes/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php'),(11002,'wp-includes/sodium_compat/namespaced/Core/ChaCha20.php'),(11003,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Fe.php'),(11004,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php'),(11005,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php'),(11006,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php'),(11007,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php'),(11008,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php'),(11009,'wp-includes/sodium_compat/namespaced/Core/Curve25519/H.php'),(11010,'wp-includes/sodium_compat/namespaced/Core/Curve25519.php'),(11011,'wp-includes/sodium_compat/namespaced/Core/Ed25519.php'),(11012,'wp-includes/sodium_compat/namespaced/Core/HChaCha20.php'),(11013,'wp-includes/sodium_compat/namespaced/Core/HSalsa20.php'),(11014,'wp-includes/sodium_compat/namespaced/Core/Poly1305/State.php'),(11015,'wp-includes/sodium_compat/namespaced/Core/Poly1305.php'),(11016,'wp-includes/sodium_compat/namespaced/Core/Salsa20.php'),(11017,'wp-includes/sodium_compat/namespaced/Core/SipHash.php'),(11018,'wp-includes/sodium_compat/namespaced/Core/Util.php'),(11019,'wp-includes/sodium_compat/namespaced/Core/X25519.php'),(11020,'wp-includes/sodium_compat/namespaced/Core/XChaCha20.php'),(11021,'wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php'),(11022,'wp-includes/sodium_compat/namespaced/Crypto.php'),(11023,'wp-includes/sodium_compat/namespaced/File.php'),(11024,'wp-includes/sodium_compat/src/Compat.php'),(11025,'wp-includes/sodium_compat/src/Core/BLAKE2b.php'),(11026,'wp-includes/sodium_compat/src/Core/Base64/Common.php'),(11027,'wp-includes/sodium_compat/src/Core/Base64/Original.php'),(11028,'wp-includes/sodium_compat/src/Core/Base64/UrlSafe.php'),(11029,'wp-includes/sodium_compat/src/Core/ChaCha20/Ctx.php'),(11030,'wp-includes/sodium_compat/src/Core/ChaCha20/IetfCtx.php'),(11031,'wp-includes/sodium_compat/src/Core/ChaCha20.php'),(11032,'wp-includes/sodium_compat/src/Core/Curve25519/Fe.php'),(11033,'wp-includes/sodium_compat/src/Core/Curve25519/Ge/Cached.php'),(11034,'wp-includes/sodium_compat/src/Core/Curve25519/Ge/P1p1.php'),(11035,'wp-includes/sodium_compat/src/Core/Curve25519/Ge/P2.php'),(11036,'wp-includes/sodium_compat/src/Core/Curve25519/Ge/P3.php'),(11037,'wp-includes/sodium_compat/src/Core/Curve25519/Ge/Precomp.php'),(11038,'wp-includes/sodium_compat/src/Core/Curve25519/H.php'),(11039,'wp-includes/sodium_compat/src/Core/Curve25519/README.md'),(11040,'wp-includes/sodium_compat/src/Core/Curve25519.php'),(11041,'wp-includes/sodium_compat/src/Core/Ed25519.php'),(11042,'wp-includes/sodium_compat/src/Core/HChaCha20.php'),(11043,'wp-includes/sodium_compat/src/Core/HSalsa20.php'),(11044,'wp-includes/sodium_compat/src/Core/Poly1305/State.php'),(11045,'wp-includes/sodium_compat/src/Core/Poly1305.php'),(11046,'wp-includes/sodium_compat/src/Core/Ristretto255.php'),(11047,'wp-includes/sodium_compat/src/Core/Salsa20.php'),(11048,'wp-includes/sodium_compat/src/Core/SecretStream/State.php'),(11049,'wp-includes/sodium_compat/src/Core/SipHash.php'),(11050,'wp-includes/sodium_compat/src/Core/Util.php'),(11051,'wp-includes/sodium_compat/src/Core/X25519.php'),(11052,'wp-includes/sodium_compat/src/Core/XChaCha20.php'),(11053,'wp-includes/sodium_compat/src/Core/XSalsa20.php'),(11054,'wp-includes/sodium_compat/src/Core32/BLAKE2b.php'),(11055,'wp-includes/sodium_compat/src/Core32/ChaCha20/Ctx.php'),(11056,'wp-includes/sodium_compat/src/Core32/ChaCha20/IetfCtx.php'),(11057,'wp-includes/sodium_compat/src/Core32/ChaCha20.php'),(11058,'wp-includes/sodium_compat/src/Core32/Curve25519/Fe.php'),(11059,'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Cached.php'),(11060,'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php'),(11061,'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P2.php'),(11062,'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P3.php'),(11063,'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php'),(11064,'wp-includes/sodium_compat/src/Core32/Curve25519/H.php'),(11065,'wp-includes/sodium_compat/src/Core32/Curve25519/README.md'),(11066,'wp-includes/sodium_compat/src/Core32/Curve25519.php'),(11067,'wp-includes/sodium_compat/src/Core32/Ed25519.php'),(11068,'wp-includes/sodium_compat/src/Core32/HChaCha20.php'),(11069,'wp-includes/sodium_compat/src/Core32/HSalsa20.php'),(11070,'wp-includes/sodium_compat/src/Core32/Int32.php'),(11071,'wp-includes/sodium_compat/src/Core32/Int64.php'),(11072,'wp-includes/sodium_compat/src/Core32/Poly1305/State.php'),(11073,'wp-includes/sodium_compat/src/Core32/Poly1305.php'),(11074,'wp-includes/sodium_compat/src/Core32/Salsa20.php'),(11075,'wp-includes/sodium_compat/src/Core32/SecretStream/State.php'),(11076,'wp-includes/sodium_compat/src/Core32/SipHash.php'),(11077,'wp-includes/sodium_compat/src/Core32/Util.php'),(11078,'wp-includes/sodium_compat/src/Core32/X25519.php'),(11079,'wp-includes/sodium_compat/src/Core32/XChaCha20.php'),(11080,'wp-includes/sodium_compat/src/Core32/XSalsa20.php'),(11081,'wp-includes/sodium_compat/src/Crypto.php'),(11082,'wp-includes/sodium_compat/src/Crypto32.php'),(11083,'wp-includes/sodium_compat/src/File.php'),(11084,'wp-includes/sodium_compat/src/PHP52/SplFixedArray.php'),(11085,'wp-includes/sodium_compat/src/SodiumException.php'),(11086,'wp-includes/spl-autoload-compat.php'),(11087,'wp-includes/taxonomy.php'),(11088,'wp-includes/template-canvas.php'),(11089,'wp-includes/template-loader.php'),(11090,'wp-includes/template.php'),(11091,'wp-includes/theme-compat/comments.php'),(11092,'wp-includes/theme-compat/embed-404.php'),(11093,'wp-includes/theme-compat/embed-content.php'),(11094,'wp-includes/theme-compat/embed.php'),(11095,'wp-includes/theme-compat/footer-embed.php'),(11096,'wp-includes/theme-compat/footer.php'),(11097,'wp-includes/theme-compat/header-embed.php'),(11098,'wp-includes/theme-compat/header.php'),(11099,'wp-includes/theme-compat/sidebar.php'),(11100,'wp-includes/theme-i18n.json'),(11101,'wp-includes/theme-templates.php'),(11102,'wp-includes/theme.json'),(11103,'wp-includes/theme.php'),(11104,'wp-includes/update.php'),(11105,'wp-includes/user.php'),(11106,'wp-includes/vars.php'),(11107,'wp-includes/version.php'),(11108,'wp-includes/widgets/class-wp-nav-menu-widget.php'),(11109,'wp-includes/widgets/class-wp-widget-archives.php'),(11110,'wp-includes/widgets/class-wp-widget-block.php'),(11111,'wp-includes/widgets/class-wp-widget-calendar.php'),(11112,'wp-includes/widgets/class-wp-widget-categories.php'),(11113,'wp-includes/widgets/class-wp-widget-custom-html.php'),(11114,'wp-includes/widgets/class-wp-widget-links.php'),(11115,'wp-includes/widgets/class-wp-widget-media-audio.php'),(11116,'wp-includes/widgets/class-wp-widget-media-gallery.php'),(11117,'wp-includes/widgets/class-wp-widget-media-image.php'),(11118,'wp-includes/widgets/class-wp-widget-media-video.php'),(11119,'wp-includes/widgets/class-wp-widget-media.php'),(11120,'wp-includes/widgets/class-wp-widget-meta.php'),(11121,'wp-includes/widgets/class-wp-widget-pages.php'),(11122,'wp-includes/widgets/class-wp-widget-recent-comments.php'),(11123,'wp-includes/widgets/class-wp-widget-recent-posts.php'),(11124,'wp-includes/widgets/class-wp-widget-rss.php'),(11125,'wp-includes/widgets/class-wp-widget-search.php'),(11126,'wp-includes/widgets/class-wp-widget-tag-cloud.php'),(11127,'wp-includes/widgets/class-wp-widget-text.php'),(11128,'wp-includes/widgets.php'),(11129,'wp-includes/wlwmanifest.xml'),(11130,'wp-includes/wp-db.php'),(11131,'wp-includes/wp-diff.php'),(11132,'wp-links-opml.php'),(11133,'wp-load.php'),(11134,'wp-login.php'),(11135,'wp-mail.php'),(11136,'wp-settings.php'),(11137,'wp-signup.php'),(11138,'wp-trackback.php'),(11139,'xmlrpc.php');
/*!40000 ALTER TABLE `wp_wfknownfilelist` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wflivetraffichuman`
--

DROP TABLE IF EXISTS `wp_wflivetraffichuman`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wflivetraffichuman` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `identifier` binary(32) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `expiration` int(10) unsigned NOT NULL,
  PRIMARY KEY (`IP`,`identifier`),
  KEY `expiration` (`expiration`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wflivetraffichuman`
--

LOCK TABLES `wp_wflivetraffichuman` WRITE;
/*!40000 ALTER TABLE `wp_wflivetraffichuman` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wflivetraffichuman` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wflocs`
--

DROP TABLE IF EXISTS `wp_wflocs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wflocs` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `ctime` int(10) unsigned NOT NULL,
  `failed` tinyint(3) unsigned NOT NULL,
  `city` varchar(255) DEFAULT '',
  `region` varchar(255) DEFAULT '',
  `countryName` varchar(255) DEFAULT '',
  `countryCode` char(2) DEFAULT '',
  `lat` float(10,7) DEFAULT '0.0000000',
  `lon` float(10,7) DEFAULT '0.0000000',
  PRIMARY KEY (`IP`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wflocs`
--

LOCK TABLES `wp_wflocs` WRITE;
/*!40000 ALTER TABLE `wp_wflocs` DISABLE KEYS */;
INSERT INTO `wp_wflocs` VALUES (_binary '$	@s_l\à&4C±8\Ì',1652698367,0,'Ernakulam','Kerala','India','IN',9.9628000,76.2964020);
/*!40000 ALTER TABLE `wp_wflocs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wflogins`
--

DROP TABLE IF EXISTS `wp_wflogins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wflogins` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `hitID` int(11) DEFAULT NULL,
  `ctime` double(17,6) unsigned NOT NULL,
  `fail` tinyint(3) unsigned NOT NULL,
  `action` varchar(40) NOT NULL,
  `username` varchar(255) NOT NULL,
  `userID` int(10) unsigned NOT NULL,
  `IP` binary(16) DEFAULT NULL,
  `UA` text,
  PRIMARY KEY (`id`),
  KEY `k1` (`IP`,`fail`),
  KEY `hitID` (`hitID`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wflogins`
--

LOCK TABLES `wp_wflogins` WRITE;
/*!40000 ALTER TABLE `wp_wflogins` DISABLE KEYS */;
INSERT INTO `wp_wflogins` VALUES (1,1,1652698349.949535,0,'logout','admin',1,_binary '$	@s_l\à&4C±8\Ì','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36'),(2,2,1652698365.996126,0,'loginOK','admin',1,_binary '$	@s_l\à&4C±8\Ì','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36');
/*!40000 ALTER TABLE `wp_wflogins` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfls_2fa_secrets`
--

DROP TABLE IF EXISTS `wp_wfls_2fa_secrets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfls_2fa_secrets` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `secret` tinyblob NOT NULL,
  `recovery` blob NOT NULL,
  `ctime` int(10) unsigned NOT NULL,
  `vtime` int(10) unsigned NOT NULL,
  `mode` enum('authenticator') NOT NULL DEFAULT 'authenticator',
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfls_2fa_secrets`
--

LOCK TABLES `wp_wfls_2fa_secrets` WRITE;
/*!40000 ALTER TABLE `wp_wfls_2fa_secrets` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfls_2fa_secrets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfls_settings`
--

DROP TABLE IF EXISTS `wp_wfls_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfls_settings` (
  `name` varchar(191) NOT NULL DEFAULT '',
  `value` longblob,
  `autoload` enum('no','yes') NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfls_settings`
--

LOCK TABLES `wp_wfls_settings` WRITE;
/*!40000 ALTER TABLE `wp_wfls_settings` DISABLE KEYS */;
INSERT INTO `wp_wfls_settings` VALUES ('2fa-user-grace-period',_binary '10','yes'),('allow-disabling-ntp',_binary '1','yes'),('allow-xml-rpc',_binary '1','yes'),('captcha-stats',_binary '{\"counts\":[0,0,0,0,0,0,0,0,0,0,0],\"avg\":0}','yes'),('delete-deactivation','','yes'),('enable-auth-captcha','','yes'),('enable-woocommerce-integration','','yes'),('global-notices',_binary '[]','yes'),('ip-source','','yes'),('ip-trusted-proxies','','yes'),('last-secret-refresh',_binary '1652696026','yes'),('ntp-failure-count',_binary '2','yes'),('recaptcha-threshold',_binary '0.5','yes'),('remember-device','','yes'),('remember-device-duration',_binary '2592000','yes'),('require-2fa-grace-period-enabled','','yes'),('require-2fa.administrator','','yes'),('shared-hash-secret',_binary '2748ab9e0904416183184284caa1f4f4deb86577b414fccd7067e14dcbc0f20d','yes'),('shared-symmetric-secret',_binary '390980ed1f7164d2d4fc8089fae450bd768f040539c45eb4d957c41d9041cdb7','yes'),('whitelisted','','yes'),('xmlrpc-enabled',_binary '1','yes');
/*!40000 ALTER TABLE `wp_wfls_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfnotifications`
--

DROP TABLE IF EXISTS `wp_wfnotifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfnotifications` (
  `id` varchar(32) NOT NULL DEFAULT '',
  `new` tinyint(3) unsigned NOT NULL DEFAULT '1',
  `category` varchar(255) NOT NULL,
  `priority` int(11) NOT NULL DEFAULT '1000',
  `ctime` int(10) unsigned NOT NULL,
  `html` text NOT NULL,
  `links` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfnotifications`
--

LOCK TABLES `wp_wfnotifications` WRITE;
/*!40000 ALTER TABLE `wp_wfnotifications` DISABLE KEYS */;
INSERT INTO `wp_wfnotifications` VALUES ('network-GQ2TGNZV',1,'toupp-20211122',100,1652696093,'<p><strong>Wordfence Terms of Service and End User License Agreement Update</strong></p>\n<p>Please review the updated Terms of Service with the new Wordfence End User License Agreement.\n</p>\n<p><a href=\"https://www.wordfence.com/terms-of-service/?utm_source=plugin&amp;utm_medium=pluginalert&amp;utm_campaign=toupp20211122\" class=\"wf-btn wf-btn-callout wf-btn-primary\" target=\"_blank\">Terms of Service</a> <a href=\"https://www.wordfence.com/license-terms-and-conditions/?utm_source=plugin&amp;utm_medium=pluginalert&amp;utm_campaign=toupp20211122\" class=\"wf-btn wf-btn-callout wf-btn-primary\" target=\"_blank\">End User License Agreement</a></p>','[]'),('site-AEAAAAA',0,'wfplugin_updates',502,1652698266,'<a href=\"https://demoweblinks.in/padmini/wp-admin/update-core.php\">An update is available for 4 themes</a>','[]'),('site-AIAAAAA',0,'wfplugin_scan',502,1652698420,'<a href=\"https://demoweblinks.in/padmini/wp-admin/admin.php?page=WordfenceScan\">4 issues found in most recent scan</a>','[]');
/*!40000 ALTER TABLE `wp_wfnotifications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfpendingissues`
--

DROP TABLE IF EXISTS `wp_wfpendingissues`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfpendingissues` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `time` int(10) unsigned NOT NULL,
  `lastUpdated` int(10) unsigned NOT NULL,
  `status` varchar(10) NOT NULL,
  `type` varchar(20) NOT NULL,
  `severity` tinyint(3) unsigned NOT NULL,
  `ignoreP` char(32) NOT NULL,
  `ignoreC` char(32) NOT NULL,
  `shortMsg` varchar(255) NOT NULL,
  `longMsg` text,
  `data` text,
  PRIMARY KEY (`id`),
  KEY `lastUpdated` (`lastUpdated`),
  KEY `status` (`status`),
  KEY `ignoreP` (`ignoreP`),
  KEY `ignoreC` (`ignoreC`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfpendingissues`
--

LOCK TABLES `wp_wfpendingissues` WRITE;
/*!40000 ALTER TABLE `wp_wfpendingissues` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfpendingissues` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfreversecache`
--

DROP TABLE IF EXISTS `wp_wfreversecache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfreversecache` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `host` varchar(255) NOT NULL,
  `lastUpdate` int(10) unsigned NOT NULL,
  PRIMARY KEY (`IP`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfreversecache`
--

LOCK TABLES `wp_wfreversecache` WRITE;
/*!40000 ALTER TABLE `wp_wfreversecache` DISABLE KEYS */;
INSERT INTO `wp_wfreversecache` VALUES (_binary '$	@s_l\à&4C±8\Ì','2409:4073:313:5f6c:e010:2634:43b1:38cc',1652698366);
/*!40000 ALTER TABLE `wp_wfreversecache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfsnipcache`
--

DROP TABLE IF EXISTS `wp_wfsnipcache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfsnipcache` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `IP` varchar(45) NOT NULL DEFAULT '',
  `expiration` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `body` varchar(255) NOT NULL DEFAULT '',
  `count` int(10) unsigned NOT NULL DEFAULT '0',
  `type` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `expiration` (`expiration`),
  KEY `IP` (`IP`),
  KEY `type` (`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfsnipcache`
--

LOCK TABLES `wp_wfsnipcache` WRITE;
/*!40000 ALTER TABLE `wp_wfsnipcache` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfsnipcache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfstatus`
--

DROP TABLE IF EXISTS `wp_wfstatus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfstatus` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `ctime` double(17,6) unsigned NOT NULL,
  `level` tinyint(3) unsigned NOT NULL,
  `type` char(5) NOT NULL,
  `msg` varchar(1000) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `k1` (`ctime`),
  KEY `k2` (`type`)
) ENGINE=InnoDB AUTO_INCREMENT=1186 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfstatus`
--

LOCK TABLES `wp_wfstatus` WRITE;
/*!40000 ALTER TABLE `wp_wfstatus` DISABLE KEYS */;
INSERT INTO `wp_wfstatus` VALUES (1,1652696100.198384,10,'info','SUM_PREP:Preparing a new scan.'),(2,1652696100.200603,1,'info','Initiating quick scan'),(3,1652696100.203161,10,'info','SUM_START:Checking Web Application Firewall status'),(4,1652696100.203549,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(5,1652696100.207653,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(6,1652696100.223764,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(7,1652696100.226844,1,'info','-------------------'),(8,1652696100.227332,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 74 MB'),(9,1652696100.227478,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(10,1652696100.227599,10,'info','SUM_FINAL:Scan complete. You have 14 new issues to fix. See below.'),(11,1652696146.380120,10,'info','SUM_PREP:Preparing a new scan.'),(12,1652696146.384573,1,'info','Contacting Wordfence to initiate scan'),(13,1652696147.516788,10,'info','SUM_PAIDONLY:Check if your site is being Spamvertized is for paid members only'),(14,1652696149.519139,10,'info','SUM_PAIDONLY:Checking if your IP is generating spam is for paid members only'),(15,1652696151.520941,10,'info','SUM_PAIDONLY:Checking if your site is on a domain blocklist is for paid members only'),(16,1652696153.527894,10,'info','SUM_START:Checking for the most secure way to get IPs'),(17,1652696153.533047,10,'info','SUM_ENDSKIPPED:Checking for the most secure way to get IPs'),(18,1652696153.541708,10,'info','SUM_START:Scanning to check available disk space'),(19,1652696153.544745,2,'info','Total disk space: 1.48 TB -- Free disk space: 843.1 GB'),(20,1652696153.544983,2,'info','The disk has 863334.18 MB available'),(21,1652696153.545143,10,'info','SUM_ENDOK:Scanning to check available disk space'),(22,1652696153.552562,10,'info','SUM_START:Checking Web Application Firewall status'),(23,1652696153.555184,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(24,1652696153.562931,10,'info','SUM_START:Checking for future GeoIP support'),(25,1652696153.565766,10,'info','SUM_ENDOK:Checking for future GeoIP support'),(26,1652696153.573803,10,'info','SUM_START:Checking for paths skipped due to scan settings'),(27,1652696153.578006,10,'info','SUM_ENDOK:Checking for paths skipped due to scan settings'),(28,1652696153.586296,2,'info','Getting plugin list from WordPress'),(29,1652696153.590188,2,'info','Found 11 plugins'),(30,1652696153.590562,2,'info','Getting theme list from WordPress'),(31,1652696153.592430,2,'info','Found 6 themes'),(32,1652696153.759582,10,'info','SUM_START:Fetching core, theme and plugin file signatures from Wordfence'),(33,1652696156.262255,10,'info','SUM_ENDSUCCESS:Fetching core, theme and plugin file signatures from Wordfence'),(34,1652696156.268769,10,'info','SUM_START:Fetching list of known malware files from Wordfence'),(35,1652696158.098142,10,'info','SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),(36,1652696158.104840,10,'info','SUM_START:Fetching list of known core files from Wordfence'),(37,1652696159.952371,10,'info','SUM_ENDSUCCESS:Fetching list of known core files from Wordfence'),(38,1652696159.960929,10,'info','SUM_START:Comparing core WordPress files against originals in repository'),(39,1652696159.964063,10,'info','SUM_DISABLED:Skipping theme scan'),(40,1652696159.964646,10,'info','SUM_DISABLED:Skipping plugin scan'),(41,1652696159.967987,10,'info','SUM_START:Scanning for known malware files'),(42,1652696159.977037,10,'info','SUM_START:Scanning for unknown files in wp-admin and wp-includes'),(43,1652696160.000283,2,'info','500 files indexed'),(44,1652696160.041822,2,'info','1000 files indexed'),(45,1652696160.068392,2,'info','1500 files indexed'),(46,1652696160.092220,2,'info','2000 files indexed'),(47,1652696160.131792,2,'info','2500 files indexed'),(48,1652696160.176362,2,'info','3000 files indexed'),(49,1652696160.235551,2,'info','3500 files indexed'),(50,1652696160.303087,2,'info','4000 files indexed'),(51,1652696160.346604,2,'info','4500 files indexed'),(52,1652696160.374307,2,'info','5000 files indexed'),(53,1652696160.534281,2,'info','5500 files indexed'),(54,1652696160.565134,2,'info','6000 files indexed'),(55,1652696160.575630,2,'info','6500 files indexed'),(56,1652696160.603707,2,'info','7000 files indexed'),(57,1652696160.643727,2,'info','7500 files indexed'),(58,1652696160.681481,2,'info','8000 files indexed'),(59,1652696160.718547,2,'info','8500 files indexed'),(60,1652696160.759446,2,'info','9000 files indexed'),(61,1652696160.792727,2,'info','9500 files indexed'),(62,1652696160.801912,2,'info','10000 files indexed'),(63,1652696160.810462,2,'info','10500 files indexed'),(64,1652696160.819071,2,'info','10935 files indexed'),(65,1652696161.014110,2,'info','Analyzed 100 files containing 1.7 MB of data so far'),(66,1652696161.145439,2,'info','Analyzed 200 files containing 2.89 MB of data so far'),(67,1652696161.317247,2,'info','Analyzed 300 files containing 4.09 MB of data so far'),(68,1652696161.517996,2,'info','Analyzed 400 files containing 6.89 MB of data so far'),(69,1652696161.849313,2,'info','Analyzed 500 files containing 7.79 MB of data so far'),(70,1652696162.012245,2,'info','Analyzed 600 files containing 8.6 MB of data so far'),(71,1652696162.145836,2,'info','Analyzed 700 files containing 9.27 MB of data so far'),(72,1652696162.301307,2,'info','Analyzed 800 files containing 10.8 MB of data so far'),(73,1652696162.452748,2,'info','Analyzed 900 files containing 12.98 MB of data so far'),(74,1652696162.601671,2,'info','Analyzed 1000 files containing 14.09 MB of data so far'),(75,1652696162.766405,2,'info','Analyzed 1100 files containing 15.63 MB of data so far'),(76,1652696162.891879,2,'info','Analyzed 1200 files containing 16.13 MB of data so far'),(77,1652696165.538684,2,'info','Analyzed 1300 files containing 17.92 MB of data so far'),(78,1652696165.721098,2,'info','Analyzed 1400 files containing 19.3 MB of data so far'),(79,1652696165.877525,2,'info','Analyzed 1500 files containing 21.15 MB of data so far'),(80,1652696166.035153,2,'info','Analyzed 1600 files containing 23.78 MB of data so far'),(81,1652696166.167698,2,'info','Analyzed 1700 files containing 24.51 MB of data so far'),(82,1652696166.302565,2,'info','Analyzed 1800 files containing 25.89 MB of data so far'),(83,1652696166.446879,2,'info','Analyzed 1900 files containing 27.05 MB of data so far'),(84,1652696166.602498,2,'info','Analyzed 2000 files containing 28.27 MB of data so far'),(85,1652696166.739474,2,'info','Analyzed 2100 files containing 29.17 MB of data so far'),(86,1652696166.886639,2,'info','Analyzed 2200 files containing 29.56 MB of data so far'),(87,1652696167.065426,2,'info','Analyzed 2300 files containing 31.59 MB of data so far'),(88,1652696167.206688,2,'info','Analyzed 2400 files containing 32.42 MB of data so far'),(89,1652696167.348912,2,'info','Analyzed 2500 files containing 33.47 MB of data so far'),(90,1652696167.449663,2,'info','Analyzed 2600 files containing 34.01 MB of data so far'),(91,1652696167.553765,2,'info','Analyzed 2700 files containing 34.3 MB of data so far'),(92,1652696167.674355,2,'info','Analyzed 2800 files containing 34.47 MB of data so far'),(93,1652696167.791794,2,'info','Analyzed 2900 files containing 34.65 MB of data so far'),(94,1652696167.928260,2,'info','Analyzed 3000 files containing 34.77 MB of data so far'),(95,1652696168.061740,2,'info','Analyzed 3100 files containing 34.94 MB of data so far'),(96,1652696168.202030,2,'info','Analyzed 3200 files containing 35.13 MB of data so far'),(97,1652696168.323957,2,'info','Analyzed 3300 files containing 35.36 MB of data so far'),(98,1652696168.471098,2,'info','Analyzed 3400 files containing 35.58 MB of data so far'),(99,1652696168.580358,2,'info','Analyzed 3500 files containing 35.69 MB of data so far'),(100,1652696168.751590,2,'info','Analyzed 3600 files containing 35.9 MB of data so far'),(101,1652696168.901337,2,'info','Analyzed 3700 files containing 36.08 MB of data so far'),(102,1652696169.036415,2,'info','Analyzed 3800 files containing 36.23 MB of data so far'),(103,1652696169.189597,2,'info','Analyzed 3900 files containing 36.81 MB of data so far'),(104,1652696169.364249,2,'info','Analyzed 4000 files containing 39.01 MB of data so far'),(105,1652696169.527292,2,'info','Analyzed 4100 files containing 41.61 MB of data so far'),(106,1652696169.628674,2,'info','Analyzed 4200 files containing 42.01 MB of data so far'),(107,1652696169.770136,2,'info','Analyzed 4300 files containing 42.47 MB of data so far'),(108,1652696169.898707,2,'info','Analyzed 4400 files containing 42.54 MB of data so far'),(109,1652696170.021267,2,'info','Analyzed 4500 files containing 43.05 MB of data so far'),(110,1652696170.128946,2,'info','Analyzed 4600 files containing 43.26 MB of data so far'),(111,1652696170.252829,2,'info','Analyzed 4700 files containing 43.64 MB of data so far'),(112,1652696170.366823,2,'info','Analyzed 4800 files containing 44.12 MB of data so far'),(113,1652696170.486384,2,'info','Analyzed 4900 files containing 44.92 MB of data so far'),(114,1652696170.672575,2,'info','Analyzed 5000 files containing 48.45 MB of data so far'),(115,1652696170.827469,2,'info','Analyzed 5100 files containing 49.23 MB of data so far'),(116,1652696170.972213,2,'info','Analyzed 5200 files containing 49.67 MB of data so far'),(117,1652696171.166537,2,'info','Analyzed 5300 files containing 51.68 MB of data so far'),(118,1652696171.318334,2,'info','Analyzed 5400 files containing 53.12 MB of data so far'),(119,1652696171.461268,2,'info','Analyzed 5500 files containing 53.88 MB of data so far'),(120,1652696171.598459,2,'info','Analyzed 5600 files containing 54.02 MB of data so far'),(121,1652696171.761449,2,'info','Analyzed 5700 files containing 54.95 MB of data so far'),(122,1652696171.868924,2,'info','Analyzed 5800 files containing 55.28 MB of data so far'),(123,1652696171.996844,2,'info','Analyzed 5900 files containing 55.95 MB of data so far'),(124,1652696172.095602,2,'info','Analyzed 6000 files containing 56.96 MB of data so far'),(125,1652696172.175252,2,'info','Analyzed 6100 files containing 58.41 MB of data so far'),(126,1652696172.337051,2,'info','Analyzed 6200 files containing 65.84 MB of data so far'),(127,1652696172.438712,2,'info','Analyzed 6300 files containing 68.03 MB of data so far'),(128,1652696172.513866,2,'info','Analyzed 6400 files containing 68.7 MB of data so far'),(129,1652696172.596326,2,'info','Analyzed 6500 files containing 70.04 MB of data so far'),(130,1652696172.667572,2,'info','Analyzed 6600 files containing 70.53 MB of data so far'),(131,1652696172.817874,2,'info','Analyzed 6700 files containing 72.24 MB of data so far'),(132,1652696172.983880,2,'info','Analyzed 6800 files containing 73.25 MB of data so far'),(133,1652696173.113216,2,'info','Analyzed 6900 files containing 73.83 MB of data so far'),(134,1652696173.304560,2,'info','Analyzed 7000 files containing 77 MB of data so far'),(135,1652696173.478640,2,'info','Analyzed 7100 files containing 78.82 MB of data so far'),(136,1652696173.626188,2,'info','Analyzed 7200 files containing 79.86 MB of data so far'),(137,1652696173.741080,2,'info','Analyzed 7300 files containing 80.22 MB of data so far'),(138,1652696173.861516,2,'info','Analyzed 7400 files containing 80.99 MB of data so far'),(139,1652696173.978904,2,'info','Analyzed 7500 files containing 82.1 MB of data so far'),(140,1652696174.114718,2,'info','Analyzed 7600 files containing 82.53 MB of data so far'),(141,1652696174.247269,2,'info','Analyzed 7700 files containing 83.84 MB of data so far'),(142,1652696174.370085,2,'info','Analyzed 7800 files containing 84.09 MB of data so far'),(143,1652696174.523511,2,'info','Analyzed 7900 files containing 84.72 MB of data so far'),(144,1652696174.652640,2,'info','Analyzed 8000 files containing 85.04 MB of data so far'),(145,1652696174.790457,2,'info','Analyzed 8100 files containing 85.24 MB of data so far'),(146,1652696174.916968,2,'info','Analyzed 8200 files containing 85.8 MB of data so far'),(147,1652696175.052696,2,'info','Analyzed 8300 files containing 86.03 MB of data so far'),(148,1652696175.156137,2,'info','Analyzed 8400 files containing 86.93 MB of data so far'),(149,1652696175.253241,2,'info','Analyzed 8500 files containing 87.24 MB of data so far'),(150,1652696175.391101,2,'info','Analyzed 8600 files containing 87.36 MB of data so far'),(151,1652696175.520927,2,'info','Analyzed 8700 files containing 87.96 MB of data so far'),(152,1652696175.712910,2,'info','Analyzed 8800 files containing 89.58 MB of data so far'),(153,1652696175.905654,2,'info','Analyzed 8900 files containing 92.89 MB of data so far'),(154,1652696176.064638,2,'info','Analyzed 9000 files containing 93.95 MB of data so far'),(155,1652696176.223519,2,'info','Analyzed 9100 files containing 97.69 MB of data so far'),(156,1652696176.391216,2,'info','Analyzed 9200 files containing 101.06 MB of data so far'),(157,1652696176.491787,2,'info','Analyzed 9300 files containing 101.86 MB of data so far'),(158,1652696176.601631,2,'info','Analyzed 9400 files containing 102.05 MB of data so far'),(159,1652696176.714002,2,'info','Analyzed 9500 files containing 102.3 MB of data so far'),(160,1652696176.827308,2,'info','Analyzed 9600 files containing 102.61 MB of data so far'),(161,1652696176.940037,2,'info','Analyzed 9700 files containing 102.74 MB of data so far'),(162,1652696177.043855,2,'info','Analyzed 9800 files containing 102.98 MB of data so far'),(163,1652696177.156020,2,'info','Analyzed 9900 files containing 104.59 MB of data so far'),(164,1652696177.350811,2,'info','Analyzed 10000 files containing 107.74 MB of data so far'),(165,1652696177.517803,2,'info','Analyzed 10100 files containing 108.94 MB of data so far'),(166,1652696177.668647,2,'info','Analyzed 10200 files containing 110.3 MB of data so far'),(167,1652696178.088361,2,'info','Analyzed 10300 files containing 123.02 MB of data so far'),(168,1652696178.313522,2,'info','Analyzed 10400 files containing 126.69 MB of data so far'),(169,1652696178.659179,2,'info','Analyzed 10500 files containing 128.51 MB of data so far'),(170,1652696178.836860,2,'info','Analyzed 10600 files containing 130.13 MB of data so far'),(171,1652696179.039671,2,'info','Analyzed 10700 files containing 134.37 MB of data so far'),(172,1652696179.154186,2,'info','Analyzed 10800 files containing 136.01 MB of data so far'),(173,1652696179.312067,2,'info','Analyzed 10900 files containing 137.53 MB of data so far'),(174,1652696179.363900,2,'info','Analyzed 10935 files containing 138.13 MB of data.'),(175,1652696179.364149,10,'info','SUM_ENDOK:Comparing core WordPress files against originals in repository'),(176,1652696179.371366,10,'info','SUM_ENDOK:Scanning for unknown files in wp-admin and wp-includes'),(177,1652696180.419239,10,'info','SUM_ENDOK:Scanning for known malware files'),(178,1652696180.432159,10,'info','SUM_START:Check for publicly accessible configuration files, backup files and logs'),(179,1652696180.445189,10,'info','SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),(180,1652696180.454922,10,'info','SUM_START:Scanning file contents for infections and vulnerabilities'),(181,1652696180.457261,10,'info','SUM_START:Scanning file contents for URLs on a domain blocklist'),(182,1652696183.029918,2,'info','Starting scan of file contents'),(183,1652696186.514104,2,'info','Scanned contents of 53 additional files at 51.46 per second'),(184,1652696187.519989,2,'info','Scanned contents of 100 additional files at 49.12 per second'),(185,1652696188.548732,2,'info','Scanned contents of 157 additional files at 51.23 per second'),(186,1652696189.550448,2,'info','Scanned contents of 206 additional files at 50.66 per second'),(187,1652696190.574746,2,'info','Scanned contents of 266 additional files at 52.25 per second'),(188,1652696191.577827,2,'info','Scanned contents of 319 additional files at 52.35 per second'),(189,1652696192.585463,2,'info','Scanned contents of 369 additional files at 51.96 per second'),(190,1652696193.595878,2,'info','Scanned contents of 417 additional files at 51.41 per second'),(191,1652696194.607171,2,'info','Scanned contents of 470 additional files at 51.52 per second'),(192,1652696195.613196,2,'info','Scanned contents of 516 additional files at 50.94 per second'),(193,1652696196.614954,2,'info','Scanned contents of 579 additional files at 52.02 per second'),(194,1652696197.646648,2,'info','Scanned contents of 624 additional files at 51.31 per second'),(195,1652696198.659959,2,'info','Scanned contents of 669 additional files at 50.77 per second'),(196,1652696199.681069,2,'info','Scanned contents of 706 additional files at 49.73 per second'),(197,1652696200.685522,2,'info','Scanned contents of 760 additional files at 50.00 per second'),(198,1652696204.421214,2,'info','Scanned contents of 779 additional files at 41.14 per second'),(199,1652696205.437330,2,'info','Scanned contents of 819 additional files at 41.05 per second'),(200,1652696206.443018,2,'info','Scanned contents of 867 additional files at 41.37 per second'),(201,1652696207.450464,2,'info','Scanned contents of 926 additional files at 42.16 per second'),(202,1652696208.452390,2,'info','Scanned contents of 979 additional files at 42.62 per second'),(203,1652696209.489512,2,'info','Scanned contents of 1029 additional files at 42.87 per second'),(204,1652696210.495965,2,'info','Scanned contents of 1084 additional files at 43.34 per second'),(205,1652696211.504492,2,'info','Scanned contents of 1136 additional files at 43.66 per second'),(206,1652696212.507705,2,'info','Scanned contents of 1179 additional files at 43.63 per second'),(207,1652696213.530217,2,'info','Scanned contents of 1226 additional files at 43.71 per second'),(208,1652696214.551404,2,'info','Scanned contents of 1281 additional files at 44.07 per second'),(209,1652696215.552014,2,'info','Scanned contents of 1336 additional files at 44.43 per second'),(210,1652696216.412269,2,'info','Scanned contents of 1381 additional files at 44.65 per second'),(211,1652696216.412581,2,'info','Asking Wordfence to check URLs against malware list.'),(212,1652696216.414360,2,'info','Checking 476 host keys against Wordfence scanning servers.'),(213,1652696217.491666,2,'info','Done host key check.'),(214,1652696217.551387,2,'info','Done file contents scan'),(215,1652696217.552858,10,'info','SUM_ENDOK:Scanning file contents for infections and vulnerabilities'),(216,1652696217.558270,10,'info','SUM_ENDOK:Scanning file contents for URLs on a domain blocklist'),(217,1652696217.565732,10,'info','SUM_START:Scanning for publicly accessible quarantined files'),(218,1652696217.568104,10,'info','SUM_ENDOK:Scanning for publicly accessible quarantined files'),(219,1652696217.574533,10,'info','SUM_START:Scanning posts for URLs on a domain blocklist'),(220,1652696217.701045,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(221,1652696217.701635,2,'info','Checking 14 host keys against Wordfence scanning servers.'),(222,1652696218.735219,2,'info','Done host key check.'),(223,1652696218.735725,2,'info','Done examining URLs'),(224,1652696218.787112,10,'info','SUM_ENDOK:Scanning posts for URLs on a domain blocklist'),(225,1652696218.795179,10,'info','SUM_START:Scanning comments for URLs on a domain blocklist'),(226,1652696218.910673,10,'info','SUM_ENDOK:Scanning comments for URLs on a domain blocklist'),(227,1652696218.920325,10,'info','SUM_START:Scanning for weak passwords'),(228,1652696218.925436,2,'info','Starting password strength check on 2 users.'),(229,1652696219.081708,10,'info','SUM_ENDOK:Scanning for weak passwords'),(230,1652696219.094160,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(231,1652696227.580094,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(232,1652696227.588475,10,'info','SUM_START:Scanning for admin users not created through WordPress'),(233,1652696228.674768,10,'info','SUM_ENDOK:Scanning for admin users not created through WordPress'),(234,1652696228.683419,10,'info','SUM_START:Scanning for suspicious site options'),(235,1652696228.741535,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(236,1652696228.742006,2,'info','Done examining URLs'),(237,1652696228.790987,10,'info','SUM_ENDOK:Scanning for suspicious site options'),(238,1652696228.796973,1,'info','-------------------'),(239,1652696228.797384,2,'info','Wordfence used 31.31 MB of memory for scan. Server peak memory usage was: 105.31 MB'),(240,1652696228.797665,1,'info','Scan Complete. Scanned 10935 files, 12 plugins, 6 themes, 86 posts, 0 comments and 1708 URLs in 1 minute 21 seconds.'),(241,1652696228.798656,10,'info','SUM_FINAL:Scan complete. You have 14 new issues to fix. See below.'),(242,1652696749.738185,10,'info','SUM_PREP:Preparing a new scan.'),(243,1652696749.745579,1,'info','Contacting Wordfence to initiate scan'),(244,1652696750.800070,10,'info','SUM_PAIDONLY:Check if your site is being Spamvertized is for paid members only'),(245,1652696752.802456,10,'info','SUM_PAIDONLY:Checking if your IP is generating spam is for paid members only'),(246,1652696754.804288,10,'info','SUM_PAIDONLY:Checking if your site is on a domain blocklist is for paid members only'),(247,1652696756.809308,10,'info','SUM_START:Checking for the most secure way to get IPs'),(248,1652696756.813010,10,'info','SUM_ENDSKIPPED:Checking for the most secure way to get IPs'),(249,1652696756.820258,10,'info','SUM_START:Scanning to check available disk space'),(250,1652696756.822899,2,'info','Total disk space: 1.48 TB -- Free disk space: 843.09 GB'),(251,1652696756.823121,2,'info','The disk has 863326.09 MB available'),(252,1652696756.823256,10,'info','SUM_ENDOK:Scanning to check available disk space'),(253,1652696756.829638,10,'info','SUM_START:Checking Web Application Firewall status'),(254,1652696756.831964,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(255,1652696756.838335,10,'info','SUM_START:Checking for future GeoIP support'),(256,1652696756.840697,10,'info','SUM_ENDOK:Checking for future GeoIP support'),(257,1652696756.847209,10,'info','SUM_START:Checking for paths skipped due to scan settings'),(258,1652696756.849960,10,'info','SUM_ENDOK:Checking for paths skipped due to scan settings'),(259,1652696756.863750,2,'info','Getting plugin list from WordPress'),(260,1652696756.866453,2,'info','Found 11 plugins'),(261,1652696756.866739,2,'info','Getting theme list from WordPress'),(262,1652696756.868425,2,'info','Found 6 themes'),(263,1652696757.026404,10,'info','SUM_START:Fetching core, theme and plugin file signatures from Wordfence'),(264,1652696759.559559,10,'info','SUM_ENDSUCCESS:Fetching core, theme and plugin file signatures from Wordfence'),(265,1652696759.565690,10,'info','SUM_START:Fetching list of known malware files from Wordfence'),(266,1652696759.568467,10,'info','SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),(267,1652696759.582478,10,'info','SUM_START:Fetching list of known core files from Wordfence'),(268,1652696759.601820,10,'info','SUM_ENDSUCCESS:Fetching list of known core files from Wordfence'),(269,1652696759.614013,10,'info','SUM_START:Comparing core WordPress files against originals in repository'),(270,1652696759.616882,10,'info','SUM_DISABLED:Skipping theme scan'),(271,1652696759.617308,10,'info','SUM_DISABLED:Skipping plugin scan'),(272,1652696759.619675,10,'info','SUM_START:Scanning for known malware files'),(273,1652696759.624240,10,'info','SUM_START:Scanning for unknown files in wp-admin and wp-includes'),(274,1652696759.648625,2,'info','500 files indexed'),(275,1652696759.663990,2,'info','1000 files indexed'),(276,1652696759.679546,2,'info','1500 files indexed'),(277,1652696759.691108,2,'info','2000 files indexed'),(278,1652696759.705422,2,'info','2500 files indexed'),(279,1652696759.723320,2,'info','3000 files indexed'),(280,1652696759.746756,2,'info','3500 files indexed'),(281,1652696759.765548,2,'info','4000 files indexed'),(282,1652696759.781092,2,'info','4500 files indexed'),(283,1652696759.806520,2,'info','5000 files indexed'),(284,1652696759.819450,2,'info','5500 files indexed'),(285,1652696759.834418,2,'info','6000 files indexed'),(286,1652696759.847138,2,'info','6500 files indexed'),(287,1652696759.859365,2,'info','7000 files indexed'),(288,1652696759.879895,2,'info','7500 files indexed'),(289,1652696759.896463,2,'info','8000 files indexed'),(290,1652696759.921570,2,'info','8500 files indexed'),(291,1652696759.934762,2,'info','9000 files indexed'),(292,1652696759.959877,2,'info','9500 files indexed'),(293,1652696759.969454,2,'info','10000 files indexed'),(294,1652696759.982579,2,'info','10500 files indexed'),(295,1652696759.994707,2,'info','11000 files indexed'),(296,1652696759.998389,2,'info','11129 files indexed'),(297,1652696760.229412,2,'info','Analyzed 100 files containing 1.7 MB of data so far'),(298,1652696760.375158,2,'info','Analyzed 200 files containing 2.89 MB of data so far'),(299,1652696760.497195,2,'info','Analyzed 300 files containing 4.09 MB of data so far'),(300,1652696760.684131,2,'info','Analyzed 400 files containing 6.89 MB of data so far'),(301,1652696760.834411,2,'info','Analyzed 500 files containing 7.79 MB of data so far'),(302,1652696760.971720,2,'info','Analyzed 600 files containing 8.62 MB of data so far'),(303,1652696761.079846,2,'info','Analyzed 700 files containing 9.28 MB of data so far'),(304,1652696761.188565,2,'info','Analyzed 800 files containing 10.64 MB of data so far'),(305,1652696761.338512,2,'info','Analyzed 900 files containing 12.96 MB of data so far'),(306,1652696761.484797,2,'info','Analyzed 1000 files containing 13.9 MB of data so far'),(307,1652696761.618286,2,'info','Analyzed 1100 files containing 15.69 MB of data so far'),(308,1652696761.697803,2,'info','Analyzed 1200 files containing 16.2 MB of data so far'),(309,1652696761.806403,2,'info','Analyzed 1300 files containing 18.93 MB of data so far'),(310,1652696761.961488,2,'info','Analyzed 1400 files containing 20.55 MB of data so far'),(311,1652696762.111581,2,'info','Analyzed 1500 files containing 21.8 MB of data so far'),(312,1652696762.387755,2,'info','Analyzed 1600 files containing 22.56 MB of data so far'),(313,1652696762.593299,2,'info','Analyzed 1700 files containing 26.01 MB of data so far'),(314,1652696762.746983,2,'info','Analyzed 1800 files containing 26.92 MB of data so far'),(315,1652696762.868472,2,'info','Analyzed 1900 files containing 27.96 MB of data so far'),(316,1652696762.994017,2,'info','Analyzed 2000 files containing 29.18 MB of data so far'),(317,1652696763.115620,2,'info','Analyzed 2100 files containing 30.27 MB of data so far'),(318,1652696763.293514,2,'info','Analyzed 2200 files containing 31.37 MB of data so far'),(319,1652696763.409320,2,'info','Analyzed 2300 files containing 32.28 MB of data so far'),(320,1652696763.506183,2,'info','Analyzed 2400 files containing 33.41 MB of data so far'),(321,1652696763.636516,2,'info','Analyzed 2500 files containing 34.58 MB of data so far'),(322,1652696763.730735,2,'info','Analyzed 2600 files containing 34.83 MB of data so far'),(323,1652696763.799286,2,'info','Analyzed 2700 files containing 34.94 MB of data so far'),(324,1652696763.861234,2,'info','Analyzed 2800 files containing 35.12 MB of data so far'),(325,1652696763.927678,2,'info','Analyzed 2900 files containing 35.31 MB of data so far'),(326,1652696764.001973,2,'info','Analyzed 3000 files containing 35.54 MB of data so far'),(327,1652696764.077869,2,'info','Analyzed 3100 files containing 35.64 MB of data so far'),(328,1652696764.202487,2,'info','Analyzed 3200 files containing 35.77 MB of data so far'),(329,1652696764.328957,2,'info','Analyzed 3300 files containing 36.1 MB of data so far'),(330,1652696764.435697,2,'info','Analyzed 3400 files containing 36.27 MB of data so far'),(331,1652696764.502235,2,'info','Analyzed 3500 files containing 36.46 MB of data so far'),(332,1652696764.571085,2,'info','Analyzed 3600 files containing 36.79 MB of data so far'),(333,1652696764.671511,2,'info','Analyzed 3700 files containing 37.71 MB of data so far'),(334,1652696764.751234,2,'info','Analyzed 3800 files containing 38.88 MB of data so far'),(335,1652696764.843441,2,'info','Analyzed 3900 files containing 40.54 MB of data so far'),(336,1652696764.917513,2,'info','Analyzed 4000 files containing 40.96 MB of data so far'),(337,1652696765.033054,2,'info','Analyzed 4100 files containing 41.45 MB of data so far'),(338,1652696765.123803,2,'info','Analyzed 4200 files containing 41.58 MB of data so far'),(339,1652696765.195523,2,'info','Analyzed 4300 files containing 42.31 MB of data so far'),(340,1652696765.283266,2,'info','Analyzed 4400 files containing 43.02 MB of data so far'),(341,1652696765.360231,2,'info','Analyzed 4500 files containing 43.36 MB of data so far'),(342,1652696765.466258,2,'info','Analyzed 4600 files containing 43.79 MB of data so far'),(343,1652696765.578416,2,'info','Analyzed 4700 files containing 44.01 MB of data so far'),(344,1652696765.690240,2,'info','Analyzed 4800 files containing 44.5 MB of data so far'),(345,1652696765.771265,2,'info','Analyzed 4900 files containing 44.76 MB of data so far'),(346,1652696765.871817,2,'info','Analyzed 5000 files containing 45.13 MB of data so far'),(347,1652696765.982213,2,'info','Analyzed 5100 files containing 45.91 MB of data so far'),(348,1652696768.968537,2,'info','Analyzed 5200 files containing 49.57 MB of data so far'),(349,1652696769.053495,2,'info','Analyzed 5300 files containing 50.19 MB of data so far'),(350,1652696769.135851,2,'info','Analyzed 5400 files containing 50.64 MB of data so far'),(351,1652696769.271412,2,'info','Analyzed 5500 files containing 52.67 MB of data so far'),(352,1652696769.382095,2,'info','Analyzed 5600 files containing 54.11 MB of data so far'),(353,1652696769.454494,2,'info','Analyzed 5700 files containing 54.92 MB of data so far'),(354,1652696769.521058,2,'info','Analyzed 5800 files containing 54.99 MB of data so far'),(355,1652696769.628213,2,'info','Analyzed 5900 files containing 55.93 MB of data so far'),(356,1652696769.732786,2,'info','Analyzed 6000 files containing 56.41 MB of data so far'),(357,1652696769.829881,2,'info','Analyzed 6100 files containing 56.94 MB of data so far'),(358,1652696770.016711,2,'info','Analyzed 6200 files containing 58.06 MB of data so far'),(359,1652696770.201144,2,'info','Analyzed 6300 files containing 59.37 MB of data so far'),(360,1652696770.409039,2,'info','Analyzed 6400 files containing 67.28 MB of data so far'),(361,1652696770.560177,2,'info','Analyzed 6500 files containing 69.1 MB of data so far'),(362,1652696770.689920,2,'info','Analyzed 6600 files containing 69.68 MB of data so far'),(363,1652696770.817092,2,'info','Analyzed 6700 files containing 71.07 MB of data so far'),(364,1652696770.914363,2,'info','Analyzed 6800 files containing 71.54 MB of data so far'),(365,1652696771.056373,2,'info','Analyzed 6900 files containing 73.3 MB of data so far'),(366,1652696771.174542,2,'info','Analyzed 7000 files containing 75.15 MB of data so far'),(367,1652696771.284945,2,'info','Analyzed 7100 files containing 75.75 MB of data so far'),(368,1652696771.447535,2,'info','Analyzed 7200 files containing 77.9 MB of data so far'),(369,1652696771.604105,2,'info','Analyzed 7300 files containing 80.43 MB of data so far'),(370,1652696771.702223,2,'info','Analyzed 7400 files containing 81.46 MB of data so far'),(371,1652696771.788125,2,'info','Analyzed 7500 files containing 81.85 MB of data so far'),(372,1652696771.866485,2,'info','Analyzed 7600 files containing 82.91 MB of data so far'),(373,1652696771.946668,2,'info','Analyzed 7700 files containing 83.71 MB of data so far'),(374,1652696772.012174,2,'info','Analyzed 7800 files containing 84.13 MB of data so far'),(375,1652696772.114869,2,'info','Analyzed 7900 files containing 85.44 MB of data so far'),(376,1652696772.202942,2,'info','Analyzed 8000 files containing 85.73 MB of data so far'),(377,1652696772.281303,2,'info','Analyzed 8100 files containing 86.34 MB of data so far'),(378,1652696772.361313,2,'info','Analyzed 8200 files containing 86.64 MB of data so far'),(379,1652696772.436717,2,'info','Analyzed 8300 files containing 86.86 MB of data so far'),(380,1652696772.503248,2,'info','Analyzed 8400 files containing 87.4 MB of data so far'),(381,1652696772.561205,2,'info','Analyzed 8500 files containing 87.63 MB of data so far'),(382,1652696772.649662,2,'info','Analyzed 8600 files containing 88.53 MB of data so far'),(383,1652696772.721483,2,'info','Analyzed 8700 files containing 88.84 MB of data so far'),(384,1652696772.783635,2,'info','Analyzed 8800 files containing 88.96 MB of data so far'),(385,1652696772.858305,2,'info','Analyzed 8900 files containing 89.57 MB of data so far'),(386,1652696772.957949,2,'info','Analyzed 9000 files containing 91.79 MB of data so far'),(387,1652696773.058162,2,'info','Analyzed 9100 files containing 94.48 MB of data so far'),(388,1652696773.143493,2,'info','Analyzed 9200 files containing 95.54 MB of data so far'),(389,1652696773.259741,2,'info','Analyzed 9300 files containing 99.28 MB of data so far'),(390,1652696773.378804,2,'info','Analyzed 9400 files containing 102.65 MB of data so far'),(391,1652696773.477305,2,'info','Analyzed 9500 files containing 103.45 MB of data so far'),(392,1652696773.567889,2,'info','Analyzed 9600 files containing 103.64 MB of data so far'),(393,1652696773.646309,2,'info','Analyzed 9700 files containing 103.92 MB of data so far'),(394,1652696773.708952,2,'info','Analyzed 9800 files containing 104.2 MB of data so far'),(395,1652696773.772122,2,'info','Analyzed 9900 files containing 104.33 MB of data so far'),(396,1652696773.872868,2,'info','Analyzed 10000 files containing 104.57 MB of data so far'),(397,1652696773.984794,2,'info','Analyzed 10100 files containing 106.26 MB of data so far'),(398,1652696774.153875,2,'info','Analyzed 10200 files containing 109.36 MB of data so far'),(399,1652696774.252561,2,'info','Analyzed 10300 files containing 110.54 MB of data so far'),(400,1652696774.369330,2,'info','Analyzed 10400 files containing 111.92 MB of data so far'),(401,1652696774.642761,2,'info','Analyzed 10500 files containing 124.72 MB of data so far'),(402,1652696774.772441,2,'info','Analyzed 10600 files containing 128.29 MB of data so far'),(403,1652696774.932715,2,'info','Analyzed 10700 files containing 130.32 MB of data so far'),(404,1652696775.044100,2,'info','Analyzed 10800 files containing 131.77 MB of data so far'),(405,1652696775.181102,2,'info','Analyzed 10900 files containing 136.31 MB of data so far'),(406,1652696775.269065,2,'info','Analyzed 11000 files containing 137.6 MB of data so far'),(407,1652696775.368275,2,'info','Analyzed 11100 files containing 139.29 MB of data so far'),(408,1652696775.398272,2,'info','Analyzed 11129 files containing 139.71 MB of data.'),(409,1652696775.398500,10,'info','SUM_ENDOK:Comparing core WordPress files against originals in repository'),(410,1652696775.404697,10,'info','SUM_ENDOK:Scanning for unknown files in wp-admin and wp-includes'),(411,1652696777.484638,10,'info','SUM_ENDOK:Scanning for known malware files'),(412,1652696777.496267,10,'info','SUM_START:Check for publicly accessible configuration files, backup files and logs'),(413,1652696777.508320,10,'info','SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),(414,1652696777.527466,10,'info','SUM_START:Scanning file contents for infections and vulnerabilities'),(415,1652696777.530959,10,'info','SUM_START:Scanning file contents for URLs on a domain blocklist'),(416,1652696779.955098,2,'info','Starting scan of file contents'),(417,1652696780.967772,2,'info','Scanned contents of 51 additional files at 50.43 per second'),(418,1652696781.970415,2,'info','Scanned contents of 101 additional files at 50.15 per second'),(419,1652696782.982719,2,'info','Scanned contents of 157 additional files at 51.88 per second'),(420,1652696783.982794,2,'info','Scanned contents of 209 additional files at 51.91 per second'),(421,1652696786.370859,2,'info','Scanned contents of 211 additional files at 32.89 per second'),(422,1652696787.404523,2,'info','Scanned contents of 263 additional files at 35.31 per second'),(423,1652696788.408499,2,'info','Scanned contents of 324 additional files at 38.33 per second'),(424,1652696789.412031,2,'info','Scanned contents of 377 additional files at 39.87 per second'),(425,1652696790.414029,2,'info','Scanned contents of 425 additional files at 40.64 per second'),(426,1652696791.419555,2,'info','Scanned contents of 483 additional files at 42.14 per second'),(427,1652696792.424851,2,'info','Scanned contents of 533 additional files at 42.75 per second'),(428,1652696793.505866,2,'info','Scanned contents of 594 additional files at 43.84 per second'),(429,1652696794.519781,2,'info','Scanned contents of 639 additional files at 43.88 per second'),(430,1652696795.531481,2,'info','Scanned contents of 686 additional files at 44.04 per second'),(431,1652696796.556559,2,'info','Scanned contents of 719 additional files at 43.31 per second'),(432,1652696797.558428,2,'info','Scanned contents of 781 additional files at 44.37 per second'),(433,1652696798.577392,2,'info','Scanned contents of 822 additional files at 44.14 per second'),(434,1652696799.585697,2,'info','Scanned contents of 862 additional files at 43.91 per second'),(435,1652696800.590123,2,'info','Scanned contents of 908 additional files at 44.01 per second'),(436,1652696801.604095,2,'info','Scanned contents of 961 additional files at 44.39 per second'),(437,1652696804.617372,2,'info','Scanned contents of 986 additional files at 39.98 per second'),(438,1652696805.624861,2,'info','Scanned contents of 1033 additional files at 40.24 per second'),(439,1652696806.666100,2,'info','Scanned contents of 1090 additional files at 40.81 per second'),(440,1652696807.829364,2,'info','Scanned contents of 1137 additional files at 40.79 per second'),(441,1652696808.846159,2,'info','Scanned contents of 1185 additional files at 41.02 per second'),(442,1652696809.860536,2,'info','Scanned contents of 1233 additional files at 41.23 per second'),(443,1652696810.870874,2,'info','Scanned contents of 1288 additional files at 41.66 per second'),(444,1652696811.887165,2,'info','Scanned contents of 1336 additional files at 41.84 per second'),(445,1652696812.734050,2,'info','Scanned contents of 1380 additional files at 42.10 per second'),(446,1652696812.734353,2,'info','Asking Wordfence to check URLs against malware list.'),(447,1652696812.735897,2,'info','Checking 409 host keys against Wordfence scanning servers.'),(448,1652696813.794766,2,'info','Done host key check.'),(449,1652696813.858126,2,'info','Done file contents scan'),(450,1652696813.859604,10,'info','SUM_ENDOK:Scanning file contents for infections and vulnerabilities'),(451,1652696813.868853,10,'info','SUM_ENDOK:Scanning file contents for URLs on a domain blocklist'),(452,1652696813.876066,10,'info','SUM_START:Scanning for publicly accessible quarantined files'),(453,1652696813.878296,10,'info','SUM_ENDOK:Scanning for publicly accessible quarantined files'),(454,1652696813.884977,10,'info','SUM_START:Scanning posts for URLs on a domain blocklist'),(455,1652696813.989153,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(456,1652696813.989527,2,'info','Checking 14 host keys against Wordfence scanning servers.'),(457,1652696815.078677,2,'info','Done host key check.'),(458,1652696815.079167,2,'info','Done examining URLs'),(459,1652696815.136769,10,'info','SUM_ENDOK:Scanning posts for URLs on a domain blocklist'),(460,1652696815.144970,10,'info','SUM_START:Scanning comments for URLs on a domain blocklist'),(461,1652696815.254150,10,'info','SUM_ENDOK:Scanning comments for URLs on a domain blocklist'),(462,1652696815.279904,10,'info','SUM_START:Scanning for weak passwords'),(463,1652696815.283395,2,'info','Starting password strength check on 2 users.'),(464,1652696815.453984,10,'info','SUM_ENDOK:Scanning for weak passwords'),(465,1652696815.462597,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(466,1652696829.084519,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(467,1652696829.093593,10,'info','SUM_START:Scanning for admin users not created through WordPress'),(468,1652696830.160505,10,'info','SUM_ENDOK:Scanning for admin users not created through WordPress'),(469,1652696830.171030,10,'info','SUM_START:Scanning for suspicious site options'),(470,1652696830.246030,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(471,1652696830.246685,2,'info','Done examining URLs'),(472,1652696830.299807,10,'info','SUM_ENDOK:Scanning for suspicious site options'),(473,1652696830.307069,1,'info','-------------------'),(474,1652696830.307741,2,'info','Wordfence used 33.96 MB of memory for scan. Server peak memory usage was: 109.96 MB'),(475,1652696830.308023,1,'info','Scan Complete. Scanned 11129 files, 12 plugins, 6 themes, 86 posts, 0 comments and 1612 URLs in 1 minute 20 seconds.'),(476,1652696830.308231,10,'info','SUM_FINAL:Scan complete. You have 5 new issues to fix. See below.'),(477,1652696965.359469,10,'info','SUM_PREP:Preparing a new scan.'),(478,1652696965.364913,1,'info','Contacting Wordfence to initiate scan'),(479,1652696966.458448,10,'info','SUM_PAIDONLY:Check if your site is being Spamvertized is for paid members only'),(480,1652696968.460579,10,'info','SUM_PAIDONLY:Checking if your IP is generating spam is for paid members only'),(481,1652696970.462660,10,'info','SUM_PAIDONLY:Checking if your site is on a domain blocklist is for paid members only'),(482,1652696972.469869,10,'info','SUM_START:Checking for the most secure way to get IPs'),(483,1652696972.475370,10,'info','SUM_ENDSKIPPED:Checking for the most secure way to get IPs'),(484,1652696972.485814,10,'info','SUM_START:Scanning to check available disk space'),(485,1652696972.489301,2,'info','Total disk space: 1.48 TB -- Free disk space: 843.09 GB'),(486,1652696972.489624,2,'info','The disk has 863325.11 MB available'),(487,1652696972.489878,10,'info','SUM_ENDOK:Scanning to check available disk space'),(488,1652696972.500036,10,'info','SUM_START:Checking Web Application Firewall status'),(489,1652696972.503209,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(490,1652696972.510568,10,'info','SUM_START:Checking for future GeoIP support'),(491,1652696972.513109,10,'info','SUM_ENDOK:Checking for future GeoIP support'),(492,1652696972.519971,10,'info','SUM_START:Checking for paths skipped due to scan settings'),(493,1652696972.522953,10,'info','SUM_ENDOK:Checking for paths skipped due to scan settings'),(494,1652696972.528050,2,'info','Getting plugin list from WordPress'),(495,1652696972.530608,2,'info','Found 11 plugins'),(496,1652696972.530814,2,'info','Getting theme list from WordPress'),(497,1652696972.532420,2,'info','Found 6 themes'),(498,1652696972.707483,10,'info','SUM_START:Fetching core, theme and plugin file signatures from Wordfence'),(499,1652696975.197987,10,'info','SUM_ENDSUCCESS:Fetching core, theme and plugin file signatures from Wordfence'),(500,1652696975.205416,10,'info','SUM_START:Fetching list of known malware files from Wordfence'),(501,1652696975.208609,10,'info','SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),(502,1652696975.214025,10,'info','SUM_START:Fetching list of known core files from Wordfence'),(503,1652696975.215705,10,'info','SUM_ENDSUCCESS:Fetching list of known core files from Wordfence'),(504,1652696975.221001,10,'info','SUM_START:Comparing core WordPress files against originals in repository'),(505,1652696975.224935,10,'info','SUM_DISABLED:Skipping theme scan'),(506,1652696975.225632,10,'info','SUM_DISABLED:Skipping plugin scan'),(507,1652696975.229941,10,'info','SUM_START:Scanning for known malware files'),(508,1652696975.236114,10,'info','SUM_START:Scanning for unknown files in wp-admin and wp-includes'),(509,1652696975.255233,2,'info','500 files indexed'),(510,1652696975.268038,2,'info','1000 files indexed'),(511,1652696975.281406,2,'info','1500 files indexed'),(512,1652696975.293415,2,'info','2000 files indexed'),(513,1652696975.307935,2,'info','2500 files indexed'),(514,1652696975.325502,2,'info','3000 files indexed'),(515,1652696975.341030,2,'info','3500 files indexed'),(516,1652696975.356243,2,'info','4000 files indexed'),(517,1652696975.385932,2,'info','4500 files indexed'),(518,1652696975.411561,2,'info','5000 files indexed'),(519,1652696975.428237,2,'info','5500 files indexed'),(520,1652696975.448212,2,'info','6000 files indexed'),(521,1652696975.465882,2,'info','6500 files indexed'),(522,1652696975.483020,2,'info','7000 files indexed'),(523,1652696975.500006,2,'info','7500 files indexed'),(524,1652696975.518031,2,'info','8000 files indexed'),(525,1652696975.543550,2,'info','8500 files indexed'),(526,1652696975.566663,2,'info','9000 files indexed'),(527,1652696975.601966,2,'info','9500 files indexed'),(528,1652696975.614100,2,'info','10000 files indexed'),(529,1652696975.624697,2,'info','10500 files indexed'),(530,1652696975.636168,2,'info','11000 files indexed'),(531,1652696975.639925,2,'info','11129 files indexed'),(532,1652696975.737493,2,'info','Analyzed 100 files containing 1.7 MB of data so far'),(533,1652696975.858395,2,'info','Analyzed 200 files containing 2.89 MB of data so far'),(534,1652696975.981016,2,'info','Analyzed 300 files containing 4.09 MB of data so far'),(535,1652696976.107576,2,'info','Analyzed 400 files containing 6.89 MB of data so far'),(536,1652696976.211644,2,'info','Analyzed 500 files containing 7.79 MB of data so far'),(537,1652696976.304127,2,'info','Analyzed 600 files containing 8.62 MB of data so far'),(538,1652696976.417649,2,'info','Analyzed 700 files containing 9.28 MB of data so far'),(539,1652696976.548484,2,'info','Analyzed 800 files containing 10.64 MB of data so far'),(540,1652696976.716815,2,'info','Analyzed 900 files containing 12.96 MB of data so far'),(541,1652696976.833068,2,'info','Analyzed 1000 files containing 13.9 MB of data so far'),(542,1652696976.962976,2,'info','Analyzed 1100 files containing 15.69 MB of data so far'),(543,1652696977.064237,2,'info','Analyzed 1200 files containing 16.2 MB of data so far'),(544,1652696977.193432,2,'info','Analyzed 1300 files containing 18.93 MB of data so far'),(545,1652696977.316667,2,'info','Analyzed 1400 files containing 20.55 MB of data so far'),(546,1652696977.443700,2,'info','Analyzed 1500 files containing 21.8 MB of data so far'),(547,1652696977.575009,2,'info','Analyzed 1600 files containing 22.56 MB of data so far'),(548,1652696977.734618,2,'info','Analyzed 1700 files containing 26.01 MB of data so far'),(549,1652696977.861012,2,'info','Analyzed 1800 files containing 26.92 MB of data so far'),(550,1652696977.963669,2,'info','Analyzed 1900 files containing 27.96 MB of data so far'),(551,1652696978.061169,2,'info','Analyzed 2000 files containing 29.18 MB of data so far'),(552,1652696978.179292,2,'info','Analyzed 2100 files containing 30.27 MB of data so far'),(553,1652696978.324470,2,'info','Analyzed 2200 files containing 31.37 MB of data so far'),(554,1652696978.425215,2,'info','Analyzed 2300 files containing 32.28 MB of data so far'),(555,1652696978.574493,2,'info','Analyzed 2400 files containing 33.41 MB of data so far'),(556,1652696978.701459,2,'info','Analyzed 2500 files containing 34.58 MB of data so far'),(557,1652696978.816128,2,'info','Analyzed 2600 files containing 34.83 MB of data so far'),(558,1652696978.938763,2,'info','Analyzed 2700 files containing 34.94 MB of data so far'),(559,1652696979.054997,2,'info','Analyzed 2800 files containing 35.12 MB of data so far'),(560,1652696979.157860,2,'info','Analyzed 2900 files containing 35.31 MB of data so far'),(561,1652696979.256358,2,'info','Analyzed 3000 files containing 35.54 MB of data so far'),(562,1652696979.347125,2,'info','Analyzed 3100 files containing 35.64 MB of data so far'),(563,1652696979.459875,2,'info','Analyzed 3200 files containing 35.77 MB of data so far'),(564,1652696979.578349,2,'info','Analyzed 3300 files containing 36.1 MB of data so far'),(565,1652696979.790857,2,'info','Analyzed 3400 files containing 36.27 MB of data so far'),(566,1652696979.961620,2,'info','Analyzed 3500 files containing 36.46 MB of data so far'),(567,1652696980.125304,2,'info','Analyzed 3600 files containing 36.79 MB of data so far'),(568,1652696980.281011,2,'info','Analyzed 3700 files containing 37.71 MB of data so far'),(569,1652696980.446798,2,'info','Analyzed 3800 files containing 38.88 MB of data so far'),(570,1652696980.628391,2,'info','Analyzed 3900 files containing 40.54 MB of data so far'),(571,1652696980.716974,2,'info','Analyzed 4000 files containing 40.96 MB of data so far'),(572,1652696980.824362,2,'info','Analyzed 4100 files containing 41.45 MB of data so far'),(573,1652696980.893272,2,'info','Analyzed 4200 files containing 41.58 MB of data so far'),(574,1652696980.977473,2,'info','Analyzed 4300 files containing 42.31 MB of data so far'),(575,1652696981.063877,2,'info','Analyzed 4400 files containing 43.02 MB of data so far'),(576,1652696981.131434,2,'info','Analyzed 4500 files containing 43.36 MB of data so far'),(577,1652696981.197107,2,'info','Analyzed 4600 files containing 43.79 MB of data so far'),(578,1652696981.281172,2,'info','Analyzed 4700 files containing 44.01 MB of data so far'),(579,1652696981.434075,2,'info','Analyzed 4800 files containing 44.5 MB of data so far'),(580,1652696981.543263,2,'info','Analyzed 4900 files containing 44.76 MB of data so far'),(581,1652696981.666058,2,'info','Analyzed 5000 files containing 45.13 MB of data so far'),(582,1652696981.776672,2,'info','Analyzed 5100 files containing 45.91 MB of data so far'),(583,1652696981.953193,2,'info','Analyzed 5200 files containing 49.57 MB of data so far'),(584,1652696984.443914,2,'info','Analyzed 5300 files containing 50.19 MB of data so far'),(585,1652696984.527384,2,'info','Analyzed 5400 files containing 50.64 MB of data so far'),(586,1652696984.615525,2,'info','Analyzed 5500 files containing 52.67 MB of data so far'),(587,1652696984.701742,2,'info','Analyzed 5600 files containing 54.11 MB of data so far'),(588,1652696984.787092,2,'info','Analyzed 5700 files containing 54.92 MB of data so far'),(589,1652696984.855739,2,'info','Analyzed 5800 files containing 54.99 MB of data so far'),(590,1652696984.943810,2,'info','Analyzed 5900 files containing 55.93 MB of data so far'),(591,1652696985.020243,2,'info','Analyzed 6000 files containing 56.41 MB of data so far'),(592,1652696985.096550,2,'info','Analyzed 6100 files containing 56.94 MB of data so far'),(593,1652696985.179333,2,'info','Analyzed 6200 files containing 58.06 MB of data so far'),(594,1652696985.274333,2,'info','Analyzed 6300 files containing 59.37 MB of data so far'),(595,1652696985.439372,2,'info','Analyzed 6400 files containing 67.28 MB of data so far'),(596,1652696985.528700,2,'info','Analyzed 6500 files containing 69.1 MB of data so far'),(597,1652696985.618239,2,'info','Analyzed 6600 files containing 69.68 MB of data so far'),(598,1652696985.729408,2,'info','Analyzed 6700 files containing 71.07 MB of data so far'),(599,1652696985.807885,2,'info','Analyzed 6800 files containing 71.54 MB of data so far'),(600,1652696985.897710,2,'info','Analyzed 6900 files containing 73.3 MB of data so far'),(601,1652696985.994081,2,'info','Analyzed 7000 files containing 75.15 MB of data so far'),(602,1652696986.093634,2,'info','Analyzed 7100 files containing 75.75 MB of data so far'),(603,1652696986.201688,2,'info','Analyzed 7200 files containing 77.9 MB of data so far'),(604,1652696986.323169,2,'info','Analyzed 7300 files containing 80.43 MB of data so far'),(605,1652696986.432351,2,'info','Analyzed 7400 files containing 81.46 MB of data so far'),(606,1652696986.537231,2,'info','Analyzed 7500 files containing 81.85 MB of data so far'),(607,1652696986.621277,2,'info','Analyzed 7600 files containing 82.91 MB of data so far'),(608,1652696986.712102,2,'info','Analyzed 7700 files containing 83.71 MB of data so far'),(609,1652696986.806256,2,'info','Analyzed 7800 files containing 84.13 MB of data so far'),(610,1652696986.905623,2,'info','Analyzed 7900 files containing 85.44 MB of data so far'),(611,1652696986.980864,2,'info','Analyzed 8000 files containing 85.73 MB of data so far'),(612,1652696987.066289,2,'info','Analyzed 8100 files containing 86.34 MB of data so far'),(613,1652696987.136406,2,'info','Analyzed 8200 files containing 86.64 MB of data so far'),(614,1652696987.197800,2,'info','Analyzed 8300 files containing 86.86 MB of data so far'),(615,1652696987.278844,2,'info','Analyzed 8400 files containing 87.4 MB of data so far'),(616,1652696987.348871,2,'info','Analyzed 8500 files containing 87.63 MB of data so far'),(617,1652696987.434606,2,'info','Analyzed 8600 files containing 88.53 MB of data so far'),(618,1652696987.502133,2,'info','Analyzed 8700 files containing 88.84 MB of data so far'),(619,1652696987.575722,2,'info','Analyzed 8800 files containing 88.96 MB of data so far'),(620,1652696987.647581,2,'info','Analyzed 8900 files containing 89.57 MB of data so far'),(621,1652696987.749010,2,'info','Analyzed 9000 files containing 91.79 MB of data so far'),(622,1652696987.861523,2,'info','Analyzed 9100 files containing 94.48 MB of data so far'),(623,1652696987.963164,2,'info','Analyzed 9200 files containing 95.54 MB of data so far'),(624,1652696988.091040,2,'info','Analyzed 9300 files containing 99.28 MB of data so far'),(625,1652696988.212403,2,'info','Analyzed 9400 files containing 102.65 MB of data so far'),(626,1652696988.321381,2,'info','Analyzed 9500 files containing 103.45 MB of data so far'),(627,1652696988.400249,2,'info','Analyzed 9600 files containing 103.64 MB of data so far'),(628,1652696988.495256,2,'info','Analyzed 9700 files containing 103.92 MB of data so far'),(629,1652696988.563050,2,'info','Analyzed 9800 files containing 104.2 MB of data so far'),(630,1652696988.636098,2,'info','Analyzed 9900 files containing 104.33 MB of data so far'),(631,1652696988.752513,2,'info','Analyzed 10000 files containing 104.57 MB of data so far'),(632,1652696988.883312,2,'info','Analyzed 10100 files containing 106.26 MB of data so far'),(633,1652696988.999382,2,'info','Analyzed 10200 files containing 109.36 MB of data so far'),(634,1652696989.085765,2,'info','Analyzed 10300 files containing 110.54 MB of data so far'),(635,1652696989.173075,2,'info','Analyzed 10400 files containing 111.92 MB of data so far'),(636,1652696989.427908,2,'info','Analyzed 10500 files containing 124.72 MB of data so far'),(637,1652696989.555711,2,'info','Analyzed 10600 files containing 128.29 MB of data so far'),(638,1652696989.699464,2,'info','Analyzed 10700 files containing 130.32 MB of data so far'),(639,1652696989.793173,2,'info','Analyzed 10800 files containing 131.77 MB of data so far'),(640,1652696989.936638,2,'info','Analyzed 10900 files containing 136.31 MB of data so far'),(641,1652696990.028248,2,'info','Analyzed 11000 files containing 137.6 MB of data so far'),(642,1652696990.118022,2,'info','Analyzed 11100 files containing 139.29 MB of data so far'),(643,1652696990.143530,2,'info','Analyzed 11129 files containing 139.71 MB of data.'),(644,1652696990.143726,10,'info','SUM_ENDOK:Comparing core WordPress files against originals in repository'),(645,1652696990.148958,10,'info','SUM_ENDOK:Scanning for unknown files in wp-admin and wp-includes'),(646,1652696991.197888,10,'info','SUM_ENDOK:Scanning for known malware files'),(647,1652696991.208788,10,'info','SUM_START:Check for publicly accessible configuration files, backup files and logs'),(648,1652696991.220493,10,'info','SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),(649,1652696991.235380,10,'info','SUM_START:Scanning file contents for infections and vulnerabilities'),(650,1652696991.237687,10,'info','SUM_START:Scanning file contents for URLs on a domain blocklist'),(651,1652696993.746330,2,'info','Starting scan of file contents'),(652,1652696994.770096,2,'info','Scanned contents of 49 additional files at 47.93 per second'),(653,1652696995.780053,2,'info','Scanned contents of 95 additional files at 46.74 per second'),(654,1652696996.783785,2,'info','Scanned contents of 141 additional files at 46.44 per second'),(655,1652696997.805466,2,'info','Scanned contents of 188 additional files at 46.33 per second'),(656,1652696998.813183,2,'info','Scanned contents of 250 additional files at 49.35 per second'),(657,1652696999.820987,2,'info','Scanned contents of 308 additional files at 50.71 per second'),(658,1652697002.685391,2,'info','Scanned contents of 321 additional files at 35.92 per second'),(659,1652697003.711715,2,'info','Scanned contents of 358 additional files at 35.93 per second'),(660,1652697004.730072,2,'info','Scanned contents of 406 additional files at 36.97 per second'),(661,1652697005.743393,2,'info','Scanned contents of 465 additional files at 38.76 per second'),(662,1652697006.743800,2,'info','Scanned contents of 510 additional files at 39.24 per second'),(663,1652697007.754463,2,'info','Scanned contents of 574 additional files at 40.98 per second'),(664,1652697008.756372,2,'info','Scanned contents of 617 additional files at 41.11 per second'),(665,1652697009.777386,2,'info','Scanned contents of 663 additional files at 41.36 per second'),(666,1652697010.866322,2,'info','Scanned contents of 705 additional files at 41.18 per second'),(667,1652697011.893947,2,'info','Scanned contents of 763 additional files at 42.05 per second'),(668,1652697012.902059,2,'info','Scanned contents of 817 additional files at 42.65 per second'),(669,1652697013.930993,2,'info','Scanned contents of 862 additional files at 42.71 per second'),(670,1652697014.951376,2,'info','Scanned contents of 920 additional files at 43.39 per second'),(671,1652697015.963115,2,'info','Scanned contents of 971 additional files at 43.71 per second'),(672,1652697016.983517,2,'info','Scanned contents of 1025 additional files at 44.11 per second'),(673,1652697017.990739,2,'info','Scanned contents of 1080 additional files at 44.55 per second'),(674,1652697020.489248,2,'info','Scanned contents of 1081 additional files at 40.42 per second'),(675,1652697021.493555,2,'info','Scanned contents of 1128 additional files at 40.65 per second'),(676,1652697022.495889,2,'info','Scanned contents of 1171 additional files at 40.73 per second'),(677,1652697023.502145,2,'info','Scanned contents of 1215 additional files at 40.83 per second'),(678,1652697024.508748,2,'info','Scanned contents of 1265 additional files at 41.12 per second'),(679,1652697025.541367,2,'info','Scanned contents of 1324 additional files at 41.64 per second'),(680,1652697026.567466,2,'info','Scanned contents of 1376 additional files at 41.93 per second'),(681,1652697026.698507,2,'info','Scanned contents of 1380 additional files at 41.88 per second'),(682,1652697026.698807,2,'info','Asking Wordfence to check URLs against malware list.'),(683,1652697026.700377,2,'info','Checking 409 host keys against Wordfence scanning servers.'),(684,1652697027.781086,2,'info','Done host key check.'),(685,1652697027.836183,2,'info','Done file contents scan'),(686,1652697027.837829,10,'info','SUM_ENDOK:Scanning file contents for infections and vulnerabilities'),(687,1652697027.843567,10,'info','SUM_ENDOK:Scanning file contents for URLs on a domain blocklist'),(688,1652697027.850915,10,'info','SUM_START:Scanning for publicly accessible quarantined files'),(689,1652697027.853335,10,'info','SUM_ENDOK:Scanning for publicly accessible quarantined files'),(690,1652697027.861878,10,'info','SUM_START:Scanning posts for URLs on a domain blocklist'),(691,1652697027.993944,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(692,1652697027.994603,2,'info','Checking 14 host keys against Wordfence scanning servers.'),(693,1652697029.093958,2,'info','Done host key check.'),(694,1652697029.094420,2,'info','Done examining URLs'),(695,1652697029.144122,10,'info','SUM_ENDOK:Scanning posts for URLs on a domain blocklist'),(696,1652697029.151906,10,'info','SUM_START:Scanning comments for URLs on a domain blocklist'),(697,1652697029.257632,10,'info','SUM_ENDOK:Scanning comments for URLs on a domain blocklist'),(698,1652697029.284038,10,'info','SUM_START:Scanning for weak passwords'),(699,1652697029.286745,2,'info','Starting password strength check on 2 users.'),(700,1652697029.451592,10,'info','SUM_ENDOK:Scanning for weak passwords'),(701,1652697029.459750,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(702,1652697042.715931,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(703,1652697042.728752,10,'info','SUM_START:Scanning for admin users not created through WordPress'),(704,1652697043.819249,10,'info','SUM_ENDOK:Scanning for admin users not created through WordPress'),(705,1652697043.831965,10,'info','SUM_START:Scanning for suspicious site options'),(706,1652697043.898685,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(707,1652697043.899259,2,'info','Done examining URLs'),(708,1652697043.961720,10,'info','SUM_ENDOK:Scanning for suspicious site options'),(709,1652697043.971179,1,'info','-------------------'),(710,1652697043.971974,2,'info','Wordfence used 33.96 MB of memory for scan. Server peak memory usage was: 105.96 MB'),(711,1652697043.972398,1,'info','Scan Complete. Scanned 11129 files, 12 plugins, 6 themes, 86 posts, 0 comments and 1612 URLs in 1 minute 17 seconds.'),(712,1652697043.972715,10,'info','SUM_FINAL:Scan complete. You have 5 new issues to fix. See below.'),(713,1652698340.495693,10,'info','SUM_PREP:Preparing a new scan.'),(714,1652698340.500263,1,'info','Contacting Wordfence to initiate scan'),(715,1652698341.583587,10,'info','SUM_PAIDONLY:Check if your site is being Spamvertized is for paid members only'),(716,1652698343.585658,10,'info','SUM_PAIDONLY:Checking if your IP is generating spam is for paid members only'),(717,1652698345.587803,10,'info','SUM_PAIDONLY:Checking if your site is on a domain blocklist is for paid members only'),(718,1652698347.595299,10,'info','SUM_START:Checking for the most secure way to get IPs'),(719,1652698347.600494,10,'info','SUM_ENDSKIPPED:Checking for the most secure way to get IPs'),(720,1652698347.614440,10,'info','SUM_START:Scanning to check available disk space'),(721,1652698347.622723,2,'info','Total disk space: 1.48 TB -- Free disk space: 843.05 GB'),(722,1652698347.622999,2,'info','The disk has 863285.09 MB available'),(723,1652698347.623220,10,'info','SUM_ENDOK:Scanning to check available disk space'),(724,1652698347.640840,10,'info','SUM_START:Checking Web Application Firewall status'),(725,1652698347.644081,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(726,1652698347.651948,10,'info','SUM_START:Checking for future GeoIP support'),(727,1652698347.656035,10,'info','SUM_ENDOK:Checking for future GeoIP support'),(728,1652698347.664768,10,'info','SUM_START:Checking for paths skipped due to scan settings'),(729,1652698347.668122,10,'info','SUM_ENDOK:Checking for paths skipped due to scan settings'),(730,1652698347.678160,2,'info','Getting plugin list from WordPress'),(731,1652698347.682211,2,'info','Found 11 plugins'),(732,1652698347.682506,2,'info','Getting theme list from WordPress'),(733,1652698347.684397,2,'info','Found 6 themes'),(734,1652698347.848806,10,'info','SUM_START:Fetching core, theme and plugin file signatures from Wordfence'),(735,1652698350.313455,10,'info','SUM_ENDSUCCESS:Fetching core, theme and plugin file signatures from Wordfence'),(736,1652698350.319317,10,'info','SUM_START:Fetching list of known malware files from Wordfence'),(737,1652698350.322332,10,'info','SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),(738,1652698350.328366,10,'info','SUM_START:Fetching list of known core files from Wordfence'),(739,1652698350.329903,10,'info','SUM_ENDSUCCESS:Fetching list of known core files from Wordfence'),(740,1652698350.335286,10,'info','SUM_START:Comparing core WordPress files against originals in repository'),(741,1652698350.337813,10,'info','SUM_DISABLED:Skipping theme scan'),(742,1652698350.338146,10,'info','SUM_DISABLED:Skipping plugin scan'),(743,1652698350.340440,10,'info','SUM_START:Scanning for known malware files'),(744,1652698350.344592,10,'info','SUM_START:Scanning for unknown files in wp-admin and wp-includes'),(745,1652698350.370178,2,'info','500 files indexed'),(746,1652698350.398606,2,'info','1000 files indexed'),(747,1652698350.430400,2,'info','1500 files indexed'),(748,1652698350.454592,2,'info','2000 files indexed'),(749,1652698350.495713,2,'info','2500 files indexed'),(750,1652698350.573936,2,'info','3000 files indexed'),(751,1652698350.626478,2,'info','3500 files indexed'),(752,1652698350.683652,2,'info','4000 files indexed'),(753,1652698350.722192,2,'info','4500 files indexed'),(754,1652698350.767714,2,'info','5000 files indexed'),(755,1652698350.788901,2,'info','5500 files indexed'),(756,1652698350.804514,2,'info','6000 files indexed'),(757,1652698350.829641,2,'info','6500 files indexed'),(758,1652698350.864255,2,'info','7000 files indexed'),(759,1652698350.894683,2,'info','7500 files indexed'),(760,1652698350.919122,2,'info','8000 files indexed'),(761,1652698350.943653,2,'info','8500 files indexed'),(762,1652698350.969206,2,'info','9000 files indexed'),(763,1652698351.017821,2,'info','9500 files indexed'),(764,1652698351.028739,2,'info','10000 files indexed'),(765,1652698351.040854,2,'info','10500 files indexed'),(766,1652698351.064770,2,'info','11000 files indexed'),(767,1652698351.068011,2,'info','11136 files indexed'),(768,1652698351.211222,2,'info','Analyzed 100 files containing 1.7 MB of data so far'),(769,1652698351.389881,2,'info','Analyzed 200 files containing 2.89 MB of data so far'),(770,1652698351.515891,2,'info','Analyzed 300 files containing 4.09 MB of data so far'),(771,1652698351.708502,2,'info','Analyzed 400 files containing 6.89 MB of data so far'),(772,1652698351.849805,2,'info','Analyzed 500 files containing 7.79 MB of data so far'),(773,1652698351.972057,2,'info','Analyzed 600 files containing 8.62 MB of data so far'),(774,1652698352.062114,2,'info','Analyzed 700 files containing 9.28 MB of data so far'),(775,1652698352.169941,2,'info','Analyzed 800 files containing 10.64 MB of data so far'),(776,1652698352.286049,2,'info','Analyzed 900 files containing 12.96 MB of data so far'),(777,1652698352.377238,2,'info','Analyzed 1000 files containing 13.9 MB of data so far'),(778,1652698352.476038,2,'info','Analyzed 1100 files containing 15.69 MB of data so far'),(779,1652698352.562117,2,'info','Analyzed 1200 files containing 16.2 MB of data so far'),(780,1652698352.687613,2,'info','Analyzed 1300 files containing 18.93 MB of data so far'),(781,1652698352.802450,2,'info','Analyzed 1400 files containing 20.55 MB of data so far'),(782,1652698352.898134,2,'info','Analyzed 1500 files containing 21.8 MB of data so far'),(783,1652698352.992734,2,'info','Analyzed 1600 files containing 22.56 MB of data so far'),(784,1652698353.154506,2,'info','Analyzed 1700 files containing 26.01 MB of data so far'),(785,1652698353.266233,2,'info','Analyzed 1800 files containing 26.92 MB of data so far'),(786,1652698353.380092,2,'info','Analyzed 1900 files containing 27.96 MB of data so far'),(787,1652698353.492062,2,'info','Analyzed 2000 files containing 29.18 MB of data so far'),(788,1652698353.587440,2,'info','Analyzed 2100 files containing 30.27 MB of data so far'),(789,1652698353.696376,2,'info','Analyzed 2200 files containing 31.37 MB of data so far'),(790,1652698353.798223,2,'info','Analyzed 2300 files containing 32.28 MB of data so far'),(791,1652698353.890155,2,'info','Analyzed 2400 files containing 33.41 MB of data so far'),(792,1652698353.980621,2,'info','Analyzed 2500 files containing 34.58 MB of data so far'),(793,1652698354.056180,2,'info','Analyzed 2600 files containing 34.83 MB of data so far'),(794,1652698354.127430,2,'info','Analyzed 2700 files containing 34.94 MB of data so far'),(795,1652698354.193182,2,'info','Analyzed 2800 files containing 35.12 MB of data so far'),(796,1652698354.264728,2,'info','Analyzed 2900 files containing 35.31 MB of data so far'),(797,1652698354.327613,2,'info','Analyzed 3000 files containing 35.54 MB of data so far'),(798,1652698354.384667,2,'info','Analyzed 3100 files containing 35.64 MB of data so far'),(799,1652698354.443991,2,'info','Analyzed 3200 files containing 35.77 MB of data so far'),(800,1652698354.513066,2,'info','Analyzed 3300 files containing 36.1 MB of data so far'),(801,1652698354.604219,2,'info','Analyzed 3400 files containing 36.27 MB of data so far'),(802,1652698354.688005,2,'info','Analyzed 3500 files containing 36.46 MB of data so far'),(803,1652698354.777988,2,'info','Analyzed 3600 files containing 36.79 MB of data so far'),(804,1652698354.844550,2,'info','Analyzed 3700 files containing 37.71 MB of data so far'),(805,1652698354.925134,2,'info','Analyzed 3800 files containing 38.88 MB of data so far'),(806,1652698355.020945,2,'info','Analyzed 3900 files containing 40.54 MB of data so far'),(807,1652698355.089801,2,'info','Analyzed 4000 files containing 40.96 MB of data so far'),(808,1652698355.162165,2,'info','Analyzed 4100 files containing 41.45 MB of data so far'),(809,1652698355.246921,2,'info','Analyzed 4200 files containing 41.58 MB of data so far'),(810,1652698355.328986,2,'info','Analyzed 4300 files containing 42.31 MB of data so far'),(811,1652698355.449156,2,'info','Analyzed 4400 files containing 43.02 MB of data so far'),(812,1652698355.514819,2,'info','Analyzed 4500 files containing 43.36 MB of data so far'),(813,1652698355.591838,2,'info','Analyzed 4600 files containing 43.79 MB of data so far'),(814,1652698355.682937,2,'info','Analyzed 4700 files containing 44.01 MB of data so far'),(815,1652698355.789033,2,'info','Analyzed 4800 files containing 44.5 MB of data so far'),(816,1652698355.881821,2,'info','Analyzed 4900 files containing 44.76 MB of data so far'),(817,1652698355.980561,2,'info','Analyzed 5000 files containing 45.13 MB of data so far'),(818,1652698356.071727,2,'info','Analyzed 5100 files containing 45.91 MB of data so far'),(819,1652698356.192988,2,'info','Analyzed 5200 files containing 49.57 MB of data so far'),(820,1652698356.265634,2,'info','Analyzed 5300 files containing 50.19 MB of data so far'),(821,1652698356.350360,2,'info','Analyzed 5400 files containing 50.64 MB of data so far'),(822,1652698356.458065,2,'info','Analyzed 5500 files containing 52.67 MB of data so far'),(823,1652698356.554575,2,'info','Analyzed 5600 files containing 54.11 MB of data so far'),(824,1652698356.645082,2,'info','Analyzed 5700 files containing 54.92 MB of data so far'),(825,1652698356.735550,2,'info','Analyzed 5800 files containing 54.99 MB of data so far'),(826,1652698356.816269,2,'info','Analyzed 5900 files containing 55.92 MB of data so far'),(827,1652698356.885676,2,'info','Analyzed 6000 files containing 56.26 MB of data so far'),(828,1652698356.978338,2,'info','Analyzed 6100 files containing 56.92 MB of data so far'),(829,1652698360.544563,2,'info','Analyzed 6200 files containing 57.95 MB of data so far'),(830,1652698360.695616,2,'info','Analyzed 6300 files containing 59.37 MB of data so far'),(831,1652698360.893335,2,'info','Analyzed 6400 files containing 66.83 MB of data so far'),(832,1652698361.061138,2,'info','Analyzed 6500 files containing 69.01 MB of data so far'),(833,1652698361.196718,2,'info','Analyzed 6600 files containing 69.67 MB of data so far'),(834,1652698361.323849,2,'info','Analyzed 6700 files containing 71.01 MB of data so far'),(835,1652698361.427610,2,'info','Analyzed 6800 files containing 71.51 MB of data so far'),(836,1652698361.527788,2,'info','Analyzed 6900 files containing 73.23 MB of data so far'),(837,1652698361.637835,2,'info','Analyzed 7000 files containing 75.1 MB of data so far'),(838,1652698361.721815,2,'info','Analyzed 7100 files containing 75.74 MB of data so far'),(839,1652698361.823686,2,'info','Analyzed 7200 files containing 77.79 MB of data so far'),(840,1652698361.934100,2,'info','Analyzed 7300 files containing 80.41 MB of data so far'),(841,1652698362.021609,2,'info','Analyzed 7400 files containing 81.46 MB of data so far'),(842,1652698362.100854,2,'info','Analyzed 7500 files containing 81.81 MB of data so far'),(843,1652698362.178427,2,'info','Analyzed 7600 files containing 82.58 MB of data so far'),(844,1652698362.267403,2,'info','Analyzed 7700 files containing 83.69 MB of data so far'),(845,1652698362.336848,2,'info','Analyzed 7800 files containing 84.12 MB of data so far'),(846,1652698362.418644,2,'info','Analyzed 7900 files containing 85.43 MB of data so far'),(847,1652698362.488180,2,'info','Analyzed 8000 files containing 85.68 MB of data so far'),(848,1652698362.558798,2,'info','Analyzed 8100 files containing 86.28 MB of data so far'),(849,1652698362.649213,2,'info','Analyzed 8200 files containing 86.63 MB of data so far'),(850,1652698362.744557,2,'info','Analyzed 8300 files containing 86.83 MB of data so far'),(851,1652698362.835173,2,'info','Analyzed 8400 files containing 87.39 MB of data so far'),(852,1652698362.918845,2,'info','Analyzed 8500 files containing 87.61 MB of data so far'),(853,1652698363.045618,2,'info','Analyzed 8600 files containing 88.51 MB of data so far'),(854,1652698363.122829,2,'info','Analyzed 8700 files containing 88.83 MB of data so far'),(855,1652698363.211578,2,'info','Analyzed 8800 files containing 88.95 MB of data so far'),(856,1652698363.337191,2,'info','Analyzed 8900 files containing 89.55 MB of data so far'),(857,1652698363.484492,2,'info','Analyzed 9000 files containing 91.17 MB of data so far'),(858,1652698363.643222,2,'info','Analyzed 9100 files containing 94.48 MB of data so far'),(859,1652698363.757594,2,'info','Analyzed 9200 files containing 95.54 MB of data so far'),(860,1652698363.918914,2,'info','Analyzed 9300 files containing 99.28 MB of data so far'),(861,1652698364.097653,2,'info','Analyzed 9400 files containing 102.65 MB of data so far'),(862,1652698364.217367,2,'info','Analyzed 9500 files containing 103.45 MB of data so far'),(863,1652698364.321643,2,'info','Analyzed 9600 files containing 103.63 MB of data so far'),(864,1652698364.427259,2,'info','Analyzed 9700 files containing 103.89 MB of data so far'),(865,1652698364.595731,2,'info','Analyzed 9800 files containing 104.2 MB of data so far'),(866,1652698364.705148,2,'info','Analyzed 9900 files containing 104.33 MB of data so far'),(867,1652698364.815756,2,'info','Analyzed 10000 files containing 104.57 MB of data so far'),(868,1652698364.930242,2,'info','Analyzed 10100 files containing 106.18 MB of data so far'),(869,1652698365.087205,2,'info','Analyzed 10200 files containing 109.21 MB of data so far'),(870,1652698365.222611,2,'info','Analyzed 10300 files containing 110.52 MB of data so far'),(871,1652698365.337280,2,'info','Analyzed 10400 files containing 111.89 MB of data so far'),(872,1652698365.661785,2,'info','Analyzed 10500 files containing 124.61 MB of data so far'),(873,1652698365.872922,2,'info','Analyzed 10600 files containing 128.2 MB of data so far'),(874,1652698366.023267,2,'info','Analyzed 10700 files containing 130.1 MB of data so far'),(875,1652698366.163787,2,'info','Analyzed 10800 files containing 131.72 MB of data so far'),(876,1652698366.375139,2,'info','Analyzed 10900 files containing 135.94 MB of data so far'),(877,1652698366.510282,2,'info','Analyzed 11000 files containing 137.6 MB of data so far'),(878,1652698366.707727,2,'info','Analyzed 11100 files containing 139.09 MB of data so far'),(879,1652698366.756522,2,'info','Analyzed 11136 files containing 139.72 MB of data.'),(880,1652698366.756819,10,'info','SUM_ENDOK:Comparing core WordPress files against originals in repository'),(881,1652698366.764588,10,'info','SUM_ENDOK:Scanning for unknown files in wp-admin and wp-includes'),(882,1652698367.807674,10,'info','SUM_ENDOK:Scanning for known malware files'),(883,1652698367.818699,10,'info','SUM_START:Check for publicly accessible configuration files, backup files and logs'),(884,1652698367.830984,10,'info','SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),(885,1652698367.838755,10,'info','SUM_START:Scanning file contents for infections and vulnerabilities'),(886,1652698367.840839,10,'info','SUM_START:Scanning file contents for URLs on a domain blocklist'),(887,1652698370.155038,2,'info','Starting scan of file contents'),(888,1652698371.166960,2,'info','Scanned contents of 47 additional files at 46.50 per second'),(889,1652698372.172062,2,'info','Scanned contents of 91 additional files at 45.14 per second'),(890,1652698373.179545,2,'info','Scanned contents of 147 additional files at 48.62 per second'),(891,1652698374.189851,2,'info','Scanned contents of 200 additional files at 49.58 per second'),(892,1652698375.230445,2,'info','Scanned contents of 260 additional files at 51.24 per second'),(893,1652698378.297207,2,'info','Scanned contents of 305 additional files at 37.47 per second'),(894,1652698379.304074,2,'info','Scanned contents of 352 additional files at 38.48 per second'),(895,1652698380.309437,2,'info','Scanned contents of 400 additional files at 39.40 per second'),(896,1652698381.316518,2,'info','Scanned contents of 451 additional files at 40.41 per second'),(897,1652698382.317113,2,'info','Scanned contents of 496 additional files at 40.79 per second'),(898,1652698383.322825,2,'info','Scanned contents of 545 additional files at 41.39 per second'),(899,1652698384.328948,2,'info','Scanned contents of 596 additional files at 42.05 per second'),(900,1652698385.339032,2,'info','Scanned contents of 641 additional files at 42.22 per second'),(901,1652698386.344423,2,'info','Scanned contents of 689 additional files at 42.56 per second'),(902,1652698387.350882,2,'info','Scanned contents of 730 additional files at 42.46 per second'),(903,1652698388.358920,2,'info','Scanned contents of 789 additional files at 43.35 per second'),(904,1652698389.376100,2,'info','Scanned contents of 812 additional files at 42.25 per second'),(905,1652698390.385485,2,'info','Scanned contents of 855 additional files at 42.27 per second'),(906,1652698391.395051,2,'info','Scanned contents of 908 additional files at 42.75 per second'),(907,1652698392.400759,2,'info','Scanned contents of 957 additional files at 43.02 per second'),(908,1652698393.433541,2,'info','Scanned contents of 1009 additional files at 43.35 per second'),(909,1652698396.202297,2,'info','Scanned contents of 1041 additional files at 39.97 per second'),(910,1652698397.215041,2,'info','Scanned contents of 1098 additional files at 40.58 per second'),(911,1652698398.316021,2,'info','Scanned contents of 1137 additional files at 40.38 per second'),(912,1652698399.316439,2,'info','Scanned contents of 1188 additional files at 40.74 per second'),(913,1652698400.324143,2,'info','Scanned contents of 1236 additional files at 40.97 per second'),(914,1652698401.339304,2,'info','Scanned contents of 1286 additional files at 41.24 per second'),(915,1652698402.345101,2,'info','Scanned contents of 1339 additional files at 41.60 per second'),(916,1652698403.255053,2,'info','Scanned contents of 1380 additional files at 41.69 per second'),(917,1652698403.255507,2,'info','Asking Wordfence to check URLs against malware list.'),(918,1652698403.257557,2,'info','Checking 409 host keys against Wordfence scanning servers.'),(919,1652698404.290789,2,'info','Done host key check.'),(920,1652698404.362356,2,'info','Done file contents scan'),(921,1652698404.363936,10,'info','SUM_ENDOK:Scanning file contents for infections and vulnerabilities'),(922,1652698404.371610,10,'info','SUM_ENDOK:Scanning file contents for URLs on a domain blocklist'),(923,1652698404.389120,10,'info','SUM_START:Scanning for publicly accessible quarantined files'),(924,1652698404.394391,10,'info','SUM_ENDOK:Scanning for publicly accessible quarantined files'),(925,1652698404.413264,10,'info','SUM_START:Scanning posts for URLs on a domain blocklist'),(926,1652698404.579820,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(927,1652698404.580243,2,'info','Checking 14 host keys against Wordfence scanning servers.'),(928,1652698405.588574,2,'info','Done host key check.'),(929,1652698405.624122,2,'info','Done examining URLs'),(930,1652698405.678323,10,'info','SUM_ENDOK:Scanning posts for URLs on a domain blocklist'),(931,1652698405.690279,10,'info','SUM_START:Scanning comments for URLs on a domain blocklist'),(932,1652698405.806426,10,'info','SUM_ENDOK:Scanning comments for URLs on a domain blocklist'),(933,1652698405.818311,10,'info','SUM_START:Scanning for weak passwords'),(934,1652698405.822230,2,'info','Starting password strength check on 2 users.'),(935,1652698405.978246,10,'info','SUM_ENDOK:Scanning for weak passwords'),(936,1652698405.988556,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(937,1652698418.812063,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(938,1652698418.822572,10,'info','SUM_START:Scanning for admin users not created through WordPress'),(939,1652698419.872004,10,'info','SUM_ENDOK:Scanning for admin users not created through WordPress'),(940,1652698419.879469,10,'info','SUM_START:Scanning for suspicious site options'),(941,1652698419.936327,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(942,1652698419.936825,2,'info','Done examining URLs'),(943,1652698419.986771,10,'info','SUM_ENDOK:Scanning for suspicious site options'),(944,1652698419.993035,1,'info','-------------------'),(945,1652698419.993408,2,'info','Wordfence used 71.37 MB of memory for scan. Server peak memory usage was: 103.37 MB'),(946,1652698419.993654,1,'info','Scan Complete. Scanned 11136 files, 12 plugins, 6 themes, 86 posts, 0 comments and 1612 URLs in 1 minute 18 seconds.'),(947,1652698419.993791,10,'info','SUM_FINAL:Scan complete. You have 4 new issues to fix. See below.'),(948,1652698506.592073,10,'info','SUM_PREP:Preparing a new scan.'),(949,1652698506.600397,1,'info','Contacting Wordfence to initiate scan'),(950,1652698507.682981,10,'info','SUM_PAIDONLY:Check if your site is being Spamvertized is for paid members only'),(951,1652698509.684614,10,'info','SUM_PAIDONLY:Checking if your IP is generating spam is for paid members only'),(952,1652698511.686212,10,'info','SUM_PAIDONLY:Checking if your site is on a domain blocklist is for paid members only'),(953,1652698513.694322,10,'info','SUM_START:Checking for the most secure way to get IPs'),(954,1652698513.700068,10,'info','SUM_ENDSKIPPED:Checking for the most secure way to get IPs'),(955,1652698513.711126,10,'info','SUM_START:Scanning to check available disk space'),(956,1652698513.714850,2,'info','Total disk space: 1.48 TB -- Free disk space: 843.03 GB'),(957,1652698513.715091,2,'info','The disk has 863262.16 MB available'),(958,1652698513.715237,10,'info','SUM_ENDOK:Scanning to check available disk space'),(959,1652698513.722135,10,'info','SUM_START:Checking Web Application Firewall status'),(960,1652698513.724616,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(961,1652698513.730961,10,'info','SUM_START:Checking for future GeoIP support'),(962,1652698513.733201,10,'info','SUM_ENDOK:Checking for future GeoIP support'),(963,1652698513.739330,10,'info','SUM_START:Checking for paths skipped due to scan settings'),(964,1652698513.741999,10,'info','SUM_ENDOK:Checking for paths skipped due to scan settings'),(965,1652698513.746724,2,'info','Getting plugin list from WordPress'),(966,1652698513.748727,2,'info','Found 11 plugins'),(967,1652698513.748898,2,'info','Getting theme list from WordPress'),(968,1652698513.750515,2,'info','Found 6 themes'),(969,1652698513.914080,10,'info','SUM_START:Fetching core, theme and plugin file signatures from Wordfence'),(970,1652698516.452538,10,'info','SUM_ENDSUCCESS:Fetching core, theme and plugin file signatures from Wordfence'),(971,1652698516.457911,10,'info','SUM_START:Fetching list of known malware files from Wordfence'),(972,1652698516.460935,10,'info','SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),(973,1652698516.465232,10,'info','SUM_START:Fetching list of known core files from Wordfence'),(974,1652698516.466177,10,'info','SUM_ENDSUCCESS:Fetching list of known core files from Wordfence'),(975,1652698516.470786,10,'info','SUM_START:Comparing core WordPress files against originals in repository'),(976,1652698516.473102,10,'info','SUM_DISABLED:Skipping theme scan'),(977,1652698516.473431,10,'info','SUM_DISABLED:Skipping plugin scan'),(978,1652698516.475555,10,'info','SUM_START:Scanning for known malware files'),(979,1652698516.479928,10,'info','SUM_START:Scanning for unknown files in wp-admin and wp-includes'),(980,1652698516.497693,2,'info','500 files indexed'),(981,1652698516.509635,2,'info','1000 files indexed'),(982,1652698516.521091,2,'info','1500 files indexed'),(983,1652698516.532786,2,'info','2000 files indexed'),(984,1652698516.545683,2,'info','2500 files indexed'),(985,1652698516.561703,2,'info','3000 files indexed'),(986,1652698516.576901,2,'info','3500 files indexed'),(987,1652698516.591680,2,'info','4000 files indexed'),(988,1652698516.610242,2,'info','4500 files indexed'),(989,1652698516.630556,2,'info','5000 files indexed'),(990,1652698516.641615,2,'info','5500 files indexed'),(991,1652698516.652069,2,'info','6000 files indexed'),(992,1652698516.661626,2,'info','6500 files indexed'),(993,1652698516.672131,2,'info','7000 files indexed'),(994,1652698516.681532,2,'info','7500 files indexed'),(995,1652698516.703138,2,'info','8000 files indexed'),(996,1652698516.727379,2,'info','8500 files indexed'),(997,1652698516.747016,2,'info','9000 files indexed'),(998,1652698516.772640,2,'info','9500 files indexed'),(999,1652698516.784223,2,'info','10000 files indexed'),(1000,1652698516.792188,2,'info','10500 files indexed'),(1001,1652698516.800664,2,'info','11000 files indexed'),(1002,1652698516.803494,2,'info','11139 files indexed'),(1003,1652698516.889375,2,'info','Analyzed 100 files containing 1.7 MB of data so far'),(1004,1652698516.966460,2,'info','Analyzed 200 files containing 2.89 MB of data so far'),(1005,1652698517.050393,2,'info','Analyzed 300 files containing 4.09 MB of data so far'),(1006,1652698517.163778,2,'info','Analyzed 400 files containing 6.89 MB of data so far'),(1007,1652698517.245089,2,'info','Analyzed 500 files containing 7.79 MB of data so far'),(1008,1652698517.375429,2,'info','Analyzed 600 files containing 8.62 MB of data so far'),(1009,1652698517.512977,2,'info','Analyzed 700 files containing 9.28 MB of data so far'),(1010,1652698517.596067,2,'info','Analyzed 800 files containing 10.64 MB of data so far'),(1011,1652698517.696154,2,'info','Analyzed 900 files containing 12.96 MB of data so far'),(1012,1652698517.782615,2,'info','Analyzed 1000 files containing 13.9 MB of data so far'),(1013,1652698517.875724,2,'info','Analyzed 1100 files containing 15.69 MB of data so far'),(1014,1652698517.945130,2,'info','Analyzed 1200 files containing 16.2 MB of data so far'),(1015,1652698518.047172,2,'info','Analyzed 1300 files containing 18.93 MB of data so far'),(1016,1652698518.128748,2,'info','Analyzed 1400 files containing 20.55 MB of data so far'),(1017,1652698518.207212,2,'info','Analyzed 1500 files containing 21.8 MB of data so far'),(1018,1652698518.348552,2,'info','Analyzed 1600 files containing 22.56 MB of data so far'),(1019,1652698518.525243,2,'info','Analyzed 1700 files containing 26.01 MB of data so far'),(1020,1652698518.608763,2,'info','Analyzed 1800 files containing 26.92 MB of data so far'),(1021,1652698518.690431,2,'info','Analyzed 1900 files containing 27.96 MB of data so far'),(1022,1652698518.794178,2,'info','Analyzed 2000 files containing 29.18 MB of data so far'),(1023,1652698518.888413,2,'info','Analyzed 2100 files containing 30.27 MB of data so far'),(1024,1652698518.996723,2,'info','Analyzed 2200 files containing 31.37 MB of data so far'),(1025,1652698519.092119,2,'info','Analyzed 2300 files containing 32.28 MB of data so far'),(1026,1652698519.182775,2,'info','Analyzed 2400 files containing 33.41 MB of data so far'),(1027,1652698519.438544,2,'info','Analyzed 2500 files containing 34.58 MB of data so far'),(1028,1652698519.510854,2,'info','Analyzed 2600 files containing 34.83 MB of data so far'),(1029,1652698519.576651,2,'info','Analyzed 2700 files containing 34.94 MB of data so far'),(1030,1652698519.663292,2,'info','Analyzed 2800 files containing 35.12 MB of data so far'),(1031,1652698519.735317,2,'info','Analyzed 2900 files containing 35.31 MB of data so far'),(1032,1652698519.812926,2,'info','Analyzed 3000 files containing 35.54 MB of data so far'),(1033,1652698519.893003,2,'info','Analyzed 3100 files containing 35.64 MB of data so far'),(1034,1652698519.955845,2,'info','Analyzed 3200 files containing 35.77 MB of data so far'),(1035,1652698520.025883,2,'info','Analyzed 3300 files containing 36.1 MB of data so far'),(1036,1652698520.096051,2,'info','Analyzed 3400 files containing 36.27 MB of data so far'),(1037,1652698520.163612,2,'info','Analyzed 3500 files containing 36.46 MB of data so far'),(1038,1652698520.251039,2,'info','Analyzed 3600 files containing 36.79 MB of data so far'),(1039,1652698520.478756,2,'info','Analyzed 3700 files containing 37.71 MB of data so far'),(1040,1652698520.592544,2,'info','Analyzed 3800 files containing 38.88 MB of data so far'),(1041,1652698520.697818,2,'info','Analyzed 3900 files containing 40.54 MB of data so far'),(1042,1652698520.771654,2,'info','Analyzed 4000 files containing 40.96 MB of data so far'),(1043,1652698520.866451,2,'info','Analyzed 4100 files containing 41.45 MB of data so far'),(1044,1652698520.929033,2,'info','Analyzed 4200 files containing 41.58 MB of data so far'),(1045,1652698521.000378,2,'info','Analyzed 4300 files containing 42.31 MB of data so far'),(1046,1652698521.074565,2,'info','Analyzed 4400 files containing 43.02 MB of data so far'),(1047,1652698521.155363,2,'info','Analyzed 4500 files containing 43.36 MB of data so far'),(1048,1652698521.247665,2,'info','Analyzed 4600 files containing 43.79 MB of data so far'),(1049,1652698521.445872,2,'info','Analyzed 4700 files containing 44.01 MB of data so far'),(1050,1652698521.529736,2,'info','Analyzed 4800 files containing 44.5 MB of data so far'),(1051,1652698521.600510,2,'info','Analyzed 4900 files containing 44.76 MB of data so far'),(1052,1652698521.680035,2,'info','Analyzed 5000 files containing 45.13 MB of data so far'),(1053,1652698521.765087,2,'info','Analyzed 5100 files containing 45.91 MB of data so far'),(1054,1652698521.887805,2,'info','Analyzed 5200 files containing 49.57 MB of data so far'),(1055,1652698521.956752,2,'info','Analyzed 5300 files containing 50.19 MB of data so far'),(1056,1652698522.034272,2,'info','Analyzed 5400 files containing 50.64 MB of data so far'),(1057,1652698522.133801,2,'info','Analyzed 5500 files containing 52.67 MB of data so far'),(1058,1652698522.226124,2,'info','Analyzed 5600 files containing 54.11 MB of data so far'),(1059,1652698522.460811,2,'info','Analyzed 5700 files containing 54.92 MB of data so far'),(1060,1652698522.560079,2,'info','Analyzed 5800 files containing 54.99 MB of data so far'),(1061,1652698522.651103,2,'info','Analyzed 5900 files containing 55.92 MB of data so far'),(1062,1652698522.721051,2,'info','Analyzed 6000 files containing 56.26 MB of data so far'),(1063,1652698522.802388,2,'info','Analyzed 6100 files containing 56.92 MB of data so far'),(1064,1652698522.879824,2,'info','Analyzed 6200 files containing 57.95 MB of data so far'),(1065,1652698522.984025,2,'info','Analyzed 6300 files containing 59.37 MB of data so far'),(1066,1652698525.507694,2,'info','Analyzed 6400 files containing 66.83 MB of data so far'),(1067,1652698525.624332,2,'info','Analyzed 6500 files containing 69.01 MB of data so far'),(1068,1652698525.705638,2,'info','Analyzed 6600 files containing 69.67 MB of data so far'),(1069,1652698525.809846,2,'info','Analyzed 6700 files containing 71.01 MB of data so far'),(1070,1652698525.891568,2,'info','Analyzed 6800 files containing 71.51 MB of data so far'),(1071,1652698525.982661,2,'info','Analyzed 6900 files containing 73.23 MB of data so far'),(1072,1652698526.097380,2,'info','Analyzed 7000 files containing 75.1 MB of data so far'),(1073,1652698526.164269,2,'info','Analyzed 7100 files containing 75.74 MB of data so far'),(1074,1652698526.258981,2,'info','Analyzed 7200 files containing 77.79 MB of data so far'),(1075,1652698526.485596,2,'info','Analyzed 7300 files containing 80.41 MB of data so far'),(1076,1652698526.579983,2,'info','Analyzed 7400 files containing 81.46 MB of data so far'),(1077,1652698526.658380,2,'info','Analyzed 7500 files containing 81.81 MB of data so far'),(1078,1652698526.728014,2,'info','Analyzed 7600 files containing 82.58 MB of data so far'),(1079,1652698526.810409,2,'info','Analyzed 7700 files containing 83.69 MB of data so far'),(1080,1652698526.875200,2,'info','Analyzed 7800 files containing 84.12 MB of data so far'),(1081,1652698526.958355,2,'info','Analyzed 7900 files containing 85.43 MB of data so far'),(1082,1652698527.021384,2,'info','Analyzed 8000 files containing 85.68 MB of data so far'),(1083,1652698527.101038,2,'info','Analyzed 8100 files containing 86.28 MB of data so far'),(1084,1652698527.168084,2,'info','Analyzed 8200 files containing 86.63 MB of data so far'),(1085,1652698527.230665,2,'info','Analyzed 8300 files containing 86.83 MB of data so far'),(1086,1652698527.432029,2,'info','Analyzed 8400 files containing 87.39 MB of data so far'),(1087,1652698527.531981,2,'info','Analyzed 8500 files containing 87.61 MB of data so far'),(1088,1652698527.637118,2,'info','Analyzed 8600 files containing 88.51 MB of data so far'),(1089,1652698527.749144,2,'info','Analyzed 8700 files containing 88.83 MB of data so far'),(1090,1652698527.815584,2,'info','Analyzed 8800 files containing 88.95 MB of data so far'),(1091,1652698527.885029,2,'info','Analyzed 8900 files containing 89.56 MB of data so far'),(1092,1652698527.975311,2,'info','Analyzed 9000 files containing 91.22 MB of data so far'),(1093,1652698528.086218,2,'info','Analyzed 9100 files containing 94.64 MB of data so far'),(1094,1652698528.170044,2,'info','Analyzed 9200 files containing 95.76 MB of data so far'),(1095,1652698528.268188,2,'info','Analyzed 9300 files containing 99.1 MB of data so far'),(1096,1652698528.524314,2,'info','Analyzed 9400 files containing 102.48 MB of data so far'),(1097,1652698528.620942,2,'info','Analyzed 9500 files containing 103.27 MB of data so far'),(1098,1652698528.696002,2,'info','Analyzed 9600 files containing 103.46 MB of data so far'),(1099,1652698528.773552,2,'info','Analyzed 9700 files containing 103.72 MB of data so far'),(1100,1652698528.855337,2,'info','Analyzed 9800 files containing 104.02 MB of data so far'),(1101,1652698528.924610,2,'info','Analyzed 9900 files containing 104.15 MB of data so far'),(1102,1652698528.988020,2,'info','Analyzed 10000 files containing 104.4 MB of data so far'),(1103,1652698529.093026,2,'info','Analyzed 10100 files containing 105.98 MB of data so far'),(1104,1652698529.230085,2,'info','Analyzed 10200 files containing 108.65 MB of data so far'),(1105,1652698529.455815,2,'info','Analyzed 10300 files containing 110.34 MB of data so far'),(1106,1652698529.535929,2,'info','Analyzed 10400 files containing 111.71 MB of data so far'),(1107,1652698529.811404,2,'info','Analyzed 10500 files containing 124.38 MB of data so far'),(1108,1652698529.932109,2,'info','Analyzed 10600 files containing 127.75 MB of data so far'),(1109,1652698530.029677,2,'info','Analyzed 10700 files containing 129.42 MB of data so far'),(1110,1652698530.125296,2,'info','Analyzed 10800 files containing 131.55 MB of data so far'),(1111,1652698530.316129,2,'info','Analyzed 10900 files containing 135.75 MB of data so far'),(1112,1652698530.528027,2,'info','Analyzed 11000 files containing 137.43 MB of data so far'),(1113,1652698530.612936,2,'info','Analyzed 11100 files containing 138.79 MB of data so far'),(1114,1652698530.649982,2,'info','Analyzed 11139 files containing 139.55 MB of data.'),(1115,1652698530.650169,10,'info','SUM_ENDOK:Comparing core WordPress files against originals in repository'),(1116,1652698530.654938,10,'info','SUM_ENDOK:Scanning for unknown files in wp-admin and wp-includes'),(1117,1652698531.794821,10,'info','SUM_ENDOK:Scanning for known malware files'),(1118,1652698531.813144,10,'info','SUM_START:Check for publicly accessible configuration files, backup files and logs'),(1119,1652698531.825172,10,'info','SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),(1120,1652698531.832395,10,'info','SUM_START:Scanning file contents for infections and vulnerabilities'),(1121,1652698531.834464,10,'info','SUM_START:Scanning file contents for URLs on a domain blocklist'),(1122,1652698534.262205,2,'info','Starting scan of file contents'),(1123,1652698535.294472,2,'info','Scanned contents of 47 additional files at 45.61 per second'),(1124,1652698536.303448,2,'info','Scanned contents of 84 additional files at 41.19 per second'),(1125,1652698537.319176,2,'info','Scanned contents of 138 additional files at 45.17 per second'),(1126,1652698538.378823,2,'info','Scanned contents of 181 additional files at 43.99 per second'),(1127,1652698539.403470,2,'info','Scanned contents of 232 additional files at 45.14 per second'),(1128,1652698540.435483,2,'info','Scanned contents of 285 additional files at 46.18 per second'),(1129,1652698543.432516,2,'info','Scanned contents of 312 additional files at 34.03 per second'),(1130,1652698544.490923,2,'info','Scanned contents of 358 additional files at 35.01 per second'),(1131,1652698545.526687,2,'info','Scanned contents of 404 additional files at 35.87 per second'),(1132,1652698546.528380,2,'info','Scanned contents of 450 additional files at 36.69 per second'),(1133,1652698547.533734,2,'info','Scanned contents of 498 additional files at 37.53 per second'),(1134,1652698548.566297,2,'info','Scanned contents of 545 additional files at 38.11 per second'),(1135,1652698549.619097,2,'info','Scanned contents of 593 additional files at 38.62 per second'),(1136,1652698550.639242,2,'info','Scanned contents of 632 additional files at 38.59 per second'),(1137,1652698551.643598,2,'info','Scanned contents of 673 additional files at 38.72 per second'),(1138,1652698552.659088,2,'info','Scanned contents of 707 additional files at 38.43 per second'),(1139,1652698553.659911,2,'info','Scanned contents of 760 additional files at 39.18 per second'),(1140,1652698554.662436,2,'info','Scanned contents of 808 additional files at 39.61 per second'),(1141,1652698555.670456,2,'info','Scanned contents of 848 additional files at 39.61 per second'),(1142,1652698556.692144,2,'info','Scanned contents of 902 additional files at 40.22 per second'),(1143,1652698557.738863,2,'info','Scanned contents of 947 additional files at 40.34 per second'),(1144,1652698558.792824,2,'info','Scanned contents of 995 additional files at 40.56 per second'),(1145,1652698561.738886,2,'info','Scanned contents of 1004 additional files at 36.54 per second'),(1146,1652698562.756081,2,'info','Scanned contents of 1042 additional files at 36.57 per second'),(1147,1652698563.781687,2,'info','Scanned contents of 1096 additional files at 37.13 per second'),(1148,1652698564.787171,2,'info','Scanned contents of 1135 additional files at 37.18 per second'),(1149,1652698565.822211,2,'info','Scanned contents of 1183 additional files at 37.49 per second'),(1150,1652698566.831897,2,'info','Scanned contents of 1227 additional files at 37.68 per second'),(1151,1652698567.843526,2,'info','Scanned contents of 1274 additional files at 37.94 per second'),(1152,1652698568.858017,2,'info','Scanned contents of 1324 additional files at 38.27 per second'),(1153,1652698569.867640,2,'info','Scanned contents of 1371 additional files at 38.51 per second'),(1154,1652698570.031139,2,'info','Scanned contents of 1378 additional files at 38.53 per second'),(1155,1652698570.031496,2,'info','Asking Wordfence to check URLs against malware list.'),(1156,1652698570.033378,2,'info','Checking 409 host keys against Wordfence scanning servers.'),(1157,1652698571.087528,2,'info','Done host key check.'),(1158,1652698571.142994,2,'info','Done file contents scan'),(1159,1652698571.144699,10,'info','SUM_ENDOK:Scanning file contents for infections and vulnerabilities'),(1160,1652698571.151269,10,'info','SUM_ENDOK:Scanning file contents for URLs on a domain blocklist'),(1161,1652698571.160194,10,'info','SUM_START:Scanning for publicly accessible quarantined files'),(1162,1652698571.163371,10,'info','SUM_ENDOK:Scanning for publicly accessible quarantined files'),(1163,1652698571.172762,10,'info','SUM_START:Scanning posts for URLs on a domain blocklist'),(1164,1652698571.299408,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(1165,1652698571.307414,2,'info','Checking 14 host keys against Wordfence scanning servers.'),(1166,1652698572.337066,2,'info','Done host key check.'),(1167,1652698572.340412,2,'info','Done examining URLs'),(1168,1652698572.399444,10,'info','SUM_ENDOK:Scanning posts for URLs on a domain blocklist'),(1169,1652698572.417943,10,'info','SUM_START:Scanning comments for URLs on a domain blocklist'),(1170,1652698572.520354,10,'info','SUM_ENDOK:Scanning comments for URLs on a domain blocklist'),(1171,1652698572.528279,10,'info','SUM_START:Scanning for weak passwords'),(1172,1652698572.530761,2,'info','Starting password strength check on 2 users.'),(1173,1652698572.675326,10,'info','SUM_ENDOK:Scanning for weak passwords'),(1174,1652698572.683232,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(1175,1652698585.572277,10,'info','SUM_ENDOK:Scanning for old themes, plugins and core files'),(1176,1652698585.580992,10,'info','SUM_START:Scanning for admin users not created through WordPress'),(1177,1652698586.638269,10,'info','SUM_ENDOK:Scanning for admin users not created through WordPress'),(1178,1652698586.648563,10,'info','SUM_START:Scanning for suspicious site options'),(1179,1652698586.703440,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(1180,1652698586.703903,2,'info','Done examining URLs'),(1181,1652698586.752184,10,'info','SUM_ENDOK:Scanning for suspicious site options'),(1182,1652698586.757927,1,'info','-------------------'),(1183,1652698586.758277,2,'info','Wordfence used 13.37 MB of memory for scan. Server peak memory usage was: 51.37 MB'),(1184,1652698586.758481,1,'info','Scan Complete. Scanned 11139 files, 12 plugins, 6 themes, 86 posts, 0 comments and 1612 URLs in 1 minute 19 seconds.'),(1185,1652698586.758628,10,'info','SUM_FINAL:Scan complete. Congratulations, no new problems found.');
/*!40000 ALTER TABLE `wp_wfstatus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wftrafficrates`
--

DROP TABLE IF EXISTS `wp_wftrafficrates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wftrafficrates` (
  `eMin` int(10) unsigned NOT NULL,
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `hitType` enum('hit','404') NOT NULL DEFAULT 'hit',
  `hits` int(10) unsigned NOT NULL,
  PRIMARY KEY (`eMin`,`IP`,`hitType`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wftrafficrates`
--

LOCK TABLES `wp_wftrafficrates` WRITE;
/*!40000 ALTER TABLE `wp_wftrafficrates` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wftrafficrates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_api_keys`
--

DROP TABLE IF EXISTS `wp_woocommerce_api_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_api_keys` (
  `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `description` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `permissions` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `consumer_key` char(64) COLLATE utf8mb4_unicode_ci NOT NULL,
  `consumer_secret` char(43) COLLATE utf8mb4_unicode_ci NOT NULL,
  `nonces` longtext COLLATE utf8mb4_unicode_ci,
  `truncated_key` char(7) COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `consumer_key` (`consumer_key`),
  KEY `consumer_secret` (`consumer_secret`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_api_keys`
--

LOCK TABLES `wp_woocommerce_api_keys` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_api_keys` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_api_keys` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_attribute_taxonomies`
--

DROP TABLE IF EXISTS `wp_woocommerce_attribute_taxonomies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_label` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `attribute_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_orderby` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_public` int(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`attribute_id`),
  KEY `attribute_name` (`attribute_name`(20))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_attribute_taxonomies`
--

LOCK TABLES `wp_woocommerce_attribute_taxonomies` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_attribute_taxonomies` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_attribute_taxonomies` VALUES (1,'weight','Weight','select','menu_order',0);
/*!40000 ALTER TABLE `wp_woocommerce_attribute_taxonomies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_downloadable_product_permissions`
--

DROP TABLE IF EXISTS `wp_woocommerce_downloadable_product_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `download_id` varchar(36) COLLATE utf8mb4_unicode_ci NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `order_key` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_email` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `downloads_remaining` varchar(9) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access_expires` datetime DEFAULT NULL,
  `download_count` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`permission_id`),
  KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`),
  KEY `download_order_product` (`download_id`,`order_id`,`product_id`),
  KEY `order_id` (`order_id`),
  KEY `user_order_remaining_expires` (`user_id`,`order_id`,`downloads_remaining`,`access_expires`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_downloadable_product_permissions`
--

LOCK TABLES `wp_woocommerce_downloadable_product_permissions` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_downloadable_product_permissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_downloadable_product_permissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_log`
--

DROP TABLE IF EXISTS `wp_woocommerce_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_log` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `level` smallint(4) NOT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `context` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`log_id`),
  KEY `level` (`level`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_log`
--

LOCK TABLES `wp_woocommerce_log` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_order_itemmeta`
--

DROP TABLE IF EXISTS `wp_woocommerce_order_itemmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_order_itemmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `order_item_id` (`order_item_id`),
  KEY `meta_key` (`meta_key`(32))
) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_order_itemmeta`
--

LOCK TABLES `wp_woocommerce_order_itemmeta` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_order_itemmeta` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES (1,1,'_product_id','184'),(2,1,'_variation_id','0'),(3,1,'_qty','1'),(4,1,'_tax_class',''),(5,1,'_line_subtotal','29'),(6,1,'_line_subtotal_tax','0'),(7,1,'_line_total','29'),(8,1,'_line_tax','0'),(9,1,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(10,2,'_product_id','659'),(11,2,'_variation_id','0'),(12,2,'_qty','1'),(13,2,'_tax_class',''),(14,2,'_line_subtotal','35'),(15,2,'_line_subtotal_tax','0'),(16,2,'_line_total','35'),(17,2,'_line_tax','0'),(18,2,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(19,3,'_product_id','659'),(20,3,'_variation_id','0'),(21,3,'_qty','1'),(22,3,'_tax_class',''),(23,3,'_line_subtotal','35'),(24,3,'_line_subtotal_tax','0'),(25,3,'_line_total','35'),(26,3,'_line_tax','0'),(27,3,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(28,4,'_product_id','659'),(29,4,'_variation_id','0'),(30,4,'_qty','1'),(31,4,'_tax_class',''),(32,4,'_line_subtotal','35'),(33,4,'_line_subtotal_tax','0'),(34,4,'_line_total','35'),(35,4,'_line_tax','0'),(36,4,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(37,5,'_product_id','866'),(38,5,'_variation_id','869'),(39,5,'_qty','1'),(40,5,'_tax_class',''),(41,5,'_line_subtotal','8'),(42,5,'_line_subtotal_tax','0'),(43,5,'_line_total','8'),(44,5,'_line_tax','0'),(45,5,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(46,5,'pa_weight','10-sticks-50-pou');
/*!40000 ALTER TABLE `wp_woocommerce_order_itemmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_order_items`
--

DROP TABLE IF EXISTS `wp_woocommerce_order_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_order_items` (
  `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_name` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `order_item_type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `order_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_order_items`
--

LOCK TABLES `wp_woocommerce_order_items` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_order_items` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_order_items` VALUES (1,'Alanya Braided Leather','line_item',725),(2,'Sandal Ultimo','line_item',726),(3,'Sandal Ultimo','line_item',727),(4,'Sandal Ultimo','line_item',728),(5,'Padmini Incense - 10 Sticks 50 POU','line_item',1107);
/*!40000 ALTER TABLE `wp_woocommerce_order_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_payment_tokenmeta`
--

DROP TABLE IF EXISTS `wp_woocommerce_payment_tokenmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_payment_tokenmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `payment_token_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `payment_token_id` (`payment_token_id`),
  KEY `meta_key` (`meta_key`(32))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_payment_tokenmeta`
--

LOCK TABLES `wp_woocommerce_payment_tokenmeta` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokenmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokenmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_payment_tokens`
--

DROP TABLE IF EXISTS `wp_woocommerce_payment_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_payment_tokens` (
  `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `gateway_id` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`token_id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_payment_tokens`
--

LOCK TABLES `wp_woocommerce_payment_tokens` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokens` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_sessions`
--

DROP TABLE IF EXISTS `wp_woocommerce_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_sessions` (
  `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `session_key` char(32) COLLATE utf8mb4_unicode_ci NOT NULL,
  `session_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `session_expiry` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`session_id`),
  UNIQUE KEY `session_key` (`session_key`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_sessions`
--

LOCK TABLES `wp_woocommerce_sessions` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_sessions` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_sessions` VALUES (2,'t_3bf0bd64bd21db0629a2951a8576cf','a:1:{s:8:\"customer\";s:882:\"a:27:{s:2:\"id\";s:1:\"1\";s:13:\"date_modified\";s:25:\"2022-01-13T13:54:05+00:00\";s:8:\"postcode\";s:6:\"682316\";s:4:\"city\";s:10:\"Fort Kochi\";s:9:\"address_1\";s:32:\"THACHUKUNNEL KUNNEKAL PO VALAKOM\";s:7:\"address\";s:32:\"THACHUKUNNEL KUNNEKAL PO VALAKOM\";s:9:\"address_2\";s:7:\"VALAKOM\";s:5:\"state\";s:2:\"KL\";s:7:\"country\";s:2:\"IN\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:2:\"KL\";s:16:\"shipping_country\";s:2:\"IN\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:4:\"sonu\";s:9:\"last_name\";s:1:\"s\";s:7:\"company\";s:5:\"amekA\";s:5:\"phone\";s:13:\"+919447727591\";s:5:\"email\";s:21:\"sonuvalakam@gmail.com\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:0:\"\";}\";}',1652868686),(3,'1','a:7:{s:4:\"cart\";s:480:\"a:1:{s:32:\"0fd9521db394bc7f9cd5b4b2c86de647\";a:11:{s:3:\"key\";s:32:\"0fd9521db394bc7f9cd5b4b2c86de647\";s:10:\"product_id\";i:1000;s:12:\"variation_id\";i:1086;s:9:\"variation\";a:1:{s:19:\"attribute_pa_weight\";s:28:\"10-sticks-tubes-bulk-package\";}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"041d6aa84bb3b3c8286d88164a225a6e\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:600;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:600;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:396:\"a:15:{s:8:\"subtotal\";s:3:\"600\";s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";s:3:\"600\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"600.00\";s:9:\"total_tax\";d:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:882:\"a:27:{s:2:\"id\";s:1:\"1\";s:13:\"date_modified\";s:25:\"2022-01-13T13:54:05+00:00\";s:8:\"postcode\";s:6:\"682316\";s:4:\"city\";s:10:\"Fort Kochi\";s:9:\"address_1\";s:32:\"THACHUKUNNEL KUNNEKAL PO VALAKOM\";s:7:\"address\";s:32:\"THACHUKUNNEL KUNNEKAL PO VALAKOM\";s:9:\"address_2\";s:7:\"VALAKOM\";s:5:\"state\";s:2:\"KL\";s:7:\"country\";s:2:\"IN\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:2:\"KL\";s:16:\"shipping_country\";s:2:\"IN\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:4:\"sonu\";s:9:\"last_name\";s:1:\"s\";s:7:\"company\";s:5:\"amekA\";s:5:\"phone\";s:13:\"+919447727591\";s:5:\"email\";s:21:\"sonuvalakam@gmail.com\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:0:\"\";}\";}',1652871184);
/*!40000 ALTER TABLE `wp_woocommerce_sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_shipping_zone_locations`
--

DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zone_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_id` bigint(20) unsigned NOT NULL,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `location_id` (`location_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_shipping_zone_locations`
--

LOCK TABLES `wp_woocommerce_shipping_zone_locations` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_locations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_locations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_shipping_zone_methods`
--

DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_methods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zone_methods` (
  `zone_id` bigint(20) unsigned NOT NULL,
  `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `method_id` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `method_order` bigint(20) unsigned NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`instance_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_shipping_zone_methods`
--

LOCK TABLES `wp_woocommerce_shipping_zone_methods` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_methods` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_methods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_shipping_zones`
--

DROP TABLE IF EXISTS `wp_woocommerce_shipping_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zones` (
  `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `zone_order` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`zone_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_shipping_zones`
--

LOCK TABLES `wp_woocommerce_shipping_zones` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zones` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_tax_rate_locations`
--

DROP TABLE IF EXISTS `wp_woocommerce_tax_rate_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_tax_rate_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_tax_rate_locations`
--

LOCK TABLES `wp_woocommerce_tax_rate_locations` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rate_locations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rate_locations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_tax_rates`
--

DROP TABLE IF EXISTS `wp_woocommerce_tax_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tax_rate_country` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate` varchar(8) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_priority` bigint(20) unsigned NOT NULL,
  `tax_rate_compound` int(1) NOT NULL DEFAULT '0',
  `tax_rate_shipping` int(1) NOT NULL DEFAULT '1',
  `tax_rate_order` bigint(20) unsigned NOT NULL,
  `tax_rate_class` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_id`),
  KEY `tax_rate_country` (`tax_rate_country`),
  KEY `tax_rate_state` (`tax_rate_state`(2)),
  KEY `tax_rate_class` (`tax_rate_class`(10)),
  KEY `tax_rate_priority` (`tax_rate_priority`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_tax_rates`
--

LOCK TABLES `wp_woocommerce_tax_rates` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rates` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yith_wcwl`
--

DROP TABLE IF EXISTS `wp_yith_wcwl`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yith_wcwl` (
  `ID` bigint(20) NOT NULL AUTO_INCREMENT,
  `prod_id` bigint(20) NOT NULL,
  `quantity` int(11) NOT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `wishlist_id` bigint(20) DEFAULT NULL,
  `position` int(11) DEFAULT '0',
  `original_price` decimal(9,3) DEFAULT NULL,
  `original_currency` char(3) DEFAULT NULL,
  `dateadded` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `on_sale` tinyint(4) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `prod_id` (`prod_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yith_wcwl`
--

LOCK TABLES `wp_yith_wcwl` WRITE;
/*!40000 ALTER TABLE `wp_yith_wcwl` DISABLE KEYS */;
INSERT INTO `wp_yith_wcwl` VALUES (3,659,1,1,1,0,35.000,'INR','2021-12-09 04:09:56',0);
/*!40000 ALTER TABLE `wp_yith_wcwl` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yith_wcwl_lists`
--

DROP TABLE IF EXISTS `wp_yith_wcwl_lists`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yith_wcwl_lists` (
  `ID` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) DEFAULT NULL,
  `session_id` varchar(255) DEFAULT NULL,
  `wishlist_slug` varchar(200) NOT NULL,
  `wishlist_name` text,
  `wishlist_token` varchar(64) NOT NULL,
  `wishlist_privacy` tinyint(1) NOT NULL DEFAULT '0',
  `is_default` tinyint(1) NOT NULL DEFAULT '0',
  `dateadded` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `expiration` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`ID`),
  UNIQUE KEY `wishlist_token` (`wishlist_token`),
  KEY `wishlist_slug` (`wishlist_slug`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yith_wcwl_lists`
--

LOCK TABLES `wp_yith_wcwl_lists` WRITE;
/*!40000 ALTER TABLE `wp_yith_wcwl_lists` DISABLE KEYS */;
INSERT INTO `wp_yith_wcwl_lists` VALUES (1,1,NULL,'','','BN4O1H7XRIZG',0,1,'2021-12-07 11:35:42',NULL);
/*!40000 ALTER TABLE `wp_yith_wcwl_lists` ENABLE KEYS */;
UNLOCK TABLES;
/*!50112 SET @disable_bulk_load = IF (@is_rocksdb_supported, 'SET SESSION rocksdb_bulk_load = @old_rocksdb_bulk_load', 'SET @dummy_rocksdb_bulk_load = 0') */;
/*!50112 PREPARE s FROM @disable_bulk_load */;
/*!50112 EXECUTE s */;
/*!50112 DEALLOCATE PREPARE s */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2022-05-20  7:56:00
